Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 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 Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 24 | #include "debugfs.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 25 | |
| 26 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 28 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 29 | #include "wl12xx.h" |
Luciano Coelho | 0f4e312 | 2011-10-07 11:02:42 +0300 | [diff] [blame] | 30 | #include "debug.h" |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 31 | #include "acx.h" |
| 32 | #include "ps.h" |
| 33 | #include "io.h" |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 34 | #include "tx.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 35 | |
| 36 | /* ms */ |
| 37 | #define WL1271_DEBUGFS_STATS_LIFETIME 1000 |
| 38 | |
| 39 | /* debugfs macros idea from mac80211 */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 40 | #define DEBUGFS_FORMAT_BUFFER_SIZE 100 |
| 41 | static 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 47 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 48 | 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 56 | static 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 Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 60 | return wl1271_format_buffer(userbuf, count, ppos, \ |
| 61 | fmt "\n", ##value); \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 62 | } \ |
| 63 | \ |
| 64 | static const struct file_operations name## _ops = { \ |
| 65 | .read = name## _read, \ |
| 66 | .open = wl1271_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 67 | .llseek = generic_file_llseek, \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | #define DEBUGFS_ADD(name, parent) \ |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 71 | entry = debugfs_create_file(#name, 0400, parent, \ |
| 72 | wl, &name## _ops); \ |
| 73 | if (!entry || IS_ERR(entry)) \ |
| 74 | goto err; \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 75 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 76 | #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 Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 84 | #define DEBUGFS_FWSTATS_FILE(sub, name, fmt) \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 85 | static 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 Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 90 | \ |
| 91 | wl1271_debugfs_update_stats(wl); \ |
| 92 | \ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 93 | return wl1271_format_buffer(userbuf, count, ppos, fmt "\n", \ |
| 94 | wl->stats.fw_stats->sub.name); \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 95 | } \ |
| 96 | \ |
| 97 | static const struct file_operations sub## _ ##name## _ops = { \ |
| 98 | .read = sub## _ ##name## _read, \ |
| 99 | .open = wl1271_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 100 | .llseek = generic_file_llseek, \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | #define DEBUGFS_FWSTATS_ADD(sub, name) \ |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 104 | DEBUGFS_ADD(sub## _ ##name, stats) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 105 | |
| 106 | static void wl1271_debugfs_update_stats(struct wl1271 *wl) |
| 107 | { |
| 108 | int ret; |
| 109 | |
| 110 | mutex_lock(&wl->mutex); |
| 111 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 112 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 113 | 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 | |
| 125 | out: |
| 126 | mutex_unlock(&wl->mutex); |
| 127 | } |
| 128 | |
| 129 | static 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 Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 135 | DEBUGFS_FWSTATS_FILE(tx, internal_desc_overflow, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 136 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 137 | DEBUGFS_FWSTATS_FILE(rx, out_of_mem, "%u"); |
| 138 | DEBUGFS_FWSTATS_FILE(rx, hdr_overflow, "%u"); |
| 139 | DEBUGFS_FWSTATS_FILE(rx, hw_stuck, "%u"); |
| 140 | DEBUGFS_FWSTATS_FILE(rx, dropped, "%u"); |
| 141 | DEBUGFS_FWSTATS_FILE(rx, fcs_err, "%u"); |
| 142 | DEBUGFS_FWSTATS_FILE(rx, xfr_hint_trig, "%u"); |
| 143 | DEBUGFS_FWSTATS_FILE(rx, path_reset, "%u"); |
| 144 | DEBUGFS_FWSTATS_FILE(rx, reset_counter, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 145 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 146 | DEBUGFS_FWSTATS_FILE(dma, rx_requested, "%u"); |
| 147 | DEBUGFS_FWSTATS_FILE(dma, rx_errors, "%u"); |
| 148 | DEBUGFS_FWSTATS_FILE(dma, tx_requested, "%u"); |
| 149 | DEBUGFS_FWSTATS_FILE(dma, tx_errors, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 150 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 151 | DEBUGFS_FWSTATS_FILE(isr, cmd_cmplt, "%u"); |
| 152 | DEBUGFS_FWSTATS_FILE(isr, fiqs, "%u"); |
| 153 | DEBUGFS_FWSTATS_FILE(isr, rx_headers, "%u"); |
| 154 | DEBUGFS_FWSTATS_FILE(isr, rx_mem_overflow, "%u"); |
| 155 | DEBUGFS_FWSTATS_FILE(isr, rx_rdys, "%u"); |
| 156 | DEBUGFS_FWSTATS_FILE(isr, irqs, "%u"); |
| 157 | DEBUGFS_FWSTATS_FILE(isr, tx_procs, "%u"); |
| 158 | DEBUGFS_FWSTATS_FILE(isr, decrypt_done, "%u"); |
| 159 | DEBUGFS_FWSTATS_FILE(isr, dma0_done, "%u"); |
| 160 | DEBUGFS_FWSTATS_FILE(isr, dma1_done, "%u"); |
| 161 | DEBUGFS_FWSTATS_FILE(isr, tx_exch_complete, "%u"); |
| 162 | DEBUGFS_FWSTATS_FILE(isr, commands, "%u"); |
| 163 | DEBUGFS_FWSTATS_FILE(isr, rx_procs, "%u"); |
| 164 | DEBUGFS_FWSTATS_FILE(isr, hw_pm_mode_changes, "%u"); |
| 165 | DEBUGFS_FWSTATS_FILE(isr, host_acknowledges, "%u"); |
| 166 | DEBUGFS_FWSTATS_FILE(isr, pci_pm, "%u"); |
| 167 | DEBUGFS_FWSTATS_FILE(isr, wakeups, "%u"); |
| 168 | DEBUGFS_FWSTATS_FILE(isr, low_rssi, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 169 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 170 | DEBUGFS_FWSTATS_FILE(wep, addr_key_count, "%u"); |
| 171 | DEBUGFS_FWSTATS_FILE(wep, default_key_count, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 172 | /* skipping wep.reserved */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 173 | DEBUGFS_FWSTATS_FILE(wep, key_not_found, "%u"); |
| 174 | DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, "%u"); |
| 175 | DEBUGFS_FWSTATS_FILE(wep, packets, "%u"); |
| 176 | DEBUGFS_FWSTATS_FILE(wep, interrupt, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 177 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 178 | DEBUGFS_FWSTATS_FILE(pwr, ps_enter, "%u"); |
| 179 | DEBUGFS_FWSTATS_FILE(pwr, elp_enter, "%u"); |
| 180 | DEBUGFS_FWSTATS_FILE(pwr, missing_bcns, "%u"); |
| 181 | DEBUGFS_FWSTATS_FILE(pwr, wake_on_host, "%u"); |
| 182 | DEBUGFS_FWSTATS_FILE(pwr, wake_on_timer_exp, "%u"); |
| 183 | DEBUGFS_FWSTATS_FILE(pwr, tx_with_ps, "%u"); |
| 184 | DEBUGFS_FWSTATS_FILE(pwr, tx_without_ps, "%u"); |
| 185 | DEBUGFS_FWSTATS_FILE(pwr, rcvd_beacons, "%u"); |
| 186 | DEBUGFS_FWSTATS_FILE(pwr, power_save_off, "%u"); |
| 187 | DEBUGFS_FWSTATS_FILE(pwr, enable_ps, "%u"); |
| 188 | DEBUGFS_FWSTATS_FILE(pwr, disable_ps, "%u"); |
| 189 | DEBUGFS_FWSTATS_FILE(pwr, fix_tsf_ps, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 190 | /* skipping cont_miss_bcns_spread for now */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 191 | DEBUGFS_FWSTATS_FILE(pwr, rcvd_awake_beacons, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 192 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 193 | DEBUGFS_FWSTATS_FILE(mic, rx_pkts, "%u"); |
| 194 | DEBUGFS_FWSTATS_FILE(mic, calc_failure, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 195 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 196 | DEBUGFS_FWSTATS_FILE(aes, encrypt_fail, "%u"); |
| 197 | DEBUGFS_FWSTATS_FILE(aes, decrypt_fail, "%u"); |
| 198 | DEBUGFS_FWSTATS_FILE(aes, encrypt_packets, "%u"); |
| 199 | DEBUGFS_FWSTATS_FILE(aes, decrypt_packets, "%u"); |
| 200 | DEBUGFS_FWSTATS_FILE(aes, encrypt_interrupt, "%u"); |
| 201 | DEBUGFS_FWSTATS_FILE(aes, decrypt_interrupt, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 202 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 203 | DEBUGFS_FWSTATS_FILE(event, heart_beat, "%u"); |
| 204 | DEBUGFS_FWSTATS_FILE(event, calibration, "%u"); |
| 205 | DEBUGFS_FWSTATS_FILE(event, rx_mismatch, "%u"); |
| 206 | DEBUGFS_FWSTATS_FILE(event, rx_mem_empty, "%u"); |
| 207 | DEBUGFS_FWSTATS_FILE(event, rx_pool, "%u"); |
| 208 | DEBUGFS_FWSTATS_FILE(event, oom_late, "%u"); |
| 209 | DEBUGFS_FWSTATS_FILE(event, phy_transmit_error, "%u"); |
| 210 | DEBUGFS_FWSTATS_FILE(event, tx_stuck, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 211 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 212 | DEBUGFS_FWSTATS_FILE(ps, pspoll_timeouts, "%u"); |
| 213 | DEBUGFS_FWSTATS_FILE(ps, upsd_timeouts, "%u"); |
| 214 | DEBUGFS_FWSTATS_FILE(ps, upsd_max_sptime, "%u"); |
| 215 | DEBUGFS_FWSTATS_FILE(ps, upsd_max_apturn, "%u"); |
| 216 | DEBUGFS_FWSTATS_FILE(ps, pspoll_max_apturn, "%u"); |
| 217 | DEBUGFS_FWSTATS_FILE(ps, pspoll_utilization, "%u"); |
| 218 | DEBUGFS_FWSTATS_FILE(ps, upsd_utilization, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 219 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 220 | DEBUGFS_FWSTATS_FILE(rxpipe, rx_prep_beacon_drop, "%u"); |
| 221 | DEBUGFS_FWSTATS_FILE(rxpipe, descr_host_int_trig_rx_data, "%u"); |
| 222 | DEBUGFS_FWSTATS_FILE(rxpipe, beacon_buffer_thres_host_int_trig_rx_data, "%u"); |
| 223 | DEBUGFS_FWSTATS_FILE(rxpipe, missed_beacon_host_int_trig_rx_data, "%u"); |
| 224 | DEBUGFS_FWSTATS_FILE(rxpipe, tx_xfr_host_int_trig_rx_data, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 225 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 226 | DEBUGFS_READONLY_FILE(retry_count, "%u", wl->stats.retry_count); |
| 227 | DEBUGFS_READONLY_FILE(excessive_retries, "%u", |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 228 | wl->stats.excessive_retries); |
| 229 | |
| 230 | static 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 Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 238 | queue_len = wl1271_tx_total_queue_count(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 239 | |
| 240 | res = scnprintf(buf, sizeof(buf), "%u\n", queue_len); |
| 241 | return simple_read_from_buffer(userbuf, count, ppos, buf, res); |
| 242 | } |
| 243 | |
| 244 | static const struct file_operations tx_queue_len_ops = { |
| 245 | .read = tx_queue_len_read, |
| 246 | .open = wl1271_open_file_generic, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 247 | .llseek = default_llseek, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 248 | }; |
| 249 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 250 | static 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 Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 254 | bool state = test_bit(WL1271_FLAG_GPIO_POWER, &wl->flags); |
| 255 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 256 | int res; |
| 257 | char buf[10]; |
| 258 | |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 259 | res = scnprintf(buf, sizeof(buf), "%d\n", state); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 260 | |
| 261 | return simple_read_from_buffer(user_buf, count, ppos, buf, res); |
| 262 | } |
| 263 | |
| 264 | static 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 Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 269 | unsigned long value; |
| 270 | int ret; |
| 271 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 272 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 273 | if (ret < 0) { |
| 274 | wl1271_warning("illegal value in gpio_power"); |
Eliad Peller | 8e2de74 | 2011-01-23 11:25:27 +0100 | [diff] [blame] | 275 | return -EINVAL; |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 276 | } |
| 277 | |
Eliad Peller | 8e2de74 | 2011-01-23 11:25:27 +0100 | [diff] [blame] | 278 | mutex_lock(&wl->mutex); |
| 279 | |
Teemu Paasikivi | becd551 | 2010-03-18 12:26:27 +0200 | [diff] [blame] | 280 | if (value) |
| 281 | wl1271_power_on(wl); |
| 282 | else |
| 283 | wl1271_power_off(wl); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 284 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 285 | mutex_unlock(&wl->mutex); |
| 286 | return count; |
| 287 | } |
| 288 | |
| 289 | static const struct file_operations gpio_power_ops = { |
| 290 | .read = gpio_power_read, |
| 291 | .write = gpio_power_write, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 292 | .open = wl1271_open_file_generic, |
| 293 | .llseek = default_llseek, |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 294 | }; |
| 295 | |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 296 | static 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 Yariv | baacb9ae | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 303 | wl12xx_queue_recovery_work(wl); |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 304 | mutex_unlock(&wl->mutex); |
| 305 | |
| 306 | return count; |
| 307 | } |
| 308 | |
| 309 | static const struct file_operations start_recovery_ops = { |
| 310 | .write = start_recovery_write, |
| 311 | .open = wl1271_open_file_generic, |
| 312 | .llseek = default_llseek, |
| 313 | }; |
| 314 | |
Eyal Shapira | 1faff89 | 2012-01-31 11:57:22 +0200 | [diff] [blame] | 315 | static ssize_t dynamic_ps_timeout_read(struct file *file, char __user *user_buf, |
| 316 | size_t count, loff_t *ppos) |
| 317 | { |
| 318 | struct wl1271 *wl = file->private_data; |
| 319 | |
| 320 | return wl1271_format_buffer(user_buf, count, |
| 321 | ppos, "%d\n", |
| 322 | wl->conf.conn.dynamic_ps_timeout); |
| 323 | } |
| 324 | |
| 325 | static ssize_t dynamic_ps_timeout_write(struct file *file, |
| 326 | const char __user *user_buf, |
| 327 | size_t count, loff_t *ppos) |
| 328 | { |
| 329 | struct wl1271 *wl = file->private_data; |
| 330 | struct wl12xx_vif *wlvif; |
| 331 | unsigned long value; |
| 332 | int ret; |
| 333 | |
| 334 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
| 335 | if (ret < 0) { |
| 336 | wl1271_warning("illegal value in dynamic_ps"); |
| 337 | return -EINVAL; |
| 338 | } |
| 339 | |
| 340 | if (value < 1 || value > 65535) { |
| 341 | wl1271_warning("dyanmic_ps_timeout is not in valid range"); |
| 342 | return -ERANGE; |
| 343 | } |
| 344 | |
| 345 | mutex_lock(&wl->mutex); |
| 346 | |
| 347 | wl->conf.conn.dynamic_ps_timeout = value; |
| 348 | |
| 349 | if (wl->state == WL1271_STATE_OFF) |
| 350 | goto out; |
| 351 | |
| 352 | ret = wl1271_ps_elp_wakeup(wl); |
| 353 | if (ret < 0) |
| 354 | goto out; |
| 355 | |
| 356 | /* In case we're already in PSM, trigger it again to set new timeout |
| 357 | * immediately without waiting for re-association |
| 358 | */ |
| 359 | |
| 360 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
Eyal Shapira | 5c0dc2f | 2012-02-02 19:06:45 +0200 | [diff] [blame] | 361 | if (test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags)) |
Eyal Shapira | 248a001 | 2012-01-31 11:57:23 +0200 | [diff] [blame] | 362 | wl1271_ps_set_mode(wl, wlvif, STATION_AUTO_PS_MODE); |
Eyal Shapira | 1faff89 | 2012-01-31 11:57:22 +0200 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | wl1271_ps_elp_sleep(wl); |
| 366 | |
| 367 | out: |
| 368 | mutex_unlock(&wl->mutex); |
| 369 | return count; |
| 370 | } |
| 371 | |
| 372 | static const struct file_operations dynamic_ps_timeout_ops = { |
| 373 | .read = dynamic_ps_timeout_read, |
| 374 | .write = dynamic_ps_timeout_write, |
| 375 | .open = wl1271_open_file_generic, |
| 376 | .llseek = default_llseek, |
| 377 | }; |
| 378 | |
Eyal Shapira | 20ae7e5 | 2012-02-02 12:03:42 +0200 | [diff] [blame] | 379 | static ssize_t forced_ps_read(struct file *file, char __user *user_buf, |
| 380 | size_t count, loff_t *ppos) |
| 381 | { |
| 382 | struct wl1271 *wl = file->private_data; |
| 383 | |
| 384 | return wl1271_format_buffer(user_buf, count, |
| 385 | ppos, "%d\n", |
| 386 | wl->conf.conn.forced_ps); |
| 387 | } |
| 388 | |
| 389 | static ssize_t forced_ps_write(struct file *file, |
| 390 | const char __user *user_buf, |
| 391 | size_t count, loff_t *ppos) |
| 392 | { |
| 393 | struct wl1271 *wl = file->private_data; |
| 394 | struct wl12xx_vif *wlvif; |
| 395 | unsigned long value; |
| 396 | int ret, ps_mode; |
| 397 | |
| 398 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
| 399 | if (ret < 0) { |
| 400 | wl1271_warning("illegal value in forced_ps"); |
| 401 | return -EINVAL; |
| 402 | } |
| 403 | |
| 404 | if (value != 1 && value != 0) { |
| 405 | wl1271_warning("forced_ps should be either 0 or 1"); |
| 406 | return -ERANGE; |
| 407 | } |
| 408 | |
| 409 | mutex_lock(&wl->mutex); |
| 410 | |
| 411 | if (wl->conf.conn.forced_ps == value) |
| 412 | goto out; |
| 413 | |
| 414 | wl->conf.conn.forced_ps = value; |
| 415 | |
| 416 | if (wl->state == WL1271_STATE_OFF) |
| 417 | goto out; |
| 418 | |
| 419 | ret = wl1271_ps_elp_wakeup(wl); |
| 420 | if (ret < 0) |
| 421 | goto out; |
| 422 | |
| 423 | /* In case we're already in PSM, trigger it again to switch mode |
| 424 | * immediately without waiting for re-association |
| 425 | */ |
| 426 | |
| 427 | ps_mode = value ? STATION_POWER_SAVE_MODE : STATION_AUTO_PS_MODE; |
| 428 | |
| 429 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 430 | if (test_bit(WLVIF_FLAG_IN_PS, &wlvif->flags)) |
| 431 | wl1271_ps_set_mode(wl, wlvif, ps_mode); |
| 432 | } |
| 433 | |
| 434 | wl1271_ps_elp_sleep(wl); |
| 435 | |
| 436 | out: |
| 437 | mutex_unlock(&wl->mutex); |
| 438 | return count; |
| 439 | } |
| 440 | |
| 441 | static const struct file_operations forced_ps_ops = { |
| 442 | .read = forced_ps_read, |
| 443 | .write = forced_ps_write, |
| 444 | .open = wl1271_open_file_generic, |
| 445 | .llseek = default_llseek, |
| 446 | }; |
| 447 | |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 448 | static ssize_t driver_state_read(struct file *file, char __user *user_buf, |
| 449 | size_t count, loff_t *ppos) |
| 450 | { |
| 451 | struct wl1271 *wl = file->private_data; |
| 452 | int res = 0; |
Luciano Coelho | c99f895 | 2011-12-15 14:58:08 +0200 | [diff] [blame] | 453 | ssize_t ret; |
| 454 | char *buf; |
| 455 | |
| 456 | #define DRIVER_STATE_BUF_LEN 1024 |
| 457 | |
| 458 | buf = kmalloc(DRIVER_STATE_BUF_LEN, GFP_KERNEL); |
| 459 | if (!buf) |
| 460 | return -ENOMEM; |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 461 | |
| 462 | mutex_lock(&wl->mutex); |
| 463 | |
| 464 | #define DRIVER_STATE_PRINT(x, fmt) \ |
Luciano Coelho | c99f895 | 2011-12-15 14:58:08 +0200 | [diff] [blame] | 465 | (res += scnprintf(buf + res, DRIVER_STATE_BUF_LEN - res,\ |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 466 | #x " = " fmt "\n", wl->x)) |
| 467 | |
| 468 | #define DRIVER_STATE_PRINT_LONG(x) DRIVER_STATE_PRINT(x, "%ld") |
| 469 | #define DRIVER_STATE_PRINT_INT(x) DRIVER_STATE_PRINT(x, "%d") |
| 470 | #define DRIVER_STATE_PRINT_STR(x) DRIVER_STATE_PRINT(x, "%s") |
| 471 | #define DRIVER_STATE_PRINT_LHEX(x) DRIVER_STATE_PRINT(x, "0x%lx") |
| 472 | #define DRIVER_STATE_PRINT_HEX(x) DRIVER_STATE_PRINT(x, "0x%x") |
| 473 | |
| 474 | DRIVER_STATE_PRINT_INT(tx_blocks_available); |
Arik Nemtsov | 7bb5d6c | 2011-08-14 13:17:00 +0300 | [diff] [blame] | 475 | DRIVER_STATE_PRINT_INT(tx_allocated_blocks); |
Arik Nemtsov | 742246f | 2011-08-14 13:17:33 +0300 | [diff] [blame] | 476 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[0]); |
| 477 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[1]); |
| 478 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[2]); |
| 479 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[3]); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 480 | DRIVER_STATE_PRINT_INT(tx_frames_cnt); |
| 481 | DRIVER_STATE_PRINT_LHEX(tx_frames_map[0]); |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 482 | DRIVER_STATE_PRINT_INT(tx_queue_count[0]); |
| 483 | DRIVER_STATE_PRINT_INT(tx_queue_count[1]); |
| 484 | DRIVER_STATE_PRINT_INT(tx_queue_count[2]); |
| 485 | DRIVER_STATE_PRINT_INT(tx_queue_count[3]); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 486 | DRIVER_STATE_PRINT_INT(tx_packets_count); |
| 487 | DRIVER_STATE_PRINT_INT(tx_results_count); |
| 488 | DRIVER_STATE_PRINT_LHEX(flags); |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 489 | DRIVER_STATE_PRINT_INT(tx_blocks_freed); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 490 | DRIVER_STATE_PRINT_INT(rx_counter); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 491 | DRIVER_STATE_PRINT_INT(state); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 492 | DRIVER_STATE_PRINT_INT(channel); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 493 | DRIVER_STATE_PRINT_INT(band); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 494 | DRIVER_STATE_PRINT_INT(power_level); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 495 | DRIVER_STATE_PRINT_INT(sg_enabled); |
| 496 | DRIVER_STATE_PRINT_INT(enable_11a); |
| 497 | DRIVER_STATE_PRINT_INT(noise); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 498 | DRIVER_STATE_PRINT_HEX(ap_fw_ps_map); |
| 499 | DRIVER_STATE_PRINT_LHEX(ap_ps_map); |
| 500 | DRIVER_STATE_PRINT_HEX(quirks); |
| 501 | DRIVER_STATE_PRINT_HEX(irq); |
| 502 | DRIVER_STATE_PRINT_HEX(ref_clock); |
| 503 | DRIVER_STATE_PRINT_HEX(tcxo_clock); |
| 504 | DRIVER_STATE_PRINT_HEX(hw_pg_ver); |
| 505 | DRIVER_STATE_PRINT_HEX(platform_quirks); |
| 506 | DRIVER_STATE_PRINT_HEX(chip.id); |
| 507 | DRIVER_STATE_PRINT_STR(chip.fw_ver_str); |
Luciano Coelho | d3eff81 | 2011-05-10 14:47:45 +0300 | [diff] [blame] | 508 | DRIVER_STATE_PRINT_INT(sched_scanning); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 509 | |
| 510 | #undef DRIVER_STATE_PRINT_INT |
| 511 | #undef DRIVER_STATE_PRINT_LONG |
| 512 | #undef DRIVER_STATE_PRINT_HEX |
| 513 | #undef DRIVER_STATE_PRINT_LHEX |
| 514 | #undef DRIVER_STATE_PRINT_STR |
| 515 | #undef DRIVER_STATE_PRINT |
Luciano Coelho | c99f895 | 2011-12-15 14:58:08 +0200 | [diff] [blame] | 516 | #undef DRIVER_STATE_BUF_LEN |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 517 | |
| 518 | mutex_unlock(&wl->mutex); |
| 519 | |
Luciano Coelho | c99f895 | 2011-12-15 14:58:08 +0200 | [diff] [blame] | 520 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, res); |
| 521 | kfree(buf); |
| 522 | return ret; |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | static const struct file_operations driver_state_ops = { |
| 526 | .read = driver_state_read, |
| 527 | .open = wl1271_open_file_generic, |
| 528 | .llseek = default_llseek, |
| 529 | }; |
| 530 | |
Eliad Peller | fa5e137 | 2011-10-31 12:24:49 +0200 | [diff] [blame] | 531 | static ssize_t vifs_state_read(struct file *file, char __user *user_buf, |
| 532 | size_t count, loff_t *ppos) |
| 533 | { |
| 534 | struct wl1271 *wl = file->private_data; |
| 535 | struct wl12xx_vif *wlvif; |
| 536 | int ret, res = 0; |
| 537 | const int buf_size = 4096; |
| 538 | char *buf; |
| 539 | char tmp_buf[64]; |
| 540 | |
| 541 | buf = kzalloc(buf_size, GFP_KERNEL); |
| 542 | if (!buf) |
| 543 | return -ENOMEM; |
| 544 | |
| 545 | mutex_lock(&wl->mutex); |
| 546 | |
| 547 | #define VIF_STATE_PRINT(x, fmt) \ |
| 548 | (res += scnprintf(buf + res, buf_size - res, \ |
| 549 | #x " = " fmt "\n", wlvif->x)) |
| 550 | |
| 551 | #define VIF_STATE_PRINT_LONG(x) VIF_STATE_PRINT(x, "%ld") |
| 552 | #define VIF_STATE_PRINT_INT(x) VIF_STATE_PRINT(x, "%d") |
| 553 | #define VIF_STATE_PRINT_STR(x) VIF_STATE_PRINT(x, "%s") |
| 554 | #define VIF_STATE_PRINT_LHEX(x) VIF_STATE_PRINT(x, "0x%lx") |
| 555 | #define VIF_STATE_PRINT_LLHEX(x) VIF_STATE_PRINT(x, "0x%llx") |
| 556 | #define VIF_STATE_PRINT_HEX(x) VIF_STATE_PRINT(x, "0x%x") |
| 557 | |
| 558 | #define VIF_STATE_PRINT_NSTR(x, len) \ |
| 559 | do { \ |
| 560 | memset(tmp_buf, 0, sizeof(tmp_buf)); \ |
| 561 | memcpy(tmp_buf, wlvif->x, \ |
| 562 | min_t(u8, len, sizeof(tmp_buf) - 1)); \ |
| 563 | res += scnprintf(buf + res, buf_size - res, \ |
| 564 | #x " = %s\n", tmp_buf); \ |
| 565 | } while (0) |
| 566 | |
| 567 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 568 | VIF_STATE_PRINT_INT(role_id); |
| 569 | VIF_STATE_PRINT_INT(bss_type); |
| 570 | VIF_STATE_PRINT_LHEX(flags); |
| 571 | VIF_STATE_PRINT_INT(p2p); |
| 572 | VIF_STATE_PRINT_INT(dev_role_id); |
| 573 | VIF_STATE_PRINT_INT(dev_hlid); |
| 574 | |
| 575 | if (wlvif->bss_type == BSS_TYPE_STA_BSS || |
| 576 | wlvif->bss_type == BSS_TYPE_IBSS) { |
| 577 | VIF_STATE_PRINT_INT(sta.hlid); |
| 578 | VIF_STATE_PRINT_INT(sta.ba_rx_bitmap); |
| 579 | VIF_STATE_PRINT_INT(sta.basic_rate_idx); |
| 580 | VIF_STATE_PRINT_INT(sta.ap_rate_idx); |
| 581 | VIF_STATE_PRINT_INT(sta.p2p_rate_idx); |
Eliad Peller | 5ec8a44 | 2012-02-02 12:22:09 +0200 | [diff] [blame^] | 582 | VIF_STATE_PRINT_INT(sta.qos); |
Eliad Peller | fa5e137 | 2011-10-31 12:24:49 +0200 | [diff] [blame] | 583 | } else { |
| 584 | VIF_STATE_PRINT_INT(ap.global_hlid); |
| 585 | VIF_STATE_PRINT_INT(ap.bcast_hlid); |
| 586 | VIF_STATE_PRINT_LHEX(ap.sta_hlid_map[0]); |
| 587 | VIF_STATE_PRINT_INT(ap.mgmt_rate_idx); |
| 588 | VIF_STATE_PRINT_INT(ap.bcast_rate_idx); |
| 589 | VIF_STATE_PRINT_INT(ap.ucast_rate_idx[0]); |
| 590 | VIF_STATE_PRINT_INT(ap.ucast_rate_idx[1]); |
| 591 | VIF_STATE_PRINT_INT(ap.ucast_rate_idx[2]); |
| 592 | VIF_STATE_PRINT_INT(ap.ucast_rate_idx[3]); |
| 593 | } |
| 594 | VIF_STATE_PRINT_INT(last_tx_hlid); |
| 595 | VIF_STATE_PRINT_LHEX(links_map[0]); |
| 596 | VIF_STATE_PRINT_NSTR(ssid, wlvif->ssid_len); |
| 597 | VIF_STATE_PRINT_INT(band); |
| 598 | VIF_STATE_PRINT_INT(channel); |
| 599 | VIF_STATE_PRINT_HEX(bitrate_masks[0]); |
| 600 | VIF_STATE_PRINT_HEX(bitrate_masks[1]); |
| 601 | VIF_STATE_PRINT_HEX(basic_rate_set); |
| 602 | VIF_STATE_PRINT_HEX(basic_rate); |
| 603 | VIF_STATE_PRINT_HEX(rate_set); |
| 604 | VIF_STATE_PRINT_INT(beacon_int); |
| 605 | VIF_STATE_PRINT_INT(default_key); |
| 606 | VIF_STATE_PRINT_INT(aid); |
| 607 | VIF_STATE_PRINT_INT(session_counter); |
Eliad Peller | fa5e137 | 2011-10-31 12:24:49 +0200 | [diff] [blame] | 608 | VIF_STATE_PRINT_INT(psm_entry_retry); |
| 609 | VIF_STATE_PRINT_INT(power_level); |
| 610 | VIF_STATE_PRINT_INT(rssi_thold); |
| 611 | VIF_STATE_PRINT_INT(last_rssi_event); |
| 612 | VIF_STATE_PRINT_INT(ba_support); |
| 613 | VIF_STATE_PRINT_INT(ba_allowed); |
| 614 | VIF_STATE_PRINT_LLHEX(tx_security_seq); |
| 615 | VIF_STATE_PRINT_INT(tx_security_last_seq_lsb); |
| 616 | } |
| 617 | |
| 618 | #undef VIF_STATE_PRINT_INT |
| 619 | #undef VIF_STATE_PRINT_LONG |
| 620 | #undef VIF_STATE_PRINT_HEX |
| 621 | #undef VIF_STATE_PRINT_LHEX |
| 622 | #undef VIF_STATE_PRINT_LLHEX |
| 623 | #undef VIF_STATE_PRINT_STR |
| 624 | #undef VIF_STATE_PRINT_NSTR |
| 625 | #undef VIF_STATE_PRINT |
| 626 | |
| 627 | mutex_unlock(&wl->mutex); |
| 628 | |
| 629 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, res); |
| 630 | kfree(buf); |
| 631 | return ret; |
| 632 | } |
| 633 | |
| 634 | static const struct file_operations vifs_state_ops = { |
| 635 | .read = vifs_state_read, |
| 636 | .open = wl1271_open_file_generic, |
| 637 | .llseek = default_llseek, |
| 638 | }; |
| 639 | |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 640 | static ssize_t dtim_interval_read(struct file *file, char __user *user_buf, |
| 641 | size_t count, loff_t *ppos) |
| 642 | { |
| 643 | struct wl1271 *wl = file->private_data; |
| 644 | u8 value; |
| 645 | |
| 646 | if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_DTIM || |
| 647 | wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_DTIM) |
| 648 | value = wl->conf.conn.listen_interval; |
| 649 | else |
| 650 | value = 0; |
| 651 | |
| 652 | return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value); |
| 653 | } |
| 654 | |
| 655 | static ssize_t dtim_interval_write(struct file *file, |
| 656 | const char __user *user_buf, |
| 657 | size_t count, loff_t *ppos) |
| 658 | { |
| 659 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 660 | unsigned long value; |
| 661 | int ret; |
| 662 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 663 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 664 | if (ret < 0) { |
| 665 | wl1271_warning("illegal value for dtim_interval"); |
| 666 | return -EINVAL; |
| 667 | } |
| 668 | |
| 669 | if (value < 1 || value > 10) { |
| 670 | wl1271_warning("dtim value is not in valid range"); |
| 671 | return -ERANGE; |
| 672 | } |
| 673 | |
| 674 | mutex_lock(&wl->mutex); |
| 675 | |
| 676 | wl->conf.conn.listen_interval = value; |
| 677 | /* for some reason there are different event types for 1 and >1 */ |
| 678 | if (value == 1) |
| 679 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_DTIM; |
| 680 | else |
| 681 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_DTIM; |
| 682 | |
| 683 | /* |
| 684 | * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only |
| 685 | * take effect on the next time we enter psm. |
| 686 | */ |
| 687 | mutex_unlock(&wl->mutex); |
| 688 | return count; |
| 689 | } |
| 690 | |
| 691 | static const struct file_operations dtim_interval_ops = { |
| 692 | .read = dtim_interval_read, |
| 693 | .write = dtim_interval_write, |
| 694 | .open = wl1271_open_file_generic, |
| 695 | .llseek = default_llseek, |
| 696 | }; |
| 697 | |
Eyal Shapira | 59a10c66 | 2012-02-02 12:03:40 +0200 | [diff] [blame] | 698 | |
| 699 | |
| 700 | static ssize_t suspend_dtim_interval_read(struct file *file, |
| 701 | char __user *user_buf, |
| 702 | size_t count, loff_t *ppos) |
| 703 | { |
| 704 | struct wl1271 *wl = file->private_data; |
| 705 | u8 value; |
| 706 | |
| 707 | if (wl->conf.conn.suspend_wake_up_event == CONF_WAKE_UP_EVENT_DTIM || |
| 708 | wl->conf.conn.suspend_wake_up_event == CONF_WAKE_UP_EVENT_N_DTIM) |
| 709 | value = wl->conf.conn.suspend_listen_interval; |
| 710 | else |
| 711 | value = 0; |
| 712 | |
| 713 | return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value); |
| 714 | } |
| 715 | |
| 716 | static ssize_t suspend_dtim_interval_write(struct file *file, |
| 717 | const char __user *user_buf, |
| 718 | size_t count, loff_t *ppos) |
| 719 | { |
| 720 | struct wl1271 *wl = file->private_data; |
| 721 | unsigned long value; |
| 722 | int ret; |
| 723 | |
| 724 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
| 725 | if (ret < 0) { |
| 726 | wl1271_warning("illegal value for suspend_dtim_interval"); |
| 727 | return -EINVAL; |
| 728 | } |
| 729 | |
| 730 | if (value < 1 || value > 10) { |
| 731 | wl1271_warning("suspend_dtim value is not in valid range"); |
| 732 | return -ERANGE; |
| 733 | } |
| 734 | |
| 735 | mutex_lock(&wl->mutex); |
| 736 | |
| 737 | wl->conf.conn.suspend_listen_interval = value; |
| 738 | /* for some reason there are different event types for 1 and >1 */ |
| 739 | if (value == 1) |
| 740 | wl->conf.conn.suspend_wake_up_event = CONF_WAKE_UP_EVENT_DTIM; |
| 741 | else |
| 742 | wl->conf.conn.suspend_wake_up_event = CONF_WAKE_UP_EVENT_N_DTIM; |
| 743 | |
| 744 | mutex_unlock(&wl->mutex); |
| 745 | return count; |
| 746 | } |
| 747 | |
| 748 | |
| 749 | static const struct file_operations suspend_dtim_interval_ops = { |
| 750 | .read = suspend_dtim_interval_read, |
| 751 | .write = suspend_dtim_interval_write, |
| 752 | .open = wl1271_open_file_generic, |
| 753 | .llseek = default_llseek, |
| 754 | }; |
| 755 | |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 756 | static ssize_t beacon_interval_read(struct file *file, char __user *user_buf, |
| 757 | size_t count, loff_t *ppos) |
| 758 | { |
| 759 | struct wl1271 *wl = file->private_data; |
| 760 | u8 value; |
| 761 | |
| 762 | if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_BEACON || |
| 763 | wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_BEACONS) |
| 764 | value = wl->conf.conn.listen_interval; |
| 765 | else |
| 766 | value = 0; |
| 767 | |
| 768 | return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value); |
| 769 | } |
| 770 | |
| 771 | static ssize_t beacon_interval_write(struct file *file, |
| 772 | const char __user *user_buf, |
| 773 | size_t count, loff_t *ppos) |
| 774 | { |
| 775 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 776 | unsigned long value; |
| 777 | int ret; |
| 778 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 779 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 780 | if (ret < 0) { |
| 781 | wl1271_warning("illegal value for beacon_interval"); |
| 782 | return -EINVAL; |
| 783 | } |
| 784 | |
| 785 | if (value < 1 || value > 255) { |
| 786 | wl1271_warning("beacon interval value is not in valid range"); |
| 787 | return -ERANGE; |
| 788 | } |
| 789 | |
| 790 | mutex_lock(&wl->mutex); |
| 791 | |
| 792 | wl->conf.conn.listen_interval = value; |
| 793 | /* for some reason there are different event types for 1 and >1 */ |
| 794 | if (value == 1) |
| 795 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_BEACON; |
| 796 | else |
| 797 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_BEACONS; |
| 798 | |
| 799 | /* |
| 800 | * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only |
| 801 | * take effect on the next time we enter psm. |
| 802 | */ |
| 803 | mutex_unlock(&wl->mutex); |
| 804 | return count; |
| 805 | } |
| 806 | |
| 807 | static const struct file_operations beacon_interval_ops = { |
| 808 | .read = beacon_interval_read, |
| 809 | .write = beacon_interval_write, |
| 810 | .open = wl1271_open_file_generic, |
| 811 | .llseek = default_llseek, |
| 812 | }; |
| 813 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 814 | static ssize_t rx_streaming_interval_write(struct file *file, |
| 815 | const char __user *user_buf, |
| 816 | size_t count, loff_t *ppos) |
| 817 | { |
| 818 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 819 | struct wl12xx_vif *wlvif; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 820 | unsigned long value; |
| 821 | int ret; |
| 822 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 823 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 824 | if (ret < 0) { |
| 825 | wl1271_warning("illegal value in rx_streaming_interval!"); |
| 826 | return -EINVAL; |
| 827 | } |
| 828 | |
| 829 | /* valid values: 0, 10-100 */ |
| 830 | if (value && (value < 10 || value > 100)) { |
| 831 | wl1271_warning("value is not in range!"); |
| 832 | return -ERANGE; |
| 833 | } |
| 834 | |
| 835 | mutex_lock(&wl->mutex); |
| 836 | |
| 837 | wl->conf.rx_streaming.interval = value; |
| 838 | |
| 839 | ret = wl1271_ps_elp_wakeup(wl); |
| 840 | if (ret < 0) |
| 841 | goto out; |
| 842 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 843 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 844 | wl1271_recalc_rx_streaming(wl, wlvif); |
| 845 | } |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 846 | |
| 847 | wl1271_ps_elp_sleep(wl); |
| 848 | out: |
| 849 | mutex_unlock(&wl->mutex); |
| 850 | return count; |
| 851 | } |
| 852 | |
| 853 | static ssize_t rx_streaming_interval_read(struct file *file, |
| 854 | char __user *userbuf, |
| 855 | size_t count, loff_t *ppos) |
| 856 | { |
| 857 | struct wl1271 *wl = file->private_data; |
| 858 | return wl1271_format_buffer(userbuf, count, ppos, |
| 859 | "%d\n", wl->conf.rx_streaming.interval); |
| 860 | } |
| 861 | |
| 862 | static const struct file_operations rx_streaming_interval_ops = { |
| 863 | .read = rx_streaming_interval_read, |
| 864 | .write = rx_streaming_interval_write, |
| 865 | .open = wl1271_open_file_generic, |
| 866 | .llseek = default_llseek, |
| 867 | }; |
| 868 | |
| 869 | static ssize_t rx_streaming_always_write(struct file *file, |
| 870 | const char __user *user_buf, |
| 871 | size_t count, loff_t *ppos) |
| 872 | { |
| 873 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 874 | struct wl12xx_vif *wlvif; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 875 | unsigned long value; |
| 876 | int ret; |
| 877 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 878 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 879 | if (ret < 0) { |
| 880 | wl1271_warning("illegal value in rx_streaming_write!"); |
| 881 | return -EINVAL; |
| 882 | } |
| 883 | |
| 884 | /* valid values: 0, 10-100 */ |
| 885 | if (!(value == 0 || value == 1)) { |
| 886 | wl1271_warning("value is not in valid!"); |
| 887 | return -EINVAL; |
| 888 | } |
| 889 | |
| 890 | mutex_lock(&wl->mutex); |
| 891 | |
| 892 | wl->conf.rx_streaming.always = value; |
| 893 | |
| 894 | ret = wl1271_ps_elp_wakeup(wl); |
| 895 | if (ret < 0) |
| 896 | goto out; |
| 897 | |
Eliad Peller | 9eb599e | 2011-10-10 10:12:59 +0200 | [diff] [blame] | 898 | wl12xx_for_each_wlvif_sta(wl, wlvif) { |
| 899 | wl1271_recalc_rx_streaming(wl, wlvif); |
| 900 | } |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 901 | |
| 902 | wl1271_ps_elp_sleep(wl); |
| 903 | out: |
| 904 | mutex_unlock(&wl->mutex); |
| 905 | return count; |
| 906 | } |
| 907 | |
| 908 | static ssize_t rx_streaming_always_read(struct file *file, |
| 909 | char __user *userbuf, |
| 910 | size_t count, loff_t *ppos) |
| 911 | { |
| 912 | struct wl1271 *wl = file->private_data; |
| 913 | return wl1271_format_buffer(userbuf, count, ppos, |
| 914 | "%d\n", wl->conf.rx_streaming.always); |
| 915 | } |
| 916 | |
| 917 | static const struct file_operations rx_streaming_always_ops = { |
| 918 | .read = rx_streaming_always_read, |
| 919 | .write = rx_streaming_always_write, |
| 920 | .open = wl1271_open_file_generic, |
| 921 | .llseek = default_llseek, |
| 922 | }; |
| 923 | |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 924 | static ssize_t beacon_filtering_write(struct file *file, |
| 925 | const char __user *user_buf, |
| 926 | size_t count, loff_t *ppos) |
| 927 | { |
| 928 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame] | 929 | struct wl12xx_vif *wlvif; |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 930 | char buf[10]; |
| 931 | size_t len; |
| 932 | unsigned long value; |
| 933 | int ret; |
| 934 | |
| 935 | len = min(count, sizeof(buf) - 1); |
| 936 | if (copy_from_user(buf, user_buf, len)) |
| 937 | return -EFAULT; |
| 938 | buf[len] = '\0'; |
| 939 | |
| 940 | ret = kstrtoul(buf, 0, &value); |
| 941 | if (ret < 0) { |
| 942 | wl1271_warning("illegal value for beacon_filtering!"); |
| 943 | return -EINVAL; |
| 944 | } |
| 945 | |
| 946 | mutex_lock(&wl->mutex); |
| 947 | |
| 948 | ret = wl1271_ps_elp_wakeup(wl); |
| 949 | if (ret < 0) |
| 950 | goto out; |
| 951 | |
Eliad Peller | 6e8cd33 | 2011-10-10 10:13:13 +0200 | [diff] [blame] | 952 | wl12xx_for_each_wlvif(wl, wlvif) { |
| 953 | ret = wl1271_acx_beacon_filter_opt(wl, wlvif, !!value); |
| 954 | } |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 955 | |
| 956 | wl1271_ps_elp_sleep(wl); |
| 957 | out: |
| 958 | mutex_unlock(&wl->mutex); |
| 959 | return count; |
| 960 | } |
| 961 | |
| 962 | static const struct file_operations beacon_filtering_ops = { |
| 963 | .write = beacon_filtering_write, |
| 964 | .open = wl1271_open_file_generic, |
| 965 | .llseek = default_llseek, |
| 966 | }; |
| 967 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 968 | static int wl1271_debugfs_add_files(struct wl1271 *wl, |
| 969 | struct dentry *rootdir) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 970 | { |
| 971 | int ret = 0; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 972 | struct dentry *entry, *stats, *streaming; |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 973 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 974 | stats = debugfs_create_dir("fw-statistics", rootdir); |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 975 | if (!stats || IS_ERR(stats)) { |
| 976 | entry = stats; |
| 977 | goto err; |
| 978 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 979 | |
| 980 | DEBUGFS_FWSTATS_ADD(tx, internal_desc_overflow); |
| 981 | |
| 982 | DEBUGFS_FWSTATS_ADD(rx, out_of_mem); |
| 983 | DEBUGFS_FWSTATS_ADD(rx, hdr_overflow); |
| 984 | DEBUGFS_FWSTATS_ADD(rx, hw_stuck); |
| 985 | DEBUGFS_FWSTATS_ADD(rx, dropped); |
| 986 | DEBUGFS_FWSTATS_ADD(rx, fcs_err); |
| 987 | DEBUGFS_FWSTATS_ADD(rx, xfr_hint_trig); |
| 988 | DEBUGFS_FWSTATS_ADD(rx, path_reset); |
| 989 | DEBUGFS_FWSTATS_ADD(rx, reset_counter); |
| 990 | |
| 991 | DEBUGFS_FWSTATS_ADD(dma, rx_requested); |
| 992 | DEBUGFS_FWSTATS_ADD(dma, rx_errors); |
| 993 | DEBUGFS_FWSTATS_ADD(dma, tx_requested); |
| 994 | DEBUGFS_FWSTATS_ADD(dma, tx_errors); |
| 995 | |
| 996 | DEBUGFS_FWSTATS_ADD(isr, cmd_cmplt); |
| 997 | DEBUGFS_FWSTATS_ADD(isr, fiqs); |
| 998 | DEBUGFS_FWSTATS_ADD(isr, rx_headers); |
| 999 | DEBUGFS_FWSTATS_ADD(isr, rx_mem_overflow); |
| 1000 | DEBUGFS_FWSTATS_ADD(isr, rx_rdys); |
| 1001 | DEBUGFS_FWSTATS_ADD(isr, irqs); |
| 1002 | DEBUGFS_FWSTATS_ADD(isr, tx_procs); |
| 1003 | DEBUGFS_FWSTATS_ADD(isr, decrypt_done); |
| 1004 | DEBUGFS_FWSTATS_ADD(isr, dma0_done); |
| 1005 | DEBUGFS_FWSTATS_ADD(isr, dma1_done); |
| 1006 | DEBUGFS_FWSTATS_ADD(isr, tx_exch_complete); |
| 1007 | DEBUGFS_FWSTATS_ADD(isr, commands); |
| 1008 | DEBUGFS_FWSTATS_ADD(isr, rx_procs); |
| 1009 | DEBUGFS_FWSTATS_ADD(isr, hw_pm_mode_changes); |
| 1010 | DEBUGFS_FWSTATS_ADD(isr, host_acknowledges); |
| 1011 | DEBUGFS_FWSTATS_ADD(isr, pci_pm); |
| 1012 | DEBUGFS_FWSTATS_ADD(isr, wakeups); |
| 1013 | DEBUGFS_FWSTATS_ADD(isr, low_rssi); |
| 1014 | |
| 1015 | DEBUGFS_FWSTATS_ADD(wep, addr_key_count); |
| 1016 | DEBUGFS_FWSTATS_ADD(wep, default_key_count); |
| 1017 | /* skipping wep.reserved */ |
| 1018 | DEBUGFS_FWSTATS_ADD(wep, key_not_found); |
| 1019 | DEBUGFS_FWSTATS_ADD(wep, decrypt_fail); |
| 1020 | DEBUGFS_FWSTATS_ADD(wep, packets); |
| 1021 | DEBUGFS_FWSTATS_ADD(wep, interrupt); |
| 1022 | |
| 1023 | DEBUGFS_FWSTATS_ADD(pwr, ps_enter); |
| 1024 | DEBUGFS_FWSTATS_ADD(pwr, elp_enter); |
| 1025 | DEBUGFS_FWSTATS_ADD(pwr, missing_bcns); |
| 1026 | DEBUGFS_FWSTATS_ADD(pwr, wake_on_host); |
| 1027 | DEBUGFS_FWSTATS_ADD(pwr, wake_on_timer_exp); |
| 1028 | DEBUGFS_FWSTATS_ADD(pwr, tx_with_ps); |
| 1029 | DEBUGFS_FWSTATS_ADD(pwr, tx_without_ps); |
| 1030 | DEBUGFS_FWSTATS_ADD(pwr, rcvd_beacons); |
| 1031 | DEBUGFS_FWSTATS_ADD(pwr, power_save_off); |
| 1032 | DEBUGFS_FWSTATS_ADD(pwr, enable_ps); |
| 1033 | DEBUGFS_FWSTATS_ADD(pwr, disable_ps); |
| 1034 | DEBUGFS_FWSTATS_ADD(pwr, fix_tsf_ps); |
| 1035 | /* skipping cont_miss_bcns_spread for now */ |
| 1036 | DEBUGFS_FWSTATS_ADD(pwr, rcvd_awake_beacons); |
| 1037 | |
| 1038 | DEBUGFS_FWSTATS_ADD(mic, rx_pkts); |
| 1039 | DEBUGFS_FWSTATS_ADD(mic, calc_failure); |
| 1040 | |
| 1041 | DEBUGFS_FWSTATS_ADD(aes, encrypt_fail); |
| 1042 | DEBUGFS_FWSTATS_ADD(aes, decrypt_fail); |
| 1043 | DEBUGFS_FWSTATS_ADD(aes, encrypt_packets); |
| 1044 | DEBUGFS_FWSTATS_ADD(aes, decrypt_packets); |
| 1045 | DEBUGFS_FWSTATS_ADD(aes, encrypt_interrupt); |
| 1046 | DEBUGFS_FWSTATS_ADD(aes, decrypt_interrupt); |
| 1047 | |
| 1048 | DEBUGFS_FWSTATS_ADD(event, heart_beat); |
| 1049 | DEBUGFS_FWSTATS_ADD(event, calibration); |
| 1050 | DEBUGFS_FWSTATS_ADD(event, rx_mismatch); |
| 1051 | DEBUGFS_FWSTATS_ADD(event, rx_mem_empty); |
| 1052 | DEBUGFS_FWSTATS_ADD(event, rx_pool); |
| 1053 | DEBUGFS_FWSTATS_ADD(event, oom_late); |
| 1054 | DEBUGFS_FWSTATS_ADD(event, phy_transmit_error); |
| 1055 | DEBUGFS_FWSTATS_ADD(event, tx_stuck); |
| 1056 | |
| 1057 | DEBUGFS_FWSTATS_ADD(ps, pspoll_timeouts); |
| 1058 | DEBUGFS_FWSTATS_ADD(ps, upsd_timeouts); |
| 1059 | DEBUGFS_FWSTATS_ADD(ps, upsd_max_sptime); |
| 1060 | DEBUGFS_FWSTATS_ADD(ps, upsd_max_apturn); |
| 1061 | DEBUGFS_FWSTATS_ADD(ps, pspoll_max_apturn); |
| 1062 | DEBUGFS_FWSTATS_ADD(ps, pspoll_utilization); |
| 1063 | DEBUGFS_FWSTATS_ADD(ps, upsd_utilization); |
| 1064 | |
| 1065 | DEBUGFS_FWSTATS_ADD(rxpipe, rx_prep_beacon_drop); |
| 1066 | DEBUGFS_FWSTATS_ADD(rxpipe, descr_host_int_trig_rx_data); |
| 1067 | DEBUGFS_FWSTATS_ADD(rxpipe, beacon_buffer_thres_host_int_trig_rx_data); |
| 1068 | DEBUGFS_FWSTATS_ADD(rxpipe, missed_beacon_host_int_trig_rx_data); |
| 1069 | DEBUGFS_FWSTATS_ADD(rxpipe, tx_xfr_host_int_trig_rx_data); |
| 1070 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1071 | DEBUGFS_ADD(tx_queue_len, rootdir); |
| 1072 | DEBUGFS_ADD(retry_count, rootdir); |
| 1073 | DEBUGFS_ADD(excessive_retries, rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1074 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1075 | DEBUGFS_ADD(gpio_power, rootdir); |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 1076 | DEBUGFS_ADD(start_recovery, rootdir); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 1077 | DEBUGFS_ADD(driver_state, rootdir); |
Eliad Peller | fa5e137 | 2011-10-31 12:24:49 +0200 | [diff] [blame] | 1078 | DEBUGFS_ADD(vifs_state, rootdir); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 1079 | DEBUGFS_ADD(dtim_interval, rootdir); |
Eyal Shapira | 59a10c66 | 2012-02-02 12:03:40 +0200 | [diff] [blame] | 1080 | DEBUGFS_ADD(suspend_dtim_interval, rootdir); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 1081 | DEBUGFS_ADD(beacon_interval, rootdir); |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 1082 | DEBUGFS_ADD(beacon_filtering, rootdir); |
Eyal Shapira | 1faff89 | 2012-01-31 11:57:22 +0200 | [diff] [blame] | 1083 | DEBUGFS_ADD(dynamic_ps_timeout, rootdir); |
Eyal Shapira | 20ae7e5 | 2012-02-02 12:03:42 +0200 | [diff] [blame] | 1084 | DEBUGFS_ADD(forced_ps, rootdir); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 1085 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 1086 | streaming = debugfs_create_dir("rx_streaming", rootdir); |
| 1087 | if (!streaming || IS_ERR(streaming)) |
| 1088 | goto err; |
| 1089 | |
| 1090 | DEBUGFS_ADD_PREFIX(rx_streaming, interval, streaming); |
| 1091 | DEBUGFS_ADD_PREFIX(rx_streaming, always, streaming); |
| 1092 | |
| 1093 | |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 1094 | return 0; |
| 1095 | |
| 1096 | err: |
| 1097 | if (IS_ERR(entry)) |
| 1098 | ret = PTR_ERR(entry); |
| 1099 | else |
| 1100 | ret = -ENOMEM; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1101 | |
| 1102 | return ret; |
| 1103 | } |
| 1104 | |
| 1105 | void wl1271_debugfs_reset(struct wl1271 *wl) |
| 1106 | { |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1107 | if (!wl->stats.fw_stats) |
Luciano Coelho | 43a598d | 2010-11-30 14:58:46 +0200 | [diff] [blame] | 1108 | return; |
| 1109 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1110 | memset(wl->stats.fw_stats, 0, sizeof(*wl->stats.fw_stats)); |
| 1111 | wl->stats.retry_count = 0; |
| 1112 | wl->stats.excessive_retries = 0; |
| 1113 | } |
| 1114 | |
| 1115 | int wl1271_debugfs_init(struct wl1271 *wl) |
| 1116 | { |
| 1117 | int ret; |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1118 | struct dentry *rootdir; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1119 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1120 | rootdir = debugfs_create_dir(KBUILD_MODNAME, |
| 1121 | wl->hw->wiphy->debugfsdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1122 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1123 | if (IS_ERR(rootdir)) { |
| 1124 | ret = PTR_ERR(rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1125 | goto err; |
| 1126 | } |
| 1127 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1128 | wl->stats.fw_stats = kzalloc(sizeof(*wl->stats.fw_stats), |
| 1129 | GFP_KERNEL); |
| 1130 | |
| 1131 | if (!wl->stats.fw_stats) { |
| 1132 | ret = -ENOMEM; |
| 1133 | goto err_fw; |
| 1134 | } |
| 1135 | |
| 1136 | wl->stats.fw_stats_update = jiffies; |
| 1137 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1138 | ret = wl1271_debugfs_add_files(wl, rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1139 | |
| 1140 | if (ret < 0) |
| 1141 | goto err_file; |
| 1142 | |
| 1143 | return 0; |
| 1144 | |
| 1145 | err_file: |
| 1146 | kfree(wl->stats.fw_stats); |
| 1147 | wl->stats.fw_stats = NULL; |
| 1148 | |
| 1149 | err_fw: |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 1150 | debugfs_remove_recursive(rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1151 | |
| 1152 | err: |
| 1153 | return ret; |
| 1154 | } |
| 1155 | |
| 1156 | void wl1271_debugfs_exit(struct wl1271 *wl) |
| 1157 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1158 | kfree(wl->stats.fw_stats); |
| 1159 | wl->stats.fw_stats = NULL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1160 | } |