Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 1 | /* |
Sujith | cee075a | 2009-03-13 09:07:23 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2009 Atheros Communications Inc. |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 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 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 20 | #include "hw.h" |
Felix Fietkau | 545750d | 2009-11-23 22:21:01 +0100 | [diff] [blame] | 21 | #include "rc.h" |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 22 | |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 23 | struct ath_txq; |
| 24 | struct ath_buf; |
| 25 | |
Felix Fietkau | a830df0 | 2009-11-23 22:33:27 +0100 | [diff] [blame] | 26 | #ifdef CONFIG_ATH9K_DEBUGFS |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 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 | |
Felix Fietkau | a830df0 | 2009-11-23 22:33:27 +0100 | [diff] [blame] | 32 | #ifdef CONFIG_ATH9K_DEBUGFS |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 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 |
Luis R. Rodriguez | a9616f4 | 2010-04-15 17:39:30 -0400 | [diff] [blame] | 38 | * @rxlp: RX with low priority RX |
| 39 | * @rxhp: RX with high priority, uapsd only |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 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 |
Luis R. Rodriguez | 08578b8 | 2010-05-13 13:33:44 -0400 | [diff] [blame] | 56 | * @bb_watchdog: Baseband watchdog |
Mohammed Shafi Shajakhan | 6dde1aa | 2011-04-22 17:27:01 +0530 | [diff] [blame] | 57 | * @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 |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 60 | */ |
| 61 | struct ath_interrupt_stats { |
| 62 | u32 total; |
| 63 | u32 rxok; |
Luis R. Rodriguez | a9616f4 | 2010-04-15 17:39:30 -0400 | [diff] [blame] | 64 | u32 rxlp; |
| 65 | u32 rxhp; |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 66 | 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. Rodriguez | 08578b8 | 2010-05-13 13:33:44 -0400 | [diff] [blame] | 83 | u32 bb_watchdog; |
Mohammed Shafi Shajakhan | 6dde1aa | 2011-04-22 17:27:01 +0530 | [diff] [blame] | 84 | u32 tsfoor; |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 85 | }; |
| 86 | |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 87 | /** |
| 88 | * struct ath_tx_stats - Statistics about TX |
Ben Greear | 99c15bf | 2010-10-01 12:26:30 -0700 | [diff] [blame] | 89 | * @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. |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 93 | * @queued: Total MPDUs (non-aggr) queued |
| 94 | * @completed: Total MPDUs (non-aggr) completed |
| 95 | * @a_aggr: Total no. of aggregates queued |
Ben Greear | bda8add | 2011-01-09 23:11:48 -0800 | [diff] [blame] | 96 | * @a_queued_hw: Total AMPDUs queued to hardware |
| 97 | * @a_queued_sw: Total AMPDUs queued to software queues |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 98 | * @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 Greear | 2dac4fb | 2011-01-09 23:11:45 -0800 | [diff] [blame] | 110 | * @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 |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 113 | */ |
| 114 | struct ath_tx_stats { |
Ben Greear | 99c15bf | 2010-10-01 12:26:30 -0700 | [diff] [blame] | 115 | u32 tx_pkts_all; |
| 116 | u32 tx_bytes_all; |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 117 | u32 queued; |
| 118 | u32 completed; |
| 119 | u32 a_aggr; |
Ben Greear | bda8add | 2011-01-09 23:11:48 -0800 | [diff] [blame] | 120 | u32 a_queued_hw; |
| 121 | u32 a_queued_sw; |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 122 | u32 a_completed; |
| 123 | u32 a_retries; |
| 124 | u32 a_xretries; |
| 125 | u32 fifo_underrun; |
| 126 | u32 xtxop; |
| 127 | u32 timer_exp; |
| 128 | u32 desc_cfg_err; |
| 129 | u32 data_underrun; |
| 130 | u32 delim_underrun; |
Ben Greear | 2dac4fb | 2011-01-09 23:11:45 -0800 | [diff] [blame] | 131 | u32 puttxbuf; |
| 132 | u32 txstart; |
| 133 | u32 txprocdesc; |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 134 | }; |
| 135 | |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 136 | /** |
| 137 | * struct ath_rx_stats - RX Statistics |
Ben Greear | 99c15bf | 2010-10-01 12:26:30 -0700 | [diff] [blame] | 138 | * @rx_pkts_all: No. of total frames received, including ones that |
| 139 | may have had errors. |
| 140 | * @rx_bytes_all: No. of total bytes received, including ones that |
| 141 | may have had errors. |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 142 | * @crc_err: No. of frames with incorrect CRC value |
| 143 | * @decrypt_crc_err: No. of frames whose CRC check failed after |
| 144 | decryption process completed |
| 145 | * @phy_err: No. of frames whose reception failed because the PHY |
| 146 | encountered an error |
| 147 | * @mic_err: No. of frames with incorrect TKIP MIC verification failure |
| 148 | * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections |
| 149 | * @post_delim_crc_err: Post-Frame delimiter CRC error detections |
| 150 | * @decrypt_busy_err: Decryption interruptions counter |
| 151 | * @phy_err_stats: Individual PHY error statistics |
| 152 | */ |
| 153 | struct ath_rx_stats { |
Ben Greear | 99c15bf | 2010-10-01 12:26:30 -0700 | [diff] [blame] | 154 | u32 rx_pkts_all; |
| 155 | u32 rx_bytes_all; |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 156 | u32 crc_err; |
| 157 | u32 decrypt_crc_err; |
| 158 | u32 phy_err; |
| 159 | u32 mic_err; |
| 160 | u32 pre_delim_crc_err; |
| 161 | u32 post_delim_crc_err; |
| 162 | u32 decrypt_busy_err; |
| 163 | u32 phy_err_stats[ATH9K_PHYERR_MAX]; |
Senthil Balasubramanian | 7d75541 | 2011-04-08 15:30:34 +0530 | [diff] [blame] | 164 | int8_t rs_rssi_ctl0; |
| 165 | int8_t rs_rssi_ctl1; |
| 166 | int8_t rs_rssi_ctl2; |
| 167 | int8_t rs_rssi_ext0; |
| 168 | int8_t rs_rssi_ext1; |
| 169 | int8_t rs_rssi_ext2; |
| 170 | u8 rs_antenna; |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 171 | }; |
| 172 | |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 173 | struct ath_stats { |
| 174 | struct ath_interrupt_stats istats; |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 175 | struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES]; |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 176 | struct ath_rx_stats rxstats; |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 177 | }; |
| 178 | |
| 179 | struct ath9k_debug { |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 180 | struct dentry *debugfs_phy; |
Felix Fietkau | 9bff0bc | 2010-05-11 17:23:02 +0200 | [diff] [blame] | 181 | u32 regidx; |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 182 | struct ath_stats stats; |
| 183 | }; |
| 184 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 185 | int ath9k_init_debug(struct ath_hw *ah); |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 186 | |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 187 | void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status); |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 188 | void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf, |
Felix Fietkau | 5bec3e5 | 2011-01-24 21:29:25 +0100 | [diff] [blame] | 189 | struct ath_tx_status *ts, struct ath_txq *txq); |
Felix Fietkau | 8e6f5aa | 2010-03-29 20:09:27 -0700 | [diff] [blame] | 190 | void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs); |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 191 | |
| 192 | #else |
| 193 | |
Luis R. Rodriguez | 4d6b228 | 2009-09-07 04:52:26 -0700 | [diff] [blame] | 194 | static inline int ath9k_init_debug(struct ath_hw *ah) |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 195 | { |
| 196 | return 0; |
| 197 | } |
| 198 | |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 199 | static inline void ath_debug_stat_interrupt(struct ath_softc *sc, |
| 200 | enum ath9k_int status) |
| 201 | { |
| 202 | } |
| 203 | |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 204 | static inline void ath_debug_stat_tx(struct ath_softc *sc, |
Felix Fietkau | 32ffb1f | 2010-03-31 15:41:36 -0700 | [diff] [blame] | 205 | struct ath_buf *bf, |
Felix Fietkau | 3bf63e5 | 2011-01-28 17:52:49 +0100 | [diff] [blame] | 206 | struct ath_tx_status *ts, |
| 207 | struct ath_txq *txq) |
Sujith | fec247c | 2009-07-27 12:08:16 +0530 | [diff] [blame] | 208 | { |
| 209 | } |
| 210 | |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 211 | static inline void ath_debug_stat_rx(struct ath_softc *sc, |
Felix Fietkau | 32ffb1f | 2010-03-31 15:41:36 -0700 | [diff] [blame] | 212 | struct ath_rx_status *rs) |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 213 | { |
| 214 | } |
| 215 | |
Felix Fietkau | a830df0 | 2009-11-23 22:33:27 +0100 | [diff] [blame] | 216 | #endif /* CONFIG_ATH9K_DEBUGFS */ |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 217 | |
| 218 | #endif /* DEBUG_H */ |