blob: 95f85bdc8db7e2035266f86944b2fae9eb7b40a0 [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"
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -070022
Sujithfec247c2009-07-27 12:08:16 +053023struct ath_txq;
24struct ath_buf;
25
Felix Fietkaua830df02009-11-23 22:33:27 +010026#ifdef CONFIG_ATH9K_DEBUGFS
Sujithfec247c2009-07-27 12:08:16 +053027#define TX_STAT_INC(q, c) sc->debug.stats.txstats[q].c++
28#else
29#define TX_STAT_INC(q, c) do { } while (0)
30#endif
31
Felix Fietkaua830df02009-11-23 22:33:27 +010032#ifdef CONFIG_ATH9K_DEBUGFS
Sujith394cf0a2009-02-09 13:26:54 +053033
34/**
35 * struct ath_interrupt_stats - Contains statistics about interrupts
36 * @total: Total no. of interrupts generated so far
37 * @rxok: RX with no errors
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040038 * @rxlp: RX with low priority RX
39 * @rxhp: RX with high priority, uapsd only
Sujith394cf0a2009-02-09 13:26:54 +053040 * @rxeol: RX with no more RXDESC available
41 * @rxorn: RX FIFO overrun
42 * @txok: TX completed at the requested rate
43 * @txurn: TX FIFO underrun
44 * @mib: MIB regs reaching its threshold
45 * @rxphyerr: RX with phy errors
46 * @rx_keycache_miss: RX with key cache misses
47 * @swba: Software Beacon Alert
48 * @bmiss: Beacon Miss
49 * @bnr: Beacon Not Ready
50 * @cst: Carrier Sense TImeout
51 * @gtt: Global TX Timeout
52 * @tim: RX beacon TIM occurrence
53 * @cabend: RX End of CAB traffic
54 * @dtimsync: DTIM sync lossage
55 * @dtim: RX Beacon with DTIM
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040056 * @bb_watchdog: Baseband watchdog
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053057 * @tsfoor: TSF out of range, indicates that the corrected TSF received
58 * from a beacon differs from the PCU's internal TSF by more than a
59 * (programmable) threshold
Sujith394cf0a2009-02-09 13:26:54 +053060 */
61struct ath_interrupt_stats {
62 u32 total;
63 u32 rxok;
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040064 u32 rxlp;
65 u32 rxhp;
Sujith394cf0a2009-02-09 13:26:54 +053066 u32 rxeol;
67 u32 rxorn;
68 u32 txok;
69 u32 txeol;
70 u32 txurn;
71 u32 mib;
72 u32 rxphyerr;
73 u32 rx_keycache_miss;
74 u32 swba;
75 u32 bmiss;
76 u32 bnr;
77 u32 cst;
78 u32 gtt;
79 u32 tim;
80 u32 cabend;
81 u32 dtimsync;
82 u32 dtim;
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040083 u32 bb_watchdog;
Mohammed Shafi Shajakhan6dde1aa2011-04-22 17:27:01 +053084 u32 tsfoor;
Sujith394cf0a2009-02-09 13:26:54 +053085};
86
Sujithfec247c2009-07-27 12:08:16 +053087/**
88 * struct ath_tx_stats - Statistics about TX
Ben Greear99c15bf2010-10-01 12:26:30 -070089 * @tx_pkts_all: No. of total frames transmitted, including ones that
90 may have had errors.
91 * @tx_bytes_all: No. of total bytes transmitted, including ones that
92 may have had errors.
Sujithfec247c2009-07-27 12:08:16 +053093 * @queued: Total MPDUs (non-aggr) queued
94 * @completed: Total MPDUs (non-aggr) completed
95 * @a_aggr: Total no. of aggregates queued
Ben Greearbda8add2011-01-09 23:11:48 -080096 * @a_queued_hw: Total AMPDUs queued to hardware
97 * @a_queued_sw: Total AMPDUs queued to software queues
Sujithfec247c2009-07-27 12:08:16 +053098 * @a_completed: Total AMPDUs completed
99 * @a_retries: No. of AMPDUs retried (SW)
100 * @a_xretries: No. of AMPDUs dropped due to xretries
101 * @fifo_underrun: FIFO underrun occurrences
102 Valid only for:
103 - non-aggregate condition.
104 - first packet of aggregate.
105 * @xtxop: No. of frames filtered because of TXOP limit
106 * @timer_exp: Transmit timer expiry
107 * @desc_cfg_err: Descriptor configuration errors
108 * @data_urn: TX data underrun errors
109 * @delim_urn: TX delimiter underrun errors
Ben Greear2dac4fb2011-01-09 23:11:45 -0800110 * @puttxbuf: Number of times hardware was given txbuf to write.
111 * @txstart: Number of times hardware was told to start tx.
112 * @txprocdesc: Number of times tx descriptor was processed
Sujithfec247c2009-07-27 12:08:16 +0530113 */
114struct ath_tx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700115 u32 tx_pkts_all;
116 u32 tx_bytes_all;
Sujithfec247c2009-07-27 12:08:16 +0530117 u32 queued;
118 u32 completed;
Felix Fietkau5a6f78a2011-05-31 21:21:41 +0200119 u32 xretries;
Sujithfec247c2009-07-27 12:08:16 +0530120 u32 a_aggr;
Ben Greearbda8add2011-01-09 23:11:48 -0800121 u32 a_queued_hw;
122 u32 a_queued_sw;
Sujithfec247c2009-07-27 12:08:16 +0530123 u32 a_completed;
124 u32 a_retries;
125 u32 a_xretries;
126 u32 fifo_underrun;
127 u32 xtxop;
128 u32 timer_exp;
129 u32 desc_cfg_err;
130 u32 data_underrun;
131 u32 delim_underrun;
Ben Greear2dac4fb2011-01-09 23:11:45 -0800132 u32 puttxbuf;
133 u32 txstart;
134 u32 txprocdesc;
Sujithfec247c2009-07-27 12:08:16 +0530135};
136
Sujith1395d3f2010-01-08 10:36:11 +0530137/**
138 * struct ath_rx_stats - RX Statistics
Ben Greear99c15bf2010-10-01 12:26:30 -0700139 * @rx_pkts_all: No. of total frames received, including ones that
140 may have had errors.
141 * @rx_bytes_all: No. of total bytes received, including ones that
142 may have had errors.
Sujith1395d3f2010-01-08 10:36:11 +0530143 * @crc_err: No. of frames with incorrect CRC value
144 * @decrypt_crc_err: No. of frames whose CRC check failed after
145 decryption process completed
146 * @phy_err: No. of frames whose reception failed because the PHY
147 encountered an error
148 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
149 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
150 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
151 * @decrypt_busy_err: Decryption interruptions counter
152 * @phy_err_stats: Individual PHY error statistics
153 */
154struct ath_rx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700155 u32 rx_pkts_all;
156 u32 rx_bytes_all;
Sujith1395d3f2010-01-08 10:36:11 +0530157 u32 crc_err;
158 u32 decrypt_crc_err;
159 u32 phy_err;
160 u32 mic_err;
161 u32 pre_delim_crc_err;
162 u32 post_delim_crc_err;
163 u32 decrypt_busy_err;
164 u32 phy_err_stats[ATH9K_PHYERR_MAX];
Senthil Balasubramanian7d755412011-04-08 15:30:34 +0530165 int8_t rs_rssi_ctl0;
166 int8_t rs_rssi_ctl1;
167 int8_t rs_rssi_ctl2;
168 int8_t rs_rssi_ext0;
169 int8_t rs_rssi_ext1;
170 int8_t rs_rssi_ext2;
171 u8 rs_antenna;
Sujith1395d3f2010-01-08 10:36:11 +0530172};
173
Sujith394cf0a2009-02-09 13:26:54 +0530174struct ath_stats {
175 struct ath_interrupt_stats istats;
Sujithfec247c2009-07-27 12:08:16 +0530176 struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
Sujith1395d3f2010-01-08 10:36:11 +0530177 struct ath_rx_stats rxstats;
Sujith394cf0a2009-02-09 13:26:54 +0530178};
179
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530180#define ATH_DBG_MAX_SAMPLES 10
181struct ath_dbg_bb_mac_samp {
182 u32 dma_dbg_reg_vals[ATH9K_NUM_DMA_DEBUG_REGS];
183 u32 pcu_obs, pcu_cr, noise;
184 struct {
185 u64 jiffies;
186 int8_t rssi_ctl0;
187 int8_t rssi_ctl1;
188 int8_t rssi_ctl2;
189 int8_t rssi_ext0;
190 int8_t rssi_ext1;
191 int8_t rssi_ext2;
192 int8_t rssi;
193 bool isok;
194 u8 rts_fail_cnt;
195 u8 data_fail_cnt;
196 u8 rateindex;
197 u8 qid;
198 u8 tid;
199 } ts[ATH_DBG_MAX_SAMPLES];
200 struct {
201 u64 jiffies;
202 int8_t rssi_ctl0;
203 int8_t rssi_ctl1;
204 int8_t rssi_ctl2;
205 int8_t rssi_ext0;
206 int8_t rssi_ext1;
207 int8_t rssi_ext2;
208 int8_t rssi;
209 bool is_mybeacon;
210 u8 antenna;
211 u8 rate;
212 } rs[ATH_DBG_MAX_SAMPLES];
213 struct ath_cycle_counters cc;
214 struct ath9k_nfcal_hist nfCalHist[NUM_NF_READINGS];
215};
216
Sujith394cf0a2009-02-09 13:26:54 +0530217struct ath9k_debug {
Sujith394cf0a2009-02-09 13:26:54 +0530218 struct dentry *debugfs_phy;
Felix Fietkau9bff0bc2010-05-11 17:23:02 +0200219 u32 regidx;
Sujith394cf0a2009-02-09 13:26:54 +0530220 struct ath_stats stats;
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530221 spinlock_t samp_lock;
222 struct ath_dbg_bb_mac_samp bb_mac_samp[ATH_DBG_MAX_SAMPLES];
223 u8 sampidx;
224 u8 tsidx;
225 u8 rsidx;
Sujith394cf0a2009-02-09 13:26:54 +0530226};
227
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700228int ath9k_init_debug(struct ath_hw *ah);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700229
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530230void ath9k_debug_samp_bb_mac(struct ath_softc *sc);
Sujith394cf0a2009-02-09 13:26:54 +0530231void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
Felix Fietkau066dae92010-11-07 14:59:39 +0100232void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkau5bec3e52011-01-24 21:29:25 +0100233 struct ath_tx_status *ts, struct ath_txq *txq);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700234void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
Sujith394cf0a2009-02-09 13:26:54 +0530235
236#else
237
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700238static inline int ath9k_init_debug(struct ath_hw *ah)
Sujith394cf0a2009-02-09 13:26:54 +0530239{
240 return 0;
241}
242
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530243static inline void ath9k_debug_samp_bb_mac(struct ath_softc *sc)
244{
245}
246
Sujith394cf0a2009-02-09 13:26:54 +0530247static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
248 enum ath9k_int status)
249{
250}
251
Sujithfec247c2009-07-27 12:08:16 +0530252static inline void ath_debug_stat_tx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700253 struct ath_buf *bf,
Felix Fietkau3bf63e52011-01-28 17:52:49 +0100254 struct ath_tx_status *ts,
255 struct ath_txq *txq)
Sujithfec247c2009-07-27 12:08:16 +0530256{
257}
258
Sujith1395d3f2010-01-08 10:36:11 +0530259static inline void ath_debug_stat_rx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700260 struct ath_rx_status *rs)
Sujith1395d3f2010-01-08 10:36:11 +0530261{
262}
263
Felix Fietkaua830df02009-11-23 22:33:27 +0100264#endif /* CONFIG_ATH9K_DEBUGFS */
Sujith394cf0a2009-02-09 13:26:54 +0530265
266#endif /* DEBUG_H */