debug.h 10.0 KB
Newer Older
S
Sujith 已提交
1
/*
2
 * Copyright (c) 2008-2011 Atheros Communications Inc.
S
Sujith 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef DEBUG_H
#define DEBUG_H

20
#include "hw.h"
21
#include "dfs_debug.h"
22

S
Sujith 已提交
23 24
struct ath_txq;
struct ath_buf;
25
struct fft_sample_tlv;
S
Sujith 已提交
26

27
#ifdef CONFIG_ATH9K_DEBUGFS
S
Sujith 已提交
28
#define TX_STAT_INC(q, c) sc->debug.stats.txstats[q].c++
29
#define RX_STAT_INC(c) (sc->debug.stats.rxstats.c++)
30
#define RESET_STAT_INC(sc, type) sc->debug.stats.reset[type]++
31
#define ANT_STAT_INC(i, c) sc->debug.stats.ant_stats[i].c++
32
#define ANT_LNA_INC(i, c) sc->debug.stats.ant_stats[i].lna_recv_cnt[c]++;
S
Sujith 已提交
33 34
#else
#define TX_STAT_INC(q, c) do { } while (0)
35
#define RX_STAT_INC(c)
36
#define RESET_STAT_INC(sc, type) do { } while (0)
37 38
#define ANT_STAT_INC(i, c) do { } while (0)
#define ANT_LNA_INC(i, c) do { } while (0)
S
Sujith 已提交
39 40
#endif

41 42 43 44 45
enum ath_reset_type {
	RESET_TYPE_BB_HANG,
	RESET_TYPE_BB_WATCHDOG,
	RESET_TYPE_FATAL_INT,
	RESET_TYPE_TX_ERROR,
S
Sujith Manoharan 已提交
46
	RESET_TYPE_TX_GTT,
47 48 49 50
	RESET_TYPE_TX_HANG,
	RESET_TYPE_PLL_HANG,
	RESET_TYPE_MAC_HANG,
	RESET_TYPE_BEACON_STUCK,
51
	RESET_TYPE_MCI,
52 53 54
	__RESET_TYPE_MAX
};

55
#ifdef CONFIG_ATH9K_DEBUGFS
S
Sujith 已提交
56 57 58 59 60

/**
 * struct ath_interrupt_stats - Contains statistics about interrupts
 * @total: Total no. of interrupts generated so far
 * @rxok: RX with no errors
61 62
 * @rxlp: RX with low priority RX
 * @rxhp: RX with high priority, uapsd only
S
Sujith 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
 * @rxeol: RX with no more RXDESC available
 * @rxorn: RX FIFO overrun
 * @txok: TX completed at the requested rate
 * @txurn: TX FIFO underrun
 * @mib: MIB regs reaching its threshold
 * @rxphyerr: RX with phy errors
 * @rx_keycache_miss: RX with key cache misses
 * @swba: Software Beacon Alert
 * @bmiss: Beacon Miss
 * @bnr: Beacon Not Ready
 * @cst: Carrier Sense TImeout
 * @gtt: Global TX Timeout
 * @tim: RX beacon TIM occurrence
 * @cabend: RX End of CAB traffic
 * @dtimsync: DTIM sync lossage
 * @dtim: RX Beacon with DTIM
79
 * @bb_watchdog: Baseband watchdog
80 81 82
 * @tsfoor: TSF out of range, indicates that the corrected TSF received
 * from a beacon differs from the PCU's internal TSF by more than a
 * (programmable) threshold
83
 * @local_timeout: Internal bus timeout.
84 85
 * @mci: MCI interrupt, specific to MCI based BTCOEX chipsets
 * @gen_timer: Generic hardware timer interrupt
S
Sujith 已提交
86 87 88 89
 */
