blob: 59338de0ce19bdaef71d4a0a4c5b1a7594628eb6 [file] [log] [blame]
Sujith394cf0a2009-02-09 13:26:54 +05301/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 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
Sujith394cf0a2009-02-09 13:26:54 +053057 */
58struct ath_interrupt_stats {
59 u32 total;
60 u32 rxok;
Luis R. Rodrigueza9616f42010-04-15 17:39:30 -040061 u32 rxlp;
62 u32 rxhp;
Sujith394cf0a2009-02-09 13:26:54 +053063 u32 rxeol;
64 u32 rxorn;
65 u32 txok;
66 u32 txeol;
67 u32 txurn;
68 u32 mib;
69 u32 rxphyerr;
70 u32 rx_keycache_miss;
71 u32 swba;
72 u32 bmiss;
73 u32 bnr;
74 u32 cst;
75 u32 gtt;
76 u32 tim;
77 u32 cabend;
78 u32 dtimsync;
79 u32 dtim;
Luis R. Rodriguez08578b82010-05-13 13:33:44 -040080 u32 bb_watchdog;
Sujith394cf0a2009-02-09 13:26:54 +053081};
82
Sujithfec247c2009-07-27 12:08:16 +053083/**
84 * struct ath_tx_stats - Statistics about TX
Ben Greear99c15bf2010-10-01 12:26:30 -070085 * @tx_pkts_all: No. of total frames transmitted, including ones that
86 may have had errors.
87 * @tx_bytes_all: No. of total bytes transmitted, including ones that
88 may have had errors.
Sujithfec247c2009-07-27 12:08:16 +053089 * @queued: Total MPDUs (non-aggr) queued
90 * @completed: Total MPDUs (non-aggr) completed
91 * @a_aggr: Total no. of aggregates queued
Ben Greearbda8add2011-01-09 23:11:48 -080092 * @a_queued_hw: Total AMPDUs queued to hardware
93 * @a_queued_sw: Total AMPDUs queued to software queues
Sujithfec247c2009-07-27 12:08:16 +053094 * @a_completed: Total AMPDUs completed
95 * @a_retries: No. of AMPDUs retried (SW)
96 * @a_xretries: No. of AMPDUs dropped due to xretries
97 * @fifo_underrun: FIFO underrun occurrences
98 Valid only for:
99 - non-aggregate condition.
100 - first packet of aggregate.
101 * @xtxop: No. of frames filtered because of TXOP limit
102 * @timer_exp: Transmit timer expiry
103 * @desc_cfg_err: Descriptor configuration errors
104 * @data_urn: TX data underrun errors
105 * @delim_urn: TX delimiter underrun errors
Ben Greear2dac4fb2011-01-09 23:11:45 -0800106 * @puttxbuf: Number of times hardware was given txbuf to write.
107 * @txstart: Number of times hardware was told to start tx.
108 * @txprocdesc: Number of times tx descriptor was processed
Sujithfec247c2009-07-27 12:08:16 +0530109 */
110struct ath_tx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700111 u32 tx_pkts_all;
112 u32 tx_bytes_all;
Sujithfec247c2009-07-27 12:08:16 +0530113 u32 queued;
114 u32 completed;
115 u32 a_aggr;
Ben Greearbda8add2011-01-09 23:11:48 -0800116 u32 a_queued_hw;
117 u32 a_queued_sw;
Sujithfec247c2009-07-27 12:08:16 +0530118 u32 a_completed;
119 u32 a_retries;
120 u32 a_xretries;
121 u32 fifo_underrun;
122 u32 xtxop;
123 u32 timer_exp;
124 u32 desc_cfg_err;
125 u32 data_underrun;
126 u32 delim_underrun;
Ben Greear2dac4fb2011-01-09 23:11:45 -0800127 u32 puttxbuf;
128 u32 txstart;
129 u32 txprocdesc;
Sujithfec247c2009-07-27 12:08:16 +0530130};
131
Sujith1395d3f2010-01-08 10:36:11 +0530132/**
133 * struct ath_rx_stats - RX Statistics
Ben Greear99c15bf2010-10-01 12:26:30 -0700134 * @rx_pkts_all: No. of total frames received, including ones that
135 may have had errors.
136 * @rx_bytes_all: No. of total bytes received, including ones that
137 may have had errors.
Sujith1395d3f2010-01-08 10:36:11 +0530138 * @crc_err: No. of frames with incorrect CRC value
139 * @decrypt_crc_err: No. of frames whose CRC check failed after
140 decryption process completed
141 * @phy_err: No. of frames whose reception failed because the PHY
142 encountered an error
143 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
144 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
145 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
146 * @decrypt_busy_err: Decryption interruptions counter
147 * @phy_err_stats: Individual PHY error statistics
148 */
149struct ath_rx_stats {
Ben Greear99c15bf2010-10-01 12:26:30 -0700150 u32 rx_pkts_all;
151 u32 rx_bytes_all;
Sujith1395d3f2010-01-08 10:36:11 +0530152 u32 crc_err;
153 u32 decrypt_crc_err;
154 u32 phy_err;
155 u32 mic_err;
156 u32 pre_delim_crc_err;
157 u32 post_delim_crc_err;
158 u32 decrypt_busy_err;
159 u32 phy_err_stats[ATH9K_PHYERR_MAX];
160};
161
Sujith394cf0a2009-02-09 13:26:54 +0530162struct ath_stats {
163 struct ath_interrupt_stats istats;
Sujithfec247c2009-07-27 12:08:16 +0530164 struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
Sujith1395d3f2010-01-08 10:36:11 +0530165 struct ath_rx_stats rxstats;
Sujith394cf0a2009-02-09 13:26:54 +0530166};
167
168struct ath9k_debug {
Sujith394cf0a2009-02-09 13:26:54 +0530169 struct dentry *debugfs_phy;
Felix Fietkau9bff0bc2010-05-11 17:23:02 +0200170 u32 regidx;
Sujith394cf0a2009-02-09 13:26:54 +0530171 struct ath_stats stats;
172};
173
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700174int ath9k_init_debug(struct ath_hw *ah);
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700175
Sujith394cf0a2009-02-09 13:26:54 +0530176void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
Felix Fietkau066dae92010-11-07 14:59:39 +0100177void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
Felix Fietkau5bec3e52011-01-24 21:29:25 +0100178 struct ath_tx_status *ts, struct ath_txq *txq);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700179void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
Sujith394cf0a2009-02-09 13:26:54 +0530180
181#else
182
Luis R. Rodriguez4d6b2282009-09-07 04:52:26 -0700183static inline int ath9k_init_debug(struct ath_hw *ah)
Sujith394cf0a2009-02-09 13:26:54 +0530184{
185 return 0;
186}
187
Sujith394cf0a2009-02-09 13:26:54 +0530188static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
189 enum ath9k_int status)
190{
191}
192
Sujithfec247c2009-07-27 12:08:16 +0530193static inline void ath_debug_stat_tx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700194 struct ath_buf *bf,
Felix Fietkau3bf63e52011-01-28 17:52:49 +0100195 struct ath_tx_status *ts,
196 struct ath_txq *txq)
Sujithfec247c2009-07-27 12:08:16 +0530197{
198}
199
Sujith1395d3f2010-01-08 10:36:11 +0530200static inline void ath_debug_stat_rx(struct ath_softc *sc,
Felix Fietkau32ffb1f2010-03-31 15:41:36 -0700201 struct ath_rx_status *rs)
Sujith1395d3f2010-01-08 10:36:11 +0530202{
203}
204
Felix Fietkaua830df02009-11-23 22:33:27 +0100205#endif /* CONFIG_ATH9K_DEBUGFS */
Sujith394cf0a2009-02-09 13:26:54 +0530206
207#endif /* DEBUG_H */