Browse Source

qcacld-3.0: Higher Bandwidth support 80/80+80/160 in 2.4G Band

Higher Bandwidth support 80/80+80/160 is enabled on 2.4G Band.

Modififed the population of peer capability logic to disable
80+80/160 based on the band.

Change-Id: I8319ef3fcd93676bca1115a088a926a772545d24
CRs-Fixed: 3030837
Sandeep Puligilla 3 years ago
parent
commit
8adfd4347f

+ 8 - 2
core/mac/src/pe/lim/lim_process_sme_req_messages.c

@@ -673,12 +673,18 @@ static void lim_start_bss_update_ht_vht_caps(struct mac_context *mac_ctx,
 	value = MLME_VHT_CSN_BEAMFORMEE_ANT_SUPPORTED_FW_DEF;
 	vht_config.csnof_beamformer_antSup = value;
 	vht_config.mu_beam_formee = 0;
+	/* Disable shortgi160 and 80 for 2.4Ghz BSS*/
+	if (wlan_reg_is_24ghz_ch_freq(session->curr_op_freq)) {
+		vht_config.shortgi160and80plus80 = 0;
+		vht_config.shortgi80 = 0;
+	}
 
 	session->vht_config = vht_config;
+
 	ht_caps.caps = vdev_mlme->proto.ht_info.ht_caps;
 	session->ht_config = ht_caps.ht_caps;
-	pe_debug("HT capability 0x%x VHT capability 0x%x",
-		 ht_caps.caps, vht_config.caps);
+	pe_debug("cur_op_freq %d HT capability 0x%x VHT capability 0x%x",
+		 session->curr_op_freq, ht_caps.caps, vht_config.caps);
 }
 
 /**

+ 3 - 0
core/mac/src/sys/legacy/src/utils/src/parser_api.c

@@ -1302,6 +1302,9 @@ populate_dot11f_vht_caps(struct mac_context *mac,
 			return QDF_STATUS_SUCCESS;
 		}
 
+		if (wlan_reg_is_24ghz_ch_freq(pe_session->curr_op_freq))
+			pDot11f->supportedChannelWidthSet = 0;
+
 		if (pe_session->ht_config.adv_coding_cap)
 			pDot11f->ldpcCodingCap =
 				pe_session->vht_config.ldpc_coding;