ath9k: Report total tx/rx bytes and packets in debugfs.
[pandora-kernel.git] / drivers / net / wireless / ath / ath9k / debug.h
1 /*
2  * Copyright (c) 2008-2009 Atheros Communications Inc.
3  *
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
20 #include "hw.h"
21 #include "rc.h"
22
23 struct ath_txq;
24 struct ath_buf;
25
26 #ifdef CONFIG_ATH9K_DEBUGFS
27 #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
32 #ifdef CONFIG_ATH9K_DEBUGFS
33
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
38  * @rxlp: RX with low priority RX
39  * @rxhp: RX with high priority, uapsd only
40  * @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
56  * @bb_watchdog: Baseband watchdog
57  */
58 struct ath_interrupt_stats {
59         u32 total;
60         u32 rxok;
61         u32 rxlp;
62         u32 rxhp;
63         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;
80         u32 bb_watchdog;
81 };
82
83 struct ath_rc_stats {
84         u32 success;
85         u32 retries;
86         u32 xretries;
87         u8 per;
88 };
89
90 /**
91  * struct ath_tx_stats - Statistics about TX
92  * @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.
96  * @queued: Total MPDUs (non-aggr) queued
97  * @completed: Total MPDUs (non-aggr) completed
98  * @a_aggr: Total no. of aggregates queued
99  * @a_queued: Total AMPDUs queued
100  * @a_completed: Total AMPDUs completed
101  * @a_retries: No. of AMPDUs retried (SW)
102  * @a_xretries: No. of AMPDUs dropped due to xretries
103  * @fifo_underrun: FIFO underrun occurrences
104         Valid only for:
105                 - non-aggregate condition.
106                 - first packet of aggregate.
107  * @xtxop: No. of frames filtered because of TXOP limit
108  * @timer_exp: Transmit timer expiry
109  * @desc_cfg_err: Descriptor configuration errors
110  * @data_urn: TX data underrun errors
111  * @delim_urn: TX delimiter underrun errors
112  */
113 struct ath_tx_stats {
114         u32 tx_pkts_all;
115         u32 tx_bytes_all;
116         u32 queued;
117         u32 completed;
118         u32 a_aggr;
119         u32 a_queued;
120         u32 a_completed;
121         u32 a_retries;
122         u32 a_xretries;
123         u32 fifo_underrun;
124         u32 xtxop;
125         u32 timer_exp;
126         u32 desc_cfg_err;
127         u32 data_underrun;
128         u32 delim_underrun;
129 };
130
131 /**
132  * struct ath_rx_stats - RX Statistics
133  * @rx_pkts_all:  No. of total frames received, including ones that
134         may have had errors.
135  * @rx_bytes_all:  No. of total bytes received, including ones that
136         may have had errors.
137  * @crc_err: No. of frames with incorrect CRC value
138  * @decrypt_crc_err: No. of frames whose CRC check failed after
139         decryption process completed
140  * @phy_err: No. of frames whose reception failed because the PHY
141         encountered an error
142  * @mic_err: No. of frames with incorrect TKIP MIC verification failure
143  * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
144  * @post_delim_crc_err: Post-Frame delimiter CRC error detections
145  * @decrypt_busy_err: Decryption interruptions counter
146  * @phy_err_stats: Individual PHY error statistics
147  */
148 struct ath_rx_stats {
149         u32 rx_pkts_all;
150         u32 rx_bytes_all;
151         u32 crc_err;
152         u32 decrypt_crc_err;
153         u32 phy_err;
154         u32 mic_err;
155         u32 pre_delim_crc_err;
156         u32 post_delim_crc_err;
157         u32 decrypt_busy_err;
158         u32 phy_err_stats[ATH9K_PHYERR_MAX];
159 };
160
161 struct ath_stats {
162         struct ath_interrupt_stats istats;
163         struct ath_rc_stats rcstats[RATE_TABLE_SIZE];
164         struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
165         struct ath_rx_stats rxstats;
166 };
167
168 struct ath9k_debug {
169         struct dentry *debugfs_phy;
170         u32 regidx;
171         struct ath_stats stats;
172 };
173
174 int ath9k_init_debug(struct ath_hw *ah);
175 void ath9k_exit_debug(struct ath_hw *ah);
176
177 int ath9k_debug_create_root(void);
178 void ath9k_debug_remove_root(void);
179 void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
180 void ath_debug_stat_rc(struct ath_softc *sc, int final_rate);
181 void ath_debug_stat_tx(struct ath_softc *sc, struct ath_txq *txq,
182                        struct ath_buf *bf, struct ath_tx_status *ts);
183 void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
184 void ath_debug_stat_retries(struct ath_softc *sc, int rix,
185                             int xretries, int retries, u8 per);
186
187 #else
188
189 static inline int ath9k_init_debug(struct ath_hw *ah)
190 {
191         return 0;
192 }
193
194 static inline void ath9k_exit_debug(struct ath_hw *ah)
195 {
196 }
197
198 static inline int ath9k_debug_create_root(void)
199 {
200         return 0;
201 }
202
203 static inline void ath9k_debug_remove_root(void)
204 {
205 }
206
207 static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
208                                             enum ath9k_int status)
209 {
210 }
211
212 static inline void ath_debug_stat_rc(struct ath_softc *sc,
213                                      int final_rate)
214 {
215 }
216
217 static inline void ath_debug_stat_tx(struct ath_softc *sc,
218                                      struct ath_txq *txq,
219                                      struct ath_buf *bf,
220                                      struct ath_tx_status *ts)
221 {
222 }
223
224 static inline void ath_debug_stat_rx(struct ath_softc *sc,
225                                      struct ath_rx_status *rs)
226 {
227 }
228
229 static inline void ath_debug_stat_retries(struct ath_softc *sc, int rix,
230                                           int xretries, int retries, u8 per)
231 {
232 }
233
234 #endif /* CONFIG_ATH9K_DEBUGFS */
235
236 #endif /* DEBUG_H */