1 // SPDX-License-Identifier: GPL-2.0-only 2 /****************************************************************************** 3 * 4 * Copyright(c) 2005 - 2014, 2018 - 2020 Intel Corporation. All rights reserved. 5 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH 6 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 7 * 8 * Contact Information: 9 * Intel Linux Wireless <linuxwifi@intel.com> 10 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 11 * 12 *****************************************************************************/ 13 #include <linux/kernel.h> 14 #include <linux/skbuff.h> 15 #include <linux/slab.h> 16 #include <net/mac80211.h> 17 18 #include <linux/netdevice.h> 19 #include <linux/etherdevice.h> 20 #include <linux/delay.h> 21 22 #include <linux/workqueue.h> 23 #include "rs.h" 24 #include "fw-api.h" 25 #include "sta.h" 26 #include "iwl-op-mode.h" 27 #include "mvm.h" 28 #include "debugfs.h" 29 30 #define IWL_RATE_MAX_WINDOW 62 /* # tx in history window */ 31 32 /* Calculations of success ratio are done in fixed point where 12800 is 100%. 33 * Use this macro when dealing with thresholds consts set as a percentage 34 */ 35 #define RS_PERCENT(x) (128 * x) 36 37 static u8 rs_ht_to_legacy[] = { 38 [IWL_RATE_MCS_0_INDEX] = IWL_RATE_6M_INDEX, 39 [IWL_RATE_MCS_1_INDEX] = IWL_RATE_9M_INDEX, 40 [IWL_RATE_MCS_2_INDEX] = IWL_RATE_12M_INDEX, 41 [IWL_RATE_MCS_3_INDEX] = IWL_RATE_18M_INDEX, 42 [IWL_RATE_MCS_4_INDEX] = IWL_RATE_24M_INDEX, 43 [IWL_RATE_MCS_5_INDEX] = IWL_RATE_36M_INDEX, 44 [IWL_RATE_MCS_6_INDEX] = IWL_RATE_48M_INDEX, 45 [IWL_RATE_MCS_7_INDEX] = IWL_RATE_54M_INDEX, 46 [IWL_RATE_MCS_8_INDEX] = IWL_RATE_54M_INDEX, 47 [IWL_RATE_MCS_9_INDEX] = IWL_RATE_54M_INDEX, 48 }; 49 50 static const u8 ant_toggle_lookup[] = { 51 [ANT_NONE] = ANT_NONE, 52 [ANT_A] = ANT_B, 53 [ANT_B] = ANT_A, 54 [ANT_AB] = ANT_AB, 55 }; 56 57 #define IWL_DECLARE_RATE_INFO(r, s, rp, rn) \ 58 [IWL_RATE_##r##M_INDEX] = { IWL_RATE_##r##M_PLCP, \ 59 IWL_RATE_HT_SISO_MCS_##s##_PLCP, \ 60 IWL_RATE_HT_MIMO2_MCS_##s##_PLCP, \ 61 IWL_RATE_VHT_SISO_MCS_##s##_PLCP, \ 62 IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP,\ 63 IWL_RATE_##rp##M_INDEX, \ 64 IWL_RATE_##rn##M_INDEX } 65 66 #define IWL_DECLARE_MCS_RATE(s) \ 67 [IWL_RATE_MCS_##s##_INDEX] = { IWL_RATE_INVM_PLCP, \ 68 IWL_RATE_HT_SISO_MCS_##s##_PLCP, \ 69 IWL_RATE_HT_MIMO2_MCS_##s##_PLCP, \ 70 IWL_RATE_VHT_SISO_MCS_##s##_PLCP, \ 71 IWL_RATE_VHT_MIMO2_MCS_##s##_PLCP, \ 72 IWL_RATE_INVM_INDEX, \ 73 IWL_RATE_INVM_INDEX } 74 75 /* 76 * Parameter order: 77 * rate, ht rate, prev rate, next rate 78 * 79 * If there isn't a valid next or previous rate then INV is used which 80 * maps to IWL_RATE_INVALID 81 * 82 */ 83 static const struct iwl_rs_rate_info iwl_rates[IWL_RATE_COUNT] = { 84 IWL_DECLARE_RATE_INFO(1, INV, INV, 2), /* 1mbps */ 85 IWL_DECLARE_RATE_INFO(2, INV, 1, 5), /* 2mbps */ 86 IWL_DECLARE_RATE_INFO(5, INV, 2, 11), /*5.5mbps */ 87 IWL_DECLARE_RATE_INFO(11, INV, 9, 12), /* 11mbps */ 88 IWL_DECLARE_RATE_INFO(6, 0, 5, 11), /* 6mbps ; MCS 0 */ 89 IWL_DECLARE_RATE_INFO(9, INV, 6, 11), /* 9mbps */ 90 IWL_DECLARE_RATE_INFO(12, 1, 11, 18), /* 12mbps ; MCS 1 */ 91 IWL_DECLARE_RATE_INFO(18, 2, 12, 24), /* 18mbps ; MCS 2 */ 92 IWL_DECLARE_RATE_INFO(24, 3, 18, 36), /* 24mbps ; MCS 3 */ 93 IWL_DECLARE_RATE_INFO(36, 4, 24, 48), /* 36mbps ; MCS 4 */ 94 IWL_DECLARE_RATE_INFO(48, 5, 36, 54), /* 48mbps ; MCS 5 */ 95 IWL_DECLARE_RATE_INFO(54, 6, 48, INV), /* 54mbps ; MCS 6 */ 96 IWL_DECLARE_MCS_RATE(7), /* MCS 7 */ 97 IWL_DECLARE_MCS_RATE(8), /* MCS 8 */ 98 IWL_DECLARE_MCS_RATE(9), /* MCS 9 */ 99 }; 100 101 enum rs_action { 102 RS_ACTION_STAY = 0, 103 RS_ACTION_DOWNSCALE = -1, 104 RS_ACTION_UPSCALE = 1, 105 }; 106 107 enum rs_column_mode { 108 RS_INVALID = 0, 109 RS_LEGACY, 110 RS_SISO, 111 RS_MIMO2, 112 }; 113 114 #define MAX_NEXT_COLUMNS 7 115 #define MAX_COLUMN_CHECKS 3 116 117 struct rs_tx_column; 118 119 typedef bool (*allow_column_func_t) (struct iwl_mvm *mvm, 120 struct ieee80211_sta *sta, 121 struct rs_rate *rate, 122 const struct rs_tx_column *next_col); 123 124 struct rs_tx_column { 125 enum rs_column_mode mode; 126 u8 ant; 127 bool sgi; 128 enum rs_column next_columns[MAX_NEXT_COLUMNS]; 129 allow_column_func_t checks[MAX_COLUMN_CHECKS]; 130 }; 131 132 static bool rs_ant_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 133 struct rs_rate *rate, 134 const struct rs_tx_column *next_col) 135 { 136 return iwl_mvm_bt_coex_is_ant_avail(mvm, next_col->ant); 137 } 138 139 static bool rs_mimo_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 140 struct rs_rate *rate, 141 const struct rs_tx_column *next_col) 142 { 143 if (!sta->ht_cap.ht_supported) 144 return false; 145 146 if (sta->smps_mode == IEEE80211_SMPS_STATIC) 147 return false; 148 149 if (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) < 2) 150 return false; 151 152 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) 153 return false; 154 155 if (mvm->nvm_data->sku_cap_mimo_disabled) 156 return false; 157 158 return true; 159 } 160 161 static bool rs_siso_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 162 struct rs_rate *rate, 163 const struct rs_tx_column *next_col) 164 { 165 if (!sta->ht_cap.ht_supported) 166 return false; 167 168 return true; 169 } 170 171 static bool rs_sgi_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 172 struct rs_rate *rate, 173 const struct rs_tx_column *next_col) 174 { 175 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 176 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 177 178 if (is_ht20(rate) && (ht_cap->cap & 179 IEEE80211_HT_CAP_SGI_20)) 180 return true; 181 if (is_ht40(rate) && (ht_cap->cap & 182 IEEE80211_HT_CAP_SGI_40)) 183 return true; 184 if (is_ht80(rate) && (vht_cap->cap & 185 IEEE80211_VHT_CAP_SHORT_GI_80)) 186 return true; 187 if (is_ht160(rate) && (vht_cap->cap & 188 IEEE80211_VHT_CAP_SHORT_GI_160)) 189 return true; 190 191 return false; 192 } 193 194 static const struct rs_tx_column rs_tx_columns[] = { 195 [RS_COLUMN_LEGACY_ANT_A] = { 196 .mode = RS_LEGACY, 197 .ant = ANT_A, 198 .next_columns = { 199 RS_COLUMN_LEGACY_ANT_B, 200 RS_COLUMN_SISO_ANT_A, 201 RS_COLUMN_MIMO2, 202 RS_COLUMN_INVALID, 203 RS_COLUMN_INVALID, 204 RS_COLUMN_INVALID, 205 RS_COLUMN_INVALID, 206 }, 207 .checks = { 208 rs_ant_allow, 209 }, 210 }, 211 [RS_COLUMN_LEGACY_ANT_B] = { 212 .mode = RS_LEGACY, 213 .ant = ANT_B, 214 .next_columns = { 215 RS_COLUMN_LEGACY_ANT_A, 216 RS_COLUMN_SISO_ANT_B, 217 RS_COLUMN_MIMO2, 218 RS_COLUMN_INVALID, 219 RS_COLUMN_INVALID, 220 RS_COLUMN_INVALID, 221 RS_COLUMN_INVALID, 222 }, 223 .checks = { 224 rs_ant_allow, 225 }, 226 }, 227 [RS_COLUMN_SISO_ANT_A] = { 228 .mode = RS_SISO, 229 .ant = ANT_A, 230 .next_columns = { 231 RS_COLUMN_SISO_ANT_B, 232 RS_COLUMN_MIMO2, 233 RS_COLUMN_SISO_ANT_A_SGI, 234 RS_COLUMN_LEGACY_ANT_A, 235 RS_COLUMN_LEGACY_ANT_B, 236 RS_COLUMN_INVALID, 237 RS_COLUMN_INVALID, 238 }, 239 .checks = { 240 rs_siso_allow, 241 rs_ant_allow, 242 }, 243 }, 244 [RS_COLUMN_SISO_ANT_B] = { 245 .mode = RS_SISO, 246 .ant = ANT_B, 247 .next_columns = { 248 RS_COLUMN_SISO_ANT_A, 249 RS_COLUMN_MIMO2, 250 RS_COLUMN_SISO_ANT_B_SGI, 251 RS_COLUMN_LEGACY_ANT_A, 252 RS_COLUMN_LEGACY_ANT_B, 253 RS_COLUMN_INVALID, 254 RS_COLUMN_INVALID, 255 }, 256 .checks = { 257 rs_siso_allow, 258 rs_ant_allow, 259 }, 260 }, 261 [RS_COLUMN_SISO_ANT_A_SGI] = { 262 .mode = RS_SISO, 263 .ant = ANT_A, 264 .sgi = true, 265 .next_columns = { 266 RS_COLUMN_SISO_ANT_B_SGI, 267 RS_COLUMN_MIMO2_SGI, 268 RS_COLUMN_SISO_ANT_A, 269 RS_COLUMN_LEGACY_ANT_A, 270 RS_COLUMN_LEGACY_ANT_B, 271 RS_COLUMN_INVALID, 272 RS_COLUMN_INVALID, 273 }, 274 .checks = { 275 rs_siso_allow, 276 rs_ant_allow, 277 rs_sgi_allow, 278 }, 279 }, 280 [RS_COLUMN_SISO_ANT_B_SGI] = { 281 .mode = RS_SISO, 282 .ant = ANT_B, 283 .sgi = true, 284 .next_columns = { 285 RS_COLUMN_SISO_ANT_A_SGI, 286 RS_COLUMN_MIMO2_SGI, 287 RS_COLUMN_SISO_ANT_B, 288 RS_COLUMN_LEGACY_ANT_A, 289 RS_COLUMN_LEGACY_ANT_B, 290 RS_COLUMN_INVALID, 291 RS_COLUMN_INVALID, 292 }, 293 .checks = { 294 rs_siso_allow, 295 rs_ant_allow, 296 rs_sgi_allow, 297 }, 298 }, 299 [RS_COLUMN_MIMO2] = { 300 .mode = RS_MIMO2, 301 .ant = ANT_AB, 302 .next_columns = { 303 RS_COLUMN_SISO_ANT_A, 304 RS_COLUMN_MIMO2_SGI, 305 RS_COLUMN_LEGACY_ANT_A, 306 RS_COLUMN_LEGACY_ANT_B, 307 RS_COLUMN_INVALID, 308 RS_COLUMN_INVALID, 309 RS_COLUMN_INVALID, 310 }, 311 .checks = { 312 rs_mimo_allow, 313 }, 314 }, 315 [RS_COLUMN_MIMO2_SGI] = { 316 .mode = RS_MIMO2, 317 .ant = ANT_AB, 318 .sgi = true, 319 .next_columns = { 320 RS_COLUMN_SISO_ANT_A_SGI, 321 RS_COLUMN_MIMO2, 322 RS_COLUMN_LEGACY_ANT_A, 323 RS_COLUMN_LEGACY_ANT_B, 324 RS_COLUMN_INVALID, 325 RS_COLUMN_INVALID, 326 RS_COLUMN_INVALID, 327 }, 328 .checks = { 329 rs_mimo_allow, 330 rs_sgi_allow, 331 }, 332 }, 333 }; 334 335 static inline u8 rs_extract_rate(u32 rate_n_flags) 336 { 337 /* also works for HT because bits 7:6 are zero there */ 338 return (u8)(rate_n_flags & RATE_LEGACY_RATE_MSK); 339 } 340 341 static int iwl_hwrate_to_plcp_idx(u32 rate_n_flags) 342 { 343 int idx = 0; 344 345 if (rate_n_flags & RATE_MCS_HT_MSK) { 346 idx = rate_n_flags & RATE_HT_MCS_RATE_CODE_MSK; 347 idx += IWL_RATE_MCS_0_INDEX; 348 349 /* skip 9M not supported in HT*/ 350 if (idx >= IWL_RATE_9M_INDEX) 351 idx += 1; 352 if ((idx >= IWL_FIRST_HT_RATE) && (idx <= IWL_LAST_HT_RATE)) 353 return idx; 354 } else if (rate_n_flags & RATE_MCS_VHT_MSK || 355 rate_n_flags & RATE_MCS_HE_MSK) { 356 idx = rate_n_flags & RATE_VHT_MCS_RATE_CODE_MSK; 357 idx += IWL_RATE_MCS_0_INDEX; 358 359 /* skip 9M not supported in VHT*/ 360 if (idx >= IWL_RATE_9M_INDEX) 361 idx++; 362 if ((idx >= IWL_FIRST_VHT_RATE) && (idx <= IWL_LAST_VHT_RATE)) 363 return idx; 364 if ((rate_n_flags & RATE_MCS_HE_MSK) && 365 (idx <= IWL_LAST_HE_RATE)) 366 return idx; 367 } else { 368 /* legacy rate format, search for match in table */ 369 370 u8 legacy_rate = rs_extract_rate(rate_n_flags); 371 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++) 372 if (iwl_rates[idx].plcp == legacy_rate) 373 return idx; 374 } 375 376 return IWL_RATE_INVALID; 377 } 378 379 static void rs_rate_scale_perform(struct iwl_mvm *mvm, 380 struct ieee80211_sta *sta, 381 struct iwl_lq_sta *lq_sta, 382 int tid, bool ndp); 383 static void rs_fill_lq_cmd(struct iwl_mvm *mvm, 384 struct ieee80211_sta *sta, 385 struct iwl_lq_sta *lq_sta, 386 const struct rs_rate *initial_rate); 387 static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search); 388 389 /** 390 * The following tables contain the expected throughput metrics for all rates 391 * 392 * 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54, 60 MBits 393 * 394 * where invalid entries are zeros. 395 * 396 * CCK rates are only valid in legacy table and will only be used in G 397 * (2.4 GHz) band. 398 */ 399 400 static const u16 expected_tpt_legacy[IWL_RATE_COUNT] = { 401 7, 13, 35, 58, 40, 57, 72, 98, 121, 154, 177, 186, 0, 0, 0 402 }; 403 404 /* Expected TpT tables. 4 indexes: 405 * 0 - NGI, 1 - SGI, 2 - AGG+NGI, 3 - AGG+SGI 406 */ 407 static const u16 expected_tpt_siso_20MHz[4][IWL_RATE_COUNT] = { 408 {0, 0, 0, 0, 42, 0, 76, 102, 124, 159, 183, 193, 202, 216, 0}, 409 {0, 0, 0, 0, 46, 0, 82, 110, 132, 168, 192, 202, 210, 225, 0}, 410 {0, 0, 0, 0, 49, 0, 97, 145, 192, 285, 375, 420, 464, 551, 0}, 411 {0, 0, 0, 0, 54, 0, 108, 160, 213, 315, 415, 465, 513, 608, 0}, 412 }; 413 414 static const u16 expected_tpt_siso_40MHz[4][IWL_RATE_COUNT] = { 415 {0, 0, 0, 0, 77, 0, 127, 160, 184, 220, 242, 250, 257, 269, 275}, 416 {0, 0, 0, 0, 83, 0, 135, 169, 193, 229, 250, 257, 264, 275, 280}, 417 {0, 0, 0, 0, 101, 0, 199, 295, 389, 570, 744, 828, 911, 1070, 1173}, 418 {0, 0, 0, 0, 112, 0, 220, 326, 429, 629, 819, 912, 1000, 1173, 1284}, 419 }; 420 421 static const u16 expected_tpt_siso_80MHz[4][IWL_RATE_COUNT] = { 422 {0, 0, 0, 0, 130, 0, 191, 223, 244, 273, 288, 294, 298, 305, 308}, 423 {0, 0, 0, 0, 138, 0, 200, 231, 251, 279, 293, 298, 302, 308, 312}, 424 {0, 0, 0, 0, 217, 0, 429, 634, 834, 1220, 1585, 1760, 1931, 2258, 2466}, 425 {0, 0, 0, 0, 241, 0, 475, 701, 921, 1343, 1741, 1931, 2117, 2468, 2691}, 426 }; 427 428 static const u16 expected_tpt_siso_160MHz[4][IWL_RATE_COUNT] = { 429 {0, 0, 0, 0, 191, 0, 244, 288, 298, 308, 313, 318, 323, 328, 330}, 430 {0, 0, 0, 0, 200, 0, 251, 293, 302, 312, 317, 322, 327, 332, 334}, 431 {0, 0, 0, 0, 439, 0, 875, 1307, 1736, 2584, 3419, 3831, 4240, 5049, 5581}, 432 {0, 0, 0, 0, 488, 0, 972, 1451, 1925, 2864, 3785, 4240, 4691, 5581, 6165}, 433 }; 434 435 static const u16 expected_tpt_mimo2_20MHz[4][IWL_RATE_COUNT] = { 436 {0, 0, 0, 0, 74, 0, 123, 155, 179, 213, 235, 243, 250, 261, 0}, 437 {0, 0, 0, 0, 81, 0, 131, 164, 187, 221, 242, 250, 256, 267, 0}, 438 {0, 0, 0, 0, 98, 0, 193, 286, 375, 550, 718, 799, 878, 1032, 0}, 439 {0, 0, 0, 0, 109, 0, 214, 316, 414, 607, 790, 879, 965, 1132, 0}, 440 }; 441 442 static const u16 expected_tpt_mimo2_40MHz[4][IWL_RATE_COUNT] = { 443 {0, 0, 0, 0, 123, 0, 182, 214, 235, 264, 279, 285, 289, 296, 300}, 444 {0, 0, 0, 0, 131, 0, 191, 222, 242, 270, 284, 289, 293, 300, 303}, 445 {0, 0, 0, 0, 200, 0, 390, 571, 741, 1067, 1365, 1505, 1640, 1894, 2053}, 446 {0, 0, 0, 0, 221, 0, 430, 630, 816, 1169, 1490, 1641, 1784, 2053, 2221}, 447 }; 448 449 static const u16 expected_tpt_mimo2_80MHz[4][IWL_RATE_COUNT] = { 450 {0, 0, 0, 0, 182, 0, 240, 264, 278, 299, 308, 311, 313, 317, 319}, 451 {0, 0, 0, 0, 190, 0, 247, 269, 282, 302, 310, 313, 315, 319, 320}, 452 {0, 0, 0, 0, 428, 0, 833, 1215, 1577, 2254, 2863, 3147, 3418, 3913, 4219}, 453 {0, 0, 0, 0, 474, 0, 920, 1338, 1732, 2464, 3116, 3418, 3705, 4225, 4545}, 454 }; 455 456 static const u16 expected_tpt_mimo2_160MHz[4][IWL_RATE_COUNT] = { 457 {0, 0, 0, 0, 240, 0, 278, 308, 313, 319, 322, 324, 328, 330, 334}, 458 {0, 0, 0, 0, 247, 0, 282, 310, 315, 320, 323, 325, 329, 332, 338}, 459 {0, 0, 0, 0, 875, 0, 1735, 2582, 3414, 5043, 6619, 7389, 8147, 9629, 10592}, 460 {0, 0, 0, 0, 971, 0, 1925, 2861, 3779, 5574, 7304, 8147, 8976, 10592, 11640}, 461 }; 462 463 /* mbps, mcs */ 464 static const struct iwl_rate_mcs_info iwl_rate_mcs[IWL_RATE_COUNT] = { 465 { "1", "BPSK DSSS"}, 466 { "2", "QPSK DSSS"}, 467 {"5.5", "BPSK CCK"}, 468 { "11", "QPSK CCK"}, 469 { "6", "BPSK 1/2"}, 470 { "9", "BPSK 1/2"}, 471 { "12", "QPSK 1/2"}, 472 { "18", "QPSK 3/4"}, 473 { "24", "16QAM 1/2"}, 474 { "36", "16QAM 3/4"}, 475 { "48", "64QAM 2/3"}, 476 { "54", "64QAM 3/4"}, 477 { "60", "64QAM 5/6"}, 478 }; 479 480 #define MCS_INDEX_PER_STREAM (8) 481 482 static const char *rs_pretty_ant(u8 ant) 483 { 484 static const char * const ant_name[] = { 485 [ANT_NONE] = "None", 486 [ANT_A] = "A", 487 [ANT_B] = "B", 488 [ANT_AB] = "AB", 489 [ANT_C] = "C", 490 [ANT_AC] = "AC", 491 [ANT_BC] = "BC", 492 [ANT_ABC] = "ABC", 493 }; 494 495 if (ant > ANT_ABC) 496 return "UNKNOWN"; 497 498 return ant_name[ant]; 499 } 500 501 static const char *rs_pretty_lq_type(enum iwl_table_type type) 502 { 503 static const char * const lq_types[] = { 504 [LQ_NONE] = "NONE", 505 [LQ_LEGACY_A] = "LEGACY_A", 506 [LQ_LEGACY_G] = "LEGACY_G", 507 [LQ_HT_SISO] = "HT SISO", 508 [LQ_HT_MIMO2] = "HT MIMO", 509 [LQ_VHT_SISO] = "VHT SISO", 510 [LQ_VHT_MIMO2] = "VHT MIMO", 511 [LQ_HE_SISO] = "HE SISO", 512 [LQ_HE_MIMO2] = "HE MIMO", 513 }; 514 515 if (type < LQ_NONE || type >= LQ_MAX) 516 return "UNKNOWN"; 517 518 return lq_types[type]; 519 } 520 521 static char *rs_pretty_rate(const struct rs_rate *rate) 522 { 523 static char buf[40]; 524 static const char * const legacy_rates[] = { 525 [IWL_RATE_1M_INDEX] = "1M", 526 [IWL_RATE_2M_INDEX] = "2M", 527 [IWL_RATE_5M_INDEX] = "5.5M", 528 [IWL_RATE_11M_INDEX] = "11M", 529 [IWL_RATE_6M_INDEX] = "6M", 530 [IWL_RATE_9M_INDEX] = "9M", 531 [IWL_RATE_12M_INDEX] = "12M", 532 [IWL_RATE_18M_INDEX] = "18M", 533 [IWL_RATE_24M_INDEX] = "24M", 534 [IWL_RATE_36M_INDEX] = "36M", 535 [IWL_RATE_48M_INDEX] = "48M", 536 [IWL_RATE_54M_INDEX] = "54M", 537 }; 538 static const char *const ht_vht_rates[] = { 539 [IWL_RATE_MCS_0_INDEX] = "MCS0", 540 [IWL_RATE_MCS_1_INDEX] = "MCS1", 541 [IWL_RATE_MCS_2_INDEX] = "MCS2", 542 [IWL_RATE_MCS_3_INDEX] = "MCS3", 543 [IWL_RATE_MCS_4_INDEX] = "MCS4", 544 [IWL_RATE_MCS_5_INDEX] = "MCS5", 545 [IWL_RATE_MCS_6_INDEX] = "MCS6", 546 [IWL_RATE_MCS_7_INDEX] = "MCS7", 547 [IWL_RATE_MCS_8_INDEX] = "MCS8", 548 [IWL_RATE_MCS_9_INDEX] = "MCS9", 549 }; 550 const char *rate_str; 551 552 if (is_type_legacy(rate->type) && (rate->index <= IWL_RATE_54M_INDEX)) 553 rate_str = legacy_rates[rate->index]; 554 else if ((is_type_ht(rate->type) || is_type_vht(rate->type)) && 555 (rate->index >= IWL_RATE_MCS_0_INDEX) && 556 (rate->index <= IWL_RATE_MCS_9_INDEX)) 557 rate_str = ht_vht_rates[rate->index]; 558 else 559 rate_str = "BAD_RATE"; 560 561 sprintf(buf, "(%s|%s|%s)", rs_pretty_lq_type(rate->type), 562 rs_pretty_ant(rate->ant), rate_str); 563 return buf; 564 } 565 566 static inline void rs_dump_rate(struct iwl_mvm *mvm, const struct rs_rate *rate, 567 const char *prefix) 568 { 569 IWL_DEBUG_RATE(mvm, 570 "%s: %s BW: %d SGI: %d LDPC: %d STBC: %d\n", 571 prefix, rs_pretty_rate(rate), rate->bw, 572 rate->sgi, rate->ldpc, rate->stbc); 573 } 574 575 static void rs_rate_scale_clear_window(struct iwl_rate_scale_data *window) 576 { 577 window->data = 0; 578 window->success_counter = 0; 579 window->success_ratio = IWL_INVALID_VALUE; 580 window->counter = 0; 581 window->average_tpt = IWL_INVALID_VALUE; 582 } 583 584 static void rs_rate_scale_clear_tbl_windows(struct iwl_mvm *mvm, 585 struct iwl_scale_tbl_info *tbl) 586 { 587 int i; 588 589 IWL_DEBUG_RATE(mvm, "Clearing up window stats\n"); 590 for (i = 0; i < IWL_RATE_COUNT; i++) 591 rs_rate_scale_clear_window(&tbl->win[i]); 592 593 for (i = 0; i < ARRAY_SIZE(tbl->tpc_win); i++) 594 rs_rate_scale_clear_window(&tbl->tpc_win[i]); 595 } 596 597 static inline u8 rs_is_valid_ant(u8 valid_antenna, u8 ant_type) 598 { 599 return (ant_type & valid_antenna) == ant_type; 600 } 601 602 static int rs_tl_turn_on_agg_for_tid(struct iwl_mvm *mvm, 603 struct iwl_lq_sta *lq_data, u8 tid, 604 struct ieee80211_sta *sta) 605 { 606 int ret = -EAGAIN; 607 608 IWL_DEBUG_HT(mvm, "Starting Tx agg: STA: %pM tid: %d\n", 609 sta->addr, tid); 610 611 /* start BA session until the peer sends del BA */ 612 ret = ieee80211_start_tx_ba_session(sta, tid, 0); 613 if (ret == -EAGAIN) { 614 /* 615 * driver and mac80211 is out of sync 616 * this might be cause by reloading firmware 617 * stop the tx ba session here 618 */ 619 IWL_ERR(mvm, "Fail start Tx agg on tid: %d\n", 620 tid); 621 ieee80211_stop_tx_ba_session(sta, tid); 622 } 623 return ret; 624 } 625 626 static void rs_tl_turn_on_agg(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta, 627 u8 tid, struct iwl_lq_sta *lq_sta, 628 struct ieee80211_sta *sta) 629 { 630 struct iwl_mvm_tid_data *tid_data; 631 632 /* 633 * In AP mode, tid can be equal to IWL_MAX_TID_COUNT 634 * when the frame is not QoS 635 */ 636 if (WARN_ON_ONCE(tid > IWL_MAX_TID_COUNT)) { 637 IWL_ERR(mvm, "tid exceeds max TID count: %d/%d\n", 638 tid, IWL_MAX_TID_COUNT); 639 return; 640 } else if (tid == IWL_MAX_TID_COUNT) { 641 return; 642 } 643 644 tid_data = &mvmsta->tid_data[tid]; 645 if (mvmsta->sta_state >= IEEE80211_STA_AUTHORIZED && 646 tid_data->state == IWL_AGG_OFF && 647 (lq_sta->tx_agg_tid_en & BIT(tid)) && 648 tid_data->tx_count_last >= IWL_MVM_RS_AGG_START_THRESHOLD) { 649 IWL_DEBUG_RATE(mvm, "try to aggregate tid %d\n", tid); 650 if (rs_tl_turn_on_agg_for_tid(mvm, lq_sta, tid, sta) == 0) 651 tid_data->state = IWL_AGG_QUEUED; 652 } 653 } 654 655 static inline int get_num_of_ant_from_rate(u32 rate_n_flags) 656 { 657 return !!(rate_n_flags & RATE_MCS_ANT_A_MSK) + 658 !!(rate_n_flags & RATE_MCS_ANT_B_MSK) + 659 !!(rate_n_flags & RATE_MCS_ANT_C_MSK); 660 } 661 662 /* 663 * Static function to get the expected throughput from an iwl_scale_tbl_info 664 * that wraps a NULL pointer check 665 */ 666 static s32 get_expected_tpt(struct iwl_scale_tbl_info *tbl, int rs_index) 667 { 668 if (tbl->expected_tpt) 669 return tbl->expected_tpt[rs_index]; 670 return 0; 671 } 672 673 /** 674 * rs_collect_tx_data - Update the success/failure sliding window 675 * 676 * We keep a sliding window of the last 62 packets transmitted 677 * at this rate. window->data contains the bitmask of successful 678 * packets. 679 */ 680 static int _rs_collect_tx_data(struct iwl_mvm *mvm, 681 struct iwl_scale_tbl_info *tbl, 682 int scale_index, int attempts, int successes, 683 struct iwl_rate_scale_data *window) 684 { 685 static const u64 mask = (((u64)1) << (IWL_RATE_MAX_WINDOW - 1)); 686 s32 fail_count, tpt; 687 688 /* Get expected throughput */ 689 tpt = get_expected_tpt(tbl, scale_index); 690 691 /* 692 * Keep track of only the latest 62 tx frame attempts in this rate's 693 * history window; anything older isn't really relevant any more. 694 * If we have filled up the sliding window, drop the oldest attempt; 695 * if the oldest attempt (highest bit in bitmap) shows "success", 696 * subtract "1" from the success counter (this is the main reason 697 * we keep these bitmaps!). 698 */ 699 while (attempts > 0) { 700 if (window->counter >= IWL_RATE_MAX_WINDOW) { 701 /* remove earliest */ 702 window->counter = IWL_RATE_MAX_WINDOW - 1; 703 704 if (window->data & mask) { 705 window->data &= ~mask; 706 window->success_counter--; 707 } 708 } 709 710 /* Increment frames-attempted counter */ 711 window->counter++; 712 713 /* Shift bitmap by one frame to throw away oldest history */ 714 window->data <<= 1; 715 716 /* Mark the most recent #successes attempts as successful */ 717 if (successes > 0) { 718 window->success_counter++; 719 window->data |= 0x1; 720 successes--; 721 } 722 723 attempts--; 724 } 725 726 /* Calculate current success ratio, avoid divide-by-0! */ 727 if (window->counter > 0) 728 window->success_ratio = 128 * (100 * window->success_counter) 729 / window->counter; 730 else 731 window->success_ratio = IWL_INVALID_VALUE; 732 733 fail_count = window->counter - window->success_counter; 734 735 /* Calculate average throughput, if we have enough history. */ 736 if ((fail_count >= IWL_MVM_RS_RATE_MIN_FAILURE_TH) || 737 (window->success_counter >= IWL_MVM_RS_RATE_MIN_SUCCESS_TH)) 738 window->average_tpt = (window->success_ratio * tpt + 64) / 128; 739 else 740 window->average_tpt = IWL_INVALID_VALUE; 741 742 return 0; 743 } 744 745 static int rs_collect_tpc_data(struct iwl_mvm *mvm, 746 struct iwl_lq_sta *lq_sta, 747 struct iwl_scale_tbl_info *tbl, 748 int scale_index, int attempts, int successes, 749 u8 reduced_txp) 750 { 751 struct iwl_rate_scale_data *window = NULL; 752 753 if (WARN_ON_ONCE(reduced_txp > TPC_MAX_REDUCTION)) 754 return -EINVAL; 755 756 window = &tbl->tpc_win[reduced_txp]; 757 return _rs_collect_tx_data(mvm, tbl, scale_index, attempts, successes, 758 window); 759 } 760 761 static void rs_update_tid_tpt_stats(struct iwl_mvm *mvm, 762 struct iwl_mvm_sta *mvmsta, 763 u8 tid, int successes) 764 { 765 struct iwl_mvm_tid_data *tid_data; 766 767 if (tid >= IWL_MAX_TID_COUNT) 768 return; 769 770 tid_data = &mvmsta->tid_data[tid]; 771 772 /* 773 * Measure if there're enough successful transmits per second. 774 * These statistics are used only to decide if we can start a 775 * BA session, so it should be updated only when A-MPDU is 776 * off. 777 */ 778 if (tid_data->state != IWL_AGG_OFF) 779 return; 780 781 if (time_is_before_jiffies(tid_data->tpt_meas_start + HZ) || 782 (tid_data->tx_count >= IWL_MVM_RS_AGG_START_THRESHOLD)) { 783 tid_data->tx_count_last = tid_data->tx_count; 784 tid_data->tx_count = 0; 785 tid_data->tpt_meas_start = jiffies; 786 } else { 787 tid_data->tx_count += successes; 788 } 789 } 790 791 static int rs_collect_tlc_data(struct iwl_mvm *mvm, 792 struct iwl_mvm_sta *mvmsta, u8 tid, 793 struct iwl_scale_tbl_info *tbl, 794 int scale_index, int attempts, int successes) 795 { 796 struct iwl_rate_scale_data *window = NULL; 797 798 if (scale_index < 0 || scale_index >= IWL_RATE_COUNT) 799 return -EINVAL; 800 801 if (tbl->column != RS_COLUMN_INVALID) { 802 struct lq_sta_pers *pers = &mvmsta->lq_sta.rs_drv.pers; 803 804 pers->tx_stats[tbl->column][scale_index].total += attempts; 805 pers->tx_stats[tbl->column][scale_index].success += successes; 806 } 807 808 rs_update_tid_tpt_stats(mvm, mvmsta, tid, successes); 809 810 /* Select window for current tx bit rate */ 811 window = &(tbl->win[scale_index]); 812 return _rs_collect_tx_data(mvm, tbl, scale_index, attempts, successes, 813 window); 814 } 815 816 /* Convert rs_rate object into ucode rate bitmask */ 817 static u32 ucode_rate_from_rs_rate(struct iwl_mvm *mvm, 818 struct rs_rate *rate) 819 { 820 u32 ucode_rate = 0; 821 int index = rate->index; 822 823 ucode_rate |= ((rate->ant << RATE_MCS_ANT_POS) & 824 RATE_MCS_ANT_ABC_MSK); 825 826 if (is_legacy(rate)) { 827 ucode_rate |= iwl_rates[index].plcp; 828 if (index >= IWL_FIRST_CCK_RATE && index <= IWL_LAST_CCK_RATE) 829 ucode_rate |= RATE_MCS_CCK_MSK; 830 return ucode_rate; 831 } 832 833 if (is_ht(rate)) { 834 if (index < IWL_FIRST_HT_RATE || index > IWL_LAST_HT_RATE) { 835 IWL_ERR(mvm, "Invalid HT rate index %d\n", index); 836 index = IWL_LAST_HT_RATE; 837 } 838 ucode_rate |= RATE_MCS_HT_MSK; 839 840 if (is_ht_siso(rate)) 841 ucode_rate |= iwl_rates[index].plcp_ht_siso; 842 else if (is_ht_mimo2(rate)) 843 ucode_rate |= iwl_rates[index].plcp_ht_mimo2; 844 else 845 WARN_ON_ONCE(1); 846 } else if (is_vht(rate)) { 847 if (index < IWL_FIRST_VHT_RATE || index > IWL_LAST_VHT_RATE) { 848 IWL_ERR(mvm, "Invalid VHT rate index %d\n", index); 849 index = IWL_LAST_VHT_RATE; 850 } 851 ucode_rate |= RATE_MCS_VHT_MSK; 852 if (is_vht_siso(rate)) 853 ucode_rate |= iwl_rates[index].plcp_vht_siso; 854 else if (is_vht_mimo2(rate)) 855 ucode_rate |= iwl_rates[index].plcp_vht_mimo2; 856 else 857 WARN_ON_ONCE(1); 858 859 } else { 860 IWL_ERR(mvm, "Invalid rate->type %d\n", rate->type); 861 } 862 863 if (is_siso(rate) && rate->stbc) { 864 /* To enable STBC we need to set both a flag and ANT_AB */ 865 ucode_rate |= RATE_MCS_ANT_AB_MSK; 866 ucode_rate |= RATE_MCS_STBC_MSK; 867 } 868 869 ucode_rate |= rate->bw; 870 if (rate->sgi) 871 ucode_rate |= RATE_MCS_SGI_MSK; 872 if (rate->ldpc) 873 ucode_rate |= RATE_MCS_LDPC_MSK; 874 875 return ucode_rate; 876 } 877 878 /* Convert a ucode rate into an rs_rate object */ 879 static int rs_rate_from_ucode_rate(const u32 ucode_rate, 880 enum nl80211_band band, 881 struct rs_rate *rate) 882 { 883 u32 ant_msk = ucode_rate & RATE_MCS_ANT_ABC_MSK; 884 u8 num_of_ant = get_num_of_ant_from_rate(ucode_rate); 885 u8 nss; 886 887 memset(rate, 0, sizeof(*rate)); 888 rate->index = iwl_hwrate_to_plcp_idx(ucode_rate); 889 890 if (rate->index == IWL_RATE_INVALID) 891 return -EINVAL; 892 893 rate->ant = (ant_msk >> RATE_MCS_ANT_POS); 894 895 /* Legacy */ 896 if (!(ucode_rate & RATE_MCS_HT_MSK) && 897 !(ucode_rate & RATE_MCS_VHT_MSK) && 898 !(ucode_rate & RATE_MCS_HE_MSK)) { 899 if (num_of_ant == 1) { 900 if (band == NL80211_BAND_5GHZ) 901 rate->type = LQ_LEGACY_A; 902 else 903 rate->type = LQ_LEGACY_G; 904 } 905 906 return 0; 907 } 908 909 /* HT, VHT or HE */ 910 if (ucode_rate & RATE_MCS_SGI_MSK) 911 rate->sgi = true; 912 if (ucode_rate & RATE_MCS_LDPC_MSK) 913 rate->ldpc = true; 914 if (ucode_rate & RATE_MCS_STBC_MSK) 915 rate->stbc = true; 916 if (ucode_rate & RATE_MCS_BF_MSK) 917 rate->bfer = true; 918 919 rate->bw = ucode_rate & RATE_MCS_CHAN_WIDTH_MSK; 920 921 if (ucode_rate & RATE_MCS_HT_MSK) { 922 nss = ((ucode_rate & RATE_HT_MCS_NSS_MSK) >> 923 RATE_HT_MCS_NSS_POS) + 1; 924 925 if (nss == 1) { 926 rate->type = LQ_HT_SISO; 927 WARN_ONCE(!rate->stbc && !rate->bfer && num_of_ant != 1, 928 "stbc %d bfer %d", 929 rate->stbc, rate->bfer); 930 } else if (nss == 2) { 931 rate->type = LQ_HT_MIMO2; 932 WARN_ON_ONCE(num_of_ant != 2); 933 } else { 934 WARN_ON_ONCE(1); 935 } 936 } else if (ucode_rate & RATE_MCS_VHT_MSK) { 937 nss = ((ucode_rate & RATE_VHT_MCS_NSS_MSK) >> 938 RATE_VHT_MCS_NSS_POS) + 1; 939 940 if (nss == 1) { 941 rate->type = LQ_VHT_SISO; 942 WARN_ONCE(!rate->stbc && !rate->bfer && num_of_ant != 1, 943 "stbc %d bfer %d", 944 rate->stbc, rate->bfer); 945 } else if (nss == 2) { 946 rate->type = LQ_VHT_MIMO2; 947 WARN_ON_ONCE(num_of_ant != 2); 948 } else { 949 WARN_ON_ONCE(1); 950 } 951 } else if (ucode_rate & RATE_MCS_HE_MSK) { 952 nss = ((ucode_rate & RATE_VHT_MCS_NSS_MSK) >> 953 RATE_VHT_MCS_NSS_POS) + 1; 954 955 if (nss == 1) { 956 rate->type = LQ_HE_SISO; 957 WARN_ONCE(!rate->stbc && !rate->bfer && num_of_ant != 1, 958 "stbc %d bfer %d", rate->stbc, rate->bfer); 959 } else if (nss == 2) { 960 rate->type = LQ_HE_MIMO2; 961 WARN_ON_ONCE(num_of_ant != 2); 962 } else { 963 WARN_ON_ONCE(1); 964 } 965 } 966 967 WARN_ON_ONCE(rate->bw == RATE_MCS_CHAN_WIDTH_80 && 968 !is_he(rate) && !is_vht(rate)); 969 970 return 0; 971 } 972 973 /* switch to another antenna/antennas and return 1 */ 974 /* if no other valid antenna found, return 0 */ 975 static int rs_toggle_antenna(u32 valid_ant, struct rs_rate *rate) 976 { 977 u8 new_ant_type; 978 979 if (!rate->ant || WARN_ON_ONCE(rate->ant & ANT_C)) 980 return 0; 981 982 if (!rs_is_valid_ant(valid_ant, rate->ant)) 983 return 0; 984 985 new_ant_type = ant_toggle_lookup[rate->ant]; 986 987 while ((new_ant_type != rate->ant) && 988 !rs_is_valid_ant(valid_ant, new_ant_type)) 989 new_ant_type = ant_toggle_lookup[new_ant_type]; 990 991 if (new_ant_type == rate->ant) 992 return 0; 993 994 rate->ant = new_ant_type; 995 996 return 1; 997 } 998 999 static u16 rs_get_supported_rates(struct iwl_lq_sta *lq_sta, 1000 struct rs_rate *rate) 1001 { 1002 if (is_legacy(rate)) 1003 return lq_sta->active_legacy_rate; 1004 else if (is_siso(rate)) 1005 return lq_sta->active_siso_rate; 1006 else if (is_mimo2(rate)) 1007 return lq_sta->active_mimo2_rate; 1008 1009 WARN_ON_ONCE(1); 1010 return 0; 1011 } 1012 1013 static u16 rs_get_adjacent_rate(struct iwl_mvm *mvm, u8 index, u16 rate_mask, 1014 int rate_type) 1015 { 1016 u8 high = IWL_RATE_INVALID; 1017 u8 low = IWL_RATE_INVALID; 1018 1019 /* 802.11A or ht walks to the next literal adjacent rate in 1020 * the rate table */ 1021 if (is_type_a_band(rate_type) || !is_type_legacy(rate_type)) { 1022 int i; 1023 u32 mask; 1024 1025 /* Find the previous rate that is in the rate mask */ 1026 i = index - 1; 1027 if (i >= 0) 1028 mask = BIT(i); 1029 for (; i >= 0; i--, mask >>= 1) { 1030 if (rate_mask & mask) { 1031 low = i; 1032 break; 1033 } 1034 } 1035 1036 /* Find the next rate that is in the rate mask */ 1037 i = index + 1; 1038 for (mask = (1 << i); i < IWL_RATE_COUNT; i++, mask <<= 1) { 1039 if (rate_mask & mask) { 1040 high = i; 1041 break; 1042 } 1043 } 1044 1045 return (high << 8) | low; 1046 } 1047 1048 low = index; 1049 while (low != IWL_RATE_INVALID) { 1050 low = iwl_rates[low].prev_rs; 1051 if (low == IWL_RATE_INVALID) 1052 break; 1053 if (rate_mask & (1 << low)) 1054 break; 1055 } 1056 1057 high = index; 1058 while (high != IWL_RATE_INVALID) { 1059 high = iwl_rates[high].next_rs; 1060 if (high == IWL_RATE_INVALID) 1061 break; 1062 if (rate_mask & (1 << high)) 1063 break; 1064 } 1065 1066 return (high << 8) | low; 1067 } 1068 1069 static inline bool rs_rate_supported(struct iwl_lq_sta *lq_sta, 1070 struct rs_rate *rate) 1071 { 1072 return BIT(rate->index) & rs_get_supported_rates(lq_sta, rate); 1073 } 1074 1075 /* Get the next supported lower rate in the current column. 1076 * Return true if bottom rate in the current column was reached 1077 */ 1078 static bool rs_get_lower_rate_in_column(struct iwl_lq_sta *lq_sta, 1079 struct rs_rate *rate) 1080 { 1081 u8 low; 1082 u16 high_low; 1083 u16 rate_mask; 1084 struct iwl_mvm *mvm = lq_sta->pers.drv; 1085 1086 rate_mask = rs_get_supported_rates(lq_sta, rate); 1087 high_low = rs_get_adjacent_rate(mvm, rate->index, rate_mask, 1088 rate->type); 1089 low = high_low & 0xff; 1090 1091 /* Bottom rate of column reached */ 1092 if (low == IWL_RATE_INVALID) 1093 return true; 1094 1095 rate->index = low; 1096 return false; 1097 } 1098 1099 /* Get the next rate to use following a column downgrade */ 1100 static void rs_get_lower_rate_down_column(struct iwl_lq_sta *lq_sta, 1101 struct rs_rate *rate) 1102 { 1103 struct iwl_mvm *mvm = lq_sta->pers.drv; 1104 1105 if (is_legacy(rate)) { 1106 /* No column to downgrade from Legacy */ 1107 return; 1108 } else if (is_siso(rate)) { 1109 /* Downgrade to Legacy if we were in SISO */ 1110 if (lq_sta->band == NL80211_BAND_5GHZ) 1111 rate->type = LQ_LEGACY_A; 1112 else 1113 rate->type = LQ_LEGACY_G; 1114 1115 rate->bw = RATE_MCS_CHAN_WIDTH_20; 1116 1117 WARN_ON_ONCE(rate->index < IWL_RATE_MCS_0_INDEX || 1118 rate->index > IWL_RATE_MCS_9_INDEX); 1119 1120 rate->index = rs_ht_to_legacy[rate->index]; 1121 rate->ldpc = false; 1122 } else { 1123 /* Downgrade to SISO with same MCS if in MIMO */ 1124 rate->type = is_vht_mimo2(rate) ? 1125 LQ_VHT_SISO : LQ_HT_SISO; 1126 } 1127 1128 if (num_of_ant(rate->ant) > 1) 1129 rate->ant = first_antenna(iwl_mvm_get_valid_tx_ant(mvm)); 1130 1131 /* Relevant in both switching to SISO or Legacy */ 1132 rate->sgi = false; 1133 1134 if (!rs_rate_supported(lq_sta, rate)) 1135 rs_get_lower_rate_in_column(lq_sta, rate); 1136 } 1137 1138 /* Check if both rates share the same column */ 1139 static inline bool rs_rate_column_match(struct rs_rate *a, 1140 struct rs_rate *b) 1141 { 1142 bool ant_match; 1143 1144 if (a->stbc || a->bfer) 1145 ant_match = (b->ant == ANT_A || b->ant == ANT_B); 1146 else 1147 ant_match = (a->ant == b->ant); 1148 1149 return (a->type == b->type) && (a->bw == b->bw) && (a->sgi == b->sgi) 1150 && ant_match; 1151 } 1152 1153 static inline enum rs_column rs_get_column_from_rate(struct rs_rate *rate) 1154 { 1155 if (is_legacy(rate)) { 1156 if (rate->ant == ANT_A) 1157 return RS_COLUMN_LEGACY_ANT_A; 1158 1159 if (rate->ant == ANT_B) 1160 return RS_COLUMN_LEGACY_ANT_B; 1161 1162 goto err; 1163 } 1164 1165 if (is_siso(rate)) { 1166 if (rate->ant == ANT_A || rate->stbc || rate->bfer) 1167 return rate->sgi ? RS_COLUMN_SISO_ANT_A_SGI : 1168 RS_COLUMN_SISO_ANT_A; 1169 1170 if (rate->ant == ANT_B) 1171 return rate->sgi ? RS_COLUMN_SISO_ANT_B_SGI : 1172 RS_COLUMN_SISO_ANT_B; 1173 1174 goto err; 1175 } 1176 1177 if (is_mimo(rate)) 1178 return rate->sgi ? RS_COLUMN_MIMO2_SGI : RS_COLUMN_MIMO2; 1179 1180 err: 1181 return RS_COLUMN_INVALID; 1182 } 1183 1184 static u8 rs_get_tid(struct ieee80211_hdr *hdr) 1185 { 1186 u8 tid = IWL_MAX_TID_COUNT; 1187 1188 if (ieee80211_is_data_qos(hdr->frame_control)) { 1189 u8 *qc = ieee80211_get_qos_ctl(hdr); 1190 tid = qc[0] & 0xf; 1191 } 1192 1193 if (unlikely(tid > IWL_MAX_TID_COUNT)) 1194 tid = IWL_MAX_TID_COUNT; 1195 1196 return tid; 1197 } 1198 1199 /* 1200 * mac80211 sends us Tx status 1201 */ 1202 static void rs_drv_mac80211_tx_status(void *mvm_r, 1203 struct ieee80211_supported_band *sband, 1204 struct ieee80211_sta *sta, void *priv_sta, 1205 struct sk_buff *skb) 1206 { 1207 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; 1208 struct iwl_op_mode *op_mode = mvm_r; 1209 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode); 1210 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); 1211 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 1212 1213 if (!mvmsta->vif) 1214 return; 1215 1216 if (!ieee80211_is_data(hdr->frame_control) || 1217 info->flags & IEEE80211_TX_CTL_NO_ACK) 1218 return; 1219 1220 iwl_mvm_rs_tx_status(mvm, sta, rs_get_tid(hdr), info, 1221 ieee80211_is_qos_nullfunc(hdr->frame_control)); 1222 } 1223 1224 /* 1225 * Begin a period of staying with a selected modulation mode. 1226 * Set "stay_in_tbl" flag to prevent any mode switches. 1227 * Set frame tx success limits according to legacy vs. high-throughput, 1228 * and reset overall (spanning all rates) tx success history statistics. 1229 * These control how long we stay using same modulation mode before 1230 * searching for a new mode. 1231 */ 1232 static void rs_set_stay_in_table(struct iwl_mvm *mvm, u8 is_legacy, 1233 struct iwl_lq_sta *lq_sta) 1234 { 1235 IWL_DEBUG_RATE(mvm, "Moving to RS_STATE_STAY_IN_COLUMN\n"); 1236 lq_sta->rs_state = RS_STATE_STAY_IN_COLUMN; 1237 if (is_legacy) { 1238 lq_sta->table_count_limit = IWL_MVM_RS_LEGACY_TABLE_COUNT; 1239 lq_sta->max_failure_limit = IWL_MVM_RS_LEGACY_FAILURE_LIMIT; 1240 lq_sta->max_success_limit = IWL_MVM_RS_LEGACY_SUCCESS_LIMIT; 1241 } else { 1242 lq_sta->table_count_limit = IWL_MVM_RS_NON_LEGACY_TABLE_COUNT; 1243 lq_sta->max_failure_limit = IWL_MVM_RS_NON_LEGACY_FAILURE_LIMIT; 1244 lq_sta->max_success_limit = IWL_MVM_RS_NON_LEGACY_SUCCESS_LIMIT; 1245 } 1246 lq_sta->table_count = 0; 1247 lq_sta->total_failed = 0; 1248 lq_sta->total_success = 0; 1249 lq_sta->flush_timer = jiffies; 1250 lq_sta->visited_columns = 0; 1251 } 1252 1253 static inline int rs_get_max_rate_from_mask(unsigned long rate_mask) 1254 { 1255 if (rate_mask) 1256 return find_last_bit(&rate_mask, BITS_PER_LONG); 1257 return IWL_RATE_INVALID; 1258 } 1259 1260 static int rs_get_max_allowed_rate(struct iwl_lq_sta *lq_sta, 1261 const struct rs_tx_column *column) 1262 { 1263 switch (column->mode) { 1264 case RS_LEGACY: 1265 return lq_sta->max_legacy_rate_idx; 1266 case RS_SISO: 1267 return lq_sta->max_siso_rate_idx; 1268 case RS_MIMO2: 1269 return lq_sta->max_mimo2_rate_idx; 1270 default: 1271 WARN_ON_ONCE(1); 1272 } 1273 1274 return lq_sta->max_legacy_rate_idx; 1275 } 1276 1277 static const u16 *rs_get_expected_tpt_table(struct iwl_lq_sta *lq_sta, 1278 const struct rs_tx_column *column, 1279 u32 bw) 1280 { 1281 /* Used to choose among HT tables */ 1282 const u16 (*ht_tbl_pointer)[IWL_RATE_COUNT]; 1283 1284 if (WARN_ON_ONCE(column->mode != RS_LEGACY && 1285 column->mode != RS_SISO && 1286 column->mode != RS_MIMO2)) 1287 return expected_tpt_legacy; 1288 1289 /* Legacy rates have only one table */ 1290 if (column->mode == RS_LEGACY) 1291 return expected_tpt_legacy; 1292 1293 ht_tbl_pointer = expected_tpt_mimo2_20MHz; 1294 /* Choose among many HT tables depending on number of streams 1295 * (SISO/MIMO2), channel width (20/40/80), SGI, and aggregation 1296 * status */ 1297 if (column->mode == RS_SISO) { 1298 switch (bw) { 1299 case RATE_MCS_CHAN_WIDTH_20: 1300 ht_tbl_pointer = expected_tpt_siso_20MHz; 1301 break; 1302 case RATE_MCS_CHAN_WIDTH_40: 1303 ht_tbl_pointer = expected_tpt_siso_40MHz; 1304 break; 1305 case RATE_MCS_CHAN_WIDTH_80: 1306 ht_tbl_pointer = expected_tpt_siso_80MHz; 1307 break; 1308 case RATE_MCS_CHAN_WIDTH_160: 1309 ht_tbl_pointer = expected_tpt_siso_160MHz; 1310 break; 1311 default: 1312 WARN_ON_ONCE(1); 1313 } 1314 } else if (column->mode == RS_MIMO2) { 1315 switch (bw) { 1316 case RATE_MCS_CHAN_WIDTH_20: 1317 ht_tbl_pointer = expected_tpt_mimo2_20MHz; 1318 break; 1319 case RATE_MCS_CHAN_WIDTH_40: 1320 ht_tbl_pointer = expected_tpt_mimo2_40MHz; 1321 break; 1322 case RATE_MCS_CHAN_WIDTH_80: 1323 ht_tbl_pointer = expected_tpt_mimo2_80MHz; 1324 break; 1325 case RATE_MCS_CHAN_WIDTH_160: 1326 ht_tbl_pointer = expected_tpt_mimo2_160MHz; 1327 break; 1328 default: 1329 WARN_ON_ONCE(1); 1330 } 1331 } else { 1332 WARN_ON_ONCE(1); 1333 } 1334 1335 if (!column->sgi && !lq_sta->is_agg) /* Normal */ 1336 return ht_tbl_pointer[0]; 1337 else if (column->sgi && !lq_sta->is_agg) /* SGI */ 1338 return ht_tbl_pointer[1]; 1339 else if (!column->sgi && lq_sta->is_agg) /* AGG */ 1340 return ht_tbl_pointer[2]; 1341 else /* AGG+SGI */ 1342 return ht_tbl_pointer[3]; 1343 } 1344 1345 static void rs_set_expected_tpt_table(struct iwl_lq_sta *lq_sta, 1346 struct iwl_scale_tbl_info *tbl) 1347 { 1348 struct rs_rate *rate = &tbl->rate; 1349 const struct rs_tx_column *column = &rs_tx_columns[tbl->column]; 1350 1351 tbl->expected_tpt = rs_get_expected_tpt_table(lq_sta, column, rate->bw); 1352 } 1353 1354 /* rs uses two tables, one is active and the second is for searching better 1355 * configuration. This function, according to the index of the currently 1356 * active table returns the search table, which is located at the 1357 * index complementary to 1 according to the active table (active = 1, 1358 * search = 0 or active = 0, search = 1). 1359 * Since lq_info is an arary of size 2, make sure index cannot be out of bounds. 1360 */ 1361 static inline u8 rs_search_tbl(u8 active_tbl) 1362 { 1363 return (active_tbl ^ 1) & 1; 1364 } 1365 1366 static s32 rs_get_best_rate(struct iwl_mvm *mvm, 1367 struct iwl_lq_sta *lq_sta, 1368 struct iwl_scale_tbl_info *tbl, /* "search" */ 1369 unsigned long rate_mask, s8 index) 1370 { 1371 struct iwl_scale_tbl_info *active_tbl = 1372 &(lq_sta->lq_info[lq_sta->active_tbl]); 1373 s32 success_ratio = active_tbl->win[index].success_ratio; 1374 u16 expected_current_tpt = active_tbl->expected_tpt[index]; 1375 const u16 *tpt_tbl = tbl->expected_tpt; 1376 u16 high_low; 1377 u32 target_tpt; 1378 int rate_idx; 1379 1380 if (success_ratio >= RS_PERCENT(IWL_MVM_RS_SR_NO_DECREASE)) { 1381 target_tpt = 100 * expected_current_tpt; 1382 IWL_DEBUG_RATE(mvm, 1383 "SR %d high. Find rate exceeding EXPECTED_CURRENT %d\n", 1384 success_ratio, target_tpt); 1385 } else { 1386 target_tpt = lq_sta->last_tpt; 1387 IWL_DEBUG_RATE(mvm, 1388 "SR %d not that good. Find rate exceeding ACTUAL_TPT %d\n", 1389 success_ratio, target_tpt); 1390 } 1391 1392 rate_idx = find_first_bit(&rate_mask, BITS_PER_LONG); 1393 1394 while (rate_idx != IWL_RATE_INVALID) { 1395 if (target_tpt < (100 * tpt_tbl[rate_idx])) 1396 break; 1397 1398 high_low = rs_get_adjacent_rate(mvm, rate_idx, rate_mask, 1399 tbl->rate.type); 1400 1401 rate_idx = (high_low >> 8) & 0xff; 1402 } 1403 1404 IWL_DEBUG_RATE(mvm, "Best rate found %d target_tp %d expected_new %d\n", 1405 rate_idx, target_tpt, 1406 rate_idx != IWL_RATE_INVALID ? 1407 100 * tpt_tbl[rate_idx] : IWL_INVALID_VALUE); 1408 1409 return rate_idx; 1410 } 1411 1412 static u32 rs_bw_from_sta_bw(struct ieee80211_sta *sta) 1413 { 1414 struct ieee80211_sta_vht_cap *sta_vht_cap = &sta->vht_cap; 1415 struct ieee80211_vht_cap vht_cap = { 1416 .vht_cap_info = cpu_to_le32(sta_vht_cap->cap), 1417 .supp_mcs = sta_vht_cap->vht_mcs, 1418 }; 1419 1420 switch (sta->bandwidth) { 1421 case IEEE80211_STA_RX_BW_160: 1422 /* 1423 * Don't use 160 MHz if VHT extended NSS support 1424 * says we cannot use 2 streams, we don't want to 1425 * deal with this. 1426 * We only check MCS 0 - they will support that if 1427 * we got here at all and we don't care which MCS, 1428 * we want to determine a more global state. 1429 */ 1430 if (ieee80211_get_vht_max_nss(&vht_cap, 1431 IEEE80211_VHT_CHANWIDTH_160MHZ, 1432 0, true, 1433 sta->rx_nss) < sta->rx_nss) 1434 return RATE_MCS_CHAN_WIDTH_80; 1435 return RATE_MCS_CHAN_WIDTH_160; 1436 case IEEE80211_STA_RX_BW_80: 1437 return RATE_MCS_CHAN_WIDTH_80; 1438 case IEEE80211_STA_RX_BW_40: 1439 return RATE_MCS_CHAN_WIDTH_40; 1440 case IEEE80211_STA_RX_BW_20: 1441 default: 1442 return RATE_MCS_CHAN_WIDTH_20; 1443 } 1444 } 1445 1446 /* 1447 * Check whether we should continue using same modulation mode, or 1448 * begin search for a new mode, based on: 1449 * 1) # tx successes or failures while using this mode 1450 * 2) # times calling this function 1451 * 3) elapsed time in this mode (not used, for now) 1452 */ 1453 static void rs_stay_in_table(struct iwl_lq_sta *lq_sta, bool force_search) 1454 { 1455 struct iwl_scale_tbl_info *tbl; 1456 int active_tbl; 1457 int flush_interval_passed = 0; 1458 struct iwl_mvm *mvm; 1459 1460 mvm = lq_sta->pers.drv; 1461 active_tbl = lq_sta->active_tbl; 1462 1463 tbl = &(lq_sta->lq_info[active_tbl]); 1464 1465 /* If we've been disallowing search, see if we should now allow it */ 1466 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) { 1467 /* Elapsed time using current modulation mode */ 1468 if (lq_sta->flush_timer) 1469 flush_interval_passed = 1470 time_after(jiffies, 1471 (unsigned long)(lq_sta->flush_timer + 1472 (IWL_MVM_RS_STAY_IN_COLUMN_TIMEOUT * HZ))); 1473 1474 /* 1475 * Check if we should allow search for new modulation mode. 1476 * If many frames have failed or succeeded, or we've used 1477 * this same modulation for a long time, allow search, and 1478 * reset history stats that keep track of whether we should 1479 * allow a new search. Also (below) reset all bitmaps and 1480 * stats in active history. 1481 */ 1482 if (force_search || 1483 (lq_sta->total_failed > lq_sta->max_failure_limit) || 1484 (lq_sta->total_success > lq_sta->max_success_limit) || 1485 ((!lq_sta->search_better_tbl) && 1486 (lq_sta->flush_timer) && (flush_interval_passed))) { 1487 IWL_DEBUG_RATE(mvm, 1488 "LQ: stay is expired %d %d %d\n", 1489 lq_sta->total_failed, 1490 lq_sta->total_success, 1491 flush_interval_passed); 1492 1493 /* Allow search for new mode */ 1494 lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_STARTED; 1495 IWL_DEBUG_RATE(mvm, 1496 "Moving to RS_STATE_SEARCH_CYCLE_STARTED\n"); 1497 lq_sta->total_failed = 0; 1498 lq_sta->total_success = 0; 1499 lq_sta->flush_timer = 0; 1500 /* mark the current column as visited */ 1501 lq_sta->visited_columns = BIT(tbl->column); 1502 /* 1503 * Else if we've used this modulation mode enough repetitions 1504 * (regardless of elapsed time or success/failure), reset 1505 * history bitmaps and rate-specific stats for all rates in 1506 * active table. 1507 */ 1508 } else { 1509 lq_sta->table_count++; 1510 if (lq_sta->table_count >= 1511 lq_sta->table_count_limit) { 1512 lq_sta->table_count = 0; 1513 1514 IWL_DEBUG_RATE(mvm, 1515 "LQ: stay in table clear win\n"); 1516 rs_rate_scale_clear_tbl_windows(mvm, tbl); 1517 } 1518 } 1519 1520 /* If transitioning to allow "search", reset all history 1521 * bitmaps and stats in active table (this will become the new 1522 * "search" table). */ 1523 if (lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED) { 1524 rs_rate_scale_clear_tbl_windows(mvm, tbl); 1525 } 1526 } 1527 } 1528 1529 static void rs_set_amsdu_len(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 1530 struct iwl_scale_tbl_info *tbl, 1531 enum rs_action scale_action) 1532 { 1533 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 1534 int i; 1535 1536 sta->max_amsdu_len = rs_fw_get_max_amsdu_len(sta); 1537 1538 /* 1539 * In case TLC offload is not active amsdu_enabled is either 0xFFFF 1540 * or 0, since there is no per-TID alg. 1541 */ 1542 if ((!is_vht(&tbl->rate) && !is_ht(&tbl->rate)) || 1543 tbl->rate.index < IWL_RATE_MCS_5_INDEX || 1544 scale_action == RS_ACTION_DOWNSCALE) 1545 mvmsta->amsdu_enabled = 0; 1546 else 1547 mvmsta->amsdu_enabled = 0xFFFF; 1548 1549 if (mvmsta->vif->bss_conf.he_support && 1550 !iwlwifi_mod_params.disable_11ax) 1551 mvmsta->max_amsdu_len = sta->max_amsdu_len; 1552 else 1553 mvmsta->max_amsdu_len = min_t(int, sta->max_amsdu_len, 8500); 1554 1555 sta->max_rc_amsdu_len = mvmsta->max_amsdu_len; 1556 1557 for (i = 0; i < IWL_MAX_TID_COUNT; i++) { 1558 if (mvmsta->amsdu_enabled) 1559 sta->max_tid_amsdu_len[i] = 1560 iwl_mvm_max_amsdu_size(mvm, sta, i); 1561 else 1562 /* 1563 * Not so elegant, but this will effectively 1564 * prevent AMSDU on this TID 1565 */ 1566 sta->max_tid_amsdu_len[i] = 1; 1567 } 1568 } 1569 1570 /* 1571 * setup rate table in uCode 1572 */ 1573 static void rs_update_rate_tbl(struct iwl_mvm *mvm, 1574 struct ieee80211_sta *sta, 1575 struct iwl_lq_sta *lq_sta, 1576 struct iwl_scale_tbl_info *tbl) 1577 { 1578 rs_fill_lq_cmd(mvm, sta, lq_sta, &tbl->rate); 1579 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq); 1580 } 1581 1582 static bool rs_tweak_rate_tbl(struct iwl_mvm *mvm, 1583 struct ieee80211_sta *sta, 1584 struct iwl_lq_sta *lq_sta, 1585 struct iwl_scale_tbl_info *tbl, 1586 enum rs_action scale_action) 1587 { 1588 if (rs_bw_from_sta_bw(sta) != RATE_MCS_CHAN_WIDTH_80) 1589 return false; 1590 1591 if (!is_vht_siso(&tbl->rate)) 1592 return false; 1593 1594 if ((tbl->rate.bw == RATE_MCS_CHAN_WIDTH_80) && 1595 (tbl->rate.index == IWL_RATE_MCS_0_INDEX) && 1596 (scale_action == RS_ACTION_DOWNSCALE)) { 1597 tbl->rate.bw = RATE_MCS_CHAN_WIDTH_20; 1598 tbl->rate.index = IWL_RATE_MCS_4_INDEX; 1599 IWL_DEBUG_RATE(mvm, "Switch 80Mhz SISO MCS0 -> 20Mhz MCS4\n"); 1600 goto tweaked; 1601 } 1602 1603 /* Go back to 80Mhz MCS1 only if we've established that 20Mhz MCS5 is 1604 * sustainable, i.e. we're past the test window. We can't go back 1605 * if MCS5 is just tested as this will happen always after switching 1606 * to 20Mhz MCS4 because the rate stats are cleared. 1607 */ 1608 if ((tbl->rate.bw == RATE_MCS_CHAN_WIDTH_20) && 1609 (((tbl->rate.index == IWL_RATE_MCS_5_INDEX) && 1610 (scale_action == RS_ACTION_STAY)) || 1611 ((tbl->rate.index > IWL_RATE_MCS_5_INDEX) && 1612 (scale_action == RS_ACTION_UPSCALE)))) { 1613 tbl->rate.bw = RATE_MCS_CHAN_WIDTH_80; 1614 tbl->rate.index = IWL_RATE_MCS_1_INDEX; 1615 IWL_DEBUG_RATE(mvm, "Switch 20Mhz SISO MCS5 -> 80Mhz MCS1\n"); 1616 goto tweaked; 1617 } 1618 1619 return false; 1620 1621 tweaked: 1622 rs_set_expected_tpt_table(lq_sta, tbl); 1623 rs_rate_scale_clear_tbl_windows(mvm, tbl); 1624 return true; 1625 } 1626 1627 static enum rs_column rs_get_next_column(struct iwl_mvm *mvm, 1628 struct iwl_lq_sta *lq_sta, 1629 struct ieee80211_sta *sta, 1630 struct iwl_scale_tbl_info *tbl) 1631 { 1632 int i, j, max_rate; 1633 enum rs_column next_col_id; 1634 const struct rs_tx_column *curr_col = &rs_tx_columns[tbl->column]; 1635 const struct rs_tx_column *next_col; 1636 allow_column_func_t allow_func; 1637 u8 valid_ants = iwl_mvm_get_valid_tx_ant(mvm); 1638 const u16 *expected_tpt_tbl; 1639 u16 tpt, max_expected_tpt; 1640 1641 for (i = 0; i < MAX_NEXT_COLUMNS; i++) { 1642 next_col_id = curr_col->next_columns[i]; 1643 1644 if (next_col_id == RS_COLUMN_INVALID) 1645 continue; 1646 1647 if (lq_sta->visited_columns & BIT(next_col_id)) { 1648 IWL_DEBUG_RATE(mvm, "Skip already visited column %d\n", 1649 next_col_id); 1650 continue; 1651 } 1652 1653 next_col = &rs_tx_columns[next_col_id]; 1654 1655 if (!rs_is_valid_ant(valid_ants, next_col->ant)) { 1656 IWL_DEBUG_RATE(mvm, 1657 "Skip column %d as ANT config isn't supported by chip. valid_ants 0x%x column ant 0x%x\n", 1658 next_col_id, valid_ants, next_col->ant); 1659 continue; 1660 } 1661 1662 for (j = 0; j < MAX_COLUMN_CHECKS; j++) { 1663 allow_func = next_col->checks[j]; 1664 if (allow_func && !allow_func(mvm, sta, &tbl->rate, 1665 next_col)) 1666 break; 1667 } 1668 1669 if (j != MAX_COLUMN_CHECKS) { 1670 IWL_DEBUG_RATE(mvm, 1671 "Skip column %d: not allowed (check %d failed)\n", 1672 next_col_id, j); 1673 1674 continue; 1675 } 1676 1677 tpt = lq_sta->last_tpt / 100; 1678 expected_tpt_tbl = rs_get_expected_tpt_table(lq_sta, next_col, 1679 rs_bw_from_sta_bw(sta)); 1680 if (WARN_ON_ONCE(!expected_tpt_tbl)) 1681 continue; 1682 1683 max_rate = rs_get_max_allowed_rate(lq_sta, next_col); 1684 if (max_rate == IWL_RATE_INVALID) { 1685 IWL_DEBUG_RATE(mvm, 1686 "Skip column %d: no rate is allowed in this column\n", 1687 next_col_id); 1688 continue; 1689 } 1690 1691 max_expected_tpt = expected_tpt_tbl[max_rate]; 1692 if (tpt >= max_expected_tpt) { 1693 IWL_DEBUG_RATE(mvm, 1694 "Skip column %d: can't beat current TPT. Max expected %d current %d\n", 1695 next_col_id, max_expected_tpt, tpt); 1696 continue; 1697 } 1698 1699 IWL_DEBUG_RATE(mvm, 1700 "Found potential column %d. Max expected %d current %d\n", 1701 next_col_id, max_expected_tpt, tpt); 1702 break; 1703 } 1704 1705 if (i == MAX_NEXT_COLUMNS) 1706 return RS_COLUMN_INVALID; 1707 1708 return next_col_id; 1709 } 1710 1711 static int rs_switch_to_column(struct iwl_mvm *mvm, 1712 struct iwl_lq_sta *lq_sta, 1713 struct ieee80211_sta *sta, 1714 enum rs_column col_id) 1715 { 1716 struct iwl_scale_tbl_info *tbl = &lq_sta->lq_info[lq_sta->active_tbl]; 1717 struct iwl_scale_tbl_info *search_tbl = 1718 &lq_sta->lq_info[rs_search_tbl(lq_sta->active_tbl)]; 1719 struct rs_rate *rate = &search_tbl->rate; 1720 const struct rs_tx_column *column = &rs_tx_columns[col_id]; 1721 const struct rs_tx_column *curr_column = &rs_tx_columns[tbl->column]; 1722 unsigned long rate_mask = 0; 1723 u32 rate_idx = 0; 1724 1725 memcpy(search_tbl, tbl, offsetof(struct iwl_scale_tbl_info, win)); 1726 1727 rate->sgi = column->sgi; 1728 rate->ant = column->ant; 1729 1730 if (column->mode == RS_LEGACY) { 1731 if (lq_sta->band == NL80211_BAND_5GHZ) 1732 rate->type = LQ_LEGACY_A; 1733 else 1734 rate->type = LQ_LEGACY_G; 1735 1736 rate->bw = RATE_MCS_CHAN_WIDTH_20; 1737 rate->ldpc = false; 1738 rate_mask = lq_sta->active_legacy_rate; 1739 } else if (column->mode == RS_SISO) { 1740 rate->type = lq_sta->is_vht ? LQ_VHT_SISO : LQ_HT_SISO; 1741 rate_mask = lq_sta->active_siso_rate; 1742 } else if (column->mode == RS_MIMO2) { 1743 rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2; 1744 rate_mask = lq_sta->active_mimo2_rate; 1745 } else { 1746 WARN_ONCE(1, "Bad column mode"); 1747 } 1748 1749 if (column->mode != RS_LEGACY) { 1750 rate->bw = rs_bw_from_sta_bw(sta); 1751 rate->ldpc = lq_sta->ldpc; 1752 } 1753 1754 search_tbl->column = col_id; 1755 rs_set_expected_tpt_table(lq_sta, search_tbl); 1756 1757 lq_sta->visited_columns |= BIT(col_id); 1758 1759 /* Get the best matching rate if we're changing modes. e.g. 1760 * SISO->MIMO, LEGACY->SISO, MIMO->SISO 1761 */ 1762 if (curr_column->mode != column->mode) { 1763 rate_idx = rs_get_best_rate(mvm, lq_sta, search_tbl, 1764 rate_mask, rate->index); 1765 1766 if ((rate_idx == IWL_RATE_INVALID) || 1767 !(BIT(rate_idx) & rate_mask)) { 1768 IWL_DEBUG_RATE(mvm, 1769 "can not switch with index %d" 1770 " rate mask %lx\n", 1771 rate_idx, rate_mask); 1772 1773 goto err; 1774 } 1775 1776 rate->index = rate_idx; 1777 } 1778 1779 IWL_DEBUG_RATE(mvm, "Switched to column %d: Index %d\n", 1780 col_id, rate->index); 1781 1782 return 0; 1783 1784 err: 1785 rate->type = LQ_NONE; 1786 return -1; 1787 } 1788 1789 static enum rs_action rs_get_rate_action(struct iwl_mvm *mvm, 1790 struct iwl_scale_tbl_info *tbl, 1791 s32 sr, int low, int high, 1792 int current_tpt, 1793 int low_tpt, int high_tpt) 1794 { 1795 enum rs_action action = RS_ACTION_STAY; 1796 1797 if ((sr <= RS_PERCENT(IWL_MVM_RS_SR_FORCE_DECREASE)) || 1798 (current_tpt == 0)) { 1799 IWL_DEBUG_RATE(mvm, 1800 "Decrease rate because of low SR\n"); 1801 return RS_ACTION_DOWNSCALE; 1802 } 1803 1804 if ((low_tpt == IWL_INVALID_VALUE) && 1805 (high_tpt == IWL_INVALID_VALUE) && 1806 (high != IWL_RATE_INVALID)) { 1807 IWL_DEBUG_RATE(mvm, 1808 "No data about high/low rates. Increase rate\n"); 1809 return RS_ACTION_UPSCALE; 1810 } 1811 1812 if ((high_tpt == IWL_INVALID_VALUE) && 1813 (high != IWL_RATE_INVALID) && 1814 (low_tpt != IWL_INVALID_VALUE) && 1815 (low_tpt < current_tpt)) { 1816 IWL_DEBUG_RATE(mvm, 1817 "No data about high rate and low rate is worse. Increase rate\n"); 1818 return RS_ACTION_UPSCALE; 1819 } 1820 1821 if ((high_tpt != IWL_INVALID_VALUE) && 1822 (high_tpt > current_tpt)) { 1823 IWL_DEBUG_RATE(mvm, 1824 "Higher rate is better. Increate rate\n"); 1825 return RS_ACTION_UPSCALE; 1826 } 1827 1828 if ((low_tpt != IWL_INVALID_VALUE) && 1829 (high_tpt != IWL_INVALID_VALUE) && 1830 (low_tpt < current_tpt) && 1831 (high_tpt < current_tpt)) { 1832 IWL_DEBUG_RATE(mvm, 1833 "Both high and low are worse. Maintain rate\n"); 1834 return RS_ACTION_STAY; 1835 } 1836 1837 if ((low_tpt != IWL_INVALID_VALUE) && 1838 (low_tpt > current_tpt)) { 1839 IWL_DEBUG_RATE(mvm, 1840 "Lower rate is better\n"); 1841 action = RS_ACTION_DOWNSCALE; 1842 goto out; 1843 } 1844 1845 if ((low_tpt == IWL_INVALID_VALUE) && 1846 (low != IWL_RATE_INVALID)) { 1847 IWL_DEBUG_RATE(mvm, 1848 "No data about lower rate\n"); 1849 action = RS_ACTION_DOWNSCALE; 1850 goto out; 1851 } 1852 1853 IWL_DEBUG_RATE(mvm, "Maintain rate\n"); 1854 1855 out: 1856 if ((action == RS_ACTION_DOWNSCALE) && (low != IWL_RATE_INVALID)) { 1857 if (sr >= RS_PERCENT(IWL_MVM_RS_SR_NO_DECREASE)) { 1858 IWL_DEBUG_RATE(mvm, 1859 "SR is above NO DECREASE. Avoid downscale\n"); 1860 action = RS_ACTION_STAY; 1861 } else if (current_tpt > (100 * tbl->expected_tpt[low])) { 1862 IWL_DEBUG_RATE(mvm, 1863 "Current TPT is higher than max expected in low rate. Avoid downscale\n"); 1864 action = RS_ACTION_STAY; 1865 } else { 1866 IWL_DEBUG_RATE(mvm, "Decrease rate\n"); 1867 } 1868 } 1869 1870 return action; 1871 } 1872 1873 static bool rs_stbc_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 1874 struct iwl_lq_sta *lq_sta) 1875 { 1876 /* Our chip supports Tx STBC and the peer is an HT/VHT STA which 1877 * supports STBC of at least 1*SS 1878 */ 1879 if (!lq_sta->stbc_capable) 1880 return false; 1881 1882 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) 1883 return false; 1884 1885 return true; 1886 } 1887 1888 static void rs_get_adjacent_txp(struct iwl_mvm *mvm, int index, 1889 int *weaker, int *stronger) 1890 { 1891 *weaker = index + IWL_MVM_RS_TPC_TX_POWER_STEP; 1892 if (*weaker > TPC_MAX_REDUCTION) 1893 *weaker = TPC_INVALID; 1894 1895 *stronger = index - IWL_MVM_RS_TPC_TX_POWER_STEP; 1896 if (*stronger < 0) 1897 *stronger = TPC_INVALID; 1898 } 1899 1900 static bool rs_tpc_allowed(struct iwl_mvm *mvm, struct ieee80211_vif *vif, 1901 struct rs_rate *rate, enum nl80211_band band) 1902 { 1903 int index = rate->index; 1904 bool cam = (iwlmvm_mod_params.power_scheme == IWL_POWER_SCHEME_CAM); 1905 bool sta_ps_disabled = (vif->type == NL80211_IFTYPE_STATION && 1906 !vif->bss_conf.ps); 1907 1908 IWL_DEBUG_RATE(mvm, "cam: %d sta_ps_disabled %d\n", 1909 cam, sta_ps_disabled); 1910 /* 1911 * allow tpc only if power management is enabled, or bt coex 1912 * activity grade allows it and we are on 2.4Ghz. 1913 */ 1914 if ((cam || sta_ps_disabled) && 1915 !iwl_mvm_bt_coex_is_tpc_allowed(mvm, band)) 1916 return false; 1917 1918 IWL_DEBUG_RATE(mvm, "check rate, table type: %d\n", rate->type); 1919 if (is_legacy(rate)) 1920 return index == IWL_RATE_54M_INDEX; 1921 if (is_ht(rate)) 1922 return index == IWL_RATE_MCS_7_INDEX; 1923 if (is_vht(rate)) 1924 return index == IWL_RATE_MCS_7_INDEX || 1925 index == IWL_RATE_MCS_8_INDEX || 1926 index == IWL_RATE_MCS_9_INDEX; 1927 1928 WARN_ON_ONCE(1); 1929 return false; 1930 } 1931 1932 enum tpc_action { 1933 TPC_ACTION_STAY, 1934 TPC_ACTION_DECREASE, 1935 TPC_ACTION_INCREASE, 1936 TPC_ACTION_NO_RESTIRCTION, 1937 }; 1938 1939 static enum tpc_action rs_get_tpc_action(struct iwl_mvm *mvm, 1940 s32 sr, int weak, int strong, 1941 int current_tpt, 1942 int weak_tpt, int strong_tpt) 1943 { 1944 /* stay until we have valid tpt */ 1945 if (current_tpt == IWL_INVALID_VALUE) { 1946 IWL_DEBUG_RATE(mvm, "no current tpt. stay.\n"); 1947 return TPC_ACTION_STAY; 1948 } 1949 1950 /* Too many failures, increase txp */ 1951 if (sr <= RS_PERCENT(IWL_MVM_RS_TPC_SR_FORCE_INCREASE) || 1952 current_tpt == 0) { 1953 IWL_DEBUG_RATE(mvm, "increase txp because of weak SR\n"); 1954 return TPC_ACTION_NO_RESTIRCTION; 1955 } 1956 1957 /* try decreasing first if applicable */ 1958 if (sr >= RS_PERCENT(IWL_MVM_RS_TPC_SR_NO_INCREASE) && 1959 weak != TPC_INVALID) { 1960 if (weak_tpt == IWL_INVALID_VALUE && 1961 (strong_tpt == IWL_INVALID_VALUE || 1962 current_tpt >= strong_tpt)) { 1963 IWL_DEBUG_RATE(mvm, 1964 "no weak txp measurement. decrease txp\n"); 1965 return TPC_ACTION_DECREASE; 1966 } 1967 1968 if (weak_tpt > current_tpt) { 1969 IWL_DEBUG_RATE(mvm, 1970 "lower txp has better tpt. decrease txp\n"); 1971 return TPC_ACTION_DECREASE; 1972 } 1973 } 1974 1975 /* next, increase if needed */ 1976 if (sr < RS_PERCENT(IWL_MVM_RS_TPC_SR_NO_INCREASE) && 1977 strong != TPC_INVALID) { 1978 if (weak_tpt == IWL_INVALID_VALUE && 1979 strong_tpt != IWL_INVALID_VALUE && 1980 current_tpt < strong_tpt) { 1981 IWL_DEBUG_RATE(mvm, 1982 "higher txp has better tpt. increase txp\n"); 1983 return TPC_ACTION_INCREASE; 1984 } 1985 1986 if (weak_tpt < current_tpt && 1987 (strong_tpt == IWL_INVALID_VALUE || 1988 strong_tpt > current_tpt)) { 1989 IWL_DEBUG_RATE(mvm, 1990 "lower txp has worse tpt. increase txp\n"); 1991 return TPC_ACTION_INCREASE; 1992 } 1993 } 1994 1995 IWL_DEBUG_RATE(mvm, "no need to increase or decrease txp - stay\n"); 1996 return TPC_ACTION_STAY; 1997 } 1998 1999 static bool rs_tpc_perform(struct iwl_mvm *mvm, 2000 struct ieee80211_sta *sta, 2001 struct iwl_lq_sta *lq_sta, 2002 struct iwl_scale_tbl_info *tbl) 2003 { 2004 struct iwl_mvm_sta *mvm_sta = iwl_mvm_sta_from_mac80211(sta); 2005 struct ieee80211_vif *vif = mvm_sta->vif; 2006 struct ieee80211_chanctx_conf *chanctx_conf; 2007 enum nl80211_band band; 2008 struct iwl_rate_scale_data *window; 2009 struct rs_rate *rate = &tbl->rate; 2010 enum tpc_action action; 2011 s32 sr; 2012 u8 cur = lq_sta->lq.reduced_tpc; 2013 int current_tpt; 2014 int weak, strong; 2015 int weak_tpt = IWL_INVALID_VALUE, strong_tpt = IWL_INVALID_VALUE; 2016 2017 #ifdef CONFIG_MAC80211_DEBUGFS 2018 if (lq_sta->pers.dbg_fixed_txp_reduction <= TPC_MAX_REDUCTION) { 2019 IWL_DEBUG_RATE(mvm, "fixed tpc: %d\n", 2020 lq_sta->pers.dbg_fixed_txp_reduction); 2021 lq_sta->lq.reduced_tpc = lq_sta->pers.dbg_fixed_txp_reduction; 2022 return cur != lq_sta->pers.dbg_fixed_txp_reduction; 2023 } 2024 #endif 2025 2026 rcu_read_lock(); 2027 chanctx_conf = rcu_dereference(vif->chanctx_conf); 2028 if (WARN_ON(!chanctx_conf)) 2029 band = NUM_NL80211_BANDS; 2030 else 2031 band = chanctx_conf->def.chan->band; 2032 rcu_read_unlock(); 2033 2034 if (!rs_tpc_allowed(mvm, vif, rate, band)) { 2035 IWL_DEBUG_RATE(mvm, 2036 "tpc is not allowed. remove txp restrictions\n"); 2037 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION; 2038 return cur != TPC_NO_REDUCTION; 2039 } 2040 2041 rs_get_adjacent_txp(mvm, cur, &weak, &strong); 2042 2043 /* Collect measured throughputs for current and adjacent rates */ 2044 window = tbl->tpc_win; 2045 sr = window[cur].success_ratio; 2046 current_tpt = window[cur].average_tpt; 2047 if (weak != TPC_INVALID) 2048 weak_tpt = window[weak].average_tpt; 2049 if (strong != TPC_INVALID) 2050 strong_tpt = window[strong].average_tpt; 2051 2052 IWL_DEBUG_RATE(mvm, 2053 "(TPC: %d): cur_tpt %d SR %d weak %d strong %d weak_tpt %d strong_tpt %d\n", 2054 cur, current_tpt, sr, weak, strong, 2055 weak_tpt, strong_tpt); 2056 2057 action = rs_get_tpc_action(mvm, sr, weak, strong, 2058 current_tpt, weak_tpt, strong_tpt); 2059 2060 /* override actions if we are on the edge */ 2061 if (weak == TPC_INVALID && action == TPC_ACTION_DECREASE) { 2062 IWL_DEBUG_RATE(mvm, "already in lowest txp, stay\n"); 2063 action = TPC_ACTION_STAY; 2064 } else if (strong == TPC_INVALID && 2065 (action == TPC_ACTION_INCREASE || 2066 action == TPC_ACTION_NO_RESTIRCTION)) { 2067 IWL_DEBUG_RATE(mvm, "already in highest txp, stay\n"); 2068 action = TPC_ACTION_STAY; 2069 } 2070 2071 switch (action) { 2072 case TPC_ACTION_DECREASE: 2073 lq_sta->lq.reduced_tpc = weak; 2074 return true; 2075 case TPC_ACTION_INCREASE: 2076 lq_sta->lq.reduced_tpc = strong; 2077 return true; 2078 case TPC_ACTION_NO_RESTIRCTION: 2079 lq_sta->lq.reduced_tpc = TPC_NO_REDUCTION; 2080 return true; 2081 case TPC_ACTION_STAY: 2082 /* do nothing */ 2083 break; 2084 } 2085 return false; 2086 } 2087 2088 /* 2089 * Do rate scaling and search for new modulation mode. 2090 */ 2091 static void rs_rate_scale_perform(struct iwl_mvm *mvm, 2092 struct ieee80211_sta *sta, 2093 struct iwl_lq_sta *lq_sta, 2094 int tid, bool ndp) 2095 { 2096 int low = IWL_RATE_INVALID; 2097 int high = IWL_RATE_INVALID; 2098 int index; 2099 struct iwl_rate_scale_data *window = NULL; 2100 int current_tpt = IWL_INVALID_VALUE; 2101 int low_tpt = IWL_INVALID_VALUE; 2102 int high_tpt = IWL_INVALID_VALUE; 2103 u32 fail_count; 2104 enum rs_action scale_action = RS_ACTION_STAY; 2105 u16 rate_mask; 2106 u8 update_lq = 0; 2107 struct iwl_scale_tbl_info *tbl, *tbl1; 2108 u8 active_tbl = 0; 2109 u8 done_search = 0; 2110 u16 high_low; 2111 s32 sr; 2112 u8 prev_agg = lq_sta->is_agg; 2113 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 2114 struct rs_rate *rate; 2115 2116 lq_sta->is_agg = !!mvmsta->agg_tids; 2117 2118 /* 2119 * Select rate-scale / modulation-mode table to work with in 2120 * the rest of this function: "search" if searching for better 2121 * modulation mode, or "active" if doing rate scaling within a mode. 2122 */ 2123 if (!lq_sta->search_better_tbl) 2124 active_tbl = lq_sta->active_tbl; 2125 else 2126 active_tbl = rs_search_tbl(lq_sta->active_tbl); 2127 2128 tbl = &(lq_sta->lq_info[active_tbl]); 2129 rate = &tbl->rate; 2130 2131 if (prev_agg != lq_sta->is_agg) { 2132 IWL_DEBUG_RATE(mvm, 2133 "Aggregation changed: prev %d current %d. Update expected TPT table\n", 2134 prev_agg, lq_sta->is_agg); 2135 rs_set_expected_tpt_table(lq_sta, tbl); 2136 rs_rate_scale_clear_tbl_windows(mvm, tbl); 2137 } 2138 2139 /* current tx rate */ 2140 index = rate->index; 2141 2142 /* rates available for this association, and for modulation mode */ 2143 rate_mask = rs_get_supported_rates(lq_sta, rate); 2144 2145 if (!(BIT(index) & rate_mask)) { 2146 IWL_ERR(mvm, "Current Rate is not valid\n"); 2147 if (lq_sta->search_better_tbl) { 2148 /* revert to active table if search table is not valid*/ 2149 rate->type = LQ_NONE; 2150 lq_sta->search_better_tbl = 0; 2151 tbl = &(lq_sta->lq_info[lq_sta->active_tbl]); 2152 rs_update_rate_tbl(mvm, sta, lq_sta, tbl); 2153 } 2154 return; 2155 } 2156 2157 /* Get expected throughput table and history window for current rate */ 2158 if (!tbl->expected_tpt) { 2159 IWL_ERR(mvm, "tbl->expected_tpt is NULL\n"); 2160 return; 2161 } 2162 2163 /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */ 2164 window = &(tbl->win[index]); 2165 2166 /* 2167 * If there is not enough history to calculate actual average 2168 * throughput, keep analyzing results of more tx frames, without 2169 * changing rate or mode (bypass most of the rest of this function). 2170 * Set up new rate table in uCode only if old rate is not supported 2171 * in current association (use new rate found above). 2172 */ 2173 fail_count = window->counter - window->success_counter; 2174 if ((fail_count < IWL_MVM_RS_RATE_MIN_FAILURE_TH) && 2175 (window->success_counter < IWL_MVM_RS_RATE_MIN_SUCCESS_TH)) { 2176 IWL_DEBUG_RATE(mvm, 2177 "%s: Test Window: succ %d total %d\n", 2178 rs_pretty_rate(rate), 2179 window->success_counter, window->counter); 2180 2181 /* Can't calculate this yet; not enough history */ 2182 window->average_tpt = IWL_INVALID_VALUE; 2183 2184 /* Should we stay with this modulation mode, 2185 * or search for a new one? */ 2186 rs_stay_in_table(lq_sta, false); 2187 2188 return; 2189 } 2190 2191 /* If we are searching for better modulation mode, check success. */ 2192 if (lq_sta->search_better_tbl) { 2193 /* If good success, continue using the "search" mode; 2194 * no need to send new link quality command, since we're 2195 * continuing to use the setup that we've been trying. */ 2196 if (window->average_tpt > lq_sta->last_tpt) { 2197 IWL_DEBUG_RATE(mvm, 2198 "SWITCHING TO NEW TABLE SR: %d " 2199 "cur-tpt %d old-tpt %d\n", 2200 window->success_ratio, 2201 window->average_tpt, 2202 lq_sta->last_tpt); 2203 2204 /* Swap tables; "search" becomes "active" */ 2205 lq_sta->active_tbl = active_tbl; 2206 current_tpt = window->average_tpt; 2207 /* Else poor success; go back to mode in "active" table */ 2208 } else { 2209 IWL_DEBUG_RATE(mvm, 2210 "GOING BACK TO THE OLD TABLE: SR %d " 2211 "cur-tpt %d old-tpt %d\n", 2212 window->success_ratio, 2213 window->average_tpt, 2214 lq_sta->last_tpt); 2215 2216 /* Nullify "search" table */ 2217 rate->type = LQ_NONE; 2218 2219 /* Revert to "active" table */ 2220 active_tbl = lq_sta->active_tbl; 2221 tbl = &(lq_sta->lq_info[active_tbl]); 2222 2223 /* Revert to "active" rate and throughput info */ 2224 index = tbl->rate.index; 2225 current_tpt = lq_sta->last_tpt; 2226 2227 /* Need to set up a new rate table in uCode */ 2228 update_lq = 1; 2229 } 2230 2231 /* Either way, we've made a decision; modulation mode 2232 * search is done, allow rate adjustment next time. */ 2233 lq_sta->search_better_tbl = 0; 2234 done_search = 1; /* Don't switch modes below! */ 2235 goto lq_update; 2236 } 2237 2238 /* (Else) not in search of better modulation mode, try for better 2239 * starting rate, while staying in this mode. */ 2240 high_low = rs_get_adjacent_rate(mvm, index, rate_mask, rate->type); 2241 low = high_low & 0xff; 2242 high = (high_low >> 8) & 0xff; 2243 2244 /* TODO: handle rate_idx_mask and rate_idx_mcs_mask */ 2245 2246 sr = window->success_ratio; 2247 2248 /* Collect measured throughputs for current and adjacent rates */ 2249 current_tpt = window->average_tpt; 2250 if (low != IWL_RATE_INVALID) 2251 low_tpt = tbl->win[low].average_tpt; 2252 if (high != IWL_RATE_INVALID) 2253 high_tpt = tbl->win[high].average_tpt; 2254 2255 IWL_DEBUG_RATE(mvm, 2256 "%s: cur_tpt %d SR %d low %d high %d low_tpt %d high_tpt %d\n", 2257 rs_pretty_rate(rate), current_tpt, sr, 2258 low, high, low_tpt, high_tpt); 2259 2260 scale_action = rs_get_rate_action(mvm, tbl, sr, low, high, 2261 current_tpt, low_tpt, high_tpt); 2262 2263 /* Force a search in case BT doesn't like us being in MIMO */ 2264 if (is_mimo(rate) && 2265 !iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) { 2266 IWL_DEBUG_RATE(mvm, 2267 "BT Coex forbids MIMO. Search for new config\n"); 2268 rs_stay_in_table(lq_sta, true); 2269 goto lq_update; 2270 } 2271 2272 switch (scale_action) { 2273 case RS_ACTION_DOWNSCALE: 2274 /* Decrease starting rate, update uCode's rate table */ 2275 if (low != IWL_RATE_INVALID) { 2276 update_lq = 1; 2277 index = low; 2278 } else { 2279 IWL_DEBUG_RATE(mvm, 2280 "At the bottom rate. Can't decrease\n"); 2281 } 2282 2283 break; 2284 case RS_ACTION_UPSCALE: 2285 /* Increase starting rate, update uCode's rate table */ 2286 if (high != IWL_RATE_INVALID) { 2287 update_lq = 1; 2288 index = high; 2289 } else { 2290 IWL_DEBUG_RATE(mvm, 2291 "At the top rate. Can't increase\n"); 2292 } 2293 2294 break; 2295 case RS_ACTION_STAY: 2296 /* No change */ 2297 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) 2298 update_lq = rs_tpc_perform(mvm, sta, lq_sta, tbl); 2299 break; 2300 default: 2301 break; 2302 } 2303 2304 lq_update: 2305 /* Replace uCode's rate table for the destination station. */ 2306 if (update_lq) { 2307 tbl->rate.index = index; 2308 if (IWL_MVM_RS_80_20_FAR_RANGE_TWEAK) 2309 rs_tweak_rate_tbl(mvm, sta, lq_sta, tbl, scale_action); 2310 rs_set_amsdu_len(mvm, sta, tbl, scale_action); 2311 rs_update_rate_tbl(mvm, sta, lq_sta, tbl); 2312 } 2313 2314 rs_stay_in_table(lq_sta, false); 2315 2316 /* 2317 * Search for new modulation mode if we're: 2318 * 1) Not changing rates right now 2319 * 2) Not just finishing up a search 2320 * 3) Allowing a new search 2321 */ 2322 if (!update_lq && !done_search && 2323 lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_STARTED 2324 && window->counter) { 2325 enum rs_column next_column; 2326 2327 /* Save current throughput to compare with "search" throughput*/ 2328 lq_sta->last_tpt = current_tpt; 2329 2330 IWL_DEBUG_RATE(mvm, 2331 "Start Search: update_lq %d done_search %d rs_state %d win->counter %d\n", 2332 update_lq, done_search, lq_sta->rs_state, 2333 window->counter); 2334 2335 next_column = rs_get_next_column(mvm, lq_sta, sta, tbl); 2336 if (next_column != RS_COLUMN_INVALID) { 2337 int ret = rs_switch_to_column(mvm, lq_sta, sta, 2338 next_column); 2339 if (!ret) 2340 lq_sta->search_better_tbl = 1; 2341 } else { 2342 IWL_DEBUG_RATE(mvm, 2343 "No more columns to explore in search cycle. Go to RS_STATE_SEARCH_CYCLE_ENDED\n"); 2344 lq_sta->rs_state = RS_STATE_SEARCH_CYCLE_ENDED; 2345 } 2346 2347 /* If new "search" mode was selected, set up in uCode table */ 2348 if (lq_sta->search_better_tbl) { 2349 /* Access the "search" table, clear its history. */ 2350 tbl = &lq_sta->lq_info[rs_search_tbl(lq_sta->active_tbl)]; 2351 rs_rate_scale_clear_tbl_windows(mvm, tbl); 2352 2353 /* Use new "search" start rate */ 2354 index = tbl->rate.index; 2355 2356 rs_dump_rate(mvm, &tbl->rate, 2357 "Switch to SEARCH TABLE:"); 2358 rs_update_rate_tbl(mvm, sta, lq_sta, tbl); 2359 } else { 2360 done_search = 1; 2361 } 2362 } 2363 2364 if (!ndp) 2365 rs_tl_turn_on_agg(mvm, mvmsta, tid, lq_sta, sta); 2366 2367 if (done_search && lq_sta->rs_state == RS_STATE_SEARCH_CYCLE_ENDED) { 2368 tbl1 = &(lq_sta->lq_info[lq_sta->active_tbl]); 2369 rs_set_stay_in_table(mvm, is_legacy(&tbl1->rate), lq_sta); 2370 } 2371 } 2372 2373 struct rs_init_rate_info { 2374 s8 rssi; 2375 u8 rate_idx; 2376 }; 2377 2378 static const struct rs_init_rate_info rs_optimal_rates_24ghz_legacy[] = { 2379 { -60, IWL_RATE_54M_INDEX }, 2380 { -64, IWL_RATE_48M_INDEX }, 2381 { -68, IWL_RATE_36M_INDEX }, 2382 { -80, IWL_RATE_24M_INDEX }, 2383 { -84, IWL_RATE_18M_INDEX }, 2384 { -85, IWL_RATE_12M_INDEX }, 2385 { -86, IWL_RATE_11M_INDEX }, 2386 { -88, IWL_RATE_5M_INDEX }, 2387 { -90, IWL_RATE_2M_INDEX }, 2388 { S8_MIN, IWL_RATE_1M_INDEX }, 2389 }; 2390 2391 static const struct rs_init_rate_info rs_optimal_rates_5ghz_legacy[] = { 2392 { -60, IWL_RATE_54M_INDEX }, 2393 { -64, IWL_RATE_48M_INDEX }, 2394 { -72, IWL_RATE_36M_INDEX }, 2395 { -80, IWL_RATE_24M_INDEX }, 2396 { -84, IWL_RATE_18M_INDEX }, 2397 { -85, IWL_RATE_12M_INDEX }, 2398 { -87, IWL_RATE_9M_INDEX }, 2399 { S8_MIN, IWL_RATE_6M_INDEX }, 2400 }; 2401 2402 static const struct rs_init_rate_info rs_optimal_rates_ht[] = { 2403 { -60, IWL_RATE_MCS_7_INDEX }, 2404 { -64, IWL_RATE_MCS_6_INDEX }, 2405 { -68, IWL_RATE_MCS_5_INDEX }, 2406 { -72, IWL_RATE_MCS_4_INDEX }, 2407 { -80, IWL_RATE_MCS_3_INDEX }, 2408 { -84, IWL_RATE_MCS_2_INDEX }, 2409 { -85, IWL_RATE_MCS_1_INDEX }, 2410 { S8_MIN, IWL_RATE_MCS_0_INDEX}, 2411 }; 2412 2413 /* MCS index 9 is not valid for 20MHz VHT channel width, 2414 * but is ok for 40, 80 and 160MHz channels. 2415 */ 2416 static const struct rs_init_rate_info rs_optimal_rates_vht_20mhz[] = { 2417 { -60, IWL_RATE_MCS_8_INDEX }, 2418 { -64, IWL_RATE_MCS_7_INDEX }, 2419 { -68, IWL_RATE_MCS_6_INDEX }, 2420 { -72, IWL_RATE_MCS_5_INDEX }, 2421 { -80, IWL_RATE_MCS_4_INDEX }, 2422 { -84, IWL_RATE_MCS_3_INDEX }, 2423 { -85, IWL_RATE_MCS_2_INDEX }, 2424 { -87, IWL_RATE_MCS_1_INDEX }, 2425 { S8_MIN, IWL_RATE_MCS_0_INDEX}, 2426 }; 2427 2428 static const struct rs_init_rate_info rs_optimal_rates_vht[] = { 2429 { -60, IWL_RATE_MCS_9_INDEX }, 2430 { -64, IWL_RATE_MCS_8_INDEX }, 2431 { -68, IWL_RATE_MCS_7_INDEX }, 2432 { -72, IWL_RATE_MCS_6_INDEX }, 2433 { -80, IWL_RATE_MCS_5_INDEX }, 2434 { -84, IWL_RATE_MCS_4_INDEX }, 2435 { -85, IWL_RATE_MCS_3_INDEX }, 2436 { -87, IWL_RATE_MCS_2_INDEX }, 2437 { -88, IWL_RATE_MCS_1_INDEX }, 2438 { S8_MIN, IWL_RATE_MCS_0_INDEX }, 2439 }; 2440 2441 #define IWL_RS_LOW_RSSI_THRESHOLD (-76) /* dBm */ 2442 2443 /* Init the optimal rate based on STA caps 2444 * This combined with rssi is used to report the last tx rate 2445 * to userspace when we haven't transmitted enough frames. 2446 */ 2447 static void rs_init_optimal_rate(struct iwl_mvm *mvm, 2448 struct ieee80211_sta *sta, 2449 struct iwl_lq_sta *lq_sta) 2450 { 2451 struct rs_rate *rate = &lq_sta->optimal_rate; 2452 2453 if (lq_sta->max_mimo2_rate_idx != IWL_RATE_INVALID) 2454 rate->type = lq_sta->is_vht ? LQ_VHT_MIMO2 : LQ_HT_MIMO2; 2455 else if (lq_sta->max_siso_rate_idx != IWL_RATE_INVALID) 2456 rate->type = lq_sta->is_vht ? LQ_VHT_SISO : LQ_HT_SISO; 2457 else if (lq_sta->band == NL80211_BAND_5GHZ) 2458 rate->type = LQ_LEGACY_A; 2459 else 2460 rate->type = LQ_LEGACY_G; 2461 2462 rate->bw = rs_bw_from_sta_bw(sta); 2463 rate->sgi = rs_sgi_allow(mvm, sta, rate, NULL); 2464 2465 /* ANT/LDPC/STBC aren't relevant for the rate reported to userspace */ 2466 2467 if (is_mimo(rate)) { 2468 lq_sta->optimal_rate_mask = lq_sta->active_mimo2_rate; 2469 } else if (is_siso(rate)) { 2470 lq_sta->optimal_rate_mask = lq_sta->active_siso_rate; 2471 } else { 2472 lq_sta->optimal_rate_mask = lq_sta->active_legacy_rate; 2473 2474 if (lq_sta->band == NL80211_BAND_5GHZ) { 2475 lq_sta->optimal_rates = rs_optimal_rates_5ghz_legacy; 2476 lq_sta->optimal_nentries = 2477 ARRAY_SIZE(rs_optimal_rates_5ghz_legacy); 2478 } else { 2479 lq_sta->optimal_rates = rs_optimal_rates_24ghz_legacy; 2480 lq_sta->optimal_nentries = 2481 ARRAY_SIZE(rs_optimal_rates_24ghz_legacy); 2482 } 2483 } 2484 2485 if (is_vht(rate)) { 2486 if (rate->bw == RATE_MCS_CHAN_WIDTH_20) { 2487 lq_sta->optimal_rates = rs_optimal_rates_vht_20mhz; 2488 lq_sta->optimal_nentries = 2489 ARRAY_SIZE(rs_optimal_rates_vht_20mhz); 2490 } else { 2491 lq_sta->optimal_rates = rs_optimal_rates_vht; 2492 lq_sta->optimal_nentries = 2493 ARRAY_SIZE(rs_optimal_rates_vht); 2494 } 2495 } else if (is_ht(rate)) { 2496 lq_sta->optimal_rates = rs_optimal_rates_ht; 2497 lq_sta->optimal_nentries = ARRAY_SIZE(rs_optimal_rates_ht); 2498 } 2499 } 2500 2501 /* Compute the optimal rate index based on RSSI */ 2502 static struct rs_rate *rs_get_optimal_rate(struct iwl_mvm *mvm, 2503 struct iwl_lq_sta *lq_sta) 2504 { 2505 struct rs_rate *rate = &lq_sta->optimal_rate; 2506 int i; 2507 2508 rate->index = find_first_bit(&lq_sta->optimal_rate_mask, 2509 BITS_PER_LONG); 2510 2511 for (i = 0; i < lq_sta->optimal_nentries; i++) { 2512 int rate_idx = lq_sta->optimal_rates[i].rate_idx; 2513 2514 if ((lq_sta->pers.last_rssi >= lq_sta->optimal_rates[i].rssi) && 2515 (BIT(rate_idx) & lq_sta->optimal_rate_mask)) { 2516 rate->index = rate_idx; 2517 break; 2518 } 2519 } 2520 2521 return rate; 2522 } 2523 2524 /* Choose an initial legacy rate and antenna to use based on the RSSI 2525 * of last Rx 2526 */ 2527 static void rs_get_initial_rate(struct iwl_mvm *mvm, 2528 struct ieee80211_sta *sta, 2529 struct iwl_lq_sta *lq_sta, 2530 enum nl80211_band band, 2531 struct rs_rate *rate) 2532 { 2533 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 2534 int i, nentries; 2535 unsigned long active_rate; 2536 s8 best_rssi = S8_MIN; 2537 u8 best_ant = ANT_NONE; 2538 u8 valid_tx_ant = iwl_mvm_get_valid_tx_ant(mvm); 2539 const struct rs_init_rate_info *initial_rates; 2540 2541 for (i = 0; i < ARRAY_SIZE(lq_sta->pers.chain_signal); i++) { 2542 if (!(lq_sta->pers.chains & BIT(i))) 2543 continue; 2544 2545 if (lq_sta->pers.chain_signal[i] > best_rssi) { 2546 best_rssi = lq_sta->pers.chain_signal[i]; 2547 best_ant = BIT(i); 2548 } 2549 } 2550 2551 IWL_DEBUG_RATE(mvm, "Best ANT: %s Best RSSI: %d\n", 2552 rs_pretty_ant(best_ant), best_rssi); 2553 2554 if (best_ant != ANT_A && best_ant != ANT_B) 2555 rate->ant = first_antenna(valid_tx_ant); 2556 else 2557 rate->ant = best_ant; 2558 2559 rate->sgi = false; 2560 rate->ldpc = false; 2561 rate->bw = RATE_MCS_CHAN_WIDTH_20; 2562 2563 rate->index = find_first_bit(&lq_sta->active_legacy_rate, 2564 BITS_PER_LONG); 2565 2566 if (band == NL80211_BAND_5GHZ) { 2567 rate->type = LQ_LEGACY_A; 2568 initial_rates = rs_optimal_rates_5ghz_legacy; 2569 nentries = ARRAY_SIZE(rs_optimal_rates_5ghz_legacy); 2570 } else { 2571 rate->type = LQ_LEGACY_G; 2572 initial_rates = rs_optimal_rates_24ghz_legacy; 2573 nentries = ARRAY_SIZE(rs_optimal_rates_24ghz_legacy); 2574 } 2575 2576 if (!IWL_MVM_RS_RSSI_BASED_INIT_RATE) 2577 goto out; 2578 2579 /* Start from a higher rate if the corresponding debug capability 2580 * is enabled. The rate is chosen according to AP capabilities. 2581 * In case of VHT/HT when the rssi is low fallback to the case of 2582 * legacy rates. 2583 */ 2584 if (sta->vht_cap.vht_supported && 2585 best_rssi > IWL_RS_LOW_RSSI_THRESHOLD) { 2586 /* 2587 * In AP mode, when a new station associates, rs is initialized 2588 * immediately upon association completion, before the phy 2589 * context is updated with the association parameters, so the 2590 * sta bandwidth might be wider than the phy context allows. 2591 * To avoid this issue, always initialize rs with 20mhz 2592 * bandwidth rate, and after authorization, when the phy context 2593 * is already up-to-date, re-init rs with the correct bw. 2594 */ 2595 u32 bw = mvmsta->sta_state < IEEE80211_STA_AUTHORIZED ? 2596 RATE_MCS_CHAN_WIDTH_20 : rs_bw_from_sta_bw(sta); 2597 2598 switch (bw) { 2599 case RATE_MCS_CHAN_WIDTH_40: 2600 case RATE_MCS_CHAN_WIDTH_80: 2601 case RATE_MCS_CHAN_WIDTH_160: 2602 initial_rates = rs_optimal_rates_vht; 2603 nentries = ARRAY_SIZE(rs_optimal_rates_vht); 2604 break; 2605 case RATE_MCS_CHAN_WIDTH_20: 2606 initial_rates = rs_optimal_rates_vht_20mhz; 2607 nentries = ARRAY_SIZE(rs_optimal_rates_vht_20mhz); 2608 break; 2609 default: 2610 IWL_ERR(mvm, "Invalid BW %d\n", sta->bandwidth); 2611 goto out; 2612 } 2613 2614 active_rate = lq_sta->active_siso_rate; 2615 rate->type = LQ_VHT_SISO; 2616 rate->bw = bw; 2617 } else if (sta->ht_cap.ht_supported && 2618 best_rssi > IWL_RS_LOW_RSSI_THRESHOLD) { 2619 initial_rates = rs_optimal_rates_ht; 2620 nentries = ARRAY_SIZE(rs_optimal_rates_ht); 2621 active_rate = lq_sta->active_siso_rate; 2622 rate->type = LQ_HT_SISO; 2623 } else { 2624 active_rate = lq_sta->active_legacy_rate; 2625 } 2626 2627 for (i = 0; i < nentries; i++) { 2628 int rate_idx = initial_rates[i].rate_idx; 2629 2630 if ((best_rssi >= initial_rates[i].rssi) && 2631 (BIT(rate_idx) & active_rate)) { 2632 rate->index = rate_idx; 2633 break; 2634 } 2635 } 2636 2637 out: 2638 rs_dump_rate(mvm, rate, "INITIAL"); 2639 } 2640 2641 /* Save info about RSSI of last Rx */ 2642 void rs_update_last_rssi(struct iwl_mvm *mvm, 2643 struct iwl_mvm_sta *mvmsta, 2644 struct ieee80211_rx_status *rx_status) 2645 { 2646 struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta.rs_drv; 2647 int i; 2648 2649 lq_sta->pers.chains = rx_status->chains; 2650 lq_sta->pers.chain_signal[0] = rx_status->chain_signal[0]; 2651 lq_sta->pers.chain_signal[1] = rx_status->chain_signal[1]; 2652 lq_sta->pers.chain_signal[2] = rx_status->chain_signal[2]; 2653 lq_sta->pers.last_rssi = S8_MIN; 2654 2655 for (i = 0; i < ARRAY_SIZE(lq_sta->pers.chain_signal); i++) { 2656 if (!(lq_sta->pers.chains & BIT(i))) 2657 continue; 2658 2659 if (lq_sta->pers.chain_signal[i] > lq_sta->pers.last_rssi) 2660 lq_sta->pers.last_rssi = lq_sta->pers.chain_signal[i]; 2661 } 2662 } 2663 2664 /** 2665 * rs_initialize_lq - Initialize a station's hardware rate table 2666 * 2667 * The uCode's station table contains a table of fallback rates 2668 * for automatic fallback during transmission. 2669 * 2670 * NOTE: This sets up a default set of values. These will be replaced later 2671 * if the driver's iwl-agn-rs rate scaling algorithm is used, instead of 2672 * rc80211_simple. 2673 * 2674 * NOTE: Run REPLY_ADD_STA command to set up station table entry, before 2675 * calling this function (which runs REPLY_TX_LINK_QUALITY_CMD, 2676 * which requires station table entry to exist). 2677 */ 2678 static void rs_initialize_lq(struct iwl_mvm *mvm, 2679 struct ieee80211_sta *sta, 2680 struct iwl_lq_sta *lq_sta, 2681 enum nl80211_band band) 2682 { 2683 struct iwl_scale_tbl_info *tbl; 2684 struct rs_rate *rate; 2685 u8 active_tbl = 0; 2686 2687 if (!sta || !lq_sta) 2688 return; 2689 2690 if (!lq_sta->search_better_tbl) 2691 active_tbl = lq_sta->active_tbl; 2692 else 2693 active_tbl = rs_search_tbl(lq_sta->active_tbl); 2694 2695 tbl = &(lq_sta->lq_info[active_tbl]); 2696 rate = &tbl->rate; 2697 2698 rs_get_initial_rate(mvm, sta, lq_sta, band, rate); 2699 rs_init_optimal_rate(mvm, sta, lq_sta); 2700 2701 WARN_ONCE(rate->ant != ANT_A && rate->ant != ANT_B, 2702 "ant: 0x%x, chains 0x%x, fw tx ant: 0x%x, nvm tx ant: 0x%x\n", 2703 rate->ant, lq_sta->pers.chains, mvm->fw->valid_tx_ant, 2704 mvm->nvm_data ? mvm->nvm_data->valid_tx_ant : ANT_INVALID); 2705 2706 tbl->column = rs_get_column_from_rate(rate); 2707 2708 rs_set_expected_tpt_table(lq_sta, tbl); 2709 rs_fill_lq_cmd(mvm, sta, lq_sta, rate); 2710 /* TODO restore station should remember the lq cmd */ 2711 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq); 2712 } 2713 2714 static void rs_drv_get_rate(void *mvm_r, struct ieee80211_sta *sta, 2715 void *mvm_sta, 2716 struct ieee80211_tx_rate_control *txrc) 2717 { 2718 struct iwl_op_mode *op_mode = mvm_r; 2719 struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode); 2720 struct sk_buff *skb = txrc->skb; 2721 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); 2722 struct iwl_lq_sta *lq_sta; 2723 struct rs_rate *optimal_rate; 2724 u32 last_ucode_rate; 2725 2726 if (sta && !iwl_mvm_sta_from_mac80211(sta)->vif) { 2727 /* if vif isn't initialized mvm doesn't know about 2728 * this station, so don't do anything with the it 2729 */ 2730 sta = NULL; 2731 mvm_sta = NULL; 2732 } 2733 2734 if (!mvm_sta) 2735 return; 2736 2737 lq_sta = mvm_sta; 2738 iwl_mvm_hwrate_to_tx_rate(lq_sta->last_rate_n_flags, 2739 info->band, &info->control.rates[0]); 2740 info->control.rates[0].count = 1; 2741 2742 /* Report the optimal rate based on rssi and STA caps if we haven't 2743 * converged yet (too little traffic) or exploring other modulations 2744 */ 2745 if (lq_sta->rs_state != RS_STATE_STAY_IN_COLUMN) { 2746 optimal_rate = rs_get_optimal_rate(mvm, lq_sta); 2747 last_ucode_rate = ucode_rate_from_rs_rate(mvm, 2748 optimal_rate); 2749 iwl_mvm_hwrate_to_tx_rate(last_ucode_rate, info->band, 2750 &txrc->reported_rate); 2751 } 2752 } 2753 2754 static void *rs_drv_alloc_sta(void *mvm_rate, struct ieee80211_sta *sta, 2755 gfp_t gfp) 2756 { 2757 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 2758 struct iwl_op_mode *op_mode = (struct iwl_op_mode *)mvm_rate; 2759 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode); 2760 struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta.rs_drv; 2761 2762 IWL_DEBUG_RATE(mvm, "create station rate scale window\n"); 2763 2764 lq_sta->pers.drv = mvm; 2765 #ifdef CONFIG_MAC80211_DEBUGFS 2766 lq_sta->pers.dbg_fixed_rate = 0; 2767 lq_sta->pers.dbg_fixed_txp_reduction = TPC_INVALID; 2768 lq_sta->pers.ss_force = RS_SS_FORCE_NONE; 2769 #endif 2770 lq_sta->pers.chains = 0; 2771 memset(lq_sta->pers.chain_signal, 0, sizeof(lq_sta->pers.chain_signal)); 2772 lq_sta->pers.last_rssi = S8_MIN; 2773 2774 return lq_sta; 2775 } 2776 2777 static int rs_vht_highest_rx_mcs_index(struct ieee80211_sta_vht_cap *vht_cap, 2778 int nss) 2779 { 2780 u16 rx_mcs = le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map) & 2781 (0x3 << (2 * (nss - 1))); 2782 rx_mcs >>= (2 * (nss - 1)); 2783 2784 if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_7) 2785 return IWL_RATE_MCS_7_INDEX; 2786 else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_8) 2787 return IWL_RATE_MCS_8_INDEX; 2788 else if (rx_mcs == IEEE80211_VHT_MCS_SUPPORT_0_9) 2789 return IWL_RATE_MCS_9_INDEX; 2790 2791 WARN_ON_ONCE(rx_mcs != IEEE80211_VHT_MCS_NOT_SUPPORTED); 2792 return -1; 2793 } 2794 2795 static void rs_vht_set_enabled_rates(struct ieee80211_sta *sta, 2796 struct ieee80211_sta_vht_cap *vht_cap, 2797 struct iwl_lq_sta *lq_sta) 2798 { 2799 int i; 2800 int highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 1); 2801 2802 if (highest_mcs >= IWL_RATE_MCS_0_INDEX) { 2803 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) { 2804 if (i == IWL_RATE_9M_INDEX) 2805 continue; 2806 2807 /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */ 2808 if (i == IWL_RATE_MCS_9_INDEX && 2809 sta->bandwidth == IEEE80211_STA_RX_BW_20) 2810 continue; 2811 2812 lq_sta->active_siso_rate |= BIT(i); 2813 } 2814 } 2815 2816 if (sta->rx_nss < 2) 2817 return; 2818 2819 highest_mcs = rs_vht_highest_rx_mcs_index(vht_cap, 2); 2820 if (highest_mcs >= IWL_RATE_MCS_0_INDEX) { 2821 for (i = IWL_RATE_MCS_0_INDEX; i <= highest_mcs; i++) { 2822 if (i == IWL_RATE_9M_INDEX) 2823 continue; 2824 2825 /* VHT MCS9 isn't valid for 20Mhz for NSS=1,2 */ 2826 if (i == IWL_RATE_MCS_9_INDEX && 2827 sta->bandwidth == IEEE80211_STA_RX_BW_20) 2828 continue; 2829 2830 lq_sta->active_mimo2_rate |= BIT(i); 2831 } 2832 } 2833 } 2834 2835 static void rs_ht_init(struct iwl_mvm *mvm, 2836 struct ieee80211_sta *sta, 2837 struct iwl_lq_sta *lq_sta, 2838 struct ieee80211_sta_ht_cap *ht_cap) 2839 { 2840 /* active_siso_rate mask includes 9 MBits (bit 5), 2841 * and CCK (bits 0-3), supp_rates[] does not; 2842 * shift to convert format, force 9 MBits off. 2843 */ 2844 lq_sta->active_siso_rate = ht_cap->mcs.rx_mask[0] << 1; 2845 lq_sta->active_siso_rate |= ht_cap->mcs.rx_mask[0] & 0x1; 2846 lq_sta->active_siso_rate &= ~((u16)0x2); 2847 lq_sta->active_siso_rate <<= IWL_FIRST_OFDM_RATE; 2848 2849 lq_sta->active_mimo2_rate = ht_cap->mcs.rx_mask[1] << 1; 2850 lq_sta->active_mimo2_rate |= ht_cap->mcs.rx_mask[1] & 0x1; 2851 lq_sta->active_mimo2_rate &= ~((u16)0x2); 2852 lq_sta->active_mimo2_rate <<= IWL_FIRST_OFDM_RATE; 2853 2854 if (mvm->cfg->ht_params->ldpc && 2855 (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING)) 2856 lq_sta->ldpc = true; 2857 2858 if (mvm->cfg->ht_params->stbc && 2859 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) && 2860 (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC)) 2861 lq_sta->stbc_capable = true; 2862 2863 lq_sta->is_vht = false; 2864 } 2865 2866 static void rs_vht_init(struct iwl_mvm *mvm, 2867 struct ieee80211_sta *sta, 2868 struct iwl_lq_sta *lq_sta, 2869 struct ieee80211_sta_vht_cap *vht_cap) 2870 { 2871 rs_vht_set_enabled_rates(sta, vht_cap, lq_sta); 2872 2873 if (mvm->cfg->ht_params->ldpc && 2874 (vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC)) 2875 lq_sta->ldpc = true; 2876 2877 if (mvm->cfg->ht_params->stbc && 2878 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) && 2879 (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK)) 2880 lq_sta->stbc_capable = true; 2881 2882 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_BEAMFORMER) && 2883 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1) && 2884 (vht_cap->cap & IEEE80211_VHT_CAP_SU_BEAMFORMEE_CAPABLE)) 2885 lq_sta->bfer_capable = true; 2886 2887 lq_sta->is_vht = true; 2888 } 2889 2890 #ifdef CONFIG_IWLWIFI_DEBUGFS 2891 void iwl_mvm_reset_frame_stats(struct iwl_mvm *mvm) 2892 { 2893 spin_lock_bh(&mvm->drv_stats_lock); 2894 memset(&mvm->drv_rx_stats, 0, sizeof(mvm->drv_rx_stats)); 2895 spin_unlock_bh(&mvm->drv_stats_lock); 2896 } 2897 2898 void iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg) 2899 { 2900 u8 nss = 0; 2901 2902 spin_lock(&mvm->drv_stats_lock); 2903 2904 if (agg) 2905 mvm->drv_rx_stats.agg_frames++; 2906 2907 mvm->drv_rx_stats.success_frames++; 2908 2909 switch (rate & RATE_MCS_CHAN_WIDTH_MSK) { 2910 case RATE_MCS_CHAN_WIDTH_20: 2911 mvm->drv_rx_stats.bw_20_frames++; 2912 break; 2913 case RATE_MCS_CHAN_WIDTH_40: 2914 mvm->drv_rx_stats.bw_40_frames++; 2915 break; 2916 case RATE_MCS_CHAN_WIDTH_80: 2917 mvm->drv_rx_stats.bw_80_frames++; 2918 break; 2919 case RATE_MCS_CHAN_WIDTH_160: 2920 mvm->drv_rx_stats.bw_160_frames++; 2921 break; 2922 default: 2923 WARN_ONCE(1, "bad BW. rate 0x%x", rate); 2924 } 2925 2926 if (rate & RATE_MCS_HT_MSK) { 2927 mvm->drv_rx_stats.ht_frames++; 2928 nss = ((rate & RATE_HT_MCS_NSS_MSK) >> RATE_HT_MCS_NSS_POS) + 1; 2929 } else if (rate & RATE_MCS_VHT_MSK) { 2930 mvm->drv_rx_stats.vht_frames++; 2931 nss = ((rate & RATE_VHT_MCS_NSS_MSK) >> 2932 RATE_VHT_MCS_NSS_POS) + 1; 2933 } else { 2934 mvm->drv_rx_stats.legacy_frames++; 2935 } 2936 2937 if (nss == 1) 2938 mvm->drv_rx_stats.siso_frames++; 2939 else if (nss == 2) 2940 mvm->drv_rx_stats.mimo2_frames++; 2941 2942 if (rate & RATE_MCS_SGI_MSK) 2943 mvm->drv_rx_stats.sgi_frames++; 2944 else 2945 mvm->drv_rx_stats.ngi_frames++; 2946 2947 mvm->drv_rx_stats.last_rates[mvm->drv_rx_stats.last_frame_idx] = rate; 2948 mvm->drv_rx_stats.last_frame_idx = 2949 (mvm->drv_rx_stats.last_frame_idx + 1) % 2950 ARRAY_SIZE(mvm->drv_rx_stats.last_rates); 2951 2952 spin_unlock(&mvm->drv_stats_lock); 2953 } 2954 #endif 2955 2956 /* 2957 * Called after adding a new station to initialize rate scaling 2958 */ 2959 static void rs_drv_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 2960 enum nl80211_band band) 2961 { 2962 int i, j; 2963 struct ieee80211_hw *hw = mvm->hw; 2964 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 2965 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 2966 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 2967 struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta.rs_drv; 2968 struct ieee80211_supported_band *sband; 2969 unsigned long supp; /* must be unsigned long for for_each_set_bit */ 2970 2971 lockdep_assert_held(&mvmsta->lq_sta.rs_drv.pers.lock); 2972 2973 /* clear all non-persistent lq data */ 2974 memset(lq_sta, 0, offsetof(typeof(*lq_sta), pers)); 2975 2976 sband = hw->wiphy->bands[band]; 2977 2978 lq_sta->lq.sta_id = mvmsta->sta_id; 2979 mvmsta->amsdu_enabled = 0; 2980 mvmsta->max_amsdu_len = sta->max_amsdu_len; 2981 2982 for (j = 0; j < LQ_SIZE; j++) 2983 rs_rate_scale_clear_tbl_windows(mvm, &lq_sta->lq_info[j]); 2984 2985 lq_sta->flush_timer = 0; 2986 lq_sta->last_tx = jiffies; 2987 2988 IWL_DEBUG_RATE(mvm, 2989 "LQ: *** rate scale station global init for station %d ***\n", 2990 mvmsta->sta_id); 2991 /* TODO: what is a good starting rate for STA? About middle? Maybe not 2992 * the lowest or the highest rate.. Could consider using RSSI from 2993 * previous packets? Need to have IEEE 802.1X auth succeed immediately 2994 * after assoc.. */ 2995 2996 lq_sta->missed_rate_counter = IWL_MVM_RS_MISSED_RATE_MAX; 2997 lq_sta->band = sband->band; 2998 /* 2999 * active legacy rates as per supported rates bitmap 3000 */ 3001 supp = sta->supp_rates[sband->band]; 3002 lq_sta->active_legacy_rate = 0; 3003 for_each_set_bit(i, &supp, BITS_PER_LONG) 3004 lq_sta->active_legacy_rate |= BIT(sband->bitrates[i].hw_value); 3005 3006 /* TODO: should probably account for rx_highest for both HT/VHT */ 3007 if (!vht_cap || !vht_cap->vht_supported) 3008 rs_ht_init(mvm, sta, lq_sta, ht_cap); 3009 else 3010 rs_vht_init(mvm, sta, lq_sta, vht_cap); 3011 3012 lq_sta->max_legacy_rate_idx = 3013 rs_get_max_rate_from_mask(lq_sta->active_legacy_rate); 3014 lq_sta->max_siso_rate_idx = 3015 rs_get_max_rate_from_mask(lq_sta->active_siso_rate); 3016 lq_sta->max_mimo2_rate_idx = 3017 rs_get_max_rate_from_mask(lq_sta->active_mimo2_rate); 3018 3019 IWL_DEBUG_RATE(mvm, 3020 "LEGACY=%lX SISO=%lX MIMO2=%lX VHT=%d LDPC=%d STBC=%d BFER=%d\n", 3021 lq_sta->active_legacy_rate, 3022 lq_sta->active_siso_rate, 3023 lq_sta->active_mimo2_rate, 3024 lq_sta->is_vht, lq_sta->ldpc, lq_sta->stbc_capable, 3025 lq_sta->bfer_capable); 3026 IWL_DEBUG_RATE(mvm, "MAX RATE: LEGACY=%d SISO=%d MIMO2=%d\n", 3027 lq_sta->max_legacy_rate_idx, 3028 lq_sta->max_siso_rate_idx, 3029 lq_sta->max_mimo2_rate_idx); 3030 3031 /* These values will be overridden later */ 3032 lq_sta->lq.single_stream_ant_msk = 3033 iwl_mvm_bt_coex_get_single_ant_msk(mvm, iwl_mvm_get_valid_tx_ant(mvm)); 3034 lq_sta->lq.dual_stream_ant_msk = ANT_AB; 3035 3036 /* as default allow aggregation for all tids */ 3037 lq_sta->tx_agg_tid_en = IWL_AGG_ALL_TID; 3038 lq_sta->is_agg = 0; 3039 #ifdef CONFIG_IWLWIFI_DEBUGFS 3040 iwl_mvm_reset_frame_stats(mvm); 3041 #endif 3042 rs_initialize_lq(mvm, sta, lq_sta, band); 3043 } 3044 3045 static void rs_drv_rate_update(void *mvm_r, 3046 struct ieee80211_supported_band *sband, 3047 struct cfg80211_chan_def *chandef, 3048 struct ieee80211_sta *sta, 3049 void *priv_sta, u32 changed) 3050 { 3051 struct iwl_op_mode *op_mode = mvm_r; 3052 struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode); 3053 u8 tid; 3054 3055 if (!iwl_mvm_sta_from_mac80211(sta)->vif) 3056 return; 3057 3058 /* Stop any ongoing aggregations as rs starts off assuming no agg */ 3059 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) 3060 ieee80211_stop_tx_ba_session(sta, tid); 3061 3062 iwl_mvm_rs_rate_init(mvm, sta, sband->band, true); 3063 } 3064 3065 static void __iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, 3066 struct ieee80211_sta *sta, 3067 int tid, struct ieee80211_tx_info *info, 3068 bool ndp) 3069 { 3070 int legacy_success; 3071 int retries; 3072 int i; 3073 struct iwl_lq_cmd *table; 3074 u32 lq_hwrate; 3075 struct rs_rate lq_rate, tx_resp_rate; 3076 struct iwl_scale_tbl_info *curr_tbl, *other_tbl, *tmp_tbl; 3077 u32 tlc_info = (uintptr_t)info->status.status_driver_data[0]; 3078 u8 reduced_txp = tlc_info & RS_DRV_DATA_TXP_MSK; 3079 u8 lq_color = RS_DRV_DATA_LQ_COLOR_GET(tlc_info); 3080 u32 tx_resp_hwrate = (uintptr_t)info->status.status_driver_data[1]; 3081 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 3082 struct iwl_lq_sta *lq_sta = &mvmsta->lq_sta.rs_drv; 3083 3084 if (!lq_sta->pers.drv) { 3085 IWL_DEBUG_RATE(mvm, "Rate scaling not initialized yet.\n"); 3086 return; 3087 } 3088 3089 /* This packet was aggregated but doesn't carry status info */ 3090 if ((info->flags & IEEE80211_TX_CTL_AMPDU) && 3091 !(info->flags & IEEE80211_TX_STAT_AMPDU)) 3092 return; 3093 3094 if (rs_rate_from_ucode_rate(tx_resp_hwrate, info->band, 3095 &tx_resp_rate)) { 3096 WARN_ON_ONCE(1); 3097 return; 3098 } 3099 3100 #ifdef CONFIG_MAC80211_DEBUGFS 3101 /* Disable last tx check if we are debugging with fixed rate but 3102 * update tx stats 3103 */ 3104 if (lq_sta->pers.dbg_fixed_rate) { 3105 int index = tx_resp_rate.index; 3106 enum rs_column column; 3107 int attempts, success; 3108 3109 column = rs_get_column_from_rate(&tx_resp_rate); 3110 if (WARN_ONCE(column == RS_COLUMN_INVALID, 3111 "Can't map rate 0x%x to column", 3112 tx_resp_hwrate)) 3113 return; 3114 3115 if (info->flags & IEEE80211_TX_STAT_AMPDU) { 3116 attempts = info->status.ampdu_len; 3117 success = info->status.ampdu_ack_len; 3118 } else { 3119 attempts = info->status.rates[0].count; 3120 success = !!(info->flags & IEEE80211_TX_STAT_ACK); 3121 } 3122 3123 lq_sta->pers.tx_stats[column][index].total += attempts; 3124 lq_sta->pers.tx_stats[column][index].success += success; 3125 3126 IWL_DEBUG_RATE(mvm, "Fixed rate 0x%x success %d attempts %d\n", 3127 tx_resp_hwrate, success, attempts); 3128 return; 3129 } 3130 #endif 3131 3132 if (time_after(jiffies, 3133 (unsigned long)(lq_sta->last_tx + 3134 (IWL_MVM_RS_IDLE_TIMEOUT * HZ)))) { 3135 IWL_DEBUG_RATE(mvm, "Tx idle for too long. reinit rs\n"); 3136 /* reach here only in case of driver RS, call directly 3137 * the unlocked version 3138 */ 3139 rs_drv_rate_init(mvm, sta, info->band); 3140 return; 3141 } 3142 lq_sta->last_tx = jiffies; 3143 3144 /* Ignore this Tx frame response if its initial rate doesn't match 3145 * that of latest Link Quality command. There may be stragglers 3146 * from a previous Link Quality command, but we're no longer interested 3147 * in those; they're either from the "active" mode while we're trying 3148 * to check "search" mode, or a prior "search" mode after we've moved 3149 * to a new "search" mode (which might become the new "active" mode). 3150 */ 3151 table = &lq_sta->lq; 3152 lq_hwrate = le32_to_cpu(table->rs_table[0]); 3153 if (rs_rate_from_ucode_rate(lq_hwrate, info->band, &lq_rate)) { 3154 WARN_ON_ONCE(1); 3155 return; 3156 } 3157 3158 /* Here we actually compare this rate to the latest LQ command */ 3159 if (lq_color != LQ_FLAG_COLOR_GET(table->flags)) { 3160 IWL_DEBUG_RATE(mvm, 3161 "tx resp color 0x%x does not match 0x%x\n", 3162 lq_color, LQ_FLAG_COLOR_GET(table->flags)); 3163 3164 /* Since rates mis-match, the last LQ command may have failed. 3165 * After IWL_MISSED_RATE_MAX mis-matches, resync the uCode with 3166 * ... driver. 3167 */ 3168 lq_sta->missed_rate_counter++; 3169 if (lq_sta->missed_rate_counter > IWL_MVM_RS_MISSED_RATE_MAX) { 3170 lq_sta->missed_rate_counter = 0; 3171 IWL_DEBUG_RATE(mvm, 3172 "Too many rates mismatch. Send sync LQ. rs_state %d\n", 3173 lq_sta->rs_state); 3174 iwl_mvm_send_lq_cmd(mvm, &lq_sta->lq); 3175 } 3176 /* Regardless, ignore this status info for outdated rate */ 3177 return; 3178 } 3179 3180 /* Rate did match, so reset the missed_rate_counter */ 3181 lq_sta->missed_rate_counter = 0; 3182 3183 if (!lq_sta->search_better_tbl) { 3184 curr_tbl = &lq_sta->lq_info[lq_sta->active_tbl]; 3185 other_tbl = &lq_sta->lq_info[rs_search_tbl(lq_sta->active_tbl)]; 3186 } else { 3187 curr_tbl = &lq_sta->lq_info[rs_search_tbl(lq_sta->active_tbl)]; 3188 other_tbl = &lq_sta->lq_info[lq_sta->active_tbl]; 3189 } 3190 3191 if (WARN_ON_ONCE(!rs_rate_column_match(&lq_rate, &curr_tbl->rate))) { 3192 IWL_DEBUG_RATE(mvm, 3193 "Neither active nor search matches tx rate\n"); 3194 tmp_tbl = &lq_sta->lq_info[lq_sta->active_tbl]; 3195 rs_dump_rate(mvm, &tmp_tbl->rate, "ACTIVE"); 3196 tmp_tbl = &lq_sta->lq_info[rs_search_tbl(lq_sta->active_tbl)]; 3197 rs_dump_rate(mvm, &tmp_tbl->rate, "SEARCH"); 3198 rs_dump_rate(mvm, &lq_rate, "ACTUAL"); 3199 3200 /* no matching table found, let's by-pass the data collection 3201 * and continue to perform rate scale to find the rate table 3202 */ 3203 rs_stay_in_table(lq_sta, true); 3204 goto done; 3205 } 3206 3207 /* Updating the frame history depends on whether packets were 3208 * aggregated. 3209 * 3210 * For aggregation, all packets were transmitted at the same rate, the 3211 * first index into rate scale table. 3212 */ 3213 if (info->flags & IEEE80211_TX_STAT_AMPDU) { 3214 rs_collect_tpc_data(mvm, lq_sta, curr_tbl, tx_resp_rate.index, 3215 info->status.ampdu_len, 3216 info->status.ampdu_ack_len, 3217 reduced_txp); 3218 3219 /* ampdu_ack_len = 0 marks no BA was received. For TLC, treat 3220 * it as a single frame loss as we don't want the success ratio 3221 * to dip too quickly because a BA wasn't received. 3222 * For TPC, there's no need for this optimisation since we want 3223 * to recover very quickly from a bad power reduction and, 3224 * therefore we'd like the success ratio to get an immediate hit 3225 * when failing to get a BA, so we'd switch back to a lower or 3226 * zero power reduction. When FW transmits agg with a rate 3227 * different from the initial rate, it will not use reduced txp 3228 * and will send BA notification twice (one empty with reduced 3229 * txp equal to the value from LQ and one with reduced txp 0). 3230 * We need to update counters for each txp level accordingly. 3231 */ 3232 if (info->status.ampdu_ack_len == 0) 3233 info->status.ampdu_len = 1; 3234 3235 rs_collect_tlc_data(mvm, mvmsta, tid, curr_tbl, 3236 tx_resp_rate.index, 3237 info->status.ampdu_len, 3238 info->status.ampdu_ack_len); 3239 3240 /* Update success/fail counts if not searching for new mode */ 3241 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) { 3242 lq_sta->total_success += info->status.ampdu_ack_len; 3243 lq_sta->total_failed += (info->status.ampdu_len - 3244 info->status.ampdu_ack_len); 3245 } 3246 } else { 3247 /* For legacy, update frame history with for each Tx retry. */ 3248 retries = info->status.rates[0].count - 1; 3249 /* HW doesn't send more than 15 retries */ 3250 retries = min(retries, 15); 3251 3252 /* The last transmission may have been successful */ 3253 legacy_success = !!(info->flags & IEEE80211_TX_STAT_ACK); 3254 /* Collect data for each rate used during failed TX attempts */ 3255 for (i = 0; i <= retries; ++i) { 3256 lq_hwrate = le32_to_cpu(table->rs_table[i]); 3257 if (rs_rate_from_ucode_rate(lq_hwrate, info->band, 3258 &lq_rate)) { 3259 WARN_ON_ONCE(1); 3260 return; 3261 } 3262 3263 /* Only collect stats if retried rate is in the same RS 3264 * table as active/search. 3265 */ 3266 if (rs_rate_column_match(&lq_rate, &curr_tbl->rate)) 3267 tmp_tbl = curr_tbl; 3268 else if (rs_rate_column_match(&lq_rate, 3269 &other_tbl->rate)) 3270 tmp_tbl = other_tbl; 3271 else 3272 continue; 3273 3274 rs_collect_tpc_data(mvm, lq_sta, tmp_tbl, 3275 tx_resp_rate.index, 1, 3276 i < retries ? 0 : legacy_success, 3277 reduced_txp); 3278 rs_collect_tlc_data(mvm, mvmsta, tid, tmp_tbl, 3279 tx_resp_rate.index, 1, 3280 i < retries ? 0 : legacy_success); 3281 } 3282 3283 /* Update success/fail counts if not searching for new mode */ 3284 if (lq_sta->rs_state == RS_STATE_STAY_IN_COLUMN) { 3285 lq_sta->total_success += legacy_success; 3286 lq_sta->total_failed += retries + (1 - legacy_success); 3287 } 3288 } 3289 /* The last TX rate is cached in lq_sta; it's set in if/else above */ 3290 lq_sta->last_rate_n_flags = lq_hwrate; 3291 IWL_DEBUG_RATE(mvm, "reduced txpower: %d\n", reduced_txp); 3292 done: 3293 /* See if there's a better rate or modulation mode to try. */ 3294 if (sta->supp_rates[info->band]) 3295 rs_rate_scale_perform(mvm, sta, lq_sta, tid, ndp); 3296 } 3297 3298 void iwl_mvm_rs_tx_status(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 3299 int tid, struct ieee80211_tx_info *info, bool ndp) 3300 { 3301 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 3302 3303 /* If it's locked we are in middle of init flow 3304 * just wait for next tx status to update the lq_sta data 3305 */ 3306 if (!spin_trylock(&mvmsta->lq_sta.rs_drv.pers.lock)) 3307 return; 3308 3309 __iwl_mvm_rs_tx_status(mvm, sta, tid, info, ndp); 3310 spin_unlock(&mvmsta->lq_sta.rs_drv.pers.lock); 3311 } 3312 3313 #ifdef CONFIG_MAC80211_DEBUGFS 3314 static void rs_build_rates_table_from_fixed(struct iwl_mvm *mvm, 3315 struct iwl_lq_cmd *lq_cmd, 3316 enum nl80211_band band, 3317 u32 ucode_rate) 3318 { 3319 struct rs_rate rate; 3320 int i; 3321 int num_rates = ARRAY_SIZE(lq_cmd->rs_table); 3322 __le32 ucode_rate_le32 = cpu_to_le32(ucode_rate); 3323 u8 ant = (ucode_rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS; 3324 3325 for (i = 0; i < num_rates; i++) 3326 lq_cmd->rs_table[i] = ucode_rate_le32; 3327 3328 if (rs_rate_from_ucode_rate(ucode_rate, band, &rate)) { 3329 WARN_ON_ONCE(1); 3330 return; 3331 } 3332 3333 if (is_mimo(&rate)) 3334 lq_cmd->mimo_delim = num_rates - 1; 3335 else 3336 lq_cmd->mimo_delim = 0; 3337 3338 lq_cmd->reduced_tpc = 0; 3339 3340 if (num_of_ant(ant) == 1) 3341 lq_cmd->single_stream_ant_msk = ant; 3342 3343 if (!mvm->trans->trans_cfg->gen2) 3344 lq_cmd->agg_frame_cnt_limit = LINK_QUAL_AGG_FRAME_LIMIT_DEF; 3345 else 3346 lq_cmd->agg_frame_cnt_limit = 3347 LINK_QUAL_AGG_FRAME_LIMIT_GEN2_DEF; 3348 } 3349 #endif /* CONFIG_MAC80211_DEBUGFS */ 3350 3351 static void rs_fill_rates_for_column(struct iwl_mvm *mvm, 3352 struct iwl_lq_sta *lq_sta, 3353 struct rs_rate *rate, 3354 __le32 *rs_table, int *rs_table_index, 3355 int num_rates, int num_retries, 3356 u8 valid_tx_ant, bool toggle_ant) 3357 { 3358 int i, j; 3359 __le32 ucode_rate; 3360 bool bottom_reached = false; 3361 int prev_rate_idx = rate->index; 3362 int end = LINK_QUAL_MAX_RETRY_NUM; 3363 int index = *rs_table_index; 3364 3365 for (i = 0; i < num_rates && index < end; i++) { 3366 for (j = 0; j < num_retries && index < end; j++, index++) { 3367 ucode_rate = cpu_to_le32(ucode_rate_from_rs_rate(mvm, 3368 rate)); 3369 rs_table[index] = ucode_rate; 3370 if (toggle_ant) 3371 rs_toggle_antenna(valid_tx_ant, rate); 3372 } 3373 3374 prev_rate_idx = rate->index; 3375 bottom_reached = rs_get_lower_rate_in_column(lq_sta, rate); 3376 if (bottom_reached && !is_legacy(rate)) 3377 break; 3378 } 3379 3380 if (!bottom_reached && !is_legacy(rate)) 3381 rate->index = prev_rate_idx; 3382 3383 *rs_table_index = index; 3384 } 3385 3386 /* Building the rate table is non trivial. When we're in MIMO2/VHT/80Mhz/SGI 3387 * column the rate table should look like this: 3388 * 3389 * rate[0] 0x400F019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI 3390 * rate[1] 0x400F019 VHT | ANT: AB BW: 80Mhz MCS: 9 NSS: 2 SGI 3391 * rate[2] 0x400F018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI 3392 * rate[3] 0x400F018 VHT | ANT: AB BW: 80Mhz MCS: 8 NSS: 2 SGI 3393 * rate[4] 0x400F017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI 3394 * rate[5] 0x400F017 VHT | ANT: AB BW: 80Mhz MCS: 7 NSS: 2 SGI 3395 * rate[6] 0x4005007 VHT | ANT: A BW: 80Mhz MCS: 7 NSS: 1 NGI 3396 * rate[7] 0x4009006 VHT | ANT: B BW: 80Mhz MCS: 6 NSS: 1 NGI 3397 * rate[8] 0x4005005 VHT | ANT: A BW: 80Mhz MCS: 5 NSS: 1 NGI 3398 * rate[9] 0x800B Legacy | ANT: B Rate: 36 Mbps 3399 * rate[10] 0x4009 Legacy | ANT: A Rate: 24 Mbps 3400 * rate[11] 0x8007 Legacy | ANT: B Rate: 18 Mbps 3401 * rate[12] 0x4005 Legacy | ANT: A Rate: 12 Mbps 3402 * rate[13] 0x800F Legacy | ANT: B Rate: 9 Mbps 3403 * rate[14] 0x400D Legacy | ANT: A Rate: 6 Mbps 3404 * rate[15] 0x800D Legacy | ANT: B Rate: 6 Mbps 3405 */ 3406 static void rs_build_rates_table(struct iwl_mvm *mvm, 3407 struct ieee80211_sta *sta, 3408 struct iwl_lq_sta *lq_sta, 3409 const struct rs_rate *initial_rate) 3410 { 3411 struct rs_rate rate; 3412 int num_rates, num_retries, index = 0; 3413 u8 valid_tx_ant = 0; 3414 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq; 3415 bool toggle_ant = false; 3416 u32 color; 3417 3418 memcpy(&rate, initial_rate, sizeof(rate)); 3419 3420 valid_tx_ant = iwl_mvm_get_valid_tx_ant(mvm); 3421 3422 /* TODO: remove old API when min FW API hits 14 */ 3423 if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_LQ_SS_PARAMS) && 3424 rs_stbc_allow(mvm, sta, lq_sta)) 3425 rate.stbc = true; 3426 3427 if (is_siso(&rate)) { 3428 num_rates = IWL_MVM_RS_INITIAL_SISO_NUM_RATES; 3429 num_retries = IWL_MVM_RS_HT_VHT_RETRIES_PER_RATE; 3430 } else if (is_mimo(&rate)) { 3431 num_rates = IWL_MVM_RS_INITIAL_MIMO_NUM_RATES; 3432 num_retries = IWL_MVM_RS_HT_VHT_RETRIES_PER_RATE; 3433 } else { 3434 num_rates = IWL_MVM_RS_INITIAL_LEGACY_NUM_RATES; 3435 num_retries = IWL_MVM_RS_INITIAL_LEGACY_RETRIES; 3436 toggle_ant = true; 3437 } 3438 3439 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index, 3440 num_rates, num_retries, valid_tx_ant, 3441 toggle_ant); 3442 3443 rs_get_lower_rate_down_column(lq_sta, &rate); 3444 3445 if (is_siso(&rate)) { 3446 num_rates = IWL_MVM_RS_SECONDARY_SISO_NUM_RATES; 3447 num_retries = IWL_MVM_RS_SECONDARY_SISO_RETRIES; 3448 lq_cmd->mimo_delim = index; 3449 } else if (is_legacy(&rate)) { 3450 num_rates = IWL_MVM_RS_SECONDARY_LEGACY_NUM_RATES; 3451 num_retries = IWL_MVM_RS_SECONDARY_LEGACY_RETRIES; 3452 } else { 3453 WARN_ON_ONCE(1); 3454 } 3455 3456 toggle_ant = true; 3457 3458 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index, 3459 num_rates, num_retries, valid_tx_ant, 3460 toggle_ant); 3461 3462 rs_get_lower_rate_down_column(lq_sta, &rate); 3463 3464 num_rates = IWL_MVM_RS_SECONDARY_LEGACY_NUM_RATES; 3465 num_retries = IWL_MVM_RS_SECONDARY_LEGACY_RETRIES; 3466 3467 rs_fill_rates_for_column(mvm, lq_sta, &rate, lq_cmd->rs_table, &index, 3468 num_rates, num_retries, valid_tx_ant, 3469 toggle_ant); 3470 3471 /* update the color of the LQ command (as a counter at bits 1-3) */ 3472 color = LQ_FLAGS_COLOR_INC(LQ_FLAG_COLOR_GET(lq_cmd->flags)); 3473 lq_cmd->flags = LQ_FLAG_COLOR_SET(lq_cmd->flags, color); 3474 } 3475 3476 struct rs_bfer_active_iter_data { 3477 struct ieee80211_sta *exclude_sta; 3478 struct iwl_mvm_sta *bfer_mvmsta; 3479 }; 3480 3481 static void rs_bfer_active_iter(void *_data, 3482 struct ieee80211_sta *sta) 3483 { 3484 struct rs_bfer_active_iter_data *data = _data; 3485 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 3486 struct iwl_lq_cmd *lq_cmd = &mvmsta->lq_sta.rs_drv.lq; 3487 u32 ss_params = le32_to_cpu(lq_cmd->ss_params); 3488 3489 if (sta == data->exclude_sta) 3490 return; 3491 3492 /* The current sta has BFER allowed */ 3493 if (ss_params & LQ_SS_BFER_ALLOWED) { 3494 WARN_ON_ONCE(data->bfer_mvmsta != NULL); 3495 3496 data->bfer_mvmsta = mvmsta; 3497 } 3498 } 3499 3500 static int rs_bfer_priority(struct iwl_mvm_sta *sta) 3501 { 3502 int prio = -1; 3503 enum nl80211_iftype viftype = ieee80211_vif_type_p2p(sta->vif); 3504 3505 switch (viftype) { 3506 case NL80211_IFTYPE_AP: 3507 case NL80211_IFTYPE_P2P_GO: 3508 prio = 3; 3509 break; 3510 case NL80211_IFTYPE_P2P_CLIENT: 3511 prio = 2; 3512 break; 3513 case NL80211_IFTYPE_STATION: 3514 prio = 1; 3515 break; 3516 default: 3517 WARN_ONCE(true, "viftype %d sta_id %d", viftype, sta->sta_id); 3518 prio = -1; 3519 } 3520 3521 return prio; 3522 } 3523 3524 /* Returns >0 if sta1 has a higher BFER priority compared to sta2 */ 3525 static int rs_bfer_priority_cmp(struct iwl_mvm_sta *sta1, 3526 struct iwl_mvm_sta *sta2) 3527 { 3528 int prio1 = rs_bfer_priority(sta1); 3529 int prio2 = rs_bfer_priority(sta2); 3530 3531 if (prio1 > prio2) 3532 return 1; 3533 if (prio1 < prio2) 3534 return -1; 3535 return 0; 3536 } 3537 3538 static void rs_set_lq_ss_params(struct iwl_mvm *mvm, 3539 struct ieee80211_sta *sta, 3540 struct iwl_lq_sta *lq_sta, 3541 const struct rs_rate *initial_rate) 3542 { 3543 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq; 3544 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 3545 struct rs_bfer_active_iter_data data = { 3546 .exclude_sta = sta, 3547 .bfer_mvmsta = NULL, 3548 }; 3549 struct iwl_mvm_sta *bfer_mvmsta = NULL; 3550 u32 ss_params = LQ_SS_PARAMS_VALID; 3551 3552 if (!iwl_mvm_bt_coex_is_mimo_allowed(mvm, sta)) 3553 goto out; 3554 3555 #ifdef CONFIG_MAC80211_DEBUGFS 3556 /* Check if forcing the decision is configured. 3557 * Note that SISO is forced by not allowing STBC or BFER 3558 */ 3559 if (lq_sta->pers.ss_force == RS_SS_FORCE_STBC) 3560 ss_params |= (LQ_SS_STBC_1SS_ALLOWED | LQ_SS_FORCE); 3561 else if (lq_sta->pers.ss_force == RS_SS_FORCE_BFER) 3562 ss_params |= (LQ_SS_BFER_ALLOWED | LQ_SS_FORCE); 3563 3564 if (lq_sta->pers.ss_force != RS_SS_FORCE_NONE) { 3565 IWL_DEBUG_RATE(mvm, "Forcing single stream Tx decision %d\n", 3566 lq_sta->pers.ss_force); 3567 goto out; 3568 } 3569 #endif 3570 3571 if (lq_sta->stbc_capable) 3572 ss_params |= LQ_SS_STBC_1SS_ALLOWED; 3573 3574 if (!lq_sta->bfer_capable) 3575 goto out; 3576 3577 ieee80211_iterate_stations_atomic(mvm->hw, 3578 rs_bfer_active_iter, 3579 &data); 3580 bfer_mvmsta = data.bfer_mvmsta; 3581 3582 /* This code is safe as it doesn't run concurrently for different 3583 * stations. This is guaranteed by the fact that calls to 3584 * ieee80211_tx_status wouldn't run concurrently for a single HW. 3585 */ 3586 if (!bfer_mvmsta) { 3587 IWL_DEBUG_RATE(mvm, "No sta with BFER allowed found. Allow\n"); 3588 3589 ss_params |= LQ_SS_BFER_ALLOWED; 3590 goto out; 3591 } 3592 3593 IWL_DEBUG_RATE(mvm, "Found existing sta %d with BFER activated\n", 3594 bfer_mvmsta->sta_id); 3595 3596 /* Disallow BFER on another STA if active and we're a higher priority */ 3597 if (rs_bfer_priority_cmp(mvmsta, bfer_mvmsta) > 0) { 3598 struct iwl_lq_cmd *bfersta_lq_cmd = 3599 &bfer_mvmsta->lq_sta.rs_drv.lq; 3600 u32 bfersta_ss_params = le32_to_cpu(bfersta_lq_cmd->ss_params); 3601 3602 bfersta_ss_params &= ~LQ_SS_BFER_ALLOWED; 3603 bfersta_lq_cmd->ss_params = cpu_to_le32(bfersta_ss_params); 3604 iwl_mvm_send_lq_cmd(mvm, bfersta_lq_cmd); 3605 3606 ss_params |= LQ_SS_BFER_ALLOWED; 3607 IWL_DEBUG_RATE(mvm, 3608 "Lower priority BFER sta found (%d). Switch BFER\n", 3609 bfer_mvmsta->sta_id); 3610 } 3611 out: 3612 lq_cmd->ss_params = cpu_to_le32(ss_params); 3613 } 3614 3615 static void rs_fill_lq_cmd(struct iwl_mvm *mvm, 3616 struct ieee80211_sta *sta, 3617 struct iwl_lq_sta *lq_sta, 3618 const struct rs_rate *initial_rate) 3619 { 3620 struct iwl_lq_cmd *lq_cmd = &lq_sta->lq; 3621 struct iwl_mvm_sta *mvmsta; 3622 struct iwl_mvm_vif *mvmvif; 3623 3624 lq_cmd->agg_disable_start_th = IWL_MVM_RS_AGG_DISABLE_START; 3625 lq_cmd->agg_time_limit = 3626 cpu_to_le16(IWL_MVM_RS_AGG_TIME_LIMIT); 3627 3628 #ifdef CONFIG_MAC80211_DEBUGFS 3629 if (lq_sta->pers.dbg_fixed_rate) { 3630 rs_build_rates_table_from_fixed(mvm, lq_cmd, 3631 lq_sta->band, 3632 lq_sta->pers.dbg_fixed_rate); 3633 return; 3634 } 3635 #endif 3636 if (WARN_ON_ONCE(!sta || !initial_rate)) 3637 return; 3638 3639 rs_build_rates_table(mvm, sta, lq_sta, initial_rate); 3640 3641 if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_LQ_SS_PARAMS)) 3642 rs_set_lq_ss_params(mvm, sta, lq_sta, initial_rate); 3643 3644 mvmsta = iwl_mvm_sta_from_mac80211(sta); 3645 mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif); 3646 3647 if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_COEX_SCHEMA_2) && 3648 num_of_ant(initial_rate->ant) == 1) 3649 lq_cmd->single_stream_ant_msk = initial_rate->ant; 3650 3651 lq_cmd->agg_frame_cnt_limit = mvmsta->max_agg_bufsize; 3652 3653 /* 3654 * In case of low latency, tell the firmware to leave a frame in the 3655 * Tx Fifo so that it can start a transaction in the same TxOP. This 3656 * basically allows the firmware to send bursts. 3657 */ 3658 if (iwl_mvm_vif_low_latency(mvmvif)) 3659 lq_cmd->agg_frame_cnt_limit--; 3660 3661 if (mvmsta->vif->p2p) 3662 lq_cmd->flags |= LQ_FLAG_USE_RTS_MSK; 3663 3664 lq_cmd->agg_time_limit = 3665 cpu_to_le16(iwl_mvm_coex_agg_time_limit(mvm, sta)); 3666 } 3667 3668 static void *rs_alloc(struct ieee80211_hw *hw) 3669 { 3670 return hw->priv; 3671 } 3672 3673 /* rate scale requires free function to be implemented */ 3674 static void rs_free(void *mvm_rate) 3675 { 3676 return; 3677 } 3678 3679 static void rs_free_sta(void *mvm_r, struct ieee80211_sta *sta, void *mvm_sta) 3680 { 3681 struct iwl_op_mode *op_mode __maybe_unused = mvm_r; 3682 struct iwl_mvm *mvm __maybe_unused = IWL_OP_MODE_GET_MVM(op_mode); 3683 3684 IWL_DEBUG_RATE(mvm, "enter\n"); 3685 IWL_DEBUG_RATE(mvm, "leave\n"); 3686 } 3687 3688 int rs_pretty_print_rate(char *buf, int bufsz, const u32 rate) 3689 { 3690 3691 char *type, *bw; 3692 u8 mcs = 0, nss = 0; 3693 u8 ant = (rate & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS; 3694 3695 if (!(rate & RATE_MCS_HT_MSK) && 3696 !(rate & RATE_MCS_VHT_MSK) && 3697 !(rate & RATE_MCS_HE_MSK)) { 3698 int index = iwl_hwrate_to_plcp_idx(rate); 3699 3700 return scnprintf(buf, bufsz, "Legacy | ANT: %s Rate: %s Mbps", 3701 rs_pretty_ant(ant), 3702 index == IWL_RATE_INVALID ? "BAD" : 3703 iwl_rate_mcs[index].mbps); 3704 } 3705 3706 if (rate & RATE_MCS_VHT_MSK) { 3707 type = "VHT"; 3708 mcs = rate & RATE_VHT_MCS_RATE_CODE_MSK; 3709 nss = ((rate & RATE_VHT_MCS_NSS_MSK) 3710 >> RATE_VHT_MCS_NSS_POS) + 1; 3711 } else if (rate & RATE_MCS_HT_MSK) { 3712 type = "HT"; 3713 mcs = rate & RATE_HT_MCS_INDEX_MSK; 3714 nss = ((rate & RATE_HT_MCS_NSS_MSK) 3715 >> RATE_HT_MCS_NSS_POS) + 1; 3716 } else if (rate & RATE_MCS_HE_MSK) { 3717 type = "HE"; 3718 mcs = rate & RATE_VHT_MCS_RATE_CODE_MSK; 3719 nss = ((rate & RATE_VHT_MCS_NSS_MSK) 3720 >> RATE_VHT_MCS_NSS_POS) + 1; 3721 } else { 3722 type = "Unknown"; /* shouldn't happen */ 3723 } 3724 3725 switch (rate & RATE_MCS_CHAN_WIDTH_MSK) { 3726 case RATE_MCS_CHAN_WIDTH_20: 3727 bw = "20Mhz"; 3728 break; 3729 case RATE_MCS_CHAN_WIDTH_40: 3730 bw = "40Mhz"; 3731 break; 3732 case RATE_MCS_CHAN_WIDTH_80: 3733 bw = "80Mhz"; 3734 break; 3735 case RATE_MCS_CHAN_WIDTH_160: 3736 bw = "160Mhz"; 3737 break; 3738 default: 3739 bw = "BAD BW"; 3740 } 3741 3742 return scnprintf(buf, bufsz, 3743 "0x%x: %s | ANT: %s BW: %s MCS: %d NSS: %d %s%s%s%s%s", 3744 rate, type, rs_pretty_ant(ant), bw, mcs, nss, 3745 (rate & RATE_MCS_SGI_MSK) ? "SGI " : "NGI ", 3746 (rate & RATE_MCS_STBC_MSK) ? "STBC " : "", 3747 (rate & RATE_MCS_LDPC_MSK) ? "LDPC " : "", 3748 (rate & RATE_HE_DUAL_CARRIER_MODE_MSK) ? "DCM " : "", 3749 (rate & RATE_MCS_BF_MSK) ? "BF " : ""); 3750 } 3751 3752 #ifdef CONFIG_MAC80211_DEBUGFS 3753 /** 3754 * Program the device to use fixed rate for frame transmit 3755 * This is for debugging/testing only 3756 * once the device start use fixed rate, we need to reload the module 3757 * to being back the normal operation. 3758 */ 3759 static void rs_program_fix_rate(struct iwl_mvm *mvm, 3760 struct iwl_lq_sta *lq_sta) 3761 { 3762 lq_sta->active_legacy_rate = 0x0FFF; /* 1 - 54 MBits, includes CCK */ 3763 lq_sta->active_siso_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */ 3764 lq_sta->active_mimo2_rate = 0x1FD0; /* 6 - 60 MBits, no 9, no CCK */ 3765 3766 IWL_DEBUG_RATE(mvm, "sta_id %d rate 0x%X\n", 3767 lq_sta->lq.sta_id, lq_sta->pers.dbg_fixed_rate); 3768 3769 if (lq_sta->pers.dbg_fixed_rate) { 3770 rs_fill_lq_cmd(mvm, NULL, lq_sta, NULL); 3771 iwl_mvm_send_lq_cmd(lq_sta->pers.drv, &lq_sta->lq); 3772 } 3773 } 3774 3775 static ssize_t rs_sta_dbgfs_scale_table_write(struct file *file, 3776 const char __user *user_buf, size_t count, loff_t *ppos) 3777 { 3778 struct iwl_lq_sta *lq_sta = file->private_data; 3779 struct iwl_mvm *mvm; 3780 char buf[64]; 3781 size_t buf_size; 3782 u32 parsed_rate; 3783 3784 mvm = lq_sta->pers.drv; 3785 memset(buf, 0, sizeof(buf)); 3786 buf_size = min(count, sizeof(buf) - 1); 3787 if (copy_from_user(buf, user_buf, buf_size)) 3788 return -EFAULT; 3789 3790 if (sscanf(buf, "%x", &parsed_rate) == 1) 3791 lq_sta->pers.dbg_fixed_rate = parsed_rate; 3792 else 3793 lq_sta->pers.dbg_fixed_rate = 0; 3794 3795 rs_program_fix_rate(mvm, lq_sta); 3796 3797 return count; 3798 } 3799 3800 static ssize_t rs_sta_dbgfs_scale_table_read(struct file *file, 3801 char __user *user_buf, size_t count, loff_t *ppos) 3802 { 3803 char *buff; 3804 int desc = 0; 3805 int i = 0; 3806 ssize_t ret; 3807 static const size_t bufsz = 2048; 3808 3809 struct iwl_lq_sta *lq_sta = file->private_data; 3810 struct iwl_mvm_sta *mvmsta = 3811 container_of(lq_sta, struct iwl_mvm_sta, lq_sta.rs_drv); 3812 struct iwl_mvm *mvm; 3813 struct iwl_scale_tbl_info *tbl = &(lq_sta->lq_info[lq_sta->active_tbl]); 3814 struct rs_rate *rate = &tbl->rate; 3815 u32 ss_params; 3816 3817 mvm = lq_sta->pers.drv; 3818 buff = kmalloc(bufsz, GFP_KERNEL); 3819 if (!buff) 3820 return -ENOMEM; 3821 3822 desc += scnprintf(buff + desc, bufsz - desc, 3823 "sta_id %d\n", lq_sta->lq.sta_id); 3824 desc += scnprintf(buff + desc, bufsz - desc, 3825 "failed=%d success=%d rate=0%lX\n", 3826 lq_sta->total_failed, lq_sta->total_success, 3827 lq_sta->active_legacy_rate); 3828 desc += scnprintf(buff + desc, bufsz - desc, "fixed rate 0x%X\n", 3829 lq_sta->pers.dbg_fixed_rate); 3830 desc += scnprintf(buff + desc, bufsz - desc, "valid_tx_ant %s%s%s\n", 3831 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_A) ? "ANT_A," : "", 3832 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_B) ? "ANT_B," : "", 3833 (iwl_mvm_get_valid_tx_ant(mvm) & ANT_C) ? "ANT_C" : ""); 3834 desc += scnprintf(buff + desc, bufsz - desc, "lq type %s\n", 3835 (is_legacy(rate)) ? "legacy" : 3836 is_vht(rate) ? "VHT" : "HT"); 3837 if (!is_legacy(rate)) { 3838 desc += scnprintf(buff + desc, bufsz - desc, " %s", 3839 (is_siso(rate)) ? "SISO" : "MIMO2"); 3840 desc += scnprintf(buff + desc, bufsz - desc, " %s", 3841 (is_ht20(rate)) ? "20MHz" : 3842 (is_ht40(rate)) ? "40MHz" : 3843 (is_ht80(rate)) ? "80MHz" : 3844 (is_ht160(rate)) ? "160MHz" : "BAD BW"); 3845 desc += scnprintf(buff + desc, bufsz - desc, " %s %s %s %s\n", 3846 (rate->sgi) ? "SGI" : "NGI", 3847 (rate->ldpc) ? "LDPC" : "BCC", 3848 (lq_sta->is_agg) ? "AGG on" : "", 3849 (mvmsta->amsdu_enabled) ? "AMSDU on" : ""); 3850 } 3851 desc += scnprintf(buff + desc, bufsz - desc, "last tx rate=0x%X\n", 3852 lq_sta->last_rate_n_flags); 3853 desc += scnprintf(buff + desc, bufsz - desc, 3854 "general: flags=0x%X mimo-d=%d s-ant=0x%x d-ant=0x%x\n", 3855 lq_sta->lq.flags, 3856 lq_sta->lq.mimo_delim, 3857 lq_sta->lq.single_stream_ant_msk, 3858 lq_sta->lq.dual_stream_ant_msk); 3859 3860 desc += scnprintf(buff + desc, bufsz - desc, 3861 "agg: time_limit=%d dist_start_th=%d frame_cnt_limit=%d\n", 3862 le16_to_cpu(lq_sta->lq.agg_time_limit), 3863 lq_sta->lq.agg_disable_start_th, 3864 lq_sta->lq.agg_frame_cnt_limit); 3865 3866 desc += scnprintf(buff + desc, bufsz - desc, "reduced tpc=%d\n", 3867 lq_sta->lq.reduced_tpc); 3868 ss_params = le32_to_cpu(lq_sta->lq.ss_params); 3869 desc += scnprintf(buff + desc, bufsz - desc, 3870 "single stream params: %s%s%s%s\n", 3871 (ss_params & LQ_SS_PARAMS_VALID) ? 3872 "VALID" : "INVALID", 3873 (ss_params & LQ_SS_BFER_ALLOWED) ? 3874 ", BFER" : "", 3875 (ss_params & LQ_SS_STBC_1SS_ALLOWED) ? 3876 ", STBC" : "", 3877 (ss_params & LQ_SS_FORCE) ? 3878 ", FORCE" : ""); 3879 desc += scnprintf(buff + desc, bufsz - desc, 3880 "Start idx [0]=0x%x [1]=0x%x [2]=0x%x [3]=0x%x\n", 3881 lq_sta->lq.initial_rate_index[0], 3882 lq_sta->lq.initial_rate_index[1], 3883 lq_sta->lq.initial_rate_index[2], 3884 lq_sta->lq.initial_rate_index[3]); 3885 3886 for (i = 0; i < LINK_QUAL_MAX_RETRY_NUM; i++) { 3887 u32 r = le32_to_cpu(lq_sta->lq.rs_table[i]); 3888 3889 desc += scnprintf(buff + desc, bufsz - desc, 3890 " rate[%d] 0x%X ", i, r); 3891 desc += rs_pretty_print_rate(buff + desc, bufsz - desc, r); 3892 if (desc < bufsz - 1) 3893 buff[desc++] = '\n'; 3894 } 3895 3896 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc); 3897 kfree(buff); 3898 return ret; 3899 } 3900 3901 static const struct file_operations rs_sta_dbgfs_scale_table_ops = { 3902 .write = rs_sta_dbgfs_scale_table_write, 3903 .read = rs_sta_dbgfs_scale_table_read, 3904 .open = simple_open, 3905 .llseek = default_llseek, 3906 }; 3907 static ssize_t rs_sta_dbgfs_stats_table_read(struct file *file, 3908 char __user *user_buf, size_t count, loff_t *ppos) 3909 { 3910 char *buff; 3911 int desc = 0; 3912 int i, j; 3913 ssize_t ret; 3914 struct iwl_scale_tbl_info *tbl; 3915 struct rs_rate *rate; 3916 struct iwl_lq_sta *lq_sta = file->private_data; 3917 3918 buff = kmalloc(1024, GFP_KERNEL); 3919 if (!buff) 3920 return -ENOMEM; 3921 3922 for (i = 0; i < LQ_SIZE; i++) { 3923 tbl = &(lq_sta->lq_info[i]); 3924 rate = &tbl->rate; 3925 desc += sprintf(buff+desc, 3926 "%s type=%d SGI=%d BW=%s DUP=0\n" 3927 "index=%d\n", 3928 lq_sta->active_tbl == i ? "*" : "x", 3929 rate->type, 3930 rate->sgi, 3931 is_ht20(rate) ? "20MHz" : 3932 is_ht40(rate) ? "40MHz" : 3933 is_ht80(rate) ? "80MHz" : 3934 is_ht160(rate) ? "160MHz" : "ERR", 3935 rate->index); 3936 for (j = 0; j < IWL_RATE_COUNT; j++) { 3937 desc += sprintf(buff+desc, 3938 "counter=%d success=%d %%=%d\n", 3939 tbl->win[j].counter, 3940 tbl->win[j].success_counter, 3941 tbl->win[j].success_ratio); 3942 } 3943 } 3944 ret = simple_read_from_buffer(user_buf, count, ppos, buff, desc); 3945 kfree(buff); 3946 return ret; 3947 } 3948 3949 static const struct file_operations rs_sta_dbgfs_stats_table_ops = { 3950 .read = rs_sta_dbgfs_stats_table_read, 3951 .open = simple_open, 3952 .llseek = default_llseek, 3953 }; 3954 3955 static ssize_t rs_sta_dbgfs_drv_tx_stats_read(struct file *file, 3956 char __user *user_buf, 3957 size_t count, loff_t *ppos) 3958 { 3959 static const char * const column_name[] = { 3960 [RS_COLUMN_LEGACY_ANT_A] = "LEGACY_ANT_A", 3961 [RS_COLUMN_LEGACY_ANT_B] = "LEGACY_ANT_B", 3962 [RS_COLUMN_SISO_ANT_A] = "SISO_ANT_A", 3963 [RS_COLUMN_SISO_ANT_B] = "SISO_ANT_B", 3964 [RS_COLUMN_SISO_ANT_A_SGI] = "SISO_ANT_A_SGI", 3965 [RS_COLUMN_SISO_ANT_B_SGI] = "SISO_ANT_B_SGI", 3966 [RS_COLUMN_MIMO2] = "MIMO2", 3967 [RS_COLUMN_MIMO2_SGI] = "MIMO2_SGI", 3968 }; 3969 3970 static const char * const rate_name[] = { 3971 [IWL_RATE_1M_INDEX] = "1M", 3972 [IWL_RATE_2M_INDEX] = "2M", 3973 [IWL_RATE_5M_INDEX] = "5.5M", 3974 [IWL_RATE_11M_INDEX] = "11M", 3975 [IWL_RATE_6M_INDEX] = "6M|MCS0", 3976 [IWL_RATE_9M_INDEX] = "9M", 3977 [IWL_RATE_12M_INDEX] = "12M|MCS1", 3978 [IWL_RATE_18M_INDEX] = "18M|MCS2", 3979 [IWL_RATE_24M_INDEX] = "24M|MCS3", 3980 [IWL_RATE_36M_INDEX] = "36M|MCS4", 3981 [IWL_RATE_48M_INDEX] = "48M|MCS5", 3982 [IWL_RATE_54M_INDEX] = "54M|MCS6", 3983 [IWL_RATE_MCS_7_INDEX] = "MCS7", 3984 [IWL_RATE_MCS_8_INDEX] = "MCS8", 3985 [IWL_RATE_MCS_9_INDEX] = "MCS9", 3986 [IWL_RATE_MCS_10_INDEX] = "MCS10", 3987 [IWL_RATE_MCS_11_INDEX] = "MCS11", 3988 }; 3989 3990 char *buff, *pos, *endpos; 3991 int col, rate; 3992 ssize_t ret; 3993 struct iwl_lq_sta *lq_sta = file->private_data; 3994 struct rs_rate_stats *stats; 3995 static const size_t bufsz = 1024; 3996 3997 buff = kmalloc(bufsz, GFP_KERNEL); 3998 if (!buff) 3999 return -ENOMEM; 4000 4001 pos = buff; 4002 endpos = pos + bufsz; 4003 4004 pos += scnprintf(pos, endpos - pos, "COLUMN,"); 4005 for (rate = 0; rate < IWL_RATE_COUNT; rate++) 4006 pos += scnprintf(pos, endpos - pos, "%s,", rate_name[rate]); 4007 pos += scnprintf(pos, endpos - pos, "\n"); 4008 4009 for (col = 0; col < RS_COLUMN_COUNT; col++) { 4010 pos += scnprintf(pos, endpos - pos, 4011 "%s,", column_name[col]); 4012 4013 for (rate = 0; rate < IWL_RATE_COUNT; rate++) { 4014 stats = &(lq_sta->pers.tx_stats[col][rate]); 4015 pos += scnprintf(pos, endpos - pos, 4016 "%llu/%llu,", 4017 stats->success, 4018 stats->total); 4019 } 4020 pos += scnprintf(pos, endpos - pos, "\n"); 4021 } 4022 4023 ret = simple_read_from_buffer(user_buf, count, ppos, buff, pos - buff); 4024 kfree(buff); 4025 return ret; 4026 } 4027 4028 static ssize_t rs_sta_dbgfs_drv_tx_stats_write(struct file *file, 4029 const char __user *user_buf, 4030 size_t count, loff_t *ppos) 4031 { 4032 struct iwl_lq_sta *lq_sta = file->private_data; 4033 memset(lq_sta->pers.tx_stats, 0, sizeof(lq_sta->pers.tx_stats)); 4034 4035 return count; 4036 } 4037 4038 static const struct file_operations rs_sta_dbgfs_drv_tx_stats_ops = { 4039 .read = rs_sta_dbgfs_drv_tx_stats_read, 4040 .write = rs_sta_dbgfs_drv_tx_stats_write, 4041 .open = simple_open, 4042 .llseek = default_llseek, 4043 }; 4044 4045 static ssize_t iwl_dbgfs_ss_force_read(struct file *file, 4046 char __user *user_buf, 4047 size_t count, loff_t *ppos) 4048 { 4049 struct iwl_lq_sta *lq_sta = file->private_data; 4050 char buf[12]; 4051 int bufsz = sizeof(buf); 4052 int pos = 0; 4053 static const char * const ss_force_name[] = { 4054 [RS_SS_FORCE_NONE] = "none", 4055 [RS_SS_FORCE_STBC] = "stbc", 4056 [RS_SS_FORCE_BFER] = "bfer", 4057 [RS_SS_FORCE_SISO] = "siso", 4058 }; 4059 4060 pos += scnprintf(buf+pos, bufsz-pos, "%s\n", 4061 ss_force_name[lq_sta->pers.ss_force]); 4062 return simple_read_from_buffer(user_buf, count, ppos, buf, pos); 4063 } 4064 4065 static ssize_t iwl_dbgfs_ss_force_write(struct iwl_lq_sta *lq_sta, char *buf, 4066 size_t count, loff_t *ppos) 4067 { 4068 struct iwl_mvm *mvm = lq_sta->pers.drv; 4069 int ret = 0; 4070 4071 if (!strncmp("none", buf, 4)) { 4072 lq_sta->pers.ss_force = RS_SS_FORCE_NONE; 4073 } else if (!strncmp("siso", buf, 4)) { 4074 lq_sta->pers.ss_force = RS_SS_FORCE_SISO; 4075 } else if (!strncmp("stbc", buf, 4)) { 4076 if (lq_sta->stbc_capable) { 4077 lq_sta->pers.ss_force = RS_SS_FORCE_STBC; 4078 } else { 4079 IWL_ERR(mvm, 4080 "can't force STBC. peer doesn't support\n"); 4081 ret = -EINVAL; 4082 } 4083 } else if (!strncmp("bfer", buf, 4)) { 4084 if (lq_sta->bfer_capable) { 4085 lq_sta->pers.ss_force = RS_SS_FORCE_BFER; 4086 } else { 4087 IWL_ERR(mvm, 4088 "can't force BFER. peer doesn't support\n"); 4089 ret = -EINVAL; 4090 } 4091 } else { 4092 IWL_ERR(mvm, "valid values none|siso|stbc|bfer\n"); 4093 ret = -EINVAL; 4094 } 4095 return ret ?: count; 4096 } 4097 4098 #define MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz) \ 4099 _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz, struct iwl_lq_sta) 4100 #define MVM_DEBUGFS_ADD_FILE_RS(name, parent, mode) do { \ 4101 debugfs_create_file(#name, mode, parent, lq_sta, \ 4102 &iwl_dbgfs_##name##_ops); \ 4103 } while (0) 4104 4105 MVM_DEBUGFS_READ_WRITE_FILE_OPS(ss_force, 32); 4106 4107 static void rs_drv_add_sta_debugfs(void *mvm, void *priv_sta, 4108 struct dentry *dir) 4109 { 4110 struct iwl_lq_sta *lq_sta = priv_sta; 4111 struct iwl_mvm_sta *mvmsta; 4112 4113 mvmsta = container_of(lq_sta, struct iwl_mvm_sta, lq_sta.rs_drv); 4114 4115 if (!mvmsta->vif) 4116 return; 4117 4118 debugfs_create_file("rate_scale_table", 0600, dir, 4119 lq_sta, &rs_sta_dbgfs_scale_table_ops); 4120 debugfs_create_file("rate_stats_table", 0400, dir, 4121 lq_sta, &rs_sta_dbgfs_stats_table_ops); 4122 debugfs_create_file("drv_tx_stats", 0600, dir, 4123 lq_sta, &rs_sta_dbgfs_drv_tx_stats_ops); 4124 debugfs_create_u8("tx_agg_tid_enable", 0600, dir, 4125 &lq_sta->tx_agg_tid_en); 4126 debugfs_create_u8("reduced_tpc", 0600, dir, 4127 &lq_sta->pers.dbg_fixed_txp_reduction); 4128 4129 MVM_DEBUGFS_ADD_FILE_RS(ss_force, dir, 0600); 4130 } 4131 #endif 4132 4133 /* 4134 * Initialization of rate scaling information is done by driver after 4135 * the station is added. Since mac80211 calls this function before a 4136 * station is added we ignore it. 4137 */ 4138 static void rs_rate_init_ops(void *mvm_r, 4139 struct ieee80211_supported_band *sband, 4140 struct cfg80211_chan_def *chandef, 4141 struct ieee80211_sta *sta, void *mvm_sta) 4142 { 4143 } 4144 4145 /* ops for rate scaling implemented in the driver */ 4146 static const struct rate_control_ops rs_mvm_ops_drv = { 4147 .name = RS_NAME, 4148 .tx_status = rs_drv_mac80211_tx_status, 4149 .get_rate = rs_drv_get_rate, 4150 .rate_init = rs_rate_init_ops, 4151 .alloc = rs_alloc, 4152 .free = rs_free, 4153 .alloc_sta = rs_drv_alloc_sta, 4154 .free_sta = rs_free_sta, 4155 .rate_update = rs_drv_rate_update, 4156 #ifdef CONFIG_MAC80211_DEBUGFS 4157 .add_sta_debugfs = rs_drv_add_sta_debugfs, 4158 #endif 4159 .capa = RATE_CTRL_CAPA_VHT_EXT_NSS_BW, 4160 }; 4161 4162 void iwl_mvm_rs_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 4163 enum nl80211_band band, bool update) 4164 { 4165 if (iwl_mvm_has_tlc_offload(mvm)) { 4166 rs_fw_rate_init(mvm, sta, band, update); 4167 } else { 4168 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 4169 4170 spin_lock(&mvmsta->lq_sta.rs_drv.pers.lock); 4171 rs_drv_rate_init(mvm, sta, band); 4172 spin_unlock(&mvmsta->lq_sta.rs_drv.pers.lock); 4173 } 4174 } 4175 4176 int iwl_mvm_rate_control_register(void) 4177 { 4178 return ieee80211_rate_control_register(&rs_mvm_ops_drv); 4179 } 4180 4181 void iwl_mvm_rate_control_unregister(void) 4182 { 4183 ieee80211_rate_control_unregister(&rs_mvm_ops_drv); 4184 } 4185 4186 static int rs_drv_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta, 4187 bool enable) 4188 { 4189 struct iwl_lq_cmd *lq = &mvmsta->lq_sta.rs_drv.lq; 4190 4191 lockdep_assert_held(&mvm->mutex); 4192 4193 if (enable) { 4194 if (mvmsta->tx_protection == 0) 4195 lq->flags |= LQ_FLAG_USE_RTS_MSK; 4196 mvmsta->tx_protection++; 4197 } else { 4198 mvmsta->tx_protection--; 4199 if (mvmsta->tx_protection == 0) 4200 lq->flags &= ~LQ_FLAG_USE_RTS_MSK; 4201 } 4202 4203 return iwl_mvm_send_lq_cmd(mvm, lq); 4204 } 4205 4206 /** 4207 * iwl_mvm_tx_protection - ask FW to enable RTS/CTS protection 4208 * @mvmsta: The station 4209 * @enable: Enable Tx protection? 4210 */ 4211 int iwl_mvm_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta, 4212 bool enable) 4213 { 4214 if (iwl_mvm_has_tlc_offload(mvm)) 4215 return rs_fw_tx_protection(mvm, mvmsta, enable); 4216 else 4217 return rs_drv_tx_protection(mvm, mvmsta, enable); 4218 } 4219