Procházet zdrojové kódy

qcacld-3.0: Advertise the MBSSID capability

Advertise MBSSID capability in association request frame.

Change-Id: Id70fbd35b6e486d9e3e0f6f483983d599cf4aca3
CRs-Fixed: 2396078
Sandeep Puligilla před 6 roky
rodič
revize
01fcd3df08

+ 1 - 0
core/mac/src/pe/include/lim_session.h

@@ -547,6 +547,7 @@ struct pe_session {
 	bool mu_edca_present;
 	int8_t def_max_tx_pwr;
 	bool active_ba_64_session;
+	bool is_mbssid_enabled;
 #ifdef WLAN_SUPPORT_TWT
 	uint8_t peer_twt_requestor;
 	uint8_t peer_twt_responder;

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

@@ -1665,6 +1665,8 @@ __lim_process_sme_join_req(struct mac_context *mac_ctx, uint32_t *msg_buf)
 		/* Indicate whether spectrum management is enabled */
 		session->spectrumMgtEnabled =
 			sme_join_req->spectrumMgtIndicator;
+		/* Enable MBSSID only for station */
+		session->is_mbssid_enabled = wma_is_mbssid_enabled();
 
 		/* Enable the spectrum management if this is a DFS channel */
 		if (session->country_info_present &&

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

@@ -1092,6 +1092,9 @@ populate_dot11f_ext_cap(struct mac_context *mac,
 	if (pe_session && pe_session->enable_bcast_probe_rsp)
 		p_ext_cap->fils_capability = 1;
 
+	if (pe_session && pe_session->is_mbssid_enabled)
+		p_ext_cap->multi_bssid = 1;
+
 	/* Need to calculate the num_bytes based on bits set */
 	if (pDot11f->present)
 		pDot11f->num_bytes = lim_compute_ext_cap_ie_length(pDot11f);

+ 7 - 0
core/wma/inc/wma_api.h

@@ -231,6 +231,13 @@ QDF_STATUS wma_set_tx_power_scale(uint8_t vdev_id, int value);
 QDF_STATUS wma_set_tx_power_scale_decr_db(uint8_t vdev_id, int value);
 
 bool wma_is_csa_offload_enabled(void);
+/**
+ * wma_is_mbssid_enabled - checks MBSSID support
+ *
+ * Return: true or false
+ */
+bool wma_is_mbssid_enabled(void);
+
 #ifdef FEATURE_P2P_LISTEN_OFFLOAD
 bool wma_is_p2p_lo_capable(void);
 #else

+ 12 - 0
core/wma/src/wma_utils.c

@@ -4155,6 +4155,18 @@ bool wma_is_csa_offload_enabled(void)
 	return wmi_service_enabled(wma->wmi_handle,
 				   wmi_service_csa_offload);
 }
+
+bool wma_is_mbssid_enabled(void)
+{
+	tp_wma_handle wma = cds_get_context(QDF_MODULE_ID_WMA);
+
+	if (!wma)
+		return false;
+
+	return wmi_service_enabled(wma->wmi_handle,
+				   wmi_service_infra_mbssid);
+}
+
 #ifdef FEATURE_FW_LOG_PARSING
 /**
  * wma_config_debug_module_cmd - set debug log config