blob: 3c0f5b1ac27256ebd815935470c34c0b14365a98 [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
24#include "wl1271_debugfs.h"
25
26#include <linux/skbuff.h>
27
28#include "wl1271.h"
29#include "wl1271_acx.h"
30#include "wl1271_ps.h"
Teemu Paasikivibecd5512010-03-18 12:26:27 +020031#include "wl1271_io.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030032
33/* ms */
34#define WL1271_DEBUGFS_STATS_LIFETIME 1000
35
36/* debugfs macros idea from mac80211 */
37
38#define DEBUGFS_READONLY_FILE(name, buflen, fmt, value...) \
39static ssize_t name## _read(struct file *file, char __user *userbuf, \
40 size_t count, loff_t *ppos) \
41{ \
42 struct wl1271 *wl = file->private_data; \
43 char buf[buflen]; \
44 int res; \
45 \
46 res = scnprintf(buf, buflen, fmt "\n", ##value); \
47 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
48} \
49 \
50static const struct file_operations name## _ops = { \
51 .read = name## _read, \
52 .open = wl1271_open_file_generic, \
53};
54
55#define DEBUGFS_ADD(name, parent) \
56 wl->debugfs.name = debugfs_create_file(#name, 0400, parent, \
57 wl, &name## _ops); \
58 if (IS_ERR(wl->debugfs.name)) { \
59 ret = PTR_ERR(wl->debugfs.name); \
60 wl->debugfs.name = NULL; \
61 goto out; \
62 }
63
64#define DEBUGFS_DEL(name) \
65 do { \
66 debugfs_remove(wl->debugfs.name); \
67 wl->debugfs.name = NULL; \
68 } while (0)
69
70#define DEBUGFS_FWSTATS_FILE(sub, name, buflen, fmt) \
71static ssize_t sub## _ ##name## _read(struct file *file, \
72 char __user *userbuf, \
73 size_t count, loff_t *ppos) \
74{ \
75 struct wl1271 *wl = file->private_data; \
76 char buf[buflen]; \
77 int res; \
78 \
79 wl1271_debugfs_update_stats(wl); \
80 \
81 res = scnprintf(buf, buflen, fmt "\n", \
82 wl->stats.fw_stats->sub.name); \
83 return simple_read_from_buffer(userbuf, count, ppos, buf, res); \
84} \
85 \
86static const struct file_operations sub## _ ##name## _ops = { \
87 .read = sub## _ ##name## _read, \
88 .open = wl1271_open_file_generic, \
89};
90
91#define DEBUGFS_FWSTATS_ADD(sub, name) \
92 DEBUGFS_ADD(sub## _ ##name, wl->debugfs.fw_statistics)
93
94#define DEBUGFS_FWSTATS_DEL(sub, name) \
95 DEBUGFS_DEL(sub## _ ##name)
96
97static void wl1271_debugfs_update_stats(struct wl1271 *wl)
98{
99 int ret;
100
101 mutex_lock(&wl->mutex);
102
103 ret = wl1271_ps_elp_wakeup(wl, false);
104 if (ret < 0)
105 goto out;
106
107 if (wl->state == WL1271_STATE_ON &&
108 time_after(jiffies, wl->stats.fw_stats_update +
109 msecs_to_jiffies(WL1271_DEBUGFS_STATS_LIFETIME))) {
110 wl1271_acx_statistics(wl, wl->stats.fw_stats);
111 wl->stats.fw_stats_update = jiffies;
112 }
113
114 wl1271_ps_elp_sleep(wl);
115
116out:
117 mutex_unlock(&wl->mutex);
118}
119
120static int wl1271_open_file_generic(struct inode *inode, struct file *file)
121{
122 file->private_data = inode->i_private;
123 return 0;
124}
125
126DEBUGFS_FWSTATS_FILE(tx, internal_desc_overflow, 20, "%u");
127
128DEBUGFS_FWSTATS_FILE(rx, out_of_mem, 20, "%u");
129DEBUGFS_FWSTATS_FILE(rx, hdr_overflow, 20, "%u");
130DEBUGFS_FWSTATS_FILE(rx, hw_stuck, 20, "%u");
131DEBUGFS_FWSTATS_FILE(rx, dropped, 20, "%u");
132DEBUGFS_FWSTATS_FILE(rx, fcs_err, 20, "%u");
133DEBUGFS_FWSTATS_FILE(rx, xfr_hint_trig, 20, "%u");
134DEBUGFS_FWSTATS_FILE(rx, path_reset, 20, "%u");
135DEBUGFS_FWSTATS_FILE(rx, reset_counter, 20, "%u");
136
137DEBUGFS_FWSTATS_FILE(dma, rx_requested, 20, "%u");
138DEBUGFS_FWSTATS_FILE(dma, rx_errors, 20, "%u");
139DEBUGFS_FWSTATS_FILE(dma, tx_requested, 20, "%u");
140DEBUGFS_FWSTATS_FILE(dma, tx_errors, 20, "%u");
141
142DEBUGFS_FWSTATS_FILE(isr, cmd_cmplt, 20, "%u");
143DEBUGFS_FWSTATS_FILE(isr, fiqs, 20, "%u");
144DEBUGFS_FWSTATS_FILE(isr, rx_headers, 20, "%u");
145DEBUGFS_FWSTATS_FILE(isr, rx_mem_overflow, 20, "%u");
146DEBUGFS_FWSTATS_FILE(isr, rx_rdys, 20, "%u");
147DEBUGFS_FWSTATS_FILE(isr, irqs, 20, "%u");
148DEBUGFS_FWSTATS_FILE(isr, tx_procs, 20, "%u");
149DEBUGFS_FWSTATS_FILE(isr, decrypt_done, 20, "%u");
150DEBUGFS_FWSTATS_FILE(isr, dma0_done, 20, "%u");
151DEBUGFS_FWSTATS_FILE(isr, dma1_done, 20, "%u");
152DEBUGFS_FWSTATS_FILE(isr, tx_exch_complete, 20, "%u");
153DEBUGFS_FWSTATS_FILE(isr, commands, 20, "%u");
154DEBUGFS_FWSTATS_FILE(isr, rx_procs, 20, "%u");
155DEBUGFS_FWSTATS_FILE(isr, hw_pm_mode_changes, 20, "%u");
156DEBUGFS_FWSTATS_FILE(isr, host_acknowledges, 20, "%u");
157DEBUGFS_FWSTATS_FILE(isr, pci_pm, 20, "%u");
158DEBUGFS_FWSTATS_FILE(isr, wakeups, 20, "%u");
159DEBUGFS_FWSTATS_FILE(isr, low_rssi, 20, "%u");
160
161DEBUGFS_FWSTATS_FILE(wep, addr_key_count, 20, "%u");
162DEBUGFS_FWSTATS_FILE(wep, default_key_count, 20, "%u");
163/* skipping wep.reserved */
164DEBUGFS_FWSTATS_FILE(wep, key_not_found, 20, "%u");
165DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, 20, "%u");
166DEBUGFS_FWSTATS_FILE(wep, packets, 20, "%u");
167DEBUGFS_FWSTATS_FILE(wep, interrupt, 20, "%u");
168
169DEBUGFS_FWSTATS_FILE(pwr, ps_enter, 20, "%u");
170DEBUGFS_FWSTATS_FILE(pwr, elp_enter, 20, "%u");
171DEBUGFS_FWSTATS_FILE(pwr, missing_bcns, 20, "%u");
172DEBUGFS_FWSTATS_FILE(pwr, wake_on_host, 20, "%u");
173DEBUGFS_FWSTATS_FILE(pwr, wake_on_timer_exp, 20, "%u");
174DEBUGFS_FWSTATS_FILE(pwr, tx_with_ps, 20, "%u");
175DEBUGFS_FWSTATS_FILE(pwr, tx_without_ps, 20, "%u");
176DEBUGFS_FWSTATS_FILE(pwr, rcvd_beacons, 20, "%u");
177DEBUGFS_FWSTATS_FILE(pwr, power_save_off, 20, "%u");
178DEBUGFS_FWSTATS_FILE(pwr, enable_ps, 20, "%u");
179DEBUGFS_FWSTATS_FILE(pwr, disable_ps, 20, "%u");
180DEBUGFS_FWSTATS_FILE(pwr, fix_tsf_ps, 20, "%u");
181/* skipping cont_miss_bcns_spread for now */
182DEBUGFS_FWSTATS_FILE(pwr, rcvd_awake_beacons, 20, "%u");
183
184DEBUGFS_FWSTATS_FILE(mic, rx_pkts, 20, "%u");
185DEBUGFS_FWSTATS_FILE(mic, calc_failure, 20, "%u");
186
187DEBUGFS_FWSTATS_FILE(aes, encrypt_fail, 20, "%u");
188DEBUGFS_FWSTATS_FILE(aes, decrypt_fail, 20, "%u");
189DEBUGFS_FWSTATS_FILE(aes, encrypt_packets, 20, "%u");
190DEBUGFS_FWSTATS_FILE(aes, decrypt_packets, 20, "%u");
191DEBUGFS_FWSTATS_FILE(aes, encrypt_interrupt, 20, "%u");
192DEBUGFS_FWSTATS_FILE(aes, decrypt_interrupt, 20, "%u");
193
194DEBUGFS_FWSTATS_FILE(event, heart_beat, 20, "%u");
195DEBUGFS_FWSTATS_FILE(event, calibration, 20, "%u");
196DEBUGFS_FWSTATS_FILE(event, rx_mismatch, 20, "%u");
197DEBUGFS_FWSTATS_FILE(event, rx_mem_empty, 20, "%u");
198DEBUGFS_FWSTATS_FILE(event, rx_pool, 20, "%u");
199DEBUGFS_FWSTATS_FILE(event, oom_late, 20, "%u");
200DEBUGFS_FWSTATS_FILE(event, phy_transmit_error, 20, "%u");
201DEBUGFS_FWSTATS_FILE(event, tx_stuck, 20, "%u");
202
203DEBUGFS_FWSTATS_FILE(ps, pspoll_timeouts, 20, "%u");
204DEBUGFS_FWSTATS_FILE(ps, upsd_timeouts, 20, "%u");
205DEBUGFS_FWSTATS_FILE(ps, upsd_max_sptime, 20, "%u");
206DEBUGFS_FWSTATS_FILE(ps, upsd_max_apturn, 20, "%u");
207DEBUGFS_FWSTATS_FILE(ps, pspoll_max_apturn, 20, "%u");
208DEBUGFS_FWSTATS_FILE(ps, pspoll_utilization, 20, "%u");
209DEBUGFS_FWSTATS_FILE(ps, upsd_utilization, 20, "%u");
210
211DEBUGFS_FWSTATS_FILE(rxpipe, rx_prep_beacon_drop, 20, "%u");
212DEBUGFS_FWSTATS_FILE(rxpipe, descr_host_int_trig_rx_data, 20, "%u");
213DEBUGFS_FWSTATS_FILE(rxpipe, beacon_buffer_thres_host_int_trig_rx_data,
214 20, "%u");
215DEBUGFS_FWSTATS_FILE(rxpipe, missed_beacon_host_int_trig_rx_data, 20, "%u");
216DEBUGFS_FWSTATS_FILE(rxpipe, tx_xfr_host_int_trig_rx_data, 20, "%u");
217
218DEBUGFS_READONLY_FILE(retry_count, 20, "%u", wl->stats.retry_count);
219DEBUGFS_READONLY_FILE(excessive_retries, 20, "%u",
220 wl->stats.excessive_retries);
221
222static ssize_t tx_queue_len_read(struct file *file, char __user *userbuf,
223 size_t count, loff_t *ppos)
224{
225 struct wl1271 *wl = file->private_data;
226 u32 queue_len;
227 char buf[20];
228 int res;
229
230 queue_len = skb_queue_len(&wl->tx_queue);
231
232 res = scnprintf(buf, sizeof(buf), "%u\n", queue_len);
233 return simple_read_from_buffer(userbuf, count, ppos, buf, res);
234}
235
236static const struct file_operations tx_queue_len_ops = {
237 .read = tx_queue_len_read,
238 .open = wl1271_open_file_generic,
239};
240
Luciano Coelho98b2a682009-12-11 15:40:52 +0200241static ssize_t gpio_power_read(struct file *file, char __user *user_buf,
242 size_t count, loff_t *ppos)
243{
244 struct wl1271 *wl = file->private_data;
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200245 bool state = test_bit(WL1271_FLAG_GPIO_POWER, &wl->flags);
246
Luciano Coelho98b2a682009-12-11 15:40:52 +0200247 int res;
248 char buf[10];
249
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200250 res = scnprintf(buf, sizeof(buf), "%d\n", state);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200251
252 return simple_read_from_buffer(user_buf, count, ppos, buf, res);
253}
254
255static ssize_t gpio_power_write(struct file *file,
256 const char __user *user_buf,
257 size_t count, loff_t *ppos)
258{
259 struct wl1271 *wl = file->private_data;
260 char buf[10];
261 size_t len;
262 unsigned long value;
263 int ret;
264
265 mutex_lock(&wl->mutex);
266
267 len = min(count, sizeof(buf) - 1);
268 if (copy_from_user(buf, user_buf, len)) {
269 ret = -EFAULT;
270 goto out;
271 }
272 buf[len] = '\0';
273
274 ret = strict_strtoul(buf, 0, &value);
275 if (ret < 0) {
276 wl1271_warning("illegal value in gpio_power");
277 goto out;
278 }
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
285out:
286 mutex_unlock(&wl->mutex);
287 return count;
288}
289
290static const struct file_operations gpio_power_ops = {
291 .read = gpio_power_read,
292 .write = gpio_power_write,
293 .open = wl1271_open_file_generic
294};
295
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300296static void wl1271_debugfs_delete_files(struct wl1271 *wl)
297{
298 DEBUGFS_FWSTATS_DEL(tx, internal_desc_overflow);
299
300 DEBUGFS_FWSTATS_DEL(rx, out_of_mem);
301 DEBUGFS_FWSTATS_DEL(rx, hdr_overflow);
302 DEBUGFS_FWSTATS_DEL(rx, hw_stuck);
303 DEBUGFS_FWSTATS_DEL(rx, dropped);
304 DEBUGFS_FWSTATS_DEL(rx, fcs_err);
305 DEBUGFS_FWSTATS_DEL(rx, xfr_hint_trig);
306 DEBUGFS_FWSTATS_DEL(rx, path_reset);
307 DEBUGFS_FWSTATS_DEL(rx, reset_counter);
308
309 DEBUGFS_FWSTATS_DEL(dma, rx_requested);
310 DEBUGFS_FWSTATS_DEL(dma, rx_errors);
311 DEBUGFS_FWSTATS_DEL(dma, tx_requested);
312 DEBUGFS_FWSTATS_DEL(dma, tx_errors);
313
314 DEBUGFS_FWSTATS_DEL(isr, cmd_cmplt);
315 DEBUGFS_FWSTATS_DEL(isr, fiqs);
316 DEBUGFS_FWSTATS_DEL(isr, rx_headers);
317 DEBUGFS_FWSTATS_DEL(isr, rx_mem_overflow);
318 DEBUGFS_FWSTATS_DEL(isr, rx_rdys);
319 DEBUGFS_FWSTATS_DEL(isr, irqs);
320 DEBUGFS_FWSTATS_DEL(isr, tx_procs);
321 DEBUGFS_FWSTATS_DEL(isr, decrypt_done);
322 DEBUGFS_FWSTATS_DEL(isr, dma0_done);
323 DEBUGFS_FWSTATS_DEL(isr, dma1_done);
324 DEBUGFS_FWSTATS_DEL(isr, tx_exch_complete);
325 DEBUGFS_FWSTATS_DEL(isr, commands);
326 DEBUGFS_FWSTATS_DEL(isr, rx_procs);
327 DEBUGFS_FWSTATS_DEL(isr, hw_pm_mode_changes);
328 DEBUGFS_FWSTATS_DEL(isr, host_acknowledges);
329 DEBUGFS_FWSTATS_DEL(isr, pci_pm);
330 DEBUGFS_FWSTATS_DEL(isr, wakeups);
331 DEBUGFS_FWSTATS_DEL(isr, low_rssi);
332
333 DEBUGFS_FWSTATS_DEL(wep, addr_key_count);
334 DEBUGFS_FWSTATS_DEL(wep, default_key_count);
335 /* skipping wep.reserved */
336 DEBUGFS_FWSTATS_DEL(wep, key_not_found);
337 DEBUGFS_FWSTATS_DEL(wep, decrypt_fail);
338 DEBUGFS_FWSTATS_DEL(wep, packets);
339 DEBUGFS_FWSTATS_DEL(wep, interrupt);
340
341 DEBUGFS_FWSTATS_DEL(pwr, ps_enter);
342 DEBUGFS_FWSTATS_DEL(pwr, elp_enter);
343 DEBUGFS_FWSTATS_DEL(pwr, missing_bcns);
344 DEBUGFS_FWSTATS_DEL(pwr, wake_on_host);
345 DEBUGFS_FWSTATS_DEL(pwr, wake_on_timer_exp);
346 DEBUGFS_FWSTATS_DEL(pwr, tx_with_ps);
347 DEBUGFS_FWSTATS_DEL(pwr, tx_without_ps);
348 DEBUGFS_FWSTATS_DEL(pwr, rcvd_beacons);
349 DEBUGFS_FWSTATS_DEL(pwr, power_save_off);
350 DEBUGFS_FWSTATS_DEL(pwr, enable_ps);
351 DEBUGFS_FWSTATS_DEL(pwr, disable_ps);
352 DEBUGFS_FWSTATS_DEL(pwr, fix_tsf_ps);
353 /* skipping cont_miss_bcns_spread for now */
354 DEBUGFS_FWSTATS_DEL(pwr, rcvd_awake_beacons);
355
356 DEBUGFS_FWSTATS_DEL(mic, rx_pkts);
357 DEBUGFS_FWSTATS_DEL(mic, calc_failure);
358
359 DEBUGFS_FWSTATS_DEL(aes, encrypt_fail);
360 DEBUGFS_FWSTATS_DEL(aes, decrypt_fail);
361 DEBUGFS_FWSTATS_DEL(aes, encrypt_packets);
362 DEBUGFS_FWSTATS_DEL(aes, decrypt_packets);
363 DEBUGFS_FWSTATS_DEL(aes, encrypt_interrupt);
364 DEBUGFS_FWSTATS_DEL(aes, decrypt_interrupt);
365
366 DEBUGFS_FWSTATS_DEL(event, heart_beat);
367 DEBUGFS_FWSTATS_DEL(event, calibration);
368 DEBUGFS_FWSTATS_DEL(event, rx_mismatch);
369 DEBUGFS_FWSTATS_DEL(event, rx_mem_empty);
370 DEBUGFS_FWSTATS_DEL(event, rx_pool);
371 DEBUGFS_FWSTATS_DEL(event, oom_late);
372 DEBUGFS_FWSTATS_DEL(event, phy_transmit_error);
373 DEBUGFS_FWSTATS_DEL(event, tx_stuck);
374
375 DEBUGFS_FWSTATS_DEL(ps, pspoll_timeouts);
376 DEBUGFS_FWSTATS_DEL(ps, upsd_timeouts);
377 DEBUGFS_FWSTATS_DEL(ps, upsd_max_sptime);
378 DEBUGFS_FWSTATS_DEL(ps, upsd_max_apturn);
379 DEBUGFS_FWSTATS_DEL(ps, pspoll_max_apturn);
380 DEBUGFS_FWSTATS_DEL(ps, pspoll_utilization);
381 DEBUGFS_FWSTATS_DEL(ps, upsd_utilization);
382
383 DEBUGFS_FWSTATS_DEL(rxpipe, rx_prep_beacon_drop);
384 DEBUGFS_FWSTATS_DEL(rxpipe, descr_host_int_trig_rx_data);
385 DEBUGFS_FWSTATS_DEL(rxpipe, beacon_buffer_thres_host_int_trig_rx_data);
386 DEBUGFS_FWSTATS_DEL(rxpipe, missed_beacon_host_int_trig_rx_data);
387 DEBUGFS_FWSTATS_DEL(rxpipe, tx_xfr_host_int_trig_rx_data);
388
389 DEBUGFS_DEL(tx_queue_len);
390 DEBUGFS_DEL(retry_count);
391 DEBUGFS_DEL(excessive_retries);
Luciano Coelho98b2a682009-12-11 15:40:52 +0200392
393 DEBUGFS_DEL(gpio_power);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300394}
395
396static int wl1271_debugfs_add_files(struct wl1271 *wl)
397{
398 int ret = 0;
399
400 DEBUGFS_FWSTATS_ADD(tx, internal_desc_overflow);
401
402 DEBUGFS_FWSTATS_ADD(rx, out_of_mem);
403 DEBUGFS_FWSTATS_ADD(rx, hdr_overflow);
404 DEBUGFS_FWSTATS_ADD(rx, hw_stuck);
405 DEBUGFS_FWSTATS_ADD(rx, dropped);
406 DEBUGFS_FWSTATS_ADD(rx, fcs_err);
407 DEBUGFS_FWSTATS_ADD(rx, xfr_hint_trig);
408 DEBUGFS_FWSTATS_ADD(rx, path_reset);
409 DEBUGFS_FWSTATS_ADD(rx, reset_counter);
410
411 DEBUGFS_FWSTATS_ADD(dma, rx_requested);
412 DEBUGFS_FWSTATS_ADD(dma, rx_errors);
413 DEBUGFS_FWSTATS_ADD(dma, tx_requested);
414 DEBUGFS_FWSTATS_ADD(dma, tx_errors);
415
416 DEBUGFS_FWSTATS_ADD(isr, cmd_cmplt);
417 DEBUGFS_FWSTATS_ADD(isr, fiqs);
418 DEBUGFS_FWSTATS_ADD(isr, rx_headers);
419 DEBUGFS_FWSTATS_ADD(isr, rx_mem_overflow);
420 DEBUGFS_FWSTATS_ADD(isr, rx_rdys);
421 DEBUGFS_FWSTATS_ADD(isr, irqs);
422 DEBUGFS_FWSTATS_ADD(isr, tx_procs);
423 DEBUGFS_FWSTATS_ADD(isr, decrypt_done);
424 DEBUGFS_FWSTATS_ADD(isr, dma0_done);
425 DEBUGFS_FWSTATS_ADD(isr, dma1_done);
426 DEBUGFS_FWSTATS_ADD(isr, tx_exch_complete);
427 DEBUGFS_FWSTATS_ADD(isr, commands);
428 DEBUGFS_FWSTATS_ADD(isr, rx_procs);
429 DEBUGFS_FWSTATS_ADD(isr, hw_pm_mode_changes);
430 DEBUGFS_FWSTATS_ADD(isr, host_acknowledges);
431 DEBUGFS_FWSTATS_ADD(isr, pci_pm);
432 DEBUGFS_FWSTATS_ADD(isr, wakeups);
433 DEBUGFS_FWSTATS_ADD(isr, low_rssi);
434
435 DEBUGFS_FWSTATS_ADD(wep, addr_key_count);
436 DEBUGFS_FWSTATS_ADD(wep, default_key_count);
437 /* skipping wep.reserved */
438 DEBUGFS_FWSTATS_ADD(wep, key_not_found);
439 DEBUGFS_FWSTATS_ADD(wep, decrypt_fail);
440 DEBUGFS_FWSTATS_ADD(wep, packets);
441 DEBUGFS_FWSTATS_ADD(wep, interrupt);
442
443 DEBUGFS_FWSTATS_ADD(pwr, ps_enter);
444 DEBUGFS_FWSTATS_ADD(pwr, elp_enter);
445 DEBUGFS_FWSTATS_ADD(pwr, missing_bcns);
446 DEBUGFS_FWSTATS_ADD(pwr, wake_on_host);
447 DEBUGFS_FWSTATS_ADD(pwr, wake_on_timer_exp);
448 DEBUGFS_FWSTATS_ADD(pwr, tx_with_ps);
449 DEBUGFS_FWSTATS_ADD(pwr, tx_without_ps);
450 DEBUGFS_FWSTATS_ADD(pwr, rcvd_beacons);
451 DEBUGFS_FWSTATS_ADD(pwr, power_save_off);
452 DEBUGFS_FWSTATS_ADD(pwr, enable_ps);
453 DEBUGFS_FWSTATS_ADD(pwr, disable_ps);
454 DEBUGFS_FWSTATS_ADD(pwr, fix_tsf_ps);
455 /* skipping cont_miss_bcns_spread for now */
456 DEBUGFS_FWSTATS_ADD(pwr, rcvd_awake_beacons);
457
458 DEBUGFS_FWSTATS_ADD(mic, rx_pkts);
459 DEBUGFS_FWSTATS_ADD(mic, calc_failure);
460
461 DEBUGFS_FWSTATS_ADD(aes, encrypt_fail);
462 DEBUGFS_FWSTATS_ADD(aes, decrypt_fail);
463 DEBUGFS_FWSTATS_ADD(aes, encrypt_packets);
464 DEBUGFS_FWSTATS_ADD(aes, decrypt_packets);
465 DEBUGFS_FWSTATS_ADD(aes, encrypt_interrupt);
466 DEBUGFS_FWSTATS_ADD(aes, decrypt_interrupt);
467
468 DEBUGFS_FWSTATS_ADD(event, heart_beat);
469 DEBUGFS_FWSTATS_ADD(event, calibration);
470 DEBUGFS_FWSTATS_ADD(event, rx_mismatch);
471 DEBUGFS_FWSTATS_ADD(event, rx_mem_empty);
472 DEBUGFS_FWSTATS_ADD(event, rx_pool);
473 DEBUGFS_FWSTATS_ADD(event, oom_late);
474 DEBUGFS_FWSTATS_ADD(event, phy_transmit_error);
475 DEBUGFS_FWSTATS_ADD(event, tx_stuck);
476
477 DEBUGFS_FWSTATS_ADD(ps, pspoll_timeouts);
478 DEBUGFS_FWSTATS_ADD(ps, upsd_timeouts);
479 DEBUGFS_FWSTATS_ADD(ps, upsd_max_sptime);
480 DEBUGFS_FWSTATS_ADD(ps, upsd_max_apturn);
481 DEBUGFS_FWSTATS_ADD(ps, pspoll_max_apturn);
482 DEBUGFS_FWSTATS_ADD(ps, pspoll_utilization);
483 DEBUGFS_FWSTATS_ADD(ps, upsd_utilization);
484
485 DEBUGFS_FWSTATS_ADD(rxpipe, rx_prep_beacon_drop);
486 DEBUGFS_FWSTATS_ADD(rxpipe, descr_host_int_trig_rx_data);
487 DEBUGFS_FWSTATS_ADD(rxpipe, beacon_buffer_thres_host_int_trig_rx_data);
488 DEBUGFS_FWSTATS_ADD(rxpipe, missed_beacon_host_int_trig_rx_data);
489 DEBUGFS_FWSTATS_ADD(rxpipe, tx_xfr_host_int_trig_rx_data);
490
491 DEBUGFS_ADD(tx_queue_len, wl->debugfs.rootdir);
492 DEBUGFS_ADD(retry_count, wl->debugfs.rootdir);
493 DEBUGFS_ADD(excessive_retries, wl->debugfs.rootdir);
494
Luciano Coelho98b2a682009-12-11 15:40:52 +0200495 DEBUGFS_ADD(gpio_power, wl->debugfs.rootdir);
496
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300497out:
498 if (ret < 0)
499 wl1271_debugfs_delete_files(wl);
500
501 return ret;
502}
503
504void wl1271_debugfs_reset(struct wl1271 *wl)
505{
506 memset(wl->stats.fw_stats, 0, sizeof(*wl->stats.fw_stats));
507 wl->stats.retry_count = 0;
508 wl->stats.excessive_retries = 0;
509}
510
511int wl1271_debugfs_init(struct wl1271 *wl)
512{
513 int ret;
514
515 wl->debugfs.rootdir = debugfs_create_dir(KBUILD_MODNAME, NULL);
516
517 if (IS_ERR(wl->debugfs.rootdir)) {
518 ret = PTR_ERR(wl->debugfs.rootdir);
519 wl->debugfs.rootdir = NULL;
520 goto err;
521 }
522
523 wl->debugfs.fw_statistics = debugfs_create_dir("fw-statistics",
524 wl->debugfs.rootdir);
525
526 if (IS_ERR(wl->debugfs.fw_statistics)) {
527 ret = PTR_ERR(wl->debugfs.fw_statistics);
528 wl->debugfs.fw_statistics = NULL;
529 goto err_root;
530 }
531
532 wl->stats.fw_stats = kzalloc(sizeof(*wl->stats.fw_stats),
533 GFP_KERNEL);
534
535 if (!wl->stats.fw_stats) {
536 ret = -ENOMEM;
537 goto err_fw;
538 }
539
540 wl->stats.fw_stats_update = jiffies;
541
542 ret = wl1271_debugfs_add_files(wl);
543
544 if (ret < 0)
545 goto err_file;
546
547 return 0;
548
549err_file:
550 kfree(wl->stats.fw_stats);
551 wl->stats.fw_stats = NULL;
552
553err_fw:
554 debugfs_remove(wl->debugfs.fw_statistics);
555 wl->debugfs.fw_statistics = NULL;
556
557err_root:
558 debugfs_remove(wl->debugfs.rootdir);
559 wl->debugfs.rootdir = NULL;
560
561err:
562 return ret;
563}
564
565void wl1271_debugfs_exit(struct wl1271 *wl)
566{
567 wl1271_debugfs_delete_files(wl);
568
569 kfree(wl->stats.fw_stats);
570 wl->stats.fw_stats = NULL;
571
572 debugfs_remove(wl->debugfs.fw_statistics);
573 wl->debugfs.fw_statistics = NULL;
574
575 debugfs_remove(wl->debugfs.rootdir);
576 wl->debugfs.rootdir = NULL;
577
578}