|
@@ -87,24 +87,22 @@ void swap_bit_field16(uint16_t in, uint16_t *out)
|
|
|
static inline void __print_wmm_params(struct mac_context *mac,
|
|
|
tDot11fIEWMMParams *pWmm)
|
|
|
{
|
|
|
- pe_debug("WMM Parameters Received:");
|
|
|
- pe_debug("BE: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d",
|
|
|
- pWmm->acbe_aifsn, pWmm->acbe_acm, pWmm->acbe_aci,
|
|
|
- pWmm->acbe_acwmin, pWmm->acbe_acwmax, pWmm->acbe_txoplimit);
|
|
|
-
|
|
|
- pe_debug("BK: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d",
|
|
|
- pWmm->acbk_aifsn, pWmm->acbk_acm, pWmm->acbk_aci,
|
|
|
- pWmm->acbk_acwmin, pWmm->acbk_acwmax, pWmm->acbk_txoplimit);
|
|
|
-
|
|
|
- pe_debug("VI: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d",
|
|
|
- pWmm->acvi_aifsn, pWmm->acvi_acm, pWmm->acvi_aci,
|
|
|
- pWmm->acvi_acwmin, pWmm->acvi_acwmax, pWmm->acvi_txoplimit);
|
|
|
-
|
|
|
- pe_debug("VO: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d",
|
|
|
- pWmm->acvo_aifsn, pWmm->acvo_acm, pWmm->acvo_aci,
|
|
|
- pWmm->acvo_acwmin, pWmm->acvo_acwmax, pWmm->acvo_txoplimit);
|
|
|
-
|
|
|
- return;
|
|
|
+ pe_nofl_debug("WMM: BE: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d, "
|
|
|
+ "BK: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d, "
|
|
|
+ "VI: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d, "
|
|
|
+ "VO: aifsn %d, acm %d, aci %d, cwmin %d, cwmax %d, txop %d",
|
|
|
+ pWmm->acbe_aifsn, pWmm->acbe_acm, pWmm->acbe_aci,
|
|
|
+ pWmm->acbe_acwmin, pWmm->acbe_acwmax,
|
|
|
+ pWmm->acbe_txoplimit,
|
|
|
+ pWmm->acbk_aifsn, pWmm->acbk_acm, pWmm->acbk_aci,
|
|
|
+ pWmm->acbk_acwmin, pWmm->acbk_acwmax,
|
|
|
+ pWmm->acbk_txoplimit,
|
|
|
+ pWmm->acvi_aifsn, pWmm->acvi_acm, pWmm->acvi_aci,
|
|
|
+ pWmm->acvi_acwmin, pWmm->acvi_acwmax,
|
|
|
+ pWmm->acvi_txoplimit,
|
|
|
+ pWmm->acvo_aifsn, pWmm->acvo_acm, pWmm->acvo_aci,
|
|
|
+ pWmm->acvo_acwmin, pWmm->acvo_acwmax,
|
|
|
+ pWmm->acvo_txoplimit);
|
|
|
}
|
|
|
|
|
|
/* ////////////////////////////////////////////////////////////////////// */
|
|
@@ -1006,10 +1004,6 @@ populate_dot11f_ht_caps(struct mac_context *mac,
|
|
|
&ch_params);
|
|
|
if (ch_params.ch_width != CH_WIDTH_40MHZ)
|
|
|
pDot11f->supportedChannelWidthSet = 0;
|
|
|
- pe_debug("pe ch offset %d ch_width %d htcap ch width set %d",
|
|
|
- pe_session->htSecondaryChannelOffset,
|
|
|
- ch_params.ch_width,
|
|
|
- pDot11f->supportedChannelWidthSet);
|
|
|
} else {
|
|
|
pDot11f->supportedChannelWidthSet =
|
|
|
pe_session->htSupportedChannelWidthSet;
|
|
@@ -1288,22 +1282,16 @@ static void lim_log_operating_mode(struct mac_context *mac,
|
|
|
static void lim_log_qos_map_set(struct mac_context *mac,
|
|
|
struct qos_map_set *pQosMapSet)
|
|
|
{
|
|
|
- uint8_t i;
|
|
|
-
|
|
|
if (pQosMapSet->num_dscp_exceptions > QOS_MAP_MAX_EX)
|
|
|
pQosMapSet->num_dscp_exceptions = QOS_MAP_MAX_EX;
|
|
|
|
|
|
- pe_debug("num of dscp exceptions: %d",
|
|
|
- pQosMapSet->num_dscp_exceptions);
|
|
|
- for (i = 0; i < pQosMapSet->num_dscp_exceptions; i++)
|
|
|
- pe_nofl_debug("dscp value: %d, User priority value: %d",
|
|
|
- pQosMapSet->dscp_exceptions[i][0],
|
|
|
- pQosMapSet->dscp_exceptions[i][1]);
|
|
|
-
|
|
|
- for (i = 0; i < 8; i++)
|
|
|
- pe_nofl_debug("For up %d: dscp low: %d, dscp high: %d", i,
|
|
|
- pQosMapSet->dscp_range[i][0],
|
|
|
- pQosMapSet->dscp_range[i][1]);
|
|
|
+ pe_debug("num of dscp exceptions: %d", pQosMapSet->num_dscp_exceptions);
|
|
|
+ QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ pQosMapSet->dscp_exceptions,
|
|
|
+ sizeof(pQosMapSet->dscp_exceptions));
|
|
|
+ QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
+ pQosMapSet->dscp_range,
|
|
|
+ sizeof(pQosMapSet->dscp_range));
|
|
|
}
|
|
|
|
|
|
QDF_STATUS
|
|
@@ -3229,13 +3217,11 @@ sir_convert_assoc_req_frame2_struct(struct mac_context *mac,
|
|
|
if (ar->VHTCaps.present) {
|
|
|
qdf_mem_copy(&pAssocReq->VHTCaps, &ar->VHTCaps,
|
|
|
sizeof(tDot11fIEVHTCaps));
|
|
|
- pe_debug("Received Assoc Req with VHT Cap");
|
|
|
lim_log_vht_cap(mac, &pAssocReq->VHTCaps);
|
|
|
}
|
|
|
if (ar->OperatingMode.present) {
|
|
|
qdf_mem_copy(&pAssocReq->operMode, &ar->OperatingMode,
|
|
|
sizeof(tDot11fIEOperatingMode));
|
|
|
- pe_debug("Received Assoc Req with Operating Mode IE");
|
|
|
lim_log_operating_mode(mac, &pAssocReq->operMode);
|
|
|
}
|
|
|
if (ar->ExtCap.present) {
|
|
@@ -3257,9 +3243,6 @@ sir_convert_assoc_req_frame2_struct(struct mac_context *mac,
|
|
|
qdf_mem_copy(&pAssocReq->supp_operating_classes,
|
|
|
&ar->SuppOperatingClasses,
|
|
|
sizeof(tDot11fIESuppOperatingClasses));
|
|
|
- QDF_TRACE_HEX_DUMP(
|
|
|
- QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
- ar->SuppOperatingClasses.classes, num_classes);
|
|
|
}
|
|
|
|
|
|
pAssocReq->vendor_vht_ie.present = ar->vendor_vht_ie.present;
|
|
@@ -3269,7 +3252,6 @@ sir_convert_assoc_req_frame2_struct(struct mac_context *mac,
|
|
|
qdf_mem_copy(&pAssocReq->vendor_vht_ie.VHTCaps,
|
|
|
&ar->vendor_vht_ie.VHTCaps,
|
|
|
sizeof(tDot11fIEVHTCaps));
|
|
|
- pe_debug("Received Assoc Request with Vendor specific VHT Cap");
|
|
|
lim_log_vht_cap(mac, &pAssocReq->VHTCaps);
|
|
|
}
|
|
|
}
|
|
@@ -3281,27 +3263,19 @@ sir_convert_assoc_req_frame2_struct(struct mac_context *mac,
|
|
|
&ar->bss_max_idle_period,
|
|
|
sizeof(tDot11fIEbss_max_idle_period));
|
|
|
}
|
|
|
- if (ar->he_cap.present) {
|
|
|
+ if (ar->he_cap.present)
|
|
|
qdf_mem_copy(&pAssocReq->he_cap, &ar->he_cap,
|
|
|
sizeof(tDot11fIEhe_cap));
|
|
|
- pe_debug("Received Assoc Req with HE Capability IE");
|
|
|
- QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
- &pAssocReq->he_cap, sizeof(tDot11fIEhe_cap));
|
|
|
- }
|
|
|
- if (ar->he_6ghz_band_cap.present) {
|
|
|
+
|
|
|
+ if (ar->he_6ghz_band_cap.present)
|
|
|
qdf_mem_copy(&pAssocReq->he_6ghz_band_cap,
|
|
|
&ar->he_6ghz_band_cap,
|
|
|
sizeof(tDot11fIEhe_6ghz_band_cap));
|
|
|
- pe_debug("Received Assoc Req with HE Band Capability IE");
|
|
|
- }
|
|
|
- if (ar->eht_cap.present) {
|
|
|
+
|
|
|
+ if (ar->eht_cap.present)
|
|
|
qdf_mem_copy(&pAssocReq->eht_cap, &ar->eht_cap,
|
|
|
sizeof(tDot11fIEeht_cap));
|
|
|
- pe_debug("Received Assoc Req with EHT Capability IE");
|
|
|
- QDF_TRACE_HEX_DUMP(QDF_MODULE_ID_PE, QDF_TRACE_LEVEL_DEBUG,
|
|
|
- &pAssocReq->eht_cap,
|
|
|
- sizeof(tDot11fIEeht_cap));
|
|
|
- }
|
|
|
+
|
|
|
if (ar->mlo_ie.present) {
|
|
|
dot11f_parse_assc_req_mlo_partner_info(pFrame, nFrame,
|
|
|
pAssocReq, WLAN_ASSOC_REQ_IES_OFFSET);
|
|
@@ -3310,12 +3284,17 @@ sir_convert_assoc_req_frame2_struct(struct mac_context *mac,
|
|
|
qdf_mem_copy(pAssocReq->mld_mac,
|
|
|
ar->mlo_ie.mld_mac_addr.info.mld_mac_addr,
|
|
|
QDF_MAC_ADDR_SIZE);
|
|
|
- pe_debug("Received Assoc Req with MLO IE");
|
|
|
pe_debug("Partner link count: %d, MLD mac addr: " QDF_MAC_ADDR_FMT,
|
|
|
ar->mlo_ie.num_sta_profile,
|
|
|
QDF_MAC_ADDR_REF(
|
|
|
ar->mlo_ie.mld_mac_addr.info.mld_mac_addr));
|
|
|
}
|
|
|
+ pe_debug("ht %d vht %d opmode %d vendor vht %d he %d he 6ghband %d eht %d",
|
|
|
+ ar->HTCaps.present, ar->VHTCaps.present,
|
|
|
+ ar->OperatingMode.present, ar->vendor_vht_ie.VHTCaps.present,
|
|
|
+ ar->he_cap.present, ar->he_6ghz_band_cap.present,
|
|
|
+ ar->eht_cap.present);
|
|
|
+
|
|
|
qdf_mem_free(ar);
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
|
|
@@ -3621,21 +3600,16 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
if (ar->WMMParams.present) {
|
|
|
pAssocRsp->wmeEdcaPresent = 1;
|
|
|
convert_wmm_params(mac, &pAssocRsp->edca, &ar->WMMParams);
|
|
|
- pe_debug("Received Assoc Resp with WMM Param");
|
|
|
- __print_wmm_params(mac, &ar->WMMParams);
|
|
|
}
|
|
|
|
|
|
- if (ar->HTCaps.present) {
|
|
|
- pe_debug("Received Assoc Resp with HT Cap");
|
|
|
+ if (ar->HTCaps.present)
|
|
|
qdf_mem_copy(&pAssocRsp->HTCaps, &ar->HTCaps,
|
|
|
sizeof(tDot11fIEHTCaps));
|
|
|
- }
|
|
|
|
|
|
- if (ar->HTInfo.present) {
|
|
|
- pe_debug("Received Assoc Resp with HT Info");
|
|
|
+ if (ar->HTInfo.present)
|
|
|
qdf_mem_copy(&pAssocRsp->HTInfo, &ar->HTInfo,
|
|
|
sizeof(tDot11fIEHTInfo));
|
|
|
- }
|
|
|
+
|
|
|
if (ar->RRMEnabledCap.present) {
|
|
|
qdf_mem_copy(&pAssocRsp->rrm_caps, &ar->RRMEnabledCap,
|
|
|
sizeof(tDot11fIERRMEnabledCap));
|
|
@@ -3719,24 +3693,19 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
sizeof(struct ese_tsm_ie));
|
|
|
}
|
|
|
#endif
|
|
|
- if (ar->bss_max_idle_period.present) {
|
|
|
+ if (ar->bss_max_idle_period.present)
|
|
|
qdf_mem_copy(&pAssocRsp->bss_max_idle_period,
|
|
|
&ar->bss_max_idle_period,
|
|
|
sizeof(tDot11fIEbss_max_idle_period));
|
|
|
- pe_debug("Rcvd Assoc Rsp with BSS max idle period %d",
|
|
|
- pAssocRsp->bss_max_idle_period.max_idle_period);
|
|
|
- }
|
|
|
|
|
|
if (ar->VHTCaps.present) {
|
|
|
qdf_mem_copy(&pAssocRsp->VHTCaps, &ar->VHTCaps,
|
|
|
sizeof(tDot11fIEVHTCaps));
|
|
|
- pe_debug("Received Assoc Response with VHT Cap");
|
|
|
lim_log_vht_cap(mac, &pAssocRsp->VHTCaps);
|
|
|
}
|
|
|
if (ar->VHTOperation.present) {
|
|
|
qdf_mem_copy(&pAssocRsp->VHTOperation, &ar->VHTOperation,
|
|
|
sizeof(tDot11fIEVHTOperation));
|
|
|
- pe_debug("Received Assoc Response with VHT Operation");
|
|
|
lim_log_vht_operation(mac, &pAssocRsp->VHTOperation);
|
|
|
}
|
|
|
|
|
@@ -3755,7 +3724,6 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
pAssocRsp->QosMapSet.present = 1;
|
|
|
convert_qos_mapset_frame(mac, &pAssocRsp->QosMapSet,
|
|
|
&ar->QosMapSet);
|
|
|
- pe_debug("Received Assoc Response with Qos Map Set");
|
|
|
lim_log_qos_map_set(mac, &pAssocRsp->QosMapSet);
|
|
|
}
|
|
|
|
|
@@ -3771,14 +3739,12 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
qdf_mem_copy(&pAssocRsp->vendor_vht_ie.VHTCaps,
|
|
|
&ar->vendor_vht_ie.VHTCaps,
|
|
|
sizeof(tDot11fIEVHTCaps));
|
|
|
- pe_debug("Received Assoc Response with Vendor specific VHT Cap");
|
|
|
lim_log_vht_cap(mac, &pAssocRsp->VHTCaps);
|
|
|
}
|
|
|
if (ar->vendor_vht_ie.VHTOperation.present) {
|
|
|
qdf_mem_copy(&pAssocRsp->vendor_vht_ie.VHTOperation,
|
|
|
&ar->vendor_vht_ie.VHTOperation,
|
|
|
sizeof(tDot11fIEVHTOperation));
|
|
|
- pe_debug("Received Assoc Response with Vendor specific VHT Oper");
|
|
|
lim_log_vht_operation(mac, &pAssocRsp->VHTOperation);
|
|
|
}
|
|
|
|
|
@@ -3789,44 +3755,29 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
qdf_mem_copy(&pAssocRsp->he_cap, &ar->he_cap,
|
|
|
sizeof(tDot11fIEhe_cap));
|
|
|
}
|
|
|
- if (ar->he_op.present) {
|
|
|
+ if (ar->he_op.present)
|
|
|
qdf_mem_copy(&pAssocRsp->he_op, &ar->he_op,
|
|
|
sizeof(tDot11fIEhe_op));
|
|
|
- pe_debug("bss_clr %d def_pe %d part_bss_clr %d bss_col_dis %d",
|
|
|
- pAssocRsp->he_op.bss_color,
|
|
|
- pAssocRsp->he_op.default_pe,
|
|
|
- pAssocRsp->he_op.partial_bss_col,
|
|
|
- pAssocRsp->he_op.bss_col_disabled);
|
|
|
- }
|
|
|
|
|
|
- if (ar->eht_cap.present) {
|
|
|
+ if (ar->eht_cap.present)
|
|
|
qdf_mem_copy(&pAssocRsp->eht_cap, &ar->eht_cap,
|
|
|
sizeof(tDot11fIEeht_cap));
|
|
|
- pe_debug("Received Assoc Response with EHT Cap");
|
|
|
- pe_debug("320MHz support: %d",
|
|
|
- pAssocRsp->eht_cap.support_320mhz_6ghz);
|
|
|
- }
|
|
|
|
|
|
- if (ar->he_6ghz_band_cap.present) {
|
|
|
- pe_debug("11AX: HE Band Capability IE present");
|
|
|
+ if (ar->he_6ghz_band_cap.present)
|
|
|
qdf_mem_copy(&pAssocRsp->he_6ghz_band_cap,
|
|
|
&ar->he_6ghz_band_cap,
|
|
|
sizeof(tDot11fIEhe_6ghz_band_cap));
|
|
|
- }
|
|
|
|
|
|
if (ar->mu_edca_param_set.present) {
|
|
|
- pe_debug("11AX: HE MU EDCA param IE present");
|
|
|
pAssocRsp->mu_edca_present = true;
|
|
|
convert_mu_edca_param(mac, &pAssocRsp->mu_edca,
|
|
|
&ar->mu_edca_param_set);
|
|
|
}
|
|
|
|
|
|
- if (ar->MBO_IE.present && ar->MBO_IE.rssi_assoc_rej.present) {
|
|
|
+ if (ar->MBO_IE.present && ar->MBO_IE.rssi_assoc_rej.present)
|
|
|
qdf_mem_copy(&pAssocRsp->rssi_assoc_rej,
|
|
|
- &ar->MBO_IE.rssi_assoc_rej,
|
|
|
- sizeof(tDot11fTLVrssi_assoc_rej));
|
|
|
- pe_debug("Received Assoc Response with rssi based assoc rej");
|
|
|
- }
|
|
|
+ &ar->MBO_IE.rssi_assoc_rej,
|
|
|
+ sizeof(tDot11fTLVrssi_assoc_rej));
|
|
|
|
|
|
fils_convert_assoc_rsp_frame2_struct(ar, pAssocRsp);
|
|
|
if (ar->mlo_ie.present) {
|
|
@@ -3845,13 +3796,25 @@ sir_convert_assoc_resp_frame2_struct(struct mac_context *mac,
|
|
|
ar->mlo_ie.link_id_info.info.link_id;
|
|
|
pAssocRsp->mlo_ie.mlo_ie.num_sta_profile =
|
|
|
ar->mlo_ie.num_sta_profile;
|
|
|
- pe_debug("Received Assoc Response with MLO IE");
|
|
|
pe_debug("Partner link count: %d, Link id: %d, MLD mac addr: " QDF_MAC_ADDR_FMT,
|
|
|
ar->mlo_ie.num_sta_profile,
|
|
|
ar->mlo_ie.link_id_info.info.link_id,
|
|
|
QDF_MAC_ADDR_REF(
|
|
|
ar->mlo_ie.mld_mac_addr.info.mld_mac_addr));
|
|
|
}
|
|
|
+ pe_debug("ht %d vht %d vendor vht: cap %d op %d, he %d he 6ghband %d eht %d eht320 %d, max idle: present %d val %d, he mu edca %d wmm %d qos %d",
|
|
|
+ ar->HTCaps.present, ar->VHTCaps.present,
|
|
|
+ ar->vendor_vht_ie.VHTCaps.present,
|
|
|
+ ar->vendor_vht_ie.VHTOperation.present, ar->he_cap.present,
|
|
|
+ ar->he_6ghz_band_cap.present, ar->eht_cap.present,
|
|
|
+ pAssocRsp->eht_cap.support_320mhz_6ghz,
|
|
|
+ ar->bss_max_idle_period.present,
|
|
|
+ pAssocRsp->bss_max_idle_period.max_idle_period,
|
|
|
+ ar->mu_edca_param_set.present, ar->WMMParams.present,
|
|
|
+ ar->QosMapSet.present);
|
|
|
+
|
|
|
+ if (ar->WMMParams.present)
|
|
|
+ __print_wmm_params(mac, &ar->WMMParams);
|
|
|
|
|
|
qdf_mem_free(ar);
|
|
|
return QDF_STATUS_SUCCESS;
|
|
@@ -8520,7 +8483,6 @@ QDF_STATUS populate_dot11f_btm_extended_caps(struct mac_context *mac_ctx,
|
|
|
struct s_ext_cap *p_ext_cap;
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
- pe_debug("enter");
|
|
|
dot11f->num_bytes = DOT11F_IE_EXTCAP_MAX_LEN;
|
|
|
p_ext_cap = (struct s_ext_cap *)dot11f->bytes;
|
|
|
dot11f->present = 1;
|