diff options
| author | spuligil <spuligil@codeaurora.org> | 2019-02-06 18:01:08 -0800 |
|---|---|---|
| committer | spuligil <spuligil@codeaurora.org> | 2019-02-06 18:01:08 -0800 |
| commit | d8432efd659005bb160f74e0673f7a2f9e3f2e68 (patch) | |
| tree | 716800570bc7bdaf899b37144bbcf24e17809e97 | |
| parent | 47089fd20697a5de06785e4369359e54e86d6bf8 (diff) | |
fw-api: CL 6467501 - update fw common interface files
HTT stats: add per_chain_rssi_pkt_type field to rx_peer_rate_stats_tlv
Change-Id: I85748482706d30250dbae304c5d265c6e4f31b6e
CRs-Fixed: 2262693
| -rw-r--r-- | fw/htt_stats.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/fw/htt_stats.h b/fw/htt_stats.h index 0d3995904d14..d2c8b03a8d5d 100644 --- a/fw/htt_stats.h +++ b/fw/htt_stats.h @@ -1135,6 +1135,15 @@ typedef struct _htt_rx_peer_rate_stats_tlv { A_UINT32 rx_ulofdma_mpdu_ok; /* mpdu level */ A_UINT32 rx_ulofdma_mpdu_fail; /* mpdu level */ A_INT8 rx_ul_fd_rssi[HTT_RX_PEER_STATS_NUM_SPATIAL_STREAMS];/* dBm unit */ + /* per_chain_rssi_pkt_type: + * This field shows what type of rx frame the per-chain RSSI was computed + * on, by recording the frame type and sub-type as bit-fields within this + * field: + * BIT [3 : 0] :- IEEE80211_FC0_TYPE + * BIT [7 : 4] :- IEEE80211_FC0_SUBTYPE + * BIT [31 : 8] :- Reserved + */ + A_UINT32 per_chain_rssi_pkt_type; } htt_rx_peer_rate_stats_tlv; typedef enum { @@ -2960,6 +2969,15 @@ typedef struct { */ A_INT32 rx_pilot_evm_dB_mean[HTT_RX_PDEV_STATS_NUM_SPATIAL_STREAMS]; A_INT8 rx_ul_fd_rssi[HTT_RX_PDEV_STATS_NUM_SPATIAL_STREAMS][HTT_RX_PDEV_MAX_OFDMA_NUM_USER]; /* dBm units */ + /* per_chain_rssi_pkt_type: + * This field shows what type of rx frame the per-chain RSSI was computed + * on, by recording the frame type and sub-type as bit-fields within this + * field: + * BIT [3 : 0] :- IEEE80211_FC0_TYPE + * BIT [7 : 4] :- IEEE80211_FC0_SUBTYPE + * BIT [31 : 8] :- Reserved + */ + A_UINT32 per_chain_rssi_pkt_type; } htt_rx_pdev_rate_stats_tlv; |