struct ath_interrupt_stats {
	u32 total;
	u32 rxok;
90 91
	u32 rxlp;
	u32 rxhp;
S
Sujith 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	u32 rxeol;
	u32 rxorn;
	u32 txok;
	u32 txeol;
	u32 txurn;
	u32 mib;
	u32 rxphyerr;
	u32 rx_keycache_miss;
	u32 swba;
	u32 bmiss;
	u32 bnr;
	u32 cst;
	u32 gtt;
	u32 tim;
	u32 cabend;
	u32 dtimsync;
	u32 dtim;
109
	u32 bb_watchdog;
110
	u32 tsfoor;
111
	u32 mci;
112
	u32 gen_timer;
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

	/* Sync-cause stats */
	u32 sync_cause_all;
	u32 sync_rtc_irq;
	u32 sync_mac_irq;
	u32 eeprom_illegal_access;
	u32 apb_timeout;
	u32 pci_mode_conflict;
	u32 host1_fatal;
	u32 host1_perr;
	u32 trcv_fifo_perr;
	u32 radm_cpl_ep;
	u32 radm_cpl_dllp_abort;
	u32 radm_cpl_tlp_abort;
	u32 radm_cpl_ecrc_err;
	u32 radm_cpl_timeout;
	u32 local_timeout;
	u32 pm_access;
	u32 mac_awake;
	u32 mac_asleep;
	u32 mac_sleep_access;
S
Sujith 已提交
134 135
};

136

S
Sujith 已提交
137 138
/**
 * struct ath_tx_stats - Statistics about TX
139 140 141 142
 * @tx_pkts_all:  No. of total frames transmitted, including ones that
	may have had errors.
 * @tx_bytes_all:  No. of total bytes transmitted, including ones that
	may have had errors.
S
Sujith 已提交
143 144 145
 * @queued: Total MPDUs (non-aggr) queued
 * @completed: Total MPDUs (non-aggr) completed
 * @a_aggr: Total no. of aggregates queued
146 147
 * @a_queued_hw: Total AMPDUs queued to hardware
 * @a_queued_sw: Total AMPDUs queued to software queues
S
Sujith 已提交
148 149 150
 * @a_completed: Total AMPDUs completed
 * @a_retries: No. of AMPDUs retried (SW)
 * @a_xretries: No. of AMPDUs dropped due to xretries
151
 * @txerr_filtered: No. of frames with TXERR_FILT flag set.
S
Sujith 已提交
152 153 154 155 156 157 158 159 160
 * @fifo_underrun: FIFO underrun occurrences
	Valid only for:
		- non-aggregate condition.
		- first packet of aggregate.
 * @xtxop: No. of frames filtered because of TXOP limit
 * @timer_exp: Transmit timer expiry
 * @desc_cfg_err: Descriptor configuration errors
 * @data_urn: TX data underrun errors
 * @delim_urn: TX delimiter underrun errors
161 162 163
 * @puttxbuf: Number of times hardware was given txbuf to write.
 * @txstart:  Number of times hardware was told to start tx.
 * @txprocdesc:  Number of times tx descriptor was processed
B
Ben Greear 已提交
164
 * @txfailed:  Out-of-memory or other errors in xmit path.
S
Sujith 已提交
165 166
 */
struct ath_tx_stats {
167 168
	u32 tx_pkts_all;
	u32 tx_bytes_all;
S
Sujith 已提交
169 170
	u32 queued;
	u32 completed;
171
	u32 xretries;
S
Sujith 已提交
172
	u32 a_aggr;
173 174
	u32 a_queued_hw;
	u32 a_queued_sw;
S
Sujith 已提交
175 176 177
	u32 a_completed;
	u32 a_retries;
	u32 a_xretries;
178
	u32 txerr_filtered;
S
Sujith 已提交
179 180 181 182 183 184
	u32 fifo_underrun;
	u32 xtxop;
	u32 timer_exp;
	u32 desc_cfg_err;
	u32 data_underrun;
	u32 delim_underrun;
185 186 187
	u32 puttxbuf;
	u32 txstart;
	u32 txprocdesc;
B
Ben Greear 已提交
188
	u32 txfailed;
S
Sujith 已提交
189 190
};

