blob: 794a7ec83a246cb85619aba6dfdb717c5955381c [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]++
Sujithfec247c2009-07-27 12:08:16 +053031#else
32#define TX_STAT_INC(q, c) do { } while (0)
Felix Fietkau030d6292011-10-07 02:28:13 +020033#define RESET_STAT_INC(sc, type) do { } while (0)
Sujithfec247c2009-07-27 12:08:16 +053034#endif
35
Rajkumar Manoharan124b9792012-07-17 17:16:42 +053036enum ath_reset_type {
37 RESET_TYPE_BB_HANG,
38 RESET_TYPE_BB_WATCHDOG,
39 RESET_TYPE_FATAL_INT,
40 RESET_TYPE_TX_ERROR,
41 RESET_TYPE_TX_HANG,
42 RESET_TYPE_PLL_HANG,
43 RESET_TYPE_MAC_HANG,
44 RESET_TYPE_BEACON_STUCK,
Rajkumar Manoharanb88083b2012-11-20 18:30:00 +053045 RESET_TYPE_MCI,
Rajkumar Manoharan124b9792012-07-17 17:16:42 +053046 __RESET_TYPE_MAX
47};
48
Felix Fietkaua830df02009-11-23 22:33:27 +010049#ifdef CONFIG_ATH9K_DEBUGFS
Sujith394cf0a2009-02-09 13:26:54 +053050
51/**
52 * struct ath_interrupt_stats - Contains statistics about interrupts
53 * @total: Total no. of interrupts generated so far
54 * @rxok: RX with no errors
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040055 * @rxlp: RX with low priority RX
56 * @rxhp: RX with high priority, uapsd only
Sujith394cf0a2009-02-09 13:26:54 +053057 * @rxeol: RX with no more RXDESC available
58 * @rxorn: RX FIFO overrun
59 * @txok: TX completed at the requested rate
60 * @txurn: TX FIFO underrun
61 * @mib: MIB regs reaching its threshold
62 * @rxphyerr: RX with phy errors
63 * @rx_keycache_miss: RX with key cache misses
64 * @swba: Software Beacon Alert
65 * @bmiss: Beacon Miss
66 * @bnr: Beacon Not Ready
67 * @cst: Carrier Sense TImeout
68 * @gtt: Global TX Timeout
69 * @tim: RX beacon TIM occurrence
70 * @cabend: RX End of CAB traffic
71 * @dtimsync: DTIM sync lossage
72 * @dtim: RX Beacon with DTIM
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040073 * @bb_watchdog: Baseband watchdog
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053074 * @tsfoor: TSF out of range, indicates that the corrected TSF received
75 * from a beacon differs from the PCU's internal TSF by more than a
76 * (programmable) threshold
Ben Greear462e58f2012-04-12 10:04:00 -070077 * @local_timeout: Internal bus timeout.
Mohammed Shafi Shajakhanc9e6e982012-09-07 15:54:13 +053078 * @mci: MCI interrupt, specific to MCI based BTCOEX chipsets
79 * @gen_timer: Generic hardware timer interrupt
Sujith394cf0a2009-02-09 13:26:54 +053080 */
81struct ath_interrupt_stats {
82 u32 total;
83 u32 rxok;
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040084 u32 rxlp;
85 u32 rxhp;
Sujith394cf0a2009-02-09 13:26:54 +053086 u32 rxeol;
87 u32 rxorn;
88 u32 txok;
89 u32 txeol;
90 u32 txurn;
91 u32 mib;
92 u32 rxphyerr;
93 u32 rx_keycache_miss;
94 u32 swba;
95 u32 bmiss;
96 u32 bnr;
97 u32 cst;
98 u32 gtt;
99 u32 tim;
100 u32 cabend;
101 u32 dtimsync;
102 u32 dtim;
Luis R. Rodriguez08578b82010-05-13 13:33:44 -0400103 u32 bb_watchdog;
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +0530104 u32 tsfoor;
Sujith Manoharan97ba5152012-06-04 16:27:41 +0530105 u32 mci;
Mohammed Shafi Shajakhanc9e6e982012-09-07 15:54:13 +0530106 u32 gen_timer;
Ben Greear462e58f2012-04-12 10:04:00 -0700107
108 /* Sync-cause stats */
109 u32 sync_cause_all;
110 u32 sync_rtc_irq;
111 u32 sync_mac_irq;
112 u32 eeprom_illegal_access;
113 u32 apb_timeout;
114 u32 pci_mode_conflict;
115 u32 host1_fatal;
116 u32 host1_perr;
117 u32 trcv_fifo_perr;
118 u32 radm_cpl_ep;
119 u32 radm_cpl_dllp_abort;
120 u32 radm_cpl_tlp_abort;
121 u32 radm_cpl_ecrc_err;
122 u32 radm_cpl_timeout;
123 u32 local_timeout;
124 u32 pm_access;
125 u32 mac_awake;
126 u32 mac_asleep;
127 u32 mac_sleep_access;
Sujith394cf0a2009-02-09 13:26:54 +0530128};
129
Ben Greear462e58f2012-04-12 10:04:00 -0700130
Sujithfec247c2009-07-27 12:08:16 +0530131/**
132 * struct ath_tx_stats - Statistics about TX
Ben Greear99c15bf2010-10-01 12:26:30 -0700133 * @tx_pkts_all: No. of total frames transmitted, including ones that
134 may have had errors.
135 * @tx_bytes_all: No. of total bytes transmitted, including ones that
136 may have had errors.
Sujithfec247c2009-07-27 12:08:16 +0530137 * @queued: Total MPDUs (non-aggr) queued
138 * @completed: Total MPDUs (non-aggr) completed
139 * @a_aggr: Total no. of aggregates queued
Ben Greearbda8add2011-01-09 23:11:48 -0800140 * @a_queued_hw: Total AMPDUs queued to hardware
141 * @a_queued_sw: Total AMPDUs queued to software queues
Sujithfec247c2009-07-27 12:08:16 +0530142 * @a_completed: Total AMPDUs completed
143 * @a_retries: No. of AMPDUs retried (SW)
144 * @a_xretries: No. of AMPDUs dropped due to xretries
Ben Greear4d900382013-03-04 15:31:16 -0800145 * @txerr_filtered: No. of frames with TXERR_FILT flag set.
Sujithfec247c2009-07-27 12:08:16 +0530146 * @fifo_underrun: FIFO underrun occurrences
147 Valid only for:
148 - non-aggregate condition.
149 - first packet of aggregate.
150 * @xtxop: No. of frames filtered because of TXOP limit
151 * @timer_exp: Transmit timer expiry
152 * @desc_cfg_err: Descriptor configuration errors
153 * @data_urn: TX data underrun errors
154 * @delim_urn: TX delimiter underrun errors
Ben Greear2dac4fb2011-01-09 23:11:45 -0800155 * @puttxbuf: Number of times hardware was given txbuf to write.
156 * @txstart: Number of times hardware was told to start tx.
157 * @txprocdesc: Number of times tx descriptor was processed
Ben Greeara5a0bca2012-04-03 09:16:55 -0700158 * @txfailed: Out-of-memory or other errors in xmit path.
Sujithfec247c2009-07-27 12:08:16 +0530159 */
160struct ath_tx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700161 u32 tx_pkts_all;
162 u32 tx_bytes_all;
Sujithfec247c2009-07-27 12:08:16 +0530163 u32 queued;
164 u32 completed;
Felix Fietkau5a6f78a2011-05-31 21:21:41 +0200165 u32 xretries;
Sujithfec247c2009-07-27 12:08:16 +0530166 u32 a_aggr;
Ben Greearbda8add2011-01-09 23:11:48 -0800167 u32 a_queued_hw;
168 u32 a_queued_sw;
Sujithfec247c2009-07-27 12:08:16 +0530169 u32 a_completed;
170 u32 a_retries;
171 u32 a_xretries;
Ben Greear4d900382013-03-04 15:31:16 -0800172 u32 txerr_filtered;
Sujithfec247c2009-07-27 12:08:16 +0530173 u32 fifo_underrun;
174 u32 xtxop;
175 u32 timer_exp;
176 u32 desc_cfg_err;
177 u32 data_underrun;
178 u32 delim_underrun;
Ben Greear2dac4fb2011-01-09 23:11:45 -0800179 u32 puttxbuf;
180 u32 txstart;
181 u32 txprocdesc;
Ben Greeara5a0bca2012-04-03 09:16:55 -0700182 u32 txfailed;
Sujithfec247c2009-07-27 12:08:16 +0530183};
184
Sujith Manoharan78ef7312012-11-21 18:13:11 +0530185/*
186 * Various utility macros to print TX/Queue counters.
187 */
188#define PR_QNUM(_n) sc->tx.txq_map[_n]->axq_qnum
189#define TXSTATS sc->debug.stats.txstats
190#define PR(str, elem) \
191 do { \
192 len += snprintf(buf + len, size - len, \
193 "%s%13u%11u%10u%10u\n", str, \
194 TXSTATS[PR_QNUM(IEEE80211_AC_BE)].elem, \
195 TXSTATS[PR_QNUM(IEEE80211_AC_BK)].elem, \
196 TXSTATS[PR_QNUM(IEEE80211_AC_VI)].elem, \
197 TXSTATS[PR_QNUM(IEEE80211_AC_VO)].elem); \
198 } while(0)
199
Ben Greear15072182012-04-03 09:18:59 -0700200#define RX_STAT_INC(c) (sc->debug.stats.rxstats.c++)
201
Sujith1395d3f2010-01-08 10:36:11 +0530202/**
203 * struct ath_rx_stats - RX Statistics
Ben Greear99c15bf2010-10-01 12:26:30 -0700204 * @rx_pkts_all: No. of total frames received, including ones that
205 may have had errors.
206 * @rx_bytes_all: No. of total bytes received, including ones that
207 may have had errors.
Sujith1395d3f2010-01-08 10:36:11 +0530208 * @crc_err: No. of frames with incorrect CRC value
209 * @decrypt_crc_err: No. of frames whose CRC check failed after
210 decryption process completed
211 * @phy_err: No. of frames whose reception failed because the PHY
212 encountered an error
213 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
214 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
215 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
216 * @decrypt_busy_err: Decryption interruptions counter
217 * @phy_err_stats: Individual PHY error statistics
Ben Greear15072182012-04-03 09:18:59 -0700218 * @rx_len_err: No. of frames discarded due to bad length.
219 * @rx_oom_err: No. of frames dropped due to OOM issues.
220 * @rx_rate_err: No. of frames dropped due to rate errors.
221 * @rx_too_many_frags_err: Frames dropped due to too-many-frags received.
Ben Greear15072182012-04-03 09:18:59 -0700222 * @rx_beacons: No. of beacons received.
223 * @rx_frags: No. of rx-fragements received.
Simon Wunderlich9b99e662013-01-23 17:38:05 +0100224 * @rx_spectral: No of spectral packets received.
Sujith1395d3f2010-01-08 10:36:11 +0530225 */
226struct ath_rx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700227 u32 rx_pkts_all;
228 u32 rx_bytes_all;
Sujith1395d3f2010-01-08 10:36:11 +0530229 u32 crc_err;
230 u32 decrypt_crc_err;
231 u32 phy_err;
232 u32 mic_err;
233 u32 pre_delim_crc_err;
234 u32 post_delim_crc_err;
235 u32 decrypt_busy_err;
236 u32 phy_err_stats[ATH9K_PHYERR_MAX];
Ben Greear15072182012-04-03 09:18:59 -0700237 u32 rx_len_err;
238 u32 rx_oom_err;
239 u32 rx_rate_err;
240 u32 rx_too_many_frags_err;
Ben Greear15072182012-04-03 09:18:59 -0700241 u32 rx_beacons;
242 u32 rx_frags;
Simon Wunderlich9b99e662013-01-23 17:38:05 +0100243 u32 rx_spectral;
Sujith1395d3f2010-01-08 10:36:11 +0530244};
245
Sujith394cf0a2009-02-09 13:26:54 +0530246struct ath_stats {
247 struct ath_interrupt_stats istats;
Sujith Manoharan4f7dc952012-12-07 20:25:30 +0530248 struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
Sujith1395d3f2010-01-08 10:36:11 +0530249 struct ath_rx_stats rxstats;
Zefir Kurtisi29942bc2011-12-14 20:16:34 -0800250 struct ath_dfs_stats dfs_stats;
Felix Fietkau030d6292011-10-07 02:28:13 +0200251 u32 reset[__RESET_TYPE_MAX];
Sujith394cf0a2009-02-09 13:26:54 +0530252};
253
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530254#define ATH_DBG_MAX_SAMPLES 10
255struct ath_dbg_bb_mac_samp {
256 u32 dma_dbg_reg_vals[ATH9K_NUM_DMA_DEBUG_REGS];
257 u32 pcu_obs, pcu_cr, noise;
258 struct {
259 u64 jiffies;
260 int8_t rssi_ctl0;
261 int8_t rssi_ctl1;
262 int8_t rssi_ctl2;
263 int8_t rssi_ext0;
264 int8_t rssi_ext1;
265 int8_t rssi_ext2;
266 int8_t rssi;
267 bool isok;
268 u8 rts_fail_cnt;
269 u8 data_fail_cnt;
270 u8 rateindex;
271 u8 qid;
272 u8 tid;
Mohammed Shafi Shajakhan129321802011-09-21 14:22:49 +0530273 u32 ba_low;
274 u32 ba_high;
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530275 } ts[ATH_DBG_MAX_SAMPLES];
276 struct {
277 u64 jiffies;
278 int8_t rssi_ctl0;
279 int8_t rssi_ctl1;
280 int8_t rssi_ctl2;
281 int8_t rssi_ext0;
282 int8_t rssi_ext1;
283 int8_t rssi_ext2;
284 int8_t rssi;
285 bool is_mybeacon;
286 u8 antenna;
287 u8 rate;
288 } rs[ATH_DBG_MAX_SAMPLES];
289 struct ath_cycle_counters cc;
290 struct ath9k_nfcal_hist nfCalHist[NUM_NF_READINGS];
291};
292
Sujith394cf0a2009-02-09 13:26:54 +0530293struct ath9k_debug {
Sujith394cf0a2009-02-09 13:26:54 +0530294 struct dentry *debugfs_phy;
Felix Fietkau9bff0bc2010-05-11 17:23:02 +0200295 u32 regidx;
Sujith394cf0a2009-02-09 13:26:54 +0530296 struct ath_stats stats;
Felix Fietkau5baec742012-03-03 15:17:03 +0100297#ifdef CONFIG_ATH9K_MAC_DEBUG
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530298 spinlock_t samp_lock;
299 struct ath_dbg_bb_mac_samp bb_mac_samp[ATH_DBG_MAX_SAMPLES];
300 u8 sampidx;
301 u8 tsidx;
302 u8 rsidx;
Felix Fietkau5baec742012-03-03 15:17:03 +0100303#endif
Sujith394cf0a2009-02-09 13:26:54 +0530304};
305
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700306int ath9k_init_debug(struct ath_hw *ah);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700307
Sujith394cf0a2009-02-09 13:26:54 +0530308void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
Felix Fietkau066dae92010-11-07 14:59:39 +0100309void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkau55797b12011-09-14 21:24:16 +0200310 struct ath_tx_status *ts, struct ath_txq *txq,
311 unsigned int flags);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700312void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
Sujith Manoharanc175db82012-11-28 15:08:52 +0530313int ath9k_get_et_sset_count(struct ieee80211_hw *hw,
314 struct ieee80211_vif *vif, int sset);
315void ath9k_get_et_stats(struct ieee80211_hw *hw,
316 struct ieee80211_vif *vif,
317 struct ethtool_stats *stats, u64 *data);
318void ath9k_get_et_strings(struct ieee80211_hw *hw,
319 struct ieee80211_vif *vif,
320 u32 sset, u8 *data);
Sujith Manoharana145daf2012-11-28 15:08:54 +0530321void ath9k_sta_add_debugfs(struct ieee80211_hw *hw,
322 struct ieee80211_vif *vif,
323 struct ieee80211_sta *sta,
324 struct dentry *dir);
325void ath9k_sta_remove_debugfs(struct ieee80211_hw *hw,
326 struct ieee80211_vif *vif,
327 struct ieee80211_sta *sta,
328 struct dentry *dir);
Simon Wunderliche93d0832013-01-08 14:48:58 +0100329
330void ath_debug_send_fft_sample(struct ath_softc *sc,
331 struct fft_sample_tlv *fft_sample);
332
Sujith394cf0a2009-02-09 13:26:54 +0530333#else
334
Ben Greear15072182012-04-03 09:18:59 -0700335#define RX_STAT_INC(c) /* NOP */
336
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700337static inline int ath9k_init_debug(struct ath_hw *ah)
Sujith394cf0a2009-02-09 13:26:54 +0530338{
339 return 0;
340}
341
Sujith394cf0a2009-02-09 13:26:54 +0530342static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
343 enum ath9k_int status)
344{
345}
346
Sujithfec247c2009-07-27 12:08:16 +0530347static inline void ath_debug_stat_tx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700348 struct ath_buf *bf,
Felix Fietkau3bf63e52011-01-28 17:52:49 +0100349 struct ath_tx_status *ts,
Felix Fietkau55797b12011-09-14 21:24:16 +0200350 struct ath_txq *txq,
351 unsigned int flags)
Sujithfec247c2009-07-27 12:08:16 +0530352{
353}
354
Sujith1395d3f2010-01-08 10:36:11 +0530355static inline void ath_debug_stat_rx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700356 struct ath_rx_status *rs)
Sujith1395d3f2010-01-08 10:36:11 +0530357{
358}
359
Felix Fietkaua830df02009-11-23 22:33:27 +0100360#endif /* CONFIG_ATH9K_DEBUGFS */
Sujith394cf0a2009-02-09 13:26:54 +0530361
Felix Fietkau5baec742012-03-03 15:17:03 +0100362#ifdef CONFIG_ATH9K_MAC_DEBUG
363
364void ath9k_debug_samp_bb_mac(struct ath_softc *sc);
365
366#else
367
368static inline void ath9k_debug_samp_bb_mac(struct ath_softc *sc)
369{
370}
371
372#endif
373
374
Sujith394cf0a2009-02-09 13:26:54 +0530375#endif /* DEBUG_H */