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" |
| 30 | #include "acx.h" |
| 31 | #include "ps.h" |
| 32 | #include "io.h" |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 33 | #include "tx.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 34 | |
| 35 | /* ms */ |
| 36 | #define WL1271_DEBUGFS_STATS_LIFETIME 1000 |
| 37 | |
| 38 | /* debugfs macros idea from mac80211 */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 39 | #define DEBUGFS_FORMAT_BUFFER_SIZE 100 |
| 40 | static int wl1271_format_buffer(char __user *userbuf, size_t count, |
| 41 | loff_t *ppos, char *fmt, ...) |
| 42 | { |
| 43 | va_list args; |
| 44 | char buf[DEBUGFS_FORMAT_BUFFER_SIZE]; |
| 45 | int res; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 46 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 47 | va_start(args, fmt); |
| 48 | res = vscnprintf(buf, sizeof(buf), fmt, args); |
| 49 | va_end(args); |
| 50 | |
| 51 | return simple_read_from_buffer(userbuf, count, ppos, buf, res); |
| 52 | } |
| 53 | |
| 54 | #define DEBUGFS_READONLY_FILE(name, fmt, value...) \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 55 | static ssize_t name## _read(struct file *file, char __user *userbuf, \ |
| 56 | size_t count, loff_t *ppos) \ |
| 57 | { \ |
| 58 | struct wl1271 *wl = file->private_data; \ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 59 | return wl1271_format_buffer(userbuf, count, ppos, \ |
| 60 | fmt "\n", ##value); \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 61 | } \ |
| 62 | \ |
| 63 | static const struct file_operations name## _ops = { \ |
| 64 | .read = name## _read, \ |
| 65 | .open = wl1271_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 66 | .llseek = generic_file_llseek, \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | #define DEBUGFS_ADD(name, parent) \ |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 70 | entry = debugfs_create_file(#name, 0400, parent, \ |
| 71 | wl, &name## _ops); \ |
| 72 | if (!entry || IS_ERR(entry)) \ |
| 73 | goto err; \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 74 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 75 | #define DEBUGFS_ADD_PREFIX(prefix, name, parent) \ |
| 76 | do { \ |
| 77 | entry = debugfs_create_file(#name, 0400, parent, \ |
| 78 | wl, &prefix## _## name## _ops); \ |
| 79 | if (!entry || IS_ERR(entry)) \ |
| 80 | goto err; \ |
| 81 | } while (0); |
| 82 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 83 | #define DEBUGFS_FWSTATS_FILE(sub, name, fmt) \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 84 | static ssize_t sub## _ ##name## _read(struct file *file, \ |
| 85 | char __user *userbuf, \ |
| 86 | size_t count, loff_t *ppos) \ |
| 87 | { \ |
| 88 | struct wl1271 *wl = file->private_data; \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 89 | \ |
| 90 | wl1271_debugfs_update_stats(wl); \ |
| 91 | \ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 92 | return wl1271_format_buffer(userbuf, count, ppos, fmt "\n", \ |
| 93 | wl->stats.fw_stats->sub.name); \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 94 | } \ |
| 95 | \ |
| 96 | static const struct file_operations sub## _ ##name## _ops = { \ |
| 97 | .read = sub## _ ##name## _read, \ |
| 98 | .open = wl1271_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 99 | .llseek = generic_file_llseek, \ |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | #define DEBUGFS_FWSTATS_ADD(sub, name) \ |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 103 | DEBUGFS_ADD(sub## _ ##name, stats) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 104 | |
| 105 | static void wl1271_debugfs_update_stats(struct wl1271 *wl) |
| 106 | { |
| 107 | int ret; |
| 108 | |
| 109 | mutex_lock(&wl->mutex); |
| 110 | |
Ido Yariv | a620865 | 2011-03-01 15:14:41 +0200 | [diff] [blame] | 111 | ret = wl1271_ps_elp_wakeup(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 112 | if (ret < 0) |
| 113 | goto out; |
| 114 | |
| 115 | if (wl->state == WL1271_STATE_ON && |
| 116 | time_after(jiffies, wl->stats.fw_stats_update + |
| 117 | msecs_to_jiffies(WL1271_DEBUGFS_STATS_LIFETIME))) { |
| 118 | wl1271_acx_statistics(wl, wl->stats.fw_stats); |
| 119 | wl->stats.fw_stats_update = jiffies; |
| 120 | } |
| 121 | |
| 122 | wl1271_ps_elp_sleep(wl); |
| 123 | |
| 124 | out: |
| 125 | mutex_unlock(&wl->mutex); |
| 126 | } |
| 127 | |
| 128 | static int wl1271_open_file_generic(struct inode *inode, struct file *file) |
| 129 | { |
| 130 | file->private_data = inode->i_private; |
| 131 | return 0; |
| 132 | } |
| 133 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 134 | DEBUGFS_FWSTATS_FILE(tx, internal_desc_overflow, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 135 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 136 | DEBUGFS_FWSTATS_FILE(rx, out_of_mem, "%u"); |
| 137 | DEBUGFS_FWSTATS_FILE(rx, hdr_overflow, "%u"); |
| 138 | DEBUGFS_FWSTATS_FILE(rx, hw_stuck, "%u"); |
| 139 | DEBUGFS_FWSTATS_FILE(rx, dropped, "%u"); |
| 140 | DEBUGFS_FWSTATS_FILE(rx, fcs_err, "%u"); |
| 141 | DEBUGFS_FWSTATS_FILE(rx, xfr_hint_trig, "%u"); |
| 142 | DEBUGFS_FWSTATS_FILE(rx, path_reset, "%u"); |
| 143 | DEBUGFS_FWSTATS_FILE(rx, reset_counter, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 144 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 145 | DEBUGFS_FWSTATS_FILE(dma, rx_requested, "%u"); |
| 146 | DEBUGFS_FWSTATS_FILE(dma, rx_errors, "%u"); |
| 147 | DEBUGFS_FWSTATS_FILE(dma, tx_requested, "%u"); |
| 148 | DEBUGFS_FWSTATS_FILE(dma, tx_errors, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 149 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 150 | DEBUGFS_FWSTATS_FILE(isr, cmd_cmplt, "%u"); |
| 151 | DEBUGFS_FWSTATS_FILE(isr, fiqs, "%u"); |
| 152 | DEBUGFS_FWSTATS_FILE(isr, rx_headers, "%u"); |
| 153 | DEBUGFS_FWSTATS_FILE(isr, rx_mem_overflow, "%u"); |
| 154 | DEBUGFS_FWSTATS_FILE(isr, rx_rdys, "%u"); |
| 155 | DEBUGFS_FWSTATS_FILE(isr, irqs, "%u"); |
| 156 | DEBUGFS_FWSTATS_FILE(isr, tx_procs, "%u"); |
| 157 | DEBUGFS_FWSTATS_FILE(isr, decrypt_done, "%u"); |
| 158 | DEBUGFS_FWSTATS_FILE(isr, dma0_done, "%u"); |
| 159 | DEBUGFS_FWSTATS_FILE(isr, dma1_done, "%u"); |
| 160 | DEBUGFS_FWSTATS_FILE(isr, tx_exch_complete, "%u"); |
| 161 | DEBUGFS_FWSTATS_FILE(isr, commands, "%u"); |
| 162 | DEBUGFS_FWSTATS_FILE(isr, rx_procs, "%u"); |
| 163 | DEBUGFS_FWSTATS_FILE(isr, hw_pm_mode_changes, "%u"); |
| 164 | DEBUGFS_FWSTATS_FILE(isr, host_acknowledges, "%u"); |
| 165 | DEBUGFS_FWSTATS_FILE(isr, pci_pm, "%u"); |
| 166 | DEBUGFS_FWSTATS_FILE(isr, wakeups, "%u"); |
| 167 | DEBUGFS_FWSTATS_FILE(isr, low_rssi, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 168 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 169 | DEBUGFS_FWSTATS_FILE(wep, addr_key_count, "%u"); |
| 170 | DEBUGFS_FWSTATS_FILE(wep, default_key_count, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 171 | /* skipping wep.reserved */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 172 | DEBUGFS_FWSTATS_FILE(wep, key_not_found, "%u"); |
| 173 | DEBUGFS_FWSTATS_FILE(wep, decrypt_fail, "%u"); |
| 174 | DEBUGFS_FWSTATS_FILE(wep, packets, "%u"); |
| 175 | DEBUGFS_FWSTATS_FILE(wep, interrupt, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 176 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 177 | DEBUGFS_FWSTATS_FILE(pwr, ps_enter, "%u"); |
| 178 | DEBUGFS_FWSTATS_FILE(pwr, elp_enter, "%u"); |
| 179 | DEBUGFS_FWSTATS_FILE(pwr, missing_bcns, "%u"); |
| 180 | DEBUGFS_FWSTATS_FILE(pwr, wake_on_host, "%u"); |
| 181 | DEBUGFS_FWSTATS_FILE(pwr, wake_on_timer_exp, "%u"); |
| 182 | DEBUGFS_FWSTATS_FILE(pwr, tx_with_ps, "%u"); |
| 183 | DEBUGFS_FWSTATS_FILE(pwr, tx_without_ps, "%u"); |
| 184 | DEBUGFS_FWSTATS_FILE(pwr, rcvd_beacons, "%u"); |
| 185 | DEBUGFS_FWSTATS_FILE(pwr, power_save_off, "%u"); |
| 186 | DEBUGFS_FWSTATS_FILE(pwr, enable_ps, "%u"); |
| 187 | DEBUGFS_FWSTATS_FILE(pwr, disable_ps, "%u"); |
| 188 | DEBUGFS_FWSTATS_FILE(pwr, fix_tsf_ps, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 189 | /* skipping cont_miss_bcns_spread for now */ |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 190 | DEBUGFS_FWSTATS_FILE(pwr, rcvd_awake_beacons, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 191 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 192 | DEBUGFS_FWSTATS_FILE(mic, rx_pkts, "%u"); |
| 193 | DEBUGFS_FWSTATS_FILE(mic, calc_failure, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 194 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 195 | DEBUGFS_FWSTATS_FILE(aes, encrypt_fail, "%u"); |
| 196 | DEBUGFS_FWSTATS_FILE(aes, decrypt_fail, "%u"); |
| 197 | DEBUGFS_FWSTATS_FILE(aes, encrypt_packets, "%u"); |
| 198 | DEBUGFS_FWSTATS_FILE(aes, decrypt_packets, "%u"); |
| 199 | DEBUGFS_FWSTATS_FILE(aes, encrypt_interrupt, "%u"); |
| 200 | DEBUGFS_FWSTATS_FILE(aes, decrypt_interrupt, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 201 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 202 | DEBUGFS_FWSTATS_FILE(event, heart_beat, "%u"); |
| 203 | DEBUGFS_FWSTATS_FILE(event, calibration, "%u"); |
| 204 | DEBUGFS_FWSTATS_FILE(event, rx_mismatch, "%u"); |
| 205 | DEBUGFS_FWSTATS_FILE(event, rx_mem_empty, "%u"); |
| 206 | DEBUGFS_FWSTATS_FILE(event, rx_pool, "%u"); |
| 207 | DEBUGFS_FWSTATS_FILE(event, oom_late, "%u"); |
| 208 | DEBUGFS_FWSTATS_FILE(event, phy_transmit_error, "%u"); |
| 209 | DEBUGFS_FWSTATS_FILE(event, tx_stuck, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 210 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 211 | DEBUGFS_FWSTATS_FILE(ps, pspoll_timeouts, "%u"); |
| 212 | DEBUGFS_FWSTATS_FILE(ps, upsd_timeouts, "%u"); |
| 213 | DEBUGFS_FWSTATS_FILE(ps, upsd_max_sptime, "%u"); |
| 214 | DEBUGFS_FWSTATS_FILE(ps, upsd_max_apturn, "%u"); |
| 215 | DEBUGFS_FWSTATS_FILE(ps, pspoll_max_apturn, "%u"); |
| 216 | DEBUGFS_FWSTATS_FILE(ps, pspoll_utilization, "%u"); |
| 217 | DEBUGFS_FWSTATS_FILE(ps, upsd_utilization, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 218 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 219 | DEBUGFS_FWSTATS_FILE(rxpipe, rx_prep_beacon_drop, "%u"); |
| 220 | DEBUGFS_FWSTATS_FILE(rxpipe, descr_host_int_trig_rx_data, "%u"); |
| 221 | DEBUGFS_FWSTATS_FILE(rxpipe, beacon_buffer_thres_host_int_trig_rx_data, "%u"); |
| 222 | DEBUGFS_FWSTATS_FILE(rxpipe, missed_beacon_host_int_trig_rx_data, "%u"); |
| 223 | DEBUGFS_FWSTATS_FILE(rxpipe, tx_xfr_host_int_trig_rx_data, "%u"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 224 | |
Eliad Peller | 03107a4 | 2010-10-27 14:58:30 +0200 | [diff] [blame] | 225 | DEBUGFS_READONLY_FILE(retry_count, "%u", wl->stats.retry_count); |
| 226 | DEBUGFS_READONLY_FILE(excessive_retries, "%u", |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 227 | wl->stats.excessive_retries); |
| 228 | |
| 229 | static ssize_t tx_queue_len_read(struct file *file, char __user *userbuf, |
| 230 | size_t count, loff_t *ppos) |
| 231 | { |
| 232 | struct wl1271 *wl = file->private_data; |
| 233 | u32 queue_len; |
| 234 | char buf[20]; |
| 235 | int res; |
| 236 | |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 237 | queue_len = wl1271_tx_total_queue_count(wl); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 238 | |
| 239 | res = scnprintf(buf, sizeof(buf), "%u\n", queue_len); |
| 240 | return simple_read_from_buffer(userbuf, count, ppos, buf, res); |
| 241 | } |
| 242 | |
| 243 | static const struct file_operations tx_queue_len_ops = { |
| 244 | .read = tx_queue_len_read, |
| 245 | .open = wl1271_open_file_generic, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 246 | .llseek = default_llseek, |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 247 | }; |
| 248 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 249 | static ssize_t gpio_power_read(struct file *file, char __user *user_buf, |
| 250 | size_t count, loff_t *ppos) |
| 251 | { |
| 252 | struct wl1271 *wl = file->private_data; |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 253 | bool state = test_bit(WL1271_FLAG_GPIO_POWER, &wl->flags); |
| 254 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 255 | int res; |
| 256 | char buf[10]; |
| 257 | |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 258 | res = scnprintf(buf, sizeof(buf), "%d\n", state); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 259 | |
| 260 | return simple_read_from_buffer(user_buf, count, ppos, buf, res); |
| 261 | } |
| 262 | |
| 263 | static ssize_t gpio_power_write(struct file *file, |
| 264 | const char __user *user_buf, |
| 265 | size_t count, loff_t *ppos) |
| 266 | { |
| 267 | struct wl1271 *wl = file->private_data; |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 268 | unsigned long value; |
| 269 | int ret; |
| 270 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 271 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 272 | if (ret < 0) { |
| 273 | wl1271_warning("illegal value in gpio_power"); |
Eliad Peller | 8e2de74 | 2011-01-23 11:25:27 +0100 | [diff] [blame] | 274 | return -EINVAL; |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 275 | } |
| 276 | |
Eliad Peller | 8e2de74 | 2011-01-23 11:25:27 +0100 | [diff] [blame] | 277 | mutex_lock(&wl->mutex); |
| 278 | |
Teemu Paasikivi | becd551 | 2010-03-18 12:26:27 +0200 | [diff] [blame] | 279 | if (value) |
| 280 | wl1271_power_on(wl); |
| 281 | else |
| 282 | wl1271_power_off(wl); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 283 | |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 284 | mutex_unlock(&wl->mutex); |
| 285 | return count; |
| 286 | } |
| 287 | |
| 288 | static const struct file_operations gpio_power_ops = { |
| 289 | .read = gpio_power_read, |
| 290 | .write = gpio_power_write, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 291 | .open = wl1271_open_file_generic, |
| 292 | .llseek = default_llseek, |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 293 | }; |
| 294 | |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 295 | static ssize_t start_recovery_write(struct file *file, |
| 296 | const char __user *user_buf, |
| 297 | size_t count, loff_t *ppos) |
| 298 | { |
| 299 | struct wl1271 *wl = file->private_data; |
| 300 | |
| 301 | mutex_lock(&wl->mutex); |
Ido Yariv | baacb9ae | 2011-06-06 14:57:05 +0300 | [diff] [blame] | 302 | wl12xx_queue_recovery_work(wl); |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 303 | mutex_unlock(&wl->mutex); |
| 304 | |
| 305 | return count; |
| 306 | } |
| 307 | |
| 308 | static const struct file_operations start_recovery_ops = { |
| 309 | .write = start_recovery_write, |
| 310 | .open = wl1271_open_file_generic, |
| 311 | .llseek = default_llseek, |
| 312 | }; |
| 313 | |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 314 | static ssize_t driver_state_read(struct file *file, char __user *user_buf, |
| 315 | size_t count, loff_t *ppos) |
| 316 | { |
| 317 | struct wl1271 *wl = file->private_data; |
| 318 | int res = 0; |
| 319 | char buf[1024]; |
| 320 | |
| 321 | mutex_lock(&wl->mutex); |
| 322 | |
| 323 | #define DRIVER_STATE_PRINT(x, fmt) \ |
| 324 | (res += scnprintf(buf + res, sizeof(buf) - res,\ |
| 325 | #x " = " fmt "\n", wl->x)) |
| 326 | |
| 327 | #define DRIVER_STATE_PRINT_LONG(x) DRIVER_STATE_PRINT(x, "%ld") |
| 328 | #define DRIVER_STATE_PRINT_INT(x) DRIVER_STATE_PRINT(x, "%d") |
| 329 | #define DRIVER_STATE_PRINT_STR(x) DRIVER_STATE_PRINT(x, "%s") |
| 330 | #define DRIVER_STATE_PRINT_LHEX(x) DRIVER_STATE_PRINT(x, "0x%lx") |
| 331 | #define DRIVER_STATE_PRINT_HEX(x) DRIVER_STATE_PRINT(x, "0x%x") |
| 332 | |
| 333 | DRIVER_STATE_PRINT_INT(tx_blocks_available); |
Arik Nemtsov | 7bb5d6c | 2011-08-14 13:17:00 +0300 | [diff] [blame] | 334 | DRIVER_STATE_PRINT_INT(tx_allocated_blocks); |
Arik Nemtsov | 742246f | 2011-08-14 13:17:33 +0300 | [diff] [blame] | 335 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[0]); |
| 336 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[1]); |
| 337 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[2]); |
| 338 | DRIVER_STATE_PRINT_INT(tx_allocated_pkts[3]); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 339 | DRIVER_STATE_PRINT_INT(tx_frames_cnt); |
| 340 | DRIVER_STATE_PRINT_LHEX(tx_frames_map[0]); |
Arik Nemtsov | f1a4638 | 2011-07-07 14:25:23 +0300 | [diff] [blame] | 341 | DRIVER_STATE_PRINT_INT(tx_queue_count[0]); |
| 342 | DRIVER_STATE_PRINT_INT(tx_queue_count[1]); |
| 343 | DRIVER_STATE_PRINT_INT(tx_queue_count[2]); |
| 344 | DRIVER_STATE_PRINT_INT(tx_queue_count[3]); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 345 | DRIVER_STATE_PRINT_INT(tx_packets_count); |
| 346 | DRIVER_STATE_PRINT_INT(tx_results_count); |
| 347 | DRIVER_STATE_PRINT_LHEX(flags); |
Eliad Peller | 4d56ad9 | 2011-08-14 13:17:05 +0300 | [diff] [blame] | 348 | DRIVER_STATE_PRINT_INT(tx_blocks_freed); |
Oz Krakowski | b992c68 | 2011-06-26 10:36:02 +0300 | [diff] [blame] | 349 | DRIVER_STATE_PRINT_INT(tx_security_last_seq_lsb); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 350 | DRIVER_STATE_PRINT_INT(rx_counter); |
| 351 | DRIVER_STATE_PRINT_INT(session_counter); |
| 352 | DRIVER_STATE_PRINT_INT(state); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 353 | DRIVER_STATE_PRINT_INT(channel); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 354 | DRIVER_STATE_PRINT_INT(band); |
| 355 | DRIVER_STATE_PRINT_INT(beacon_int); |
| 356 | DRIVER_STATE_PRINT_INT(psm_entry_retry); |
| 357 | DRIVER_STATE_PRINT_INT(ps_poll_failures); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 358 | DRIVER_STATE_PRINT_INT(power_level); |
| 359 | DRIVER_STATE_PRINT_INT(rssi_thold); |
| 360 | DRIVER_STATE_PRINT_INT(last_rssi_event); |
| 361 | DRIVER_STATE_PRINT_INT(sg_enabled); |
| 362 | DRIVER_STATE_PRINT_INT(enable_11a); |
| 363 | DRIVER_STATE_PRINT_INT(noise); |
| 364 | DRIVER_STATE_PRINT_LHEX(ap_hlid_map[0]); |
| 365 | DRIVER_STATE_PRINT_INT(last_tx_hlid); |
| 366 | DRIVER_STATE_PRINT_INT(ba_support); |
| 367 | DRIVER_STATE_PRINT_HEX(ba_rx_bitmap); |
| 368 | DRIVER_STATE_PRINT_HEX(ap_fw_ps_map); |
| 369 | DRIVER_STATE_PRINT_LHEX(ap_ps_map); |
| 370 | DRIVER_STATE_PRINT_HEX(quirks); |
| 371 | DRIVER_STATE_PRINT_HEX(irq); |
| 372 | DRIVER_STATE_PRINT_HEX(ref_clock); |
| 373 | DRIVER_STATE_PRINT_HEX(tcxo_clock); |
| 374 | DRIVER_STATE_PRINT_HEX(hw_pg_ver); |
| 375 | DRIVER_STATE_PRINT_HEX(platform_quirks); |
| 376 | DRIVER_STATE_PRINT_HEX(chip.id); |
| 377 | DRIVER_STATE_PRINT_STR(chip.fw_ver_str); |
Luciano Coelho | d3eff81 | 2011-05-10 14:47:45 +0300 | [diff] [blame] | 378 | DRIVER_STATE_PRINT_INT(sched_scanning); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 379 | |
| 380 | #undef DRIVER_STATE_PRINT_INT |
| 381 | #undef DRIVER_STATE_PRINT_LONG |
| 382 | #undef DRIVER_STATE_PRINT_HEX |
| 383 | #undef DRIVER_STATE_PRINT_LHEX |
| 384 | #undef DRIVER_STATE_PRINT_STR |
| 385 | #undef DRIVER_STATE_PRINT |
| 386 | |
| 387 | mutex_unlock(&wl->mutex); |
| 388 | |
| 389 | return simple_read_from_buffer(user_buf, count, ppos, buf, res); |
| 390 | } |
| 391 | |
| 392 | static const struct file_operations driver_state_ops = { |
| 393 | .read = driver_state_read, |
| 394 | .open = wl1271_open_file_generic, |
| 395 | .llseek = default_llseek, |
| 396 | }; |
| 397 | |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 398 | static ssize_t dtim_interval_read(struct file *file, char __user *user_buf, |
| 399 | size_t count, loff_t *ppos) |
| 400 | { |
| 401 | struct wl1271 *wl = file->private_data; |
| 402 | u8 value; |
| 403 | |
| 404 | if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_DTIM || |
| 405 | wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_DTIM) |
| 406 | value = wl->conf.conn.listen_interval; |
| 407 | else |
| 408 | value = 0; |
| 409 | |
| 410 | return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value); |
| 411 | } |
| 412 | |
| 413 | static ssize_t dtim_interval_write(struct file *file, |
| 414 | const char __user *user_buf, |
| 415 | size_t count, loff_t *ppos) |
| 416 | { |
| 417 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 418 | unsigned long value; |
| 419 | int ret; |
| 420 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 421 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 422 | if (ret < 0) { |
| 423 | wl1271_warning("illegal value for dtim_interval"); |
| 424 | return -EINVAL; |
| 425 | } |
| 426 | |
| 427 | if (value < 1 || value > 10) { |
| 428 | wl1271_warning("dtim value is not in valid range"); |
| 429 | return -ERANGE; |
| 430 | } |
| 431 | |
| 432 | mutex_lock(&wl->mutex); |
| 433 | |
| 434 | wl->conf.conn.listen_interval = value; |
| 435 | /* for some reason there are different event types for 1 and >1 */ |
| 436 | if (value == 1) |
| 437 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_DTIM; |
| 438 | else |
| 439 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_DTIM; |
| 440 | |
| 441 | /* |
| 442 | * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only |
| 443 | * take effect on the next time we enter psm. |
| 444 | */ |
| 445 | mutex_unlock(&wl->mutex); |
| 446 | return count; |
| 447 | } |
| 448 | |
| 449 | static const struct file_operations dtim_interval_ops = { |
| 450 | .read = dtim_interval_read, |
| 451 | .write = dtim_interval_write, |
| 452 | .open = wl1271_open_file_generic, |
| 453 | .llseek = default_llseek, |
| 454 | }; |
| 455 | |
| 456 | static ssize_t beacon_interval_read(struct file *file, char __user *user_buf, |
| 457 | size_t count, loff_t *ppos) |
| 458 | { |
| 459 | struct wl1271 *wl = file->private_data; |
| 460 | u8 value; |
| 461 | |
| 462 | if (wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_BEACON || |
| 463 | wl->conf.conn.wake_up_event == CONF_WAKE_UP_EVENT_N_BEACONS) |
| 464 | value = wl->conf.conn.listen_interval; |
| 465 | else |
| 466 | value = 0; |
| 467 | |
| 468 | return wl1271_format_buffer(user_buf, count, ppos, "%d\n", value); |
| 469 | } |
| 470 | |
| 471 | static ssize_t beacon_interval_write(struct file *file, |
| 472 | const char __user *user_buf, |
| 473 | size_t count, loff_t *ppos) |
| 474 | { |
| 475 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 476 | unsigned long value; |
| 477 | int ret; |
| 478 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 479 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 480 | if (ret < 0) { |
| 481 | wl1271_warning("illegal value for beacon_interval"); |
| 482 | return -EINVAL; |
| 483 | } |
| 484 | |
| 485 | if (value < 1 || value > 255) { |
| 486 | wl1271_warning("beacon interval value is not in valid range"); |
| 487 | return -ERANGE; |
| 488 | } |
| 489 | |
| 490 | mutex_lock(&wl->mutex); |
| 491 | |
| 492 | wl->conf.conn.listen_interval = value; |
| 493 | /* for some reason there are different event types for 1 and >1 */ |
| 494 | if (value == 1) |
| 495 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_BEACON; |
| 496 | else |
| 497 | wl->conf.conn.wake_up_event = CONF_WAKE_UP_EVENT_N_BEACONS; |
| 498 | |
| 499 | /* |
| 500 | * we don't reconfigure ACX_WAKE_UP_CONDITIONS now, so it will only |
| 501 | * take effect on the next time we enter psm. |
| 502 | */ |
| 503 | mutex_unlock(&wl->mutex); |
| 504 | return count; |
| 505 | } |
| 506 | |
| 507 | static const struct file_operations beacon_interval_ops = { |
| 508 | .read = beacon_interval_read, |
| 509 | .write = beacon_interval_write, |
| 510 | .open = wl1271_open_file_generic, |
| 511 | .llseek = default_llseek, |
| 512 | }; |
| 513 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 514 | static ssize_t rx_streaming_interval_write(struct file *file, |
| 515 | const char __user *user_buf, |
| 516 | size_t count, loff_t *ppos) |
| 517 | { |
| 518 | struct wl1271 *wl = file->private_data; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 519 | unsigned long value; |
| 520 | int ret; |
| 521 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 522 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 523 | if (ret < 0) { |
| 524 | wl1271_warning("illegal value in rx_streaming_interval!"); |
| 525 | return -EINVAL; |
| 526 | } |
| 527 | |
| 528 | /* valid values: 0, 10-100 */ |
| 529 | if (value && (value < 10 || value > 100)) { |
| 530 | wl1271_warning("value is not in range!"); |
| 531 | return -ERANGE; |
| 532 | } |
| 533 | |
| 534 | mutex_lock(&wl->mutex); |
| 535 | |
| 536 | wl->conf.rx_streaming.interval = value; |
| 537 | |
| 538 | ret = wl1271_ps_elp_wakeup(wl); |
| 539 | if (ret < 0) |
| 540 | goto out; |
| 541 | |
| 542 | wl1271_recalc_rx_streaming(wl); |
| 543 | |
| 544 | wl1271_ps_elp_sleep(wl); |
| 545 | out: |
| 546 | mutex_unlock(&wl->mutex); |
| 547 | return count; |
| 548 | } |
| 549 | |
| 550 | static ssize_t rx_streaming_interval_read(struct file *file, |
| 551 | char __user *userbuf, |
| 552 | size_t count, loff_t *ppos) |
| 553 | { |
| 554 | struct wl1271 *wl = file->private_data; |
| 555 | return wl1271_format_buffer(userbuf, count, ppos, |
| 556 | "%d\n", wl->conf.rx_streaming.interval); |
| 557 | } |
| 558 | |
| 559 | static const struct file_operations rx_streaming_interval_ops = { |
| 560 | .read = rx_streaming_interval_read, |
| 561 | .write = rx_streaming_interval_write, |
| 562 | .open = wl1271_open_file_generic, |
| 563 | .llseek = default_llseek, |
| 564 | }; |
| 565 | |
| 566 | static ssize_t rx_streaming_always_write(struct file *file, |
| 567 | const char __user *user_buf, |
| 568 | size_t count, loff_t *ppos) |
| 569 | { |
| 570 | struct wl1271 *wl = file->private_data; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 571 | unsigned long value; |
| 572 | int ret; |
| 573 | |
Eliad Peller | b688358 | 2011-08-31 14:50:13 +0300 | [diff] [blame] | 574 | ret = kstrtoul_from_user(user_buf, count, 10, &value); |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 575 | if (ret < 0) { |
| 576 | wl1271_warning("illegal value in rx_streaming_write!"); |
| 577 | return -EINVAL; |
| 578 | } |
| 579 | |
| 580 | /* valid values: 0, 10-100 */ |
| 581 | if (!(value == 0 || value == 1)) { |
| 582 | wl1271_warning("value is not in valid!"); |
| 583 | return -EINVAL; |
| 584 | } |
| 585 | |
| 586 | mutex_lock(&wl->mutex); |
| 587 | |
| 588 | wl->conf.rx_streaming.always = value; |
| 589 | |
| 590 | ret = wl1271_ps_elp_wakeup(wl); |
| 591 | if (ret < 0) |
| 592 | goto out; |
| 593 | |
| 594 | wl1271_recalc_rx_streaming(wl); |
| 595 | |
| 596 | wl1271_ps_elp_sleep(wl); |
| 597 | out: |
| 598 | mutex_unlock(&wl->mutex); |
| 599 | return count; |
| 600 | } |
| 601 | |
| 602 | static ssize_t rx_streaming_always_read(struct file *file, |
| 603 | char __user *userbuf, |
| 604 | size_t count, loff_t *ppos) |
| 605 | { |
| 606 | struct wl1271 *wl = file->private_data; |
| 607 | return wl1271_format_buffer(userbuf, count, ppos, |
| 608 | "%d\n", wl->conf.rx_streaming.always); |
| 609 | } |
| 610 | |
| 611 | static const struct file_operations rx_streaming_always_ops = { |
| 612 | .read = rx_streaming_always_read, |
| 613 | .write = rx_streaming_always_write, |
| 614 | .open = wl1271_open_file_generic, |
| 615 | .llseek = default_llseek, |
| 616 | }; |
| 617 | |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 618 | static ssize_t beacon_filtering_write(struct file *file, |
| 619 | const char __user *user_buf, |
| 620 | size_t count, loff_t *ppos) |
| 621 | { |
| 622 | struct wl1271 *wl = file->private_data; |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame^] | 623 | struct ieee80211_vif *vif; |
| 624 | struct wl12xx_vif *wlvif; |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 625 | char buf[10]; |
| 626 | size_t len; |
| 627 | unsigned long value; |
| 628 | int ret; |
| 629 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame^] | 630 | if (!wl->vif) |
| 631 | return -EINVAL; |
| 632 | |
| 633 | vif = wl->vif; |
| 634 | wlvif = wl12xx_vif_to_data(vif); |
| 635 | |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 636 | len = min(count, sizeof(buf) - 1); |
| 637 | if (copy_from_user(buf, user_buf, len)) |
| 638 | return -EFAULT; |
| 639 | buf[len] = '\0'; |
| 640 | |
| 641 | ret = kstrtoul(buf, 0, &value); |
| 642 | if (ret < 0) { |
| 643 | wl1271_warning("illegal value for beacon_filtering!"); |
| 644 | return -EINVAL; |
| 645 | } |
| 646 | |
| 647 | mutex_lock(&wl->mutex); |
| 648 | |
| 649 | ret = wl1271_ps_elp_wakeup(wl); |
| 650 | if (ret < 0) |
| 651 | goto out; |
| 652 | |
Eliad Peller | 0603d89 | 2011-10-05 11:55:51 +0200 | [diff] [blame^] | 653 | ret = wl1271_acx_beacon_filter_opt(wl, wlvif, !!value); |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 654 | |
| 655 | wl1271_ps_elp_sleep(wl); |
| 656 | out: |
| 657 | mutex_unlock(&wl->mutex); |
| 658 | return count; |
| 659 | } |
| 660 | |
| 661 | static const struct file_operations beacon_filtering_ops = { |
| 662 | .write = beacon_filtering_write, |
| 663 | .open = wl1271_open_file_generic, |
| 664 | .llseek = default_llseek, |
| 665 | }; |
| 666 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 667 | static int wl1271_debugfs_add_files(struct wl1271 *wl, |
| 668 | struct dentry *rootdir) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 669 | { |
| 670 | int ret = 0; |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 671 | struct dentry *entry, *stats, *streaming; |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 672 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 673 | stats = debugfs_create_dir("fw-statistics", rootdir); |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 674 | if (!stats || IS_ERR(stats)) { |
| 675 | entry = stats; |
| 676 | goto err; |
| 677 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 678 | |
| 679 | DEBUGFS_FWSTATS_ADD(tx, internal_desc_overflow); |
| 680 | |
| 681 | DEBUGFS_FWSTATS_ADD(rx, out_of_mem); |
| 682 | DEBUGFS_FWSTATS_ADD(rx, hdr_overflow); |
| 683 | DEBUGFS_FWSTATS_ADD(rx, hw_stuck); |
| 684 | DEBUGFS_FWSTATS_ADD(rx, dropped); |
| 685 | DEBUGFS_FWSTATS_ADD(rx, fcs_err); |
| 686 | DEBUGFS_FWSTATS_ADD(rx, xfr_hint_trig); |
| 687 | DEBUGFS_FWSTATS_ADD(rx, path_reset); |
| 688 | DEBUGFS_FWSTATS_ADD(rx, reset_counter); |
| 689 | |
| 690 | DEBUGFS_FWSTATS_ADD(dma, rx_requested); |
| 691 | DEBUGFS_FWSTATS_ADD(dma, rx_errors); |
| 692 | DEBUGFS_FWSTATS_ADD(dma, tx_requested); |
| 693 | DEBUGFS_FWSTATS_ADD(dma, tx_errors); |
| 694 | |
| 695 | DEBUGFS_FWSTATS_ADD(isr, cmd_cmplt); |
| 696 | DEBUGFS_FWSTATS_ADD(isr, fiqs); |
| 697 | DEBUGFS_FWSTATS_ADD(isr, rx_headers); |
| 698 | DEBUGFS_FWSTATS_ADD(isr, rx_mem_overflow); |
| 699 | DEBUGFS_FWSTATS_ADD(isr, rx_rdys); |
| 700 | DEBUGFS_FWSTATS_ADD(isr, irqs); |
| 701 | DEBUGFS_FWSTATS_ADD(isr, tx_procs); |
| 702 | DEBUGFS_FWSTATS_ADD(isr, decrypt_done); |
| 703 | DEBUGFS_FWSTATS_ADD(isr, dma0_done); |
| 704 | DEBUGFS_FWSTATS_ADD(isr, dma1_done); |
| 705 | DEBUGFS_FWSTATS_ADD(isr, tx_exch_complete); |
| 706 | DEBUGFS_FWSTATS_ADD(isr, commands); |
| 707 | DEBUGFS_FWSTATS_ADD(isr, rx_procs); |
| 708 | DEBUGFS_FWSTATS_ADD(isr, hw_pm_mode_changes); |
| 709 | DEBUGFS_FWSTATS_ADD(isr, host_acknowledges); |
| 710 | DEBUGFS_FWSTATS_ADD(isr, pci_pm); |
| 711 | DEBUGFS_FWSTATS_ADD(isr, wakeups); |
| 712 | DEBUGFS_FWSTATS_ADD(isr, low_rssi); |
| 713 | |
| 714 | DEBUGFS_FWSTATS_ADD(wep, addr_key_count); |
| 715 | DEBUGFS_FWSTATS_ADD(wep, default_key_count); |
| 716 | /* skipping wep.reserved */ |
| 717 | DEBUGFS_FWSTATS_ADD(wep, key_not_found); |
| 718 | DEBUGFS_FWSTATS_ADD(wep, decrypt_fail); |
| 719 | DEBUGFS_FWSTATS_ADD(wep, packets); |
| 720 | DEBUGFS_FWSTATS_ADD(wep, interrupt); |
| 721 | |
| 722 | DEBUGFS_FWSTATS_ADD(pwr, ps_enter); |
| 723 | DEBUGFS_FWSTATS_ADD(pwr, elp_enter); |
| 724 | DEBUGFS_FWSTATS_ADD(pwr, missing_bcns); |
| 725 | DEBUGFS_FWSTATS_ADD(pwr, wake_on_host); |
| 726 | DEBUGFS_FWSTATS_ADD(pwr, wake_on_timer_exp); |
| 727 | DEBUGFS_FWSTATS_ADD(pwr, tx_with_ps); |
| 728 | DEBUGFS_FWSTATS_ADD(pwr, tx_without_ps); |
| 729 | DEBUGFS_FWSTATS_ADD(pwr, rcvd_beacons); |
| 730 | DEBUGFS_FWSTATS_ADD(pwr, power_save_off); |
| 731 | DEBUGFS_FWSTATS_ADD(pwr, enable_ps); |
| 732 | DEBUGFS_FWSTATS_ADD(pwr, disable_ps); |
| 733 | DEBUGFS_FWSTATS_ADD(pwr, fix_tsf_ps); |
| 734 | /* skipping cont_miss_bcns_spread for now */ |
| 735 | DEBUGFS_FWSTATS_ADD(pwr, rcvd_awake_beacons); |
| 736 | |
| 737 | DEBUGFS_FWSTATS_ADD(mic, rx_pkts); |
| 738 | DEBUGFS_FWSTATS_ADD(mic, calc_failure); |
| 739 | |
| 740 | DEBUGFS_FWSTATS_ADD(aes, encrypt_fail); |
| 741 | DEBUGFS_FWSTATS_ADD(aes, decrypt_fail); |
| 742 | DEBUGFS_FWSTATS_ADD(aes, encrypt_packets); |
| 743 | DEBUGFS_FWSTATS_ADD(aes, decrypt_packets); |
| 744 | DEBUGFS_FWSTATS_ADD(aes, encrypt_interrupt); |
| 745 | DEBUGFS_FWSTATS_ADD(aes, decrypt_interrupt); |
| 746 | |
| 747 | DEBUGFS_FWSTATS_ADD(event, heart_beat); |
| 748 | DEBUGFS_FWSTATS_ADD(event, calibration); |
| 749 | DEBUGFS_FWSTATS_ADD(event, rx_mismatch); |
| 750 | DEBUGFS_FWSTATS_ADD(event, rx_mem_empty); |
| 751 | DEBUGFS_FWSTATS_ADD(event, rx_pool); |
| 752 | DEBUGFS_FWSTATS_ADD(event, oom_late); |
| 753 | DEBUGFS_FWSTATS_ADD(event, phy_transmit_error); |
| 754 | DEBUGFS_FWSTATS_ADD(event, tx_stuck); |
| 755 | |
| 756 | DEBUGFS_FWSTATS_ADD(ps, pspoll_timeouts); |
| 757 | DEBUGFS_FWSTATS_ADD(ps, upsd_timeouts); |
| 758 | DEBUGFS_FWSTATS_ADD(ps, upsd_max_sptime); |
| 759 | DEBUGFS_FWSTATS_ADD(ps, upsd_max_apturn); |
| 760 | DEBUGFS_FWSTATS_ADD(ps, pspoll_max_apturn); |
| 761 | DEBUGFS_FWSTATS_ADD(ps, pspoll_utilization); |
| 762 | DEBUGFS_FWSTATS_ADD(ps, upsd_utilization); |
| 763 | |
| 764 | DEBUGFS_FWSTATS_ADD(rxpipe, rx_prep_beacon_drop); |
| 765 | DEBUGFS_FWSTATS_ADD(rxpipe, descr_host_int_trig_rx_data); |
| 766 | DEBUGFS_FWSTATS_ADD(rxpipe, beacon_buffer_thres_host_int_trig_rx_data); |
| 767 | DEBUGFS_FWSTATS_ADD(rxpipe, missed_beacon_host_int_trig_rx_data); |
| 768 | DEBUGFS_FWSTATS_ADD(rxpipe, tx_xfr_host_int_trig_rx_data); |
| 769 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 770 | DEBUGFS_ADD(tx_queue_len, rootdir); |
| 771 | DEBUGFS_ADD(retry_count, rootdir); |
| 772 | DEBUGFS_ADD(excessive_retries, rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 773 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 774 | DEBUGFS_ADD(gpio_power, rootdir); |
Arik Nemtsov | 2dc5a5c | 2011-04-18 14:15:27 +0300 | [diff] [blame] | 775 | DEBUGFS_ADD(start_recovery, rootdir); |
Arik Nemtsov | 2d66bee | 2011-04-18 14:15:29 +0300 | [diff] [blame] | 776 | DEBUGFS_ADD(driver_state, rootdir); |
Eliad Peller | 1fe9e24 | 2011-04-17 11:20:47 +0300 | [diff] [blame] | 777 | DEBUGFS_ADD(dtim_interval, rootdir); |
| 778 | DEBUGFS_ADD(beacon_interval, rootdir); |
Eliad Peller | a0a5215 | 2011-08-25 18:11:00 +0300 | [diff] [blame] | 779 | DEBUGFS_ADD(beacon_filtering, rootdir); |
Luciano Coelho | 98b2a68 | 2009-12-11 15:40:52 +0200 | [diff] [blame] | 780 | |
Eliad Peller | c84368e | 2011-05-15 11:10:30 +0300 | [diff] [blame] | 781 | streaming = debugfs_create_dir("rx_streaming", rootdir); |
| 782 | if (!streaming || IS_ERR(streaming)) |
| 783 | goto err; |
| 784 | |
| 785 | DEBUGFS_ADD_PREFIX(rx_streaming, interval, streaming); |
| 786 | DEBUGFS_ADD_PREFIX(rx_streaming, always, streaming); |
| 787 | |
| 788 | |
Eliad Peller | 7cb2cea | 2010-11-24 12:53:15 +0200 | [diff] [blame] | 789 | return 0; |
| 790 | |
| 791 | err: |
| 792 | if (IS_ERR(entry)) |
| 793 | ret = PTR_ERR(entry); |
| 794 | else |
| 795 | ret = -ENOMEM; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 796 | |
| 797 | return ret; |
| 798 | } |
| 799 | |
| 800 | void wl1271_debugfs_reset(struct wl1271 *wl) |
| 801 | { |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 802 | if (!wl->stats.fw_stats) |
Luciano Coelho | 43a598d | 2010-11-30 14:58:46 +0200 | [diff] [blame] | 803 | return; |
| 804 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 805 | memset(wl->stats.fw_stats, 0, sizeof(*wl->stats.fw_stats)); |
| 806 | wl->stats.retry_count = 0; |
| 807 | wl->stats.excessive_retries = 0; |
| 808 | } |
| 809 | |
| 810 | int wl1271_debugfs_init(struct wl1271 *wl) |
| 811 | { |
| 812 | int ret; |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 813 | struct dentry *rootdir; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 814 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 815 | rootdir = debugfs_create_dir(KBUILD_MODNAME, |
| 816 | wl->hw->wiphy->debugfsdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 817 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 818 | if (IS_ERR(rootdir)) { |
| 819 | ret = PTR_ERR(rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 820 | goto err; |
| 821 | } |
| 822 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 823 | wl->stats.fw_stats = kzalloc(sizeof(*wl->stats.fw_stats), |
| 824 | GFP_KERNEL); |
| 825 | |
| 826 | if (!wl->stats.fw_stats) { |
| 827 | ret = -ENOMEM; |
| 828 | goto err_fw; |
| 829 | } |
| 830 | |
| 831 | wl->stats.fw_stats_update = jiffies; |
| 832 | |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 833 | ret = wl1271_debugfs_add_files(wl, rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 834 | |
| 835 | if (ret < 0) |
| 836 | goto err_file; |
| 837 | |
| 838 | return 0; |
| 839 | |
| 840 | err_file: |
| 841 | kfree(wl->stats.fw_stats); |
| 842 | wl->stats.fw_stats = NULL; |
| 843 | |
| 844 | err_fw: |
Eliad Peller | 3c2c04a | 2010-12-15 11:47:54 +0200 | [diff] [blame] | 845 | debugfs_remove_recursive(rootdir); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 846 | |
| 847 | err: |
| 848 | return ret; |
| 849 | } |
| 850 | |
| 851 | void wl1271_debugfs_exit(struct wl1271 *wl) |
| 852 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 853 | kfree(wl->stats.fw_stats); |
| 854 | wl->stats.fw_stats = NULL; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 855 | } |