blob: d6c2d0c1b6cd2e2bfa70b0c0e6095240e7ec1175 [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"
30#include "acx.h"
31#include "ps.h"
32#include "io.h"
Arik Nemtsovf1a46382011-07-07 14:25:23 +030033#include "tx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030034
35/* ms */
36#define WL1271_DEBUGFS_STATS_LIFETIME 1000
37
38/* debugfs macros idea from mac80211 */
Eliad Peller03107a42010-10-27 14:58:30 +020039#define DEBUGFS_FORMAT_BUFFER_SIZE 100
40static int wl1271_format_buffer(char __user *userbuf, size_t count,
41 loff_t *ppos, char *fmt, ...)
42{
43 va_list args;
44 char buf[DEBUGFS_FORMAT_BUFFER_SIZE];
45 int res;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030046
Eliad Peller03107a42010-10-27 14:58:30 +020047 va_start(args, fmt);
48 res = vscnprintf(buf, sizeof(buf), fmt, args);
49 va_end(args);
50
51 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
52}
53
54#define DEBUGFS_READONLY_FILE(name, fmt, value...) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030055static ssize_t name## _read(struct file *file, char __user *userbuf, \
56 size_t count, loff_t *ppos) \
57{ \
58 struct wl1271 *wl = file->private_data; \
Eliad Peller03107a42010-10-27 14:58:30 +020059 return wl1271_format_buffer(userbuf, count, ppos, \
60 fmt "\n", ##value); \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030061} \
62 \
63static const struct file_operations name## _ops = { \
64 .read = name## _read, \
65 .open = wl1271_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020066 .llseek = generic_file_llseek, \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030067};
68
69#define DEBUGFS_ADD(name, parent) \
Eliad Peller7cb2cea2010-11-24 12:53:15 +020070 entry = debugfs_create_file(#name, 0400, parent, \
71 wl, &name## _ops); \
72 if (!entry || IS_ERR(entry)) \
73 goto err; \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030074
Eliad Pellerc84368e2011-05-15 11:10:30 +030075#define DEBUGFS_ADD_PREFIX(prefix, name, parent) \
76 do { \
77 entry = debugfs_create_file(#name, 0400, parent, \
78 wl, &prefix## _## name## _ops); \
79 if (!entry || IS_ERR(entry)) \
80 goto err; \
81 } while (0);
82
Eliad Peller03107a42010-10-27 14:58:30 +020083#define DEBUGFS_FWSTATS_FILE(sub, name, fmt) \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030084static ssize_t sub## _ ##name## _read(struct file *file, \
85 char __user *userbuf, \
86 size_t count, loff_t *ppos) \
87{ \
88 struct wl1271 *wl = file->private_data; \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030089 \
90 wl1271_debugfs_update_stats(wl); \
91 \
Eliad Peller03107a42010-10-27 14:58:30 +020092 return wl1271_format_buffer(userbuf, count, ppos, fmt "\n", \
93 wl->stats.fw_stats->sub.name); \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030094} \
95 \
96static const struct file_operations sub## _ ##name## _ops = { \
97 .read = sub## _ ##name## _read, \
98 .open = wl1271_open_file_generic, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +020099 .llseek = generic_file_llseek, \
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300100};
101
102#define DEBUGFS_FWSTATS_ADD(sub, name) \
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200103 DEBUGFS_ADD(sub## _ ##name, stats)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300104
105static void wl1271_debugfs_update_stats(struct wl1271 *wl)
106{
107 int ret;
108
109 mutex_lock(&wl->mutex);
110
Ido Yariva6208652011-03-01 15:14:41 +0200111 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300112 if (ret < 0)
113 goto out;
114
115 if (wl->state == WL1271_STATE_ON &&
116 time_after(jiffies, wl->stats.fw_stats_update +
117 msecs_to_jiffies(WL1271_DEBUGFS_STATS_LIFETIME))) {
118 wl1271_acx_statistics(wl, wl->stats.fw_stats);
119 wl->stats.fw_stats_update = jiffies;
120 }
121
122 wl1271_ps_elp_sleep(wl);
123
124out:
125 mutex_unlock(&wl->mutex);
126}
127
128static int wl1271_open_file_generic(struct inode *inode, struct file *file)
129{
130 file->private_data = inode->i_private;
131 return 0;
132}
133
Eliad Peller03107a42010-10-27 14:58:30 +0200134DEBUGFS_FWSTATS_FILE(tx, internal_desc_overflow, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300135
Eliad Peller03107a42010-10-27 14:58:30 +0200136DEBUGFS_FWSTATS_FILE(rx, out_of_mem, "%u");
137DEBUGFS_FWSTATS_FILE(rx, hdr_overflow, "%u");
138DEBUGFS_FWSTATS_FILE(rx, hw_stuck, "%u");
139DEBUGFS_FWSTATS_FILE(rx, dropped, "%u");
140DEBUGFS_FWSTATS_FILE(rx, fcs_err, "%u");
141DEBUGFS_FWSTATS_FILE(rx, xfr_hint_trig, "%u");
142DEBUGFS_FWSTATS_FILE(rx, path_reset, "%u");
143DEBUGFS_FWSTATS_FILE(rx, reset_counter, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300144
Eliad Peller03107a42010-10-27 14:58:30 +0200145DEBUGFS_FWSTATS_FILE(dma, rx_requested, "%u");
146DEBUGFS_FWSTATS_FILE(dma, rx_errors, "%u");
147DEBUGFS_FWSTATS_FILE(dma, tx_requested, "%u");
148DEBUGFS_FWSTATS_FILE(dma, tx_errors, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300149
Eliad Peller03107a42010-10-27 14:58:30 +0200150DEBUGFS_FWSTATS_FILE(isr, cmd_cmplt, "%u");
151DEBUGFS_FWSTATS_FILE(isr, fiqs, "%u");
152DEBUGFS_FWSTATS_FILE(isr, rx_headers, "%u");
153DEBUGFS_FWSTATS_FILE(isr, rx_mem_overflow, "%u");
154DEBUGFS_FWSTATS_FILE(isr, rx_rdys, "%u");
155DEBUGFS_FWSTATS_FILE(isr, irqs, "%u");
156DEBUGFS_FWSTATS_FILE(isr, tx_procs, "%u");
157DEBUGFS_FWSTATS_FILE(isr, decrypt_done, "%u");
158DEBUGFS_FWSTATS_FILE(isr, dma0_done, "%u");
159DEBUGFS_FWSTATS_FILE(isr, dma1_done, "%u");
160DEBUGFS_FWSTATS_FILE(isr, tx_exch_complete, "%u");
161DEBUGFS_FWSTATS_FILE(isr, commands, "%u");
162DEBUGFS_FWSTATS_FILE(isr, rx_procs, "%u");
163DEBUGFS_FWSTATS_FILE(isr, hw_pm_mode_changes, "%u");
164DEBUGFS_FWSTATS_FILE(isr, host_acknowledges, "%u");
165DEBUGFS_FWSTATS_FILE(isr, pci_pm, "%u");
166DEBUGFS_FWSTATS_FILE(isr, wakeups, "%u");
167DEBUGFS_FWSTATS_FILE(isr, low_rssi, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300168
Eliad Peller03107a42010-10-27 14:58:30 +0200169DEBUGFS_FWSTATS_FILE(wep, addr_key_count, "%u");
170DEBUGFS_FWSTATS_FILE(wep, default_key_count, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300171/* skipping wep.reserved */
Eliad Peller03107a42010-10-27 14:58:30 +0200172DEBUGFS_FWSTATS_FILE(wep, key_not_found, "%u");
173DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, "%u");
174DEBUGFS_FWSTATS_FILE(wep, packets, "%u");
175DEBUGFS_FWSTATS_FILE(wep, interrupt, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300176
Eliad Peller03107a42010-10-27 14:58:30 +0200177DEBUGFS_FWSTATS_FILE(pwr, ps_enter, "%u");
178DEBUGFS_FWSTATS_FILE(pwr, elp_enter, "%u");
179DEBUGFS_FWSTATS_FILE(pwr, missing_bcns, "%u");
180DEBUGFS_FWSTATS_FILE(pwr, wake_on_host, "%u");
181DEBUGFS_FWSTATS_FILE(pwr, wake_on_timer_exp, "%u");
182DEBUGFS_FWSTATS_FILE(pwr, tx_with_ps, "%u");
183DEBUGFS_FWSTATS_FILE(pwr, tx_without_ps, "%u");
184DEBUGFS_FWSTATS_FILE(pwr, rcvd_beacons, "%u");
185DEBUGFS_FWSTATS_FILE(pwr, power_save_off, "%u");
186DEBUGFS_FWSTATS_FILE(pwr, enable_ps, "%u");
187DEBUGFS_FWSTATS_FILE(pwr, disable_ps, "%u");
188DEBUGFS_FWSTATS_FILE(pwr, fix_tsf_ps, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300189/* skipping cont_miss_bcns_spread for now */
Eliad Peller03107a42010-10-27 14:58:30 +0200190DEBUGFS_FWSTATS_FILE(pwr, rcvd_awake_beacons, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300191
Eliad Peller03107a42010-10-27 14:58:30 +0200192DEBUGFS_FWSTATS_FILE(mic, rx_pkts, "%u");
193DEBUGFS_FWSTATS_FILE(mic, calc_failure, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300194
Eliad Peller03107a42010-10-27 14:58:30 +0200195DEBUGFS_FWSTATS_FILE(aes, encrypt_fail, "%u");
196DEBUGFS_FWSTATS_FILE(aes, decrypt_fail, "%u");
197DEBUGFS_FWSTATS_FILE(aes, encrypt_packets, "%u");
198DEBUGFS_FWSTATS_FILE(aes, decrypt_packets, "%u");
199DEBUGFS_FWSTATS_FILE(aes, encrypt_interrupt, "%u");
200DEBUGFS_FWSTATS_FILE(aes, decrypt_interrupt, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300201
Eliad Peller03107a42010-10-27 14:58:30 +0200202DEBUGFS_FWSTATS_FILE(event, heart_beat, "%u");
203DEBUGFS_FWSTATS_FILE(event, calibration, "%u");
204DEBUGFS_FWSTATS_FILE(event, rx_mismatch, "%u");
205DEBUGFS_FWSTATS_FILE(event, rx_mem_empty, "%u");
206DEBUGFS_FWSTATS_FILE(event, rx_pool, "%u");
207DEBUGFS_FWSTATS_FILE(event, oom_late, "%u");
208DEBUGFS_FWSTATS_FILE(event, phy_transmit_error, "%u");
209DEBUGFS_FWSTATS_FILE(event, tx_stuck, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300210
Eliad Peller03107a42010-10-27 14:58:30 +0200211DEBUGFS_FWSTATS_FILE(ps, pspoll_timeouts, "%u");
212DEBUGFS_FWSTATS_FILE(ps, upsd_timeouts, "%u");
213DEBUGFS_FWSTATS_FILE(ps, upsd_max_sptime, "%u");
214DEBUGFS_FWSTATS_FILE(ps, upsd_max_apturn, "%u");
215DEBUGFS_FWSTATS_FILE(ps, pspoll_max_apturn, "%u");
216DEBUGFS_FWSTATS_FILE(ps, pspoll_utilization, "%u");
217DEBUGFS_FWSTATS_FILE(ps, upsd_utilization, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300218
Eliad Peller03107a42010-10-27 14:58:30 +0200219DEBUGFS_FWSTATS_FILE(rxpipe, rx_prep_beacon_drop, "%u");
220DEBUGFS_FWSTATS_FILE(rxpipe, descr_host_int_trig_rx_data, "%u");
221DEBUGFS_FWSTATS_FILE(rxpipe, beacon_buffer_thres_host_int_trig_rx_data, "%u");
222DEBUGFS_FWSTATS_FILE(rxpipe, missed_beacon_host_int_trig_rx_data, "%u");
223DEBUGFS_FWSTATS_FILE(rxpipe, tx_xfr_host_int_trig_rx_data, "%u");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300224
Eliad Peller03107a42010-10-27 14:58:30 +0200225DEBUGFS_READONLY_FILE(retry_count, "%u", wl->stats.retry_count);
226DEBUGFS_READONLY_FILE(excessive_retries, "%u",
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300227 wl->stats.excessive_retries);
228
229static ssize_t tx_queue_len_read(struct file *file, char __user *userbuf,
230 size_t count, loff_t *ppos)
231{
232 struct wl1271 *wl = file->private_data;
233 u32 queue_len;
234 char buf[20];
235 int res;
236
Arik Nemtsovf1a46382011-07-07 14:25:23 +0300237 queue_len = wl1271_tx_total_queue_count(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300238
239 res = scnprintf(buf, sizeof(buf), "%u\n", queue_len);
240 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
241}
242
243static const struct file_operations tx_queue_len_ops = {
244 .read = tx_queue_len_read,
245 .open = wl1271_open_file_generic,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200246 .llseek = default_llseek,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300247};
248
Luciano Coelho98b2a682009-12-11 15:40:52 +0200249static ssize_t gpio_power_read(struct file *file, char __user *user_buf,
250 size_t count, loff_t *ppos)
251{
252 struct wl1271 *wl = file->private_data;
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200253 bool state = test_bit(WL1271_FLAG_GPIO_POWER, &wl->flags);
254
Luciano Coelho98b2a682009-12-11 15:40:52 +0200255 int res;
256 char buf[10];
257
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200258 res = scnprintf(buf, sizeof(buf), "%d\n", state);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200259
260 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
261}
262
263static ssize_t gpio_power_write(struct file *file,
264 const char __user *user_buf,
265 size_t count, loff_t *ppos)
266{
267 struct wl1271 *wl = file->private_data;
Luciano Coelho98b2a682009-12-11 15:40:52 +0200268 unsigned long value;
269 int ret;
270
Eliad Pellerb6883582011-08-31 14:50:13 +0300271 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200272 if (ret < 0) {
273 wl1271_warning("illegal value in gpio_power");
Eliad Peller8e2de742011-01-23 11:25:27 +0100274 return -EINVAL;
Luciano Coelho98b2a682009-12-11 15:40:52 +0200275 }
276
Eliad Peller8e2de742011-01-23 11:25:27 +0100277 mutex_lock(&wl->mutex);
278
Teemu Paasikivibecd5512010-03-18 12:26:27 +0200279 if (value)
280 wl1271_power_on(wl);
281 else
282 wl1271_power_off(wl);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200283
Luciano Coelho98b2a682009-12-11 15:40:52 +0200284 mutex_unlock(&wl->mutex);
285 return count;
286}
287
288static const struct file_operations gpio_power_ops = {
289 .read = gpio_power_read,
290 .write = gpio_power_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200291 .open = wl1271_open_file_generic,
292 .llseek = default_llseek,
Luciano Coelho98b2a682009-12-11 15:40:52 +0200293};
294
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300295static ssize_t start_recovery_write(struct file *file,
296 const char __user *user_buf,
297 size_t count, loff_t *ppos)
298{
299 struct wl1271 *wl = file->private_data;
300
301 mutex_lock(&wl->mutex);
Ido Yarivbaacb9ae2011-06-06 14:57:05 +0300302 wl12xx_queue_recovery_work(wl);
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300303 mutex_unlock(&wl->mutex);
304
305 return count;
306}
307
308static const struct file_operations start_recovery_ops = {
309 .write = start_recovery_write,
310 .open = wl1271_open_file_generic,
311 .llseek = default_llseek,
312};
313
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300314static ssize_t driver_state_read(struct file *file, char __user *user_buf,
315 size_t count, loff_t *ppos)
316{
317 struct wl1271 *wl = file->private_data;
318 int res = 0;
319 char buf[1024];
320
321 mutex_lock(&wl->mutex);
322
323#define DRIVER_STATE_PRINT(x, fmt) \
324 (res += scnprintf(buf + res, sizeof(buf) - res,\
325 #x " = " fmt "\n", wl->x))
326
327#define DRIVER_STATE_PRINT_LONG(x) DRIVER_STATE_PRINT(x, "%ld")
328#define DRIVER_STATE_PRINT_INT(x) DRIVER_STATE_PRINT(x, "%d")
329#define DRIVER_STATE_PRINT_STR(x) DRIVER_STATE_PRINT(x, "%s")
330#define DRIVER_STATE_PRINT_LHEX(x) DRIVER_STATE_PRINT(x, "0x%lx")
331#define DRIVER_STATE_PRINT_HEX(x) DRIVER_STATE_PRINT(x, "0x%x")
332
333 DRIVER_STATE_PRINT_INT(tx_blocks_available);
Arik Nemtsov7bb5d6c2011-08-14 13:17:00 +0300334 DRIVER_STATE_PRINT_INT(tx_allocated_blocks);
Arik Nemtsov742246f2011-08-14 13:17:33 +0300335 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[0]);
336 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[1]);
337 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[2]);
338 DRIVER_STATE_PRINT_INT(tx_allocated_pkts[3]);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300339 DRIVER_STATE_PRINT_INT(tx_frames_cnt);
340 DRIVER_STATE_PRINT_LHEX(tx_frames_map[0]);
Arik Nemtsovf1a46382011-07-07 14:25:23 +0300341 DRIVER_STATE_PRINT_INT(tx_queue_count[0]);
342 DRIVER_STATE_PRINT_INT(tx_queue_count[1]);
343 DRIVER_STATE_PRINT_INT(tx_queue_count[2]);
344 DRIVER_STATE_PRINT_INT(tx_queue_count[3]);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300345 DRIVER_STATE_PRINT_INT(tx_packets_count);
346 DRIVER_STATE_PRINT_INT(tx_results_count);
347 DRIVER_STATE_PRINT_LHEX(flags);
Eliad Peller4d56ad92011-08-14 13:17:05 +0300348 DRIVER_STATE_PRINT_INT(tx_blocks_freed);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300349 DRIVER_STATE_PRINT_INT(rx_counter);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300350 DRIVER_STATE_PRINT_INT(state);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300351 DRIVER_STATE_PRINT_INT(channel);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300352 DRIVER_STATE_PRINT_INT(band);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300353 DRIVER_STATE_PRINT_INT(power_level);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300354 DRIVER_STATE_PRINT_INT(sg_enabled);
355 DRIVER_STATE_PRINT_INT(enable_11a);
356 DRIVER_STATE_PRINT_INT(noise);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300357 DRIVER_STATE_PRINT_HEX(ap_fw_ps_map);
358 DRIVER_STATE_PRINT_LHEX(ap_ps_map);
359 DRIVER_STATE_PRINT_HEX(quirks);
360 DRIVER_STATE_PRINT_HEX(irq);
361 DRIVER_STATE_PRINT_HEX(ref_clock);
362 DRIVER_STATE_PRINT_HEX(tcxo_clock);
363 DRIVER_STATE_PRINT_HEX(hw_pg_ver);
364 DRIVER_STATE_PRINT_HEX(platform_quirks);
365 DRIVER_STATE_PRINT_HEX(chip.id);
366 DRIVER_STATE_PRINT_STR(chip.fw_ver_str);
Luciano Coelhod3eff812011-05-10 14:47:45 +0300367 DRIVER_STATE_PRINT_INT(sched_scanning);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300368
369#undef DRIVER_STATE_PRINT_INT
370#undef DRIVER_STATE_PRINT_LONG
371#undef DRIVER_STATE_PRINT_HEX
372#undef DRIVER_STATE_PRINT_LHEX
373#undef DRIVER_STATE_PRINT_STR
374#undef DRIVER_STATE_PRINT
375
376 mutex_unlock(&wl->mutex);
377
378 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
379}
380
381static const struct file_operations driver_state_ops = {
382 .read = driver_state_read,
383 .open = wl1271_open_file_generic,
384 .llseek = default_llseek,
385};
386
Eliad Peller1fe9e242011-04-17 11:20:47 +0300387static ssize_t dtim_interval_read(struct file *file, char __user *user_buf,
388 size_t count, loff_t *ppos)
389{
390 struct wl1271 *wl = file->private_data;
391 u8 value;
392
393 if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_DTIM ||
394 wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_DTIM)
395 value = wl->conf.conn.listen_interval;
396 else
397 value = 0;
398
399 return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value);
400}
401
402static ssize_t dtim_interval_write(struct file *file,
403 const char __user *user_buf,
404 size_t count, loff_t *ppos)
405{
406 struct wl1271 *wl = file->private_data;
Eliad Peller1fe9e242011-04-17 11:20:47 +0300407 unsigned long value;
408 int ret;
409
Eliad Pellerb6883582011-08-31 14:50:13 +0300410 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300411 if (ret < 0) {
412 wl1271_warning("illegal value for dtim_interval");
413 return -EINVAL;
414 }
415
416 if (value < 1 || value > 10) {
417 wl1271_warning("dtim value is not in valid range");
418 return -ERANGE;
419 }
420
421 mutex_lock(&wl->mutex);
422
423 wl->conf.conn.listen_interval = value;
424 /* for some reason there are different event types for 1 and >1 */
425 if (value == 1)
426 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_DTIM;
427 else
428 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_DTIM;
429
430 /*
431 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
432 * take effect on the next time we enter psm.
433 */
434 mutex_unlock(&wl->mutex);
435 return count;
436}
437
438static const struct file_operations dtim_interval_ops = {
439 .read = dtim_interval_read,
440 .write = dtim_interval_write,
441 .open = wl1271_open_file_generic,
442 .llseek = default_llseek,
443};
444
445static ssize_t beacon_interval_read(struct file *file, char __user *user_buf,
446 size_t count, loff_t *ppos)
447{
448 struct wl1271 *wl = file->private_data;
449 u8 value;
450
451 if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_BEACON ||
452 wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_BEACONS)
453 value = wl->conf.conn.listen_interval;
454 else
455 value = 0;
456
457 return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value);
458}
459
460static ssize_t beacon_interval_write(struct file *file,
461 const char __user *user_buf,
462 size_t count, loff_t *ppos)
463{
464 struct wl1271 *wl = file->private_data;
Eliad Peller1fe9e242011-04-17 11:20:47 +0300465 unsigned long value;
466 int ret;
467
Eliad Pellerb6883582011-08-31 14:50:13 +0300468 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300469 if (ret < 0) {
470 wl1271_warning("illegal value for beacon_interval");
471 return -EINVAL;
472 }
473
474 if (value < 1 || value > 255) {
475 wl1271_warning("beacon interval value is not in valid range");
476 return -ERANGE;
477 }
478
479 mutex_lock(&wl->mutex);
480
481 wl->conf.conn.listen_interval = value;
482 /* for some reason there are different event types for 1 and >1 */
483 if (value == 1)
484 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_BEACON;
485 else
486 wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_BEACONS;
487
488 /*
489 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
490 * take effect on the next time we enter psm.
491 */
492 mutex_unlock(&wl->mutex);
493 return count;
494}
495
496static const struct file_operations beacon_interval_ops = {
497 .read = beacon_interval_read,
498 .write = beacon_interval_write,
499 .open = wl1271_open_file_generic,
500 .llseek = default_llseek,
501};
502
Eliad Pellerc84368e2011-05-15 11:10:30 +0300503static ssize_t rx_streaming_interval_write(struct file *file,
504 const char __user *user_buf,
505 size_t count, loff_t *ppos)
506{
507 struct wl1271 *wl = file->private_data;
Eliad Peller9eb599e2011-10-10 10:12:59 +0200508 struct wl12xx_vif *wlvif;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300509 unsigned long value;
510 int ret;
511
Eliad Pellerb6883582011-08-31 14:50:13 +0300512 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Pellerc84368e2011-05-15 11:10:30 +0300513 if (ret < 0) {
514 wl1271_warning("illegal value in rx_streaming_interval!");
515 return -EINVAL;
516 }
517
518 /* valid values: 0, 10-100 */
519 if (value && (value < 10 || value > 100)) {
520 wl1271_warning("value is not in range!");
521 return -ERANGE;
522 }
523
524 mutex_lock(&wl->mutex);
525
526 wl->conf.rx_streaming.interval = value;
527
528 ret = wl1271_ps_elp_wakeup(wl);
529 if (ret < 0)
530 goto out;
531
Eliad Peller9eb599e2011-10-10 10:12:59 +0200532 wl12xx_for_each_wlvif_sta(wl, wlvif) {
533 wl1271_recalc_rx_streaming(wl, wlvif);
534 }
Eliad Pellerc84368e2011-05-15 11:10:30 +0300535
536 wl1271_ps_elp_sleep(wl);
537out:
538 mutex_unlock(&wl->mutex);
539 return count;
540}
541
542static ssize_t rx_streaming_interval_read(struct file *file,
543 char __user *userbuf,
544 size_t count, loff_t *ppos)
545{
546 struct wl1271 *wl = file->private_data;
547 return wl1271_format_buffer(userbuf, count, ppos,
548 "%d\n", wl->conf.rx_streaming.interval);
549}
550
551static const struct file_operations rx_streaming_interval_ops = {
552 .read = rx_streaming_interval_read,
553 .write = rx_streaming_interval_write,
554 .open = wl1271_open_file_generic,
555 .llseek = default_llseek,
556};
557
558static ssize_t rx_streaming_always_write(struct file *file,
559 const char __user *user_buf,
560 size_t count, loff_t *ppos)
561{
562 struct wl1271 *wl = file->private_data;
Eliad Peller9eb599e2011-10-10 10:12:59 +0200563 struct wl12xx_vif *wlvif;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300564 unsigned long value;
565 int ret;
566
Eliad Pellerb6883582011-08-31 14:50:13 +0300567 ret = kstrtoul_from_user(user_buf, count, 10, &value);
Eliad Pellerc84368e2011-05-15 11:10:30 +0300568 if (ret < 0) {
569 wl1271_warning("illegal value in rx_streaming_write!");
570 return -EINVAL;
571 }
572
573 /* valid values: 0, 10-100 */
574 if (!(value == 0 || value == 1)) {
575 wl1271_warning("value is not in valid!");
576 return -EINVAL;
577 }
578
579 mutex_lock(&wl->mutex);
580
581 wl->conf.rx_streaming.always = value;
582
583 ret = wl1271_ps_elp_wakeup(wl);
584 if (ret < 0)
585 goto out;
586
Eliad Peller9eb599e2011-10-10 10:12:59 +0200587 wl12xx_for_each_wlvif_sta(wl, wlvif) {
588 wl1271_recalc_rx_streaming(wl, wlvif);
589 }
Eliad Pellerc84368e2011-05-15 11:10:30 +0300590
591 wl1271_ps_elp_sleep(wl);
592out:
593 mutex_unlock(&wl->mutex);
594 return count;
595}
596
597static ssize_t rx_streaming_always_read(struct file *file,
598 char __user *userbuf,
599 size_t count, loff_t *ppos)
600{
601 struct wl1271 *wl = file->private_data;
602 return wl1271_format_buffer(userbuf, count, ppos,
603 "%d\n", wl->conf.rx_streaming.always);
604}
605
606static const struct file_operations rx_streaming_always_ops = {
607 .read = rx_streaming_always_read,
608 .write = rx_streaming_always_write,
609 .open = wl1271_open_file_generic,
610 .llseek = default_llseek,
611};
612
Eliad Pellera0a52152011-08-25 18:11:00 +0300613static ssize_t beacon_filtering_write(struct file *file,
614 const char __user *user_buf,
615 size_t count, loff_t *ppos)
616{
617 struct wl1271 *wl = file->private_data;
Eliad Peller0603d892011-10-05 11:55:51 +0200618 struct wl12xx_vif *wlvif;
Eliad Pellera0a52152011-08-25 18:11:00 +0300619 char buf[10];
620 size_t len;
621 unsigned long value;
622 int ret;
623
624 len = min(count, sizeof(buf) - 1);
625 if (copy_from_user(buf, user_buf, len))
626 return -EFAULT;
627 buf[len] = '\0';
628
629 ret = kstrtoul(buf, 0, &value);
630 if (ret < 0) {
631 wl1271_warning("illegal value for beacon_filtering!");
632 return -EINVAL;
633 }
634
635 mutex_lock(&wl->mutex);
636
637 ret = wl1271_ps_elp_wakeup(wl);
638 if (ret < 0)
639 goto out;
640
Eliad Peller6e8cd332011-10-10 10:13:13 +0200641 wl12xx_for_each_wlvif(wl, wlvif) {
642 ret = wl1271_acx_beacon_filter_opt(wl, wlvif, !!value);
643 }
Eliad Pellera0a52152011-08-25 18:11:00 +0300644
645 wl1271_ps_elp_sleep(wl);
646out:
647 mutex_unlock(&wl->mutex);
648 return count;
649}
650
651static const struct file_operations beacon_filtering_ops = {
652 .write = beacon_filtering_write,
653 .open = wl1271_open_file_generic,
654 .llseek = default_llseek,
655};
656
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200657static int wl1271_debugfs_add_files(struct wl1271 *wl,
658 struct dentry *rootdir)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300659{
660 int ret = 0;
Eliad Pellerc84368e2011-05-15 11:10:30 +0300661 struct dentry *entry, *stats, *streaming;
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200662
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200663 stats = debugfs_create_dir("fw-statistics", rootdir);
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200664 if (!stats || IS_ERR(stats)) {
665 entry = stats;
666 goto err;
667 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300668
669 DEBUGFS_FWSTATS_ADD(tx, internal_desc_overflow);
670
671 DEBUGFS_FWSTATS_ADD(rx, out_of_mem);
672 DEBUGFS_FWSTATS_ADD(rx, hdr_overflow);
673 DEBUGFS_FWSTATS_ADD(rx, hw_stuck);
674 DEBUGFS_FWSTATS_ADD(rx, dropped);
675 DEBUGFS_FWSTATS_ADD(rx, fcs_err);
676 DEBUGFS_FWSTATS_ADD(rx, xfr_hint_trig);
677 DEBUGFS_FWSTATS_ADD(rx, path_reset);
678 DEBUGFS_FWSTATS_ADD(rx, reset_counter);
679
680 DEBUGFS_FWSTATS_ADD(dma, rx_requested);
681 DEBUGFS_FWSTATS_ADD(dma, rx_errors);
682 DEBUGFS_FWSTATS_ADD(dma, tx_requested);
683 DEBUGFS_FWSTATS_ADD(dma, tx_errors);
684
685 DEBUGFS_FWSTATS_ADD(isr, cmd_cmplt);
686 DEBUGFS_FWSTATS_ADD(isr, fiqs);
687 DEBUGFS_FWSTATS_ADD(isr, rx_headers);
688 DEBUGFS_FWSTATS_ADD(isr, rx_mem_overflow);
689 DEBUGFS_FWSTATS_ADD(isr, rx_rdys);
690 DEBUGFS_FWSTATS_ADD(isr, irqs);
691 DEBUGFS_FWSTATS_ADD(isr, tx_procs);
692 DEBUGFS_FWSTATS_ADD(isr, decrypt_done);
693 DEBUGFS_FWSTATS_ADD(isr, dma0_done);
694 DEBUGFS_FWSTATS_ADD(isr, dma1_done);
695 DEBUGFS_FWSTATS_ADD(isr, tx_exch_complete);
696 DEBUGFS_FWSTATS_ADD(isr, commands);
697 DEBUGFS_FWSTATS_ADD(isr, rx_procs);
698 DEBUGFS_FWSTATS_ADD(isr, hw_pm_mode_changes);
699 DEBUGFS_FWSTATS_ADD(isr, host_acknowledges);
700 DEBUGFS_FWSTATS_ADD(isr, pci_pm);
701 DEBUGFS_FWSTATS_ADD(isr, wakeups);
702 DEBUGFS_FWSTATS_ADD(isr, low_rssi);
703
704 DEBUGFS_FWSTATS_ADD(wep, addr_key_count);
705 DEBUGFS_FWSTATS_ADD(wep, default_key_count);
706 /* skipping wep.reserved */
707 DEBUGFS_FWSTATS_ADD(wep, key_not_found);
708 DEBUGFS_FWSTATS_ADD(wep, decrypt_fail);
709 DEBUGFS_FWSTATS_ADD(wep, packets);
710 DEBUGFS_FWSTATS_ADD(wep, interrupt);
711
712 DEBUGFS_FWSTATS_ADD(pwr, ps_enter);
713 DEBUGFS_FWSTATS_ADD(pwr, elp_enter);
714 DEBUGFS_FWSTATS_ADD(pwr, missing_bcns);
715 DEBUGFS_FWSTATS_ADD(pwr, wake_on_host);
716 DEBUGFS_FWSTATS_ADD(pwr, wake_on_timer_exp);
717 DEBUGFS_FWSTATS_ADD(pwr, tx_with_ps);
718 DEBUGFS_FWSTATS_ADD(pwr, tx_without_ps);
719 DEBUGFS_FWSTATS_ADD(pwr, rcvd_beacons);
720 DEBUGFS_FWSTATS_ADD(pwr, power_save_off);
721 DEBUGFS_FWSTATS_ADD(pwr, enable_ps);
722 DEBUGFS_FWSTATS_ADD(pwr, disable_ps);
723 DEBUGFS_FWSTATS_ADD(pwr, fix_tsf_ps);
724 /* skipping cont_miss_bcns_spread for now */
725 DEBUGFS_FWSTATS_ADD(pwr, rcvd_awake_beacons);
726
727 DEBUGFS_FWSTATS_ADD(mic, rx_pkts);
728 DEBUGFS_FWSTATS_ADD(mic, calc_failure);
729
730 DEBUGFS_FWSTATS_ADD(aes, encrypt_fail);
731 DEBUGFS_FWSTATS_ADD(aes, decrypt_fail);
732 DEBUGFS_FWSTATS_ADD(aes, encrypt_packets);
733 DEBUGFS_FWSTATS_ADD(aes, decrypt_packets);
734 DEBUGFS_FWSTATS_ADD(aes, encrypt_interrupt);
735 DEBUGFS_FWSTATS_ADD(aes, decrypt_interrupt);
736
737 DEBUGFS_FWSTATS_ADD(event, heart_beat);
738 DEBUGFS_FWSTATS_ADD(event, calibration);
739 DEBUGFS_FWSTATS_ADD(event, rx_mismatch);
740 DEBUGFS_FWSTATS_ADD(event, rx_mem_empty);
741 DEBUGFS_FWSTATS_ADD(event, rx_pool);
742 DEBUGFS_FWSTATS_ADD(event, oom_late);
743 DEBUGFS_FWSTATS_ADD(event, phy_transmit_error);
744 DEBUGFS_FWSTATS_ADD(event, tx_stuck);
745
746 DEBUGFS_FWSTATS_ADD(ps, pspoll_timeouts);
747 DEBUGFS_FWSTATS_ADD(ps, upsd_timeouts);
748 DEBUGFS_FWSTATS_ADD(ps, upsd_max_sptime);
749 DEBUGFS_FWSTATS_ADD(ps, upsd_max_apturn);
750 DEBUGFS_FWSTATS_ADD(ps, pspoll_max_apturn);
751 DEBUGFS_FWSTATS_ADD(ps, pspoll_utilization);
752 DEBUGFS_FWSTATS_ADD(ps, upsd_utilization);
753
754 DEBUGFS_FWSTATS_ADD(rxpipe, rx_prep_beacon_drop);
755 DEBUGFS_FWSTATS_ADD(rxpipe, descr_host_int_trig_rx_data);
756 DEBUGFS_FWSTATS_ADD(rxpipe, beacon_buffer_thres_host_int_trig_rx_data);
757 DEBUGFS_FWSTATS_ADD(rxpipe, missed_beacon_host_int_trig_rx_data);
758 DEBUGFS_FWSTATS_ADD(rxpipe, tx_xfr_host_int_trig_rx_data);
759
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200760 DEBUGFS_ADD(tx_queue_len, rootdir);
761 DEBUGFS_ADD(retry_count, rootdir);
762 DEBUGFS_ADD(excessive_retries, rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300763
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200764 DEBUGFS_ADD(gpio_power, rootdir);
Arik Nemtsov2dc5a5c2011-04-18 14:15:27 +0300765 DEBUGFS_ADD(start_recovery, rootdir);
Arik Nemtsov2d66bee2011-04-18 14:15:29 +0300766 DEBUGFS_ADD(driver_state, rootdir);
Eliad Peller1fe9e242011-04-17 11:20:47 +0300767 DEBUGFS_ADD(dtim_interval, rootdir);
768 DEBUGFS_ADD(beacon_interval, rootdir);
Eliad Pellera0a52152011-08-25 18:11:00 +0300769 DEBUGFS_ADD(beacon_filtering, rootdir);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200770
Eliad Pellerc84368e2011-05-15 11:10:30 +0300771 streaming = debugfs_create_dir("rx_streaming", rootdir);
772 if (!streaming || IS_ERR(streaming))
773 goto err;
774
775 DEBUGFS_ADD_PREFIX(rx_streaming, interval, streaming);
776 DEBUGFS_ADD_PREFIX(rx_streaming, always, streaming);
777
778
Eliad Peller7cb2cea2010-11-24 12:53:15 +0200779 return 0;
780
781err:
782 if (IS_ERR(entry))
783 ret = PTR_ERR(entry);
784 else
785 ret = -ENOMEM;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300786
787 return ret;
788}
789
790void wl1271_debugfs_reset(struct wl1271 *wl)
791{
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200792 if (!wl->stats.fw_stats)
Luciano Coelho43a598d2010-11-30 14:58:46 +0200793 return;
794
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300795 memset(wl->stats.fw_stats, 0, sizeof(*wl->stats.fw_stats));
796 wl->stats.retry_count = 0;
797 wl->stats.excessive_retries = 0;
798}
799
800int wl1271_debugfs_init(struct wl1271 *wl)
801{
802 int ret;
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200803 struct dentry *rootdir;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300804
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200805 rootdir = debugfs_create_dir(KBUILD_MODNAME,
806 wl->hw->wiphy->debugfsdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300807
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200808 if (IS_ERR(rootdir)) {
809 ret = PTR_ERR(rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300810 goto err;
811 }
812
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300813 wl->stats.fw_stats = kzalloc(sizeof(*wl->stats.fw_stats),
814 GFP_KERNEL);
815
816 if (!wl->stats.fw_stats) {
817 ret = -ENOMEM;
818 goto err_fw;
819 }
820
821 wl->stats.fw_stats_update = jiffies;
822
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200823 ret = wl1271_debugfs_add_files(wl, rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300824
825 if (ret < 0)
826 goto err_file;
827
828 return 0;
829
830err_file:
831 kfree(wl->stats.fw_stats);
832 wl->stats.fw_stats = NULL;
833
834err_fw:
Eliad Peller3c2c04a2010-12-15 11:47:54 +0200835 debugfs_remove_recursive(rootdir);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300836
837err:
838 return ret;
839}
840
841void wl1271_debugfs_exit(struct wl1271 *wl)
842{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300843 kfree(wl->stats.fw_stats);
844 wl->stats.fw_stats = NULL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300845}