blob: 5e96e059f2b551fd144482040b3881bde7ab92b6 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
Shahar Levi00d20102010-11-08 11:20:10 +000024#include "debugfs.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030025
26#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030028
Shahar Levi00d20102010-11-08 11:20:10 +000029#include "wl12xx.h"
Luciano Coelho0f4e3122011-10-07 11:02:42 +030030#include "debug.h"
Shahar Levi00d20102010-11-08 11:20:10 +000031#include "acx.h"
32#include "ps.h"
33#include "io.h"
Arik Nemtsovf1a46382011-07-07 14:25:23 +030034#include "tx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030035
36/* ms */
37#define WL1271_DEBUGFS_STATS_LIFETIME 1000
38
39/* debugfs macros idea from mac80211 */
Eliad Peller03107a42010-10-27 14:58:30 +020040#define DEBUGFS_FORMAT_BUFFER_SIZE 100
41static int wl1271_format_buffer(char __user *userbuf, size_t count,
42 loff_t *ppos, char *fmt, ...)
43{
44 va_list args;
45 char buf[DEBUGFS_FORMAT_BUFFER_SIZE];
46 int res;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030047
Eliad Peller03107a42010-10-27 14:58:30 +020048 va_start(args, fmt);
49 res = vscnprintf(buf, sizeof(buf), fmt, args);
50 va_end(args);
51
52 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
53}
54
55#define DEBUGFS_READONLY_FILE(name, fmt, value...) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030056static ssize_t name## _read(struct file *file, char __user *userbuf, \
57 size_t count, loff_t *ppos) \
58{ \
59 struct wl1271 *wl = file->private_data; \
Eliad Peller03107a42010-10-27 14:58:30 +020060 return wl1271_format_buffer(userbuf, count, ppos, \
61 fmt "\n", ##value); \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030062} \
63 \
64static const struct file_operations name## _ops = { \
65 .read = name## _read, \
66 .open = wl1271_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020067 .llseek = generic_file_llseek, \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030068};
69
70#define DEBUGFS_ADD(name, parent) \
Eliad Peller7cb2cea2010-11-24 12:53:15 +020071 entry = debugfs_create_file(#name, 0400, parent, \
72 wl, &name## _ops); \
73 if (!entry || IS_ERR(entry)) \
74 goto err; \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030075
Eliad Pellerc84368e2011-05-15 11:10:30 +030076#define DEBUGFS_ADD_PREFIX(prefix, name, parent) \
77 do { \
78 entry = debugfs_create_file(#name, 0400, parent, \
79 wl, &prefix## _## name## _ops); \
80 if (!entry || IS_ERR(entry)) \
81 goto err; \
82 } while (0);
83
Eliad Peller03107a42010-10-27 14:58:30 +020084#define DEBUGFS_FWSTATS_FILE(sub, name, fmt) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030085static ssize_t sub## _ ##name## _read(struct file *file, \
86 char __user *userbuf, \
87 size_t count, loff_t *ppos) \
88{ \
89 struct wl1271 *wl = file->private_data; \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030090 \
91 wl1271_debugfs_update_stats(wl); \
92 \
Eliad Peller03107a42010-10-27 14:58:30 +020093 return wl1271_format_buffer(userbuf, count, ppos, fmt "\n", \
94 wl->stats.fw_stats->sub.name); \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030095} \
96 \
97static const struct file_operations sub## _ ##name## _ops = { \
98 .read = sub## _ ##name## _read, \
99 .open = wl1271_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200100 .llseek = generic_file_llseek, \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300101};
102
103#define DEBUGFS_FWSTATS_ADD(sub, name) \
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200104 DEBUGFS_ADD(sub## _ ##name, stats)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300105
106static void wl1271_debugfs_update_stats(struct wl1271 *wl)
107{
108 int ret;
109
110 mutex_lock(&wl->mutex);
111
Ido Yariva6208652011-03-01 15:14:41 +0200112 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300113 if (ret < 0)
114 goto out;
115
116 if (wl->state == WL1271_STATE_ON &&
117 time_after(jiffies, wl->stats.fw_stats_update +
118 msecs_to_jiffies(WL1271_DEBUGFS_STATS_LIFETIME))) {
119 wl1271_acx_statistics(wl, wl->stats.fw_stats);
120 wl->stats.fw_stats_update = jiffies;
121 }
122
123 wl1271_ps_elp_sleep(wl);
124
125out:
126 mutex_unlock(&wl->mutex);
127}
128
129static int wl1271_open_file_generic(struct inode *inode, struct file *file)
130{
131 file->private_data = inode->i_private;
132 return 0;
133}
134
Eliad Peller03107a42010-10-27 14:58:30 +0200135DEBUGFS_FWSTATS_FILE(tx, internal_desc_overflow, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300136
Eliad Peller03107a42010-10-27 14:58:30 +0200137DEBUGFS_FWSTATS_FILE(rx, out_of_mem, "%u");
138DEBUGFS_FWSTATS_FILE(rx, hdr_overflow, "%u");
139DEBUGFS_FWSTATS_FILE(rx, hw_stuck, "%u");
140DEBUGFS_FWSTATS_FILE(rx, dropped, "%u");
141DEBUGFS_FWSTATS_FILE(rx, fcs_err, "%u");
142DEBUGFS_FWSTATS_FILE(rx, xfr_hint_trig, "%u");
143DEBUGFS_FWSTATS_FILE(rx, path_reset, "%u");
144DEBUGFS_FWSTATS_FILE(rx, reset_counter, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300145
Eliad Peller03107a42010-10-27 14:58:30 +0200146DEBUGFS_FWSTATS_FILE(dma, rx_requested, "%u");
147DEBUGFS_FWSTATS_FILE(dma, rx_errors, "%u");
148DEBUGFS_FWSTATS_FILE(dma, tx_requested, "%u");
149DEBUGFS_FWSTATS_FILE(dma, tx_errors, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300150
Eliad Peller03107a42010-10-27 14:58:30 +0200151DEBUGFS_FWSTATS_FILE(isr, cmd_cmplt, "%u");
152DEBUGFS_FWSTATS_FILE(isr, fiqs, "%u");
153DEBUGFS_FWSTATS_FILE(isr, rx_headers, "%u");
154DEBUGFS_FWSTATS_FILE(isr, rx_mem_overflow, "%u");
155DEBUGFS_FWSTATS_FILE(isr, rx_rdys, "%u");
156DEBUGFS_FWSTATS_FILE(isr, irqs, "%u");
157DEBUGFS_FWSTATS_FILE(isr, tx_procs, "%u");
158DEBUGFS_FWSTATS_FILE(isr, decrypt_done, "%u");
159DEBUGFS_FWSTATS_FILE(isr, dma0_done, "%u");
160DEBUGFS_FWSTATS_FILE(isr, dma1_done, "%u");
161DEBUGFS_FWSTATS_FILE(isr, tx_exch_complete, "%u");
162DEBUGFS_FWSTATS_FILE(isr, commands, "%u");
163DEBUGFS_FWSTATS_FILE(isr, rx_procs, "%u");
164DEBUGFS_FWSTATS_FILE(isr, hw_pm_mode_changes, "%u");
165DEBUGFS_FWSTATS_FILE(isr, host_acknowledges, "%u");
166DEBUGFS_FWSTATS_FILE(isr, pci_pm, "%u");
167DEBUGFS_FWSTATS_FILE(isr, wakeups, "%u");
168DEBUGFS_FWSTATS_FILE(isr, low_rssi, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300169
Eliad Peller03107a42010-10-27 14:58:30 +0200170DEBUGFS_FWSTATS_FILE(wep, addr_key_count, "%u");
171DEBUGFS_FWSTATS_FILE(wep, default_key_count, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300172/* skipping wep.reserved */
Eliad Peller03107a42010-10-27 14:58:30 +0200173DEBUGFS_FWSTATS_FILE(wep, key_not_found, "%u");
174DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, "%u");
175DEBUGFS_FWSTATS_FILE(wep, packets, "%u");
176DEBUGFS_FWSTATS_FILE(wep, interrupt, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300177
Eliad Peller03107a42010-10-27 14:58:30 +0200178DEBUGFS_FWSTATS_FILE(pwr, ps_enter, "%u");
179DEBUGFS_FWSTATS_FILE(pwr, elp_enter, "%u");
180DEBUGFS_FWSTATS_FILE(pwr, missing_bcns, "%u");
181DEBUGFS_FWSTATS_FILE(pwr, wake_on_host, "%u");
182DEBUGFS_FWSTATS_FILE(pwr, wake_on_timer_exp, "%u");
183DEBUGFS_FWSTATS_FILE(pwr, tx_with_ps, "%u");
184DEBUGFS_FWSTATS_FILE(pwr, tx_without_ps, "%u");
185DEBUGFS_FWSTATS_FILE(pwr, rcvd_beacons, "%u");
186DEBUGFS_FWSTATS_FILE(pwr, power_save_off, "%u");
187DEBUGFS_FWSTATS_FILE(pwr, enable_ps, "%u");
188DEBUGFS_FWSTATS_FILE(pwr, disable_ps, "%u");
189DEBUGFS_FWSTATS_FILE(pwr, fix_tsf_ps, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300190/* skipping cont_miss_bcns_spread for now */
Eliad Peller03107a42010-10-27 14:58:30 +0200191DEBUGFS_FWSTATS_FILE(pwr, rcvd_awake_beacons, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300192
Eliad Peller03107a42010-10-27 14:58:30 +0200193DEBUGFS_FWSTATS_FILE(mic, rx_pkts, "%u");
194DEBUGFS_FWSTATS_FILE(mic, calc_failure, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300195
Eliad Peller03107a42010-10-27 14:58:30 +0200196DEBUGFS_FWSTATS_FILE(aes, encrypt_fail, "%u");
197DEBUGFS_FWSTATS_FILE(aes, decrypt_fail, "%u");
198DEBUGFS_FWSTATS_FILE(aes, encrypt_packets, "%u");
199DEBUGFS_FWSTATS_FILE(aes, decrypt_packets, "%u");
200DEBUGFS_FWSTATS_FILE(aes, encrypt_interrupt, "%u");
201DEBUGFS_FWSTATS_FILE(aes, decrypt_interrupt, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300202
Eliad Peller03107a42010-10-27 14:58:30 +0200203DEBUGFS_FWSTATS_FILE(event, heart_beat, "%u");
204DEBUGFS_FWSTATS_FILE(event, calibration, "%u");
205DEBUGFS_FWSTATS_FILE(event, rx_mismatch, "%u");
206DEBUGFS_FWSTATS_FILE(event, rx_mem_empty, "%u");
207DEBUGFS_FWSTATS_FILE(event, rx_pool, "%u");
208DEBUGFS_FWSTATS_FILE(event, oom_late, "%u");
209DEBUGFS_FWSTATS_FILE(event, phy_transmit_error, "%u");
210DEBUGFS_FWSTATS_FILE(event, tx_stuck, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300211
Eliad Peller03107a42010-10-27 14:58:30 +0200212DEBUGFS_FWSTATS_FILE(ps, pspoll_timeouts, "%u");
213DEBUGFS_FWSTATS_FILE(ps, upsd_timeouts, "%u");
214DEBUGFS_FWSTATS_FILE(ps, upsd_max_sptime, "%u");
215DEBUGFS_FWSTATS_FILE(ps, upsd_max_apturn, "%u");
216DEBUGFS_FWSTATS_FILE(ps, pspoll_max_apturn, "%u");
217DEBUGFS_FWSTATS_FILE(ps, pspoll_utilization, "%u");
218DEBUGFS_FWSTATS_FILE(ps, upsd_utilization, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300219
Eliad Peller03107a42010-10-27 14:58:30 +0200220DEBUGFS_FWSTATS_FILE(rxpipe, rx_prep_beacon_drop, "%u");
221DEBUGFS_FWSTATS_FILE(rxpipe, descr_host_int_trig_rx_data, "%u");
222DEBUGFS_FWSTATS_FILE(rxpipe, beacon_buffer_thres_host_int_trig_rx_data, "%u");
223DEBUGFS_FWSTATS_FILE(rxpipe, missed_beacon_host_int_trig_rx_data, "%u");
224DEBUGFS_FWSTATS_FILE(rxpipe, tx_xfr_host_int_trig_rx_data, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300225
Eliad Peller03107a42010-10-27 14:58:30 +0200226DEBUGFS_READONLY_FILE(retry_count, "%u", wl->stats.retry_count);
227DEBUGFS_READONLY_FILE(excessive_retries, "%u",
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300228 wl->stats.excessive_retries);
229
230static ssize_t tx_queue_len_read(struct file *file, char __user *userbuf,
231 size_t count, loff_t *ppos)
232{
233 struct wl1271 *wl = file->private_data;
234 u32 queue_len;
235 char buf[20];
236 int res;
237
Arik Nemtsovf1a46382011-07-07 14:25:23 +0300238 queue_len = wl1271_tx_total_queue_count(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300239
240 res = scnprintf(buf, sizeof(buf), "%u\n", queue_len);
241 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
242}
243
244static const struct file_operations tx_queue_len_ops = {
245 .read = tx_queue_len_read,
246 .open = wl1271_open_file_generic,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200247 .llseek = default_llseek,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300248};
249
Luciano Coelho98b2a682009-12-11 15:40:52 +0200250static ssize_t gpio_power_read(struct file *file, char __user *user_buf,
251 size_t count, loff_t *ppos)
252{
253 struct wl1271 *wl = file->private_data;
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200254 bool state = test_bit(WL1271_FLAG_GPIO_POWER, &wl->flags);
255
Luciano Coelho98b2a682009-12-11 15:40:52 +0200256 int res;
257 char buf[10];
258
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200259 res = scnprintf(buf, sizeof(buf), "%d\n", state);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200260
261 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
262}
263
264static ssize_t gpio_power_write(struct file *file,
265 const char __user *user_buf,
266 size_t count, loff_t *ppos)
267{
268 struct wl1271 *wl = file->private_data;
Luciano Coelho98b2a682009-12-11 15:40:52 +0200269 unsigned long value;
270 int ret;
271
Eliad Pellerb6883582011-08-31 14:50:13 +0300272 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200273 if (ret < 0) {
274 wl1271_warning("illegal value in gpio_power");
Eliad Peller8e2de742011-01-23 11:25:27 +0100275 return -EINVAL;
Luciano Coelho98b2a682009-12-11 15:40:52 +0200276 }
277
Eliad Peller8e2de742011-01-23 11:25:27 +0100278 mutex_lock(&wl->mutex);
279
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200280 if (value)
281 wl1271_power_on(wl);
282 else
283 wl1271_power_off(wl);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200284
Luciano Coelho98b2a682009-12-11 15:40:52 +0200285 mutex_unlock(&wl->mutex);
286 return count;
287}
288
289static const struct file_operations gpio_power_ops = {
290 .read = gpio_power_read,
291 .write = gpio_power_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200292 .open = wl1271_open_file_generic,
293 .llseek = default_llseek,
Luciano Coelho98b2a682009-12-11 15:40:52 +0200294};
295
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300296static ssize_t start_recovery_write(struct file *file,
297 const char __user *user_buf,
298 size_t count, loff_t *ppos)
299{
300 struct wl1271 *wl = file->private_data;
301
302 mutex_lock(&wl->mutex);
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300303 wl12xx_queue_recovery_work(wl);
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300304 mutex_unlock(&wl->mutex);
305
306 return count;
307}
308
309static const struct file_operations start_recovery_ops = {
310 .write = start_recovery_write,
311 .open = wl1271_open_file_generic,
312 .llseek = default_llseek,
313};
314
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300315static ssize_t driver_state_read(struct file *file, char __user *user_buf,
316 size_t count, loff_t *ppos)
317{
318 struct wl1271 *wl = file->private_data;
319 int res = 0;
Luciano Coelhoc99f8952011-12-15 14:58:08 +0200320 ssize_t ret;
321 char *buf;
322
323#define DRIVER_STATE_BUF_LEN 1024
324
325 buf = kmalloc(DRIVER_STATE_BUF_LEN, GFP_KERNEL);
326 if (!buf)
327 return -ENOMEM;
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300328
329 mutex_lock(&wl->mutex);
330
331#define DRIVER_STATE_PRINT(x, fmt) \
Luciano Coelhoc99f8952011-12-15 14:58:08 +0200332 (res += scnprintf(buf + res, DRIVER_STATE_BUF_LEN - res,\
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300333 #x " = " fmt "\n", wl->x))
334
335#define DRIVER_STATE_PRINT_LONG(x) DRIVER_STATE_PRINT(x, "%ld")
336#define DRIVER_STATE_PRINT_INT(x) DRIVER_STATE_PRINT(x, "%d")
337#define DRIVER_STATE_PRINT_STR(x) DRIVER_STATE_PRINT(x, "%s")
338#define DRIVER_STATE_PRINT_LHEX(x) DRIVER_STATE_PRINT(x, "0x%lx")
339#define DRIVER_STATE_PRINT_HEX(x) DRIVER_STATE_PRINT(x, "0x%x")
340
341 DRIVER_STATE_PRINT_INT(tx_blocks_available);
Arik Nemtsov7bb5d6c2011-08-14 13:17:00 +0300342 DRIVER_STATE_PRINT_INT(tx_allocated_blocks);
Arik Nemtsov742246f2011-08-14 13:17:33 +0300343 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[0]);
344 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[1]);
345 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[2]);
346 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[3]);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300347 DRIVER_STATE_PRINT_INT(tx_frames_cnt);
348 DRIVER_STATE_PRINT_LHEX(tx_frames_map[0]);
Arik Nemtsovf1a46382011-07-07 14:25:23 +0300349 DRIVER_STATE_PRINT_INT(tx_queue_count[0]);
350 DRIVER_STATE_PRINT_INT(tx_queue_count[1]);
351 DRIVER_STATE_PRINT_INT(tx_queue_count[2]);
352 DRIVER_STATE_PRINT_INT(tx_queue_count[3]);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300353 DRIVER_STATE_PRINT_INT(tx_packets_count);
354 DRIVER_STATE_PRINT_INT(tx_results_count);
355 DRIVER_STATE_PRINT_LHEX(flags);
Eliad Peller4d56ad92011-08-14 13:17:05 +0300356 DRIVER_STATE_PRINT_INT(tx_blocks_freed);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300357 DRIVER_STATE_PRINT_INT(rx_counter);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300358 DRIVER_STATE_PRINT_INT(state);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300359 DRIVER_STATE_PRINT_INT(channel);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300360 DRIVER_STATE_PRINT_INT(band);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300361 DRIVER_STATE_PRINT_INT(power_level);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300362 DRIVER_STATE_PRINT_INT(sg_enabled);
363 DRIVER_STATE_PRINT_INT(enable_11a);
364 DRIVER_STATE_PRINT_INT(noise);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300365 DRIVER_STATE_PRINT_HEX(ap_fw_ps_map);
366 DRIVER_STATE_PRINT_LHEX(ap_ps_map);
367 DRIVER_STATE_PRINT_HEX(quirks);
368 DRIVER_STATE_PRINT_HEX(irq);
369 DRIVER_STATE_PRINT_HEX(ref_clock);
370 DRIVER_STATE_PRINT_HEX(tcxo_clock);
371 DRIVER_STATE_PRINT_HEX(hw_pg_ver);
372 DRIVER_STATE_PRINT_HEX(platform_quirks);
373 DRIVER_STATE_PRINT_HEX(chip.id);
374 DRIVER_STATE_PRINT_STR(chip.fw_ver_str);
Luciano Coelhod3eff812011-05-10 14:47:45 +0300375 DRIVER_STATE_PRINT_INT(sched_scanning);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300376
377#undef DRIVER_STATE_PRINT_INT
378#undef DRIVER_STATE_PRINT_LONG
379#undef DRIVER_STATE_PRINT_HEX
380#undef DRIVER_STATE_PRINT_LHEX
381#undef DRIVER_STATE_PRINT_STR
382#undef DRIVER_STATE_PRINT
Luciano Coelhoc99f8952011-12-15 14:58:08 +0200383#undef DRIVER_STATE_BUF_LEN
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300384
385 mutex_unlock(&wl->mutex);
386
Luciano Coelhoc99f8952011-12-15 14:58:08 +0200387 ret = simple_read_from_buffer(user_buf, count, ppos, buf, res);
388 kfree(buf);
389 return ret;
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300390}
391
392static const struct file_operations driver_state_ops = {
393 .read = driver_state_read,
394 .open = wl1271_open_file_generic,
395 .llseek = default_llseek,
396};
397
Eliad Pellerfa5e1372011-10-31 12:24:49 +0200398static ssize_t vifs_state_read(struct file *file, char __user *user_buf,
399 size_t count, loff_t *ppos)
400{
401 struct wl1271 *wl = file->private_data;
402 struct wl12xx_vif *wlvif;
403 int ret, res = 0;
404 const int buf_size = 4096;
405 char *buf;
406 char tmp_buf[64];
407
408 buf = kzalloc(buf_size, GFP_KERNEL);
409 if (!buf)
410 return -ENOMEM;
411
412 mutex_lock(&wl->mutex);
413
414#define VIF_STATE_PRINT(x, fmt) \
415 (res += scnprintf(buf + res, buf_size - res, \
416 #x " = " fmt "\n", wlvif->x))
417
418#define VIF_STATE_PRINT_LONG(x) VIF_STATE_PRINT(x, "%ld")
419#define VIF_STATE_PRINT_INT(x) VIF_STATE_PRINT(x, "%d")
420#define VIF_STATE_PRINT_STR(x) VIF_STATE_PRINT(x, "%s")
421#define VIF_STATE_PRINT_LHEX(x) VIF_STATE_PRINT(x, "0x%lx")
422#define VIF_STATE_PRINT_LLHEX(x) VIF_STATE_PRINT(x, "0x%llx")
423#define VIF_STATE_PRINT_HEX(x) VIF_STATE_PRINT(x, "0x%x")
424
425#define VIF_STATE_PRINT_NSTR(x, len) \
426 do { \
427 memset(tmp_buf, 0, sizeof(tmp_buf)); \
428 memcpy(tmp_buf, wlvif->x, \
429 min_t(u8, len, sizeof(tmp_buf) - 1)); \
430 res += scnprintf(buf + res, buf_size - res, \
431 #x " = %s\n", tmp_buf); \
432 } while (0)
433
434 wl12xx_for_each_wlvif(wl, wlvif) {
435 VIF_STATE_PRINT_INT(role_id);
436 VIF_STATE_PRINT_INT(bss_type);
437 VIF_STATE_PRINT_LHEX(flags);
438 VIF_STATE_PRINT_INT(p2p);
439 VIF_STATE_PRINT_INT(dev_role_id);
440 VIF_STATE_PRINT_INT(dev_hlid);
441
442 if (wlvif->bss_type == BSS_TYPE_STA_BSS ||
443 wlvif->bss_type == BSS_TYPE_IBSS) {
444 VIF_STATE_PRINT_INT(sta.hlid);
445 VIF_STATE_PRINT_INT(sta.ba_rx_bitmap);
446 VIF_STATE_PRINT_INT(sta.basic_rate_idx);
447 VIF_STATE_PRINT_INT(sta.ap_rate_idx);
448 VIF_STATE_PRINT_INT(sta.p2p_rate_idx);
449 } else {
450 VIF_STATE_PRINT_INT(ap.global_hlid);
451 VIF_STATE_PRINT_INT(ap.bcast_hlid);
452 VIF_STATE_PRINT_LHEX(ap.sta_hlid_map[0]);
453 VIF_STATE_PRINT_INT(ap.mgmt_rate_idx);
454 VIF_STATE_PRINT_INT(ap.bcast_rate_idx);
455 VIF_STATE_PRINT_INT(ap.ucast_rate_idx[0]);
456 VIF_STATE_PRINT_INT(ap.ucast_rate_idx[1]);
457 VIF_STATE_PRINT_INT(ap.ucast_rate_idx[2]);
458 VIF_STATE_PRINT_INT(ap.ucast_rate_idx[3]);
459 }
460 VIF_STATE_PRINT_INT(last_tx_hlid);
461 VIF_STATE_PRINT_LHEX(links_map[0]);
462 VIF_STATE_PRINT_NSTR(ssid, wlvif->ssid_len);
463 VIF_STATE_PRINT_INT(band);
464 VIF_STATE_PRINT_INT(channel);
465 VIF_STATE_PRINT_HEX(bitrate_masks[0]);
466 VIF_STATE_PRINT_HEX(bitrate_masks[1]);
467 VIF_STATE_PRINT_HEX(basic_rate_set);
468 VIF_STATE_PRINT_HEX(basic_rate);
469 VIF_STATE_PRINT_HEX(rate_set);
470 VIF_STATE_PRINT_INT(beacon_int);
471 VIF_STATE_PRINT_INT(default_key);
472 VIF_STATE_PRINT_INT(aid);
473 VIF_STATE_PRINT_INT(session_counter);
Eliad Pellerfa5e1372011-10-31 12:24:49 +0200474 VIF_STATE_PRINT_INT(psm_entry_retry);
475 VIF_STATE_PRINT_INT(power_level);
476 VIF_STATE_PRINT_INT(rssi_thold);
477 VIF_STATE_PRINT_INT(last_rssi_event);
478 VIF_STATE_PRINT_INT(ba_support);
479 VIF_STATE_PRINT_INT(ba_allowed);
480 VIF_STATE_PRINT_LLHEX(tx_security_seq);
481 VIF_STATE_PRINT_INT(tx_security_last_seq_lsb);
482 }
483
484#undef VIF_STATE_PRINT_INT
485#undef VIF_STATE_PRINT_LONG
486#undef VIF_STATE_PRINT_HEX
487#undef VIF_STATE_PRINT_LHEX
488#undef VIF_STATE_PRINT_LLHEX
489#undef VIF_STATE_PRINT_STR
490#undef VIF_STATE_PRINT_NSTR
491#undef VIF_STATE_PRINT
492
493 mutex_unlock(&wl->mutex);
494
495 ret = simple_read_from_buffer(user_buf, count, ppos, buf, res);
496 kfree(buf);
497 return ret;
498}
499
500static const struct file_operations vifs_state_ops = {
501 .read = vifs_state_read,
502 .open = wl1271_open_file_generic,
503 .llseek = default_llseek,
504};
505
Eliad Peller1fe9e242011-04-17 11:20:47 +0300506static ssize_t dtim_interval_read(struct file *file, char __user *user_buf,
507 size_t count, loff_t *ppos)
508{
509 struct wl1271 *wl = file->private_data;
510 u8 value;
511
512 if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_DTIM ||
513 wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_DTIM)
514 value = wl->conf.conn.listen_interval;
515 else
516 value = 0;
517
518 return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value);
519}
520
521static ssize_t dtim_interval_write(struct file *file,
522 const char __user *user_buf,
523 size_t count, loff_t *ppos)
524{
525 struct wl1271 *wl = file->private_data;
Eliad Peller1fe9e242011-04-17 11:20:47 +0300526 unsigned long value;
527 int ret;
528
Eliad Pellerb6883582011-08-31 14:50:13 +0300529 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300530 if (ret < 0) {
531 wl1271_warning("illegal value for dtim_interval");
532 return -EINVAL;
533 }
534
535 if (value < 1 || value > 10) {
536 wl1271_warning("dtim value is not in valid range");
537 return -ERANGE;
538 }
539
540 mutex_lock(&wl->mutex);
541
542 wl->conf.conn.listen_interval = value;
543 /* for some reason there are different event types for 1 and >1 */
544 if (value == 1)
545 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_DTIM;
546 else
547 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_DTIM;
548
549 /*
550 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
551 * take effect on the next time we enter psm.
552 */
553 mutex_unlock(&wl->mutex);
554 return count;
555}
556
557static const struct file_operations dtim_interval_ops = {
558 .read = dtim_interval_read,
559 .write = dtim_interval_write,
560 .open = wl1271_open_file_generic,
561 .llseek = default_llseek,
562};
563
564static ssize_t beacon_interval_read(struct file *file, char __user *user_buf,
565 size_t count, loff_t *ppos)
566{
567 struct wl1271 *wl = file->private_data;
568 u8 value;
569
570 if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_BEACON ||
571 wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_BEACONS)
572 value = wl->conf.conn.listen_interval;
573 else
574 value = 0;
575
576 return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value);
577}
578
579static ssize_t beacon_interval_write(struct file *file,
580 const char __user *user_buf,
581 size_t count, loff_t *ppos)
582{
583 struct wl1271 *wl = file->private_data;
Eliad Peller1fe9e242011-04-17 11:20:47 +0300584 unsigned long value;
585 int ret;
586
Eliad Pellerb6883582011-08-31 14:50:13 +0300587 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300588 if (ret < 0) {
589 wl1271_warning("illegal value for beacon_interval");
590 return -EINVAL;
591 }
592
593 if (value < 1 || value > 255) {
594 wl1271_warning("beacon interval value is not in valid range");
595 return -ERANGE;
596 }
597
598 mutex_lock(&wl->mutex);
599
600 wl->conf.conn.listen_interval = value;
601 /* for some reason there are different event types for 1 and >1 */
602 if (value == 1)
603 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_BEACON;
604 else
605 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_BEACONS;
606
607 /*
608 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
609 * take effect on the next time we enter psm.
610 */
611 mutex_unlock(&wl->mutex);
612 return count;
613}
614
615static const struct file_operations beacon_interval_ops = {
616 .read = beacon_interval_read,
617 .write = beacon_interval_write,
618 .open = wl1271_open_file_generic,
619 .llseek = default_llseek,
620};
621
Eliad Pellerc84368e2011-05-15 11:10:30 +0300622static ssize_t rx_streaming_interval_write(struct file *file,
623 const char __user *user_buf,
624 size_t count, loff_t *ppos)
625{
626 struct wl1271 *wl = file->private_data;
Eliad Peller9eb599e2011-10-10 10:12:59 +0200627 struct wl12xx_vif *wlvif;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300628 unsigned long value;
629 int ret;
630
Eliad Pellerb6883582011-08-31 14:50:13 +0300631 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Pellerc84368e2011-05-15 11:10:30 +0300632 if (ret < 0) {
633 wl1271_warning("illegal value in rx_streaming_interval!");
634 return -EINVAL;
635 }
636
637 /* valid values: 0, 10-100 */
638 if (value && (value < 10 || value > 100)) {
639 wl1271_warning("value is not in range!");
640 return -ERANGE;
641 }
642
643 mutex_lock(&wl->mutex);
644
645 wl->conf.rx_streaming.interval = value;
646
647 ret = wl1271_ps_elp_wakeup(wl);
648 if (ret < 0)
649 goto out;
650
Eliad Peller9eb599e2011-10-10 10:12:59 +0200651 wl12xx_for_each_wlvif_sta(wl, wlvif) {
652 wl1271_recalc_rx_streaming(wl, wlvif);
653 }
Eliad Pellerc84368e2011-05-15 11:10:30 +0300654
655 wl1271_ps_elp_sleep(wl);
656out:
657 mutex_unlock(&wl->mutex);
658 return count;
659}
660
661static ssize_t rx_streaming_interval_read(struct file *file,
662 char __user *userbuf,
663 size_t count, loff_t *ppos)
664{
665 struct wl1271 *wl = file->private_data;
666 return wl1271_format_buffer(userbuf, count, ppos,
667 "%d\n", wl->conf.rx_streaming.interval);
668}
669
670static const struct file_operations rx_streaming_interval_ops = {
671 .read = rx_streaming_interval_read,
672 .write = rx_streaming_interval_write,
673 .open = wl1271_open_file_generic,
674 .llseek = default_llseek,
675};
676
677static ssize_t rx_streaming_always_write(struct file *file,
678 const char __user *user_buf,
679 size_t count, loff_t *ppos)
680{
681 struct wl1271 *wl = file->private_data;
Eliad Peller9eb599e2011-10-10 10:12:59 +0200682 struct wl12xx_vif *wlvif;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300683 unsigned long value;
684 int ret;
685
Eliad Pellerb6883582011-08-31 14:50:13 +0300686 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Pellerc84368e2011-05-15 11:10:30 +0300687 if (ret < 0) {
688 wl1271_warning("illegal value in rx_streaming_write!");
689 return -EINVAL;
690 }
691
692 /* valid values: 0, 10-100 */
693 if (!(value == 0 || value == 1)) {
694 wl1271_warning("value is not in valid!");
695 return -EINVAL;
696 }
697
698 mutex_lock(&wl->mutex);
699
700 wl->conf.rx_streaming.always = value;
701
702 ret = wl1271_ps_elp_wakeup(wl);
703 if (ret < 0)
704 goto out;
705
Eliad Peller9eb599e2011-10-10 10:12:59 +0200706 wl12xx_for_each_wlvif_sta(wl, wlvif) {
707 wl1271_recalc_rx_streaming(wl, wlvif);
708 }
Eliad Pellerc84368e2011-05-15 11:10:30 +0300709
710 wl1271_ps_elp_sleep(wl);
711out:
712 mutex_unlock(&wl->mutex);
713 return count;
714}
715
716static ssize_t rx_streaming_always_read(struct file *file,
717 char __user *userbuf,
718 size_t count, loff_t *ppos)
719{
720 struct wl1271 *wl = file->private_data;
721 return wl1271_format_buffer(userbuf, count, ppos,
722 "%d\n", wl->conf.rx_streaming.always);
723}
724
725static const struct file_operations rx_streaming_always_ops = {
726 .read = rx_streaming_always_read,
727 .write = rx_streaming_always_write,
728 .open = wl1271_open_file_generic,
729 .llseek = default_llseek,
730};
731
Eliad Pellera0a52152011-08-25 18:11:00 +0300732static ssize_t beacon_filtering_write(struct file *file,
733 const char __user *user_buf,
734 size_t count, loff_t *ppos)
735{
736 struct wl1271 *wl = file->private_data;
Eliad Peller0603d892011-10-05 11:55:51 +0200737 struct wl12xx_vif *wlvif;
Eliad Pellera0a52152011-08-25 18:11:00 +0300738 char buf[10];
739 size_t len;
740 unsigned long value;
741 int ret;
742
743 len = min(count, sizeof(buf) - 1);
744 if (copy_from_user(buf, user_buf, len))
745 return -EFAULT;
746 buf[len] = '\0';
747
748 ret = kstrtoul(buf, 0, &value);
749 if (ret < 0) {
750 wl1271_warning("illegal value for beacon_filtering!");
751 return -EINVAL;
752 }
753
754 mutex_lock(&wl->mutex);
755
756 ret = wl1271_ps_elp_wakeup(wl);
757 if (ret < 0)
758 goto out;
759
Eliad Peller6e8cd332011-10-10 10:13:13 +0200760 wl12xx_for_each_wlvif(wl, wlvif) {
761 ret = wl1271_acx_beacon_filter_opt(wl, wlvif, !!value);
762 }
Eliad Pellera0a52152011-08-25 18:11:00 +0300763
764 wl1271_ps_elp_sleep(wl);
765out:
766 mutex_unlock(&wl->mutex);
767 return count;
768}
769
770static const struct file_operations beacon_filtering_ops = {
771 .write = beacon_filtering_write,
772 .open = wl1271_open_file_generic,
773 .llseek = default_llseek,
774};
775
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200776static int wl1271_debugfs_add_files(struct wl1271 *wl,
777 struct dentry *rootdir)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300778{
779 int ret = 0;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300780 struct dentry *entry, *stats, *streaming;
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200781
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200782 stats = debugfs_create_dir("fw-statistics", rootdir);
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200783 if (!stats || IS_ERR(stats)) {
784 entry = stats;
785 goto err;
786 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300787
788 DEBUGFS_FWSTATS_ADD(tx, internal_desc_overflow);
789
790 DEBUGFS_FWSTATS_ADD(rx, out_of_mem);
791 DEBUGFS_FWSTATS_ADD(rx, hdr_overflow);
792 DEBUGFS_FWSTATS_ADD(rx, hw_stuck);
793 DEBUGFS_FWSTATS_ADD(rx, dropped);
794 DEBUGFS_FWSTATS_ADD(rx, fcs_err);
795 DEBUGFS_FWSTATS_ADD(rx, xfr_hint_trig);
796 DEBUGFS_FWSTATS_ADD(rx, path_reset);
797 DEBUGFS_FWSTATS_ADD(rx, reset_counter);
798
799 DEBUGFS_FWSTATS_ADD(dma, rx_requested);
800 DEBUGFS_FWSTATS_ADD(dma, rx_errors);
801 DEBUGFS_FWSTATS_ADD(dma, tx_requested);
802 DEBUGFS_FWSTATS_ADD(dma, tx_errors);
803
804 DEBUGFS_FWSTATS_ADD(isr, cmd_cmplt);
805 DEBUGFS_FWSTATS_ADD(isr, fiqs);
806 DEBUGFS_FWSTATS_ADD(isr, rx_headers);
807 DEBUGFS_FWSTATS_ADD(isr, rx_mem_overflow);
808 DEBUGFS_FWSTATS_ADD(isr, rx_rdys);
809 DEBUGFS_FWSTATS_ADD(isr, irqs);
810 DEBUGFS_FWSTATS_ADD(isr, tx_procs);
811 DEBUGFS_FWSTATS_ADD(isr, decrypt_done);
812 DEBUGFS_FWSTATS_ADD(isr, dma0_done);
813 DEBUGFS_FWSTATS_ADD(isr, dma1_done);
814 DEBUGFS_FWSTATS_ADD(isr, tx_exch_complete);
815 DEBUGFS_FWSTATS_ADD(isr, commands);
816 DEBUGFS_FWSTATS_ADD(isr, rx_procs);
817 DEBUGFS_FWSTATS_ADD(isr, hw_pm_mode_changes);
818 DEBUGFS_FWSTATS_ADD(isr, host_acknowledges);
819 DEBUGFS_FWSTATS_ADD(isr, pci_pm);
820 DEBUGFS_FWSTATS_ADD(isr, wakeups);
821 DEBUGFS_FWSTATS_ADD(isr, low_rssi);
822
823 DEBUGFS_FWSTATS_ADD(wep, addr_key_count);
824 DEBUGFS_FWSTATS_ADD(wep, default_key_count);
825 /* skipping wep.reserved */
826 DEBUGFS_FWSTATS_ADD(wep, key_not_found);
827 DEBUGFS_FWSTATS_ADD(wep, decrypt_fail);
828 DEBUGFS_FWSTATS_ADD(wep, packets);
829 DEBUGFS_FWSTATS_ADD(wep, interrupt);
830
831 DEBUGFS_FWSTATS_ADD(pwr, ps_enter);
832 DEBUGFS_FWSTATS_ADD(pwr, elp_enter);
833 DEBUGFS_FWSTATS_ADD(pwr, missing_bcns);
834 DEBUGFS_FWSTATS_ADD(pwr, wake_on_host);
835 DEBUGFS_FWSTATS_ADD(pwr, wake_on_timer_exp);
836 DEBUGFS_FWSTATS_ADD(pwr, tx_with_ps);
837 DEBUGFS_FWSTATS_ADD(pwr, tx_without_ps);
838 DEBUGFS_FWSTATS_ADD(pwr, rcvd_beacons);
839 DEBUGFS_FWSTATS_ADD(pwr, power_save_off);
840 DEBUGFS_FWSTATS_ADD(pwr, enable_ps);
841 DEBUGFS_FWSTATS_ADD(pwr, disable_ps);
842 DEBUGFS_FWSTATS_ADD(pwr, fix_tsf_ps);
843 /* skipping cont_miss_bcns_spread for now */
844 DEBUGFS_FWSTATS_ADD(pwr, rcvd_awake_beacons);
845
846 DEBUGFS_FWSTATS_ADD(mic, rx_pkts);
847 DEBUGFS_FWSTATS_ADD(mic, calc_failure);
848
849 DEBUGFS_FWSTATS_ADD(aes, encrypt_fail);
850 DEBUGFS_FWSTATS_ADD(aes, decrypt_fail);
851 DEBUGFS_FWSTATS_ADD(aes, encrypt_packets);
852 DEBUGFS_FWSTATS_ADD(aes, decrypt_packets);
853 DEBUGFS_FWSTATS_ADD(aes, encrypt_interrupt);
854 DEBUGFS_FWSTATS_ADD(aes, decrypt_interrupt);
855
856 DEBUGFS_FWSTATS_ADD(event, heart_beat);
857 DEBUGFS_FWSTATS_ADD(event, calibration);
858 DEBUGFS_FWSTATS_ADD(event, rx_mismatch);
859 DEBUGFS_FWSTATS_ADD(event, rx_mem_empty);
860 DEBUGFS_FWSTATS_ADD(event, rx_pool);
861 DEBUGFS_FWSTATS_ADD(event, oom_late);
862 DEBUGFS_FWSTATS_ADD(event, phy_transmit_error);
863 DEBUGFS_FWSTATS_ADD(event, tx_stuck);
864
865 DEBUGFS_FWSTATS_ADD(ps, pspoll_timeouts);
866 DEBUGFS_FWSTATS_ADD(ps, upsd_timeouts);
867 DEBUGFS_FWSTATS_ADD(ps, upsd_max_sptime);
868 DEBUGFS_FWSTATS_ADD(ps, upsd_max_apturn);
869 DEBUGFS_FWSTATS_ADD(ps, pspoll_max_apturn);
870 DEBUGFS_FWSTATS_ADD(ps, pspoll_utilization);
871 DEBUGFS_FWSTATS_ADD(ps, upsd_utilization);
872
873 DEBUGFS_FWSTATS_ADD(rxpipe, rx_prep_beacon_drop);
874 DEBUGFS_FWSTATS_ADD(rxpipe, descr_host_int_trig_rx_data);
875 DEBUGFS_FWSTATS_ADD(rxpipe, beacon_buffer_thres_host_int_trig_rx_data);
876 DEBUGFS_FWSTATS_ADD(rxpipe, missed_beacon_host_int_trig_rx_data);
877 DEBUGFS_FWSTATS_ADD(rxpipe, tx_xfr_host_int_trig_rx_data);
878
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200879 DEBUGFS_ADD(tx_queue_len, rootdir);
880 DEBUGFS_ADD(retry_count, rootdir);
881 DEBUGFS_ADD(excessive_retries, rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300882
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200883 DEBUGFS_ADD(gpio_power, rootdir);
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300884 DEBUGFS_ADD(start_recovery, rootdir);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300885 DEBUGFS_ADD(driver_state, rootdir);
Eliad Pellerfa5e1372011-10-31 12:24:49 +0200886 DEBUGFS_ADD(vifs_state, rootdir);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300887 DEBUGFS_ADD(dtim_interval, rootdir);
888 DEBUGFS_ADD(beacon_interval, rootdir);
Eliad Pellera0a52152011-08-25 18:11:00 +0300889 DEBUGFS_ADD(beacon_filtering, rootdir);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200890
Eliad Pellerc84368e2011-05-15 11:10:30 +0300891 streaming = debugfs_create_dir("rx_streaming", rootdir);
892 if (!streaming || IS_ERR(streaming))
893 goto err;
894
895 DEBUGFS_ADD_PREFIX(rx_streaming, interval, streaming);
896 DEBUGFS_ADD_PREFIX(rx_streaming, always, streaming);
897
898
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200899 return 0;
900
901err:
902 if (IS_ERR(entry))
903 ret = PTR_ERR(entry);
904 else
905 ret = -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300906
907 return ret;
908}
909
910void wl1271_debugfs_reset(struct wl1271 *wl)
911{
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200912 if (!wl->stats.fw_stats)
Luciano Coelho43a598d2010-11-30 14:58:46 +0200913 return;
914
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300915 memset(wl->stats.fw_stats, 0, sizeof(*wl->stats.fw_stats));
916 wl->stats.retry_count = 0;
917 wl->stats.excessive_retries = 0;
918}
919
920int wl1271_debugfs_init(struct wl1271 *wl)
921{
922 int ret;
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200923 struct dentry *rootdir;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300924
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200925 rootdir = debugfs_create_dir(KBUILD_MODNAME,
926 wl->hw->wiphy->debugfsdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300927
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200928 if (IS_ERR(rootdir)) {
929 ret = PTR_ERR(rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300930 goto err;
931 }
932
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300933 wl->stats.fw_stats = kzalloc(sizeof(*wl->stats.fw_stats),
934 GFP_KERNEL);
935
936 if (!wl->stats.fw_stats) {
937 ret = -ENOMEM;
938 goto err_fw;
939 }
940
941 wl->stats.fw_stats_update = jiffies;
942
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200943 ret = wl1271_debugfs_add_files(wl, rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300944
945 if (ret < 0)
946 goto err_file;
947
948 return 0;
949
950err_file:
951 kfree(wl->stats.fw_stats);
952 wl->stats.fw_stats = NULL;
953
954err_fw:
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200955 debugfs_remove_recursive(rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300956
957err:
958 return ret;
959}
960
961void wl1271_debugfs_exit(struct wl1271 *wl)
962{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300963 kfree(wl->stats.fw_stats);
964 wl->stats.fw_stats = NULL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300965}