blob: 2d47f747512e801035255eb3b222e9b54eeef5e7 [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;
26
Felix Fietkaua830df02009-11-23 22:33:27 +010027#ifdef CONFIG_ATH9K_DEBUGFS
Sujithfec247c2009-07-27 12:08:16 +053028#define TX_STAT_INC(q, c) sc->debug.stats.txstats[q].c++
Felix Fietkau030d6292011-10-07 02:28:13 +020029#define RESET_STAT_INC(sc, type) sc->debug.stats.reset[type]++
Sujithfec247c2009-07-27 12:08:16 +053030#else
31#define TX_STAT_INC(q, c) do { } while (0)
Felix Fietkau030d6292011-10-07 02:28:13 +020032#define RESET_STAT_INC(sc, type) do { } while (0)
Sujithfec247c2009-07-27 12:08:16 +053033#endif
34
Felix Fietkaua830df02009-11-23 22:33:27 +010035#ifdef CONFIG_ATH9K_DEBUGFS
Sujith394cf0a2009-02-09 13:26:54 +053036
37/**
38 * struct ath_interrupt_stats - Contains statistics about interrupts
39 * @total: Total no. of interrupts generated so far
40 * @rxok: RX with no errors
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040041 * @rxlp: RX with low priority RX
42 * @rxhp: RX with high priority, uapsd only
Sujith394cf0a2009-02-09 13:26:54 +053043 * @rxeol: RX with no more RXDESC available
44 * @rxorn: RX FIFO overrun
45 * @txok: TX completed at the requested rate
46 * @txurn: TX FIFO underrun
47 * @mib: MIB regs reaching its threshold
48 * @rxphyerr: RX with phy errors
49 * @rx_keycache_miss: RX with key cache misses
50 * @swba: Software Beacon Alert
51 * @bmiss: Beacon Miss
52 * @bnr: Beacon Not Ready
53 * @cst: Carrier Sense TImeout
54 * @gtt: Global TX Timeout
55 * @tim: RX beacon TIM occurrence
56 * @cabend: RX End of CAB traffic
57 * @dtimsync: DTIM sync lossage
58 * @dtim: RX Beacon with DTIM
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040059 * @bb_watchdog: Baseband watchdog
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053060 * @tsfoor: TSF out of range, indicates that the corrected TSF received
61 * from a beacon differs from the PCU's internal TSF by more than a
62 * (programmable) threshold
Sujith394cf0a2009-02-09 13:26:54 +053063 */
64struct ath_interrupt_stats {
65 u32 total;
66 u32 rxok;
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040067 u32 rxlp;
68 u32 rxhp;
Sujith394cf0a2009-02-09 13:26:54 +053069 u32 rxeol;
70 u32 rxorn;
71 u32 txok;
72 u32 txeol;
73 u32 txurn;
74 u32 mib;
75 u32 rxphyerr;
76 u32 rx_keycache_miss;
77 u32 swba;
78 u32 bmiss;
79 u32 bnr;
80 u32 cst;
81 u32 gtt;
82 u32 tim;
83 u32 cabend;
84 u32 dtimsync;
85 u32 dtim;
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040086 u32 bb_watchdog;
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053087 u32 tsfoor;
Sujith394cf0a2009-02-09 13:26:54 +053088};
89
Sujithfec247c2009-07-27 12:08:16 +053090/**
91 * struct ath_tx_stats - Statistics about TX
Ben Greear99c15bf2010-10-01 12:26:30 -070092 * @tx_pkts_all: No. of total frames transmitted, including ones that
93 may have had errors.
94 * @tx_bytes_all: No. of total bytes transmitted, including ones that
95 may have had errors.
Sujithfec247c2009-07-27 12:08:16 +053096 * @queued: Total MPDUs (non-aggr) queued
97 * @completed: Total MPDUs (non-aggr) completed
98 * @a_aggr: Total no. of aggregates queued
Ben Greearbda8add2011-01-09 23:11:48 -080099 * @a_queued_hw: Total AMPDUs queued to hardware
100 * @a_queued_sw: Total AMPDUs queued to software queues
Sujithfec247c2009-07-27 12:08:16 +0530101 * @a_completed: Total AMPDUs completed
102 * @a_retries: No. of AMPDUs retried (SW)
103 * @a_xretries: No. of AMPDUs dropped due to xretries
104 * @fifo_underrun: FIFO underrun occurrences
105 Valid only for:
106 - non-aggregate condition.
107 - first packet of aggregate.
108 * @xtxop: No. of frames filtered because of TXOP limit
109 * @timer_exp: Transmit timer expiry
110 * @desc_cfg_err: Descriptor configuration errors
111 * @data_urn: TX data underrun errors
112 * @delim_urn: TX delimiter underrun errors
Ben Greear2dac4fb2011-01-09 23:11:45 -0800113 * @puttxbuf: Number of times hardware was given txbuf to write.
114 * @txstart: Number of times hardware was told to start tx.
115 * @txprocdesc: Number of times tx descriptor was processed
Sujithfec247c2009-07-27 12:08:16 +0530116 */
117struct ath_tx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700118 u32 tx_pkts_all;
119 u32 tx_bytes_all;
Sujithfec247c2009-07-27 12:08:16 +0530120 u32 queued;
121 u32 completed;
Felix Fietkau5a6f78a2011-05-31 21:21:41 +0200122 u32 xretries;
Sujithfec247c2009-07-27 12:08:16 +0530123 u32 a_aggr;
Ben Greearbda8add2011-01-09 23:11:48 -0800124 u32 a_queued_hw;
125 u32 a_queued_sw;
Sujithfec247c2009-07-27 12:08:16 +0530126 u32 a_completed;
127 u32 a_retries;
128 u32 a_xretries;
129 u32 fifo_underrun;
130 u32 xtxop;
131 u32 timer_exp;
132 u32 desc_cfg_err;
133 u32 data_underrun;
134 u32 delim_underrun;
Ben Greear2dac4fb2011-01-09 23:11:45 -0800135 u32 puttxbuf;
136 u32 txstart;
137 u32 txprocdesc;
Sujithfec247c2009-07-27 12:08:16 +0530138};
139
Sujith1395d3f2010-01-08 10:36:11 +0530140/**
141 * struct ath_rx_stats - RX Statistics
Ben Greear99c15bf2010-10-01 12:26:30 -0700142 * @rx_pkts_all: No. of total frames received, including ones that
143 may have had errors.
144 * @rx_bytes_all: No. of total bytes received, including ones that
145 may have had errors.
Sujith1395d3f2010-01-08 10:36:11 +0530146 * @crc_err: No. of frames with incorrect CRC value
147 * @decrypt_crc_err: No. of frames whose CRC check failed after
148 decryption process completed
149 * @phy_err: No. of frames whose reception failed because the PHY
150 encountered an error
151 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
152 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
153 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
154 * @decrypt_busy_err: Decryption interruptions counter
155 * @phy_err_stats: Individual PHY error statistics
156 */
157struct ath_rx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700158 u32 rx_pkts_all;
159 u32 rx_bytes_all;
Sujith1395d3f2010-01-08 10:36:11 +0530160 u32 crc_err;
161 u32 decrypt_crc_err;
162 u32 phy_err;
163 u32 mic_err;
164 u32 pre_delim_crc_err;
165 u32 post_delim_crc_err;
166 u32 decrypt_busy_err;
167 u32 phy_err_stats[ATH9K_PHYERR_MAX];
168};
169
Felix Fietkau030d6292011-10-07 02:28:13 +0200170enum ath_reset_type {
171 RESET_TYPE_BB_HANG,
172 RESET_TYPE_BB_WATCHDOG,
173 RESET_TYPE_FATAL_INT,
174 RESET_TYPE_TX_ERROR,
175 RESET_TYPE_TX_HANG,
176 RESET_TYPE_PLL_HANG,
Rajkumar Manoharan01e18912012-03-15 05:34:27 +0530177 RESET_TYPE_MAC_HANG,
Felix Fietkau030d6292011-10-07 02:28:13 +0200178 __RESET_TYPE_MAX
179};
180
Sujith394cf0a2009-02-09 13:26:54 +0530181struct ath_stats {
182 struct ath_interrupt_stats istats;
Sujithfec247c2009-07-27 12:08:16 +0530183 struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
Sujith1395d3f2010-01-08 10:36:11 +0530184 struct ath_rx_stats rxstats;
Zefir Kurtisi29942bc2011-12-14 20:16:34 -0800185 struct ath_dfs_stats dfs_stats;
Felix Fietkau030d6292011-10-07 02:28:13 +0200186 u32 reset[__RESET_TYPE_MAX];
Sujith394cf0a2009-02-09 13:26:54 +0530187};
188
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530189#define ATH_DBG_MAX_SAMPLES 10
190struct ath_dbg_bb_mac_samp {
191 u32 dma_dbg_reg_vals[ATH9K_NUM_DMA_DEBUG_REGS];
192 u32 pcu_obs, pcu_cr, noise;
193 struct {
194 u64 jiffies;
195 int8_t rssi_ctl0;
196 int8_t rssi_ctl1;
197 int8_t rssi_ctl2;
198 int8_t rssi_ext0;
199 int8_t rssi_ext1;
200 int8_t rssi_ext2;
201 int8_t rssi;
202 bool isok;
203 u8 rts_fail_cnt;
204 u8 data_fail_cnt;
205 u8 rateindex;
206 u8 qid;
207 u8 tid;
Mohammed Shafi Shajakhan129321802011-09-21 14:22:49 +0530208 u32 ba_low;
209 u32 ba_high;
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530210 } ts[ATH_DBG_MAX_SAMPLES];
211 struct {
212 u64 jiffies;
213 int8_t rssi_ctl0;
214 int8_t rssi_ctl1;
215 int8_t rssi_ctl2;
216 int8_t rssi_ext0;
217 int8_t rssi_ext1;
218 int8_t rssi_ext2;
219 int8_t rssi;
220 bool is_mybeacon;
221 u8 antenna;
222 u8 rate;
223 } rs[ATH_DBG_MAX_SAMPLES];
224 struct ath_cycle_counters cc;
225 struct ath9k_nfcal_hist nfCalHist[NUM_NF_READINGS];
226};
227
Sujith394cf0a2009-02-09 13:26:54 +0530228struct ath9k_debug {
Sujith394cf0a2009-02-09 13:26:54 +0530229 struct dentry *debugfs_phy;
Felix Fietkau9bff0bc2010-05-11 17:23:02 +0200230 u32 regidx;
Sujith394cf0a2009-02-09 13:26:54 +0530231 struct ath_stats stats;
Felix Fietkau5baec742012-03-03 15:17:03 +0100232#ifdef CONFIG_ATH9K_MAC_DEBUG
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530233 spinlock_t samp_lock;
234 struct ath_dbg_bb_mac_samp bb_mac_samp[ATH_DBG_MAX_SAMPLES];
235 u8 sampidx;
236 u8 tsidx;
237 u8 rsidx;
Felix Fietkau5baec742012-03-03 15:17:03 +0100238#endif
Sujith394cf0a2009-02-09 13:26:54 +0530239};
240
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700241int ath9k_init_debug(struct ath_hw *ah);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700242
Sujith394cf0a2009-02-09 13:26:54 +0530243void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
Felix Fietkau066dae92010-11-07 14:59:39 +0100244void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkau55797b12011-09-14 21:24:16 +0200245 struct ath_tx_status *ts, struct ath_txq *txq,
246 unsigned int flags);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700247void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
Sujith394cf0a2009-02-09 13:26:54 +0530248
249#else
250
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700251static inline int ath9k_init_debug(struct ath_hw *ah)
Sujith394cf0a2009-02-09 13:26:54 +0530252{
253 return 0;
254}
255
Sujith394cf0a2009-02-09 13:26:54 +0530256static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
257 enum ath9k_int status)
258{
259}
260
Sujithfec247c2009-07-27 12:08:16 +0530261static inline void ath_debug_stat_tx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700262 struct ath_buf *bf,
Felix Fietkau3bf63e52011-01-28 17:52:49 +0100263 struct ath_tx_status *ts,
Felix Fietkau55797b12011-09-14 21:24:16 +0200264 struct ath_txq *txq,
265 unsigned int flags)
Sujithfec247c2009-07-27 12:08:16 +0530266{
267}
268
Sujith1395d3f2010-01-08 10:36:11 +0530269static inline void ath_debug_stat_rx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700270 struct ath_rx_status *rs)
Sujith1395d3f2010-01-08 10:36:11 +0530271{
272}
273
Felix Fietkaua830df02009-11-23 22:33:27 +0100274#endif /* CONFIG_ATH9K_DEBUGFS */
Sujith394cf0a2009-02-09 13:26:54 +0530275
Felix Fietkau5baec742012-03-03 15:17:03 +0100276#ifdef CONFIG_ATH9K_MAC_DEBUG
277
278void ath9k_debug_samp_bb_mac(struct ath_softc *sc);
279
280#else
281
282static inline void ath9k_debug_samp_bb_mac(struct ath_softc *sc)
283{
284}
285
286#endif
287
288
Sujith394cf0a2009-02-09 13:26:54 +0530289#endif /* DEBUG_H */