debug.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. /*
  2. * Copyright (c) 2008-2011 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. #ifndef DEBUG_H
  17. #define DEBUG_H
  18. #include "hw.h"
  19. #include "rc.h"
  20. #include "dfs_debug.h"
  21. struct ath_txq;
  22. struct ath_buf;
  23. struct fft_sample_tlv;
  24. #ifdef CONFIG_ATH9K_DEBUGFS
  25. #define TX_STAT_INC(q, c) sc->debug.stats.txstats[q].c++
  26. #define RESET_STAT_INC(sc, type) sc->debug.stats.reset[type]++
  27. #else
  28. #define TX_STAT_INC(q, c) do { } while (0)
  29. #define RESET_STAT_INC(sc, type) do { } while (0)
  30. #endif
  31. enum ath_reset_type {
  32. RESET_TYPE_BB_HANG,
  33. RESET_TYPE_BB_WATCHDOG,
  34. RESET_TYPE_FATAL_INT,
  35. RESET_TYPE_TX_ERROR,
  36. RESET_TYPE_TX_HANG,
  37. RESET_TYPE_PLL_HANG,
  38. RESET_TYPE_MAC_HANG,
  39. RESET_TYPE_BEACON_STUCK,
  40. RESET_TYPE_MCI,
  41. __RESET_TYPE_MAX
  42. };
  43. #ifdef CONFIG_ATH9K_DEBUGFS
  44. /**
  45. * struct ath_interrupt_stats - Contains statistics about interrupts
  46. * @total: Total no. of interrupts generated so far
  47. * @rxok: RX with no errors
  48. * @rxlp: RX with low priority RX
  49. * @rxhp: RX with high priority, uapsd only
  50. * @rxeol: RX with no more RXDESC available
  51. * @rxorn: RX FIFO overrun
  52. * @txok: TX completed at the requested rate
  53. * @txurn: TX FIFO underrun
  54. * @mib: MIB regs reaching its threshold
  55. * @rxphyerr: RX with phy errors
  56. * @rx_keycache_miss: RX with key cache misses
  57. * @swba: Software Beacon Alert
  58. * @bmiss: Beacon Miss
  59. * @bnr: Beacon Not Ready
  60. * @cst: Carrier Sense TImeout
  61. * @gtt: Global TX Timeout
  62. * @tim: RX beacon TIM occurrence
  63. * @cabend: RX End of CAB traffic
  64. * @dtimsync: DTIM sync lossage
  65. * @dtim: RX Beacon with DTIM
  66. * @bb_watchdog: Baseband watchdog
  67. * @tsfoor: TSF out of range, indicates that the corrected TSF received
  68. * from a beacon differs from the PCU's internal TSF by more than a
  69. * (programmable) threshold
  70. * @local_timeout: Internal bus timeout.
  71. * @mci: MCI interrupt, specific to MCI based BTCOEX chipsets
  72. * @gen_timer: Generic hardware timer interrupt
  73. */
  74. struct ath_interrupt_stats {
  75. u32 total;
  76. u32 rxok;
  77. u32 rxlp;
  78. u32 rxhp;
  79. u32 rxeol;
  80. u32 rxorn;
  81. u32 txok;
  82. u32 txeol;
  83. u32 txurn;
  84. u32 mib;
  85. u32 rxphyerr;
  86. u32 rx_keycache_miss;
  87. u32 swba;
  88. u32 bmiss;
  89. u32 bnr;
  90. u32 cst;
  91. u32 gtt;
  92. u32 tim;
  93. u32 cabend;
  94. u32 dtimsync;
  95. u32 dtim;
  96. u32 bb_watchdog;
  97. u32 tsfoor;
  98. u32 mci;
  99. u32 gen_timer;
  100. /* Sync-cause stats */
  101. u32 sync_cause_all;
  102. u32 sync_rtc_irq;
  103. u32 sync_mac_irq;
  104. u32 eeprom_illegal_access;
  105. u32 apb_timeout;
  106. u32 pci_mode_conflict;
  107. u32 host1_fatal;
  108. u32 host1_perr;
  109. u32 trcv_fifo_perr;
  110. u32 radm_cpl_ep;
  111. u32 radm_cpl_dllp_abort;
  112. u32 radm_cpl_tlp_abort;
  113. u32 radm_cpl_ecrc_err;
  114. u32 radm_cpl_timeout;
  115. u32 local_timeout;
  116. u32 pm_access;
  117. u32 mac_awake;
  118. u32 mac_asleep;
  119. u32 mac_sleep_access;
  120. };
  121. /**
  122. * struct ath_tx_stats - Statistics about TX
  123. * @tx_pkts_all: No. of total frames transmitted, including ones that
  124. may have had errors.
  125. * @tx_bytes_all: No. of total bytes transmitted, including ones that
  126. may have had errors.
  127. * @queued: Total MPDUs (non-aggr) queued
  128. * @completed: Total MPDUs (non-aggr) completed
  129. * @a_aggr: Total no. of aggregates queued
  130. * @a_queued_hw: Total AMPDUs queued to hardware
  131. * @a_queued_sw: Total AMPDUs queued to software queues
  132. * @a_completed: Total AMPDUs completed
  133. * @a_retries: No. of AMPDUs retried (SW)
  134. * @a_xretries: No. of AMPDUs dropped due to xretries
  135. * @fifo_underrun: FIFO underrun occurrences
  136. Valid only for:
  137. - non-aggregate condition.
  138. - first packet of aggregate.
  139. * @xtxop: No. of frames filtered because of TXOP limit
  140. * @timer_exp: Transmit timer expiry
  141. * @desc_cfg_err: Descriptor configuration errors
  142. * @data_urn: TX data underrun errors
  143. * @delim_urn: TX delimiter underrun errors
  144. * @puttxbuf: Number of times hardware was given txbuf to write.
  145. * @txstart: Number of times hardware was told to start tx.
  146. * @txprocdesc: Number of times tx descriptor was processed
  147. * @txfailed: Out-of-memory or other errors in xmit path.
  148. */
  149. struct ath_tx_stats {
  150. u32 tx_pkts_all;
  151. u32 tx_bytes_all;
  152. u32 queued;
  153. u32 completed;
  154. u32 xretries;
  155. u32 a_aggr;
  156. u32 a_queued_hw;
  157. u32 a_queued_sw;
  158. u32 a_completed;
  159. u32 a_retries;
  160. u32 a_xretries;
  161. u32 fifo_underrun;
  162. u32 xtxop;
  163. u32 timer_exp;
  164. u32 desc_cfg_err;
  165. u32 data_underrun;
  166. u32 delim_underrun;
  167. u32 puttxbuf;
  168. u32 txstart;
  169. u32 txprocdesc;
  170. u32 txfailed;
  171. };
  172. /*
  173. * Various utility macros to print TX/Queue counters.
  174. */
  175. #define PR_QNUM(_n) sc->tx.txq_map[_n]->axq_qnum
  176. #define TXSTATS sc->debug.stats.txstats
  177. #define PR(str, elem) \
  178. do { \
  179. len += snprintf(buf + len, size - len, \
  180. "%s%13u%11u%10u%10u\n", str, \
  181. TXSTATS[PR_QNUM(IEEE80211_AC_BE)].elem, \
  182. TXSTATS[PR_QNUM(IEEE80211_AC_BK)].elem, \
  183. TXSTATS[PR_QNUM(IEEE80211_AC_VI)].elem, \
  184. TXSTATS[PR_QNUM(IEEE80211_AC_VO)].elem); \
  185. } while(0)
  186. #define RX_STAT_INC(c) (sc->debug.stats.rxstats.c++)
  187. /**
  188. * struct ath_rx_stats - RX Statistics
  189. * @rx_pkts_all: No. of total frames received, including ones that
  190. may have had errors.
  191. * @rx_bytes_all: No. of total bytes received, including ones that
  192. may have had errors.
  193. * @crc_err: No. of frames with incorrect CRC value
  194. * @decrypt_crc_err: No. of frames whose CRC check failed after
  195. decryption process completed
  196. * @phy_err: No. of frames whose reception failed because the PHY
  197. encountered an error
  198. * @mic_err: No. of frames with incorrect TKIP MIC verification failure
  199. * @pre_delim_crc_err: Pre-Frame delimiter CRC error detections
  200. * @post_delim_crc_err: Post-Frame delimiter CRC error detections
  201. * @decrypt_busy_err: Decryption interruptions counter
  202. * @phy_err_stats: Individual PHY error statistics
  203. * @rx_len_err: No. of frames discarded due to bad length.
  204. * @rx_oom_err: No. of frames dropped due to OOM issues.
  205. * @rx_rate_err: No. of frames dropped due to rate errors.
  206. * @rx_too_many_frags_err: Frames dropped due to too-many-frags received.
  207. * @rx_beacons: No. of beacons received.
  208. * @rx_frags: No. of rx-fragements received.
  209. * @rx_spectral: No of spectral packets received.
  210. */
  211. struct ath_rx_stats {
  212. u32 rx_pkts_all;
  213. u32 rx_bytes_all;
  214. u32 crc_err;
  215. u32 decrypt_crc_err;
  216. u32 phy_err;
  217. u32 mic_err;
  218. u32 pre_delim_crc_err;
  219. u32 post_delim_crc_err;
  220. u32 decrypt_busy_err;
  221. u32 phy_err_stats[ATH9K_PHYERR_MAX];
  222. u32 rx_len_err;
  223. u32 rx_oom_err;
  224. u32 rx_rate_err;
  225. u32 rx_too_many_frags_err;
  226. u32 rx_beacons;
  227. u32 rx_frags;
  228. u32 rx_spectral;
  229. };
  230. struct ath_stats {
  231. struct ath_interrupt_stats istats;
  232. struct ath_tx_stats txstats[ATH9K_NUM_TX_QUEUES];
  233. struct ath_rx_stats rxstats;
  234. struct ath_dfs_stats dfs_stats;
  235. u32 reset[__RESET_TYPE_MAX];
  236. };
  237. #define ATH_DBG_MAX_SAMPLES 10
  238. struct ath_dbg_bb_mac_samp {
  239. u32 dma_dbg_reg_vals[ATH9K_NUM_DMA_DEBUG_REGS];
  240. u32 pcu_obs, pcu_cr, noise;
  241. struct {
  242. u64 jiffies;
  243. int8_t rssi_ctl0;
  244. int8_t rssi_ctl1;
  245. int8_t rssi_ctl2;
  246. int8_t rssi_ext0;
  247. int8_t rssi_ext1;
  248. int8_t rssi_ext2;
  249. int8_t rssi;
  250. bool isok;
  251. u8 rts_fail_cnt;
  252. u8 data_fail_cnt;
  253. u8 rateindex;
  254. u8 qid;
  255. u8 tid;
  256. u32 ba_low;
  257. u32 ba_high;
  258. } ts[ATH_DBG_MAX_SAMPLES];
  259. struct {
  260. u64 jiffies;
  261. int8_t rssi_ctl0;
  262. int8_t rssi_ctl1;
  263. int8_t rssi_ctl2;
  264. int8_t rssi_ext0;
  265. int8_t rssi_ext1;
  266. int8_t rssi_ext2;
  267. int8_t rssi;
  268. bool is_mybeacon;
  269. u8 antenna;
  270. u8 rate;
  271. } rs[ATH_DBG_MAX_SAMPLES];
  272. struct ath_cycle_counters cc;
  273. struct ath9k_nfcal_hist nfCalHist[NUM_NF_READINGS];
  274. };
  275. struct ath9k_debug {
  276. struct dentry *debugfs_phy;
  277. u32 regidx;
  278. struct ath_stats stats;
  279. #ifdef CONFIG_ATH9K_MAC_DEBUG
  280. spinlock_t samp_lock;
  281. struct ath_dbg_bb_mac_samp bb_mac_samp[ATH_DBG_MAX_SAMPLES];
  282. u8 sampidx;
  283. u8 tsidx;
  284. u8 rsidx;
  285. #endif
  286. };
  287. int ath9k_init_debug(struct ath_hw *ah);
  288. void ath_debug_stat_interrupt(struct ath_softc *sc, enum ath9k_int status);
  289. void ath_debug_stat_tx(struct ath_softc *sc, struct ath_buf *bf,
  290. struct ath_tx_status *ts, struct ath_txq *txq,
  291. unsigned int flags);
  292. void ath_debug_stat_rx(struct ath_softc *sc, struct ath_rx_status *rs);
  293. int ath9k_get_et_sset_count(struct ieee80211_hw *hw,
  294. struct ieee80211_vif *vif, int sset);
  295. void ath9k_get_et_stats(struct ieee80211_hw *hw,
  296. struct ieee80211_vif *vif,
  297. struct ethtool_stats *stats, u64 *data);
  298. void ath9k_get_et_strings(struct ieee80211_hw *hw,
  299. struct ieee80211_vif *vif,
  300. u32 sset, u8 *data);
  301. void ath9k_sta_add_debugfs(struct ieee80211_hw *hw,
  302. struct ieee80211_vif *vif,
  303. struct ieee80211_sta *sta,
  304. struct dentry *dir);
  305. void ath9k_sta_remove_debugfs(struct ieee80211_hw *hw,
  306. struct ieee80211_vif *vif,
  307. struct ieee80211_sta *sta,
  308. struct dentry *dir);
  309. void ath_debug_send_fft_sample(struct ath_softc *sc,
  310. struct fft_sample_tlv *fft_sample);
  311. #else
  312. #define RX_STAT_INC(c) /* NOP */
  313. static inline int ath9k_init_debug(struct ath_hw *ah)
  314. {
  315. return 0;
  316. }
  317. static inline void ath_debug_stat_interrupt(struct ath_softc *sc,
  318. enum ath9k_int status)
  319. {
  320. }
  321. static inline void ath_debug_stat_tx(struct ath_softc *sc,
  322. struct ath_buf *bf,
  323. struct ath_tx_status *ts,
  324. struct ath_txq *txq,
  325. unsigned int flags)
  326. {
  327. }
  328. static inline void ath_debug_stat_rx(struct ath_softc *sc,
  329. struct ath_rx_status *rs)
  330. {
  331. }
  332. #endif /* CONFIG_ATH9K_DEBUGFS */
  333. #ifdef CONFIG_ATH9K_MAC_DEBUG
  334. void ath9k_debug_samp_bb_mac(struct ath_softc *sc);
  335. #else
  336. static inline void ath9k_debug_samp_bb_mac(struct ath_softc *sc)
  337. {
  338. }
  339. #endif
  340. #endif /* DEBUG_H */