1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */ 2 /* 3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved. 4 */ 5 6 #ifndef _ATH11K_DEBUGFS_H_ 7 #define _ATH11K_DEBUGFS_H_ 8 9 #include "hal_tx.h" 10 11 #define ATH11K_TX_POWER_MAX_VAL 70 12 #define ATH11K_TX_POWER_MIN_VAL 0 13 14 /* htt_dbg_ext_stats_type */ 15 enum ath11k_dbg_htt_ext_stats_type { 16 ATH11K_DBG_HTT_EXT_STATS_RESET = 0, 17 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX = 1, 18 ATH11K_DBG_HTT_EXT_STATS_PDEV_RX = 2, 19 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX_HWQ = 3, 20 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX_SCHED = 4, 21 ATH11K_DBG_HTT_EXT_STATS_PDEV_ERROR = 5, 22 ATH11K_DBG_HTT_EXT_STATS_PDEV_TQM = 6, 23 ATH11K_DBG_HTT_EXT_STATS_TQM_CMDQ = 7, 24 ATH11K_DBG_HTT_EXT_STATS_TX_DE_INFO = 8, 25 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX_RATE = 9, 26 ATH11K_DBG_HTT_EXT_STATS_PDEV_RX_RATE = 10, 27 ATH11K_DBG_HTT_EXT_STATS_PEER_INFO = 11, 28 ATH11K_DBG_HTT_EXT_STATS_TX_SELFGEN_INFO = 12, 29 ATH11K_DBG_HTT_EXT_STATS_TX_MU_HWQ = 13, 30 ATH11K_DBG_HTT_EXT_STATS_RING_IF_INFO = 14, 31 ATH11K_DBG_HTT_EXT_STATS_SRNG_INFO = 15, 32 ATH11K_DBG_HTT_EXT_STATS_SFM_INFO = 16, 33 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX_MU = 17, 34 ATH11K_DBG_HTT_EXT_STATS_ACTIVE_PEERS_LIST = 18, 35 ATH11K_DBG_HTT_EXT_STATS_PDEV_CCA_STATS = 19, 36 ATH11K_DBG_HTT_EXT_STATS_TWT_SESSIONS = 20, 37 ATH11K_DBG_HTT_EXT_STATS_REO_RESOURCE_STATS = 21, 38 ATH11K_DBG_HTT_EXT_STATS_TX_SOUNDING_INFO = 22, 39 ATH11K_DBG_HTT_EXT_STATS_PDEV_OBSS_PD_STATS = 23, 40 ATH11K_DBG_HTT_EXT_STATS_RING_BACKPRESSURE_STATS = 24, 41 ATH11K_DBG_HTT_EXT_STATS_PEER_CTRL_PATH_TXRX_STATS = 29, 42 ATH11K_DBG_HTT_EXT_STATS_PDEV_TX_RATE_TXBF_STATS = 31, 43 ATH11K_DBG_HTT_EXT_STATS_TXBF_OFDMA = 32, 44 ATH11K_DBG_HTT_EXT_PHY_COUNTERS_AND_PHY_STATS = 37, 45 46 /* keep this last */ 47 ATH11K_DBG_HTT_NUM_EXT_STATS, 48 }; 49 50 struct debug_htt_stats_req { 51 bool done; 52 u8 pdev_id; 53 u8 type; 54 u8 peer_addr[ETH_ALEN]; 55 struct completion cmpln; 56 u32 buf_len; 57 u8 buf[]; 58 }; 59 60 struct ath_pktlog_hdr { 61 u16 flags; 62 u16 missed_cnt; 63 u16 log_type; 64 u16 size; 65 u32 timestamp; 66 u32 type_specific_data; 67 u8 payload[]; 68 }; 69 70 #define ATH11K_HTT_PEER_STATS_RESET BIT(16) 71 72 #define ATH11K_HTT_STATS_BUF_SIZE (1024 * 512) 73 #define ATH11K_FW_STATS_BUF_SIZE (1024 * 1024) 74 75 enum ath11k_pktlog_filter { 76 ATH11K_PKTLOG_RX = 0x000000001, 77 ATH11K_PKTLOG_TX = 0x000000002, 78 ATH11K_PKTLOG_RCFIND = 0x000000004, 79 ATH11K_PKTLOG_RCUPDATE = 0x000000008, 80 ATH11K_PKTLOG_EVENT_SMART_ANT = 0x000000020, 81 ATH11K_PKTLOG_EVENT_SW = 0x000000040, 82 ATH11K_PKTLOG_ANY = 0x00000006f, 83 }; 84 85 enum ath11k_pktlog_mode { 86 ATH11K_PKTLOG_MODE_LITE = 1, 87 ATH11K_PKTLOG_MODE_FULL = 2, 88 }; 89 90 enum ath11k_pktlog_enum { 91 ATH11K_PKTLOG_TYPE_TX_CTRL = 1, 92 ATH11K_PKTLOG_TYPE_TX_STAT = 2, 93 ATH11K_PKTLOG_TYPE_TX_MSDU_ID = 3, 94 ATH11K_PKTLOG_TYPE_RX_STAT = 5, 95 ATH11K_PKTLOG_TYPE_RC_FIND = 6, 96 ATH11K_PKTLOG_TYPE_RC_UPDATE = 7, 97 ATH11K_PKTLOG_TYPE_TX_VIRT_ADDR = 8, 98 ATH11K_PKTLOG_TYPE_RX_CBF = 10, 99 ATH11K_PKTLOG_TYPE_RX_STATBUF = 22, 100 ATH11K_PKTLOG_TYPE_PPDU_STATS = 23, 101 ATH11K_PKTLOG_TYPE_LITE_RX = 24, 102 }; 103 104 enum ath11k_dbg_aggr_mode { 105 ATH11K_DBG_AGGR_MODE_AUTO, 106 ATH11K_DBG_AGGR_MODE_MANUAL, 107 ATH11K_DBG_AGGR_MODE_MAX, 108 }; 109 110 #ifdef CONFIG_ATH11K_DEBUGFS 111 int ath11k_debugfs_soc_create(struct ath11k_base *ab); 112 void ath11k_debugfs_soc_destroy(struct ath11k_base *ab); 113 int ath11k_debugfs_pdev_create(struct ath11k_base *ab); 114 void ath11k_debugfs_pdev_destroy(struct ath11k_base *ab); 115 int ath11k_debugfs_register(struct ath11k *ar); 116 void ath11k_debugfs_unregister(struct ath11k *ar); 117 void ath11k_debugfs_fw_stats_process(struct ath11k_base *ab, struct sk_buff *skb); 118 119 void ath11k_debugfs_fw_stats_init(struct ath11k *ar); 120 121 static inline bool ath11k_debugfs_is_pktlog_lite_mode_enabled(struct ath11k *ar) 122 { 123 return (ar->debug.pktlog_mode == ATH11K_PKTLOG_MODE_LITE); 124 } 125 126 static inline bool ath11k_debugfs_is_pktlog_rx_stats_enabled(struct ath11k *ar) 127 { 128 return (!ar->debug.pktlog_peer_valid && ar->debug.pktlog_mode); 129 } 130 131 static inline bool ath11k_debugfs_is_pktlog_peer_valid(struct ath11k *ar, u8 *addr) 132 { 133 return (ar->debug.pktlog_peer_valid && ar->debug.pktlog_mode && 134 ether_addr_equal(addr, ar->debug.pktlog_peer_addr)); 135 } 136 137 static inline int ath11k_debugfs_is_extd_tx_stats_enabled(struct ath11k *ar) 138 { 139 return ar->debug.extd_tx_stats; 140 } 141 142 static inline int ath11k_debugfs_is_extd_rx_stats_enabled(struct ath11k *ar) 143 { 144 return ar->debug.extd_rx_stats; 145 } 146 147 static inline int ath11k_debugfs_rx_filter(struct ath11k *ar) 148 { 149 return ar->debug.rx_filter; 150 } 151 152 #else 153 static inline int ath11k_debugfs_soc_create(struct ath11k_base *ab) 154 { 155 return 0; 156 } 157 158 static inline void ath11k_debugfs_soc_destroy(struct ath11k_base *ab) 159 { 160 } 161 162 static inline int ath11k_debugfs_pdev_create(struct ath11k_base *ab) 163 { 164 return 0; 165 } 166 167 static inline void ath11k_debugfs_pdev_destroy(struct ath11k_base *ab) 168 { 169 } 170 171 static inline int ath11k_debugfs_register(struct ath11k *ar) 172 { 173 return 0; 174 } 175 176 static inline void ath11k_debugfs_unregister(struct ath11k *ar) 177 { 178 } 179 180 static inline void ath11k_debugfs_fw_stats_process(struct ath11k_base *ab, 181 struct sk_buff *skb) 182 { 183 } 184 185 static inline void ath11k_debugfs_fw_stats_init(struct ath11k *ar) 186 { 187 } 188 189 static inline int ath11k_debugfs_is_extd_tx_stats_enabled(struct ath11k *ar) 190 { 191 return 0; 192 } 193 194 static inline int ath11k_debugfs_is_extd_rx_stats_enabled(struct ath11k *ar) 195 { 196 return 0; 197 } 198 199 static inline bool ath11k_debugfs_is_pktlog_lite_mode_enabled(struct ath11k *ar) 200 { 201 return false; 202 } 203 204 static inline bool ath11k_debugfs_is_pktlog_rx_stats_enabled(struct ath11k *ar) 205 { 206 return false; 207 } 208 209 static inline bool ath11k_debugfs_is_pktlog_peer_valid(struct ath11k *ar, u8 *addr) 210 { 211 return false; 212 } 213 214 static inline int ath11k_debugfs_rx_filter(struct ath11k *ar) 215 { 216 return 0; 217 } 218 219 #endif /* CONFIG_MAC80211_DEBUGFS*/ 220 221 #endif /* _ATH11K_DEBUGFS_H_ */ 222