blob: d6e3fa4299a4fa5e4f85e49502a900920d48f718 [file] [log] [blame]
Sujith394cf0a2009-02-09 13:26:54 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Sujith394cf0a2009-02-09 13:26:54 +05303 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef DEBUG_H
18#define DEBUG_H
19
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070020#include "hw.h"
Felix Fietkau545750d2009-11-23 22:21:01 +010021#include "rc.h"
Zefir Kurtisi29942bc2011-12-14 20:16:34 -080022#include "dfs_debug.h"
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070023
Sujithfec247c2009-07-27 12:08:16 +053024struct ath_txq;
25struct ath_buf;
Simon Wunderliche93d0832013-01-08 14:48:58 +010026struct fft_sample_tlv;
Sujithfec247c2009-07-27 12:08:16 +053027
Felix Fietkaua830df02009-11-23 22:33:27 +010028#ifdef CONFIG_ATH9K_DEBUGFS
Sujithfec247c2009-07-27 12:08:16 +053029#define TX_STAT_INC(q, c) sc->debug.stats.txstats[q].c++
Felix Fietkau030d6292011-10-07 02:28:13 +020030#define RESET_STAT_INC(sc, type) sc->debug.stats.reset[type]++
Sujith Manoharan3fbaf4c2013-08-01 11:53:17 +053031#define ANT_STAT_INC(i, c) sc->debug.stats.ant_stats[i].c++
Sujith Manoharane3d52912013-08-01 20:57:06 +053032#define ANT_LNA_INC(i, c) sc->debug.stats.ant_stats[i].lna_recv_cnt[c]++;
Sujithfec247c2009-07-27 12:08:16 +053033#else
34#define TX_STAT_INC(q, c) do { } while (0)
Felix Fietkau030d6292011-10-07 02:28:13 +020035#define RESET_STAT_INC(sc, type) do { } while (0)
Sujith Manoharan3fbaf4c2013-08-01 11:53:17 +053036#define ANT_STAT_INC(i, c) do { } while (0)
37#define ANT_LNA_INC(i, c) do { } while (0)
Sujithfec247c2009-07-27 12:08:16 +053038#endif
39
Rajkumar Manoharan124b9792012-07-17 17:16:42 +053040enum ath_reset_type {
41 RESET_TYPE_BB_HANG,
42 RESET_TYPE_BB_WATCHDOG,
43 RESET_TYPE_FATAL_INT,
44 RESET_TYPE_TX_ERROR,
45 RESET_TYPE_TX_HANG,
46 RESET_TYPE_PLL_HANG,
47 RESET_TYPE_MAC_HANG,
48 RESET_TYPE_BEACON_STUCK,
Rajkumar Manoharanb88083b2012-11-20 18:30:00 +053049 RESET_TYPE_MCI,
Rajkumar Manoharan124b9792012-07-17 17:16:42 +053050 __RESET_TYPE_MAX
51};
52
Felix Fietkaua830df02009-11-23 22:33:27 +010053#ifdef CONFIG_ATH9K_DEBUGFS
Sujith394cf0a2009-02-09 13:26:54 +053054
55/**
56 * struct ath_interrupt_stats - Contains statistics about interrupts
57 * @total: Total no. of interrupts generated so far
58 * @rxok: RX with no errors
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040059 * @rxlp: RX with low priority RX
60 * @rxhp: RX with high priority, uapsd only
Sujith394cf0a2009-02-09 13:26:54 +053061 * @rxeol: RX with no more RXDESC available
62 * @rxorn: RX FIFO overrun
63 * @txok: TX completed at the requested rate
64 * @txurn: TX FIFO underrun
65 * @mib: MIB regs reaching its threshold
66 * @rxphyerr: RX with phy errors
67 * @rx_keycache_miss: RX with key cache misses
68 * @swba: Software Beacon Alert
69 * @bmiss: Beacon Miss
70 * @bnr: Beacon Not Ready
71 * @cst: Carrier Sense TImeout
72 * @gtt: Global TX Timeout
73 * @tim: RX beacon TIM occurrence
74 * @cabend: RX End of CAB traffic
75 * @dtimsync: DTIM sync lossage
76 * @dtim: RX Beacon with DTIM
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040077 * @bb_watchdog: Baseband watchdog
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053078 * @tsfoor: TSF out of range, indicates that the corrected TSF received
79 * from a beacon differs from the PCU's internal TSF by more than a
80 * (programmable) threshold
Ben Greear462e58f2012-04-12 10:04:00 -070081 * @local_timeout: Internal bus timeout.
Mohammed Shafi Shajakhanc9e6e982012-09-07 15:54:13 +053082 * @mci: MCI interrupt, specific to MCI based BTCOEX chipsets
83 * @gen_timer: Generic hardware timer interrupt
Sujith394cf0a2009-02-09 13:26:54 +053084 */
85struct ath_interrupt_stats {
86 u32 total;
87 u32 rxok;
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040088 u32 rxlp;
89 u32 rxhp;
Sujith394cf0a2009-02-09 13:26:54 +053090 u32 rxeol;
91 u32 rxorn;
92 u32 txok;
93 u32 txeol;
94 u32 txurn;
95 u32 mib;
96 u32 rxphyerr;
97 u32 rx_keycache_miss;
98 u32 swba;
99 u32 bmiss;
100 u32 bnr;
101 u32 cst;
102 u32 gtt;
103 u32 tim;
104 u32 cabend;
105 u32 dtimsync;
106 u32 dtim;
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400107 u32 bb_watchdog;
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +0530108 u32 tsfoor;
Sujith Manoharan97ba5152012-06-04 16:27:41 +0530109 u32 mci;
Mohammed Shafi Shajakhanc9e6e982012-09-07 15:54:13 +0530110 u32 gen_timer;
Ben Greear462e58f2012-04-12 10:04:00 -0700111
112 /* Sync-cause stats */
113 u32 sync_cause_all;
114 u32 sync_rtc_irq;
115 u32 sync_mac_irq;
116 u32 eeprom_illegal_access;
117 u32 apb_timeout;
118 u32 pci_mode_conflict;
119 u32 host1_fatal;
120 u32 host1_perr;
121 u32 trcv_fifo_perr;
122 u32 radm_cpl_ep;
123 u32 radm_cpl_dllp_abort;
124 u32 radm_cpl_tlp_abort;
125 u32 radm_cpl_ecrc_err;
126 u32 radm_cpl_timeout;
127 u32 local_timeout;
128 u32 pm_access;
129 u32 mac_awake;
130 u32 mac_asleep;
131 u32 mac_sleep_access;
Sujith394cf0a2009-02-09 13:26:54 +0530132};
133
Ben Greear462e58f2012-04-12 10:04:00 -0700134
Sujithfec247c2009-07-27 12:08:16 +0530135/**
136 * struct ath_tx_stats - Statistics about TX
Ben Greear99c15bf2010-10-01 12:26:30 -0700137 * @tx_pkts_all: No. of total frames transmitted, including ones that
138 may have had errors.
139 * @tx_bytes_all: No. of total bytes transmitted, including ones that
140 may have had errors.
Sujithfec247c2009-07-27 12:08:16 +0530141 * @queued: Total MPDUs (non-aggr) queued
142 * @completed: Total MPDUs (non-aggr) completed
143 * @a_aggr: Total no. of aggregates queued
Ben Greearbda8add2011-01-09 23:11:48 -0800144 * @a_queued_hw: Total AMPDUs queued to hardware
145 * @a_queued_sw: Total AMPDUs queued to software queues
Sujithfec247c2009-07-27 12:08:16 +0530146 * @a_completed: Total AMPDUs completed
147 * @a_retries: No. of AMPDUs retried (SW)
148 * @a_xretries: No. of AMPDUs dropped due to xretries
Ben Greear4d900382013-03-04 15:31:16 -0800149 * @txerr_filtered: No. of frames with TXERR_FILT flag set.
Sujithfec247c2009-07-27 12:08:16 +0530150 * @fifo_underrun: FIFO underrun occurrences
151 Valid only for:
152 - non-aggregate condition.
153 - first packet of aggregate.
154 * @xtxop: No. of frames filtered because of TXOP limit
155 * @timer_exp: Transmit timer expiry
156 * @desc_cfg_err: Descriptor configuration errors
157 * @data_urn: TX data underrun errors
158 * @delim_urn: TX delimiter underrun errors
Ben Greear2dac4fb2011-01-09 23:11:45 -0800159 * @puttxbuf: Number of times hardware was given txbuf to write.
160 * @txstart: Number of times hardware was told to start tx.
161 * @txprocdesc: Number of times tx descriptor was processed
Ben Greeara5a0bca2012-04-03 09:16:55 -0700162 * @txfailed: Out-of-memory or other errors in xmit path.
Sujithfec247c2009-07-27 12:08:16 +0530163 */
164struct ath_tx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700165 u32 tx_pkts_all;
166 u32 tx_bytes_all;
Sujithfec247c2009-07-27 12:08:16 +0530167 u32 queued;
168 u32 completed;
Felix Fietkau5a6f78a2011-05-31 21:21:41 +0200169 u32 xretries;
Sujithfec247c2009-07-27 12:08:16 +0530170 u32 a_aggr;
Ben Greearbda8add2011-01-09 23:11:48 -0800171 u32 a_queued_hw;
172 u32 a_queued_sw;
Sujithfec247c2009-07-27 12:08:16 +0530173 u32 a_completed;
174 u32 a_retries;
175 u32 a_xretries;
Ben Greear4d900382013-03-04 15:31:16 -0800176 u32 txerr_filtered;
Sujithfec247c2009-07-27 12:08:16 +0530177 u32 fifo_underrun;
178 u32 xtxop;
179 u32 timer_exp;
180 u32 desc_cfg_err;
181 u32 data_underrun;
182 u32 delim_underrun;
Ben Greear2dac4fb2011-01-09 23:11:45 -0800183 u32 puttxbuf;
184 u32 txstart;
185 u32 txprocdesc;
Ben Greeara5a0bca2012-04-03 09:16:55 -0700186 u32 txfailed;
Sujithfec247c2009-07-27 12:08:16 +0530187};
188
Sujith Manoharan78ef7312012-11-21 18:13:11 +0530189/*
190 * Various utility macros to print TX/Queue counters.
191 */
192#define PR_QNUM(_n) sc->tx.txq_map[_n]->axq_qnum
193#define TXSTATS sc->debug.stats.txstats
194#define PR(str, elem) \
195 do { \
Zefir Kurtisi5e88ba62013-09-05 14:11:57 +0200196 len += scnprintf(buf + len, size - len, \
197 "%s%13u%11u%10u%10u\n", str, \
198 TXSTATS[PR_QNUM(IEEE80211_AC_BE)].elem,\
199 TXSTATS[PR_QNUM(IEEE80211_AC_BK)].elem,\
200 TXSTATS[PR_QNUM(IEEE80211_AC_VI)].elem,\
201 TXSTATS[PR_QNUM(IEEE80211_AC_VO)].elem); \
Sujith Manoharan78ef7312012-11-21 18:13:11 +0530202 } while(0)
203
Ben Greear15072182012-04-03 09:18:59 -0700204#define RX_STAT_INC(c) (sc->debug.stats.rxstats.c++)
205
Sujith1395d3f2010-01-08 10:36:11 +0530206/**
207 * struct ath_rx_stats - RX Statistics
Ben Greear99c15bf2010-10-01 12:26:30 -0700208 * @rx_pkts_all: No. of total frames received, including ones that
209 may have had errors.
210 * @rx_bytes_all: No. of total bytes received, including ones that
211 may have had errors.
Sujith1395d3f2010-01-08 10:36:11 +0530212 * @crc_err: No. of frames with incorrect CRC value
213 * @decrypt_crc_err: No. of frames whose CRC check failed after
214 decryption process completed
215 * @phy_err: No. of frames whose reception failed because the PHY
216 encountered an error
217 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
218 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
219 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
220 * @decrypt_busy_err: Decryption interruptions counter
221 * @phy_err_stats: Individual PHY error statistics
Ben Greear15072182012-04-03 09:18:59 -0700222 * @rx_len_err: No. of frames discarded due to bad length.
223 * @rx_oom_err: No. of frames dropped due to OOM issues.
224 * @rx_rate_err: No. of frames dropped due to rate errors.
225 * @rx_too_many_frags_err: Frames dropped due to too-many-frags received.
Ben Greear15072182012-04-03 09:18:59 -0700226 * @rx_beacons: No. of beacons received.
227 * @rx_frags: No. of rx-fragements received.
Simon Wunderlich9b99e662013-01-23 17:38:05 +0100228 * @rx_spectral: No of spectral packets received.
Sujith1395d3f2010-01-08 10:36:11 +0530229 */
230struct ath_rx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700231 u32 rx_pkts_all;
232 u32 rx_bytes_all;
Sujith1395d3f2010-01-08 10:36:11 +0530233 u32 crc_err;
234 u32 decrypt_crc_err;
235 u32 phy_err;
236 u32 mic_err;
237 u32 pre_delim_crc_err;
238 u32 post_delim_crc_err;
239 u32 decrypt_busy_err;
240 u32 phy_err_stats[ATH9K_PHYERR_MAX];
Ben Greear15072182012-04-03 09:18:59 -0700241 u32 rx_len_err;
242 u32 rx_oom_err;
243 u32 rx_rate_err;
244 u32 rx_too_many_frags_err;
Ben Greear15072182012-04-03 09:18:59 -0700245 u32 rx_beacons;
246 u32 rx_frags;
Simon Wunderlich9b99e662013-01-23 17:38:05 +0100247 u32 rx_spectral;
Sujith1395d3f2010-01-08 10:36:11 +0530248};
249
Sujith Manoharan3fbaf4c2013-08-01 11:53:17 +0530250#define ANT_MAIN 0
251#define ANT_ALT 1
252
253struct ath_antenna_stats {
254 u32 recv_cnt;
Sujith Manoharane3d52912013-08-01 20:57:06 +0530255 u32 rssi_avg;
256 u32 lna_recv_cnt[4];
257 u32 lna_attempt_cnt[4];
Sujith Manoharan3fbaf4c2013-08-01 11:53:17 +0530258};
259
Sujith394cf0a2009-02-09 13:26:54 +0530260struct ath_stats {
261 struct ath_interrupt_stats istats;
Sujith Manoharan4f7dc952012-12-07 20:25:30 +0530262 struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
Sujith1395d3f2010-01-08 10:36:11 +0530263 struct ath_rx_stats rxstats;
Zefir Kurtisi29942bc2011-12-14 20:16:34 -0800264 struct ath_dfs_stats dfs_stats;
Sujith Manoharan3fbaf4c2013-08-01 11:53:17 +0530265 struct ath_antenna_stats ant_stats[2];
Felix Fietkau030d6292011-10-07 02:28:13 +0200266 u32 reset[__RESET_TYPE_MAX];
Sujith394cf0a2009-02-09 13:26:54 +0530267};
268
269struct ath9k_debug {
Sujith394cf0a2009-02-09 13:26:54 +0530270 struct dentry *debugfs_phy;
Felix Fietkau9bff0bc2010-05-11 17:23:02 +0200271 u32 regidx;
Sujith394cf0a2009-02-09 13:26:54 +0530272 struct ath_stats stats;
273};
274
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700275int ath9k_init_debug(struct ath_hw *ah);
Sujith Manoharanaf690092013-05-10 18:41:06 +0530276void ath9k_deinit_debug(struct ath_softc *sc);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700277
Sujith394cf0a2009-02-09 13:26:54 +0530278void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
Felix Fietkau066dae92010-11-07 14:59:39 +0100279void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkau55797b12011-09-14 21:24:16 +0200280 struct ath_tx_status *ts, struct ath_txq *txq,
281 unsigned int flags);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700282void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
Sujith Manoharanc175db82012-11-28 15:08:52 +0530283int ath9k_get_et_sset_count(struct ieee80211_hw *hw,
284 struct ieee80211_vif *vif, int sset);
285void ath9k_get_et_stats(struct ieee80211_hw *hw,
286 struct ieee80211_vif *vif,
287 struct ethtool_stats *stats, u64 *data);
288void ath9k_get_et_strings(struct ieee80211_hw *hw,
289 struct ieee80211_vif *vif,
290 u32 sset, u8 *data);
Sujith Manoharana145daf2012-11-28 15:08:54 +0530291void ath9k_sta_add_debugfs(struct ieee80211_hw *hw,
292 struct ieee80211_vif *vif,
293 struct ieee80211_sta *sta,
294 struct dentry *dir);
Simon Wunderliche93d0832013-01-08 14:48:58 +0100295void ath_debug_send_fft_sample(struct ath_softc *sc,
296 struct fft_sample_tlv *fft_sample);
Sujith Manoharane3d52912013-08-01 20:57:06 +0530297void ath9k_debug_stat_ant(struct ath_softc *sc,
298 struct ath_hw_antcomb_conf *div_ant_conf,
299 int main_rssi_avg, int alt_rssi_avg);
Sujith394cf0a2009-02-09 13:26:54 +0530300#else
301
Ben Greear15072182012-04-03 09:18:59 -0700302#define RX_STAT_INC(c) /* NOP */
303
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700304static inline int ath9k_init_debug(struct ath_hw *ah)
Sujith394cf0a2009-02-09 13:26:54 +0530305{
306 return 0;
307}
308
Sujith Manoharanaf690092013-05-10 18:41:06 +0530309static inline void ath9k_deinit_debug(struct ath_softc *sc)
310{
311}
Sujith394cf0a2009-02-09 13:26:54 +0530312static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
313 enum ath9k_int status)
314{
315}
Sujithfec247c2009-07-27 12:08:16 +0530316static inline void ath_debug_stat_tx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700317 struct ath_buf *bf,
Felix Fietkau3bf63e52011-01-28 17:52:49 +0100318 struct ath_tx_status *ts,
Felix Fietkau55797b12011-09-14 21:24:16 +0200319 struct ath_txq *txq,
320 unsigned int flags)
Sujithfec247c2009-07-27 12:08:16 +0530321{
322}
Sujith1395d3f2010-01-08 10:36:11 +0530323static inline void ath_debug_stat_rx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700324 struct ath_rx_status *rs)
Sujith1395d3f2010-01-08 10:36:11 +0530325{
326}
Sujith Manoharane3d52912013-08-01 20:57:06 +0530327static inline void ath9k_debug_stat_ant(struct ath_softc *sc,
328 struct ath_hw_antcomb_conf *div_ant_conf,
329 int main_rssi_avg, int alt_rssi_avg)
330{
331
332}
Sujith1395d3f2010-01-08 10:36:11 +0530333
Felix Fietkaua830df02009-11-23 22:33:27 +0100334#endif /* CONFIG_ATH9K_DEBUGFS */
Sujith394cf0a2009-02-09 13:26:54 +0530335
Sujith394cf0a2009-02-09 13:26:54 +0530336#endif /* DEBUG_H */