Kaynağa Gözat

qcacld-3.0: Fix HE MCS wrong for 2.4G 1x1 + 5G 2x2 case

In the 2.4G 1x1 + 5G 2x2 Hastings specific case,
host will receive below HE MCS info:
1. hw mode id[0], phy id[0]
he_supp_mcs_2G=0x0
he_supp_mcs_5G=0xfffefffa
2. hw_mode_id=1 phy_id=0
he_supp_mcs_2G=0x0
he_supp_mcs_5G=0xfffefffa
3. hw_mode_id=1 phy_id=1
he_supp_mcs_2G=0xfffe
he_supp_mcs_5G=0x0
But in the wma_update_target_ext_he_cap, it always
updates the last mcs=0xfffe info into he_cap,
which will be used in the HE capability of beacon
or probe response frame whatever it running on
2.4G or 5G and it is not right.
So add this fix to update the MCS separately according
to the current operating channel.

Change-Id: I277aa708ae7e13917cf2068f01b05d3864ad7618
CRs-Fixed: 2992253
Chaoli Zhou 3 yıl önce
ebeveyn
işleme
4de24dbbde
1 değiştirilmiş dosya ile 25 ekleme ve 6 silme
  1. 25 6
      core/mac/src/pe/lim/lim_utils.c

+ 25 - 6
core/mac/src/pe/lim/lim_utils.c

@@ -7261,9 +7261,18 @@ lim_revise_req_he_cap_per_band(struct mlme_legacy_priv *mlme_priv,
 	if (wlan_reg_is_24ghz_ch_freq(session->curr_op_freq)) {
 		he_config->bfee_sts_lt_80 =
 			mac->he_cap_2g.bfee_sts_lt_80;
+		he_config->tx_he_mcs_map_lt_80 =
+			mac->he_cap_2g.tx_he_mcs_map_lt_80;
+		he_config->rx_he_mcs_map_lt_80 =
+			mac->he_cap_2g.rx_he_mcs_map_lt_80;
+
 	} else {
 		he_config->bfee_sts_lt_80 =
 			mac->he_cap_5g.bfee_sts_lt_80;
+		he_config->tx_he_mcs_map_lt_80 =
+			mac->he_cap_5g.tx_he_mcs_map_lt_80;
+		he_config->rx_he_mcs_map_lt_80 =
+			mac->he_cap_5g.rx_he_mcs_map_lt_80;
 
 		he_config->num_sounding_lt_80 =
 			mac->he_cap_5g.num_sounding_lt_80;
@@ -7923,12 +7932,22 @@ QDF_STATUS lim_populate_he_mcs_set(struct mac_context *mac_ctx,
 		}
 	}
 
-	lim_populate_he_mcs_per_bw(mac_ctx,
-		&rates->rx_he_mcs_map_lt_80, &rates->tx_he_mcs_map_lt_80,
-		peer_he_caps->rx_he_mcs_map_lt_80,
-		peer_he_caps->tx_he_mcs_map_lt_80, nss,
-		mac_ctx->mlme_cfg->he_caps.dot11_he_cap.rx_he_mcs_map_lt_80,
-		mac_ctx->mlme_cfg->he_caps.dot11_he_cap.tx_he_mcs_map_lt_80);
+	if (wlan_reg_is_24ghz_ch_freq(session_entry->curr_op_freq))
+		lim_populate_he_mcs_per_bw(mac_ctx,
+			&rates->rx_he_mcs_map_lt_80,
+			&rates->tx_he_mcs_map_lt_80,
+			peer_he_caps->rx_he_mcs_map_lt_80,
+			peer_he_caps->tx_he_mcs_map_lt_80, nss,
+			mac_ctx->he_cap_2g.rx_he_mcs_map_lt_80,
+			mac_ctx->he_cap_2g.tx_he_mcs_map_lt_80);
+	else
+		lim_populate_he_mcs_per_bw(mac_ctx,
+			&rates->rx_he_mcs_map_lt_80,
+			&rates->tx_he_mcs_map_lt_80,
+			peer_he_caps->rx_he_mcs_map_lt_80,
+			peer_he_caps->tx_he_mcs_map_lt_80, nss,
+			mac_ctx->he_cap_5g.rx_he_mcs_map_lt_80,
+			mac_ctx->he_cap_5g.tx_he_mcs_map_lt_80);
 
 	if (session_entry->ch_width == CH_WIDTH_160MHZ) {
 		lim_populate_he_mcs_per_bw(