dfs_debug.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (c) 2008-2011 Atheros Communications Inc.
  3. * Copyright (c) 2011 Neratec Solutions AG
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #ifndef ATH9K_DFS_DEBUG_H
  18. #define ATH9K_DFS_DEBUG_H
  19. #include "hw.h"
  20. struct ath_softc;
  21. /**
  22. * struct ath_dfs_stats - DFS Statistics per wiphy
  23. * @pulses_total: pulses reported by HW
  24. * @pulses_no_dfs: pulses wrongly reported as DFS
  25. * @pulses_detected: pulses detected so far
  26. * @datalen_discards: pulses discarded due to invalid datalen
  27. * @rssi_discards: pulses discarded due to invalid RSSI
  28. * @bwinfo_discards: pulses discarded due to invalid BW info
  29. * @pri_phy_errors: pulses reported for primary channel
  30. * @ext_phy_errors: pulses reported for extension channel
  31. * @dc_phy_errors: pulses reported for primary + extension channel
  32. * @pulses_processed: pulses forwarded to detector
  33. * @radar_detected: radars detected
  34. */
  35. struct ath_dfs_stats {
  36. /* pulse stats */
  37. u32 pulses_total;
  38. u32 pulses_no_dfs;
  39. u32 pulses_detected;
  40. u32 datalen_discards;
  41. u32 rssi_discards;
  42. u32 bwinfo_discards;
  43. u32 pri_phy_errors;
  44. u32 ext_phy_errors;
  45. u32 dc_phy_errors;
  46. /* pattern detection stats */
  47. u32 pulses_processed;
  48. u32 radar_detected;
  49. };
  50. #if defined(CONFIG_ATH9K_DFS_DEBUGFS)
  51. #define DFS_STAT_INC(sc, c) (sc->debug.stats.dfs_stats.c++)
  52. void ath9k_dfs_init_debug(struct ath_softc *sc);
  53. extern struct ath_dfs_pool_stats global_dfs_pool_stats;
  54. #else
  55. #define DFS_STAT_INC(sc, c) do { } while (0)
  56. static inline void ath9k_dfs_init_debug(struct ath_softc *sc) { }
  57. #endif /* CONFIG_ATH9K_DFS_DEBUGFS */
  58. #endif /* ATH9K_DFS_DEBUG_H */