| /* SPDX-License-Identifier: BSD-3-Clause-Clear */ |
| /* |
| * Copyright (c) 2018-2021 The Linux Foundation. All rights reserved. |
| * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved. |
| */ |
| |
| #ifndef DEBUG_HTT_STATS_H |
| #define DEBUG_HTT_STATS_H |
| |
| #define ATH12K_HTT_STATS_BUF_SIZE (1024 * 512) |
| #define ATH12K_HTT_STATS_COOKIE_LSB GENMASK_ULL(31, 0) |
| #define ATH12K_HTT_STATS_COOKIE_MSB GENMASK_ULL(63, 32) |
| #define ATH12K_HTT_STATS_MAGIC_VALUE 0xF0F0F0F0 |
| #define ATH12K_HTT_STATS_SUBTYPE_MAX 16 |
| #define ATH12K_HTT_MAX_STRING_LEN 256 |
| |
| #define ATH12K_HTT_STATS_RESET_BITMAP32_OFFSET(_idx) ((_idx) & 0x1f) |
| #define ATH12K_HTT_STATS_RESET_BITMAP64_OFFSET(_idx) ((_idx) & 0x3f) |
| #define ATH12K_HTT_STATS_RESET_BITMAP32_BIT(_idx) (1 << \ |
| ATH12K_HTT_STATS_RESET_BITMAP32_OFFSET(_idx)) |
| #define ATH12K_HTT_STATS_RESET_BITMAP64_BIT(_idx) (1 << \ |
| ATH12K_HTT_STATS_RESET_BITMAP64_OFFSET(_idx)) |
| |
| void ath12k_debugfs_htt_stats_register(struct ath12k *ar); |
| |
| #ifdef CONFIG_ATH12K_DEBUGFS |
| void ath12k_debugfs_htt_ext_stats_handler(struct ath12k_base *ab, |
| struct sk_buff *skb); |
| #else /* CONFIG_ATH12K_DEBUGFS */ |
| static inline void ath12k_debugfs_htt_ext_stats_handler(struct ath12k_base *ab, |
| struct sk_buff *skb) |
| { |
| } |
| #endif |
| |
| /** |
| * DOC: target -> host extended statistics upload |
| * |
| * The following field definitions describe the format of the HTT |
| * target to host stats upload confirmation message. |
| * The message contains a cookie echoed from the HTT host->target stats |
| * upload request, which identifies which request the confirmation is |
| * for, and a single stats can span over multiple HTT stats indication |
| * due to the HTT message size limitation so every HTT ext stats |
| * indication will have tag-length-value stats information elements. |
| * The tag-length header for each HTT stats IND message also includes a |
| * status field, to indicate whether the request for the stat type in |
| * question was fully met, partially met, unable to be met, or invalid |
| * (if the stat type in question is disabled in the target). |
| * A Done bit 1's indicate the end of the of stats info elements. |
| * |
| * |
| * |31 16|15 12|11|10 8|7 5|4 0| |
| * |--------------------------------------------------------------| |
| * | reserved | msg type | |
| * |--------------------------------------------------------------| |
| * | cookie LSBs | |
| * |--------------------------------------------------------------| |
| * | cookie MSBs | |
| * |--------------------------------------------------------------| |
| * | stats entry length | rsvd | D| S | stat type | |
| * |--------------------------------------------------------------| |
| * | type-specific stats info | |
| * | (see debugfs_htt_stats.h) | |
| * |--------------------------------------------------------------| |
| * Header fields: |
| * - MSG_TYPE |
| * Bits 7:0 |
| * Purpose: Identifies this is a extended statistics upload confirmation |
| * message. |
| * Value: 0x1c |
| * - COOKIE_LSBS |
| * Bits 31:0 |
| * Purpose: Provide a mechanism to match a target->host stats confirmation |
| * message with its preceding host->target stats request message. |
| * Value: MSBs of the opaque cookie specified by the host-side requestor |
| * - COOKIE_MSBS |
| * Bits 31:0 |
| * Purpose: Provide a mechanism to match a target->host stats confirmation |
| * message with its preceding host->target stats request message. |
| * Value: MSBs of the opaque cookie specified by the host-side requestor |
| * |
| * Stats Information Element tag-length header fields: |
| * - STAT_TYPE |
| * Bits 7:0 |
| * Purpose: identifies the type of statistics info held in the |
| * following information element |
| * Value: ath12k_dbg_htt_ext_stats_type |
| * - STATUS |
| * Bits 10:8 |
| * Purpose: indicate whether the requested stats are present |
| * Value: |
| * 0 -> The requested stats have been delivered in full |
| * 1 -> The requested stats have been delivered in part |
| * 2 -> The requested stats could not be delivered (error case) |
| * 3 -> The requested stat type is either not recognized (invalid) |
| * - DONE |
| * Bits 11 |
| * Purpose: |
| * Indicates the completion of the stats entry, this will be the last |
| * stats conf HTT segment for the requested stats type. |
| * Value: |
| * 0 -> the stats retrieval is ongoing |
| * 1 -> the stats retrieval is complete |
| * - LENGTH |
| * Bits 31:16 |
| * Purpose: indicate the stats information size |
| * Value: This field specifies the number of bytes of stats information |
| * that follows the element tag-length header. |
| * It is expected but not required that this length is a multiple of |
| * 4 bytes. |
| */ |
| |
| #define ATH12K_HTT_T2H_EXT_STATS_INFO1_DONE BIT(11) |
| #define ATH12K_HTT_T2H_EXT_STATS_INFO1_LENGTH GENMASK(31, 16) |
| |
| struct ath12k_htt_extd_stats_msg { |
| __le32 info0; |
| __le64 cookie; |
| __le32 info1; |
| u8 data[]; |
| } __packed; |
| |
| /* htt_dbg_ext_stats_type */ |
| enum ath12k_dbg_htt_ext_stats_type { |
| ATH12K_DBG_HTT_EXT_STATS_RESET = 0, |
| ATH12K_DBG_HTT_EXT_STATS_PDEV_TX = 1, |
| ATH12K_DBG_HTT_EXT_STATS_PDEV_TX_SCHED = 4, |
| ATH12K_DBG_HTT_EXT_STATS_PDEV_ERROR = 5, |
| ATH12K_DBG_HTT_EXT_STATS_PDEV_TQM = 6, |
| ATH12K_DBG_HTT_EXT_STATS_TX_DE_INFO = 8, |
| |
| /* keep this last */ |
| ATH12K_DBG_HTT_NUM_EXT_STATS, |
| }; |
| |
| enum ath12k_dbg_htt_tlv_tag { |
| HTT_STATS_TX_PDEV_CMN_TAG = 0, |
| HTT_STATS_TX_PDEV_UNDERRUN_TAG = 1, |
| HTT_STATS_TX_PDEV_SIFS_TAG = 2, |
| HTT_STATS_TX_PDEV_FLUSH_TAG = 3, |
| HTT_STATS_TX_TQM_GEN_MPDU_TAG = 11, |
| HTT_STATS_TX_TQM_LIST_MPDU_TAG = 12, |
| HTT_STATS_TX_TQM_LIST_MPDU_CNT_TAG = 13, |
| HTT_STATS_TX_TQM_CMN_TAG = 14, |
| HTT_STATS_TX_TQM_PDEV_TAG = 15, |
| HTT_STATS_TX_DE_EAPOL_PACKETS_TAG = 17, |
| HTT_STATS_TX_DE_CLASSIFY_FAILED_TAG = 18, |
| HTT_STATS_TX_DE_CLASSIFY_STATS_TAG = 19, |
| HTT_STATS_TX_DE_CLASSIFY_STATUS_TAG = 20, |
| HTT_STATS_TX_DE_ENQUEUE_PACKETS_TAG = 21, |
| HTT_STATS_TX_DE_ENQUEUE_DISCARD_TAG = 22, |
| HTT_STATS_TX_DE_CMN_TAG = 23, |
| HTT_STATS_TX_PDEV_SCHEDULER_TXQ_STATS_TAG = 36, |
| HTT_STATS_TX_SCHED_CMN_TAG = 37, |
| HTT_STATS_SCHED_TXQ_CMD_POSTED_TAG = 39, |
| HTT_STATS_TX_TQM_ERROR_STATS_TAG = 43, |
| HTT_STATS_SCHED_TXQ_CMD_REAPED_TAG = 44, |
| HTT_STATS_HW_INTR_MISC_TAG = 54, |
| HTT_STATS_HW_PDEV_ERRS_TAG = 56, |
| HTT_STATS_TX_DE_COMPL_STATS_TAG = 65, |
| HTT_STATS_WHAL_TX_TAG = 66, |
| HTT_STATS_TX_PDEV_SIFS_HIST_TAG = 67, |
| HTT_STATS_SCHED_TXQ_SCHED_ORDER_SU_TAG = 86, |
| HTT_STATS_SCHED_TXQ_SCHED_INELIGIBILITY_TAG = 87, |
| HTT_STATS_HW_WAR_TAG = 89, |
| HTT_STATS_SCHED_TXQ_SUPERCYCLE_TRIGGER_TAG = 100, |
| HTT_STATS_PDEV_CTRL_PATH_TX_STATS_TAG = 102, |
| HTT_STATS_MU_PPDU_DIST_TAG = 129, |
| |
| HTT_STATS_MAX_TAG, |
| }; |
| |
| #define ATH12K_HTT_STATS_MAC_ID GENMASK(7, 0) |
| |
| #define ATH12K_HTT_TX_PDEV_MAX_SIFS_BURST_STATS 9 |
| #define ATH12K_HTT_TX_PDEV_MAX_FLUSH_REASON_STATS 150 |
| |
| /* MU MIMO distribution stats is a 2-dimensional array |
| * with dimension one denoting stats for nr4[0] or nr8[1] |
| */ |
| #define ATH12K_HTT_STATS_NUM_NR_BINS 2 |
| #define ATH12K_HTT_STATS_MAX_NUM_MU_PPDU_PER_BURST 10 |
| #define ATH12K_HTT_TX_PDEV_MAX_SIFS_BURST_HIST_STATS 10 |
| #define ATH12K_HTT_STATS_MAX_NUM_SCHED_STATUS 9 |
| #define ATH12K_HTT_STATS_NUM_SCHED_STATUS_WORDS \ |
| (ATH12K_HTT_STATS_NUM_NR_BINS * ATH12K_HTT_STATS_MAX_NUM_SCHED_STATUS) |
| #define ATH12K_HTT_STATS_MU_PPDU_PER_BURST_WORDS \ |
| (ATH12K_HTT_STATS_NUM_NR_BINS * ATH12K_HTT_STATS_MAX_NUM_MU_PPDU_PER_BURST) |
| |
| enum ath12k_htt_tx_pdev_underrun_enum { |
| HTT_STATS_TX_PDEV_NO_DATA_UNDERRUN = 0, |
| HTT_STATS_TX_PDEV_DATA_UNDERRUN_BETWEEN_MPDU = 1, |
| HTT_STATS_TX_PDEV_DATA_UNDERRUN_WITHIN_MPDU = 2, |
| HTT_TX_PDEV_MAX_URRN_STATS = 3, |
| }; |
| |
| enum ath12k_htt_stats_reset_cfg_param_alloc_pos { |
| ATH12K_HTT_STATS_RESET_PARAM_CFG_32_BYTES = 1, |
| ATH12K_HTT_STATS_RESET_PARAM_CFG_64_BYTES, |
| ATH12K_HTT_STATS_RESET_PARAM_CFG_128_BYTES, |
| }; |
| |
| struct debug_htt_stats_req { |
| bool done; |
| bool override_cfg_param; |
| u8 pdev_id; |
| enum ath12k_dbg_htt_ext_stats_type type; |
| u32 cfg_param[4]; |
| u8 peer_addr[ETH_ALEN]; |
| struct completion htt_stats_rcvd; |
| u32 buf_len; |
| u8 buf[]; |
| }; |
| |
| struct ath12k_htt_tx_pdev_stats_cmn_tlv { |
| __le32 mac_id__word; |
| __le32 hw_queued; |
| __le32 hw_reaped; |
| __le32 underrun; |
| __le32 hw_paused; |
| __le32 hw_flush; |
| __le32 hw_filt; |
| __le32 tx_abort; |
| __le32 mpdu_requed; |
| __le32 tx_xretry; |
| __le32 data_rc; |
| __le32 mpdu_dropped_xretry; |
| __le32 illgl_rate_phy_err; |
| __le32 cont_xretry; |
| __le32 tx_timeout; |
| __le32 pdev_resets; |
| __le32 phy_underrun; |
| __le32 txop_ovf; |
| __le32 seq_posted; |
| __le32 seq_failed_queueing; |
| __le32 seq_completed; |
| __le32 seq_restarted; |
| __le32 mu_seq_posted; |
| __le32 seq_switch_hw_paused; |
| __le32 next_seq_posted_dsr; |
| __le32 seq_posted_isr; |
| __le32 seq_ctrl_cached; |
| __le32 mpdu_count_tqm; |
| __le32 msdu_count_tqm; |
| __le32 mpdu_removed_tqm; |
| __le32 msdu_removed_tqm; |
| __le32 mpdus_sw_flush; |
| __le32 mpdus_hw_filter; |
| __le32 mpdus_truncated; |
| __le32 mpdus_ack_failed; |
| __le32 mpdus_expired; |
| __le32 mpdus_seq_hw_retry; |
| __le32 ack_tlv_proc; |
| __le32 coex_abort_mpdu_cnt_valid; |
| __le32 coex_abort_mpdu_cnt; |
| __le32 num_total_ppdus_tried_ota; |
| __le32 num_data_ppdus_tried_ota; |
| __le32 local_ctrl_mgmt_enqued; |
| __le32 local_ctrl_mgmt_freed; |
| __le32 local_data_enqued; |
| __le32 local_data_freed; |
| __le32 mpdu_tried; |
| __le32 isr_wait_seq_posted; |
| |
| __le32 tx_active_dur_us_low; |
| __le32 tx_active_dur_us_high; |
| __le32 remove_mpdus_max_retries; |
| __le32 comp_delivered; |
| __le32 ppdu_ok; |
| __le32 self_triggers; |
| __le32 tx_time_dur_data; |
| __le32 seq_qdepth_repost_stop; |
| __le32 mu_seq_min_msdu_repost_stop; |
| __le32 seq_min_msdu_repost_stop; |
| __le32 seq_txop_repost_stop; |
| __le32 next_seq_cancel; |
| __le32 fes_offsets_err_cnt; |
| __le32 num_mu_peer_blacklisted; |
| __le32 mu_ofdma_seq_posted; |
| __le32 ul_mumimo_seq_posted; |
| __le32 ul_ofdma_seq_posted; |
| |
| __le32 thermal_suspend_cnt; |
| __le32 dfs_suspend_cnt; |
| __le32 tx_abort_suspend_cnt; |
| __le32 tgt_specific_opaque_txq_suspend_info; |
| __le32 last_suspend_reason; |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_urrn_tlv { |
| DECLARE_FLEX_ARRAY(__le32, urrn_stats); |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_flush_tlv { |
| DECLARE_FLEX_ARRAY(__le32, flush_errs); |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_phy_err_tlv { |
| DECLARE_FLEX_ARRAY(__le32, phy_errs); |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_sifs_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sifs_status); |
| } __packed; |
| |
| struct ath12k_htt_pdev_ctrl_path_tx_stats_tlv { |
| __le32 fw_tx_mgmt_subtype[ATH12K_HTT_STATS_SUBTYPE_MAX]; |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_sifs_hist_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sifs_hist_status); |
| } __packed; |
| |
| enum ath12k_htt_stats_hw_mode { |
| ATH12K_HTT_STATS_HWMODE_AC = 0, |
| ATH12K_HTT_STATS_HWMODE_AX = 1, |
| ATH12K_HTT_STATS_HWMODE_BE = 2, |
| }; |
| |
| struct ath12k_htt_tx_pdev_mu_ppdu_dist_stats_tlv { |
| __le32 hw_mode; |
| __le32 num_seq_term_status[ATH12K_HTT_STATS_NUM_SCHED_STATUS_WORDS]; |
| __le32 num_ppdu_cmpl_per_burst[ATH12K_HTT_STATS_MU_PPDU_PER_BURST_WORDS]; |
| __le32 num_seq_posted[ATH12K_HTT_STATS_NUM_NR_BINS]; |
| __le32 num_ppdu_posted_per_burst[ATH12K_HTT_STATS_MU_PPDU_PER_BURST_WORDS]; |
| } __packed; |
| |
| #define ATH12K_HTT_TX_PDEV_STATS_SCHED_PER_TXQ_MAC_ID GENMASK(7, 0) |
| #define ATH12K_HTT_TX_PDEV_STATS_SCHED_PER_TXQ_ID GENMASK(15, 8) |
| |
| #define ATH12K_HTT_TX_PDEV_NUM_SCHED_ORDER_LOG 20 |
| |
| struct ath12k_htt_stats_tx_sched_cmn_tlv { |
| __le32 mac_id__word; |
| __le32 current_timestamp; |
| } __packed; |
| |
| struct ath12k_htt_tx_pdev_stats_sched_per_txq_tlv { |
| __le32 mac_id__word; |
| __le32 sched_policy; |
| __le32 last_sched_cmd_posted_timestamp; |
| __le32 last_sched_cmd_compl_timestamp; |
| __le32 sched_2_tac_lwm_count; |
| __le32 sched_2_tac_ring_full; |
| __le32 sched_cmd_post_failure; |
| __le32 num_active_tids; |
| __le32 num_ps_schedules; |
| __le32 sched_cmds_pending; |
| __le32 num_tid_register; |
| __le32 num_tid_unregister; |
| __le32 num_qstats_queried; |
| __le32 qstats_update_pending; |
| __le32 last_qstats_query_timestamp; |
| __le32 num_tqm_cmdq_full; |
| __le32 num_de_sched_algo_trigger; |
| __le32 num_rt_sched_algo_trigger; |
| __le32 num_tqm_sched_algo_trigger; |
| __le32 notify_sched; |
| __le32 dur_based_sendn_term; |
| __le32 su_notify2_sched; |
| __le32 su_optimal_queued_msdus_sched; |
| __le32 su_delay_timeout_sched; |
| __le32 su_min_txtime_sched_delay; |
| __le32 su_no_delay; |
| __le32 num_supercycles; |
| __le32 num_subcycles_with_sort; |
| __le32 num_subcycles_no_sort; |
| } __packed; |
| |
| struct ath12k_htt_sched_txq_cmd_posted_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sched_cmd_posted); |
| } __packed; |
| |
| struct ath12k_htt_sched_txq_cmd_reaped_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sched_cmd_reaped); |
| } __packed; |
| |
| struct ath12k_htt_sched_txq_sched_order_su_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sched_order_su); |
| } __packed; |
| |
| struct ath12k_htt_sched_txq_sched_ineligibility_tlv { |
| DECLARE_FLEX_ARRAY(__le32, sched_ineligibility); |
| } __packed; |
| |
| enum ath12k_htt_sched_txq_supercycle_triggers_tlv_enum { |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_NONE = 0, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_FORCED, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_LESS_NUM_TIDQ_ENTRIES, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_LESS_NUM_ACTIVE_TIDS, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_MAX_ITR_REACHED, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_DUR_THRESHOLD_REACHED, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_TWT_TRIGGER, |
| ATH12K_HTT_SCHED_SUPERCYCLE_TRIGGER_MAX, |
| }; |
| |
| struct ath12k_htt_sched_txq_supercycle_triggers_tlv { |
| DECLARE_FLEX_ARRAY(__le32, supercycle_triggers); |
| } __packed; |
| |
| struct ath12k_htt_hw_stats_pdev_errs_tlv { |
| __le32 mac_id__word; |
| __le32 tx_abort; |
| __le32 tx_abort_fail_count; |
| __le32 rx_abort; |
| __le32 rx_abort_fail_count; |
| __le32 warm_reset; |
| __le32 cold_reset; |
| __le32 tx_flush; |
| __le32 tx_glb_reset; |
| __le32 tx_txq_reset; |
| __le32 rx_timeout_reset; |
| __le32 mac_cold_reset_restore_cal; |
| __le32 mac_cold_reset; |
| __le32 mac_warm_reset; |
| __le32 mac_only_reset; |
| __le32 phy_warm_reset; |
| __le32 phy_warm_reset_ucode_trig; |
| __le32 mac_warm_reset_restore_cal; |
| __le32 mac_sfm_reset; |
| __le32 phy_warm_reset_m3_ssr; |
| __le32 phy_warm_reset_reason_phy_m3; |
| __le32 phy_warm_reset_reason_tx_hw_stuck; |
| __le32 phy_warm_reset_reason_num_rx_frame_stuck; |
| __le32 phy_warm_reset_reason_wal_rx_rec_rx_busy; |
| __le32 phy_warm_reset_reason_wal_rx_rec_mac_hng; |
| __le32 phy_warm_reset_reason_mac_conv_phy_reset; |
| __le32 wal_rx_recovery_rst_mac_hang_cnt; |
| __le32 wal_rx_recovery_rst_known_sig_cnt; |
| __le32 wal_rx_recovery_rst_no_rx_cnt; |
| __le32 wal_rx_recovery_rst_no_rx_consec_cnt; |
| __le32 wal_rx_recovery_rst_rx_busy_cnt; |
| __le32 wal_rx_recovery_rst_phy_mac_hang_cnt; |
| __le32 rx_flush_cnt; |
| __le32 phy_warm_reset_reason_tx_exp_cca_stuck; |
| __le32 phy_warm_reset_reason_tx_consec_flsh_war; |
| __le32 phy_warm_reset_reason_tx_hwsch_reset_war; |
| __le32 phy_warm_reset_reason_hwsch_cca_wdog_war; |
| __le32 fw_rx_rings_reset; |
| __le32 rx_dest_drain_rx_descs_leak_prevented; |
| __le32 rx_dest_drain_rx_descs_saved_cnt; |
| __le32 rx_dest_drain_rxdma2reo_leak_detected; |
| __le32 rx_dest_drain_rxdma2fw_leak_detected; |
| __le32 rx_dest_drain_rxdma2wbm_leak_detected; |
| __le32 rx_dest_drain_rxdma1_2sw_leak_detected; |
| __le32 rx_dest_drain_rx_drain_ok_mac_idle; |
| __le32 rx_dest_drain_ok_mac_not_idle; |
| __le32 rx_dest_drain_prerequisite_invld; |
| __le32 rx_dest_drain_skip_non_lmac_reset; |
| __le32 rx_dest_drain_hw_fifo_notempty_post_wait; |
| } __packed; |
| |
| #define ATH12K_HTT_STATS_MAX_HW_INTR_NAME_LEN 8 |
| struct ath12k_htt_hw_stats_intr_misc_tlv { |
| u8 hw_intr_name[ATH12K_HTT_STATS_MAX_HW_INTR_NAME_LEN]; |
| __le32 mask; |
| __le32 count; |
| } __packed; |
| |
| struct ath12k_htt_hw_stats_whal_tx_tlv { |
| __le32 mac_id__word; |
| __le32 last_unpause_ppdu_id; |
| __le32 hwsch_unpause_wait_tqm_write; |
| __le32 hwsch_dummy_tlv_skipped; |
| __le32 hwsch_misaligned_offset_received; |
| __le32 hwsch_reset_count; |
| __le32 hwsch_dev_reset_war; |
| __le32 hwsch_delayed_pause; |
| __le32 hwsch_long_delayed_pause; |
| __le32 sch_rx_ppdu_no_response; |
| __le32 sch_selfgen_response; |
| __le32 sch_rx_sifs_resp_trigger; |
| } __packed; |
| |
| struct ath12k_htt_hw_war_stats_tlv { |
| __le32 mac_id__word; |
| DECLARE_FLEX_ARRAY(__le32, hw_wars); |
| } __packed; |
| |
| struct ath12k_htt_tx_tqm_cmn_stats_tlv { |
| __le32 mac_id__word; |
| __le32 max_cmdq_id; |
| __le32 list_mpdu_cnt_hist_intvl; |
| __le32 add_msdu; |
| __le32 q_empty; |
| __le32 q_not_empty; |
| __le32 drop_notification; |
| __le32 desc_threshold; |
| __le32 hwsch_tqm_invalid_status; |
| __le32 missed_tqm_gen_mpdus; |
| __le32 tqm_active_tids; |
| __le32 tqm_inactive_tids; |
| __le32 tqm_active_msduq_flows; |
| __le32 msduq_timestamp_updates; |
| __le32 msduq_updates_mpdu_head_info_cmd; |
| __le32 msduq_updates_emp_to_nonemp_status; |
| __le32 get_mpdu_head_info_cmds_by_query; |
| __le32 get_mpdu_head_info_cmds_by_tac; |
| __le32 gen_mpdu_cmds_by_query; |
| __le32 high_prio_q_not_empty; |
| } __packed; |
| |
| struct ath12k_htt_tx_tqm_error_stats_tlv { |
| __le32 q_empty_failure; |
| __le32 q_not_empty_failure; |
| __le32 add_msdu_failure; |
| __le32 tqm_cache_ctl_err; |
| __le32 tqm_soft_reset; |
| __le32 tqm_reset_num_in_use_link_descs; |
| __le32 tqm_reset_num_lost_link_descs; |
| __le32 tqm_reset_num_lost_host_tx_buf_cnt; |
| __le32 tqm_reset_num_in_use_internal_tqm; |
| __le32 tqm_reset_num_in_use_idle_link_rng; |
| __le32 tqm_reset_time_to_tqm_hang_delta_ms; |
| __le32 tqm_reset_recovery_time_ms; |
| __le32 tqm_reset_num_peers_hdl; |
| __le32 tqm_reset_cumm_dirty_hw_mpduq_cnt; |
| __le32 tqm_reset_cumm_dirty_hw_msduq_proc; |
| __le32 tqm_reset_flush_cache_cmd_su_cnt; |
| __le32 tqm_reset_flush_cache_cmd_other_cnt; |
| __le32 tqm_reset_flush_cache_cmd_trig_type; |
| __le32 tqm_reset_flush_cache_cmd_trig_cfg; |
| __le32 tqm_reset_flush_cmd_skp_status_null; |
| } __packed; |
| |
| struct ath12k_htt_tx_tqm_gen_mpdu_stats_tlv { |
| DECLARE_FLEX_ARRAY(__le32, gen_mpdu_end_reason); |
| } __packed; |
| |
| #define ATH12K_HTT_TX_TQM_MAX_LIST_MPDU_END_REASON 16 |
| #define ATH12K_HTT_TX_TQM_MAX_LIST_MPDU_CNT_HISTOGRAM_BINS 16 |
| |
| struct ath12k_htt_tx_tqm_list_mpdu_stats_tlv { |
| DECLARE_FLEX_ARRAY(__le32, list_mpdu_end_reason); |
| } __packed; |
| |
| struct ath12k_htt_tx_tqm_list_mpdu_cnt_tlv { |
| DECLARE_FLEX_ARRAY(__le32, list_mpdu_cnt_hist); |
| } __packed; |
| |
| struct ath12k_htt_tx_tqm_pdev_stats_tlv { |
| __le32 msdu_count; |
| __le32 mpdu_count; |
| __le32 remove_msdu; |
| __le32 remove_mpdu; |
| __le32 remove_msdu_ttl; |
| __le32 send_bar; |
| __le32 bar_sync; |
| __le32 notify_mpdu; |
| __le32 sync_cmd; |
| __le32 write_cmd; |
| __le32 hwsch_trigger; |
| __le32 ack_tlv_proc; |
| __le32 gen_mpdu_cmd; |
| __le32 gen_list_cmd; |
| __le32 remove_mpdu_cmd; |
| __le32 remove_mpdu_tried_cmd; |
| __le32 mpdu_queue_stats_cmd; |
| __le32 mpdu_head_info_cmd; |
| __le32 msdu_flow_stats_cmd; |
| __le32 remove_msdu_cmd; |
| __le32 remove_msdu_ttl_cmd; |
| __le32 flush_cache_cmd; |
| __le32 update_mpduq_cmd; |
| __le32 enqueue; |
| __le32 enqueue_notify; |
| __le32 notify_mpdu_at_head; |
| __le32 notify_mpdu_state_valid; |
| __le32 sched_udp_notify1; |
| __le32 sched_udp_notify2; |
| __le32 sched_nonudp_notify1; |
| __le32 sched_nonudp_notify2; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_cmn_stats_tlv { |
| __le32 mac_id__word; |
| __le32 tcl2fw_entry_count; |
| __le32 not_to_fw; |
| __le32 invalid_pdev_vdev_peer; |
| __le32 tcl_res_invalid_addrx; |
| __le32 wbm2fw_entry_count; |
| __le32 invalid_pdev; |
| __le32 tcl_res_addrx_timeout; |
| __le32 invalid_vdev; |
| __le32 invalid_tcl_exp_frame_desc; |
| __le32 vdev_id_mismatch_cnt; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_eapol_packets_stats_tlv { |
| __le32 m1_packets; |
| __le32 m2_packets; |
| __le32 m3_packets; |
| __le32 m4_packets; |
| __le32 g1_packets; |
| __le32 g2_packets; |
| __le32 rc4_packets; |
| __le32 eap_packets; |
| __le32 eapol_start_packets; |
| __le32 eapol_logoff_packets; |
| __le32 eapol_encap_asf_packets; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_classify_stats_tlv { |
| __le32 arp_packets; |
| __le32 igmp_packets; |
| __le32 dhcp_packets; |
| __le32 host_inspected; |
| __le32 htt_included; |
| __le32 htt_valid_mcs; |
| __le32 htt_valid_nss; |
| __le32 htt_valid_preamble_type; |
| __le32 htt_valid_chainmask; |
| __le32 htt_valid_guard_interval; |
| __le32 htt_valid_retries; |
| __le32 htt_valid_bw_info; |
| __le32 htt_valid_power; |
| __le32 htt_valid_key_flags; |
| __le32 htt_valid_no_encryption; |
| __le32 fse_entry_count; |
| __le32 fse_priority_be; |
| __le32 fse_priority_high; |
| __le32 fse_priority_low; |
| __le32 fse_traffic_ptrn_be; |
| __le32 fse_traffic_ptrn_over_sub; |
| __le32 fse_traffic_ptrn_bursty; |
| __le32 fse_traffic_ptrn_interactive; |
| __le32 fse_traffic_ptrn_periodic; |
| __le32 fse_hwqueue_alloc; |
| __le32 fse_hwqueue_created; |
| __le32 fse_hwqueue_send_to_host; |
| __le32 mcast_entry; |
| __le32 bcast_entry; |
| __le32 htt_update_peer_cache; |
| __le32 htt_learning_frame; |
| __le32 fse_invalid_peer; |
| __le32 mec_notify; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_classify_failed_stats_tlv { |
| __le32 ap_bss_peer_not_found; |
| __le32 ap_bcast_mcast_no_peer; |
| __le32 sta_delete_in_progress; |
| __le32 ibss_no_bss_peer; |
| __le32 invalid_vdev_type; |
| __le32 invalid_ast_peer_entry; |
| __le32 peer_entry_invalid; |
| __le32 ethertype_not_ip; |
| __le32 eapol_lookup_failed; |
| __le32 qpeer_not_allow_data; |
| __le32 fse_tid_override; |
| __le32 ipv6_jumbogram_zero_length; |
| __le32 qos_to_non_qos_in_prog; |
| __le32 ap_bcast_mcast_eapol; |
| __le32 unicast_on_ap_bss_peer; |
| __le32 ap_vdev_invalid; |
| __le32 incomplete_llc; |
| __le32 eapol_duplicate_m3; |
| __le32 eapol_duplicate_m4; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_classify_status_stats_tlv { |
| __le32 eok; |
| __le32 classify_done; |
| __le32 lookup_failed; |
| __le32 send_host_dhcp; |
| __le32 send_host_mcast; |
| __le32 send_host_unknown_dest; |
| __le32 send_host; |
| __le32 status_invalid; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_enqueue_packets_stats_tlv { |
| __le32 enqueued_pkts; |
| __le32 to_tqm; |
| __le32 to_tqm_bypass; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_enqueue_discard_stats_tlv { |
| __le32 discarded_pkts; |
| __le32 local_frames; |
| __le32 is_ext_msdu; |
| } __packed; |
| |
| struct ath12k_htt_tx_de_compl_stats_tlv { |
| __le32 tcl_dummy_frame; |
| __le32 tqm_dummy_frame; |
| __le32 tqm_notify_frame; |
| __le32 fw2wbm_enq; |
| __le32 tqm_bypass_frame; |
| } __packed; |
| |
| #endif |