191 192 193 194 195 196 197
/*
 * Various utility macros to print TX/Queue counters.
 */
#define PR_QNUM(_n) sc->tx.txq_map[_n]->axq_qnum
#define TXSTATS sc->debug.stats.txstats
#define PR(str, elem)							\
	do {								\
198 199 200 201 202 203
		len += scnprintf(buf + len, size - len,			\
				 "%s%13u%11u%10u%10u\n", str,		\
				 TXSTATS[PR_QNUM(IEEE80211_AC_BE)].elem,\
				 TXSTATS[PR_QNUM(IEEE80211_AC_BK)].elem,\
				 TXSTATS[PR_QNUM(IEEE80211_AC_VI)].elem,\
				 TXSTATS[PR_QNUM(IEEE80211_AC_VO)].elem); \
204 205
	} while(0)

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
struct ath_rx_rate_stats {
	struct {
		u32 ht20_cnt;
		u32 ht40_cnt;
		u32 sgi_cnt;
		u32 lgi_cnt;
	} ht_stats[24];

	struct {
		u32 ofdm_cnt;
	} ofdm_stats[8];

	struct {
		u32 cck_lp_cnt;
		u32 cck_sp_cnt;
	} cck_stats[4];
};
B
Ben Greear 已提交
223

S
Sujith 已提交
224 225
/**
 * struct ath_rx_stats - RX Statistics
226 227 228 229
 * @rx_pkts_all:  No. of total frames received, including ones that
	may have had errors.
 * @rx_bytes_all:  No. of total bytes received, including ones that
	may have had errors.
S
Sujith 已提交
230 231 232 233 234 235 236 237 238 239
 * @crc_err: No. of frames with incorrect CRC value
 * @decrypt_crc_err: No. of frames whose CRC check failed after
	decryption process completed
 * @phy_err: No. of frames whose reception failed because the PHY
	encountered an error
 * @mic_err: No. of frames with incorrect TKIP MIC verification failure
 * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
 * @post_delim_crc_err: Post-Frame delimiter CRC error detections
 * @decrypt_busy_err: Decryption interruptions counter
 * @phy_err_stats: Individual PHY error statistics
B
Ben Greear 已提交
240 241 242 243 244 245
 * @rx_len_err:  No. of frames discarded due to bad length.
 * @rx_oom_err:  No. of frames dropped due to OOM issues.
 * @rx_rate_err:  No. of frames dropped due to rate errors.
 * @rx_too_many_frags_err:  Frames dropped due to too-many-frags received.
 * @rx_beacons:  No. of beacons received.
 * @rx_frags:  No. of rx-fragements received.
246
 * @rx_spectral: No of spectral packets received.
S
Sujith 已提交
247 248
 */
struct ath_rx_stats {
249 250
	u32 rx_pkts_all;
	u32 rx_bytes_all;
S
Sujith 已提交
251 252 253 254 255 256 257 258
	u32 crc_err;
	u32 decrypt_crc_err;
	u32 phy_err;
	u32 mic_err;
	u32 pre_delim_crc_err;
	u32 post_delim_crc_err;
	u32 decrypt_busy_err;
	u32 phy_err_stats[ATH9K_PHYERR_MAX];
B
Ben Greear 已提交
259 260 261 262 263 264
	u32 rx_len_err;
	u32 rx_oom_err;
	u32 rx_rate_err;
	u32 rx_too_many_frags_err;
	u32 rx_beacons;
	u32 rx_frags;
265
	u32 rx_spectral;
S
Sujith 已提交
266 267
};

268 269 270 271 272
#define ANT_MAIN 0
#define ANT_ALT  1

struct ath_antenna_stats {
	u32 recv_cnt;
273 274 275
	u32 rssi_avg;
	u32 lna_recv_cnt[4];
	u32 lna_attempt_cnt[4];
276 277
};

