wifi: ath12k: Add HAL_PHYRX_OTHER_RECEIVE_INFO TLV parsing support
Currently, monitor is not enabled. However, in the future, the monitor will be enabled. Therefore, add the necessary HAL_PHYRX_OTHER_RECEIVE_INFO TLV parsing support in the monitor Rx path, which helps to populate the extended Rx statistics. Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.3.1-00173-QCAHKSWPL_SILICONZ-1 Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0.c5-00481-QCAHMTSWPL_V1.0_V2.0_SILICONZ-3 Co-developed-by: P Praneesh <quic_ppranees@quicinc.com> Signed-off-by: P Praneesh <quic_ppranees@quicinc.com> Reviewed-by: Vasanthakumar Thiagarajan <vasanthakumar.thiagarajan@oss.qualcomm.com> Signed-off-by: Karthikeyan Periyasamy <quic_periyasa@quicinc.com> Link: https://patch.msgid.link/20250206013854.174765-5-quic_periyasa@quicinc.com Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>pull/1188/head
parent
e6fa62bada
commit
d939919a36
|
|
@ -1599,6 +1599,13 @@ ath12k_dp_mon_rx_parse_status_tlv(struct ath12k *ar,
|
|||
HAL_RX_PHYRX_RSSI_LEGACY_INFO_INFO0_RX_BW);
|
||||
break;
|
||||
}
|
||||
case HAL_PHYRX_OTHER_RECEIVE_INFO: {
|
||||
const struct hal_phyrx_common_user_info *cmn_usr_info = tlv_data;
|
||||
|
||||
ppdu_info->gi = le32_get_bits(cmn_usr_info->info0,
|
||||
HAL_RX_PHY_CMN_USER_INFO0_GI);
|
||||
break;
|
||||
}
|
||||
case HAL_RX_PPDU_START_USER_INFO:
|
||||
ath12k_dp_mon_hal_rx_parse_user_info(tlv_data, userid, ppdu_info);
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -683,6 +683,14 @@ struct hal_rx_resp_req_info {
|
|||
#define HAL_RX_MPDU_ERR_MPDU_LEN BIT(6)
|
||||
#define HAL_RX_MPDU_ERR_UNENCRYPTED_FRAME BIT(7)
|
||||
|
||||
#define HAL_RX_PHY_CMN_USER_INFO0_GI GENMASK(17, 16)
|
||||
|
||||
struct hal_phyrx_common_user_info {
|
||||
__le32 rsvd[2];
|
||||
__le32 info0;
|
||||
__le32 rsvd1;
|
||||
} __packed;
|
||||
|
||||
#define HAL_RX_EHT_SIG_NDP_CMN_INFO0_SPATIAL_REUSE GENMASK(3, 0)
|
||||
#define HAL_RX_EHT_SIG_NDP_CMN_INFO0_GI_LTF GENMASK(5, 4)
|
||||
#define HAL_RX_EHT_SIG_NDP_CMN_INFO0_NUM_LTF_SYM GENMASK(8, 6)
|
||||
|
|
|
|||
Loading…
Reference in New Issue