qcacmn: New TLV sequence supporting for UL OFDMA in monitor mode
According to the ucode and mac team, the new TB-PPDU (UL OFDMA Dat frame) from any other users using the TLV's fields below: * PHYRX_RSSI_LEGACY (has a reception type field that is set to UL-MU) * PHYRX_RSSI_HT * PHYRX_COMMON_USER_INFO (has a reception type field that is set to UL-MU) * PHYRX_USER_INFO (has more detailed modulation info) * PHYRX_USER_INFO (Could be more than one) ... * PHYRX_DATA * PHYRX_DATA (Could be more than one) CRs-Fixed: 2329959 Change-Id: Ib5fa1734a5525d2b2d1db8756166f259be30b9c0
此提交包含在:
@@ -1056,6 +1056,7 @@ hal_rx_status_get_tlv_info_generic(void *rx_tlv_hdr, void *ppduinfo,
|
||||
}
|
||||
case WIFIPHYRX_RSSI_LEGACY_E:
|
||||
{
|
||||
uint8_t reception_type;
|
||||
uint8_t *rssi_info_tlv = (uint8_t *)rx_tlv +
|
||||
HAL_RX_OFFSET(UNIFIED_PHYRX_RSSI_LEGACY_3,
|
||||
RECEIVE_RSSI_INFO_PRE_RSSI_INFO_DETAILS);
|
||||
@@ -1065,6 +1066,22 @@ hal_rx_status_get_tlv_info_generic(void *rx_tlv_hdr, void *ppduinfo,
|
||||
ppdu_info->rx_status.bw = hal->ops->hal_rx_get_tlv(rx_tlv);
|
||||
ppdu_info->rx_status.he_re = 0;
|
||||
|
||||
reception_type = HAL_RX_GET(rx_tlv,
|
||||
PHYRX_RSSI_LEGACY_0,
|
||||
RECEPTION_TYPE);
|
||||
switch (reception_type) {
|
||||
case QDF_RECEPTION_TYPE_ULOFMDA:
|
||||
ppdu_info->rx_status.ulofdma_flag = 1;
|
||||
ppdu_info->rx_status.he_data1 =
|
||||
QDF_MON_STATUS_HE_TRIG_FORMAT_TYPE;
|
||||
break;
|
||||
case QDF_RECEPTION_TYPE_ULMIMO:
|
||||
ppdu_info->rx_status.he_data1 =
|
||||
QDF_MON_STATUS_HE_MU_FORMAT_TYPE;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
value = HAL_RX_GET(rssi_info_tlv,
|
||||
RECEIVE_RSSI_INFO_0, RSSI_PRI20_CHAIN0);
|
||||
QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
|
||||
|
新增問題並參考
封鎖使用者