blob: d0c63cfee15c144946e7f6517e88e51427cb1534 [file] [log] [blame]
Tomas Winkler712b6cf2008-03-12 16:58:52 -07001/******************************************************************************
2 *
3 * GPL LICENSE SUMMARY
4 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07005 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
Tomas Winkler712b6cf2008-03-12 16:58:52 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it 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
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
19 * USA
20 *
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080025 * Intel Linux Wireless <ilw@linux.intel.com>
Tomas Winkler712b6cf2008-03-12 16:58:52 -070026 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
27 *****************************************************************************/
28
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Tomas Winkler712b6cf2008-03-12 16:58:52 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/debugfs.h>
33
34#include <linux/ieee80211.h>
35#include <net/mac80211.h>
36
37
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070038#include "iwl-dev.h"
Tomas Winkler712b6cf2008-03-12 16:58:52 -070039#include "iwl-debug.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070040#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070041#include "iwl-io.h"
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -070042#include "iwl-agn.h"
Tomas Winkler712b6cf2008-03-12 16:58:52 -070043
44/* create and remove of files */
Johannes Berg4c84a8f2010-01-22 14:22:54 -080045#define DEBUGFS_ADD_FILE(name, parent, mode) do { \
46 if (!debugfs_create_file(#name, mode, parent, priv, \
47 &iwl_dbgfs_##name##_ops)) \
48 goto err; \
Tomas Winkler712b6cf2008-03-12 16:58:52 -070049} while (0)
50
Johannes Berg4c84a8f2010-01-22 14:22:54 -080051#define DEBUGFS_ADD_BOOL(name, parent, ptr) do { \
52 struct dentry *__tmp; \
53 __tmp = debugfs_create_bool(#name, S_IWUSR | S_IRUSR, \
54 parent, ptr); \
55 if (IS_ERR(__tmp) || !__tmp) \
56 goto err; \
Tomas Winkler712b6cf2008-03-12 16:58:52 -070057} while (0)
58
Johannes Berg4c84a8f2010-01-22 14:22:54 -080059#define DEBUGFS_ADD_X32(name, parent, ptr) do { \
60 struct dentry *__tmp; \
61 __tmp = debugfs_create_x32(#name, S_IWUSR | S_IRUSR, \
62 parent, ptr); \
63 if (IS_ERR(__tmp) || !__tmp) \
64 goto err; \
Tomas Winkler445c2df2008-05-15 13:54:16 +080065} while (0)
66
Tomas Winkler712b6cf2008-03-12 16:58:52 -070067/* file operation */
68#define DEBUGFS_READ_FUNC(name) \
69static ssize_t iwl_dbgfs_##name##_read(struct file *file, \
70 char __user *user_buf, \
71 size_t count, loff_t *ppos);
72
73#define DEBUGFS_WRITE_FUNC(name) \
74static ssize_t iwl_dbgfs_##name##_write(struct file *file, \
75 const char __user *user_buf, \
76 size_t count, loff_t *ppos);
77
78
79static int iwl_dbgfs_open_file_generic(struct inode *inode, struct file *file)
80{
81 file->private_data = inode->i_private;
82 return 0;
83}
84
85#define DEBUGFS_READ_FILE_OPS(name) \
86 DEBUGFS_READ_FUNC(name); \
87static const struct file_operations iwl_dbgfs_##name##_ops = { \
88 .read = iwl_dbgfs_##name##_read, \
89 .open = iwl_dbgfs_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020090 .llseek = generic_file_llseek, \
Tomas Winkler712b6cf2008-03-12 16:58:52 -070091};
92
Ester Kummer189a2b52008-05-15 13:54:18 +080093#define DEBUGFS_WRITE_FILE_OPS(name) \
94 DEBUGFS_WRITE_FUNC(name); \
95static const struct file_operations iwl_dbgfs_##name##_ops = { \
96 .write = iwl_dbgfs_##name##_write, \
97 .open = iwl_dbgfs_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020098 .llseek = generic_file_llseek, \
Ester Kummer189a2b52008-05-15 13:54:18 +080099};
100
101
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700102#define DEBUGFS_READ_WRITE_FILE_OPS(name) \
103 DEBUGFS_READ_FUNC(name); \
104 DEBUGFS_WRITE_FUNC(name); \
105static const struct file_operations iwl_dbgfs_##name##_ops = { \
106 .write = iwl_dbgfs_##name##_write, \
107 .read = iwl_dbgfs_##name##_read, \
108 .open = iwl_dbgfs_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200109 .llseek = generic_file_llseek, \
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700110};
111
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700112static ssize_t iwl_dbgfs_tx_statistics_read(struct file *file,
113 char __user *user_buf,
114 size_t count, loff_t *ppos) {
115
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700116 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700117 char *buf;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700118 int pos = 0;
119
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700120 int cnt;
121 ssize_t ret;
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800122 const size_t bufsz = 100 +
123 sizeof(char) * 50 * (MANAGEMENT_MAX + CONTROL_MAX);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700124 buf = kzalloc(bufsz, GFP_KERNEL);
125 if (!buf)
126 return -ENOMEM;
127 pos += scnprintf(buf + pos, bufsz - pos, "Management:\n");
128 for (cnt = 0; cnt < MANAGEMENT_MAX; cnt++) {
129 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800130 "\t%25s\t\t: %u\n",
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700131 get_mgmt_string(cnt),
132 priv->tx_stats.mgmt[cnt]);
133 }
134 pos += scnprintf(buf + pos, bufsz - pos, "Control\n");
135 for (cnt = 0; cnt < CONTROL_MAX; cnt++) {
136 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800137 "\t%25s\t\t: %u\n",
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700138 get_ctrl_string(cnt),
139 priv->tx_stats.ctrl[cnt]);
140 }
141 pos += scnprintf(buf + pos, bufsz - pos, "Data:\n");
142 pos += scnprintf(buf + pos, bufsz - pos, "\tcnt: %u\n",
143 priv->tx_stats.data_cnt);
144 pos += scnprintf(buf + pos, bufsz - pos, "\tbytes: %llu\n",
145 priv->tx_stats.data_bytes);
146 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
147 kfree(buf);
148 return ret;
149}
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700150
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -0800151static ssize_t iwl_dbgfs_clear_traffic_statistics_write(struct file *file,
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700152 const char __user *user_buf,
153 size_t count, loff_t *ppos)
154{
155 struct iwl_priv *priv = file->private_data;
156 u32 clear_flag;
157 char buf[8];
158 int buf_size;
159
160 memset(buf, 0, sizeof(buf));
161 buf_size = min(count, sizeof(buf) - 1);
162 if (copy_from_user(buf, user_buf, buf_size))
163 return -EFAULT;
164 if (sscanf(buf, "%x", &clear_flag) != 1)
165 return -EFAULT;
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -0800166 iwl_clear_traffic_stats(priv);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700167
168 return count;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700169}
170
171static ssize_t iwl_dbgfs_rx_statistics_read(struct file *file,
172 char __user *user_buf,
173 size_t count, loff_t *ppos) {
174
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700175 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700176 char *buf;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700177 int pos = 0;
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700178 int cnt;
179 ssize_t ret;
180 const size_t bufsz = 100 +
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800181 sizeof(char) * 50 * (MANAGEMENT_MAX + CONTROL_MAX);
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700182 buf = kzalloc(bufsz, GFP_KERNEL);
183 if (!buf)
184 return -ENOMEM;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700185
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700186 pos += scnprintf(buf + pos, bufsz - pos, "Management:\n");
187 for (cnt = 0; cnt < MANAGEMENT_MAX; cnt++) {
188 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800189 "\t%25s\t\t: %u\n",
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700190 get_mgmt_string(cnt),
191 priv->rx_stats.mgmt[cnt]);
192 }
193 pos += scnprintf(buf + pos, bufsz - pos, "Control:\n");
194 for (cnt = 0; cnt < CONTROL_MAX; cnt++) {
195 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guy98a7b432009-11-13 11:56:31 -0800196 "\t%25s\t\t: %u\n",
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700197 get_ctrl_string(cnt),
198 priv->rx_stats.ctrl[cnt]);
199 }
200 pos += scnprintf(buf + pos, bufsz - pos, "Data:\n");
201 pos += scnprintf(buf + pos, bufsz - pos, "\tcnt: %u\n",
202 priv->rx_stats.data_cnt);
203 pos += scnprintf(buf + pos, bufsz - pos, "\tbytes: %llu\n",
204 priv->rx_stats.data_bytes);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700205
Wey-Yi Guy22fdf3c2009-08-07 15:41:40 -0700206 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
207 kfree(buf);
208 return ret;
209}
210
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700211static ssize_t iwl_dbgfs_sram_read(struct file *file,
212 char __user *user_buf,
213 size_t count, loff_t *ppos)
214{
Jay Sternberg24834d22011-01-11 15:41:00 -0800215 u32 val = 0;
Wey-Yi Guy2943f132009-11-20 12:05:00 -0800216 char *buf;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700217 ssize_t ret;
Jay Sternberg24834d22011-01-11 15:41:00 -0800218 int i = 0;
219 bool device_format = false;
220 int offset = 0;
221 int len = 0;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700222 int pos = 0;
Jay Sternberg24834d22011-01-11 15:41:00 -0800223 int sram;
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700224 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy2943f132009-11-20 12:05:00 -0800225 size_t bufsz;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700226
Wey-Yi Guy5ade1e42009-11-20 12:05:04 -0800227 /* default is to dump the entire data segment */
Johannes Berg4c84a8f2010-01-22 14:22:54 -0800228 if (!priv->dbgfs_sram_offset && !priv->dbgfs_sram_len) {
229 priv->dbgfs_sram_offset = 0x800000;
Johannes Berg872907b2011-06-06 09:41:15 -0700230 if (priv->ucode_type == IWL_UCODE_INIT)
Johannes Bergdbf28e212011-04-16 08:29:24 -0700231 priv->dbgfs_sram_len = priv->ucode_init.data.len;
Wey-Yi Guy5ade1e42009-11-20 12:05:04 -0800232 else
Johannes Bergdbf28e212011-04-16 08:29:24 -0700233 priv->dbgfs_sram_len = priv->ucode_rt.data.len;
Wey-Yi Guy5ade1e42009-11-20 12:05:04 -0800234 }
Jay Sternberg24834d22011-01-11 15:41:00 -0800235 len = priv->dbgfs_sram_len;
236
237 if (len == -4) {
238 device_format = true;
239 len = 4;
240 }
241
242 bufsz = 50 + len * 4;
Wey-Yi Guy2943f132009-11-20 12:05:00 -0800243 buf = kmalloc(bufsz, GFP_KERNEL);
244 if (!buf)
245 return -ENOMEM;
Jay Sternberg24834d22011-01-11 15:41:00 -0800246
Wey-Yi Guy5ade1e42009-11-20 12:05:04 -0800247 pos += scnprintf(buf + pos, bufsz - pos, "sram_len: 0x%x\n",
Jay Sternberg24834d22011-01-11 15:41:00 -0800248 len);
Wey-Yi Guy5ade1e42009-11-20 12:05:04 -0800249 pos += scnprintf(buf + pos, bufsz - pos, "sram_offset: 0x%x\n",
Johannes Berg4c84a8f2010-01-22 14:22:54 -0800250 priv->dbgfs_sram_offset);
Jay Sternberg24834d22011-01-11 15:41:00 -0800251
252 /* adjust sram address since reads are only on even u32 boundaries */
253 offset = priv->dbgfs_sram_offset & 0x3;
254 sram = priv->dbgfs_sram_offset & ~0x3;
255
256 /* read the first u32 from sram */
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700257 val = iwl_read_targ_mem(bus(priv), sram);
Jay Sternberg24834d22011-01-11 15:41:00 -0800258
259 for (; len; len--) {
260 /* put the address at the start of every line */
261 if (i == 0)
262 pos += scnprintf(buf + pos, bufsz - pos,
263 "%08X: ", sram + offset);
264
265 if (device_format)
266 pos += scnprintf(buf + pos, bufsz - pos,
267 "%02x", (val >> (8 * (3 - offset))) & 0xff);
268 else
269 pos += scnprintf(buf + pos, bufsz - pos,
270 "%02x ", (val >> (8 * offset)) & 0xff);
271
272 /* if all bytes processed, read the next u32 from sram */
273 if (++offset == 4) {
274 sram += 4;
275 offset = 0;
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700276 val = iwl_read_targ_mem(bus(priv), sram);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700277 }
Jay Sternberg24834d22011-01-11 15:41:00 -0800278
279 /* put in extra spaces and split lines for human readability */
280 if (++i == 16) {
281 i = 0;
Wey-Yi Guy2943f132009-11-20 12:05:00 -0800282 pos += scnprintf(buf + pos, bufsz - pos, "\n");
Jay Sternberg24834d22011-01-11 15:41:00 -0800283 } else if (!(i & 7)) {
284 pos += scnprintf(buf + pos, bufsz - pos, " ");
285 } else if (!(i & 3)) {
286 pos += scnprintf(buf + pos, bufsz - pos, " ");
287 }
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700288 }
Jay Sternberg24834d22011-01-11 15:41:00 -0800289 if (i)
290 pos += scnprintf(buf + pos, bufsz - pos, "\n");
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700291
292 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guy2943f132009-11-20 12:05:00 -0800293 kfree(buf);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700294 return ret;
295}
296
297static ssize_t iwl_dbgfs_sram_write(struct file *file,
298 const char __user *user_buf,
299 size_t count, loff_t *ppos)
300{
301 struct iwl_priv *priv = file->private_data;
302 char buf[64];
303 int buf_size;
304 u32 offset, len;
305
306 memset(buf, 0, sizeof(buf));
307 buf_size = min(count, sizeof(buf) - 1);
308 if (copy_from_user(buf, user_buf, buf_size))
309 return -EFAULT;
310
311 if (sscanf(buf, "%x,%x", &offset, &len) == 2) {
Johannes Berg4c84a8f2010-01-22 14:22:54 -0800312 priv->dbgfs_sram_offset = offset;
313 priv->dbgfs_sram_len = len;
Jay Sternberg24834d22011-01-11 15:41:00 -0800314 } else if (sscanf(buf, "%x", &offset) == 1) {
315 priv->dbgfs_sram_offset = offset;
316 priv->dbgfs_sram_len = -4;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700317 } else {
Johannes Berg4c84a8f2010-01-22 14:22:54 -0800318 priv->dbgfs_sram_offset = 0;
319 priv->dbgfs_sram_len = 0;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700320 }
321
322 return count;
323}
324
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700325static ssize_t iwl_dbgfs_wowlan_sram_read(struct file *file,
326 char __user *user_buf,
327 size_t count, loff_t *ppos)
328{
329 struct iwl_priv *priv = file->private_data;
330
331 if (!priv->wowlan_sram)
332 return -ENODATA;
333
334 return simple_read_from_buffer(user_buf, count, ppos,
335 priv->wowlan_sram,
336 priv->ucode_wowlan.data.len);
337}
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700338static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf,
339 size_t count, loff_t *ppos)
340{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700341 struct iwl_priv *priv = file->private_data;
Tomas Winkler6def9762008-05-05 10:22:31 +0800342 struct iwl_station_entry *station;
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -0700343 struct iwl_tid_data *tid_data;
Emmanuel Grumbachd6189122011-08-25 23:10:39 -0700344 int max_sta = hw_params(priv).max_stations;
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700345 char *buf;
346 int i, j, pos = 0;
347 ssize_t ret;
348 /* Add 30 for initial string */
349 const size_t bufsz = 30 + sizeof(char) * 500 * (priv->num_stations);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700350
351 buf = kmalloc(bufsz, GFP_KERNEL);
Tomas Winkler3ac7f142008-07-21 02:40:14 +0300352 if (!buf)
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700353 return -ENOMEM;
354
Abhijeet Kolekardb0589f2008-04-14 21:16:04 -0700355 pos += scnprintf(buf + pos, bufsz - pos, "num of stations: %d\n\n",
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700356 priv->num_stations);
357
358 for (i = 0; i < max_sta; i++) {
359 station = &priv->stations[i];
Johannes Bergda735112010-05-03 01:25:24 -0700360 if (!station->used)
361 continue;
362 pos += scnprintf(buf + pos, bufsz - pos,
363 "station %d - addr: %pM, flags: %#x\n",
364 i, station->sta.sta.addr,
365 station->sta.station_flags_msk);
366 pos += scnprintf(buf + pos, bufsz - pos,
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -0700367 "TID\tseq_num\ttxq_id\ttfds\trate_n_flags\n");
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700368
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -0700369 for (j = 0; j < IWL_MAX_TID_COUNT; j++) {
370 tid_data = &priv->shrd->tid_data[i][j];
Johannes Bergda735112010-05-03 01:25:24 -0700371 pos += scnprintf(buf + pos, bufsz - pos,
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -0700372 "%d:\t%#x\t%#x\t%u\t%#x",
373 j, tid_data->seq_number,
374 tid_data->agg.txq_id,
375 tid_data->tfds_in_queue,
376 tid_data->agg.rate_n_flags);
Johannes Bergda735112010-05-03 01:25:24 -0700377
Emmanuel Grumbach5f85a782011-08-25 23:11:18 -0700378 if (tid_data->agg.wait_for_ba)
Abhijeet Kolekardb0589f2008-04-14 21:16:04 -0700379 pos += scnprintf(buf + pos, bufsz - pos,
Johannes Bergda735112010-05-03 01:25:24 -0700380 " - waitforba");
Abhijeet Kolekardb0589f2008-04-14 21:16:04 -0700381 pos += scnprintf(buf + pos, bufsz - pos, "\n");
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700382 }
Johannes Bergda735112010-05-03 01:25:24 -0700383
384 pos += scnprintf(buf + pos, bufsz - pos, "\n");
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700385 }
386
387 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
388 kfree(buf);
389 return ret;
390}
391
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700392static ssize_t iwl_dbgfs_nvm_read(struct file *file,
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800393 char __user *user_buf,
394 size_t count,
395 loff_t *ppos)
396{
397 ssize_t ret;
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700398 struct iwl_priv *priv = file->private_data;
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800399 int pos = 0, ofs = 0, buf_size = 0;
400 const u8 *ptr;
401 char *buf;
Wey-Yi Guye307ddc2009-09-11 10:38:16 -0700402 u16 eeprom_ver;
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -0700403 size_t eeprom_len = priv->cfg->base_params->eeprom_size;
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800404 buf_size = 4 * eeprom_len + 256;
405
406 if (eeprom_len % 16) {
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700407 IWL_ERR(priv, "NVM size is not multiple of 16.\n");
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800408 return -ENODATA;
409 }
410
Julia Lawallc37457e2009-08-03 11:11:45 +0200411 ptr = priv->eeprom;
412 if (!ptr) {
413 IWL_ERR(priv, "Invalid EEPROM/OTP memory\n");
414 return -ENOMEM;
415 }
416
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800417 /* 4 characters for byte 0xYY */
418 buf = kzalloc(buf_size, GFP_KERNEL);
419 if (!buf) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800420 IWL_ERR(priv, "Can not allocate Buffer\n");
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800421 return -ENOMEM;
422 }
Wey-Yi Guye307ddc2009-09-11 10:38:16 -0700423 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
424 pos += scnprintf(buf + pos, buf_size - pos, "NVM Type: %s, "
425 "version: 0x%x\n",
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700426 (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP)
Wey-Yi Guye307ddc2009-09-11 10:38:16 -0700427 ? "OTP" : "EEPROM", eeprom_ver);
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800428 for (ofs = 0 ; ofs < eeprom_len ; ofs += 16) {
429 pos += scnprintf(buf + pos, buf_size - pos, "0x%.4x ", ofs);
430 hex_dump_to_buffer(ptr + ofs, 16 , 16, 2, buf + pos,
431 buf_size - pos, 0);
Reinette Chatre2fac9712009-09-25 14:24:21 -0700432 pos += strlen(buf + pos);
Tomas Winkler8dd266e2008-05-05 10:22:32 +0800433 if (buf_size - pos > 0)
434 buf[pos++] = '\n';
435 }
436
437 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
438 kfree(buf);
439 return ret;
440}
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700441
Winkler, Tomasd366df52008-12-02 12:14:01 -0800442static ssize_t iwl_dbgfs_channels_read(struct file *file, char __user *user_buf,
443 size_t count, loff_t *ppos)
444{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700445 struct iwl_priv *priv = file->private_data;
Winkler, Tomasd366df52008-12-02 12:14:01 -0800446 struct ieee80211_channel *channels = NULL;
447 const struct ieee80211_supported_band *supp_band = NULL;
448 int pos = 0, i, bufsz = PAGE_SIZE;
449 char *buf;
450 ssize_t ret;
451
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700452 if (!test_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status))
Winkler, Tomasd366df52008-12-02 12:14:01 -0800453 return -EAGAIN;
454
455 buf = kzalloc(bufsz, GFP_KERNEL);
456 if (!buf) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800457 IWL_ERR(priv, "Can not allocate Buffer\n");
Winkler, Tomasd366df52008-12-02 12:14:01 -0800458 return -ENOMEM;
459 }
460
461 supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_2GHZ);
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700462 if (supp_band) {
463 channels = supp_band->channels;
Winkler, Tomasd366df52008-12-02 12:14:01 -0800464
Winkler, Tomasd366df52008-12-02 12:14:01 -0800465 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700466 "Displaying %d channels in 2.4GHz band 802.11bg):\n",
467 supp_band->n_channels);
Winkler, Tomasd366df52008-12-02 12:14:01 -0800468
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700469 for (i = 0; i < supp_band->n_channels; i++)
470 pos += scnprintf(buf + pos, bufsz - pos,
471 "%d: %ddBm: BSS%s%s, %s.\n",
Shanyu Zhao81e95432010-07-28 13:40:27 -0700472 channels[i].hw_value,
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700473 channels[i].max_power,
474 channels[i].flags & IEEE80211_CHAN_RADAR ?
475 " (IEEE 802.11h required)" : "",
476 ((channels[i].flags & IEEE80211_CHAN_NO_IBSS)
477 || (channels[i].flags &
478 IEEE80211_CHAN_RADAR)) ? "" :
479 ", IBSS",
480 channels[i].flags &
481 IEEE80211_CHAN_PASSIVE_SCAN ?
482 "passive only" : "active/passive");
483 }
Winkler, Tomasd366df52008-12-02 12:14:01 -0800484 supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_5GHZ);
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700485 if (supp_band) {
486 channels = supp_band->channels;
Winkler, Tomasd366df52008-12-02 12:14:01 -0800487
Winkler, Tomasd366df52008-12-02 12:14:01 -0800488 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700489 "Displaying %d channels in 5.2GHz band (802.11a)\n",
490 supp_band->n_channels);
491
492 for (i = 0; i < supp_band->n_channels; i++)
493 pos += scnprintf(buf + pos, bufsz - pos,
494 "%d: %ddBm: BSS%s%s, %s.\n",
Shanyu Zhao81e95432010-07-28 13:40:27 -0700495 channels[i].hw_value,
Wey-Yi Guya2e23222009-05-22 11:01:55 -0700496 channels[i].max_power,
497 channels[i].flags & IEEE80211_CHAN_RADAR ?
498 " (IEEE 802.11h required)" : "",
499 ((channels[i].flags & IEEE80211_CHAN_NO_IBSS)
500 || (channels[i].flags &
501 IEEE80211_CHAN_RADAR)) ? "" :
502 ", IBSS",
503 channels[i].flags &
504 IEEE80211_CHAN_PASSIVE_SCAN ?
505 "passive only" : "active/passive");
506 }
Winkler, Tomasd366df52008-12-02 12:14:01 -0800507 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
508 kfree(buf);
509 return ret;
510}
511
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700512static ssize_t iwl_dbgfs_status_read(struct file *file,
513 char __user *user_buf,
514 size_t count, loff_t *ppos) {
515
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700516 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700517 char buf[512];
518 int pos = 0;
519 const size_t bufsz = sizeof(buf);
520
521 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_HCMD_ACTIVE:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700522 test_bit(STATUS_HCMD_ACTIVE, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700523 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_INT_ENABLED:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700524 test_bit(STATUS_INT_ENABLED, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700525 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_RF_KILL_HW:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700526 test_bit(STATUS_RF_KILL_HW, &priv->shrd->status));
Wey-Yi Guy7812b162009-10-02 13:43:58 -0700527 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_CT_KILL:\t\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700528 test_bit(STATUS_CT_KILL, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700529 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_INIT:\t\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700530 test_bit(STATUS_INIT, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700531 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_ALIVE:\t\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700532 test_bit(STATUS_ALIVE, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700533 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_READY:\t\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700534 test_bit(STATUS_READY, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700535 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_TEMPERATURE:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700536 test_bit(STATUS_TEMPERATURE, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700537 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_GEO_CONFIGURED:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700538 test_bit(STATUS_GEO_CONFIGURED, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700539 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_EXIT_PENDING:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700540 test_bit(STATUS_EXIT_PENDING, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700541 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_STATISTICS:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700542 test_bit(STATUS_STATISTICS, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700543 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCANNING:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700544 test_bit(STATUS_SCANNING, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700545 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCAN_ABORTING:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700546 test_bit(STATUS_SCAN_ABORTING, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700547 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCAN_HW:\t\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700548 test_bit(STATUS_SCAN_HW, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700549 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_POWER_PMI:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700550 test_bit(STATUS_POWER_PMI, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700551 pos += scnprintf(buf + pos, bufsz - pos, "STATUS_FW_ERROR:\t %d\n",
Emmanuel Grumbach63013ae2011-08-25 23:10:42 -0700552 test_bit(STATUS_FW_ERROR, &priv->shrd->status));
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700553 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
554}
555
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700556static ssize_t iwl_dbgfs_rx_handlers_read(struct file *file,
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700557 char __user *user_buf,
558 size_t count, loff_t *ppos) {
559
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700560 struct iwl_priv *priv = file->private_data;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700561
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700562 int pos = 0;
563 int cnt = 0;
564 char *buf;
565 int bufsz = 24 * 64; /* 24 items * 64 char per item */
566 ssize_t ret;
567
568 buf = kzalloc(bufsz, GFP_KERNEL);
569 if (!buf) {
570 IWL_ERR(priv, "Can not allocate Buffer\n");
571 return -ENOMEM;
572 }
573
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700574 for (cnt = 0; cnt < REPLY_MAX; cnt++) {
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700575 if (priv->rx_handlers_stats[cnt] > 0)
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700576 pos += scnprintf(buf + pos, bufsz - pos,
577 "\tRx handler[%36s]:\t\t %u\n",
578 get_cmd_string(cnt),
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700579 priv->rx_handlers_stats[cnt]);
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700580 }
581
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700582 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
583 kfree(buf);
584 return ret;
585}
586
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700587static ssize_t iwl_dbgfs_rx_handlers_write(struct file *file,
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700588 const char __user *user_buf,
589 size_t count, loff_t *ppos)
590{
591 struct iwl_priv *priv = file->private_data;
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700592
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700593 char buf[8];
594 int buf_size;
595 u32 reset_flag;
596
597 memset(buf, 0, sizeof(buf));
598 buf_size = min(count, sizeof(buf) - 1);
599 if (copy_from_user(buf, user_buf, buf_size))
600 return -EFAULT;
601 if (sscanf(buf, "%x", &reset_flag) != 1)
602 return -EFAULT;
603 if (reset_flag == 0)
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700604 memset(&priv->rx_handlers_stats[0], 0,
605 sizeof(priv->rx_handlers_stats));
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700606
607 return count;
608}
609
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700610static ssize_t iwl_dbgfs_qos_read(struct file *file, char __user *user_buf,
611 size_t count, loff_t *ppos)
612{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700613 struct iwl_priv *priv = file->private_data;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +0200614 struct iwl_rxon_context *ctx;
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700615 int pos = 0, i;
Johannes Berg8dfdb9d2010-08-23 10:46:38 +0200616 char buf[256 * NUM_IWL_RXON_CTX];
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700617 const size_t bufsz = sizeof(buf);
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700618
Johannes Berg8dfdb9d2010-08-23 10:46:38 +0200619 for_each_context(priv, ctx) {
620 pos += scnprintf(buf + pos, bufsz - pos, "context %d:\n",
621 ctx->ctxid);
622 for (i = 0; i < AC_NUM; i++) {
623 pos += scnprintf(buf + pos, bufsz - pos,
624 "\tcw_min\tcw_max\taifsn\ttxop\n");
625 pos += scnprintf(buf + pos, bufsz - pos,
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700626 "AC[%d]\t%u\t%u\t%u\t%u\n", i,
Johannes Berg8dfdb9d2010-08-23 10:46:38 +0200627 ctx->qos_data.def_qos_parm.ac[i].cw_min,
628 ctx->qos_data.def_qos_parm.ac[i].cw_max,
629 ctx->qos_data.def_qos_parm.ac[i].aifsn,
630 ctx->qos_data.def_qos_parm.ac[i].edca_txop);
631 }
632 pos += scnprintf(buf + pos, bufsz - pos, "\n");
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700633 }
Wey-Yi Guy4967c312010-02-18 15:22:07 -0800634 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700635}
Wey-Yi Guya83b9142009-04-08 11:39:32 -0700636
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700637static ssize_t iwl_dbgfs_thermal_throttling_read(struct file *file,
638 char __user *user_buf,
639 size_t count, loff_t *ppos)
640{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700641 struct iwl_priv *priv = file->private_data;
Johannes Berg3ad3b922009-08-07 15:41:48 -0700642 struct iwl_tt_mgmt *tt = &priv->thermal_throttle;
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700643 struct iwl_tt_restriction *restriction;
644 char buf[100];
645 int pos = 0;
646 const size_t bufsz = sizeof(buf);
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700647
648 pos += scnprintf(buf + pos, bufsz - pos,
649 "Thermal Throttling Mode: %s\n",
Johannes Berg3ad3b922009-08-07 15:41:48 -0700650 tt->advanced_tt ? "Advance" : "Legacy");
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700651 pos += scnprintf(buf + pos, bufsz - pos,
652 "Thermal Throttling State: %d\n",
653 tt->state);
Johannes Berg3ad3b922009-08-07 15:41:48 -0700654 if (tt->advanced_tt) {
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700655 restriction = tt->restriction + tt->state;
656 pos += scnprintf(buf + pos, bufsz - pos,
657 "Tx mode: %d\n",
658 restriction->tx_stream);
659 pos += scnprintf(buf + pos, bufsz - pos,
660 "Rx mode: %d\n",
661 restriction->rx_stream);
662 pos += scnprintf(buf + pos, bufsz - pos,
663 "HT mode: %d\n",
664 restriction->is_ht);
665 }
Wey-Yi Guy4967c312010-02-18 15:22:07 -0800666 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700667}
668
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700669static ssize_t iwl_dbgfs_disable_ht40_write(struct file *file,
670 const char __user *user_buf,
671 size_t count, loff_t *ppos)
672{
673 struct iwl_priv *priv = file->private_data;
674 char buf[8];
675 int buf_size;
676 int ht40;
677
678 memset(buf, 0, sizeof(buf));
679 buf_size = min(count, sizeof(buf) - 1);
680 if (copy_from_user(buf, user_buf, buf_size))
681 return -EFAULT;
682 if (sscanf(buf, "%d", &ht40) != 1)
683 return -EFAULT;
Johannes Berg246ed352010-08-23 10:46:32 +0200684 if (!iwl_is_any_associated(priv))
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700685 priv->disable_ht40 = ht40 ? true : false;
686 else {
687 IWL_ERR(priv, "Sta associated with AP - "
688 "Change to 40MHz channel support is not allowed\n");
689 return -EINVAL;
690 }
691
692 return count;
693}
694
695static ssize_t iwl_dbgfs_disable_ht40_read(struct file *file,
696 char __user *user_buf,
697 size_t count, loff_t *ppos)
698{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700699 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700700 char buf[100];
701 int pos = 0;
702 const size_t bufsz = sizeof(buf);
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700703
704 pos += scnprintf(buf + pos, bufsz - pos,
705 "11n 40MHz Mode: %s\n",
706 priv->disable_ht40 ? "Disabled" : "Enabled");
Wey-Yi Guy4967c312010-02-18 15:22:07 -0800707 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700708}
709
Johannes Berge312c242009-08-07 15:41:51 -0700710static ssize_t iwl_dbgfs_sleep_level_override_write(struct file *file,
711 const char __user *user_buf,
712 size_t count, loff_t *ppos)
713{
714 struct iwl_priv *priv = file->private_data;
715 char buf[8];
716 int buf_size;
717 int value;
718
719 memset(buf, 0, sizeof(buf));
720 buf_size = min(count, sizeof(buf) - 1);
721 if (copy_from_user(buf, user_buf, buf_size))
722 return -EFAULT;
723
724 if (sscanf(buf, "%d", &value) != 1)
725 return -EINVAL;
726
727 /*
728 * Our users expect 0 to be "CAM", but 0 isn't actually
729 * valid here. However, let's not confuse them and present
730 * IWL_POWER_INDEX_1 as "1", not "0".
731 */
Reinette Chatre1a34c042009-10-09 13:20:25 -0700732 if (value == 0)
733 return -EINVAL;
734 else if (value > 0)
Johannes Berge312c242009-08-07 15:41:51 -0700735 value -= 1;
736
737 if (value != -1 && (value < 0 || value >= IWL_POWER_NUM))
738 return -EINVAL;
739
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700740 if (!iwl_is_ready_rf(priv->shrd))
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700741 return -EAGAIN;
742
Johannes Berge312c242009-08-07 15:41:51 -0700743 priv->power_data.debug_sleep_level_override = value;
744
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700745 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guy4ad177b2009-10-16 14:25:58 -0700746 iwl_power_update_mode(priv, true);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700747 mutex_unlock(&priv->shrd->mutex);
Johannes Berge312c242009-08-07 15:41:51 -0700748
749 return count;
750}
751
752static ssize_t iwl_dbgfs_sleep_level_override_read(struct file *file,
753 char __user *user_buf,
754 size_t count, loff_t *ppos)
755{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700756 struct iwl_priv *priv = file->private_data;
Johannes Berge312c242009-08-07 15:41:51 -0700757 char buf[10];
758 int pos, value;
759 const size_t bufsz = sizeof(buf);
760
761 /* see the write function */
762 value = priv->power_data.debug_sleep_level_override;
763 if (value >= 0)
764 value += 1;
765
766 pos = scnprintf(buf, bufsz, "%d\n", value);
767 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
768}
769
770static ssize_t iwl_dbgfs_current_sleep_command_read(struct file *file,
771 char __user *user_buf,
772 size_t count, loff_t *ppos)
773{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700774 struct iwl_priv *priv = file->private_data;
Johannes Berge312c242009-08-07 15:41:51 -0700775 char buf[200];
776 int pos = 0, i;
777 const size_t bufsz = sizeof(buf);
778 struct iwl_powertable_cmd *cmd = &priv->power_data.sleep_cmd;
779
780 pos += scnprintf(buf + pos, bufsz - pos,
781 "flags: %#.2x\n", le16_to_cpu(cmd->flags));
782 pos += scnprintf(buf + pos, bufsz - pos,
783 "RX/TX timeout: %d/%d usec\n",
784 le32_to_cpu(cmd->rx_data_timeout),
785 le32_to_cpu(cmd->tx_data_timeout));
786 for (i = 0; i < IWL_POWER_VEC_SIZE; i++)
787 pos += scnprintf(buf + pos, bufsz - pos,
788 "sleep_interval[%d]: %d\n", i,
789 le32_to_cpu(cmd->sleep_interval[i]));
790
791 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
792}
793
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700794DEBUGFS_READ_WRITE_FILE_OPS(sram);
Johannes Bergc8ac61c2011-07-15 13:23:45 -0700795DEBUGFS_READ_FILE_OPS(wowlan_sram);
Wey-Yi Guy0848e292009-05-22 11:01:46 -0700796DEBUGFS_READ_FILE_OPS(nvm);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700797DEBUGFS_READ_FILE_OPS(stations);
Winkler, Tomasd366df52008-12-02 12:14:01 -0800798DEBUGFS_READ_FILE_OPS(channels);
Wey-Yi Guy08df05a2009-03-24 10:02:54 -0700799DEBUGFS_READ_FILE_OPS(status);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -0700800DEBUGFS_READ_WRITE_FILE_OPS(rx_handlers);
Wey-Yi Guyf5ad69f2009-07-09 10:33:36 -0700801DEBUGFS_READ_FILE_OPS(qos);
Wey-Yi Guyfbf3a2a2009-07-24 11:13:04 -0700802DEBUGFS_READ_FILE_OPS(thermal_throttling);
Wey-Yi Guy1e4247d2009-07-27 13:50:15 -0700803DEBUGFS_READ_WRITE_FILE_OPS(disable_ht40);
Johannes Berge312c242009-08-07 15:41:51 -0700804DEBUGFS_READ_WRITE_FILE_OPS(sleep_level_override);
805DEBUGFS_READ_FILE_OPS(current_sleep_command);
Tomas Winkler712b6cf2008-03-12 16:58:52 -0700806
Emmanuel Grumbach41f5e042011-09-06 09:31:20 -0700807static ssize_t iwl_dbgfs_traffic_log_read(struct file *file,
808 char __user *user_buf,
809 size_t count, loff_t *ppos)
810{
811 struct iwl_priv *priv = file->private_data;
812 int pos = 0, ofs = 0;
813 int cnt = 0, entry;
814
815 char *buf;
816 int bufsz = ((IWL_TRAFFIC_ENTRIES * IWL_TRAFFIC_ENTRY_SIZE * 64) * 2) +
817 (hw_params(priv).max_txq_num * 32 * 8) + 400;
818 const u8 *ptr;
819 ssize_t ret;
820
821 buf = kzalloc(bufsz, GFP_KERNEL);
822 if (!buf) {
823 IWL_ERR(priv, "Can not allocate buffer\n");
824 return -ENOMEM;
825 }
826 if (priv->tx_traffic &&
827 (iwl_get_debug_level(priv->shrd) & IWL_DL_TX)) {
828 ptr = priv->tx_traffic;
829 pos += scnprintf(buf + pos, bufsz - pos,
830 "Tx Traffic idx: %u\n", priv->tx_traffic_idx);
831 for (cnt = 0, ofs = 0; cnt < IWL_TRAFFIC_ENTRIES; cnt++) {
832 for (entry = 0; entry < IWL_TRAFFIC_ENTRY_SIZE / 16;
833 entry++, ofs += 16) {
834 pos += scnprintf(buf + pos, bufsz - pos,
835 "0x%.4x ", ofs);
836 hex_dump_to_buffer(ptr + ofs, 16, 16, 2,
837 buf + pos, bufsz - pos, 0);
838 pos += strlen(buf + pos);
839 if (bufsz - pos > 0)
840 buf[pos++] = '\n';
841 }
842 }
843 }
844
845 if (priv->rx_traffic &&
846 (iwl_get_debug_level(priv->shrd) & IWL_DL_RX)) {
847 ptr = priv->rx_traffic;
848 pos += scnprintf(buf + pos, bufsz - pos,
849 "Rx Traffic idx: %u\n", priv->rx_traffic_idx);
850 for (cnt = 0, ofs = 0; cnt < IWL_TRAFFIC_ENTRIES; cnt++) {
851 for (entry = 0; entry < IWL_TRAFFIC_ENTRY_SIZE / 16;
852 entry++, ofs += 16) {
853 pos += scnprintf(buf + pos, bufsz - pos,
854 "0x%.4x ", ofs);
855 hex_dump_to_buffer(ptr + ofs, 16, 16, 2,
856 buf + pos, bufsz - pos, 0);
857 pos += strlen(buf + pos);
858 if (bufsz - pos > 0)
859 buf[pos++] = '\n';
860 }
861 }
862 }
863
864 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
865 kfree(buf);
866 return ret;
867}
868
869static ssize_t iwl_dbgfs_traffic_log_write(struct file *file,
870 const char __user *user_buf,
871 size_t count, loff_t *ppos)
872{
873 struct iwl_priv *priv = file->private_data;
874 char buf[8];
875 int buf_size;
876 int traffic_log;
877
878 memset(buf, 0, sizeof(buf));
879 buf_size = min(count, sizeof(buf) - 1);
880 if (copy_from_user(buf, user_buf, buf_size))
881 return -EFAULT;
882 if (sscanf(buf, "%d", &traffic_log) != 1)
883 return -EFAULT;
884 if (traffic_log == 0)
885 iwl_reset_traffic_log(priv);
886
887 return count;
888}
889
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -0700890static const char *fmt_value = " %-30s %10u\n";
891static const char *fmt_hex = " %-30s 0x%02X\n";
892static const char *fmt_table = " %-30s %10u %10u %10u %10u\n";
893static const char *fmt_header =
894 "%-32s current cumulative delta max\n";
895
896static int iwl_statistics_flag(struct iwl_priv *priv, char *buf, int bufsz)
897{
898 int p = 0;
899 u32 flag;
900
901 flag = le32_to_cpu(priv->statistics.flag);
902
903 p += scnprintf(buf + p, bufsz - p, "Statistics Flag(0x%X):\n", flag);
904 if (flag & UCODE_STATISTICS_CLEAR_MSK)
905 p += scnprintf(buf + p, bufsz - p,
906 "\tStatistics have been cleared\n");
907 p += scnprintf(buf + p, bufsz - p, "\tOperational Frequency: %s\n",
908 (flag & UCODE_STATISTICS_FREQUENCY_MSK)
909 ? "2.4 GHz" : "5.2 GHz");
910 p += scnprintf(buf + p, bufsz - p, "\tTGj Narrow Band: %s\n",
911 (flag & UCODE_STATISTICS_NARROW_BAND_MSK)
912 ? "enabled" : "disabled");
913
914 return p;
915}
916
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -0700917static ssize_t iwl_dbgfs_ucode_rx_stats_read(struct file *file,
918 char __user *user_buf,
919 size_t count, loff_t *ppos)
920{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -0700921 struct iwl_priv *priv = file->private_data;
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -0700922 int pos = 0;
923 char *buf;
924 int bufsz = sizeof(struct statistics_rx_phy) * 40 +
925 sizeof(struct statistics_rx_non_phy) * 40 +
926 sizeof(struct statistics_rx_ht_phy) * 40 + 400;
927 ssize_t ret;
928 struct statistics_rx_phy *ofdm, *accum_ofdm, *delta_ofdm, *max_ofdm;
929 struct statistics_rx_phy *cck, *accum_cck, *delta_cck, *max_cck;
930 struct statistics_rx_non_phy *general, *accum_general;
931 struct statistics_rx_non_phy *delta_general, *max_general;
932 struct statistics_rx_ht_phy *ht, *accum_ht, *delta_ht, *max_ht;
933
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -0700934 if (!iwl_is_alive(priv->shrd))
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -0700935 return -EAGAIN;
936
937 buf = kzalloc(bufsz, GFP_KERNEL);
938 if (!buf) {
939 IWL_ERR(priv, "Can not allocate Buffer\n");
940 return -ENOMEM;
941 }
942
943 /*
944 * the statistic information display here is based on
945 * the last statistics notification from uCode
946 * might not reflect the current uCode activity
947 */
948 ofdm = &priv->statistics.rx_ofdm;
949 cck = &priv->statistics.rx_cck;
950 general = &priv->statistics.rx_non_phy;
951 ht = &priv->statistics.rx_ofdm_ht;
952 accum_ofdm = &priv->accum_stats.rx_ofdm;
953 accum_cck = &priv->accum_stats.rx_cck;
954 accum_general = &priv->accum_stats.rx_non_phy;
955 accum_ht = &priv->accum_stats.rx_ofdm_ht;
956 delta_ofdm = &priv->delta_stats.rx_ofdm;
957 delta_cck = &priv->delta_stats.rx_cck;
958 delta_general = &priv->delta_stats.rx_non_phy;
959 delta_ht = &priv->delta_stats.rx_ofdm_ht;
960 max_ofdm = &priv->max_delta_stats.rx_ofdm;
961 max_cck = &priv->max_delta_stats.rx_cck;
962 max_general = &priv->max_delta_stats.rx_non_phy;
963 max_ht = &priv->max_delta_stats.rx_ofdm_ht;
964
965 pos += iwl_statistics_flag(priv, buf, bufsz);
966 pos += scnprintf(buf + pos, bufsz - pos,
967 fmt_header, "Statistics_Rx - OFDM:");
968 pos += scnprintf(buf + pos, bufsz - pos,
969 fmt_table, "ina_cnt:",
970 le32_to_cpu(ofdm->ina_cnt),
971 accum_ofdm->ina_cnt,
972 delta_ofdm->ina_cnt, max_ofdm->ina_cnt);
973 pos += scnprintf(buf + pos, bufsz - pos,
974 fmt_table, "fina_cnt:",
975 le32_to_cpu(ofdm->fina_cnt), accum_ofdm->fina_cnt,
976 delta_ofdm->fina_cnt, max_ofdm->fina_cnt);
977 pos += scnprintf(buf + pos, bufsz - pos,
978 fmt_table, "plcp_err:",
979 le32_to_cpu(ofdm->plcp_err), accum_ofdm->plcp_err,
980 delta_ofdm->plcp_err, max_ofdm->plcp_err);
981 pos += scnprintf(buf + pos, bufsz - pos,
982 fmt_table, "crc32_err:",
983 le32_to_cpu(ofdm->crc32_err), accum_ofdm->crc32_err,
984 delta_ofdm->crc32_err, max_ofdm->crc32_err);
985 pos += scnprintf(buf + pos, bufsz - pos,
986 fmt_table, "overrun_err:",
987 le32_to_cpu(ofdm->overrun_err),
988 accum_ofdm->overrun_err, delta_ofdm->overrun_err,
989 max_ofdm->overrun_err);
990 pos += scnprintf(buf + pos, bufsz - pos,
991 fmt_table, "early_overrun_err:",
992 le32_to_cpu(ofdm->early_overrun_err),
993 accum_ofdm->early_overrun_err,
994 delta_ofdm->early_overrun_err,
995 max_ofdm->early_overrun_err);
996 pos += scnprintf(buf + pos, bufsz - pos,
997 fmt_table, "crc32_good:",
998 le32_to_cpu(ofdm->crc32_good),
999 accum_ofdm->crc32_good, delta_ofdm->crc32_good,
1000 max_ofdm->crc32_good);
1001 pos += scnprintf(buf + pos, bufsz - pos,
1002 fmt_table, "false_alarm_cnt:",
1003 le32_to_cpu(ofdm->false_alarm_cnt),
1004 accum_ofdm->false_alarm_cnt,
1005 delta_ofdm->false_alarm_cnt,
1006 max_ofdm->false_alarm_cnt);
1007 pos += scnprintf(buf + pos, bufsz - pos,
1008 fmt_table, "fina_sync_err_cnt:",
1009 le32_to_cpu(ofdm->fina_sync_err_cnt),
1010 accum_ofdm->fina_sync_err_cnt,
1011 delta_ofdm->fina_sync_err_cnt,
1012 max_ofdm->fina_sync_err_cnt);
1013 pos += scnprintf(buf + pos, bufsz - pos,
1014 fmt_table, "sfd_timeout:",
1015 le32_to_cpu(ofdm->sfd_timeout),
1016 accum_ofdm->sfd_timeout, delta_ofdm->sfd_timeout,
1017 max_ofdm->sfd_timeout);
1018 pos += scnprintf(buf + pos, bufsz - pos,
1019 fmt_table, "fina_timeout:",
1020 le32_to_cpu(ofdm->fina_timeout),
1021 accum_ofdm->fina_timeout, delta_ofdm->fina_timeout,
1022 max_ofdm->fina_timeout);
1023 pos += scnprintf(buf + pos, bufsz - pos,
1024 fmt_table, "unresponded_rts:",
1025 le32_to_cpu(ofdm->unresponded_rts),
1026 accum_ofdm->unresponded_rts,
1027 delta_ofdm->unresponded_rts,
1028 max_ofdm->unresponded_rts);
1029 pos += scnprintf(buf + pos, bufsz - pos,
1030 fmt_table, "rxe_frame_lmt_ovrun:",
1031 le32_to_cpu(ofdm->rxe_frame_limit_overrun),
1032 accum_ofdm->rxe_frame_limit_overrun,
1033 delta_ofdm->rxe_frame_limit_overrun,
1034 max_ofdm->rxe_frame_limit_overrun);
1035 pos += scnprintf(buf + pos, bufsz - pos,
1036 fmt_table, "sent_ack_cnt:",
1037 le32_to_cpu(ofdm->sent_ack_cnt),
1038 accum_ofdm->sent_ack_cnt, delta_ofdm->sent_ack_cnt,
1039 max_ofdm->sent_ack_cnt);
1040 pos += scnprintf(buf + pos, bufsz - pos,
1041 fmt_table, "sent_cts_cnt:",
1042 le32_to_cpu(ofdm->sent_cts_cnt),
1043 accum_ofdm->sent_cts_cnt, delta_ofdm->sent_cts_cnt,
1044 max_ofdm->sent_cts_cnt);
1045 pos += scnprintf(buf + pos, bufsz - pos,
1046 fmt_table, "sent_ba_rsp_cnt:",
1047 le32_to_cpu(ofdm->sent_ba_rsp_cnt),
1048 accum_ofdm->sent_ba_rsp_cnt,
1049 delta_ofdm->sent_ba_rsp_cnt,
1050 max_ofdm->sent_ba_rsp_cnt);
1051 pos += scnprintf(buf + pos, bufsz - pos,
1052 fmt_table, "dsp_self_kill:",
1053 le32_to_cpu(ofdm->dsp_self_kill),
1054 accum_ofdm->dsp_self_kill,
1055 delta_ofdm->dsp_self_kill,
1056 max_ofdm->dsp_self_kill);
1057 pos += scnprintf(buf + pos, bufsz - pos,
1058 fmt_table, "mh_format_err:",
1059 le32_to_cpu(ofdm->mh_format_err),
1060 accum_ofdm->mh_format_err,
1061 delta_ofdm->mh_format_err,
1062 max_ofdm->mh_format_err);
1063 pos += scnprintf(buf + pos, bufsz - pos,
1064 fmt_table, "re_acq_main_rssi_sum:",
1065 le32_to_cpu(ofdm->re_acq_main_rssi_sum),
1066 accum_ofdm->re_acq_main_rssi_sum,
1067 delta_ofdm->re_acq_main_rssi_sum,
1068 max_ofdm->re_acq_main_rssi_sum);
1069
1070 pos += scnprintf(buf + pos, bufsz - pos,
1071 fmt_header, "Statistics_Rx - CCK:");
1072 pos += scnprintf(buf + pos, bufsz - pos,
1073 fmt_table, "ina_cnt:",
1074 le32_to_cpu(cck->ina_cnt), accum_cck->ina_cnt,
1075 delta_cck->ina_cnt, max_cck->ina_cnt);
1076 pos += scnprintf(buf + pos, bufsz - pos,
1077 fmt_table, "fina_cnt:",
1078 le32_to_cpu(cck->fina_cnt), accum_cck->fina_cnt,
1079 delta_cck->fina_cnt, max_cck->fina_cnt);
1080 pos += scnprintf(buf + pos, bufsz - pos,
1081 fmt_table, "plcp_err:",
1082 le32_to_cpu(cck->plcp_err), accum_cck->plcp_err,
1083 delta_cck->plcp_err, max_cck->plcp_err);
1084 pos += scnprintf(buf + pos, bufsz - pos,
1085 fmt_table, "crc32_err:",
1086 le32_to_cpu(cck->crc32_err), accum_cck->crc32_err,
1087 delta_cck->crc32_err, max_cck->crc32_err);
1088 pos += scnprintf(buf + pos, bufsz - pos,
1089 fmt_table, "overrun_err:",
1090 le32_to_cpu(cck->overrun_err),
1091 accum_cck->overrun_err, delta_cck->overrun_err,
1092 max_cck->overrun_err);
1093 pos += scnprintf(buf + pos, bufsz - pos,
1094 fmt_table, "early_overrun_err:",
1095 le32_to_cpu(cck->early_overrun_err),
1096 accum_cck->early_overrun_err,
1097 delta_cck->early_overrun_err,
1098 max_cck->early_overrun_err);
1099 pos += scnprintf(buf + pos, bufsz - pos,
1100 fmt_table, "crc32_good:",
1101 le32_to_cpu(cck->crc32_good), accum_cck->crc32_good,
1102 delta_cck->crc32_good, max_cck->crc32_good);
1103 pos += scnprintf(buf + pos, bufsz - pos,
1104 fmt_table, "false_alarm_cnt:",
1105 le32_to_cpu(cck->false_alarm_cnt),
1106 accum_cck->false_alarm_cnt,
1107 delta_cck->false_alarm_cnt, max_cck->false_alarm_cnt);
1108 pos += scnprintf(buf + pos, bufsz - pos,
1109 fmt_table, "fina_sync_err_cnt:",
1110 le32_to_cpu(cck->fina_sync_err_cnt),
1111 accum_cck->fina_sync_err_cnt,
1112 delta_cck->fina_sync_err_cnt,
1113 max_cck->fina_sync_err_cnt);
1114 pos += scnprintf(buf + pos, bufsz - pos,
1115 fmt_table, "sfd_timeout:",
1116 le32_to_cpu(cck->sfd_timeout),
1117 accum_cck->sfd_timeout, delta_cck->sfd_timeout,
1118 max_cck->sfd_timeout);
1119 pos += scnprintf(buf + pos, bufsz - pos,
1120 fmt_table, "fina_timeout:",
1121 le32_to_cpu(cck->fina_timeout),
1122 accum_cck->fina_timeout, delta_cck->fina_timeout,
1123 max_cck->fina_timeout);
1124 pos += scnprintf(buf + pos, bufsz - pos,
1125 fmt_table, "unresponded_rts:",
1126 le32_to_cpu(cck->unresponded_rts),
1127 accum_cck->unresponded_rts, delta_cck->unresponded_rts,
1128 max_cck->unresponded_rts);
1129 pos += scnprintf(buf + pos, bufsz - pos,
1130 fmt_table, "rxe_frame_lmt_ovrun:",
1131 le32_to_cpu(cck->rxe_frame_limit_overrun),
1132 accum_cck->rxe_frame_limit_overrun,
1133 delta_cck->rxe_frame_limit_overrun,
1134 max_cck->rxe_frame_limit_overrun);
1135 pos += scnprintf(buf + pos, bufsz - pos,
1136 fmt_table, "sent_ack_cnt:",
1137 le32_to_cpu(cck->sent_ack_cnt),
1138 accum_cck->sent_ack_cnt, delta_cck->sent_ack_cnt,
1139 max_cck->sent_ack_cnt);
1140 pos += scnprintf(buf + pos, bufsz - pos,
1141 fmt_table, "sent_cts_cnt:",
1142 le32_to_cpu(cck->sent_cts_cnt),
1143 accum_cck->sent_cts_cnt, delta_cck->sent_cts_cnt,
1144 max_cck->sent_cts_cnt);
1145 pos += scnprintf(buf + pos, bufsz - pos,
1146 fmt_table, "sent_ba_rsp_cnt:",
1147 le32_to_cpu(cck->sent_ba_rsp_cnt),
1148 accum_cck->sent_ba_rsp_cnt,
1149 delta_cck->sent_ba_rsp_cnt,
1150 max_cck->sent_ba_rsp_cnt);
1151 pos += scnprintf(buf + pos, bufsz - pos,
1152 fmt_table, "dsp_self_kill:",
1153 le32_to_cpu(cck->dsp_self_kill),
1154 accum_cck->dsp_self_kill, delta_cck->dsp_self_kill,
1155 max_cck->dsp_self_kill);
1156 pos += scnprintf(buf + pos, bufsz - pos,
1157 fmt_table, "mh_format_err:",
1158 le32_to_cpu(cck->mh_format_err),
1159 accum_cck->mh_format_err, delta_cck->mh_format_err,
1160 max_cck->mh_format_err);
1161 pos += scnprintf(buf + pos, bufsz - pos,
1162 fmt_table, "re_acq_main_rssi_sum:",
1163 le32_to_cpu(cck->re_acq_main_rssi_sum),
1164 accum_cck->re_acq_main_rssi_sum,
1165 delta_cck->re_acq_main_rssi_sum,
1166 max_cck->re_acq_main_rssi_sum);
1167
1168 pos += scnprintf(buf + pos, bufsz - pos,
1169 fmt_header, "Statistics_Rx - GENERAL:");
1170 pos += scnprintf(buf + pos, bufsz - pos,
1171 fmt_table, "bogus_cts:",
1172 le32_to_cpu(general->bogus_cts),
1173 accum_general->bogus_cts, delta_general->bogus_cts,
1174 max_general->bogus_cts);
1175 pos += scnprintf(buf + pos, bufsz - pos,
1176 fmt_table, "bogus_ack:",
1177 le32_to_cpu(general->bogus_ack),
1178 accum_general->bogus_ack, delta_general->bogus_ack,
1179 max_general->bogus_ack);
1180 pos += scnprintf(buf + pos, bufsz - pos,
1181 fmt_table, "non_bssid_frames:",
1182 le32_to_cpu(general->non_bssid_frames),
1183 accum_general->non_bssid_frames,
1184 delta_general->non_bssid_frames,
1185 max_general->non_bssid_frames);
1186 pos += scnprintf(buf + pos, bufsz - pos,
1187 fmt_table, "filtered_frames:",
1188 le32_to_cpu(general->filtered_frames),
1189 accum_general->filtered_frames,
1190 delta_general->filtered_frames,
1191 max_general->filtered_frames);
1192 pos += scnprintf(buf + pos, bufsz - pos,
1193 fmt_table, "non_channel_beacons:",
1194 le32_to_cpu(general->non_channel_beacons),
1195 accum_general->non_channel_beacons,
1196 delta_general->non_channel_beacons,
1197 max_general->non_channel_beacons);
1198 pos += scnprintf(buf + pos, bufsz - pos,
1199 fmt_table, "channel_beacons:",
1200 le32_to_cpu(general->channel_beacons),
1201 accum_general->channel_beacons,
1202 delta_general->channel_beacons,
1203 max_general->channel_beacons);
1204 pos += scnprintf(buf + pos, bufsz - pos,
1205 fmt_table, "num_missed_bcon:",
1206 le32_to_cpu(general->num_missed_bcon),
1207 accum_general->num_missed_bcon,
1208 delta_general->num_missed_bcon,
1209 max_general->num_missed_bcon);
1210 pos += scnprintf(buf + pos, bufsz - pos,
1211 fmt_table, "adc_rx_saturation_time:",
1212 le32_to_cpu(general->adc_rx_saturation_time),
1213 accum_general->adc_rx_saturation_time,
1214 delta_general->adc_rx_saturation_time,
1215 max_general->adc_rx_saturation_time);
1216 pos += scnprintf(buf + pos, bufsz - pos,
1217 fmt_table, "ina_detect_search_tm:",
1218 le32_to_cpu(general->ina_detection_search_time),
1219 accum_general->ina_detection_search_time,
1220 delta_general->ina_detection_search_time,
1221 max_general->ina_detection_search_time);
1222 pos += scnprintf(buf + pos, bufsz - pos,
1223 fmt_table, "beacon_silence_rssi_a:",
1224 le32_to_cpu(general->beacon_silence_rssi_a),
1225 accum_general->beacon_silence_rssi_a,
1226 delta_general->beacon_silence_rssi_a,
1227 max_general->beacon_silence_rssi_a);
1228 pos += scnprintf(buf + pos, bufsz - pos,
1229 fmt_table, "beacon_silence_rssi_b:",
1230 le32_to_cpu(general->beacon_silence_rssi_b),
1231 accum_general->beacon_silence_rssi_b,
1232 delta_general->beacon_silence_rssi_b,
1233 max_general->beacon_silence_rssi_b);
1234 pos += scnprintf(buf + pos, bufsz - pos,
1235 fmt_table, "beacon_silence_rssi_c:",
1236 le32_to_cpu(general->beacon_silence_rssi_c),
1237 accum_general->beacon_silence_rssi_c,
1238 delta_general->beacon_silence_rssi_c,
1239 max_general->beacon_silence_rssi_c);
1240 pos += scnprintf(buf + pos, bufsz - pos,
1241 fmt_table, "interference_data_flag:",
1242 le32_to_cpu(general->interference_data_flag),
1243 accum_general->interference_data_flag,
1244 delta_general->interference_data_flag,
1245 max_general->interference_data_flag);
1246 pos += scnprintf(buf + pos, bufsz - pos,
1247 fmt_table, "channel_load:",
1248 le32_to_cpu(general->channel_load),
1249 accum_general->channel_load,
1250 delta_general->channel_load,
1251 max_general->channel_load);
1252 pos += scnprintf(buf + pos, bufsz - pos,
1253 fmt_table, "dsp_false_alarms:",
1254 le32_to_cpu(general->dsp_false_alarms),
1255 accum_general->dsp_false_alarms,
1256 delta_general->dsp_false_alarms,
1257 max_general->dsp_false_alarms);
1258 pos += scnprintf(buf + pos, bufsz - pos,
1259 fmt_table, "beacon_rssi_a:",
1260 le32_to_cpu(general->beacon_rssi_a),
1261 accum_general->beacon_rssi_a,
1262 delta_general->beacon_rssi_a,
1263 max_general->beacon_rssi_a);
1264 pos += scnprintf(buf + pos, bufsz - pos,
1265 fmt_table, "beacon_rssi_b:",
1266 le32_to_cpu(general->beacon_rssi_b),
1267 accum_general->beacon_rssi_b,
1268 delta_general->beacon_rssi_b,
1269 max_general->beacon_rssi_b);
1270 pos += scnprintf(buf + pos, bufsz - pos,
1271 fmt_table, "beacon_rssi_c:",
1272 le32_to_cpu(general->beacon_rssi_c),
1273 accum_general->beacon_rssi_c,
1274 delta_general->beacon_rssi_c,
1275 max_general->beacon_rssi_c);
1276 pos += scnprintf(buf + pos, bufsz - pos,
1277 fmt_table, "beacon_energy_a:",
1278 le32_to_cpu(general->beacon_energy_a),
1279 accum_general->beacon_energy_a,
1280 delta_general->beacon_energy_a,
1281 max_general->beacon_energy_a);
1282 pos += scnprintf(buf + pos, bufsz - pos,
1283 fmt_table, "beacon_energy_b:",
1284 le32_to_cpu(general->beacon_energy_b),
1285 accum_general->beacon_energy_b,
1286 delta_general->beacon_energy_b,
1287 max_general->beacon_energy_b);
1288 pos += scnprintf(buf + pos, bufsz - pos,
1289 fmt_table, "beacon_energy_c:",
1290 le32_to_cpu(general->beacon_energy_c),
1291 accum_general->beacon_energy_c,
1292 delta_general->beacon_energy_c,
1293 max_general->beacon_energy_c);
1294
1295 pos += scnprintf(buf + pos, bufsz - pos,
1296 fmt_header, "Statistics_Rx - OFDM_HT:");
1297 pos += scnprintf(buf + pos, bufsz - pos,
1298 fmt_table, "plcp_err:",
1299 le32_to_cpu(ht->plcp_err), accum_ht->plcp_err,
1300 delta_ht->plcp_err, max_ht->plcp_err);
1301 pos += scnprintf(buf + pos, bufsz - pos,
1302 fmt_table, "overrun_err:",
1303 le32_to_cpu(ht->overrun_err), accum_ht->overrun_err,
1304 delta_ht->overrun_err, max_ht->overrun_err);
1305 pos += scnprintf(buf + pos, bufsz - pos,
1306 fmt_table, "early_overrun_err:",
1307 le32_to_cpu(ht->early_overrun_err),
1308 accum_ht->early_overrun_err,
1309 delta_ht->early_overrun_err,
1310 max_ht->early_overrun_err);
1311 pos += scnprintf(buf + pos, bufsz - pos,
1312 fmt_table, "crc32_good:",
1313 le32_to_cpu(ht->crc32_good), accum_ht->crc32_good,
1314 delta_ht->crc32_good, max_ht->crc32_good);
1315 pos += scnprintf(buf + pos, bufsz - pos,
1316 fmt_table, "crc32_err:",
1317 le32_to_cpu(ht->crc32_err), accum_ht->crc32_err,
1318 delta_ht->crc32_err, max_ht->crc32_err);
1319 pos += scnprintf(buf + pos, bufsz - pos,
1320 fmt_table, "mh_format_err:",
1321 le32_to_cpu(ht->mh_format_err),
1322 accum_ht->mh_format_err,
1323 delta_ht->mh_format_err, max_ht->mh_format_err);
1324 pos += scnprintf(buf + pos, bufsz - pos,
1325 fmt_table, "agg_crc32_good:",
1326 le32_to_cpu(ht->agg_crc32_good),
1327 accum_ht->agg_crc32_good,
1328 delta_ht->agg_crc32_good, max_ht->agg_crc32_good);
1329 pos += scnprintf(buf + pos, bufsz - pos,
1330 fmt_table, "agg_mpdu_cnt:",
1331 le32_to_cpu(ht->agg_mpdu_cnt),
1332 accum_ht->agg_mpdu_cnt,
1333 delta_ht->agg_mpdu_cnt, max_ht->agg_mpdu_cnt);
1334 pos += scnprintf(buf + pos, bufsz - pos,
1335 fmt_table, "agg_cnt:",
1336 le32_to_cpu(ht->agg_cnt), accum_ht->agg_cnt,
1337 delta_ht->agg_cnt, max_ht->agg_cnt);
1338 pos += scnprintf(buf + pos, bufsz - pos,
1339 fmt_table, "unsupport_mcs:",
1340 le32_to_cpu(ht->unsupport_mcs),
1341 accum_ht->unsupport_mcs,
1342 delta_ht->unsupport_mcs, max_ht->unsupport_mcs);
1343
1344 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1345 kfree(buf);
1346 return ret;
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -07001347}
1348
1349static ssize_t iwl_dbgfs_ucode_tx_stats_read(struct file *file,
1350 char __user *user_buf,
1351 size_t count, loff_t *ppos)
1352{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -07001353 struct iwl_priv *priv = file->private_data;
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001354 int pos = 0;
1355 char *buf;
1356 int bufsz = (sizeof(struct statistics_tx) * 48) + 250;
1357 ssize_t ret;
1358 struct statistics_tx *tx, *accum_tx, *delta_tx, *max_tx;
1359
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07001360 if (!iwl_is_alive(priv->shrd))
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001361 return -EAGAIN;
1362
1363 buf = kzalloc(bufsz, GFP_KERNEL);
1364 if (!buf) {
1365 IWL_ERR(priv, "Can not allocate Buffer\n");
1366 return -ENOMEM;
1367 }
1368
1369 /* the statistic information display here is based on
1370 * the last statistics notification from uCode
1371 * might not reflect the current uCode activity
1372 */
1373 tx = &priv->statistics.tx;
1374 accum_tx = &priv->accum_stats.tx;
1375 delta_tx = &priv->delta_stats.tx;
1376 max_tx = &priv->max_delta_stats.tx;
1377
1378 pos += iwl_statistics_flag(priv, buf, bufsz);
1379 pos += scnprintf(buf + pos, bufsz - pos,
1380 fmt_header, "Statistics_Tx:");
1381 pos += scnprintf(buf + pos, bufsz - pos,
1382 fmt_table, "preamble:",
1383 le32_to_cpu(tx->preamble_cnt),
1384 accum_tx->preamble_cnt,
1385 delta_tx->preamble_cnt, max_tx->preamble_cnt);
1386 pos += scnprintf(buf + pos, bufsz - pos,
1387 fmt_table, "rx_detected_cnt:",
1388 le32_to_cpu(tx->rx_detected_cnt),
1389 accum_tx->rx_detected_cnt,
1390 delta_tx->rx_detected_cnt, max_tx->rx_detected_cnt);
1391 pos += scnprintf(buf + pos, bufsz - pos,
1392 fmt_table, "bt_prio_defer_cnt:",
1393 le32_to_cpu(tx->bt_prio_defer_cnt),
1394 accum_tx->bt_prio_defer_cnt,
1395 delta_tx->bt_prio_defer_cnt,
1396 max_tx->bt_prio_defer_cnt);
1397 pos += scnprintf(buf + pos, bufsz - pos,
1398 fmt_table, "bt_prio_kill_cnt:",
1399 le32_to_cpu(tx->bt_prio_kill_cnt),
1400 accum_tx->bt_prio_kill_cnt,
1401 delta_tx->bt_prio_kill_cnt,
1402 max_tx->bt_prio_kill_cnt);
1403 pos += scnprintf(buf + pos, bufsz - pos,
1404 fmt_table, "few_bytes_cnt:",
1405 le32_to_cpu(tx->few_bytes_cnt),
1406 accum_tx->few_bytes_cnt,
1407 delta_tx->few_bytes_cnt, max_tx->few_bytes_cnt);
1408 pos += scnprintf(buf + pos, bufsz - pos,
1409 fmt_table, "cts_timeout:",
1410 le32_to_cpu(tx->cts_timeout), accum_tx->cts_timeout,
1411 delta_tx->cts_timeout, max_tx->cts_timeout);
1412 pos += scnprintf(buf + pos, bufsz - pos,
1413 fmt_table, "ack_timeout:",
1414 le32_to_cpu(tx->ack_timeout),
1415 accum_tx->ack_timeout,
1416 delta_tx->ack_timeout, max_tx->ack_timeout);
1417 pos += scnprintf(buf + pos, bufsz - pos,
1418 fmt_table, "expected_ack_cnt:",
1419 le32_to_cpu(tx->expected_ack_cnt),
1420 accum_tx->expected_ack_cnt,
1421 delta_tx->expected_ack_cnt,
1422 max_tx->expected_ack_cnt);
1423 pos += scnprintf(buf + pos, bufsz - pos,
1424 fmt_table, "actual_ack_cnt:",
1425 le32_to_cpu(tx->actual_ack_cnt),
1426 accum_tx->actual_ack_cnt,
1427 delta_tx->actual_ack_cnt,
1428 max_tx->actual_ack_cnt);
1429 pos += scnprintf(buf + pos, bufsz - pos,
1430 fmt_table, "dump_msdu_cnt:",
1431 le32_to_cpu(tx->dump_msdu_cnt),
1432 accum_tx->dump_msdu_cnt,
1433 delta_tx->dump_msdu_cnt,
1434 max_tx->dump_msdu_cnt);
1435 pos += scnprintf(buf + pos, bufsz - pos,
1436 fmt_table, "abort_nxt_frame_mismatch:",
1437 le32_to_cpu(tx->burst_abort_next_frame_mismatch_cnt),
1438 accum_tx->burst_abort_next_frame_mismatch_cnt,
1439 delta_tx->burst_abort_next_frame_mismatch_cnt,
1440 max_tx->burst_abort_next_frame_mismatch_cnt);
1441 pos += scnprintf(buf + pos, bufsz - pos,
1442 fmt_table, "abort_missing_nxt_frame:",
1443 le32_to_cpu(tx->burst_abort_missing_next_frame_cnt),
1444 accum_tx->burst_abort_missing_next_frame_cnt,
1445 delta_tx->burst_abort_missing_next_frame_cnt,
1446 max_tx->burst_abort_missing_next_frame_cnt);
1447 pos += scnprintf(buf + pos, bufsz - pos,
1448 fmt_table, "cts_timeout_collision:",
1449 le32_to_cpu(tx->cts_timeout_collision),
1450 accum_tx->cts_timeout_collision,
1451 delta_tx->cts_timeout_collision,
1452 max_tx->cts_timeout_collision);
1453 pos += scnprintf(buf + pos, bufsz - pos,
1454 fmt_table, "ack_ba_timeout_collision:",
1455 le32_to_cpu(tx->ack_or_ba_timeout_collision),
1456 accum_tx->ack_or_ba_timeout_collision,
1457 delta_tx->ack_or_ba_timeout_collision,
1458 max_tx->ack_or_ba_timeout_collision);
1459 pos += scnprintf(buf + pos, bufsz - pos,
1460 fmt_table, "agg ba_timeout:",
1461 le32_to_cpu(tx->agg.ba_timeout),
1462 accum_tx->agg.ba_timeout,
1463 delta_tx->agg.ba_timeout,
1464 max_tx->agg.ba_timeout);
1465 pos += scnprintf(buf + pos, bufsz - pos,
1466 fmt_table, "agg ba_resched_frames:",
1467 le32_to_cpu(tx->agg.ba_reschedule_frames),
1468 accum_tx->agg.ba_reschedule_frames,
1469 delta_tx->agg.ba_reschedule_frames,
1470 max_tx->agg.ba_reschedule_frames);
1471 pos += scnprintf(buf + pos, bufsz - pos,
1472 fmt_table, "agg scd_query_agg_frame:",
1473 le32_to_cpu(tx->agg.scd_query_agg_frame_cnt),
1474 accum_tx->agg.scd_query_agg_frame_cnt,
1475 delta_tx->agg.scd_query_agg_frame_cnt,
1476 max_tx->agg.scd_query_agg_frame_cnt);
1477 pos += scnprintf(buf + pos, bufsz - pos,
1478 fmt_table, "agg scd_query_no_agg:",
1479 le32_to_cpu(tx->agg.scd_query_no_agg),
1480 accum_tx->agg.scd_query_no_agg,
1481 delta_tx->agg.scd_query_no_agg,
1482 max_tx->agg.scd_query_no_agg);
1483 pos += scnprintf(buf + pos, bufsz - pos,
1484 fmt_table, "agg scd_query_agg:",
1485 le32_to_cpu(tx->agg.scd_query_agg),
1486 accum_tx->agg.scd_query_agg,
1487 delta_tx->agg.scd_query_agg,
1488 max_tx->agg.scd_query_agg);
1489 pos += scnprintf(buf + pos, bufsz - pos,
1490 fmt_table, "agg scd_query_mismatch:",
1491 le32_to_cpu(tx->agg.scd_query_mismatch),
1492 accum_tx->agg.scd_query_mismatch,
1493 delta_tx->agg.scd_query_mismatch,
1494 max_tx->agg.scd_query_mismatch);
1495 pos += scnprintf(buf + pos, bufsz - pos,
1496 fmt_table, "agg frame_not_ready:",
1497 le32_to_cpu(tx->agg.frame_not_ready),
1498 accum_tx->agg.frame_not_ready,
1499 delta_tx->agg.frame_not_ready,
1500 max_tx->agg.frame_not_ready);
1501 pos += scnprintf(buf + pos, bufsz - pos,
1502 fmt_table, "agg underrun:",
1503 le32_to_cpu(tx->agg.underrun),
1504 accum_tx->agg.underrun,
1505 delta_tx->agg.underrun, max_tx->agg.underrun);
1506 pos += scnprintf(buf + pos, bufsz - pos,
1507 fmt_table, "agg bt_prio_kill:",
1508 le32_to_cpu(tx->agg.bt_prio_kill),
1509 accum_tx->agg.bt_prio_kill,
1510 delta_tx->agg.bt_prio_kill,
1511 max_tx->agg.bt_prio_kill);
1512 pos += scnprintf(buf + pos, bufsz - pos,
1513 fmt_table, "agg rx_ba_rsp_cnt:",
1514 le32_to_cpu(tx->agg.rx_ba_rsp_cnt),
1515 accum_tx->agg.rx_ba_rsp_cnt,
1516 delta_tx->agg.rx_ba_rsp_cnt,
1517 max_tx->agg.rx_ba_rsp_cnt);
1518
1519 if (tx->tx_power.ant_a || tx->tx_power.ant_b || tx->tx_power.ant_c) {
1520 pos += scnprintf(buf + pos, bufsz - pos,
1521 "tx power: (1/2 dB step)\n");
1522 if ((priv->cfg->valid_tx_ant & ANT_A) && tx->tx_power.ant_a)
1523 pos += scnprintf(buf + pos, bufsz - pos,
1524 fmt_hex, "antenna A:",
1525 tx->tx_power.ant_a);
1526 if ((priv->cfg->valid_tx_ant & ANT_B) && tx->tx_power.ant_b)
1527 pos += scnprintf(buf + pos, bufsz - pos,
1528 fmt_hex, "antenna B:",
1529 tx->tx_power.ant_b);
1530 if ((priv->cfg->valid_tx_ant & ANT_C) && tx->tx_power.ant_c)
1531 pos += scnprintf(buf + pos, bufsz - pos,
1532 fmt_hex, "antenna C:",
1533 tx->tx_power.ant_c);
1534 }
1535 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1536 kfree(buf);
1537 return ret;
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -07001538}
1539
1540static ssize_t iwl_dbgfs_ucode_general_stats_read(struct file *file,
1541 char __user *user_buf,
1542 size_t count, loff_t *ppos)
1543{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -07001544 struct iwl_priv *priv = file->private_data;
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001545 int pos = 0;
1546 char *buf;
1547 int bufsz = sizeof(struct statistics_general) * 10 + 300;
1548 ssize_t ret;
1549 struct statistics_general_common *general, *accum_general;
1550 struct statistics_general_common *delta_general, *max_general;
1551 struct statistics_dbg *dbg, *accum_dbg, *delta_dbg, *max_dbg;
1552 struct statistics_div *div, *accum_div, *delta_div, *max_div;
1553
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07001554 if (!iwl_is_alive(priv->shrd))
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001555 return -EAGAIN;
1556
1557 buf = kzalloc(bufsz, GFP_KERNEL);
1558 if (!buf) {
1559 IWL_ERR(priv, "Can not allocate Buffer\n");
1560 return -ENOMEM;
1561 }
1562
1563 /* the statistic information display here is based on
1564 * the last statistics notification from uCode
1565 * might not reflect the current uCode activity
1566 */
1567 general = &priv->statistics.common;
1568 dbg = &priv->statistics.common.dbg;
1569 div = &priv->statistics.common.div;
1570 accum_general = &priv->accum_stats.common;
1571 accum_dbg = &priv->accum_stats.common.dbg;
1572 accum_div = &priv->accum_stats.common.div;
1573 delta_general = &priv->delta_stats.common;
1574 max_general = &priv->max_delta_stats.common;
1575 delta_dbg = &priv->delta_stats.common.dbg;
1576 max_dbg = &priv->max_delta_stats.common.dbg;
1577 delta_div = &priv->delta_stats.common.div;
1578 max_div = &priv->max_delta_stats.common.div;
1579
1580 pos += iwl_statistics_flag(priv, buf, bufsz);
1581 pos += scnprintf(buf + pos, bufsz - pos,
1582 fmt_header, "Statistics_General:");
1583 pos += scnprintf(buf + pos, bufsz - pos,
1584 fmt_value, "temperature:",
1585 le32_to_cpu(general->temperature));
1586 pos += scnprintf(buf + pos, bufsz - pos,
1587 fmt_value, "temperature_m:",
1588 le32_to_cpu(general->temperature_m));
1589 pos += scnprintf(buf + pos, bufsz - pos,
1590 fmt_value, "ttl_timestamp:",
1591 le32_to_cpu(general->ttl_timestamp));
1592 pos += scnprintf(buf + pos, bufsz - pos,
1593 fmt_table, "burst_check:",
1594 le32_to_cpu(dbg->burst_check),
1595 accum_dbg->burst_check,
1596 delta_dbg->burst_check, max_dbg->burst_check);
1597 pos += scnprintf(buf + pos, bufsz - pos,
1598 fmt_table, "burst_count:",
1599 le32_to_cpu(dbg->burst_count),
1600 accum_dbg->burst_count,
1601 delta_dbg->burst_count, max_dbg->burst_count);
1602 pos += scnprintf(buf + pos, bufsz - pos,
1603 fmt_table, "wait_for_silence_timeout_count:",
1604 le32_to_cpu(dbg->wait_for_silence_timeout_cnt),
1605 accum_dbg->wait_for_silence_timeout_cnt,
1606 delta_dbg->wait_for_silence_timeout_cnt,
1607 max_dbg->wait_for_silence_timeout_cnt);
1608 pos += scnprintf(buf + pos, bufsz - pos,
1609 fmt_table, "sleep_time:",
1610 le32_to_cpu(general->sleep_time),
1611 accum_general->sleep_time,
1612 delta_general->sleep_time, max_general->sleep_time);
1613 pos += scnprintf(buf + pos, bufsz - pos,
1614 fmt_table, "slots_out:",
1615 le32_to_cpu(general->slots_out),
1616 accum_general->slots_out,
1617 delta_general->slots_out, max_general->slots_out);
1618 pos += scnprintf(buf + pos, bufsz - pos,
1619 fmt_table, "slots_idle:",
1620 le32_to_cpu(general->slots_idle),
1621 accum_general->slots_idle,
1622 delta_general->slots_idle, max_general->slots_idle);
1623 pos += scnprintf(buf + pos, bufsz - pos,
1624 fmt_table, "tx_on_a:",
1625 le32_to_cpu(div->tx_on_a), accum_div->tx_on_a,
1626 delta_div->tx_on_a, max_div->tx_on_a);
1627 pos += scnprintf(buf + pos, bufsz - pos,
1628 fmt_table, "tx_on_b:",
1629 le32_to_cpu(div->tx_on_b), accum_div->tx_on_b,
1630 delta_div->tx_on_b, max_div->tx_on_b);
1631 pos += scnprintf(buf + pos, bufsz - pos,
1632 fmt_table, "exec_time:",
1633 le32_to_cpu(div->exec_time), accum_div->exec_time,
1634 delta_div->exec_time, max_div->exec_time);
1635 pos += scnprintf(buf + pos, bufsz - pos,
1636 fmt_table, "probe_time:",
1637 le32_to_cpu(div->probe_time), accum_div->probe_time,
1638 delta_div->probe_time, max_div->probe_time);
1639 pos += scnprintf(buf + pos, bufsz - pos,
1640 fmt_table, "rx_enable_counter:",
1641 le32_to_cpu(general->rx_enable_counter),
1642 accum_general->rx_enable_counter,
1643 delta_general->rx_enable_counter,
1644 max_general->rx_enable_counter);
1645 pos += scnprintf(buf + pos, bufsz - pos,
1646 fmt_table, "num_of_sos_states:",
1647 le32_to_cpu(general->num_of_sos_states),
1648 accum_general->num_of_sos_states,
1649 delta_general->num_of_sos_states,
1650 max_general->num_of_sos_states);
1651 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1652 kfree(buf);
1653 return ret;
1654}
1655
1656static ssize_t iwl_dbgfs_ucode_bt_stats_read(struct file *file,
1657 char __user *user_buf,
1658 size_t count, loff_t *ppos)
1659{
1660 struct iwl_priv *priv = (struct iwl_priv *)file->private_data;
1661 int pos = 0;
1662 char *buf;
1663 int bufsz = (sizeof(struct statistics_bt_activity) * 24) + 200;
1664 ssize_t ret;
1665 struct statistics_bt_activity *bt, *accum_bt;
1666
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07001667 if (!iwl_is_alive(priv->shrd))
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001668 return -EAGAIN;
1669
1670 if (!priv->bt_enable_flag)
1671 return -EINVAL;
1672
1673 /* make request to uCode to retrieve statistics information */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001674 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001675 ret = iwl_send_statistics_request(priv, CMD_SYNC, false);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001676 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001677
1678 if (ret) {
1679 IWL_ERR(priv,
1680 "Error sending statistics request: %zd\n", ret);
1681 return -EAGAIN;
1682 }
1683 buf = kzalloc(bufsz, GFP_KERNEL);
1684 if (!buf) {
1685 IWL_ERR(priv, "Can not allocate Buffer\n");
1686 return -ENOMEM;
1687 }
1688
1689 /*
1690 * the statistic information display here is based on
1691 * the last statistics notification from uCode
1692 * might not reflect the current uCode activity
1693 */
1694 bt = &priv->statistics.bt_activity;
1695 accum_bt = &priv->accum_stats.bt_activity;
1696
1697 pos += iwl_statistics_flag(priv, buf, bufsz);
1698 pos += scnprintf(buf + pos, bufsz - pos, "Statistics_BT:\n");
1699 pos += scnprintf(buf + pos, bufsz - pos,
1700 "\t\t\tcurrent\t\t\taccumulative\n");
1701 pos += scnprintf(buf + pos, bufsz - pos,
1702 "hi_priority_tx_req_cnt:\t\t%u\t\t\t%u\n",
1703 le32_to_cpu(bt->hi_priority_tx_req_cnt),
1704 accum_bt->hi_priority_tx_req_cnt);
1705 pos += scnprintf(buf + pos, bufsz - pos,
1706 "hi_priority_tx_denied_cnt:\t%u\t\t\t%u\n",
1707 le32_to_cpu(bt->hi_priority_tx_denied_cnt),
1708 accum_bt->hi_priority_tx_denied_cnt);
1709 pos += scnprintf(buf + pos, bufsz - pos,
1710 "lo_priority_tx_req_cnt:\t\t%u\t\t\t%u\n",
1711 le32_to_cpu(bt->lo_priority_tx_req_cnt),
1712 accum_bt->lo_priority_tx_req_cnt);
1713 pos += scnprintf(buf + pos, bufsz - pos,
1714 "lo_priority_tx_denied_cnt:\t%u\t\t\t%u\n",
1715 le32_to_cpu(bt->lo_priority_tx_denied_cnt),
1716 accum_bt->lo_priority_tx_denied_cnt);
1717 pos += scnprintf(buf + pos, bufsz - pos,
1718 "hi_priority_rx_req_cnt:\t\t%u\t\t\t%u\n",
1719 le32_to_cpu(bt->hi_priority_rx_req_cnt),
1720 accum_bt->hi_priority_rx_req_cnt);
1721 pos += scnprintf(buf + pos, bufsz - pos,
1722 "hi_priority_rx_denied_cnt:\t%u\t\t\t%u\n",
1723 le32_to_cpu(bt->hi_priority_rx_denied_cnt),
1724 accum_bt->hi_priority_rx_denied_cnt);
1725 pos += scnprintf(buf + pos, bufsz - pos,
1726 "lo_priority_rx_req_cnt:\t\t%u\t\t\t%u\n",
1727 le32_to_cpu(bt->lo_priority_rx_req_cnt),
1728 accum_bt->lo_priority_rx_req_cnt);
1729 pos += scnprintf(buf + pos, bufsz - pos,
1730 "lo_priority_rx_denied_cnt:\t%u\t\t\t%u\n",
1731 le32_to_cpu(bt->lo_priority_rx_denied_cnt),
1732 accum_bt->lo_priority_rx_denied_cnt);
1733
1734 pos += scnprintf(buf + pos, bufsz - pos,
1735 "(rx)num_bt_kills:\t\t%u\t\t\t%u\n",
1736 le32_to_cpu(priv->statistics.num_bt_kills),
1737 priv->statistics.accum_num_bt_kills);
1738
1739 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1740 kfree(buf);
1741 return ret;
1742}
1743
1744static ssize_t iwl_dbgfs_reply_tx_error_read(struct file *file,
1745 char __user *user_buf,
1746 size_t count, loff_t *ppos)
1747{
1748 struct iwl_priv *priv = (struct iwl_priv *)file->private_data;
1749 int pos = 0;
1750 char *buf;
1751 int bufsz = (sizeof(struct reply_tx_error_statistics) * 24) +
1752 (sizeof(struct reply_agg_tx_error_statistics) * 24) + 200;
1753 ssize_t ret;
1754
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07001755 if (!iwl_is_alive(priv->shrd))
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001756 return -EAGAIN;
1757
1758 buf = kzalloc(bufsz, GFP_KERNEL);
1759 if (!buf) {
1760 IWL_ERR(priv, "Can not allocate Buffer\n");
1761 return -ENOMEM;
1762 }
1763
1764 pos += scnprintf(buf + pos, bufsz - pos, "Statistics_TX_Error:\n");
1765 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t\t%u\n",
1766 iwl_get_tx_fail_reason(TX_STATUS_POSTPONE_DELAY),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001767 priv->reply_tx_stats.pp_delay);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001768 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1769 iwl_get_tx_fail_reason(TX_STATUS_POSTPONE_FEW_BYTES),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001770 priv->reply_tx_stats.pp_few_bytes);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001771 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1772 iwl_get_tx_fail_reason(TX_STATUS_POSTPONE_BT_PRIO),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001773 priv->reply_tx_stats.pp_bt_prio);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001774 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1775 iwl_get_tx_fail_reason(TX_STATUS_POSTPONE_QUIET_PERIOD),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001776 priv->reply_tx_stats.pp_quiet_period);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001777 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1778 iwl_get_tx_fail_reason(TX_STATUS_POSTPONE_CALC_TTAK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001779 priv->reply_tx_stats.pp_calc_ttak);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001780 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1781 iwl_get_tx_fail_reason(
1782 TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001783 priv->reply_tx_stats.int_crossed_retry);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001784 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1785 iwl_get_tx_fail_reason(TX_STATUS_FAIL_SHORT_LIMIT),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001786 priv->reply_tx_stats.short_limit);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001787 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1788 iwl_get_tx_fail_reason(TX_STATUS_FAIL_LONG_LIMIT),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001789 priv->reply_tx_stats.long_limit);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001790 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1791 iwl_get_tx_fail_reason(TX_STATUS_FAIL_FIFO_UNDERRUN),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001792 priv->reply_tx_stats.fifo_underrun);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001793 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1794 iwl_get_tx_fail_reason(TX_STATUS_FAIL_DRAIN_FLOW),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001795 priv->reply_tx_stats.drain_flow);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001796 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1797 iwl_get_tx_fail_reason(TX_STATUS_FAIL_RFKILL_FLUSH),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001798 priv->reply_tx_stats.rfkill_flush);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001799 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1800 iwl_get_tx_fail_reason(TX_STATUS_FAIL_LIFE_EXPIRE),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001801 priv->reply_tx_stats.life_expire);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001802 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1803 iwl_get_tx_fail_reason(TX_STATUS_FAIL_DEST_PS),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001804 priv->reply_tx_stats.dest_ps);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001805 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1806 iwl_get_tx_fail_reason(TX_STATUS_FAIL_HOST_ABORTED),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001807 priv->reply_tx_stats.host_abort);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001808 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1809 iwl_get_tx_fail_reason(TX_STATUS_FAIL_BT_RETRY),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001810 priv->reply_tx_stats.pp_delay);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001811 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1812 iwl_get_tx_fail_reason(TX_STATUS_FAIL_STA_INVALID),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001813 priv->reply_tx_stats.sta_invalid);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001814 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1815 iwl_get_tx_fail_reason(TX_STATUS_FAIL_FRAG_DROPPED),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001816 priv->reply_tx_stats.frag_drop);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001817 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1818 iwl_get_tx_fail_reason(TX_STATUS_FAIL_TID_DISABLE),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001819 priv->reply_tx_stats.tid_disable);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001820 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1821 iwl_get_tx_fail_reason(TX_STATUS_FAIL_FIFO_FLUSHED),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001822 priv->reply_tx_stats.fifo_flush);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001823 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1824 iwl_get_tx_fail_reason(
1825 TX_STATUS_FAIL_INSUFFICIENT_CF_POLL),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001826 priv->reply_tx_stats.insuff_cf_poll);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001827 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1828 iwl_get_tx_fail_reason(TX_STATUS_FAIL_PASSIVE_NO_RX),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001829 priv->reply_tx_stats.fail_hw_drop);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001830 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1831 iwl_get_tx_fail_reason(
1832 TX_STATUS_FAIL_NO_BEACON_ON_RADAR),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001833 priv->reply_tx_stats.sta_color_mismatch);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001834 pos += scnprintf(buf + pos, bufsz - pos, "UNKNOWN:\t\t\t%u\n",
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001835 priv->reply_tx_stats.unknown);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001836
1837 pos += scnprintf(buf + pos, bufsz - pos,
1838 "\nStatistics_Agg_TX_Error:\n");
1839
1840 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1841 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_UNDERRUN_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001842 priv->reply_agg_tx_stats.underrun);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001843 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1844 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_BT_PRIO_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001845 priv->reply_agg_tx_stats.bt_prio);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001846 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1847 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_FEW_BYTES_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001848 priv->reply_agg_tx_stats.few_bytes);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001849 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1850 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_ABORT_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001851 priv->reply_agg_tx_stats.abort);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001852 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1853 iwl_get_agg_tx_fail_reason(
1854 AGG_TX_STATE_LAST_SENT_TTL_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001855 priv->reply_agg_tx_stats.last_sent_ttl);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001856 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1857 iwl_get_agg_tx_fail_reason(
1858 AGG_TX_STATE_LAST_SENT_TRY_CNT_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001859 priv->reply_agg_tx_stats.last_sent_try);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001860 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1861 iwl_get_agg_tx_fail_reason(
1862 AGG_TX_STATE_LAST_SENT_BT_KILL_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001863 priv->reply_agg_tx_stats.last_sent_bt_kill);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001864 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1865 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_SCD_QUERY_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001866 priv->reply_agg_tx_stats.scd_query);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001867 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t%u\n",
1868 iwl_get_agg_tx_fail_reason(
1869 AGG_TX_STATE_TEST_BAD_CRC32_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001870 priv->reply_agg_tx_stats.bad_crc32);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001871 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1872 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_RESPONSE_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001873 priv->reply_agg_tx_stats.response);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001874 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1875 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_DUMP_TX_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001876 priv->reply_agg_tx_stats.dump_tx);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001877 pos += scnprintf(buf + pos, bufsz - pos, "%s:\t\t\t%u\n",
1878 iwl_get_agg_tx_fail_reason(AGG_TX_STATE_DELAY_TX_MSK),
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001879 priv->reply_agg_tx_stats.delay_tx);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001880 pos += scnprintf(buf + pos, bufsz - pos, "UNKNOWN:\t\t\t%u\n",
Wey-Yi Guy898ed672011-07-13 08:38:57 -07001881 priv->reply_agg_tx_stats.unknown);
Wey-Yi Guyd6d023a2011-04-30 09:10:53 -07001882
1883 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1884 kfree(buf);
1885 return ret;
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -07001886}
1887
Wey-Yi Guy52259352009-08-07 15:41:43 -07001888static ssize_t iwl_dbgfs_sensitivity_read(struct file *file,
1889 char __user *user_buf,
1890 size_t count, loff_t *ppos) {
1891
H Hartley Sweeten28f63a42010-01-08 16:14:10 -07001892 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy52259352009-08-07 15:41:43 -07001893 int pos = 0;
1894 int cnt = 0;
1895 char *buf;
1896 int bufsz = sizeof(struct iwl_sensitivity_data) * 4 + 100;
1897 ssize_t ret;
1898 struct iwl_sensitivity_data *data;
1899
1900 data = &priv->sensitivity_data;
1901 buf = kzalloc(bufsz, GFP_KERNEL);
1902 if (!buf) {
1903 IWL_ERR(priv, "Can not allocate Buffer\n");
1904 return -ENOMEM;
1905 }
1906
1907 pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_ofdm:\t\t\t %u\n",
1908 data->auto_corr_ofdm);
1909 pos += scnprintf(buf + pos, bufsz - pos,
1910 "auto_corr_ofdm_mrc:\t\t %u\n",
1911 data->auto_corr_ofdm_mrc);
1912 pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_ofdm_x1:\t\t %u\n",
1913 data->auto_corr_ofdm_x1);
1914 pos += scnprintf(buf + pos, bufsz - pos,
1915 "auto_corr_ofdm_mrc_x1:\t\t %u\n",
1916 data->auto_corr_ofdm_mrc_x1);
1917 pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_cck:\t\t\t %u\n",
1918 data->auto_corr_cck);
1919 pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_cck_mrc:\t\t %u\n",
1920 data->auto_corr_cck_mrc);
1921 pos += scnprintf(buf + pos, bufsz - pos,
1922 "last_bad_plcp_cnt_ofdm:\t\t %u\n",
1923 data->last_bad_plcp_cnt_ofdm);
1924 pos += scnprintf(buf + pos, bufsz - pos, "last_fa_cnt_ofdm:\t\t %u\n",
1925 data->last_fa_cnt_ofdm);
1926 pos += scnprintf(buf + pos, bufsz - pos,
1927 "last_bad_plcp_cnt_cck:\t\t %u\n",
1928 data->last_bad_plcp_cnt_cck);
1929 pos += scnprintf(buf + pos, bufsz - pos, "last_fa_cnt_cck:\t\t %u\n",
1930 data->last_fa_cnt_cck);
1931 pos += scnprintf(buf + pos, bufsz - pos, "nrg_curr_state:\t\t\t %u\n",
1932 data->nrg_curr_state);
1933 pos += scnprintf(buf + pos, bufsz - pos, "nrg_prev_state:\t\t\t %u\n",
1934 data->nrg_prev_state);
1935 pos += scnprintf(buf + pos, bufsz - pos, "nrg_value:\t\t\t");
1936 for (cnt = 0; cnt < 10; cnt++) {
1937 pos += scnprintf(buf + pos, bufsz - pos, " %u",
1938 data->nrg_value[cnt]);
1939 }
1940 pos += scnprintf(buf + pos, bufsz - pos, "\n");
1941 pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_rssi:\t\t");
1942 for (cnt = 0; cnt < NRG_NUM_PREV_STAT_L; cnt++) {
1943 pos += scnprintf(buf + pos, bufsz - pos, " %u",
1944 data->nrg_silence_rssi[cnt]);
1945 }
1946 pos += scnprintf(buf + pos, bufsz - pos, "\n");
1947 pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_ref:\t\t %u\n",
1948 data->nrg_silence_ref);
1949 pos += scnprintf(buf + pos, bufsz - pos, "nrg_energy_idx:\t\t\t %u\n",
1950 data->nrg_energy_idx);
1951 pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_idx:\t\t %u\n",
1952 data->nrg_silence_idx);
1953 pos += scnprintf(buf + pos, bufsz - pos, "nrg_th_cck:\t\t\t %u\n",
1954 data->nrg_th_cck);
1955 pos += scnprintf(buf + pos, bufsz - pos,
1956 "nrg_auto_corr_silence_diff:\t %u\n",
1957 data->nrg_auto_corr_silence_diff);
1958 pos += scnprintf(buf + pos, bufsz - pos, "num_in_cck_no_fa:\t\t %u\n",
1959 data->num_in_cck_no_fa);
1960 pos += scnprintf(buf + pos, bufsz - pos, "nrg_th_ofdm:\t\t\t %u\n",
1961 data->nrg_th_ofdm);
1962
1963 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1964 kfree(buf);
1965 return ret;
1966}
1967
1968
1969static ssize_t iwl_dbgfs_chain_noise_read(struct file *file,
1970 char __user *user_buf,
1971 size_t count, loff_t *ppos) {
1972
H Hartley Sweeten28f63a42010-01-08 16:14:10 -07001973 struct iwl_priv *priv = file->private_data;
Wey-Yi Guy52259352009-08-07 15:41:43 -07001974 int pos = 0;
1975 int cnt = 0;
1976 char *buf;
1977 int bufsz = sizeof(struct iwl_chain_noise_data) * 4 + 100;
1978 ssize_t ret;
1979 struct iwl_chain_noise_data *data;
1980
1981 data = &priv->chain_noise_data;
1982 buf = kzalloc(bufsz, GFP_KERNEL);
1983 if (!buf) {
1984 IWL_ERR(priv, "Can not allocate Buffer\n");
1985 return -ENOMEM;
1986 }
1987
1988 pos += scnprintf(buf + pos, bufsz - pos, "active_chains:\t\t\t %u\n",
1989 data->active_chains);
1990 pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_a:\t\t\t %u\n",
1991 data->chain_noise_a);
1992 pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_b:\t\t\t %u\n",
1993 data->chain_noise_b);
1994 pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_c:\t\t\t %u\n",
1995 data->chain_noise_c);
1996 pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_a:\t\t\t %u\n",
1997 data->chain_signal_a);
1998 pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_b:\t\t\t %u\n",
1999 data->chain_signal_b);
2000 pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_c:\t\t\t %u\n",
2001 data->chain_signal_c);
2002 pos += scnprintf(buf + pos, bufsz - pos, "beacon_count:\t\t\t %u\n",
2003 data->beacon_count);
2004
2005 pos += scnprintf(buf + pos, bufsz - pos, "disconn_array:\t\t\t");
2006 for (cnt = 0; cnt < NUM_RX_CHAINS; cnt++) {
2007 pos += scnprintf(buf + pos, bufsz - pos, " %u",
2008 data->disconn_array[cnt]);
2009 }
2010 pos += scnprintf(buf + pos, bufsz - pos, "\n");
2011 pos += scnprintf(buf + pos, bufsz - pos, "delta_gain_code:\t\t");
2012 for (cnt = 0; cnt < NUM_RX_CHAINS; cnt++) {
2013 pos += scnprintf(buf + pos, bufsz - pos, " %u",
2014 data->delta_gain_code[cnt]);
2015 }
2016 pos += scnprintf(buf + pos, bufsz - pos, "\n");
2017 pos += scnprintf(buf + pos, bufsz - pos, "radio_write:\t\t\t %u\n",
2018 data->radio_write);
2019 pos += scnprintf(buf + pos, bufsz - pos, "state:\t\t\t\t %u\n",
2020 data->state);
2021
2022 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2023 kfree(buf);
2024 return ret;
2025}
2026
Wey-Yi Guyc09430a2009-10-16 14:25:50 -07002027static ssize_t iwl_dbgfs_power_save_status_read(struct file *file,
2028 char __user *user_buf,
2029 size_t count, loff_t *ppos)
2030{
H Hartley Sweeten28f63a42010-01-08 16:14:10 -07002031 struct iwl_priv *priv = file->private_data;
Wey-Yi Guyc09430a2009-10-16 14:25:50 -07002032 char buf[60];
2033 int pos = 0;
2034 const size_t bufsz = sizeof(buf);
2035 u32 pwrsave_status;
2036
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -07002037 pwrsave_status = iwl_read32(bus(priv), CSR_GP_CNTRL) &
Wey-Yi Guyc09430a2009-10-16 14:25:50 -07002038 CSR_GP_REG_POWER_SAVE_STATUS_MSK;
2039
2040 pos += scnprintf(buf + pos, bufsz - pos, "Power Save Status: ");
2041 pos += scnprintf(buf + pos, bufsz - pos, "%s\n",
2042 (pwrsave_status == CSR_GP_REG_NO_POWER_SAVE) ? "none" :
2043 (pwrsave_status == CSR_GP_REG_MAC_POWER_SAVE) ? "MAC" :
2044 (pwrsave_status == CSR_GP_REG_PHY_POWER_SAVE) ? "PHY" :
2045 "error");
2046
2047 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2048}
2049
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -08002050static ssize_t iwl_dbgfs_clear_ucode_statistics_write(struct file *file,
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08002051 const char __user *user_buf,
2052 size_t count, loff_t *ppos)
2053{
2054 struct iwl_priv *priv = file->private_data;
2055 char buf[8];
2056 int buf_size;
2057 int clear;
2058
2059 memset(buf, 0, sizeof(buf));
2060 buf_size = min(count, sizeof(buf) - 1);
2061 if (copy_from_user(buf, user_buf, buf_size))
2062 return -EFAULT;
2063 if (sscanf(buf, "%d", &clear) != 1)
2064 return -EFAULT;
2065
2066 /* make request to uCode to retrieve statistics information */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07002067 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08002068 iwl_send_statistics_request(priv, CMD_SYNC, true);
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07002069 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyef8d5522009-11-13 11:56:28 -08002070
2071 return count;
2072}
2073
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08002074static ssize_t iwl_dbgfs_ucode_tracing_read(struct file *file,
2075 char __user *user_buf,
2076 size_t count, loff_t *ppos) {
2077
Joe Perches57674302010-07-12 13:50:06 -07002078 struct iwl_priv *priv = file->private_data;
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08002079 int pos = 0;
2080 char buf[128];
2081 const size_t bufsz = sizeof(buf);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08002082
2083 pos += scnprintf(buf + pos, bufsz - pos, "ucode trace timer is %s\n",
2084 priv->event_log.ucode_trace ? "On" : "Off");
2085 pos += scnprintf(buf + pos, bufsz - pos, "non_wraps_count:\t\t %u\n",
2086 priv->event_log.non_wraps_count);
2087 pos += scnprintf(buf + pos, bufsz - pos, "wraps_once_count:\t\t %u\n",
2088 priv->event_log.wraps_once_count);
2089 pos += scnprintf(buf + pos, bufsz - pos, "wraps_more_count:\t\t %u\n",
2090 priv->event_log.wraps_more_count);
2091
Wey-Yi Guy4967c312010-02-18 15:22:07 -08002092 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08002093}
2094
2095static ssize_t iwl_dbgfs_ucode_tracing_write(struct file *file,
2096 const char __user *user_buf,
2097 size_t count, loff_t *ppos)
2098{
2099 struct iwl_priv *priv = file->private_data;
2100 char buf[8];
2101 int buf_size;
2102 int trace;
2103
2104 memset(buf, 0, sizeof(buf));
2105 buf_size = min(count, sizeof(buf) - 1);
2106 if (copy_from_user(buf, user_buf, buf_size))
2107 return -EFAULT;
2108 if (sscanf(buf, "%d", &trace) != 1)
2109 return -EFAULT;
2110
2111 if (trace) {
2112 priv->event_log.ucode_trace = true;
2113 /* schedule the ucode timer to occur in UCODE_TRACE_PERIOD */
2114 mod_timer(&priv->ucode_trace,
2115 jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD));
2116 } else {
2117 priv->event_log.ucode_trace = false;
2118 del_timer_sync(&priv->ucode_trace);
2119 }
2120
2121 return count;
2122}
2123
Johannes Berg60987202010-02-18 00:36:07 -08002124static ssize_t iwl_dbgfs_rxon_flags_read(struct file *file,
2125 char __user *user_buf,
2126 size_t count, loff_t *ppos) {
2127
Joe Perches57674302010-07-12 13:50:06 -07002128 struct iwl_priv *priv = file->private_data;
Johannes Berg60987202010-02-18 00:36:07 -08002129 int len = 0;
2130 char buf[20];
2131
Johannes Berg246ed352010-08-23 10:46:32 +02002132 len = sprintf(buf, "0x%04X\n",
2133 le32_to_cpu(priv->contexts[IWL_RXON_CTX_BSS].active.flags));
Johannes Berg60987202010-02-18 00:36:07 -08002134 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
2135}
2136
2137static ssize_t iwl_dbgfs_rxon_filter_flags_read(struct file *file,
2138 char __user *user_buf,
2139 size_t count, loff_t *ppos) {
2140
Joe Perches57674302010-07-12 13:50:06 -07002141 struct iwl_priv *priv = file->private_data;
Johannes Berg60987202010-02-18 00:36:07 -08002142 int len = 0;
2143 char buf[20];
2144
2145 len = sprintf(buf, "0x%04X\n",
Johannes Berg246ed352010-08-23 10:46:32 +02002146 le32_to_cpu(priv->contexts[IWL_RXON_CTX_BSS].active.filter_flags));
Johannes Berg60987202010-02-18 00:36:07 -08002147 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
2148}
2149
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002150static ssize_t iwl_dbgfs_missed_beacon_read(struct file *file,
2151 char __user *user_buf,
2152 size_t count, loff_t *ppos) {
2153
2154 struct iwl_priv *priv = file->private_data;
2155 int pos = 0;
2156 char buf[12];
2157 const size_t bufsz = sizeof(buf);
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002158
2159 pos += scnprintf(buf + pos, bufsz - pos, "%d\n",
2160 priv->missed_beacon_threshold);
2161
Wey-Yi Guy4967c312010-02-18 15:22:07 -08002162 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002163}
2164
2165static ssize_t iwl_dbgfs_missed_beacon_write(struct file *file,
2166 const char __user *user_buf,
2167 size_t count, loff_t *ppos)
2168{
2169 struct iwl_priv *priv = file->private_data;
2170 char buf[8];
2171 int buf_size;
2172 int missed;
2173
2174 memset(buf, 0, sizeof(buf));
2175 buf_size = min(count, sizeof(buf) - 1);
2176 if (copy_from_user(buf, user_buf, buf_size))
2177 return -EFAULT;
2178 if (sscanf(buf, "%d", &missed) != 1)
2179 return -EINVAL;
2180
2181 if (missed < IWL_MISSED_BEACON_THRESHOLD_MIN ||
2182 missed > IWL_MISSED_BEACON_THRESHOLD_MAX)
2183 priv->missed_beacon_threshold =
2184 IWL_MISSED_BEACON_THRESHOLD_DEF;
2185 else
2186 priv->missed_beacon_threshold = missed;
2187
2188 return count;
2189}
2190
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002191static ssize_t iwl_dbgfs_plcp_delta_read(struct file *file,
2192 char __user *user_buf,
2193 size_t count, loff_t *ppos) {
2194
Joe Perches57674302010-07-12 13:50:06 -07002195 struct iwl_priv *priv = file->private_data;
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002196 int pos = 0;
2197 char buf[12];
2198 const size_t bufsz = sizeof(buf);
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002199
2200 pos += scnprintf(buf + pos, bufsz - pos, "%u\n",
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002201 priv->cfg->base_params->plcp_delta_threshold);
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002202
Wey-Yi Guy4967c312010-02-18 15:22:07 -08002203 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002204}
2205
2206static ssize_t iwl_dbgfs_plcp_delta_write(struct file *file,
2207 const char __user *user_buf,
2208 size_t count, loff_t *ppos) {
2209
2210 struct iwl_priv *priv = file->private_data;
2211 char buf[8];
2212 int buf_size;
2213 int plcp;
2214
2215 memset(buf, 0, sizeof(buf));
2216 buf_size = min(count, sizeof(buf) - 1);
2217 if (copy_from_user(buf, user_buf, buf_size))
2218 return -EFAULT;
2219 if (sscanf(buf, "%d", &plcp) != 1)
2220 return -EINVAL;
Wey-Yi Guy680788a2010-06-17 15:25:00 -07002221 if ((plcp < IWL_MAX_PLCP_ERR_THRESHOLD_MIN) ||
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002222 (plcp > IWL_MAX_PLCP_ERR_THRESHOLD_MAX))
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002223 priv->cfg->base_params->plcp_delta_threshold =
Wey-Yi Guy680788a2010-06-17 15:25:00 -07002224 IWL_MAX_PLCP_ERR_THRESHOLD_DISABLE;
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002225 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002226 priv->cfg->base_params->plcp_delta_threshold = plcp;
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002227 return count;
2228}
2229
Wey-Yi Guy528c3122010-02-18 22:03:07 -08002230static ssize_t iwl_dbgfs_force_reset_read(struct file *file,
2231 char __user *user_buf,
2232 size_t count, loff_t *ppos) {
2233
2234 struct iwl_priv *priv = file->private_data;
2235 int i, pos = 0;
2236 char buf[300];
2237 const size_t bufsz = sizeof(buf);
2238 struct iwl_force_reset *force_reset;
2239
2240 for (i = 0; i < IWL_MAX_FORCE_RESET; i++) {
2241 force_reset = &priv->force_reset[i];
2242 pos += scnprintf(buf + pos, bufsz - pos,
2243 "Force reset method %d\n", i);
2244 pos += scnprintf(buf + pos, bufsz - pos,
2245 "\tnumber of reset request: %d\n",
2246 force_reset->reset_request_count);
2247 pos += scnprintf(buf + pos, bufsz - pos,
2248 "\tnumber of reset request success: %d\n",
2249 force_reset->reset_success_count);
2250 pos += scnprintf(buf + pos, bufsz - pos,
2251 "\tnumber of reset request reject: %d\n",
2252 force_reset->reset_reject_count);
2253 pos += scnprintf(buf + pos, bufsz - pos,
2254 "\treset duration: %lu\n",
2255 force_reset->reset_duration);
2256 }
2257 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2258}
2259
Wey-Yi Guy04cafd72010-02-03 11:47:20 -08002260static ssize_t iwl_dbgfs_force_reset_write(struct file *file,
2261 const char __user *user_buf,
2262 size_t count, loff_t *ppos) {
2263
2264 struct iwl_priv *priv = file->private_data;
2265 char buf[8];
2266 int buf_size;
2267 int reset, ret;
2268
2269 memset(buf, 0, sizeof(buf));
2270 buf_size = min(count, sizeof(buf) - 1);
2271 if (copy_from_user(buf, user_buf, buf_size))
2272 return -EFAULT;
2273 if (sscanf(buf, "%d", &reset) != 1)
2274 return -EINVAL;
2275 switch (reset) {
2276 case IWL_RF_RESET:
2277 case IWL_FW_RESET:
Wey-Yi Guyc04f9f22010-06-21 16:52:55 -07002278 ret = iwl_force_reset(priv, reset, true);
Wey-Yi Guy04cafd72010-02-03 11:47:20 -08002279 break;
2280 default:
2281 return -EINVAL;
2282 }
2283 return ret ? ret : count;
2284}
2285
Wey-Yi Guy4bf49a92010-06-24 13:18:36 -07002286static ssize_t iwl_dbgfs_txfifo_flush_write(struct file *file,
2287 const char __user *user_buf,
2288 size_t count, loff_t *ppos) {
2289
2290 struct iwl_priv *priv = file->private_data;
2291 char buf[8];
2292 int buf_size;
2293 int flush;
2294
2295 memset(buf, 0, sizeof(buf));
2296 buf_size = min(count, sizeof(buf) - 1);
2297 if (copy_from_user(buf, user_buf, buf_size))
2298 return -EFAULT;
2299 if (sscanf(buf, "%d", &flush) != 1)
2300 return -EINVAL;
2301
Emmanuel Grumbach845a9c02011-08-25 23:11:04 -07002302 if (iwl_is_rfkill(priv->shrd))
Wey-Yi Guy4bf49a92010-06-24 13:18:36 -07002303 return -EFAULT;
2304
Wey-Yi Guyc68744f2011-06-18 08:03:18 -07002305 iwlagn_dev_txfifo_flush(priv, IWL_DROP_ALL);
Wey-Yi Guy4bf49a92010-06-24 13:18:36 -07002306
2307 return count;
2308}
2309
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002310static ssize_t iwl_dbgfs_wd_timeout_write(struct file *file,
Wey-Yi Guy7bdc4732010-08-23 07:57:07 -07002311 const char __user *user_buf,
2312 size_t count, loff_t *ppos) {
2313
2314 struct iwl_priv *priv = file->private_data;
2315 char buf[8];
2316 int buf_size;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002317 int timeout;
Wey-Yi Guy7bdc4732010-08-23 07:57:07 -07002318
2319 memset(buf, 0, sizeof(buf));
2320 buf_size = min(count, sizeof(buf) - 1);
2321 if (copy_from_user(buf, user_buf, buf_size))
2322 return -EFAULT;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002323 if (sscanf(buf, "%d", &timeout) != 1)
Wey-Yi Guy7bdc4732010-08-23 07:57:07 -07002324 return -EINVAL;
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002325 if (timeout < 0 || timeout > IWL_MAX_WD_TIMEOUT)
2326 timeout = IWL_DEF_WD_TIMEOUT;
Wey-Yi Guy7bdc4732010-08-23 07:57:07 -07002327
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002328 priv->cfg->base_params->wd_timeout = timeout;
2329 iwl_setup_watchdog(priv);
Wey-Yi Guy7bdc4732010-08-23 07:57:07 -07002330 return count;
2331}
2332
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002333static ssize_t iwl_dbgfs_bt_traffic_read(struct file *file,
2334 char __user *user_buf,
2335 size_t count, loff_t *ppos) {
2336
2337 struct iwl_priv *priv = (struct iwl_priv *)file->private_data;
2338 int pos = 0;
2339 char buf[200];
2340 const size_t bufsz = sizeof(buf);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002341
Wey-Yi Guyf21dd002010-12-08 15:34:52 -08002342 if (!priv->bt_enable_flag) {
2343 pos += scnprintf(buf + pos, bufsz - pos, "BT coex disabled\n");
Johannes Berg08960de2011-04-05 09:41:53 -07002344 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guyf21dd002010-12-08 15:34:52 -08002345 }
2346 pos += scnprintf(buf + pos, bufsz - pos, "BT enable flag: 0x%x\n",
2347 priv->bt_enable_flag);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002348 pos += scnprintf(buf + pos, bufsz - pos, "BT in %s mode\n",
2349 priv->bt_full_concurrent ? "full concurrency" : "3-wire");
2350 pos += scnprintf(buf + pos, bufsz - pos, "BT status: %s, "
2351 "last traffic notif: %d\n",
Wey-Yi Guy66e863a52010-11-08 14:54:37 -08002352 priv->bt_status ? "On" : "Off", priv->last_bt_traffic_load);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002353 pos += scnprintf(buf + pos, bufsz - pos, "ch_announcement: %d, "
Wey-Yi Guy187bc4f2011-01-27 13:01:33 -08002354 "kill_ack_mask: %x, kill_cts_mask: %x\n",
2355 priv->bt_ch_announce, priv->kill_ack_mask,
2356 priv->kill_cts_mask);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002357
2358 pos += scnprintf(buf + pos, bufsz - pos, "bluetooth traffic load: ");
2359 switch (priv->bt_traffic_load) {
2360 case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS:
2361 pos += scnprintf(buf + pos, bufsz - pos, "Continuous\n");
2362 break;
2363 case IWL_BT_COEX_TRAFFIC_LOAD_HIGH:
2364 pos += scnprintf(buf + pos, bufsz - pos, "High\n");
2365 break;
2366 case IWL_BT_COEX_TRAFFIC_LOAD_LOW:
2367 pos += scnprintf(buf + pos, bufsz - pos, "Low\n");
2368 break;
2369 case IWL_BT_COEX_TRAFFIC_LOAD_NONE:
2370 default:
2371 pos += scnprintf(buf + pos, bufsz - pos, "None\n");
2372 break;
2373 }
2374
Johannes Berg08960de2011-04-05 09:41:53 -07002375 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002376}
2377
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002378static ssize_t iwl_dbgfs_protection_mode_read(struct file *file,
2379 char __user *user_buf,
2380 size_t count, loff_t *ppos)
2381{
2382 struct iwl_priv *priv = (struct iwl_priv *)file->private_data;
2383
2384 int pos = 0;
2385 char buf[40];
2386 const size_t bufsz = sizeof(buf);
2387
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002388 if (priv->cfg->ht_params)
2389 pos += scnprintf(buf + pos, bufsz - pos,
2390 "use %s for aggregation\n",
2391 (priv->cfg->ht_params->use_rts_for_aggregation) ?
2392 "rts/cts" : "cts-to-self");
2393 else
2394 pos += scnprintf(buf + pos, bufsz - pos, "N/A");
2395
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002396 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
2397}
2398
2399static ssize_t iwl_dbgfs_protection_mode_write(struct file *file,
2400 const char __user *user_buf,
2401 size_t count, loff_t *ppos) {
2402
2403 struct iwl_priv *priv = file->private_data;
2404 char buf[8];
2405 int buf_size;
2406 int rts;
2407
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002408 if (!priv->cfg->ht_params)
2409 return -EINVAL;
2410
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002411 memset(buf, 0, sizeof(buf));
2412 buf_size = min(count, sizeof(buf) - 1);
2413 if (copy_from_user(buf, user_buf, buf_size))
2414 return -EFAULT;
2415 if (sscanf(buf, "%d", &rts) != 1)
2416 return -EINVAL;
2417 if (rts)
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002418 priv->cfg->ht_params->use_rts_for_aggregation = true;
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002419 else
Wey-Yi Guy7cb1b082010-10-06 08:10:00 -07002420 priv->cfg->ht_params->use_rts_for_aggregation = false;
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002421 return count;
2422}
2423
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -08002424DEBUGFS_READ_FILE_OPS(rx_statistics);
2425DEBUGFS_READ_FILE_OPS(tx_statistics);
Emmanuel Grumbach41f5e042011-09-06 09:31:20 -07002426DEBUGFS_READ_WRITE_FILE_OPS(traffic_log);
Wey-Yi Guye8fe59a2009-08-07 15:41:42 -07002427DEBUGFS_READ_FILE_OPS(ucode_rx_stats);
2428DEBUGFS_READ_FILE_OPS(ucode_tx_stats);
2429DEBUGFS_READ_FILE_OPS(ucode_general_stats);
Wey-Yi Guy52259352009-08-07 15:41:43 -07002430DEBUGFS_READ_FILE_OPS(sensitivity);
2431DEBUGFS_READ_FILE_OPS(chain_noise);
Wey-Yi Guyc09430a2009-10-16 14:25:50 -07002432DEBUGFS_READ_FILE_OPS(power_save_status);
Wey-Yi Guy7163b8a2009-11-20 12:04:56 -08002433DEBUGFS_WRITE_FILE_OPS(clear_ucode_statistics);
2434DEBUGFS_WRITE_FILE_OPS(clear_traffic_statistics);
Wey-Yi Guya9e1cb62009-12-10 14:37:26 -08002435DEBUGFS_READ_WRITE_FILE_OPS(ucode_tracing);
Wey-Yi Guya13d2762010-01-22 14:22:42 -08002436DEBUGFS_READ_WRITE_FILE_OPS(missed_beacon);
Trieu 'Andrew' Nguyen3e4fb5f2010-01-22 14:22:46 -08002437DEBUGFS_READ_WRITE_FILE_OPS(plcp_delta);
Wey-Yi Guy528c3122010-02-18 22:03:07 -08002438DEBUGFS_READ_WRITE_FILE_OPS(force_reset);
Johannes Berg60987202010-02-18 00:36:07 -08002439DEBUGFS_READ_FILE_OPS(rxon_flags);
2440DEBUGFS_READ_FILE_OPS(rxon_filter_flags);
Wey-Yi Guy4bf49a92010-06-24 13:18:36 -07002441DEBUGFS_WRITE_FILE_OPS(txfifo_flush);
Wey-Yi Guyffb7d892010-07-14 08:09:55 -07002442DEBUGFS_READ_FILE_OPS(ucode_bt_stats);
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002443DEBUGFS_WRITE_FILE_OPS(wd_timeout);
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002444DEBUGFS_READ_FILE_OPS(bt_traffic);
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002445DEBUGFS_READ_WRITE_FILE_OPS(protection_mode);
Wey-Yi Guy54a9aa62010-09-05 10:49:42 -07002446DEBUGFS_READ_FILE_OPS(reply_tx_error);
Wey-Yi Guy20594eb2009-08-07 15:41:39 -07002447
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002448/*
2449 * Create the debugfs files and directories
2450 *
2451 */
2452int iwl_dbgfs_register(struct iwl_priv *priv, const char *name)
2453{
Zhu Yi95b1a822008-05-29 16:34:50 +08002454 struct dentry *phyd = priv->hw->wiphy->debugfsdir;
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002455 struct dentry *dir_drv, *dir_data, *dir_rf, *dir_debug;
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002456
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002457 dir_drv = debugfs_create_dir(name, phyd);
2458 if (!dir_drv)
2459 return -ENOMEM;
2460
2461 priv->debugfs_dir = dir_drv;
2462
2463 dir_data = debugfs_create_dir("data", dir_drv);
2464 if (!dir_data)
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002465 goto err;
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002466 dir_rf = debugfs_create_dir("rf", dir_drv);
2467 if (!dir_rf)
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002468 goto err;
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002469 dir_debug = debugfs_create_dir("debug", dir_drv);
2470 if (!dir_debug)
2471 goto err;
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002472
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002473 DEBUGFS_ADD_FILE(nvm, dir_data, S_IRUSR);
2474 DEBUGFS_ADD_FILE(sram, dir_data, S_IWUSR | S_IRUSR);
Johannes Bergc8ac61c2011-07-15 13:23:45 -07002475 DEBUGFS_ADD_FILE(wowlan_sram, dir_data, S_IRUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002476 DEBUGFS_ADD_FILE(stations, dir_data, S_IRUSR);
2477 DEBUGFS_ADD_FILE(channels, dir_data, S_IRUSR);
2478 DEBUGFS_ADD_FILE(status, dir_data, S_IRUSR);
Emmanuel Grumbach1f7b6172011-08-25 23:10:59 -07002479 DEBUGFS_ADD_FILE(rx_handlers, dir_data, S_IWUSR | S_IRUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002480 DEBUGFS_ADD_FILE(qos, dir_data, S_IRUSR);
Wey-Yi Guy23c0fcc2011-04-01 16:29:53 -07002481 DEBUGFS_ADD_FILE(sleep_level_override, dir_data, S_IWUSR | S_IRUSR);
2482 DEBUGFS_ADD_FILE(current_sleep_command, dir_data, S_IRUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002483 DEBUGFS_ADD_FILE(thermal_throttling, dir_data, S_IRUSR);
2484 DEBUGFS_ADD_FILE(disable_ht40, dir_data, S_IWUSR | S_IRUSR);
2485 DEBUGFS_ADD_FILE(rx_statistics, dir_debug, S_IRUSR);
2486 DEBUGFS_ADD_FILE(tx_statistics, dir_debug, S_IRUSR);
Emmanuel Grumbach41f5e042011-09-06 09:31:20 -07002487 DEBUGFS_ADD_FILE(traffic_log, dir_debug, S_IWUSR | S_IRUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002488 DEBUGFS_ADD_FILE(power_save_status, dir_debug, S_IRUSR);
2489 DEBUGFS_ADD_FILE(clear_ucode_statistics, dir_debug, S_IWUSR);
2490 DEBUGFS_ADD_FILE(clear_traffic_statistics, dir_debug, S_IWUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002491 DEBUGFS_ADD_FILE(missed_beacon, dir_debug, S_IWUSR);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002492 DEBUGFS_ADD_FILE(plcp_delta, dir_debug, S_IWUSR | S_IRUSR);
Wey-Yi Guy528c3122010-02-18 22:03:07 -08002493 DEBUGFS_ADD_FILE(force_reset, dir_debug, S_IWUSR | S_IRUSR);
Abhijeet Kolekarb8c76262010-04-08 15:29:07 -07002494 DEBUGFS_ADD_FILE(ucode_rx_stats, dir_debug, S_IRUSR);
2495 DEBUGFS_ADD_FILE(ucode_tx_stats, dir_debug, S_IRUSR);
2496 DEBUGFS_ADD_FILE(ucode_general_stats, dir_debug, S_IRUSR);
Wey-Yi Guyc68744f2011-06-18 08:03:18 -07002497 DEBUGFS_ADD_FILE(txfifo_flush, dir_debug, S_IWUSR);
Wey-Yi Guyc6abdc02010-09-01 17:10:51 -07002498 DEBUGFS_ADD_FILE(protection_mode, dir_debug, S_IWUSR | S_IRUSR);
Abhijeet Kolekarb8c76262010-04-08 15:29:07 -07002499
Wey-Yi Guy703bc582011-04-03 08:14:41 -07002500 DEBUGFS_ADD_FILE(sensitivity, dir_debug, S_IRUSR);
2501 DEBUGFS_ADD_FILE(chain_noise, dir_debug, S_IRUSR);
Wey-Yi Guyb7af6a92011-04-06 15:55:25 -07002502 DEBUGFS_ADD_FILE(ucode_tracing, dir_debug, S_IWUSR | S_IRUSR);
Johannes Berg0da0e5b2011-04-08 08:14:56 -07002503 DEBUGFS_ADD_FILE(ucode_bt_stats, dir_debug, S_IRUSR);
Wey-Yi Guy54a9aa62010-09-05 10:49:42 -07002504 DEBUGFS_ADD_FILE(reply_tx_error, dir_debug, S_IRUSR);
Johannes Berg60987202010-02-18 00:36:07 -08002505 DEBUGFS_ADD_FILE(rxon_flags, dir_debug, S_IWUSR);
2506 DEBUGFS_ADD_FILE(rxon_filter_flags, dir_debug, S_IWUSR);
Stanislaw Gruszka22de94d2010-12-03 15:41:48 +01002507 DEBUGFS_ADD_FILE(wd_timeout, dir_debug, S_IWUSR);
Stanislaw Gruszka88e58fc2011-01-28 16:47:47 +01002508 if (iwl_advanced_bt_coexist(priv))
Wey-Yi Guybefe8c42010-08-23 07:57:16 -07002509 DEBUGFS_ADD_FILE(bt_traffic, dir_debug, S_IRUSR);
Wey-Yi Guy703bc582011-04-03 08:14:41 -07002510 DEBUGFS_ADD_BOOL(disable_sensitivity, dir_rf,
2511 &priv->disable_sens_cal);
2512 DEBUGFS_ADD_BOOL(disable_chain_noise, dir_rf,
2513 &priv->disable_chain_noise_cal);
Emmanuel Grumbach87e56662011-08-25 23:10:50 -07002514
2515 if (iwl_trans_dbgfs_register(trans(priv), dir_debug))
2516 goto err;
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002517 return 0;
2518
2519err:
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002520 IWL_ERR(priv, "Can't create the debugfs directory\n");
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002521 iwl_dbgfs_unregister(priv);
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002522 return -ENOMEM;
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002523}
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002524
2525/**
2526 * Remove the debugfs files and directories
2527 *
2528 */
2529void iwl_dbgfs_unregister(struct iwl_priv *priv)
2530{
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002531 if (!priv->debugfs_dir)
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002532 return;
2533
Johannes Berg4c84a8f2010-01-22 14:22:54 -08002534 debugfs_remove_recursive(priv->debugfs_dir);
2535 priv->debugfs_dir = NULL;
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002536}
Tomas Winkler712b6cf2008-03-12 16:58:52 -07002537
2538
Tomas Winkler445c2df2008-05-15 13:54:16 +08002539