blob: 534c224440e112d09b8e806334d7b469979b665c [file] [log] [blame]
Larry Finger0c817332010-12-08 11:12:31 -06001/******************************************************************************
2 *
Larry Fingera8d76062012-01-07 20:46:42 -06003 * Copyright(c) 2009-2012 Realtek Corporation.
Larry Finger0c817332010-12-08 11:12:31 -06004 *
Larry Fingerf3a97e92014-09-22 09:39:24 -05005 * This program is free software; you can redistribute it and/or modify it
Larry Finger0c817332010-12-08 11:12:31 -06006 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
Larry Fingerf3a97e92014-09-22 09:39:24 -05009 * This program is distributed in the hope that it will be useful, but WITHOUT
Larry Finger0c817332010-12-08 11:12:31 -060010 * 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 *
Larry Fingerf3a97e92014-09-22 09:39:24 -050014 * The full GNU General Public License is included in this distribution in the
Larry Finger0c817332010-12-08 11:12:31 -060015 * 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
25#ifndef __RTL_DEBUG_H__
26#define __RTL_DEBUG_H__
27
28/*--------------------------------------------------------------
29 Debug level
30--------------------------------------------------------------*/
31/*
32 *Fatal bug.
33 *For example, Tx/Rx/IO locked up,
34 *memory access violation,
35 *resource allocation failed,
36 *unexpected HW behavior, HW BUG
37 *and so on.
38 */
39#define DBG_EMERG 0
40
41/*
42 *Abnormal, rare, or unexpeted cases.
43 *For example, Packet/IO Ctl canceled,
44 *device suprisely unremoved and so on.
45 */
46#define DBG_WARNING 2
47
48/*
49 *Normal case driver developer should
50 *open, we can see link status like
51 *assoc/AddBA/DHCP/adapter start and
52 *so on basic and useful infromations.
53 */
54#define DBG_DMESG 3
55
56/*
57 *Normal case with useful information
58 *about current SW or HW state.
59 *For example, Tx/Rx descriptor to fill,
60 *Tx/Rx descriptor completed status,
61 *SW protocol state change, dynamic
62 *mechanism state change and so on.
63 */
64#define DBG_LOUD 4
65
66/*
67 *Normal case with detail execution
68 *flow or information.
69 */
70#define DBG_TRACE 5
71
72/*--------------------------------------------------------------
73 Define the rt_trace components
74--------------------------------------------------------------*/
75#define COMP_ERR BIT(0)
76#define COMP_FW BIT(1)
77#define COMP_INIT BIT(2) /*For init/deinit */
78#define COMP_RECV BIT(3) /*For Rx. */
79#define COMP_SEND BIT(4) /*For Tx. */
80#define COMP_MLME BIT(5) /*For MLME. */
81#define COMP_SCAN BIT(6) /*For Scan. */
82#define COMP_INTR BIT(7) /*For interrupt Related. */
83#define COMP_LED BIT(8) /*For LED. */
84#define COMP_SEC BIT(9) /*For sec. */
85#define COMP_BEACON BIT(10) /*For beacon. */
86#define COMP_RATE BIT(11) /*For rate. */
87#define COMP_RXDESC BIT(12) /*For rx desc. */
88#define COMP_DIG BIT(13) /*For DIG */
89#define COMP_TXAGC BIT(14) /*For Tx power */
90#define COMP_HIPWR BIT(15) /*For High Power Mechanism */
91#define COMP_POWER BIT(16) /*For lps/ips/aspm. */
92#define COMP_POWER_TRACKING BIT(17) /*For TX POWER TRACKING */
93#define COMP_BB_POWERSAVING BIT(18)
94#define COMP_SWAS BIT(19) /*For SW Antenna Switch */
95#define COMP_RF BIT(20) /*For RF. */
96#define COMP_TURBO BIT(21) /*For EDCA TURBO. */
97#define COMP_RATR BIT(22)
98#define COMP_CMD BIT(23)
99#define COMP_EFUSE BIT(24)
100#define COMP_QOS BIT(25)
101#define COMP_MAC80211 BIT(26)
102#define COMP_REGD BIT(27)
103#define COMP_CHAN BIT(28)
Larry Finger62e63972011-02-11 14:27:46 -0600104#define COMP_USB BIT(29)
Larry Fingera2905932012-10-25 13:46:45 -0500105#define COMP_EASY_CONCURRENT COMP_USB /* reuse of this bit is OK */
106#define COMP_BT_COEXIST BIT(30)
Larry Finger0c817332010-12-08 11:12:31 -0600107
108/*--------------------------------------------------------------
109 Define the rt_print components
110--------------------------------------------------------------*/
111/* Define EEPROM and EFUSE check module bit*/
112#define EEPROM_W BIT(0)
113#define EFUSE_PG BIT(1)
Larry Fingere6deaf82013-03-24 22:06:55 -0500114#define EFUSE_READ_ALL BIT(2)
Larry Finger0c817332010-12-08 11:12:31 -0600115
116/* Define init check for module bit*/
117#define INIT_EEPROM BIT(0)
Larry Fingere6deaf82013-03-24 22:06:55 -0500118#define INIT_TXPOWER BIT(1)
Larry Finger0c817332010-12-08 11:12:31 -0600119#define INIT_IQK BIT(2)
120#define INIT_RF BIT(3)
121
122/* Define PHY-BB/RF/MAC check module bit */
123#define PHY_BBR BIT(0)
124#define PHY_BBW BIT(1)
125#define PHY_RFR BIT(2)
126#define PHY_RFW BIT(3)
127#define PHY_MACR BIT(4)
128#define PHY_MACW BIT(5)
129#define PHY_ALLR BIT(6)
130#define PHY_ALLW BIT(7)
131#define PHY_TXPWR BIT(8)
132#define PHY_PWRDIFF BIT(9)
133
Larry Finger26634c42013-03-24 22:06:33 -0500134/* Define Dynamic Mechanism check module bit --> FDM */
135#define WA_IOT BIT(0)
136#define DM_PWDB BIT(1)
137#define DM_MONITOR BIT(2)
138#define DM_DIG BIT(3)
139#define DM_EDCA_TURBO BIT(4)
140
Larry Fingere6deaf82013-03-24 22:06:55 -0500141#define DM_PWDB BIT(1)
142
Larry Finger0c817332010-12-08 11:12:31 -0600143enum dbgp_flag_e {
144 FQOS = 0,
145 FTX = 1,
146 FRX = 2,
147 FSEC = 3,
148 FMGNT = 4,
149 FMLME = 5,
150 FRESOURCE = 6,
151 FBEACON = 7,
152 FISR = 8,
153 FPHY = 9,
154 FMP = 10,
155 FEEPROM = 11,
156 FPWR = 12,
157 FDM = 13,
158 FDBGCtrl = 14,
159 FC2H = 15,
160 FBT = 16,
161 FINIT = 17,
162 FIOCTL = 18,
163 DBGP_TYPE_MAX
164};
165
Joe Perches481b9602012-01-05 08:29:07 -0800166#ifdef CONFIG_RTLWIFI_DEBUG
167
Joe Perches9d833ed2012-01-04 19:40:43 -0800168#define RT_ASSERT(_exp, fmt, ...) \
Joe Perches884dd242012-01-04 19:40:39 -0800169do { \
170 if (!(_exp)) { \
Joe Perches9d833ed2012-01-04 19:40:43 -0800171 printk(KERN_DEBUG KBUILD_MODNAME ":%s(): " fmt, \
172 __func__, ##__VA_ARGS__); \
Joe Perches884dd242012-01-04 19:40:39 -0800173 } \
174} while (0)
Larry Finger0c817332010-12-08 11:12:31 -0600175
Joe Perchesf30d7502012-01-04 19:40:41 -0800176#define RT_TRACE(rtlpriv, comp, level, fmt, ...) \
Joe Perches884dd242012-01-04 19:40:39 -0800177do { \
178 if (unlikely(((comp) & rtlpriv->dbg.global_debugcomponents) && \
179 ((level) <= rtlpriv->dbg.global_debuglevel))) { \
Joe Perchesf56e7eb2012-01-04 19:40:45 -0800180 printk(KERN_DEBUG KBUILD_MODNAME ":%s():<%lx-%x> " fmt, \
181 __func__, in_interrupt(), in_atomic(), \
182 ##__VA_ARGS__); \
Joe Perches884dd242012-01-04 19:40:39 -0800183 } \
184} while (0)
Larry Finger0c817332010-12-08 11:12:31 -0600185
Joe Perches4c488692012-01-04 19:40:42 -0800186#define RTPRINT(rtlpriv, dbgtype, dbgflag, fmt, ...) \
Joe Perches884dd242012-01-04 19:40:39 -0800187do { \
188 if (unlikely(rtlpriv->dbg.dbgp_type[dbgtype] & dbgflag)) { \
Joe Perches4c488692012-01-04 19:40:42 -0800189 printk(KERN_DEBUG KBUILD_MODNAME ": " fmt, \
190 ##__VA_ARGS__); \
Joe Perches884dd242012-01-04 19:40:39 -0800191 } \
192} while (0)
Larry Finger0c817332010-12-08 11:12:31 -0600193
Joe Perches884dd242012-01-04 19:40:39 -0800194#define RT_PRINT_DATA(rtlpriv, _comp, _level, _titlestring, _hexdata, \
195 _hexdatalen) \
196do { \
197 if (unlikely(((_comp) & rtlpriv->dbg.global_debugcomponents) && \
198 (_level <= rtlpriv->dbg.global_debuglevel))) { \
Joe Perchesaf086872012-01-04 19:40:40 -0800199 printk(KERN_DEBUG "%s: In process \"%s\" (pid %i): %s\n", \
200 KBUILD_MODNAME, current->comm, current->pid, \
201 _titlestring); \
Joe Perches884dd242012-01-04 19:40:39 -0800202 print_hex_dump_bytes("", DUMP_PREFIX_NONE, \
203 _hexdata, _hexdatalen); \
204 } \
205} while (0)
Larry Finger0c817332010-12-08 11:12:31 -0600206
Joe Perches481b9602012-01-05 08:29:07 -0800207#else
208
209struct rtl_priv;
210
211__printf(2, 3)
212static inline void RT_ASSERT(int exp, const char *fmt, ...)
213{
214}
215
216__printf(4, 5)
217static inline void RT_TRACE(struct rtl_priv *rtlpriv,
218 int comp, int level,
219 const char *fmt, ...)
220{
221}
222
223__printf(4, 5)
224static inline void RTPRINT(struct rtl_priv *rtlpriv,
225 int dbgtype, int dbgflag,
226 const char *fmt, ...)
227{
228}
229
230static inline void RT_PRINT_DATA(struct rtl_priv *rtlpriv,
231 int comp, int level,
232 const char *titlestring,
233 const void *hexdata, size_t hexdatalen)
234{
235}
236
237#endif
238
Larry Finger0c817332010-12-08 11:12:31 -0600239void rtl_dbgp_flag_init(struct ieee80211_hw *hw);
240#endif