debug.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2012 Realtek Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * The full GNU General Public License is included in this distribution in the
  15. * file called LICENSE.
  16. *
  17. * Contact Information:
  18. * wlanfae <wlanfae@realtek.com>
  19. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  20. * Hsinchu 300, Taiwan.
  21. *
  22. * Larry Finger <Larry.Finger@lwfinger.net>
  23. *****************************************************************************/
  24. #include "wifi.h"
  25. #include <linux/moduleparam.h>
  26. void rtl_dbgp_flag_init(struct ieee80211_hw *hw)
  27. {
  28. struct rtl_priv *rtlpriv = rtl_priv(hw);
  29. u8 i;
  30. rtlpriv->dbg.global_debugcomponents =
  31. COMP_ERR | COMP_FW | COMP_INIT | COMP_RECV | COMP_SEND |
  32. COMP_MLME | COMP_SCAN | COMP_INTR | COMP_LED | COMP_SEC |
  33. COMP_BEACON | COMP_RATE | COMP_RXDESC | COMP_DIG | COMP_TXAGC |
  34. COMP_POWER | COMP_POWER_TRACKING | COMP_BB_POWERSAVING | COMP_SWAS |
  35. COMP_RF | COMP_TURBO | COMP_RATR | COMP_CMD |
  36. COMP_EFUSE | COMP_QOS | COMP_MAC80211 | COMP_REGD | COMP_CHAN |
  37. COMP_EASY_CONCURRENT | COMP_EFUSE | COMP_QOS | COMP_MAC80211 |
  38. COMP_REGD | COMP_CHAN | COMP_BT_COEXIST;
  39. for (i = 0; i < DBGP_TYPE_MAX; i++)
  40. rtlpriv->dbg.dbgp_type[i] = 0;
  41. /*Init Debug flag enable condition */
  42. }
  43. EXPORT_SYMBOL_GPL(rtl_dbgp_flag_init);
  44. #ifdef CONFIG_RTLWIFI_DEBUG
  45. void _rtl_dbg_trace(struct rtl_priv *rtlpriv, int comp, int level,
  46. const char *modname, const char *fmt, ...)
  47. {
  48. if (unlikely((comp & rtlpriv->dbg.global_debugcomponents) &&
  49. (level <= rtlpriv->dbg.global_debuglevel))) {
  50. struct va_format vaf;
  51. va_list args;
  52. va_start(args, fmt);
  53. vaf.fmt = fmt;
  54. vaf.va = &args;
  55. printk(KERN_DEBUG "%s:%ps:<%lx-%x> %pV",
  56. modname, __builtin_return_address(0),
  57. in_interrupt(), in_atomic(),
  58. &vaf);
  59. va_end(args);
  60. }
  61. }
  62. EXPORT_SYMBOL_GPL(_rtl_dbg_trace);
  63. #endif