1 /****************************************************************************** 2 * 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * GPL LICENSE SUMMARY 7 * 8 * Copyright(c) 2017 Intel Deutschland GmbH 9 * Copyright(c) 2018 - 2019 Intel Corporation 10 * 11 * This program is free software; you can redistribute it and/or modify 12 * it under the terms of version 2 of the GNU General Public License as 13 * published by the Free Software Foundation. 14 * 15 * This program is distributed in the hope that it will be useful, but 16 * WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * General Public License for more details. 19 * 20 * The full GNU General Public License is included in this distribution 21 * in the file called COPYING. 22 * 23 * Contact Information: 24 * Intel Linux Wireless <linuxwifi@intel.com> 25 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 26 * 27 * BSD LICENSE 28 * 29 * Copyright(c) 2017 Intel Deutschland GmbH 30 * Copyright(c) 2018 - 2019 Intel Corporation 31 * All rights reserved. 32 * 33 * Redistribution and use in source and binary forms, with or without 34 * modification, are permitted provided that the following conditions 35 * are met: 36 * 37 * * Redistributions of source code must retain the above copyright 38 * notice, this list of conditions and the following disclaimer. 39 * * Redistributions in binary form must reproduce the above copyright 40 * notice, this list of conditions and the following disclaimer in 41 * the documentation and/or other materials provided with the 42 * distribution. 43 * * Neither the name Intel Corporation nor the names of its 44 * contributors may be used to endorse or promote products derived 45 * from this software without specific prior written permission. 46 * 47 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 48 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 49 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 50 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 51 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 52 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 53 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 54 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 55 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 56 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 57 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 58 * 59 *****************************************************************************/ 60 #include "rs.h" 61 #include "fw-api.h" 62 #include "sta.h" 63 #include "iwl-op-mode.h" 64 #include "mvm.h" 65 66 static u8 rs_fw_bw_from_sta_bw(struct ieee80211_sta *sta) 67 { 68 switch (sta->bandwidth) { 69 case IEEE80211_STA_RX_BW_160: 70 return IWL_TLC_MNG_CH_WIDTH_160MHZ; 71 case IEEE80211_STA_RX_BW_80: 72 return IWL_TLC_MNG_CH_WIDTH_80MHZ; 73 case IEEE80211_STA_RX_BW_40: 74 return IWL_TLC_MNG_CH_WIDTH_40MHZ; 75 case IEEE80211_STA_RX_BW_20: 76 default: 77 return IWL_TLC_MNG_CH_WIDTH_20MHZ; 78 } 79 } 80 81 static u8 rs_fw_set_active_chains(u8 chains) 82 { 83 u8 fw_chains = 0; 84 85 if (chains & ANT_A) 86 fw_chains |= IWL_TLC_MNG_CHAIN_A_MSK; 87 if (chains & ANT_B) 88 fw_chains |= IWL_TLC_MNG_CHAIN_B_MSK; 89 if (chains & ANT_C) 90 WARN(false, 91 "tlc offload doesn't support antenna C. chains: 0x%x\n", 92 chains); 93 94 return fw_chains; 95 } 96 97 static u8 rs_fw_sgi_cw_support(struct ieee80211_sta *sta) 98 { 99 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 100 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 101 struct ieee80211_sta_he_cap *he_cap = &sta->he_cap; 102 u8 supp = 0; 103 104 if (he_cap && he_cap->has_he) 105 return 0; 106 107 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_20) 108 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_20MHZ); 109 if (ht_cap->cap & IEEE80211_HT_CAP_SGI_40) 110 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_40MHZ); 111 if (vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_80) 112 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_80MHZ); 113 if (vht_cap->cap & IEEE80211_VHT_CAP_SHORT_GI_160) 114 supp |= BIT(IWL_TLC_MNG_CH_WIDTH_160MHZ); 115 116 return supp; 117 } 118 119 static u16 rs_fw_get_config_flags(struct iwl_mvm *mvm, 120 struct ieee80211_sta *sta, 121 struct ieee80211_supported_band *sband) 122 { 123 struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 124 struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 125 struct ieee80211_sta_he_cap *he_cap = &sta->he_cap; 126 bool vht_ena = vht_cap && vht_cap->vht_supported; 127 u16 flags = 0; 128 129 if (mvm->cfg->ht_params->stbc && 130 (num_of_ant(iwl_mvm_get_valid_tx_ant(mvm)) > 1)) { 131 if (he_cap && he_cap->has_he) { 132 if (he_cap->he_cap_elem.phy_cap_info[2] & 133 IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ) 134 flags |= IWL_TLC_MNG_CFG_FLAGS_STBC_MSK; 135 136 if (he_cap->he_cap_elem.phy_cap_info[7] & 137 IEEE80211_HE_PHY_CAP7_STBC_RX_ABOVE_80MHZ) 138 flags |= IWL_TLC_MNG_CFG_FLAGS_HE_STBC_160MHZ_MSK; 139 } else if ((ht_cap && 140 (ht_cap->cap & IEEE80211_HT_CAP_RX_STBC)) || 141 (vht_ena && 142 (vht_cap->cap & IEEE80211_VHT_CAP_RXSTBC_MASK))) 143 flags |= IWL_TLC_MNG_CFG_FLAGS_STBC_MSK; 144 } 145 146 if (mvm->cfg->ht_params->ldpc && 147 ((ht_cap && (ht_cap->cap & IEEE80211_HT_CAP_LDPC_CODING)) || 148 (vht_ena && (vht_cap->cap & IEEE80211_VHT_CAP_RXLDPC)))) 149 flags |= IWL_TLC_MNG_CFG_FLAGS_LDPC_MSK; 150 151 /* consider our LDPC support in case of HE */ 152 if (sband->iftype_data && sband->iftype_data->he_cap.has_he && 153 !(sband->iftype_data->he_cap.he_cap_elem.phy_cap_info[1] & 154 IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD)) 155 flags &= ~IWL_TLC_MNG_CFG_FLAGS_LDPC_MSK; 156 157 if (he_cap && he_cap->has_he && 158 (he_cap->he_cap_elem.phy_cap_info[3] & 159 IEEE80211_HE_PHY_CAP3_DCM_MAX_CONST_RX_MASK)) 160 flags |= IWL_TLC_MNG_CFG_FLAGS_HE_DCM_NSS_1_MSK; 161 162 return flags; 163 } 164 165 static 166 int rs_fw_vht_highest_rx_mcs_index(const struct ieee80211_sta_vht_cap *vht_cap, 167 int nss) 168 { 169 u16 rx_mcs = le16_to_cpu(vht_cap->vht_mcs.rx_mcs_map) & 170 (0x3 << (2 * (nss - 1))); 171 rx_mcs >>= (2 * (nss - 1)); 172 173 switch (rx_mcs) { 174 case IEEE80211_VHT_MCS_SUPPORT_0_7: 175 return IWL_TLC_MNG_HT_RATE_MCS7; 176 case IEEE80211_VHT_MCS_SUPPORT_0_8: 177 return IWL_TLC_MNG_HT_RATE_MCS8; 178 case IEEE80211_VHT_MCS_SUPPORT_0_9: 179 return IWL_TLC_MNG_HT_RATE_MCS9; 180 default: 181 WARN_ON_ONCE(1); 182 break; 183 } 184 185 return 0; 186 } 187 188 static void 189 rs_fw_vht_set_enabled_rates(const struct ieee80211_sta *sta, 190 const struct ieee80211_sta_vht_cap *vht_cap, 191 struct iwl_tlc_config_cmd *cmd) 192 { 193 u16 supp; 194 int i, highest_mcs; 195 196 for (i = 0; i < sta->rx_nss; i++) { 197 if (i == MAX_NSS) 198 break; 199 200 highest_mcs = rs_fw_vht_highest_rx_mcs_index(vht_cap, i + 1); 201 if (!highest_mcs) 202 continue; 203 204 supp = BIT(highest_mcs + 1) - 1; 205 if (sta->bandwidth == IEEE80211_STA_RX_BW_20) 206 supp &= ~BIT(IWL_TLC_MNG_HT_RATE_MCS9); 207 208 cmd->ht_rates[i][0] = cpu_to_le16(supp); 209 if (sta->bandwidth == IEEE80211_STA_RX_BW_160) 210 cmd->ht_rates[i][1] = cmd->ht_rates[i][0]; 211 } 212 } 213 214 static u16 rs_fw_he_ieee80211_mcs_to_rs_mcs(u16 mcs) 215 { 216 switch (mcs) { 217 case IEEE80211_HE_MCS_SUPPORT_0_7: 218 return BIT(IWL_TLC_MNG_HT_RATE_MCS7 + 1) - 1; 219 case IEEE80211_HE_MCS_SUPPORT_0_9: 220 return BIT(IWL_TLC_MNG_HT_RATE_MCS9 + 1) - 1; 221 case IEEE80211_HE_MCS_SUPPORT_0_11: 222 return BIT(IWL_TLC_MNG_HT_RATE_MCS11 + 1) - 1; 223 case IEEE80211_HE_MCS_NOT_SUPPORTED: 224 return 0; 225 } 226 227 WARN(1, "invalid HE MCS %d\n", mcs); 228 return 0; 229 } 230 231 static void 232 rs_fw_he_set_enabled_rates(const struct ieee80211_sta *sta, 233 const struct ieee80211_sta_he_cap *he_cap, 234 struct iwl_tlc_config_cmd *cmd) 235 { 236 u16 mcs_160 = le16_to_cpu(sta->he_cap.he_mcs_nss_supp.rx_mcs_160); 237 u16 mcs_80 = le16_to_cpu(sta->he_cap.he_mcs_nss_supp.rx_mcs_80); 238 int i; 239 240 for (i = 0; i < sta->rx_nss && i < MAX_NSS; i++) { 241 u16 _mcs_160 = (mcs_160 >> (2 * i)) & 0x3; 242 u16 _mcs_80 = (mcs_80 >> (2 * i)) & 0x3; 243 244 cmd->ht_rates[i][0] = 245 cpu_to_le16(rs_fw_he_ieee80211_mcs_to_rs_mcs(_mcs_80)); 246 cmd->ht_rates[i][1] = 247 cpu_to_le16(rs_fw_he_ieee80211_mcs_to_rs_mcs(_mcs_160)); 248 } 249 } 250 251 static void rs_fw_set_supp_rates(struct ieee80211_sta *sta, 252 struct ieee80211_supported_band *sband, 253 struct iwl_tlc_config_cmd *cmd) 254 { 255 int i; 256 unsigned long tmp; 257 unsigned long supp; /* must be unsigned long for for_each_set_bit */ 258 const struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 259 const struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 260 const struct ieee80211_sta_he_cap *he_cap = &sta->he_cap; 261 262 /* non HT rates */ 263 supp = 0; 264 tmp = sta->supp_rates[sband->band]; 265 for_each_set_bit(i, &tmp, BITS_PER_LONG) 266 supp |= BIT(sband->bitrates[i].hw_value); 267 268 cmd->non_ht_rates = cpu_to_le16(supp); 269 cmd->mode = IWL_TLC_MNG_MODE_NON_HT; 270 271 /* HT/VHT rates */ 272 if (he_cap && he_cap->has_he) { 273 cmd->mode = IWL_TLC_MNG_MODE_HE; 274 rs_fw_he_set_enabled_rates(sta, he_cap, cmd); 275 } else if (vht_cap && vht_cap->vht_supported) { 276 cmd->mode = IWL_TLC_MNG_MODE_VHT; 277 rs_fw_vht_set_enabled_rates(sta, vht_cap, cmd); 278 } else if (ht_cap && ht_cap->ht_supported) { 279 cmd->mode = IWL_TLC_MNG_MODE_HT; 280 cmd->ht_rates[0][0] = cpu_to_le16(ht_cap->mcs.rx_mask[0]); 281 cmd->ht_rates[1][0] = cpu_to_le16(ht_cap->mcs.rx_mask[1]); 282 } 283 } 284 285 void iwl_mvm_tlc_update_notif(struct iwl_mvm *mvm, 286 struct iwl_rx_cmd_buffer *rxb) 287 { 288 struct iwl_rx_packet *pkt = rxb_addr(rxb); 289 struct iwl_tlc_update_notif *notif; 290 struct ieee80211_sta *sta; 291 struct iwl_mvm_sta *mvmsta; 292 struct iwl_lq_sta_rs_fw *lq_sta; 293 u32 flags; 294 295 rcu_read_lock(); 296 297 notif = (void *)pkt->data; 298 sta = rcu_dereference(mvm->fw_id_to_mac_id[notif->sta_id]); 299 if (IS_ERR_OR_NULL(sta)) { 300 IWL_ERR(mvm, "Invalid sta id (%d) in FW TLC notification\n", 301 notif->sta_id); 302 goto out; 303 } 304 305 mvmsta = iwl_mvm_sta_from_mac80211(sta); 306 307 if (!mvmsta) { 308 IWL_ERR(mvm, "Invalid sta id (%d) in FW TLC notification\n", 309 notif->sta_id); 310 goto out; 311 } 312 313 flags = le32_to_cpu(notif->flags); 314 315 lq_sta = &mvmsta->lq_sta.rs_fw; 316 317 if (flags & IWL_TLC_NOTIF_FLAG_RATE) { 318 lq_sta->last_rate_n_flags = le32_to_cpu(notif->rate); 319 IWL_DEBUG_RATE(mvm, "new rate_n_flags: 0x%X\n", 320 lq_sta->last_rate_n_flags); 321 } 322 323 if (flags & IWL_TLC_NOTIF_FLAG_AMSDU) { 324 u16 size = le32_to_cpu(notif->amsdu_size); 325 int i; 326 327 if (WARN_ON(sta->max_amsdu_len < size)) 328 goto out; 329 330 mvmsta->amsdu_enabled = le32_to_cpu(notif->amsdu_enabled); 331 mvmsta->max_amsdu_len = size; 332 sta->max_rc_amsdu_len = mvmsta->max_amsdu_len; 333 334 for (i = 0; i < IWL_MAX_TID_COUNT; i++) { 335 if (mvmsta->amsdu_enabled & BIT(i)) 336 sta->max_tid_amsdu_len[i] = 337 iwl_mvm_max_amsdu_size(mvm, sta, i); 338 else 339 /* 340 * Not so elegant, but this will effectively 341 * prevent AMSDU on this TID 342 */ 343 sta->max_tid_amsdu_len[i] = 1; 344 } 345 346 IWL_DEBUG_RATE(mvm, 347 "AMSDU update. AMSDU size: %d, AMSDU selected size: %d, AMSDU TID bitmap 0x%X\n", 348 le32_to_cpu(notif->amsdu_size), size, 349 mvmsta->amsdu_enabled); 350 } 351 out: 352 rcu_read_unlock(); 353 } 354 355 static u16 rs_fw_get_max_amsdu_len(struct ieee80211_sta *sta) 356 { 357 const struct ieee80211_sta_vht_cap *vht_cap = &sta->vht_cap; 358 const struct ieee80211_sta_ht_cap *ht_cap = &sta->ht_cap; 359 360 if (vht_cap && vht_cap->vht_supported) { 361 switch (vht_cap->cap & IEEE80211_VHT_CAP_MAX_MPDU_MASK) { 362 case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454: 363 return IEEE80211_MAX_MPDU_LEN_VHT_11454; 364 case IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_7991: 365 return IEEE80211_MAX_MPDU_LEN_VHT_7991; 366 default: 367 return IEEE80211_MAX_MPDU_LEN_VHT_3895; 368 } 369 370 } else if (ht_cap && ht_cap->ht_supported) { 371 if (ht_cap->cap & IEEE80211_HT_CAP_MAX_AMSDU) 372 /* 373 * agg is offloaded so we need to assume that agg 374 * are enabled and max mpdu in ampdu is 4095 375 * (spec 802.11-2016 9.3.2.1) 376 */ 377 return IEEE80211_MAX_MPDU_LEN_HT_BA; 378 else 379 return IEEE80211_MAX_MPDU_LEN_HT_3839; 380 } 381 382 /* in legacy mode no amsdu is enabled so return zero */ 383 return 0; 384 } 385 386 void rs_fw_rate_init(struct iwl_mvm *mvm, struct ieee80211_sta *sta, 387 enum nl80211_band band, bool update) 388 { 389 struct ieee80211_hw *hw = mvm->hw; 390 struct iwl_mvm_sta *mvmsta = iwl_mvm_sta_from_mac80211(sta); 391 struct iwl_lq_sta_rs_fw *lq_sta = &mvmsta->lq_sta.rs_fw; 392 u32 cmd_id = iwl_cmd_id(TLC_MNG_CONFIG_CMD, DATA_PATH_GROUP, 0); 393 struct ieee80211_supported_band *sband = hw->wiphy->bands[band]; 394 u16 max_amsdu_len = rs_fw_get_max_amsdu_len(sta); 395 struct iwl_tlc_config_cmd cfg_cmd = { 396 .sta_id = mvmsta->sta_id, 397 .max_ch_width = update ? 398 rs_fw_bw_from_sta_bw(sta) : RATE_MCS_CHAN_WIDTH_20, 399 .flags = cpu_to_le16(rs_fw_get_config_flags(mvm, sta, sband)), 400 .chains = rs_fw_set_active_chains(iwl_mvm_get_valid_tx_ant(mvm)), 401 .sgi_ch_width_supp = rs_fw_sgi_cw_support(sta), 402 .max_mpdu_len = cpu_to_le16(max_amsdu_len), 403 .amsdu = iwl_mvm_is_csum_supported(mvm), 404 }; 405 int ret; 406 407 memset(lq_sta, 0, offsetof(typeof(*lq_sta), pers)); 408 409 #ifdef CONFIG_IWLWIFI_DEBUGFS 410 iwl_mvm_reset_frame_stats(mvm); 411 #endif 412 rs_fw_set_supp_rates(sta, sband, &cfg_cmd); 413 414 /* 415 * since TLC offload works with one mode we can assume 416 * that only vht/ht is used and also set it as station max amsdu 417 */ 418 sta->max_amsdu_len = max_amsdu_len; 419 420 ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, sizeof(cfg_cmd), &cfg_cmd); 421 if (ret) 422 IWL_ERR(mvm, "Failed to send rate scale config (%d)\n", ret); 423 } 424 425 int rs_fw_tx_protection(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta, 426 bool enable) 427 { 428 /* TODO: need to introduce a new FW cmd since LQ cmd is not relevant */ 429 IWL_DEBUG_RATE(mvm, "tx protection - not implemented yet.\n"); 430 return 0; 431 } 432 433 void iwl_mvm_rs_add_sta(struct iwl_mvm *mvm, struct iwl_mvm_sta *mvmsta) 434 { 435 struct iwl_lq_sta_rs_fw *lq_sta = &mvmsta->lq_sta.rs_fw; 436 437 IWL_DEBUG_RATE(mvm, "create station rate scale window\n"); 438 439 lq_sta->pers.drv = mvm; 440 lq_sta->pers.sta_id = mvmsta->sta_id; 441 lq_sta->pers.chains = 0; 442 memset(lq_sta->pers.chain_signal, 0, sizeof(lq_sta->pers.chain_signal)); 443 lq_sta->pers.last_rssi = S8_MIN; 444 lq_sta->last_rate_n_flags = 0; 445 446 #ifdef CONFIG_MAC80211_DEBUGFS 447 lq_sta->pers.dbg_fixed_rate = 0; 448 #endif 449 } 450