fw-api: CL 20167573 - update fw common interface files
HTT stats: add peer_ax_ofdma_stats TLV Change-Id: I9e700f063acbe4553423984618597b5c5f81ac1c CRs-Fixed: 2262693
This commit is contained in:
1
fw/htt.h
1
fw/htt.h
@@ -766,6 +766,7 @@ typedef enum {
|
|||||||
HTT_STATS_TX_PDEV_AP_EDCA_PARAMS_STATS_TAG = 171, /* htt_tx_pdev_ap_edca_params_stats_tlv_v */
|
HTT_STATS_TX_PDEV_AP_EDCA_PARAMS_STATS_TAG = 171, /* htt_tx_pdev_ap_edca_params_stats_tlv_v */
|
||||||
HTT_STATS_TXBF_OFDMA_AX_STEER_MPDU_STATS_TAG = 172, /* htt_txbf_ofdma_ax_steer_mpdu_stats_tlv */
|
HTT_STATS_TXBF_OFDMA_AX_STEER_MPDU_STATS_TAG = 172, /* htt_txbf_ofdma_ax_steer_mpdu_stats_tlv */
|
||||||
HTT_STATS_TXBF_OFDMA_BE_STEER_MPDU_STATS_TAG = 173, /* htt_txbf_ofdma_be_steer_mpdu_stats_tlv */
|
HTT_STATS_TXBF_OFDMA_BE_STEER_MPDU_STATS_TAG = 173, /* htt_txbf_ofdma_be_steer_mpdu_stats_tlv */
|
||||||
|
HTT_STATS_PEER_AX_OFDMA_STATS_TAG = 174, /* htt_peer_ax_ofdma_stats_tlv */
|
||||||
|
|
||||||
|
|
||||||
HTT_STATS_MAX_TAG,
|
HTT_STATS_MAX_TAG,
|
||||||
|
@@ -147,6 +147,7 @@ enum htt_dbg_ext_stats_type {
|
|||||||
* 5 bit htt_rx_tid_stats_tlv
|
* 5 bit htt_rx_tid_stats_tlv
|
||||||
* 6 bit htt_msdu_flow_stats_tlv
|
* 6 bit htt_msdu_flow_stats_tlv
|
||||||
* 7 bit htt_peer_sched_stats_tlv
|
* 7 bit htt_peer_sched_stats_tlv
|
||||||
|
* 8 bit htt_peer_ax_ofdma_stats_tlv
|
||||||
* - config_param2: [Bit31 : Bit0] mac_addr31to0
|
* - config_param2: [Bit31 : Bit0] mac_addr31to0
|
||||||
* - config_param3: [Bit15 : Bit0] mac_addr47to32
|
* - config_param3: [Bit15 : Bit0] mac_addr47to32
|
||||||
* [Bit 16] If this bit is set, reset per peer stats
|
* [Bit 16] If this bit is set, reset per peer stats
|
||||||
@@ -1804,16 +1805,17 @@ typedef enum {
|
|||||||
} htt_peer_stats_req_mode_t;
|
} htt_peer_stats_req_mode_t;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
HTT_PEER_STATS_CMN_TLV = 0,
|
HTT_PEER_STATS_CMN_TLV = 0,
|
||||||
HTT_PEER_DETAILS_TLV = 1,
|
HTT_PEER_DETAILS_TLV = 1,
|
||||||
HTT_TX_PEER_RATE_STATS_TLV = 2,
|
HTT_TX_PEER_RATE_STATS_TLV = 2,
|
||||||
HTT_RX_PEER_RATE_STATS_TLV = 3,
|
HTT_RX_PEER_RATE_STATS_TLV = 3,
|
||||||
HTT_TX_TID_STATS_TLV = 4,
|
HTT_TX_TID_STATS_TLV = 4,
|
||||||
HTT_RX_TID_STATS_TLV = 5,
|
HTT_RX_TID_STATS_TLV = 5,
|
||||||
HTT_MSDU_FLOW_STATS_TLV = 6,
|
HTT_MSDU_FLOW_STATS_TLV = 6,
|
||||||
HTT_PEER_SCHED_STATS_TLV = 7,
|
HTT_PEER_SCHED_STATS_TLV = 7,
|
||||||
|
HTT_PEER_AX_OFDMA_STATS_TLV = 8,
|
||||||
|
|
||||||
HTT_PEER_STATS_MAX_TLV = 31,
|
HTT_PEER_STATS_MAX_TLV = 31,
|
||||||
} htt_peer_stats_tlv_enum;
|
} htt_peer_stats_tlv_enum;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@@ -1832,6 +1834,28 @@ typedef struct {
|
|||||||
A_UINT32 peer_curr_rate_kbps;
|
A_UINT32 peer_curr_rate_kbps;
|
||||||
} htt_peer_sched_stats_tlv;
|
} htt_peer_sched_stats_tlv;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
htt_tlv_hdr_t tlv_hdr;
|
||||||
|
A_UINT32 peer_id;
|
||||||
|
A_UINT32 ax_basic_trig_count;
|
||||||
|
A_UINT32 ax_basic_trig_err;
|
||||||
|
A_UINT32 ax_bsr_trig_count;
|
||||||
|
A_UINT32 ax_bsr_trig_err;
|
||||||
|
A_UINT32 ax_mu_bar_trig_count;
|
||||||
|
A_UINT32 ax_mu_bar_trig_err;
|
||||||
|
A_UINT32 ax_basic_trig_with_per;
|
||||||
|
A_UINT32 ax_bsr_trig_with_per;
|
||||||
|
A_UINT32 ax_mu_bar_trig_with_per;
|
||||||
|
/* is_airtime_large_for_dl_ofdma, is_airtime_large_for_ul_ofdma
|
||||||
|
* These fields contain 2 counters each. The first element in each
|
||||||
|
* array counts how many times the airtime is short enough to use
|
||||||
|
* OFDMA, and the second element in each array counts how many times the
|
||||||
|
* airtime is too large to select OFDMA for the PPDUs involving the peer.
|
||||||
|
*/
|
||||||
|
A_UINT32 is_airtime_large_for_dl_ofdma[2];
|
||||||
|
A_UINT32 is_airtime_large_for_ul_ofdma[2];
|
||||||
|
} htt_peer_ax_ofdma_stats_tlv;
|
||||||
|
|
||||||
/* config_param0 */
|
/* config_param0 */
|
||||||
|
|
||||||
#define HTT_DBG_EXT_PEER_CTRL_PATH_TXRX_STATS_IS_MAC_ADDR_M 0x00000001
|
#define HTT_DBG_EXT_PEER_CTRL_PATH_TXRX_STATS_IS_MAC_ADDR_M 0x00000001
|
||||||
@@ -1902,6 +1926,7 @@ typedef struct {
|
|||||||
* - HTT_STATS_PEER_MSDU_FLOWQ_TAG (multiple)
|
* - HTT_STATS_PEER_MSDU_FLOWQ_TAG (multiple)
|
||||||
* - HTT_STATS_TX_TID_DETAILS_V1_TAG (multiple)
|
* - HTT_STATS_TX_TID_DETAILS_V1_TAG (multiple)
|
||||||
* - HTT_STATS_PEER_SCHED_STATS_TAG
|
* - HTT_STATS_PEER_SCHED_STATS_TAG
|
||||||
|
* - HTT_STATS_PEER_AX_OFDMA_STATS_TAG
|
||||||
*/
|
*/
|
||||||
/* NOTE:
|
/* NOTE:
|
||||||
* This structure is for documentation, and cannot be safely used directly.
|
* This structure is for documentation, and cannot be safely used directly.
|
||||||
@@ -1919,6 +1944,7 @@ typedef struct _htt_peer_stats {
|
|||||||
htt_msdu_flow_stats_tlv msdu_flowq[1];
|
htt_msdu_flow_stats_tlv msdu_flowq[1];
|
||||||
htt_tx_tid_stats_v1_tlv tx_tid_stats_v1[1];
|
htt_tx_tid_stats_v1_tlv tx_tid_stats_v1[1];
|
||||||
htt_peer_sched_stats_tlv peer_sched_stats;
|
htt_peer_sched_stats_tlv peer_sched_stats;
|
||||||
|
htt_peer_ax_ofdma_stats_tlv ax_ofdma_stats;
|
||||||
} htt_peer_stats_t;
|
} htt_peer_stats_t;
|
||||||
|
|
||||||
/* =========== ACTIVE PEER LIST ========== */
|
/* =========== ACTIVE PEER LIST ========== */
|
||||||
|
Reference in New Issue
Block a user