blob: 0facaca9b40b66125c467084f615d47b4056ebd4 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatre1f447802010-01-15 13:43:41 -08003 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * Portions of this file are derived from the ipw3945 project.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
19 *
20 * The full GNU General Public License is included in this distribution in the
21 * file called LICENSE.
22 *
23 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080024 * Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -070025 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26 *
27 *****************************************************************************/
28
Tomas Winkler0a6857e2008-03-12 16:58:49 -070029#ifndef __iwl_debug_h__
30#define __iwl_debug_h__
Zhu Yib481de92007-09-25 17:54:57 -070031
Samuel Ortiz40b8ec02008-12-19 10:37:08 +080032struct iwl_priv;
Reinette Chatrea562a9d2009-07-17 09:30:24 -070033extern u32 iwl_debug_level;
Samuel Ortiz40b8ec02008-12-19 10:37:08 +080034
Tomas Winkler978785a2008-12-19 10:37:31 +080035#define IWL_ERR(p, f, a...) dev_err(&((p)->pci_dev->dev), f, ## a)
36#define IWL_WARN(p, f, a...) dev_warn(&((p)->pci_dev->dev), f, ## a)
37#define IWL_INFO(p, f, a...) dev_info(&((p)->pci_dev->dev), f, ## a)
38#define IWL_CRIT(p, f, a...) dev_crit(&((p)->pci_dev->dev), f, ## a)
39
Reinette Chatre68021b92009-06-26 11:00:54 -070040#define iwl_print_hex_error(priv, p, len) \
41do { \
42 print_hex_dump(KERN_ERR, "iwl data: ", \
43 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
44} while (0)
45
Tomas Winkler0a6857e2008-03-12 16:58:49 -070046#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winklere1623442009-01-27 14:27:56 -080047#define IWL_DEBUG(__priv, level, fmt, args...) \
48do { \
Reinette Chatre3d816c72009-08-07 15:41:37 -070049 if (iwl_get_debug_level(__priv) & (level)) \
Tomas Winklere1623442009-01-27 14:27:56 -080050 dev_printk(KERN_ERR, &(__priv->hw->wiphy->dev), \
51 "%c %s " fmt, in_interrupt() ? 'I' : 'U', \
52 __func__ , ## args); \
Wu Fengguangd2bf5582008-12-19 10:37:23 +080053} while (0)
Zhu Yib481de92007-09-25 17:54:57 -070054
Tomas Winklere1623442009-01-27 14:27:56 -080055#define IWL_DEBUG_LIMIT(__priv, level, fmt, args...) \
56do { \
Reinette Chatre3d816c72009-08-07 15:41:37 -070057 if ((iwl_get_debug_level(__priv) & (level)) && net_ratelimit()) \
Tomas Winklere1623442009-01-27 14:27:56 -080058 dev_printk(KERN_ERR, &(__priv->hw->wiphy->dev), \
59 "%c %s " fmt, in_interrupt() ? 'I' : 'U', \
60 __func__ , ## args); \
Wu Fengguangd2bf5582008-12-19 10:37:23 +080061} while (0)
Tomas Winkler17744ff2008-03-02 01:52:00 +020062
Reinette Chatre3d816c72009-08-07 15:41:37 -070063#define iwl_print_hex_dump(priv, level, p, len) \
Winkler, Tomascb299bae2008-11-07 09:58:43 -080064do { \
Reinette Chatre3d816c72009-08-07 15:41:37 -070065 if (iwl_get_debug_level(priv) & level) \
Winkler, Tomascb299bae2008-11-07 09:58:43 -080066 print_hex_dump(KERN_DEBUG, "iwl data: ", \
67 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
68} while (0)
69
Tomas Winkler712b6cf2008-03-12 16:58:52 -070070#ifdef CONFIG_IWLWIFI_DEBUGFS
71struct iwl_debugfs {
72 const char *name;
73 struct dentry *dir_drv;
74 struct dentry *dir_data;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -070075 struct dentry *dir_debug;
Tomas Winkler445c2df2008-05-15 13:54:16 +080076 struct dentry *dir_rf;
77 struct dir_data_files {
Tomas Winkler712b6cf2008-03-12 16:58:52 -070078 struct dentry *file_sram;
Wey-Yi Guy0848e292009-05-22 11:01:46 -070079 struct dentry *file_nvm;
Tomas Winkler712b6cf2008-03-12 16:58:52 -070080 struct dentry *file_stations;
Ester Kummer189a2b52008-05-15 13:54:18 +080081 struct dentry *file_log_event;
Winkler, Tomasd366df52008-12-02 12:14:01 -080082 struct dentry *file_channels;
Winkler, Tomas2ddfa122008-12-22 11:31:20 +080083 struct dentry *file_status;
Wey-Yi Guya83b9142009-04-08 11:39:32 -070084 struct dentry *file_interrupt;
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -070085 struct dentry *file_qos;
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -070086 struct dentry *file_thermal_throttling;
Wey-Yi Guya283c012009-07-17 09:30:19 -070087 struct dentry *file_led;
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -070088 struct dentry *file_disable_ht40;
Johannes Berge312c242009-08-07 15:41:51 -070089 struct dentry *file_sleep_level_override;
90 struct dentry *file_current_sleep_command;
Tomas Winkler712b6cf2008-03-12 16:58:52 -070091 } dbgfs_data_files;
Tomas Winkler445c2df2008-05-15 13:54:16 +080092 struct dir_rf_files {
Tomas Winkler445c2df2008-05-15 13:54:16 +080093 struct dentry *file_disable_sensitivity;
94 struct dentry *file_disable_chain_noise;
Emmanuel Grumbach203566f2008-06-12 09:46:54 +080095 struct dentry *file_disable_tx_power;
Tomas Winkler445c2df2008-05-15 13:54:16 +080096 } dbgfs_rf_files;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -070097 struct dir_debug_files {
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -070098 struct dentry *file_rx_statistics;
99 struct dentry *file_tx_statistics;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700100 struct dentry *file_traffic_log;
Wey-Yi Guy141b03e2009-08-07 15:41:41 -0700101 struct dentry *file_rx_queue;
102 struct dentry *file_tx_queue;
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -0700103 struct dentry *file_ucode_rx_stats;
104 struct dentry *file_ucode_tx_stats;
105 struct dentry *file_ucode_general_stats;
Wey-Yi Guy52259352009-08-07 15:41:43 -0700106 struct dentry *file_sensitivity;
107 struct dentry *file_chain_noise;
Wey-Yi Guyf204b242009-08-21 13:34:19 -0700108 struct dentry *file_tx_power;
Wey-Yi Guyc09430a2009-10-16 14:25:50 -0700109 struct dentry *file_power_save_status;
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -0800110 struct dentry *file_clear_ucode_statistics;
111 struct dentry *file_clear_traffic_statistics;
Wey-Yi Guy696bdee2009-12-10 14:37:25 -0800112 struct dentry *file_csr;
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -0800113 struct dentry *file_ucode_tracing;
Wey-Yi Guy1b3eb822010-01-15 13:43:39 -0800114 struct dentry *file_fh_reg;
Wey-Yi Guy20594eb2009-08-07 15:41:39 -0700115 } dbgfs_debug_files;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700116 u32 sram_offset;
117 u32 sram_len;
118};
119
120int iwl_dbgfs_register(struct iwl_priv *priv, const char *name);
121void iwl_dbgfs_unregister(struct iwl_priv *priv);
122#endif
123
124#else
Tomas Winklere1623442009-01-27 14:27:56 -0800125#define IWL_DEBUG(__priv, level, fmt, args...)
126#define IWL_DEBUG_LIMIT(__priv, level, fmt, args...)
Reinette Chatre3d816c72009-08-07 15:41:37 -0700127static inline void iwl_print_hex_dump(struct iwl_priv *priv, int level,
128 void *p, u32 len)
Winkler, Tomascb299bae2008-11-07 09:58:43 -0800129{}
Tomas Winkler0a6857e2008-03-12 16:58:49 -0700130#endif /* CONFIG_IWLWIFI_DEBUG */
Zhu Yib481de92007-09-25 17:54:57 -0700131
Tomas Winkler17744ff2008-03-02 01:52:00 +0200132
133
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700134#ifndef CONFIG_IWLWIFI_DEBUGFS
135static inline int iwl_dbgfs_register(struct iwl_priv *priv, const char *name)
136{
137 return 0;
138}
139static inline void iwl_dbgfs_unregister(struct iwl_priv *priv)
140{
141}
142#endif /* CONFIG_IWLWIFI_DEBUGFS */
143
Zhu Yib481de92007-09-25 17:54:57 -0700144/*
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800145 * To use the debug system:
Zhu Yib481de92007-09-25 17:54:57 -0700146 *
147 * If you are defining a new debug classification, simply add it to the #define
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800148 * list here in the form of
Zhu Yib481de92007-09-25 17:54:57 -0700149 *
150 * #define IWL_DL_xxxx VALUE
151 *
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800152 * where xxxx should be the name of the classification (for example, WEP).
Zhu Yib481de92007-09-25 17:54:57 -0700153 *
154 * You then need to either add a IWL_xxxx_DEBUG() macro definition for your
155 * classification, or use IWL_DEBUG(IWL_DL_xxxx, ...) whenever you want
156 * to send output to that classification.
157 *
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800158 * The active debug levels can be accessed via files
Zhu Yib481de92007-09-25 17:54:57 -0700159 *
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800160 * /sys/module/iwlagn/parameters/debug{50}
161 * /sys/class/net/wlan0/device/debug_level
Zhu Yib481de92007-09-25 17:54:57 -0700162 *
Wu, Fengguangc3a739f2008-12-17 16:52:29 +0800163 * when CONFIG_IWLWIFI_DEBUG=y.
Zhu Yib481de92007-09-25 17:54:57 -0700164 */
165
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800166/* 0x0000000F - 0x00000001 */
Esti Kummerded2ae72008-08-04 16:00:45 +0800167#define IWL_DL_INFO (1 << 0)
168#define IWL_DL_MAC80211 (1 << 1)
169#define IWL_DL_HCMD (1 << 2)
170#define IWL_DL_STATE (1 << 3)
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800171/* 0x000000F0 - 0x00000010 */
Tomas Winklerf3674222008-08-04 16:00:44 +0800172#define IWL_DL_MACDUMP (1 << 4)
Esti Kummerded2ae72008-08-04 16:00:45 +0800173#define IWL_DL_HCMD_DUMP (1 << 5)
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800174#define IWL_DL_RADIO (1 << 7)
Zhu Yi146846a2008-12-19 10:37:30 +0800175/* 0x00000F00 - 0x00000100 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800176#define IWL_DL_POWER (1 << 8)
177#define IWL_DL_TEMP (1 << 9)
178#define IWL_DL_NOTIF (1 << 10)
179#define IWL_DL_SCAN (1 << 11)
Zhu Yi146846a2008-12-19 10:37:30 +0800180/* 0x0000F000 - 0x00001000 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800181#define IWL_DL_ASSOC (1 << 12)
182#define IWL_DL_DROP (1 << 13)
183#define IWL_DL_TXPOWER (1 << 14)
184#define IWL_DL_AP (1 << 15)
Zhu Yi146846a2008-12-19 10:37:30 +0800185/* 0x000F0000 - 0x00010000 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800186#define IWL_DL_FW (1 << 16)
187#define IWL_DL_RF_KILL (1 << 17)
188#define IWL_DL_FW_ERRORS (1 << 18)
189#define IWL_DL_LED (1 << 19)
Zhu Yi146846a2008-12-19 10:37:30 +0800190/* 0x00F00000 - 0x00100000 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800191#define IWL_DL_RATE (1 << 20)
192#define IWL_DL_CALIB (1 << 21)
193#define IWL_DL_WEP (1 << 22)
194#define IWL_DL_TX (1 << 23)
Zhu Yi146846a2008-12-19 10:37:30 +0800195/* 0x0F000000 - 0x01000000 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800196#define IWL_DL_RX (1 << 24)
197#define IWL_DL_ISR (1 << 25)
198#define IWL_DL_HT (1 << 26)
199#define IWL_DL_IO (1 << 27)
Zhu Yi146846a2008-12-19 10:37:30 +0800200/* 0xF0000000 - 0x10000000 */
Wu Fengguangd2bf5582008-12-19 10:37:23 +0800201#define IWL_DL_11H (1 << 28)
202#define IWL_DL_STATS (1 << 29)
203#define IWL_DL_TX_REPLY (1 << 30)
204#define IWL_DL_QOS (1 << 31)
Zhu Yib481de92007-09-25 17:54:57 -0700205
Tomas Winklere1623442009-01-27 14:27:56 -0800206#define IWL_DEBUG_INFO(p, f, a...) IWL_DEBUG(p, IWL_DL_INFO, f, ## a)
207#define IWL_DEBUG_MAC80211(p, f, a...) IWL_DEBUG(p, IWL_DL_MAC80211, f, ## a)
208#define IWL_DEBUG_MACDUMP(p, f, a...) IWL_DEBUG(p, IWL_DL_MACDUMP, f, ## a)
209#define IWL_DEBUG_TEMP(p, f, a...) IWL_DEBUG(p, IWL_DL_TEMP, f, ## a)
210#define IWL_DEBUG_SCAN(p, f, a...) IWL_DEBUG(p, IWL_DL_SCAN, f, ## a)
211#define IWL_DEBUG_RX(p, f, a...) IWL_DEBUG(p, IWL_DL_RX, f, ## a)
212#define IWL_DEBUG_TX(p, f, a...) IWL_DEBUG(p, IWL_DL_TX, f, ## a)
213#define IWL_DEBUG_ISR(p, f, a...) IWL_DEBUG(p, IWL_DL_ISR, f, ## a)
214#define IWL_DEBUG_LED(p, f, a...) IWL_DEBUG(p, IWL_DL_LED, f, ## a)
215#define IWL_DEBUG_WEP(p, f, a...) IWL_DEBUG(p, IWL_DL_WEP, f, ## a)
216#define IWL_DEBUG_HC(p, f, a...) IWL_DEBUG(p, IWL_DL_HCMD, f, ## a)
217#define IWL_DEBUG_HC_DUMP(p, f, a...) IWL_DEBUG(p, IWL_DL_HCMD_DUMP, f, ## a)
218#define IWL_DEBUG_CALIB(p, f, a...) IWL_DEBUG(p, IWL_DL_CALIB, f, ## a)
219#define IWL_DEBUG_FW(p, f, a...) IWL_DEBUG(p, IWL_DL_FW, f, ## a)
220#define IWL_DEBUG_RF_KILL(p, f, a...) IWL_DEBUG(p, IWL_DL_RF_KILL, f, ## a)
221#define IWL_DEBUG_DROP(p, f, a...) IWL_DEBUG(p, IWL_DL_DROP, f, ## a)
222#define IWL_DEBUG_DROP_LIMIT(p, f, a...) \
223 IWL_DEBUG_LIMIT(p, IWL_DL_DROP, f, ## a)
224#define IWL_DEBUG_AP(p, f, a...) IWL_DEBUG(p, IWL_DL_AP, f, ## a)
225#define IWL_DEBUG_TXPOWER(p, f, a...) IWL_DEBUG(p, IWL_DL_TXPOWER, f, ## a)
226#define IWL_DEBUG_IO(p, f, a...) IWL_DEBUG(p, IWL_DL_IO, f, ## a)
227#define IWL_DEBUG_RATE(p, f, a...) IWL_DEBUG(p, IWL_DL_RATE, f, ## a)
228#define IWL_DEBUG_RATE_LIMIT(p, f, a...) \
229 IWL_DEBUG_LIMIT(p, IWL_DL_RATE, f, ## a)
230#define IWL_DEBUG_NOTIF(p, f, a...) IWL_DEBUG(p, IWL_DL_NOTIF, f, ## a)
231#define IWL_DEBUG_ASSOC(p, f, a...) \
232 IWL_DEBUG(p, IWL_DL_ASSOC | IWL_DL_INFO, f, ## a)
233#define IWL_DEBUG_ASSOC_LIMIT(p, f, a...) \
234 IWL_DEBUG_LIMIT(p, IWL_DL_ASSOC | IWL_DL_INFO, f, ## a)
235#define IWL_DEBUG_HT(p, f, a...) IWL_DEBUG(p, IWL_DL_HT, f, ## a)
236#define IWL_DEBUG_STATS(p, f, a...) IWL_DEBUG(p, IWL_DL_STATS, f, ## a)
237#define IWL_DEBUG_STATS_LIMIT(p, f, a...) \
238 IWL_DEBUG_LIMIT(p, IWL_DL_STATS, f, ## a)
239#define IWL_DEBUG_TX_REPLY(p, f, a...) IWL_DEBUG(p, IWL_DL_TX_REPLY, f, ## a)
240#define IWL_DEBUG_TX_REPLY_LIMIT(p, f, a...) \
241 IWL_DEBUG_LIMIT(p, IWL_DL_TX_REPLY, f, ## a)
242#define IWL_DEBUG_QOS(p, f, a...) IWL_DEBUG(p, IWL_DL_QOS, f, ## a)
243#define IWL_DEBUG_RADIO(p, f, a...) IWL_DEBUG(p, IWL_DL_RADIO, f, ## a)
244#define IWL_DEBUG_POWER(p, f, a...) IWL_DEBUG(p, IWL_DL_POWER, f, ## a)
245#define IWL_DEBUG_11H(p, f, a...) IWL_DEBUG(p, IWL_DL_11H, f, ## a)
Zhu Yib481de92007-09-25 17:54:57 -0700246
247#endif