S
Sujith 已提交
278 279
struct ath_stats {
	struct ath_interrupt_stats istats;
280
	struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
S
Sujith 已提交
281
	struct ath_rx_stats rxstats;
282
	struct ath_dfs_stats dfs_stats;
283
	struct ath_antenna_stats ant_stats[2];
284
	u32 reset[__RESET_TYPE_MAX];
S
Sujith 已提交
285 286 287 288
};

struct ath9k_debug {
	struct dentry *debugfs_phy;
289
	u32 regidx;
S
Sujith 已提交
290 291 292
	struct ath_stats stats;
};

293
int ath9k_init_debug(struct ath_hw *ah);
294
void ath9k_deinit_debug(struct ath_softc *sc);
295

S
Sujith 已提交
296
void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
297
void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
298 299
		       struct ath_tx_status *ts, struct ath_txq *txq,
		       unsigned int flags);
300
void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
301 302 303 304 305 306 307 308
int ath9k_get_et_sset_count(struct ieee80211_hw *hw,
			    struct ieee80211_vif *vif, int sset);
void ath9k_get_et_stats(struct ieee80211_hw *hw,
			struct ieee80211_vif *vif,
			struct ethtool_stats *stats, u64 *data);
void ath9k_get_et_strings(struct ieee80211_hw *hw,
			  struct ieee80211_vif *vif,
			  u32 sset, u8 *data);
309 310 311 312
void ath9k_sta_add_debugfs(struct ieee80211_hw *hw,
			   struct ieee80211_vif *vif,
			   struct ieee80211_sta *sta,
			   struct dentry *dir);
313 314 315
void ath9k_debug_stat_ant(struct ath_softc *sc,
			  struct ath_hw_antcomb_conf *div_ant_conf,
			  int main_rssi_avg, int alt_rssi_avg);
316 317
void ath9k_debug_sync_cause(struct ath_softc *sc, u32 sync_cause);

S
Sujith 已提交
318 319
#else

320
static inline int ath9k_init_debug(struct ath_hw *ah)
S
Sujith 已提交
321 322 323 324
{
	return 0;
}

325 326 327
static inline void ath9k_deinit_debug(struct ath_softc *sc)
{
}
S
Sujith 已提交
328 329 330 331
static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
					    enum ath9k_int status)
{
}
S
Sujith 已提交
332
static inline void ath_debug_stat_tx(struct ath_softc *sc,
333
				     struct ath_buf *bf,
334
				     struct ath_tx_status *ts,
335 336
				     struct ath_txq *txq,
				     unsigned int flags)
S
Sujith 已提交
337 338
{
}
S
Sujith 已提交
339
static inline void ath_debug_stat_rx(struct ath_softc *sc,
340
				     struct ath_rx_status *rs)
S
Sujith 已提交
341
{
342 343 344 345 346 347
}
static inline void ath9k_debug_stat_ant(struct ath_softc *sc,
					struct ath_hw_antcomb_conf *div_ant_conf,
					int main_rssi_avg, int alt_rssi_avg)
{

S
Sujith 已提交
348 349
}

350 351 352 353 354
static inline void
ath9k_debug_sync_cause(struct ath_softc *sc, u32 sync_cause)
{
}

355
#endif /* CONFIG_ATH9K_DEBUGFS */
S
Sujith 已提交
356

357 358 359 360 361 362 363 364 365 366 367 368
#ifdef CONFIG_ATH9K_STATION_STATISTICS
void ath_debug_rate_stats(struct ath_softc *sc,
			  struct ath_rx_status *rs,
			  struct sk_buff *skb);
#else
static inline void ath_debug_rate_stats(struct ath_softc *sc,
					struct ath_rx_status *rs,
					struct sk_buff *skb)
{
}
#endif /* CONFIG_ATH9K_STATION_STATISTICS */

S
Sujith 已提交
369
#endif /* DEBUG_H */