2 * This file is part of wl1271
4 * Copyright (C) 2009 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
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.
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.
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
26 #include <linux/skbuff.h>
27 #include <linux/slab.h>
28 #include <linux/module.h>
39 #define WL1271_DEBUGFS_STATS_LIFETIME 1000
41 #define WLCORE_MAX_BLOCK_SIZE ((size_t)(4*PAGE_SIZE))
43 /* debugfs macros idea from mac80211 */
44 int wl1271_format_buffer(char __user
*userbuf
, size_t count
,
45 loff_t
*ppos
, char *fmt
, ...)
48 char buf
[DEBUGFS_FORMAT_BUFFER_SIZE
];
52 res
= vscnprintf(buf
, sizeof(buf
), fmt
, args
);
55 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, res
);
57 EXPORT_SYMBOL_GPL(wl1271_format_buffer
);
59 void wl1271_debugfs_update_stats(struct wl1271
*wl
)
63 mutex_lock(&wl
->mutex
);
65 if (unlikely(wl
->state
!= WLCORE_STATE_ON
))
68 ret
= wl1271_ps_elp_wakeup(wl
);
73 time_after(jiffies
, wl
->stats
.fw_stats_update
+
74 msecs_to_jiffies(WL1271_DEBUGFS_STATS_LIFETIME
))) {
75 wl1271_acx_statistics(wl
, wl
->stats
.fw_stats
);
76 wl
->stats
.fw_stats_update
= jiffies
;
79 wl1271_ps_elp_sleep(wl
);
82 mutex_unlock(&wl
->mutex
);
84 EXPORT_SYMBOL_GPL(wl1271_debugfs_update_stats
);
86 DEBUGFS_READONLY_FILE(retry_count
, "%u", wl
->stats
.retry_count
);
87 DEBUGFS_READONLY_FILE(excessive_retries
, "%u",
88 wl
->stats
.excessive_retries
);
90 static ssize_t
tx_queue_len_read(struct file
*file
, char __user
*userbuf
,
91 size_t count
, loff_t
*ppos
)
93 struct wl1271
*wl
= file
->private_data
;
98 queue_len
= wl1271_tx_total_queue_count(wl
);
100 res
= scnprintf(buf
, sizeof(buf
), "%u\n", queue_len
);
101 return simple_read_from_buffer(userbuf
, count
, ppos
, buf
, res
);
104 static const struct file_operations tx_queue_len_ops
= {
105 .read
= tx_queue_len_read
,
107 .llseek
= default_llseek
,
110 static void chip_op_handler(struct wl1271
*wl
, unsigned long value
,
114 int (*chip_op
) (struct wl1271
*wl
);
117 wl1271_warning("debugfs chip_op_handler with no callback");
121 ret
= wl1271_ps_elp_wakeup(wl
);
128 wl1271_ps_elp_sleep(wl
);
132 static inline void no_write_handler(struct wl1271
*wl
,
138 #define WL12XX_CONF_DEBUGFS(param, conf_sub_struct, \
139 min_val, max_val, write_handler_locked, \
141 static ssize_t param##_read(struct file *file, \
142 char __user *user_buf, \
143 size_t count, loff_t *ppos) \
145 struct wl1271 *wl = file->private_data; \
146 return wl1271_format_buffer(user_buf, count, \
148 wl->conf.conf_sub_struct.param); \
151 static ssize_t param##_write(struct file *file, \
152 const char __user *user_buf, \
153 size_t count, loff_t *ppos) \
155 struct wl1271 *wl = file->private_data; \
156 unsigned long value; \
159 ret = kstrtoul_from_user(user_buf, count, 10, &value); \
161 wl1271_warning("illegal value for " #param); \
165 if (value < min_val || value > max_val) { \
166 wl1271_warning(#param " is not in valid range"); \
170 mutex_lock(&wl->mutex); \
171 wl->conf.conf_sub_struct.param = value; \
173 write_handler_locked(wl, value, write_handler_arg); \
175 mutex_unlock(&wl->mutex); \
179 static const struct file_operations param##_ops = { \
180 .read = param##_read, \
181 .write = param##_write, \
182 .open = simple_open, \
183 .llseek = default_llseek, \
186 WL12XX_CONF_DEBUGFS(irq_pkt_threshold
, rx
, 0, 65535,
187 chip_op_handler
, wl1271_acx_init_rx_interrupt
)
188 WL12XX_CONF_DEBUGFS(irq_blk_threshold
, rx
, 0, 65535,
189 chip_op_handler
, wl1271_acx_init_rx_interrupt
)
190 WL12XX_CONF_DEBUGFS(irq_timeout
, rx
, 0, 100,
191 chip_op_handler
, wl1271_acx_init_rx_interrupt
)
193 static ssize_t
gpio_power_read(struct file
*file
, char __user
*user_buf
,
194 size_t count
, loff_t
*ppos
)
196 struct wl1271
*wl
= file
->private_data
;
197 bool state
= test_bit(WL1271_FLAG_GPIO_POWER
, &wl
->flags
);
202 res
= scnprintf(buf
, sizeof(buf
), "%d\n", state
);
204 return simple_read_from_buffer(user_buf
, count
, ppos
, buf
, res
);
207 static ssize_t
gpio_power_write(struct file
*file
,
208 const char __user
*user_buf
,
209 size_t count
, loff_t
*ppos
)
211 struct wl1271
*wl
= file
->private_data
;
215 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
217 wl1271_warning("illegal value in gpio_power");
221 mutex_lock(&wl
->mutex
);
226 wl1271_power_off(wl
);
228 mutex_unlock(&wl
->mutex
);
232 static const struct file_operations gpio_power_ops
= {
233 .read
= gpio_power_read
,
234 .write
= gpio_power_write
,
236 .llseek
= default_llseek
,
239 static ssize_t
start_recovery_write(struct file
*file
,
240 const char __user
*user_buf
,
241 size_t count
, loff_t
*ppos
)
243 struct wl1271
*wl
= file
->private_data
;
245 mutex_lock(&wl
->mutex
);
246 wl12xx_queue_recovery_work(wl
);
247 mutex_unlock(&wl
->mutex
);
252 static const struct file_operations start_recovery_ops
= {
253 .write
= start_recovery_write
,
255 .llseek
= default_llseek
,
258 static ssize_t
dynamic_ps_timeout_read(struct file
*file
, char __user
*user_buf
,
259 size_t count
, loff_t
*ppos
)
261 struct wl1271
*wl
= file
->private_data
;
263 return wl1271_format_buffer(user_buf
, count
,
265 wl
->conf
.conn
.dynamic_ps_timeout
);
268 static ssize_t
dynamic_ps_timeout_write(struct file
*file
,
269 const char __user
*user_buf
,
270 size_t count
, loff_t
*ppos
)
272 struct wl1271
*wl
= file
->private_data
;
273 struct wl12xx_vif
*wlvif
;
277 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
279 wl1271_warning("illegal value in dynamic_ps");
283 if (value
< 1 || value
> 65535) {
284 wl1271_warning("dyanmic_ps_timeout is not in valid range");
288 mutex_lock(&wl
->mutex
);
290 wl
->conf
.conn
.dynamic_ps_timeout
= value
;
292 if (unlikely(wl
->state
!= WLCORE_STATE_ON
))
295 ret
= wl1271_ps_elp_wakeup(wl
);
299 /* In case we're already in PSM, trigger it again to set new timeout
300 * immediately without waiting for re-association
303 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
304 if (test_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
))
305 wl1271_ps_set_mode(wl
, wlvif
, STATION_AUTO_PS_MODE
);
308 wl1271_ps_elp_sleep(wl
);
311 mutex_unlock(&wl
->mutex
);
315 static const struct file_operations dynamic_ps_timeout_ops
= {
316 .read
= dynamic_ps_timeout_read
,
317 .write
= dynamic_ps_timeout_write
,
319 .llseek
= default_llseek
,
322 static ssize_t
forced_ps_read(struct file
*file
, char __user
*user_buf
,
323 size_t count
, loff_t
*ppos
)
325 struct wl1271
*wl
= file
->private_data
;
327 return wl1271_format_buffer(user_buf
, count
,
329 wl
->conf
.conn
.forced_ps
);
332 static ssize_t
forced_ps_write(struct file
*file
,
333 const char __user
*user_buf
,
334 size_t count
, loff_t
*ppos
)
336 struct wl1271
*wl
= file
->private_data
;
337 struct wl12xx_vif
*wlvif
;
341 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
343 wl1271_warning("illegal value in forced_ps");
347 if (value
!= 1 && value
!= 0) {
348 wl1271_warning("forced_ps should be either 0 or 1");
352 mutex_lock(&wl
->mutex
);
354 if (wl
->conf
.conn
.forced_ps
== value
)
357 wl
->conf
.conn
.forced_ps
= value
;
359 if (unlikely(wl
->state
!= WLCORE_STATE_ON
))
362 ret
= wl1271_ps_elp_wakeup(wl
);
366 /* In case we're already in PSM, trigger it again to switch mode
367 * immediately without waiting for re-association
370 ps_mode
= value
? STATION_POWER_SAVE_MODE
: STATION_AUTO_PS_MODE
;
372 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
373 if (test_bit(WLVIF_FLAG_IN_PS
, &wlvif
->flags
))
374 wl1271_ps_set_mode(wl
, wlvif
, ps_mode
);
377 wl1271_ps_elp_sleep(wl
);
380 mutex_unlock(&wl
->mutex
);
384 static const struct file_operations forced_ps_ops
= {
385 .read
= forced_ps_read
,
386 .write
= forced_ps_write
,
388 .llseek
= default_llseek
,
391 static ssize_t
split_scan_timeout_read(struct file
*file
, char __user
*user_buf
,
392 size_t count
, loff_t
*ppos
)
394 struct wl1271
*wl
= file
->private_data
;
396 return wl1271_format_buffer(user_buf
, count
,
398 wl
->conf
.scan
.split_scan_timeout
/ 1000);
401 static ssize_t
split_scan_timeout_write(struct file
*file
,
402 const char __user
*user_buf
,
403 size_t count
, loff_t
*ppos
)
405 struct wl1271
*wl
= file
->private_data
;
409 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
411 wl1271_warning("illegal value in split_scan_timeout");
416 wl1271_info("split scan will be disabled");
418 mutex_lock(&wl
->mutex
);
420 wl
->conf
.scan
.split_scan_timeout
= value
* 1000;
422 mutex_unlock(&wl
->mutex
);
426 static const struct file_operations split_scan_timeout_ops
= {
427 .read
= split_scan_timeout_read
,
428 .write
= split_scan_timeout_write
,
430 .llseek
= default_llseek
,
433 static ssize_t
driver_state_read(struct file
*file
, char __user
*user_buf
,
434 size_t count
, loff_t
*ppos
)
436 struct wl1271
*wl
= file
->private_data
;
441 #define DRIVER_STATE_BUF_LEN 1024
443 buf
= kmalloc(DRIVER_STATE_BUF_LEN
, GFP_KERNEL
);
447 mutex_lock(&wl
->mutex
);
449 #define DRIVER_STATE_PRINT(x, fmt) \
450 (res += scnprintf(buf + res, DRIVER_STATE_BUF_LEN - res,\
451 #x " = " fmt "\n", wl->x))
453 #define DRIVER_STATE_PRINT_LONG(x) DRIVER_STATE_PRINT(x, "%ld")
454 #define DRIVER_STATE_PRINT_INT(x) DRIVER_STATE_PRINT(x, "%d")
455 #define DRIVER_STATE_PRINT_STR(x) DRIVER_STATE_PRINT(x, "%s")
456 #define DRIVER_STATE_PRINT_LHEX(x) DRIVER_STATE_PRINT(x, "0x%lx")
457 #define DRIVER_STATE_PRINT_HEX(x) DRIVER_STATE_PRINT(x, "0x%x")
459 DRIVER_STATE_PRINT_INT(tx_blocks_available
);
460 DRIVER_STATE_PRINT_INT(tx_allocated_blocks
);
461 DRIVER_STATE_PRINT_INT(tx_allocated_pkts
[0]);
462 DRIVER_STATE_PRINT_INT(tx_allocated_pkts
[1]);
463 DRIVER_STATE_PRINT_INT(tx_allocated_pkts
[2]);
464 DRIVER_STATE_PRINT_INT(tx_allocated_pkts
[3]);
465 DRIVER_STATE_PRINT_INT(tx_frames_cnt
);
466 DRIVER_STATE_PRINT_LHEX(tx_frames_map
[0]);
467 DRIVER_STATE_PRINT_INT(tx_queue_count
[0]);
468 DRIVER_STATE_PRINT_INT(tx_queue_count
[1]);
469 DRIVER_STATE_PRINT_INT(tx_queue_count
[2]);
470 DRIVER_STATE_PRINT_INT(tx_queue_count
[3]);
471 DRIVER_STATE_PRINT_INT(tx_packets_count
);
472 DRIVER_STATE_PRINT_INT(tx_results_count
);
473 DRIVER_STATE_PRINT_LHEX(flags
);
474 DRIVER_STATE_PRINT_INT(tx_blocks_freed
);
475 DRIVER_STATE_PRINT_INT(rx_counter
);
476 DRIVER_STATE_PRINT_INT(state
);
477 DRIVER_STATE_PRINT_INT(channel
);
478 DRIVER_STATE_PRINT_INT(band
);
479 DRIVER_STATE_PRINT_INT(power_level
);
480 DRIVER_STATE_PRINT_INT(sg_enabled
);
481 DRIVER_STATE_PRINT_INT(enable_11a
);
482 DRIVER_STATE_PRINT_INT(noise
);
483 DRIVER_STATE_PRINT_HEX(ap_fw_ps_map
);
484 DRIVER_STATE_PRINT_LHEX(ap_ps_map
);
485 DRIVER_STATE_PRINT_HEX(quirks
);
486 DRIVER_STATE_PRINT_HEX(irq
);
487 /* TODO: ref_clock and tcxo_clock were moved to wl12xx priv */
488 DRIVER_STATE_PRINT_HEX(hw_pg_ver
);
489 DRIVER_STATE_PRINT_HEX(platform_quirks
);
490 DRIVER_STATE_PRINT_HEX(chip
.id
);
491 DRIVER_STATE_PRINT_STR(chip
.fw_ver_str
);
492 DRIVER_STATE_PRINT_STR(chip
.phy_fw_ver_str
);
493 DRIVER_STATE_PRINT_INT(recovery_count
);
495 #undef DRIVER_STATE_PRINT_INT
496 #undef DRIVER_STATE_PRINT_LONG
497 #undef DRIVER_STATE_PRINT_HEX
498 #undef DRIVER_STATE_PRINT_LHEX
499 #undef DRIVER_STATE_PRINT_STR
500 #undef DRIVER_STATE_PRINT
501 #undef DRIVER_STATE_BUF_LEN
503 mutex_unlock(&wl
->mutex
);
505 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, res
);
510 static const struct file_operations driver_state_ops
= {
511 .read
= driver_state_read
,
513 .llseek
= default_llseek
,
516 static ssize_t
vifs_state_read(struct file
*file
, char __user
*user_buf
,
517 size_t count
, loff_t
*ppos
)
519 struct wl1271
*wl
= file
->private_data
;
520 struct wl12xx_vif
*wlvif
;
522 const int buf_size
= 4096;
526 buf
= kzalloc(buf_size
, GFP_KERNEL
);
530 mutex_lock(&wl
->mutex
);
532 #define VIF_STATE_PRINT(x, fmt) \
533 (res += scnprintf(buf + res, buf_size - res, \
534 #x " = " fmt "\n", wlvif->x))
536 #define VIF_STATE_PRINT_LONG(x) VIF_STATE_PRINT(x, "%ld")
537 #define VIF_STATE_PRINT_INT(x) VIF_STATE_PRINT(x, "%d")
538 #define VIF_STATE_PRINT_STR(x) VIF_STATE_PRINT(x, "%s")
539 #define VIF_STATE_PRINT_LHEX(x) VIF_STATE_PRINT(x, "0x%lx")
540 #define VIF_STATE_PRINT_LLHEX(x) VIF_STATE_PRINT(x, "0x%llx")
541 #define VIF_STATE_PRINT_HEX(x) VIF_STATE_PRINT(x, "0x%x")
543 #define VIF_STATE_PRINT_NSTR(x, len) \
545 memset(tmp_buf, 0, sizeof(tmp_buf)); \
546 memcpy(tmp_buf, wlvif->x, \
547 min_t(u8, len, sizeof(tmp_buf) - 1)); \
548 res += scnprintf(buf + res, buf_size - res, \
549 #x " = %s\n", tmp_buf); \
552 wl12xx_for_each_wlvif(wl
, wlvif
) {
553 VIF_STATE_PRINT_INT(role_id
);
554 VIF_STATE_PRINT_INT(bss_type
);
555 VIF_STATE_PRINT_LHEX(flags
);
556 VIF_STATE_PRINT_INT(p2p
);
557 VIF_STATE_PRINT_INT(dev_role_id
);
558 VIF_STATE_PRINT_INT(dev_hlid
);
560 if (wlvif
->bss_type
== BSS_TYPE_STA_BSS
||
561 wlvif
->bss_type
== BSS_TYPE_IBSS
) {
562 VIF_STATE_PRINT_INT(sta
.hlid
);
563 VIF_STATE_PRINT_INT(sta
.basic_rate_idx
);
564 VIF_STATE_PRINT_INT(sta
.ap_rate_idx
);
565 VIF_STATE_PRINT_INT(sta
.p2p_rate_idx
);
566 VIF_STATE_PRINT_INT(sta
.qos
);
568 VIF_STATE_PRINT_INT(ap
.global_hlid
);
569 VIF_STATE_PRINT_INT(ap
.bcast_hlid
);
570 VIF_STATE_PRINT_LHEX(ap
.sta_hlid_map
[0]);
571 VIF_STATE_PRINT_INT(ap
.mgmt_rate_idx
);
572 VIF_STATE_PRINT_INT(ap
.bcast_rate_idx
);
573 VIF_STATE_PRINT_INT(ap
.ucast_rate_idx
[0]);
574 VIF_STATE_PRINT_INT(ap
.ucast_rate_idx
[1]);
575 VIF_STATE_PRINT_INT(ap
.ucast_rate_idx
[2]);
576 VIF_STATE_PRINT_INT(ap
.ucast_rate_idx
[3]);
578 VIF_STATE_PRINT_INT(last_tx_hlid
);
579 VIF_STATE_PRINT_INT(tx_queue_count
[0]);
580 VIF_STATE_PRINT_INT(tx_queue_count
[1]);
581 VIF_STATE_PRINT_INT(tx_queue_count
[2]);
582 VIF_STATE_PRINT_INT(tx_queue_count
[3]);
583 VIF_STATE_PRINT_LHEX(links_map
[0]);
584 VIF_STATE_PRINT_NSTR(ssid
, wlvif
->ssid_len
);
585 VIF_STATE_PRINT_INT(band
);
586 VIF_STATE_PRINT_INT(channel
);
587 VIF_STATE_PRINT_HEX(bitrate_masks
[0]);
588 VIF_STATE_PRINT_HEX(bitrate_masks
[1]);
589 VIF_STATE_PRINT_HEX(basic_rate_set
);
590 VIF_STATE_PRINT_HEX(basic_rate
);
591 VIF_STATE_PRINT_HEX(rate_set
);
592 VIF_STATE_PRINT_INT(beacon_int
);
593 VIF_STATE_PRINT_INT(default_key
);
594 VIF_STATE_PRINT_INT(aid
);
595 VIF_STATE_PRINT_INT(psm_entry_retry
);
596 VIF_STATE_PRINT_INT(power_level
);
597 VIF_STATE_PRINT_INT(rssi_thold
);
598 VIF_STATE_PRINT_INT(last_rssi_event
);
599 VIF_STATE_PRINT_INT(ba_support
);
600 VIF_STATE_PRINT_INT(ba_allowed
);
601 VIF_STATE_PRINT_LLHEX(total_freed_pkts
);
604 #undef VIF_STATE_PRINT_INT
605 #undef VIF_STATE_PRINT_LONG
606 #undef VIF_STATE_PRINT_HEX
607 #undef VIF_STATE_PRINT_LHEX
608 #undef VIF_STATE_PRINT_LLHEX
609 #undef VIF_STATE_PRINT_STR
610 #undef VIF_STATE_PRINT_NSTR
611 #undef VIF_STATE_PRINT
613 mutex_unlock(&wl
->mutex
);
615 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, res
);
620 static const struct file_operations vifs_state_ops
= {
621 .read
= vifs_state_read
,
623 .llseek
= default_llseek
,
626 static ssize_t
dtim_interval_read(struct file
*file
, char __user
*user_buf
,
627 size_t count
, loff_t
*ppos
)
629 struct wl1271
*wl
= file
->private_data
;
632 if (wl
->conf
.conn
.wake_up_event
== CONF_WAKE_UP_EVENT_DTIM
||
633 wl
->conf
.conn
.wake_up_event
== CONF_WAKE_UP_EVENT_N_DTIM
)
634 value
= wl
->conf
.conn
.listen_interval
;
638 return wl1271_format_buffer(user_buf
, count
, ppos
, "%d\n", value
);
641 static ssize_t
dtim_interval_write(struct file
*file
,
642 const char __user
*user_buf
,
643 size_t count
, loff_t
*ppos
)
645 struct wl1271
*wl
= file
->private_data
;
649 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
651 wl1271_warning("illegal value for dtim_interval");
655 if (value
< 1 || value
> 10) {
656 wl1271_warning("dtim value is not in valid range");
660 mutex_lock(&wl
->mutex
);
662 wl
->conf
.conn
.listen_interval
= value
;
663 /* for some reason there are different event types for 1 and >1 */
665 wl
->conf
.conn
.wake_up_event
= CONF_WAKE_UP_EVENT_DTIM
;
667 wl
->conf
.conn
.wake_up_event
= CONF_WAKE_UP_EVENT_N_DTIM
;
670 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
671 * take effect on the next time we enter psm.
673 mutex_unlock(&wl
->mutex
);
677 static const struct file_operations dtim_interval_ops
= {
678 .read
= dtim_interval_read
,
679 .write
= dtim_interval_write
,
681 .llseek
= default_llseek
,
686 static ssize_t
suspend_dtim_interval_read(struct file
*file
,
687 char __user
*user_buf
,
688 size_t count
, loff_t
*ppos
)
690 struct wl1271
*wl
= file
->private_data
;
693 if (wl
->conf
.conn
.suspend_wake_up_event
== CONF_WAKE_UP_EVENT_DTIM
||
694 wl
->conf
.conn
.suspend_wake_up_event
== CONF_WAKE_UP_EVENT_N_DTIM
)
695 value
= wl
->conf
.conn
.suspend_listen_interval
;
699 return wl1271_format_buffer(user_buf
, count
, ppos
, "%d\n", value
);
702 static ssize_t
suspend_dtim_interval_write(struct file
*file
,
703 const char __user
*user_buf
,
704 size_t count
, loff_t
*ppos
)
706 struct wl1271
*wl
= file
->private_data
;
710 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
712 wl1271_warning("illegal value for suspend_dtim_interval");
716 if (value
< 1 || value
> 10) {
717 wl1271_warning("suspend_dtim value is not in valid range");
721 mutex_lock(&wl
->mutex
);
723 wl
->conf
.conn
.suspend_listen_interval
= value
;
724 /* for some reason there are different event types for 1 and >1 */
726 wl
->conf
.conn
.suspend_wake_up_event
= CONF_WAKE_UP_EVENT_DTIM
;
728 wl
->conf
.conn
.suspend_wake_up_event
= CONF_WAKE_UP_EVENT_N_DTIM
;
730 mutex_unlock(&wl
->mutex
);
735 static const struct file_operations suspend_dtim_interval_ops
= {
736 .read
= suspend_dtim_interval_read
,
737 .write
= suspend_dtim_interval_write
,
739 .llseek
= default_llseek
,
742 static ssize_t
beacon_interval_read(struct file
*file
, char __user
*user_buf
,
743 size_t count
, loff_t
*ppos
)
745 struct wl1271
*wl
= file
->private_data
;
748 if (wl
->conf
.conn
.wake_up_event
== CONF_WAKE_UP_EVENT_BEACON
||
749 wl
->conf
.conn
.wake_up_event
== CONF_WAKE_UP_EVENT_N_BEACONS
)
750 value
= wl
->conf
.conn
.listen_interval
;
754 return wl1271_format_buffer(user_buf
, count
, ppos
, "%d\n", value
);
757 static ssize_t
beacon_interval_write(struct file
*file
,
758 const char __user
*user_buf
,
759 size_t count
, loff_t
*ppos
)
761 struct wl1271
*wl
= file
->private_data
;
765 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
767 wl1271_warning("illegal value for beacon_interval");
771 if (value
< 1 || value
> 255) {
772 wl1271_warning("beacon interval value is not in valid range");
776 mutex_lock(&wl
->mutex
);
778 wl
->conf
.conn
.listen_interval
= value
;
779 /* for some reason there are different event types for 1 and >1 */
781 wl
->conf
.conn
.wake_up_event
= CONF_WAKE_UP_EVENT_BEACON
;
783 wl
->conf
.conn
.wake_up_event
= CONF_WAKE_UP_EVENT_N_BEACONS
;
786 * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only
787 * take effect on the next time we enter psm.
789 mutex_unlock(&wl
->mutex
);
793 static const struct file_operations beacon_interval_ops
= {
794 .read
= beacon_interval_read
,
795 .write
= beacon_interval_write
,
797 .llseek
= default_llseek
,
800 static ssize_t
rx_streaming_interval_write(struct file
*file
,
801 const char __user
*user_buf
,
802 size_t count
, loff_t
*ppos
)
804 struct wl1271
*wl
= file
->private_data
;
805 struct wl12xx_vif
*wlvif
;
809 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
811 wl1271_warning("illegal value in rx_streaming_interval!");
815 /* valid values: 0, 10-100 */
816 if (value
&& (value
< 10 || value
> 100)) {
817 wl1271_warning("value is not in range!");
821 mutex_lock(&wl
->mutex
);
823 wl
->conf
.rx_streaming
.interval
= value
;
825 ret
= wl1271_ps_elp_wakeup(wl
);
829 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
830 wl1271_recalc_rx_streaming(wl
, wlvif
);
833 wl1271_ps_elp_sleep(wl
);
835 mutex_unlock(&wl
->mutex
);
839 static ssize_t
rx_streaming_interval_read(struct file
*file
,
840 char __user
*userbuf
,
841 size_t count
, loff_t
*ppos
)
843 struct wl1271
*wl
= file
->private_data
;
844 return wl1271_format_buffer(userbuf
, count
, ppos
,
845 "%d\n", wl
->conf
.rx_streaming
.interval
);
848 static const struct file_operations rx_streaming_interval_ops
= {
849 .read
= rx_streaming_interval_read
,
850 .write
= rx_streaming_interval_write
,
852 .llseek
= default_llseek
,
855 static ssize_t
rx_streaming_always_write(struct file
*file
,
856 const char __user
*user_buf
,
857 size_t count
, loff_t
*ppos
)
859 struct wl1271
*wl
= file
->private_data
;
860 struct wl12xx_vif
*wlvif
;
864 ret
= kstrtoul_from_user(user_buf
, count
, 10, &value
);
866 wl1271_warning("illegal value in rx_streaming_write!");
870 /* valid values: 0, 10-100 */
871 if (!(value
== 0 || value
== 1)) {
872 wl1271_warning("value is not in valid!");
876 mutex_lock(&wl
->mutex
);
878 wl
->conf
.rx_streaming
.always
= value
;
880 ret
= wl1271_ps_elp_wakeup(wl
);
884 wl12xx_for_each_wlvif_sta(wl
, wlvif
) {
885 wl1271_recalc_rx_streaming(wl
, wlvif
);
888 wl1271_ps_elp_sleep(wl
);
890 mutex_unlock(&wl
->mutex
);
894 static ssize_t
rx_streaming_always_read(struct file
*file
,
895 char __user
*userbuf
,
896 size_t count
, loff_t
*ppos
)
898 struct wl1271
*wl
= file
->private_data
;
899 return wl1271_format_buffer(userbuf
, count
, ppos
,
900 "%d\n", wl
->conf
.rx_streaming
.always
);
903 static const struct file_operations rx_streaming_always_ops
= {
904 .read
= rx_streaming_always_read
,
905 .write
= rx_streaming_always_write
,
907 .llseek
= default_llseek
,
910 static ssize_t
beacon_filtering_write(struct file
*file
,
911 const char __user
*user_buf
,
912 size_t count
, loff_t
*ppos
)
914 struct wl1271
*wl
= file
->private_data
;
915 struct wl12xx_vif
*wlvif
;
921 len
= min(count
, sizeof(buf
) - 1);
922 if (copy_from_user(buf
, user_buf
, len
))
926 ret
= kstrtoul(buf
, 0, &value
);
928 wl1271_warning("illegal value for beacon_filtering!");
932 mutex_lock(&wl
->mutex
);
934 ret
= wl1271_ps_elp_wakeup(wl
);
938 wl12xx_for_each_wlvif(wl
, wlvif
) {
939 ret
= wl1271_acx_beacon_filter_opt(wl
, wlvif
, !!value
);
942 wl1271_ps_elp_sleep(wl
);
944 mutex_unlock(&wl
->mutex
);
948 static const struct file_operations beacon_filtering_ops
= {
949 .write
= beacon_filtering_write
,
951 .llseek
= default_llseek
,
954 static ssize_t
fw_stats_raw_read(struct file
*file
,
955 char __user
*userbuf
,
956 size_t count
, loff_t
*ppos
)
958 struct wl1271
*wl
= file
->private_data
;
960 wl1271_debugfs_update_stats(wl
);
962 return simple_read_from_buffer(userbuf
, count
, ppos
,
964 wl
->stats
.fw_stats_len
);
967 static const struct file_operations fw_stats_raw_ops
= {
968 .read
= fw_stats_raw_read
,
970 .llseek
= default_llseek
,
973 static ssize_t
sleep_auth_read(struct file
*file
, char __user
*user_buf
,
974 size_t count
, loff_t
*ppos
)
976 struct wl1271
*wl
= file
->private_data
;
978 return wl1271_format_buffer(user_buf
, count
,
983 static ssize_t
sleep_auth_write(struct file
*file
,
984 const char __user
*user_buf
,
985 size_t count
, loff_t
*ppos
)
987 struct wl1271
*wl
= file
->private_data
;
991 ret
= kstrtoul_from_user(user_buf
, count
, 0, &value
);
993 wl1271_warning("illegal value in sleep_auth");
997 if (value
> WL1271_PSM_MAX
) {
998 wl1271_warning("sleep_auth must be between 0 and %d",
1003 mutex_lock(&wl
->mutex
);
1005 wl
->conf
.conn
.sta_sleep_auth
= value
;
1007 if (unlikely(wl
->state
!= WLCORE_STATE_ON
)) {
1008 /* this will show up on "read" in case we are off */
1009 wl
->sleep_auth
= value
;
1013 ret
= wl1271_ps_elp_wakeup(wl
);
1017 ret
= wl1271_acx_sleep_auth(wl
, value
);
1022 wl1271_ps_elp_sleep(wl
);
1024 mutex_unlock(&wl
->mutex
);
1028 static const struct file_operations sleep_auth_ops
= {
1029 .read
= sleep_auth_read
,
1030 .write
= sleep_auth_write
,
1031 .open
= simple_open
,
1032 .llseek
= default_llseek
,
1035 static ssize_t
dev_mem_read(struct file
*file
,
1036 char __user
*user_buf
, size_t count
,
1039 struct wl1271
*wl
= file
->private_data
;
1040 struct wlcore_partition_set part
, old_part
;
1041 size_t bytes
= count
;
1045 /* only requests of dword-aligned size and offset are supported */
1052 /* function should return in reasonable time */
1053 bytes
= min(bytes
, WLCORE_MAX_BLOCK_SIZE
);
1058 memset(&part
, 0, sizeof(part
));
1059 part
.mem
.start
= *ppos
;
1060 part
.mem
.size
= bytes
;
1062 buf
= kmalloc(bytes
, GFP_KERNEL
);
1066 mutex_lock(&wl
->mutex
);
1068 if (unlikely(wl
->state
== WLCORE_STATE_OFF
)) {
1074 * Don't fail if elp_wakeup returns an error, so the device's memory
1075 * could be read even if the FW crashed
1077 wl1271_ps_elp_wakeup(wl
);
1079 /* store current partition and switch partition */
1080 memcpy(&old_part
, &wl
->curr_part
, sizeof(old_part
));
1081 ret
= wlcore_set_partition(wl
, &part
);
1085 ret
= wlcore_raw_read(wl
, 0, buf
, bytes
, false);
1090 /* recover partition */
1091 ret
= wlcore_set_partition(wl
, &old_part
);
1096 wl1271_ps_elp_sleep(wl
);
1099 mutex_unlock(&wl
->mutex
);
1102 ret
= copy_to_user(user_buf
, buf
, bytes
);
1114 return ((ret
== 0) ? bytes
: ret
);
1117 static ssize_t
dev_mem_write(struct file
*file
, const char __user
*user_buf
,
1118 size_t count
, loff_t
*ppos
)
1120 struct wl1271
*wl
= file
->private_data
;
1121 struct wlcore_partition_set part
, old_part
;
1122 size_t bytes
= count
;
1126 /* only requests of dword-aligned size and offset are supported */
1133 /* function should return in reasonable time */
1134 bytes
= min(bytes
, WLCORE_MAX_BLOCK_SIZE
);
1139 memset(&part
, 0, sizeof(part
));
1140 part
.mem
.start
= *ppos
;
1141 part
.mem
.size
= bytes
;
1143 buf
= kmalloc(bytes
, GFP_KERNEL
);
1147 ret
= copy_from_user(buf
, user_buf
, bytes
);
1153 mutex_lock(&wl
->mutex
);
1155 if (unlikely(wl
->state
== WLCORE_STATE_OFF
)) {
1161 * Don't fail if elp_wakeup returns an error, so the device's memory
1162 * could be read even if the FW crashed
1164 wl1271_ps_elp_wakeup(wl
);
1166 /* store current partition and switch partition */
1167 memcpy(&old_part
, &wl
->curr_part
, sizeof(old_part
));
1168 ret
= wlcore_set_partition(wl
, &part
);
1172 ret
= wlcore_raw_write(wl
, 0, buf
, bytes
, false);
1177 /* recover partition */
1178 ret
= wlcore_set_partition(wl
, &old_part
);
1183 wl1271_ps_elp_sleep(wl
);
1186 mutex_unlock(&wl
->mutex
);
1194 return ((ret
== 0) ? bytes
: ret
);
1197 static loff_t
dev_mem_seek(struct file
*file
, loff_t offset
, int orig
)
1201 /* only requests of dword-aligned size and offset are supported */
1207 file
->f_pos
= offset
;
1211 file
->f_pos
+= offset
;
1221 static const struct file_operations dev_mem_ops
= {
1222 .open
= simple_open
,
1223 .read
= dev_mem_read
,
1224 .write
= dev_mem_write
,
1225 .llseek
= dev_mem_seek
,
1228 static int wl1271_debugfs_add_files(struct wl1271
*wl
,
1229 struct dentry
*rootdir
)
1232 struct dentry
*entry
, *streaming
;
1234 DEBUGFS_ADD(tx_queue_len
, rootdir
);
1235 DEBUGFS_ADD(retry_count
, rootdir
);
1236 DEBUGFS_ADD(excessive_retries
, rootdir
);
1238 DEBUGFS_ADD(gpio_power
, rootdir
);
1239 DEBUGFS_ADD(start_recovery
, rootdir
);
1240 DEBUGFS_ADD(driver_state
, rootdir
);
1241 DEBUGFS_ADD(vifs_state
, rootdir
);
1242 DEBUGFS_ADD(dtim_interval
, rootdir
);
1243 DEBUGFS_ADD(suspend_dtim_interval
, rootdir
);
1244 DEBUGFS_ADD(beacon_interval
, rootdir
);
1245 DEBUGFS_ADD(beacon_filtering
, rootdir
);
1246 DEBUGFS_ADD(dynamic_ps_timeout
, rootdir
);
1247 DEBUGFS_ADD(forced_ps
, rootdir
);
1248 DEBUGFS_ADD(split_scan_timeout
, rootdir
);
1249 DEBUGFS_ADD(irq_pkt_threshold
, rootdir
);
1250 DEBUGFS_ADD(irq_blk_threshold
, rootdir
);
1251 DEBUGFS_ADD(irq_timeout
, rootdir
);
1252 DEBUGFS_ADD(fw_stats_raw
, rootdir
);
1253 DEBUGFS_ADD(sleep_auth
, rootdir
);
1255 streaming
= debugfs_create_dir("rx_streaming", rootdir
);
1256 if (!streaming
|| IS_ERR(streaming
))
1259 DEBUGFS_ADD_PREFIX(rx_streaming
, interval
, streaming
);
1260 DEBUGFS_ADD_PREFIX(rx_streaming
, always
, streaming
);
1262 DEBUGFS_ADD_PREFIX(dev
, mem
, rootdir
);
1268 ret
= PTR_ERR(entry
);
1275 void wl1271_debugfs_reset(struct wl1271
*wl
)
1277 if (!wl
->stats
.fw_stats
)
1280 memset(wl
->stats
.fw_stats
, 0, wl
->stats
.fw_stats_len
);
1281 wl
->stats
.retry_count
= 0;
1282 wl
->stats
.excessive_retries
= 0;
1285 int wl1271_debugfs_init(struct wl1271
*wl
)
1288 struct dentry
*rootdir
;
1290 rootdir
= debugfs_create_dir(KBUILD_MODNAME
,
1291 wl
->hw
->wiphy
->debugfsdir
);
1293 if (IS_ERR(rootdir
)) {
1294 ret
= PTR_ERR(rootdir
);
1298 wl
->stats
.fw_stats
= kzalloc(wl
->stats
.fw_stats_len
, GFP_KERNEL
);
1299 if (!wl
->stats
.fw_stats
) {
1304 wl
->stats
.fw_stats_update
= jiffies
;
1306 ret
= wl1271_debugfs_add_files(wl
, rootdir
);
1310 ret
= wlcore_debugfs_init(wl
, rootdir
);
1317 wl1271_debugfs_exit(wl
);
1320 debugfs_remove_recursive(rootdir
);
1326 void wl1271_debugfs_exit(struct wl1271
*wl
)
1328 kfree(wl
->stats
.fw_stats
);
1329 wl
->stats
.fw_stats
= NULL
;