Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * GPL LICENSE SUMMARY |
| 4 | * |
Wey-Yi Guy | 901069c | 2011-04-05 09:42:00 -0700 | [diff] [blame] | 5 | * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of version 2 of the GNU General Public License as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 19 | * USA |
| 20 | * |
| 21 | * The full GNU General Public License is included in this distribution |
| 22 | * in the file called LICENSE.GPL. |
| 23 | * |
| 24 | * Contact Information: |
Winkler, Tomas | 759ef89 | 2008-12-09 11:28:58 -0800 | [diff] [blame] | 25 | * Intel Linux Wireless <ilw@linux.intel.com> |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 26 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 27 | *****************************************************************************/ |
| 28 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/debugfs.h> |
| 33 | |
| 34 | #include <linux/ieee80211.h> |
| 35 | #include <net/mac80211.h> |
| 36 | |
| 37 | |
Tomas Winkler | 3e0d4cb | 2008-04-24 11:55:38 -0700 | [diff] [blame] | 38 | #include "iwl-dev.h" |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 39 | #include "iwl-debug.h" |
Tomas Winkler | fee1247 | 2008-04-03 16:05:21 -0700 | [diff] [blame] | 40 | #include "iwl-core.h" |
Tomas Winkler | 3395f6e | 2008-03-25 16:33:37 -0700 | [diff] [blame] | 41 | #include "iwl-io.h" |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 42 | |
| 43 | /* create and remove of files */ |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 44 | #define DEBUGFS_ADD_FILE(name, parent, mode) do { \ |
| 45 | if (!debugfs_create_file(#name, mode, parent, priv, \ |
| 46 | &iwl_dbgfs_##name##_ops)) \ |
| 47 | goto err; \ |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 48 | } while (0) |
| 49 | |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 50 | #define DEBUGFS_ADD_BOOL(name, parent, ptr) do { \ |
| 51 | struct dentry *__tmp; \ |
| 52 | __tmp = debugfs_create_bool(#name, S_IWUSR | S_IRUSR, \ |
| 53 | parent, ptr); \ |
| 54 | if (IS_ERR(__tmp) || !__tmp) \ |
| 55 | goto err; \ |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 56 | } while (0) |
| 57 | |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 58 | #define DEBUGFS_ADD_X32(name, parent, ptr) do { \ |
| 59 | struct dentry *__tmp; \ |
| 60 | __tmp = debugfs_create_x32(#name, S_IWUSR | S_IRUSR, \ |
| 61 | parent, ptr); \ |
| 62 | if (IS_ERR(__tmp) || !__tmp) \ |
| 63 | goto err; \ |
Tomas Winkler | 445c2df | 2008-05-15 13:54:16 +0800 | [diff] [blame] | 64 | } while (0) |
| 65 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 66 | /* file operation */ |
| 67 | #define DEBUGFS_READ_FUNC(name) \ |
| 68 | static ssize_t iwl_dbgfs_##name##_read(struct file *file, \ |
| 69 | char __user *user_buf, \ |
| 70 | size_t count, loff_t *ppos); |
| 71 | |
| 72 | #define DEBUGFS_WRITE_FUNC(name) \ |
| 73 | static ssize_t iwl_dbgfs_##name##_write(struct file *file, \ |
| 74 | const char __user *user_buf, \ |
| 75 | size_t count, loff_t *ppos); |
| 76 | |
| 77 | |
| 78 | static int iwl_dbgfs_open_file_generic(struct inode *inode, struct file *file) |
| 79 | { |
| 80 | file->private_data = inode->i_private; |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | #define DEBUGFS_READ_FILE_OPS(name) \ |
| 85 | DEBUGFS_READ_FUNC(name); \ |
| 86 | static const struct file_operations iwl_dbgfs_##name##_ops = { \ |
| 87 | .read = iwl_dbgfs_##name##_read, \ |
| 88 | .open = iwl_dbgfs_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 89 | .llseek = generic_file_llseek, \ |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Ester Kummer | 189a2b5 | 2008-05-15 13:54:18 +0800 | [diff] [blame] | 92 | #define DEBUGFS_WRITE_FILE_OPS(name) \ |
| 93 | DEBUGFS_WRITE_FUNC(name); \ |
| 94 | static const struct file_operations iwl_dbgfs_##name##_ops = { \ |
| 95 | .write = iwl_dbgfs_##name##_write, \ |
| 96 | .open = iwl_dbgfs_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 97 | .llseek = generic_file_llseek, \ |
Ester Kummer | 189a2b5 | 2008-05-15 13:54:18 +0800 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 101 | #define DEBUGFS_READ_WRITE_FILE_OPS(name) \ |
| 102 | DEBUGFS_READ_FUNC(name); \ |
| 103 | DEBUGFS_WRITE_FUNC(name); \ |
| 104 | static const struct file_operations iwl_dbgfs_##name##_ops = { \ |
| 105 | .write = iwl_dbgfs_##name##_write, \ |
| 106 | .read = iwl_dbgfs_##name##_read, \ |
| 107 | .open = iwl_dbgfs_open_file_generic, \ |
Arnd Bergmann | 2b18ab36 | 2010-07-06 19:05:31 +0200 | [diff] [blame] | 108 | .llseek = generic_file_llseek, \ |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 109 | }; |
| 110 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 111 | static ssize_t iwl_dbgfs_tx_statistics_read(struct file *file, |
| 112 | char __user *user_buf, |
| 113 | size_t count, loff_t *ppos) { |
| 114 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 115 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 116 | char *buf; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 117 | int pos = 0; |
| 118 | |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 119 | int cnt; |
| 120 | ssize_t ret; |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 121 | const size_t bufsz = 100 + |
| 122 | sizeof(char) * 50 * (MANAGEMENT_MAX + CONTROL_MAX); |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 123 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 124 | if (!buf) |
| 125 | return -ENOMEM; |
| 126 | pos += scnprintf(buf + pos, bufsz - pos, "Management:\n"); |
| 127 | for (cnt = 0; cnt < MANAGEMENT_MAX; cnt++) { |
| 128 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 129 | "\t%25s\t\t: %u\n", |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 130 | get_mgmt_string(cnt), |
| 131 | priv->tx_stats.mgmt[cnt]); |
| 132 | } |
| 133 | pos += scnprintf(buf + pos, bufsz - pos, "Control\n"); |
| 134 | for (cnt = 0; cnt < CONTROL_MAX; cnt++) { |
| 135 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 136 | "\t%25s\t\t: %u\n", |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 137 | get_ctrl_string(cnt), |
| 138 | priv->tx_stats.ctrl[cnt]); |
| 139 | } |
| 140 | pos += scnprintf(buf + pos, bufsz - pos, "Data:\n"); |
| 141 | pos += scnprintf(buf + pos, bufsz - pos, "\tcnt: %u\n", |
| 142 | priv->tx_stats.data_cnt); |
| 143 | pos += scnprintf(buf + pos, bufsz - pos, "\tbytes: %llu\n", |
| 144 | priv->tx_stats.data_bytes); |
| 145 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 146 | kfree(buf); |
| 147 | return ret; |
| 148 | } |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 149 | |
Wey-Yi Guy | 7163b8a | 2009-11-20 12:04:56 -0800 | [diff] [blame] | 150 | static ssize_t iwl_dbgfs_clear_traffic_statistics_write(struct file *file, |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 151 | const char __user *user_buf, |
| 152 | size_t count, loff_t *ppos) |
| 153 | { |
| 154 | struct iwl_priv *priv = file->private_data; |
| 155 | u32 clear_flag; |
| 156 | char buf[8]; |
| 157 | int buf_size; |
| 158 | |
| 159 | memset(buf, 0, sizeof(buf)); |
| 160 | buf_size = min(count, sizeof(buf) - 1); |
| 161 | if (copy_from_user(buf, user_buf, buf_size)) |
| 162 | return -EFAULT; |
| 163 | if (sscanf(buf, "%x", &clear_flag) != 1) |
| 164 | return -EFAULT; |
Wey-Yi Guy | 7163b8a | 2009-11-20 12:04:56 -0800 | [diff] [blame] | 165 | iwl_clear_traffic_stats(priv); |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 166 | |
| 167 | return count; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static ssize_t iwl_dbgfs_rx_statistics_read(struct file *file, |
| 171 | char __user *user_buf, |
| 172 | size_t count, loff_t *ppos) { |
| 173 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 174 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 175 | char *buf; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 176 | int pos = 0; |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 177 | int cnt; |
| 178 | ssize_t ret; |
| 179 | const size_t bufsz = 100 + |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 180 | sizeof(char) * 50 * (MANAGEMENT_MAX + CONTROL_MAX); |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 181 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 182 | if (!buf) |
| 183 | return -ENOMEM; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 184 | |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 185 | pos += scnprintf(buf + pos, bufsz - pos, "Management:\n"); |
| 186 | for (cnt = 0; cnt < MANAGEMENT_MAX; cnt++) { |
| 187 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 188 | "\t%25s\t\t: %u\n", |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 189 | get_mgmt_string(cnt), |
| 190 | priv->rx_stats.mgmt[cnt]); |
| 191 | } |
| 192 | pos += scnprintf(buf + pos, bufsz - pos, "Control:\n"); |
| 193 | for (cnt = 0; cnt < CONTROL_MAX; cnt++) { |
| 194 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | 98a7b43 | 2009-11-13 11:56:31 -0800 | [diff] [blame] | 195 | "\t%25s\t\t: %u\n", |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 196 | get_ctrl_string(cnt), |
| 197 | priv->rx_stats.ctrl[cnt]); |
| 198 | } |
| 199 | pos += scnprintf(buf + pos, bufsz - pos, "Data:\n"); |
| 200 | pos += scnprintf(buf + pos, bufsz - pos, "\tcnt: %u\n", |
| 201 | priv->rx_stats.data_cnt); |
| 202 | pos += scnprintf(buf + pos, bufsz - pos, "\tbytes: %llu\n", |
| 203 | priv->rx_stats.data_bytes); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 204 | |
Wey-Yi Guy | 22fdf3c | 2009-08-07 15:41:40 -0700 | [diff] [blame] | 205 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 206 | kfree(buf); |
| 207 | return ret; |
| 208 | } |
| 209 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 210 | static ssize_t iwl_dbgfs_sram_read(struct file *file, |
| 211 | char __user *user_buf, |
| 212 | size_t count, loff_t *ppos) |
| 213 | { |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 214 | u32 val = 0; |
Wey-Yi Guy | 2943f13 | 2009-11-20 12:05:00 -0800 | [diff] [blame] | 215 | char *buf; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 216 | ssize_t ret; |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 217 | int i = 0; |
| 218 | bool device_format = false; |
| 219 | int offset = 0; |
| 220 | int len = 0; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 221 | int pos = 0; |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 222 | int sram; |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 223 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 2943f13 | 2009-11-20 12:05:00 -0800 | [diff] [blame] | 224 | size_t bufsz; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 225 | |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 226 | /* default is to dump the entire data segment */ |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 227 | if (!priv->dbgfs_sram_offset && !priv->dbgfs_sram_len) { |
| 228 | priv->dbgfs_sram_offset = 0x800000; |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 229 | if (priv->ucode_type == UCODE_INIT) |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 230 | priv->dbgfs_sram_len = priv->ucode_init_data.len; |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 231 | else |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 232 | priv->dbgfs_sram_len = priv->ucode_data.len; |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 233 | } |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 234 | len = priv->dbgfs_sram_len; |
| 235 | |
| 236 | if (len == -4) { |
| 237 | device_format = true; |
| 238 | len = 4; |
| 239 | } |
| 240 | |
| 241 | bufsz = 50 + len * 4; |
Wey-Yi Guy | 2943f13 | 2009-11-20 12:05:00 -0800 | [diff] [blame] | 242 | buf = kmalloc(bufsz, GFP_KERNEL); |
| 243 | if (!buf) |
| 244 | return -ENOMEM; |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 245 | |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 246 | pos += scnprintf(buf + pos, bufsz - pos, "sram_len: 0x%x\n", |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 247 | len); |
Wey-Yi Guy | 5ade1e4 | 2009-11-20 12:05:04 -0800 | [diff] [blame] | 248 | pos += scnprintf(buf + pos, bufsz - pos, "sram_offset: 0x%x\n", |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 249 | priv->dbgfs_sram_offset); |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 250 | |
| 251 | /* adjust sram address since reads are only on even u32 boundaries */ |
| 252 | offset = priv->dbgfs_sram_offset & 0x3; |
| 253 | sram = priv->dbgfs_sram_offset & ~0x3; |
| 254 | |
| 255 | /* read the first u32 from sram */ |
| 256 | val = iwl_read_targ_mem(priv, sram); |
| 257 | |
| 258 | for (; len; len--) { |
| 259 | /* put the address at the start of every line */ |
| 260 | if (i == 0) |
| 261 | pos += scnprintf(buf + pos, bufsz - pos, |
| 262 | "%08X: ", sram + offset); |
| 263 | |
| 264 | if (device_format) |
| 265 | pos += scnprintf(buf + pos, bufsz - pos, |
| 266 | "%02x", (val >> (8 * (3 - offset))) & 0xff); |
| 267 | else |
| 268 | pos += scnprintf(buf + pos, bufsz - pos, |
| 269 | "%02x ", (val >> (8 * offset)) & 0xff); |
| 270 | |
| 271 | /* if all bytes processed, read the next u32 from sram */ |
| 272 | if (++offset == 4) { |
| 273 | sram += 4; |
| 274 | offset = 0; |
| 275 | val = iwl_read_targ_mem(priv, sram); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 276 | } |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 277 | |
| 278 | /* put in extra spaces and split lines for human readability */ |
| 279 | if (++i == 16) { |
| 280 | i = 0; |
Wey-Yi Guy | 2943f13 | 2009-11-20 12:05:00 -0800 | [diff] [blame] | 281 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 282 | } else if (!(i & 7)) { |
| 283 | pos += scnprintf(buf + pos, bufsz - pos, " "); |
| 284 | } else if (!(i & 3)) { |
| 285 | pos += scnprintf(buf + pos, bufsz - pos, " "); |
| 286 | } |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 287 | } |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 288 | if (i) |
| 289 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 290 | |
| 291 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | 2943f13 | 2009-11-20 12:05:00 -0800 | [diff] [blame] | 292 | kfree(buf); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 293 | return ret; |
| 294 | } |
| 295 | |
| 296 | static ssize_t iwl_dbgfs_sram_write(struct file *file, |
| 297 | const char __user *user_buf, |
| 298 | size_t count, loff_t *ppos) |
| 299 | { |
| 300 | struct iwl_priv *priv = file->private_data; |
| 301 | char buf[64]; |
| 302 | int buf_size; |
| 303 | u32 offset, len; |
| 304 | |
| 305 | memset(buf, 0, sizeof(buf)); |
| 306 | buf_size = min(count, sizeof(buf) - 1); |
| 307 | if (copy_from_user(buf, user_buf, buf_size)) |
| 308 | return -EFAULT; |
| 309 | |
| 310 | if (sscanf(buf, "%x,%x", &offset, &len) == 2) { |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 311 | priv->dbgfs_sram_offset = offset; |
| 312 | priv->dbgfs_sram_len = len; |
Jay Sternberg | 24834d2 | 2011-01-11 15:41:00 -0800 | [diff] [blame] | 313 | } else if (sscanf(buf, "%x", &offset) == 1) { |
| 314 | priv->dbgfs_sram_offset = offset; |
| 315 | priv->dbgfs_sram_len = -4; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 316 | } else { |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 317 | priv->dbgfs_sram_offset = 0; |
| 318 | priv->dbgfs_sram_len = 0; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | return count; |
| 322 | } |
| 323 | |
| 324 | static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf, |
| 325 | size_t count, loff_t *ppos) |
| 326 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 327 | struct iwl_priv *priv = file->private_data; |
Tomas Winkler | 6def976 | 2008-05-05 10:22:31 +0800 | [diff] [blame] | 328 | struct iwl_station_entry *station; |
Tomas Winkler | 5425e49 | 2008-04-15 16:01:38 -0700 | [diff] [blame] | 329 | int max_sta = priv->hw_params.max_stations; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 330 | char *buf; |
| 331 | int i, j, pos = 0; |
| 332 | ssize_t ret; |
| 333 | /* Add 30 for initial string */ |
| 334 | const size_t bufsz = 30 + sizeof(char) * 500 * (priv->num_stations); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 335 | |
| 336 | buf = kmalloc(bufsz, GFP_KERNEL); |
Tomas Winkler | 3ac7f14 | 2008-07-21 02:40:14 +0300 | [diff] [blame] | 337 | if (!buf) |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 338 | return -ENOMEM; |
| 339 | |
Abhijeet Kolekar | db0589f | 2008-04-14 21:16:04 -0700 | [diff] [blame] | 340 | pos += scnprintf(buf + pos, bufsz - pos, "num of stations: %d\n\n", |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 341 | priv->num_stations); |
| 342 | |
| 343 | for (i = 0; i < max_sta; i++) { |
| 344 | station = &priv->stations[i]; |
Johannes Berg | da73511 | 2010-05-03 01:25:24 -0700 | [diff] [blame] | 345 | if (!station->used) |
| 346 | continue; |
| 347 | pos += scnprintf(buf + pos, bufsz - pos, |
| 348 | "station %d - addr: %pM, flags: %#x\n", |
| 349 | i, station->sta.sta.addr, |
| 350 | station->sta.station_flags_msk); |
| 351 | pos += scnprintf(buf + pos, bufsz - pos, |
| 352 | "TID\tseq_num\ttxq_id\tframes\ttfds\t"); |
| 353 | pos += scnprintf(buf + pos, bufsz - pos, |
| 354 | "start_idx\tbitmap\t\t\trate_n_flags\n"); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 355 | |
Johannes Berg | da73511 | 2010-05-03 01:25:24 -0700 | [diff] [blame] | 356 | for (j = 0; j < MAX_TID_COUNT; j++) { |
| 357 | pos += scnprintf(buf + pos, bufsz - pos, |
| 358 | "%d:\t%#x\t%#x\t%u\t%u\t%u\t\t%#.16llx\t%#x", |
| 359 | j, station->tid[j].seq_number, |
| 360 | station->tid[j].agg.txq_id, |
| 361 | station->tid[j].agg.frame_count, |
| 362 | station->tid[j].tfds_in_queue, |
| 363 | station->tid[j].agg.start_idx, |
| 364 | station->tid[j].agg.bitmap, |
| 365 | station->tid[j].agg.rate_n_flags); |
| 366 | |
| 367 | if (station->tid[j].agg.wait_for_ba) |
Abhijeet Kolekar | db0589f | 2008-04-14 21:16:04 -0700 | [diff] [blame] | 368 | pos += scnprintf(buf + pos, bufsz - pos, |
Johannes Berg | da73511 | 2010-05-03 01:25:24 -0700 | [diff] [blame] | 369 | " - waitforba"); |
Abhijeet Kolekar | db0589f | 2008-04-14 21:16:04 -0700 | [diff] [blame] | 370 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 371 | } |
Johannes Berg | da73511 | 2010-05-03 01:25:24 -0700 | [diff] [blame] | 372 | |
| 373 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 377 | kfree(buf); |
| 378 | return ret; |
| 379 | } |
| 380 | |
Wey-Yi Guy | 0848e29 | 2009-05-22 11:01:46 -0700 | [diff] [blame] | 381 | static ssize_t iwl_dbgfs_nvm_read(struct file *file, |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 382 | char __user *user_buf, |
| 383 | size_t count, |
| 384 | loff_t *ppos) |
| 385 | { |
| 386 | ssize_t ret; |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 387 | struct iwl_priv *priv = file->private_data; |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 388 | int pos = 0, ofs = 0, buf_size = 0; |
| 389 | const u8 *ptr; |
| 390 | char *buf; |
Wey-Yi Guy | e307ddc | 2009-09-11 10:38:16 -0700 | [diff] [blame] | 391 | u16 eeprom_ver; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 392 | size_t eeprom_len = priv->cfg->base_params->eeprom_size; |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 393 | buf_size = 4 * eeprom_len + 256; |
| 394 | |
| 395 | if (eeprom_len % 16) { |
Wey-Yi Guy | 0848e29 | 2009-05-22 11:01:46 -0700 | [diff] [blame] | 396 | IWL_ERR(priv, "NVM size is not multiple of 16.\n"); |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 397 | return -ENODATA; |
| 398 | } |
| 399 | |
Julia Lawall | c37457e | 2009-08-03 11:11:45 +0200 | [diff] [blame] | 400 | ptr = priv->eeprom; |
| 401 | if (!ptr) { |
| 402 | IWL_ERR(priv, "Invalid EEPROM/OTP memory\n"); |
| 403 | return -ENOMEM; |
| 404 | } |
| 405 | |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 406 | /* 4 characters for byte 0xYY */ |
| 407 | buf = kzalloc(buf_size, GFP_KERNEL); |
| 408 | if (!buf) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 409 | IWL_ERR(priv, "Can not allocate Buffer\n"); |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 410 | return -ENOMEM; |
| 411 | } |
Wey-Yi Guy | e307ddc | 2009-09-11 10:38:16 -0700 | [diff] [blame] | 412 | eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION); |
| 413 | pos += scnprintf(buf + pos, buf_size - pos, "NVM Type: %s, " |
| 414 | "version: 0x%x\n", |
Wey-Yi Guy | 0848e29 | 2009-05-22 11:01:46 -0700 | [diff] [blame] | 415 | (priv->nvm_device_type == NVM_DEVICE_TYPE_OTP) |
Wey-Yi Guy | e307ddc | 2009-09-11 10:38:16 -0700 | [diff] [blame] | 416 | ? "OTP" : "EEPROM", eeprom_ver); |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 417 | for (ofs = 0 ; ofs < eeprom_len ; ofs += 16) { |
| 418 | pos += scnprintf(buf + pos, buf_size - pos, "0x%.4x ", ofs); |
| 419 | hex_dump_to_buffer(ptr + ofs, 16 , 16, 2, buf + pos, |
| 420 | buf_size - pos, 0); |
Reinette Chatre | 2fac971 | 2009-09-25 14:24:21 -0700 | [diff] [blame] | 421 | pos += strlen(buf + pos); |
Tomas Winkler | 8dd266e | 2008-05-05 10:22:32 +0800 | [diff] [blame] | 422 | if (buf_size - pos > 0) |
| 423 | buf[pos++] = '\n'; |
| 424 | } |
| 425 | |
| 426 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 427 | kfree(buf); |
| 428 | return ret; |
| 429 | } |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 430 | |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 431 | static ssize_t iwl_dbgfs_log_event_read(struct file *file, |
| 432 | char __user *user_buf, |
| 433 | size_t count, loff_t *ppos) |
| 434 | { |
| 435 | struct iwl_priv *priv = file->private_data; |
| 436 | char *buf; |
| 437 | int pos = 0; |
| 438 | ssize_t ret = -ENOMEM; |
| 439 | |
Wey-Yi Guy | 3ecccbc | 2011-03-29 17:53:15 -0700 | [diff] [blame] | 440 | ret = pos = iwl_dump_nic_event_log(priv, true, &buf, true); |
Wey-Yi Guy | 937c397 | 2010-01-15 13:43:36 -0800 | [diff] [blame] | 441 | if (buf) { |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 442 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 443 | kfree(buf); |
| 444 | } |
| 445 | return ret; |
| 446 | } |
| 447 | |
Ester Kummer | 189a2b5 | 2008-05-15 13:54:18 +0800 | [diff] [blame] | 448 | static ssize_t iwl_dbgfs_log_event_write(struct file *file, |
| 449 | const char __user *user_buf, |
| 450 | size_t count, loff_t *ppos) |
| 451 | { |
| 452 | struct iwl_priv *priv = file->private_data; |
| 453 | u32 event_log_flag; |
| 454 | char buf[8]; |
| 455 | int buf_size; |
| 456 | |
| 457 | memset(buf, 0, sizeof(buf)); |
| 458 | buf_size = min(count, sizeof(buf) - 1); |
| 459 | if (copy_from_user(buf, user_buf, buf_size)) |
| 460 | return -EFAULT; |
| 461 | if (sscanf(buf, "%d", &event_log_flag) != 1) |
| 462 | return -EFAULT; |
| 463 | if (event_log_flag == 1) |
Wey-Yi Guy | 3ecccbc | 2011-03-29 17:53:15 -0700 | [diff] [blame] | 464 | iwl_dump_nic_event_log(priv, true, NULL, false); |
Ester Kummer | 189a2b5 | 2008-05-15 13:54:18 +0800 | [diff] [blame] | 465 | |
| 466 | return count; |
| 467 | } |
| 468 | |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 469 | |
| 470 | |
| 471 | static ssize_t iwl_dbgfs_channels_read(struct file *file, char __user *user_buf, |
| 472 | size_t count, loff_t *ppos) |
| 473 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 474 | struct iwl_priv *priv = file->private_data; |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 475 | struct ieee80211_channel *channels = NULL; |
| 476 | const struct ieee80211_supported_band *supp_band = NULL; |
| 477 | int pos = 0, i, bufsz = PAGE_SIZE; |
| 478 | char *buf; |
| 479 | ssize_t ret; |
| 480 | |
| 481 | if (!test_bit(STATUS_GEO_CONFIGURED, &priv->status)) |
| 482 | return -EAGAIN; |
| 483 | |
| 484 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 485 | if (!buf) { |
Winkler, Tomas | 15b1687 | 2008-12-19 10:37:33 +0800 | [diff] [blame] | 486 | IWL_ERR(priv, "Can not allocate Buffer\n"); |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 487 | return -ENOMEM; |
| 488 | } |
| 489 | |
| 490 | supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_2GHZ); |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 491 | if (supp_band) { |
| 492 | channels = supp_band->channels; |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 493 | |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 494 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 495 | "Displaying %d channels in 2.4GHz band 802.11bg):\n", |
| 496 | supp_band->n_channels); |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 497 | |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 498 | for (i = 0; i < supp_band->n_channels; i++) |
| 499 | pos += scnprintf(buf + pos, bufsz - pos, |
| 500 | "%d: %ddBm: BSS%s%s, %s.\n", |
Shanyu Zhao | 81e9543 | 2010-07-28 13:40:27 -0700 | [diff] [blame] | 501 | channels[i].hw_value, |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 502 | channels[i].max_power, |
| 503 | channels[i].flags & IEEE80211_CHAN_RADAR ? |
| 504 | " (IEEE 802.11h required)" : "", |
| 505 | ((channels[i].flags & IEEE80211_CHAN_NO_IBSS) |
| 506 | || (channels[i].flags & |
| 507 | IEEE80211_CHAN_RADAR)) ? "" : |
| 508 | ", IBSS", |
| 509 | channels[i].flags & |
| 510 | IEEE80211_CHAN_PASSIVE_SCAN ? |
| 511 | "passive only" : "active/passive"); |
| 512 | } |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 513 | supp_band = iwl_get_hw_mode(priv, IEEE80211_BAND_5GHZ); |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 514 | if (supp_band) { |
| 515 | channels = supp_band->channels; |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 516 | |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 517 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 518 | "Displaying %d channels in 5.2GHz band (802.11a)\n", |
| 519 | supp_band->n_channels); |
| 520 | |
| 521 | for (i = 0; i < supp_band->n_channels; i++) |
| 522 | pos += scnprintf(buf + pos, bufsz - pos, |
| 523 | "%d: %ddBm: BSS%s%s, %s.\n", |
Shanyu Zhao | 81e9543 | 2010-07-28 13:40:27 -0700 | [diff] [blame] | 524 | channels[i].hw_value, |
Wey-Yi Guy | a2e2322 | 2009-05-22 11:01:55 -0700 | [diff] [blame] | 525 | channels[i].max_power, |
| 526 | channels[i].flags & IEEE80211_CHAN_RADAR ? |
| 527 | " (IEEE 802.11h required)" : "", |
| 528 | ((channels[i].flags & IEEE80211_CHAN_NO_IBSS) |
| 529 | || (channels[i].flags & |
| 530 | IEEE80211_CHAN_RADAR)) ? "" : |
| 531 | ", IBSS", |
| 532 | channels[i].flags & |
| 533 | IEEE80211_CHAN_PASSIVE_SCAN ? |
| 534 | "passive only" : "active/passive"); |
| 535 | } |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 536 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 537 | kfree(buf); |
| 538 | return ret; |
| 539 | } |
| 540 | |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 541 | static ssize_t iwl_dbgfs_status_read(struct file *file, |
| 542 | char __user *user_buf, |
| 543 | size_t count, loff_t *ppos) { |
| 544 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 545 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 546 | char buf[512]; |
| 547 | int pos = 0; |
| 548 | const size_t bufsz = sizeof(buf); |
| 549 | |
| 550 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_HCMD_ACTIVE:\t %d\n", |
| 551 | test_bit(STATUS_HCMD_ACTIVE, &priv->status)); |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 552 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_INT_ENABLED:\t %d\n", |
| 553 | test_bit(STATUS_INT_ENABLED, &priv->status)); |
| 554 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_RF_KILL_HW:\t %d\n", |
| 555 | test_bit(STATUS_RF_KILL_HW, &priv->status)); |
Wey-Yi Guy | 7812b16 | 2009-10-02 13:43:58 -0700 | [diff] [blame] | 556 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_CT_KILL:\t\t %d\n", |
| 557 | test_bit(STATUS_CT_KILL, &priv->status)); |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 558 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_INIT:\t\t %d\n", |
| 559 | test_bit(STATUS_INIT, &priv->status)); |
| 560 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_ALIVE:\t\t %d\n", |
| 561 | test_bit(STATUS_ALIVE, &priv->status)); |
| 562 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_READY:\t\t %d\n", |
| 563 | test_bit(STATUS_READY, &priv->status)); |
| 564 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_TEMPERATURE:\t %d\n", |
| 565 | test_bit(STATUS_TEMPERATURE, &priv->status)); |
| 566 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_GEO_CONFIGURED:\t %d\n", |
| 567 | test_bit(STATUS_GEO_CONFIGURED, &priv->status)); |
| 568 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_EXIT_PENDING:\t %d\n", |
| 569 | test_bit(STATUS_EXIT_PENDING, &priv->status)); |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 570 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_STATISTICS:\t %d\n", |
| 571 | test_bit(STATUS_STATISTICS, &priv->status)); |
| 572 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCANNING:\t %d\n", |
| 573 | test_bit(STATUS_SCANNING, &priv->status)); |
| 574 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCAN_ABORTING:\t %d\n", |
| 575 | test_bit(STATUS_SCAN_ABORTING, &priv->status)); |
| 576 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_SCAN_HW:\t\t %d\n", |
| 577 | test_bit(STATUS_SCAN_HW, &priv->status)); |
| 578 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_POWER_PMI:\t %d\n", |
| 579 | test_bit(STATUS_POWER_PMI, &priv->status)); |
| 580 | pos += scnprintf(buf + pos, bufsz - pos, "STATUS_FW_ERROR:\t %d\n", |
| 581 | test_bit(STATUS_FW_ERROR, &priv->status)); |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 582 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 583 | } |
| 584 | |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 585 | static ssize_t iwl_dbgfs_interrupt_read(struct file *file, |
| 586 | char __user *user_buf, |
| 587 | size_t count, loff_t *ppos) { |
| 588 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 589 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 590 | int pos = 0; |
| 591 | int cnt = 0; |
| 592 | char *buf; |
| 593 | int bufsz = 24 * 64; /* 24 items * 64 char per item */ |
| 594 | ssize_t ret; |
| 595 | |
| 596 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 597 | if (!buf) { |
| 598 | IWL_ERR(priv, "Can not allocate Buffer\n"); |
| 599 | return -ENOMEM; |
| 600 | } |
| 601 | |
| 602 | pos += scnprintf(buf + pos, bufsz - pos, |
| 603 | "Interrupt Statistics Report:\n"); |
| 604 | |
| 605 | pos += scnprintf(buf + pos, bufsz - pos, "HW Error:\t\t\t %u\n", |
| 606 | priv->isr_stats.hw); |
| 607 | pos += scnprintf(buf + pos, bufsz - pos, "SW Error:\t\t\t %u\n", |
| 608 | priv->isr_stats.sw); |
Wey-Yi Guy | 6e6ebf4 | 2010-08-27 10:41:37 -0700 | [diff] [blame] | 609 | if (priv->isr_stats.sw || priv->isr_stats.hw) { |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 610 | pos += scnprintf(buf + pos, bufsz - pos, |
| 611 | "\tLast Restarting Code: 0x%X\n", |
Wey-Yi Guy | 6e6ebf4 | 2010-08-27 10:41:37 -0700 | [diff] [blame] | 612 | priv->isr_stats.err_code); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 613 | } |
| 614 | #ifdef CONFIG_IWLWIFI_DEBUG |
| 615 | pos += scnprintf(buf + pos, bufsz - pos, "Frame transmitted:\t\t %u\n", |
| 616 | priv->isr_stats.sch); |
| 617 | pos += scnprintf(buf + pos, bufsz - pos, "Alive interrupt:\t\t %u\n", |
| 618 | priv->isr_stats.alive); |
| 619 | #endif |
| 620 | pos += scnprintf(buf + pos, bufsz - pos, |
| 621 | "HW RF KILL switch toggled:\t %u\n", |
| 622 | priv->isr_stats.rfkill); |
| 623 | |
| 624 | pos += scnprintf(buf + pos, bufsz - pos, "CT KILL:\t\t\t %u\n", |
| 625 | priv->isr_stats.ctkill); |
| 626 | |
| 627 | pos += scnprintf(buf + pos, bufsz - pos, "Wakeup Interrupt:\t\t %u\n", |
| 628 | priv->isr_stats.wakeup); |
| 629 | |
| 630 | pos += scnprintf(buf + pos, bufsz - pos, |
| 631 | "Rx command responses:\t\t %u\n", |
| 632 | priv->isr_stats.rx); |
| 633 | for (cnt = 0; cnt < REPLY_MAX; cnt++) { |
| 634 | if (priv->isr_stats.rx_handlers[cnt] > 0) |
| 635 | pos += scnprintf(buf + pos, bufsz - pos, |
| 636 | "\tRx handler[%36s]:\t\t %u\n", |
| 637 | get_cmd_string(cnt), |
| 638 | priv->isr_stats.rx_handlers[cnt]); |
| 639 | } |
| 640 | |
| 641 | pos += scnprintf(buf + pos, bufsz - pos, "Tx/FH interrupt:\t\t %u\n", |
| 642 | priv->isr_stats.tx); |
| 643 | |
| 644 | pos += scnprintf(buf + pos, bufsz - pos, "Unexpected INTA:\t\t %u\n", |
| 645 | priv->isr_stats.unhandled); |
| 646 | |
| 647 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 648 | kfree(buf); |
| 649 | return ret; |
| 650 | } |
| 651 | |
| 652 | static ssize_t iwl_dbgfs_interrupt_write(struct file *file, |
| 653 | const char __user *user_buf, |
| 654 | size_t count, loff_t *ppos) |
| 655 | { |
| 656 | struct iwl_priv *priv = file->private_data; |
| 657 | char buf[8]; |
| 658 | int buf_size; |
| 659 | u32 reset_flag; |
| 660 | |
| 661 | memset(buf, 0, sizeof(buf)); |
| 662 | buf_size = min(count, sizeof(buf) - 1); |
| 663 | if (copy_from_user(buf, user_buf, buf_size)) |
| 664 | return -EFAULT; |
| 665 | if (sscanf(buf, "%x", &reset_flag) != 1) |
| 666 | return -EFAULT; |
| 667 | if (reset_flag == 0) |
| 668 | iwl_clear_isr_stats(priv); |
| 669 | |
| 670 | return count; |
| 671 | } |
| 672 | |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 673 | static ssize_t iwl_dbgfs_qos_read(struct file *file, char __user *user_buf, |
| 674 | size_t count, loff_t *ppos) |
| 675 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 676 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 677 | struct iwl_rxon_context *ctx; |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 678 | int pos = 0, i; |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 679 | char buf[256 * NUM_IWL_RXON_CTX]; |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 680 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 681 | |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 682 | for_each_context(priv, ctx) { |
| 683 | pos += scnprintf(buf + pos, bufsz - pos, "context %d:\n", |
| 684 | ctx->ctxid); |
| 685 | for (i = 0; i < AC_NUM; i++) { |
| 686 | pos += scnprintf(buf + pos, bufsz - pos, |
| 687 | "\tcw_min\tcw_max\taifsn\ttxop\n"); |
| 688 | pos += scnprintf(buf + pos, bufsz - pos, |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 689 | "AC[%d]\t%u\t%u\t%u\t%u\n", i, |
Johannes Berg | 8dfdb9d | 2010-08-23 10:46:38 +0200 | [diff] [blame] | 690 | ctx->qos_data.def_qos_parm.ac[i].cw_min, |
| 691 | ctx->qos_data.def_qos_parm.ac[i].cw_max, |
| 692 | ctx->qos_data.def_qos_parm.ac[i].aifsn, |
| 693 | ctx->qos_data.def_qos_parm.ac[i].edca_txop); |
| 694 | } |
| 695 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 696 | } |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 697 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 698 | } |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 699 | |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 700 | static ssize_t iwl_dbgfs_thermal_throttling_read(struct file *file, |
| 701 | char __user *user_buf, |
| 702 | size_t count, loff_t *ppos) |
| 703 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 704 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | 3ad3b92 | 2009-08-07 15:41:48 -0700 | [diff] [blame] | 705 | struct iwl_tt_mgmt *tt = &priv->thermal_throttle; |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 706 | struct iwl_tt_restriction *restriction; |
| 707 | char buf[100]; |
| 708 | int pos = 0; |
| 709 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 710 | |
| 711 | pos += scnprintf(buf + pos, bufsz - pos, |
| 712 | "Thermal Throttling Mode: %s\n", |
Johannes Berg | 3ad3b92 | 2009-08-07 15:41:48 -0700 | [diff] [blame] | 713 | tt->advanced_tt ? "Advance" : "Legacy"); |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 714 | pos += scnprintf(buf + pos, bufsz - pos, |
| 715 | "Thermal Throttling State: %d\n", |
| 716 | tt->state); |
Johannes Berg | 3ad3b92 | 2009-08-07 15:41:48 -0700 | [diff] [blame] | 717 | if (tt->advanced_tt) { |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 718 | restriction = tt->restriction + tt->state; |
| 719 | pos += scnprintf(buf + pos, bufsz - pos, |
| 720 | "Tx mode: %d\n", |
| 721 | restriction->tx_stream); |
| 722 | pos += scnprintf(buf + pos, bufsz - pos, |
| 723 | "Rx mode: %d\n", |
| 724 | restriction->rx_stream); |
| 725 | pos += scnprintf(buf + pos, bufsz - pos, |
| 726 | "HT mode: %d\n", |
| 727 | restriction->is_ht); |
| 728 | } |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 729 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 730 | } |
| 731 | |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 732 | static ssize_t iwl_dbgfs_disable_ht40_write(struct file *file, |
| 733 | const char __user *user_buf, |
| 734 | size_t count, loff_t *ppos) |
| 735 | { |
| 736 | struct iwl_priv *priv = file->private_data; |
| 737 | char buf[8]; |
| 738 | int buf_size; |
| 739 | int ht40; |
| 740 | |
| 741 | memset(buf, 0, sizeof(buf)); |
| 742 | buf_size = min(count, sizeof(buf) - 1); |
| 743 | if (copy_from_user(buf, user_buf, buf_size)) |
| 744 | return -EFAULT; |
| 745 | if (sscanf(buf, "%d", &ht40) != 1) |
| 746 | return -EFAULT; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 747 | if (!iwl_is_any_associated(priv)) |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 748 | priv->disable_ht40 = ht40 ? true : false; |
| 749 | else { |
| 750 | IWL_ERR(priv, "Sta associated with AP - " |
| 751 | "Change to 40MHz channel support is not allowed\n"); |
| 752 | return -EINVAL; |
| 753 | } |
| 754 | |
| 755 | return count; |
| 756 | } |
| 757 | |
| 758 | static ssize_t iwl_dbgfs_disable_ht40_read(struct file *file, |
| 759 | char __user *user_buf, |
| 760 | size_t count, loff_t *ppos) |
| 761 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 762 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 763 | char buf[100]; |
| 764 | int pos = 0; |
| 765 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 766 | |
| 767 | pos += scnprintf(buf + pos, bufsz - pos, |
| 768 | "11n 40MHz Mode: %s\n", |
| 769 | priv->disable_ht40 ? "Disabled" : "Enabled"); |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 770 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 771 | } |
| 772 | |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 773 | static ssize_t iwl_dbgfs_sleep_level_override_write(struct file *file, |
| 774 | const char __user *user_buf, |
| 775 | size_t count, loff_t *ppos) |
| 776 | { |
| 777 | struct iwl_priv *priv = file->private_data; |
| 778 | char buf[8]; |
| 779 | int buf_size; |
| 780 | int value; |
| 781 | |
| 782 | memset(buf, 0, sizeof(buf)); |
| 783 | buf_size = min(count, sizeof(buf) - 1); |
| 784 | if (copy_from_user(buf, user_buf, buf_size)) |
| 785 | return -EFAULT; |
| 786 | |
| 787 | if (sscanf(buf, "%d", &value) != 1) |
| 788 | return -EINVAL; |
| 789 | |
| 790 | /* |
| 791 | * Our users expect 0 to be "CAM", but 0 isn't actually |
| 792 | * valid here. However, let's not confuse them and present |
| 793 | * IWL_POWER_INDEX_1 as "1", not "0". |
| 794 | */ |
Reinette Chatre | 1a34c04 | 2009-10-09 13:20:25 -0700 | [diff] [blame] | 795 | if (value == 0) |
| 796 | return -EINVAL; |
| 797 | else if (value > 0) |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 798 | value -= 1; |
| 799 | |
| 800 | if (value != -1 && (value < 0 || value >= IWL_POWER_NUM)) |
| 801 | return -EINVAL; |
| 802 | |
Wey-Yi Guy | 4ad177b | 2009-10-16 14:25:58 -0700 | [diff] [blame] | 803 | if (!iwl_is_ready_rf(priv)) |
| 804 | return -EAGAIN; |
| 805 | |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 806 | priv->power_data.debug_sleep_level_override = value; |
| 807 | |
Reinette Chatre | d3a5719 | 2010-01-21 11:52:28 -0800 | [diff] [blame] | 808 | mutex_lock(&priv->mutex); |
Wey-Yi Guy | 4ad177b | 2009-10-16 14:25:58 -0700 | [diff] [blame] | 809 | iwl_power_update_mode(priv, true); |
Reinette Chatre | d3a5719 | 2010-01-21 11:52:28 -0800 | [diff] [blame] | 810 | mutex_unlock(&priv->mutex); |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 811 | |
| 812 | return count; |
| 813 | } |
| 814 | |
| 815 | static ssize_t iwl_dbgfs_sleep_level_override_read(struct file *file, |
| 816 | char __user *user_buf, |
| 817 | size_t count, loff_t *ppos) |
| 818 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 819 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 820 | char buf[10]; |
| 821 | int pos, value; |
| 822 | const size_t bufsz = sizeof(buf); |
| 823 | |
| 824 | /* see the write function */ |
| 825 | value = priv->power_data.debug_sleep_level_override; |
| 826 | if (value >= 0) |
| 827 | value += 1; |
| 828 | |
| 829 | pos = scnprintf(buf, bufsz, "%d\n", value); |
| 830 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 831 | } |
| 832 | |
| 833 | static ssize_t iwl_dbgfs_current_sleep_command_read(struct file *file, |
| 834 | char __user *user_buf, |
| 835 | size_t count, loff_t *ppos) |
| 836 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 837 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 838 | char buf[200]; |
| 839 | int pos = 0, i; |
| 840 | const size_t bufsz = sizeof(buf); |
| 841 | struct iwl_powertable_cmd *cmd = &priv->power_data.sleep_cmd; |
| 842 | |
| 843 | pos += scnprintf(buf + pos, bufsz - pos, |
| 844 | "flags: %#.2x\n", le16_to_cpu(cmd->flags)); |
| 845 | pos += scnprintf(buf + pos, bufsz - pos, |
| 846 | "RX/TX timeout: %d/%d usec\n", |
| 847 | le32_to_cpu(cmd->rx_data_timeout), |
| 848 | le32_to_cpu(cmd->tx_data_timeout)); |
| 849 | for (i = 0; i < IWL_POWER_VEC_SIZE; i++) |
| 850 | pos += scnprintf(buf + pos, bufsz - pos, |
| 851 | "sleep_interval[%d]: %d\n", i, |
| 852 | le32_to_cpu(cmd->sleep_interval[i])); |
| 853 | |
| 854 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 855 | } |
| 856 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 857 | DEBUGFS_READ_WRITE_FILE_OPS(sram); |
Wey-Yi Guy | b03d7d0 | 2009-12-14 14:12:20 -0800 | [diff] [blame] | 858 | DEBUGFS_READ_WRITE_FILE_OPS(log_event); |
Wey-Yi Guy | 0848e29 | 2009-05-22 11:01:46 -0700 | [diff] [blame] | 859 | DEBUGFS_READ_FILE_OPS(nvm); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 860 | DEBUGFS_READ_FILE_OPS(stations); |
Winkler, Tomas | d366df5 | 2008-12-02 12:14:01 -0800 | [diff] [blame] | 861 | DEBUGFS_READ_FILE_OPS(channels); |
Wey-Yi Guy | 08df05a | 2009-03-24 10:02:54 -0700 | [diff] [blame] | 862 | DEBUGFS_READ_FILE_OPS(status); |
Wey-Yi Guy | a83b914 | 2009-04-08 11:39:32 -0700 | [diff] [blame] | 863 | DEBUGFS_READ_WRITE_FILE_OPS(interrupt); |
Wey-Yi Guy | f5ad69f | 2009-07-09 10:33:36 -0700 | [diff] [blame] | 864 | DEBUGFS_READ_FILE_OPS(qos); |
Wey-Yi Guy | fbf3a2a | 2009-07-24 11:13:04 -0700 | [diff] [blame] | 865 | DEBUGFS_READ_FILE_OPS(thermal_throttling); |
Wey-Yi Guy | 1e4247d4 | 2009-07-27 13:50:15 -0700 | [diff] [blame] | 866 | DEBUGFS_READ_WRITE_FILE_OPS(disable_ht40); |
Johannes Berg | e312c24 | 2009-08-07 15:41:51 -0700 | [diff] [blame] | 867 | DEBUGFS_READ_WRITE_FILE_OPS(sleep_level_override); |
| 868 | DEBUGFS_READ_FILE_OPS(current_sleep_command); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 869 | |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 870 | static ssize_t iwl_dbgfs_traffic_log_read(struct file *file, |
| 871 | char __user *user_buf, |
| 872 | size_t count, loff_t *ppos) |
| 873 | { |
| 874 | struct iwl_priv *priv = file->private_data; |
| 875 | int pos = 0, ofs = 0; |
| 876 | int cnt = 0, entry; |
| 877 | struct iwl_tx_queue *txq; |
| 878 | struct iwl_queue *q; |
| 879 | struct iwl_rx_queue *rxq = &priv->rxq; |
| 880 | char *buf; |
| 881 | int bufsz = ((IWL_TRAFFIC_ENTRIES * IWL_TRAFFIC_ENTRY_SIZE * 64) * 2) + |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 882 | (priv->cfg->base_params->num_of_queues * 32 * 8) + 400; |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 883 | const u8 *ptr; |
| 884 | ssize_t ret; |
| 885 | |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 886 | if (!priv->txq) { |
| 887 | IWL_ERR(priv, "txq not ready\n"); |
| 888 | return -EAGAIN; |
| 889 | } |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 890 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 891 | if (!buf) { |
| 892 | IWL_ERR(priv, "Can not allocate buffer\n"); |
| 893 | return -ENOMEM; |
| 894 | } |
| 895 | pos += scnprintf(buf + pos, bufsz - pos, "Tx Queue\n"); |
| 896 | for (cnt = 0; cnt < priv->hw_params.max_txq_num; cnt++) { |
| 897 | txq = &priv->txq[cnt]; |
| 898 | q = &txq->q; |
| 899 | pos += scnprintf(buf + pos, bufsz - pos, |
| 900 | "q[%d]: read_ptr: %u, write_ptr: %u\n", |
| 901 | cnt, q->read_ptr, q->write_ptr); |
| 902 | } |
| 903 | if (priv->tx_traffic && (iwl_debug_level & IWL_DL_TX)) { |
| 904 | ptr = priv->tx_traffic; |
| 905 | pos += scnprintf(buf + pos, bufsz - pos, |
| 906 | "Tx Traffic idx: %u\n", priv->tx_traffic_idx); |
| 907 | for (cnt = 0, ofs = 0; cnt < IWL_TRAFFIC_ENTRIES; cnt++) { |
| 908 | for (entry = 0; entry < IWL_TRAFFIC_ENTRY_SIZE / 16; |
| 909 | entry++, ofs += 16) { |
| 910 | pos += scnprintf(buf + pos, bufsz - pos, |
| 911 | "0x%.4x ", ofs); |
| 912 | hex_dump_to_buffer(ptr + ofs, 16, 16, 2, |
| 913 | buf + pos, bufsz - pos, 0); |
Reinette Chatre | 2fac971 | 2009-09-25 14:24:21 -0700 | [diff] [blame] | 914 | pos += strlen(buf + pos); |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 915 | if (bufsz - pos > 0) |
| 916 | buf[pos++] = '\n'; |
| 917 | } |
| 918 | } |
| 919 | } |
| 920 | |
| 921 | pos += scnprintf(buf + pos, bufsz - pos, "Rx Queue\n"); |
| 922 | pos += scnprintf(buf + pos, bufsz - pos, |
| 923 | "read: %u, write: %u\n", |
| 924 | rxq->read, rxq->write); |
| 925 | |
| 926 | if (priv->rx_traffic && (iwl_debug_level & IWL_DL_RX)) { |
| 927 | ptr = priv->rx_traffic; |
| 928 | pos += scnprintf(buf + pos, bufsz - pos, |
| 929 | "Rx Traffic idx: %u\n", priv->rx_traffic_idx); |
| 930 | for (cnt = 0, ofs = 0; cnt < IWL_TRAFFIC_ENTRIES; cnt++) { |
| 931 | for (entry = 0; entry < IWL_TRAFFIC_ENTRY_SIZE / 16; |
| 932 | entry++, ofs += 16) { |
| 933 | pos += scnprintf(buf + pos, bufsz - pos, |
| 934 | "0x%.4x ", ofs); |
| 935 | hex_dump_to_buffer(ptr + ofs, 16, 16, 2, |
| 936 | buf + pos, bufsz - pos, 0); |
Reinette Chatre | 2fac971 | 2009-09-25 14:24:21 -0700 | [diff] [blame] | 937 | pos += strlen(buf + pos); |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 938 | if (bufsz - pos > 0) |
| 939 | buf[pos++] = '\n'; |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 945 | kfree(buf); |
| 946 | return ret; |
| 947 | } |
| 948 | |
| 949 | static ssize_t iwl_dbgfs_traffic_log_write(struct file *file, |
| 950 | const char __user *user_buf, |
| 951 | size_t count, loff_t *ppos) |
| 952 | { |
| 953 | struct iwl_priv *priv = file->private_data; |
| 954 | char buf[8]; |
| 955 | int buf_size; |
| 956 | int traffic_log; |
| 957 | |
| 958 | memset(buf, 0, sizeof(buf)); |
| 959 | buf_size = min(count, sizeof(buf) - 1); |
| 960 | if (copy_from_user(buf, user_buf, buf_size)) |
| 961 | return -EFAULT; |
| 962 | if (sscanf(buf, "%d", &traffic_log) != 1) |
| 963 | return -EFAULT; |
| 964 | if (traffic_log == 0) |
| 965 | iwl_reset_traffic_log(priv); |
| 966 | |
| 967 | return count; |
| 968 | } |
| 969 | |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 970 | static ssize_t iwl_dbgfs_tx_queue_read(struct file *file, |
| 971 | char __user *user_buf, |
| 972 | size_t count, loff_t *ppos) { |
| 973 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 974 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 975 | struct iwl_tx_queue *txq; |
| 976 | struct iwl_queue *q; |
| 977 | char *buf; |
| 978 | int pos = 0; |
| 979 | int cnt; |
| 980 | int ret; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 981 | const size_t bufsz = sizeof(char) * 64 * |
| 982 | priv->cfg->base_params->num_of_queues; |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 983 | |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 984 | if (!priv->txq) { |
| 985 | IWL_ERR(priv, "txq not ready\n"); |
| 986 | return -EAGAIN; |
| 987 | } |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 988 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 989 | if (!buf) |
| 990 | return -ENOMEM; |
| 991 | |
| 992 | for (cnt = 0; cnt < priv->hw_params.max_txq_num; cnt++) { |
| 993 | txq = &priv->txq[cnt]; |
| 994 | q = &txq->q; |
| 995 | pos += scnprintf(buf + pos, bufsz - pos, |
| 996 | "hwq %.2d: read=%u write=%u stop=%d" |
| 997 | " swq_id=%#.2x (ac %d/hwq %d)\n", |
| 998 | cnt, q->read_ptr, q->write_ptr, |
| 999 | !!test_bit(cnt, priv->queue_stopped), |
Johannes Berg | ea9b307 | 2010-11-10 18:25:45 -0800 | [diff] [blame] | 1000 | txq->swq_id, txq->swq_id & 3, |
| 1001 | (txq->swq_id >> 2) & 0x1f); |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 1002 | if (cnt >= 4) |
| 1003 | continue; |
| 1004 | /* for the ACs, display the stop count too */ |
| 1005 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1006 | " stop-count: %d\n", |
| 1007 | atomic_read(&priv->queue_stop_count[cnt])); |
| 1008 | } |
| 1009 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1010 | kfree(buf); |
| 1011 | return ret; |
| 1012 | } |
| 1013 | |
| 1014 | static ssize_t iwl_dbgfs_rx_queue_read(struct file *file, |
| 1015 | char __user *user_buf, |
| 1016 | size_t count, loff_t *ppos) { |
| 1017 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1018 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 1019 | struct iwl_rx_queue *rxq = &priv->rxq; |
| 1020 | char buf[256]; |
| 1021 | int pos = 0; |
| 1022 | const size_t bufsz = sizeof(buf); |
| 1023 | |
| 1024 | pos += scnprintf(buf + pos, bufsz - pos, "read: %u\n", |
| 1025 | rxq->read); |
| 1026 | pos += scnprintf(buf + pos, bufsz - pos, "write: %u\n", |
| 1027 | rxq->write); |
| 1028 | pos += scnprintf(buf + pos, bufsz - pos, "free_count: %u\n", |
| 1029 | rxq->free_count); |
Dor Shaish | f5cc6a2 | 2010-06-01 00:04:08 -0700 | [diff] [blame] | 1030 | if (rxq->rb_stts) { |
| 1031 | pos += scnprintf(buf + pos, bufsz - pos, "closed_rb_num: %u\n", |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 1032 | le16_to_cpu(rxq->rb_stts->closed_rb_num) & 0x0FFF); |
Dor Shaish | f5cc6a2 | 2010-06-01 00:04:08 -0700 | [diff] [blame] | 1033 | } else { |
| 1034 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1035 | "closed_rb_num: Not Allocated\n"); |
| 1036 | } |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 1037 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1038 | } |
| 1039 | |
Wey-Yi Guy | e8fe59a | 2009-08-07 15:41:42 -0700 | [diff] [blame] | 1040 | static ssize_t iwl_dbgfs_ucode_rx_stats_read(struct file *file, |
| 1041 | char __user *user_buf, |
| 1042 | size_t count, loff_t *ppos) |
| 1043 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1044 | struct iwl_priv *priv = file->private_data; |
Abhijeet Kolekar | 17f36fc | 2010-04-16 10:03:54 -0700 | [diff] [blame] | 1045 | return priv->cfg->ops->lib->debugfs_ops.rx_stats_read(file, |
| 1046 | user_buf, count, ppos); |
Wey-Yi Guy | e8fe59a | 2009-08-07 15:41:42 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | static ssize_t iwl_dbgfs_ucode_tx_stats_read(struct file *file, |
| 1050 | char __user *user_buf, |
| 1051 | size_t count, loff_t *ppos) |
| 1052 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1053 | struct iwl_priv *priv = file->private_data; |
Abhijeet Kolekar | 17f36fc | 2010-04-16 10:03:54 -0700 | [diff] [blame] | 1054 | return priv->cfg->ops->lib->debugfs_ops.tx_stats_read(file, |
| 1055 | user_buf, count, ppos); |
Wey-Yi Guy | e8fe59a | 2009-08-07 15:41:42 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | static ssize_t iwl_dbgfs_ucode_general_stats_read(struct file *file, |
| 1059 | char __user *user_buf, |
| 1060 | size_t count, loff_t *ppos) |
| 1061 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1062 | struct iwl_priv *priv = file->private_data; |
Abhijeet Kolekar | 17f36fc | 2010-04-16 10:03:54 -0700 | [diff] [blame] | 1063 | return priv->cfg->ops->lib->debugfs_ops.general_stats_read(file, |
| 1064 | user_buf, count, ppos); |
Wey-Yi Guy | e8fe59a | 2009-08-07 15:41:42 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
Wey-Yi Guy | 5225935 | 2009-08-07 15:41:43 -0700 | [diff] [blame] | 1067 | static ssize_t iwl_dbgfs_sensitivity_read(struct file *file, |
| 1068 | char __user *user_buf, |
| 1069 | size_t count, loff_t *ppos) { |
| 1070 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1071 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 5225935 | 2009-08-07 15:41:43 -0700 | [diff] [blame] | 1072 | int pos = 0; |
| 1073 | int cnt = 0; |
| 1074 | char *buf; |
| 1075 | int bufsz = sizeof(struct iwl_sensitivity_data) * 4 + 100; |
| 1076 | ssize_t ret; |
| 1077 | struct iwl_sensitivity_data *data; |
| 1078 | |
| 1079 | data = &priv->sensitivity_data; |
| 1080 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 1081 | if (!buf) { |
| 1082 | IWL_ERR(priv, "Can not allocate Buffer\n"); |
| 1083 | return -ENOMEM; |
| 1084 | } |
| 1085 | |
| 1086 | pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_ofdm:\t\t\t %u\n", |
| 1087 | data->auto_corr_ofdm); |
| 1088 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1089 | "auto_corr_ofdm_mrc:\t\t %u\n", |
| 1090 | data->auto_corr_ofdm_mrc); |
| 1091 | pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_ofdm_x1:\t\t %u\n", |
| 1092 | data->auto_corr_ofdm_x1); |
| 1093 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1094 | "auto_corr_ofdm_mrc_x1:\t\t %u\n", |
| 1095 | data->auto_corr_ofdm_mrc_x1); |
| 1096 | pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_cck:\t\t\t %u\n", |
| 1097 | data->auto_corr_cck); |
| 1098 | pos += scnprintf(buf + pos, bufsz - pos, "auto_corr_cck_mrc:\t\t %u\n", |
| 1099 | data->auto_corr_cck_mrc); |
| 1100 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1101 | "last_bad_plcp_cnt_ofdm:\t\t %u\n", |
| 1102 | data->last_bad_plcp_cnt_ofdm); |
| 1103 | pos += scnprintf(buf + pos, bufsz - pos, "last_fa_cnt_ofdm:\t\t %u\n", |
| 1104 | data->last_fa_cnt_ofdm); |
| 1105 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1106 | "last_bad_plcp_cnt_cck:\t\t %u\n", |
| 1107 | data->last_bad_plcp_cnt_cck); |
| 1108 | pos += scnprintf(buf + pos, bufsz - pos, "last_fa_cnt_cck:\t\t %u\n", |
| 1109 | data->last_fa_cnt_cck); |
| 1110 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_curr_state:\t\t\t %u\n", |
| 1111 | data->nrg_curr_state); |
| 1112 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_prev_state:\t\t\t %u\n", |
| 1113 | data->nrg_prev_state); |
| 1114 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_value:\t\t\t"); |
| 1115 | for (cnt = 0; cnt < 10; cnt++) { |
| 1116 | pos += scnprintf(buf + pos, bufsz - pos, " %u", |
| 1117 | data->nrg_value[cnt]); |
| 1118 | } |
| 1119 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
| 1120 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_rssi:\t\t"); |
| 1121 | for (cnt = 0; cnt < NRG_NUM_PREV_STAT_L; cnt++) { |
| 1122 | pos += scnprintf(buf + pos, bufsz - pos, " %u", |
| 1123 | data->nrg_silence_rssi[cnt]); |
| 1124 | } |
| 1125 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
| 1126 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_ref:\t\t %u\n", |
| 1127 | data->nrg_silence_ref); |
| 1128 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_energy_idx:\t\t\t %u\n", |
| 1129 | data->nrg_energy_idx); |
| 1130 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_silence_idx:\t\t %u\n", |
| 1131 | data->nrg_silence_idx); |
| 1132 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_th_cck:\t\t\t %u\n", |
| 1133 | data->nrg_th_cck); |
| 1134 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1135 | "nrg_auto_corr_silence_diff:\t %u\n", |
| 1136 | data->nrg_auto_corr_silence_diff); |
| 1137 | pos += scnprintf(buf + pos, bufsz - pos, "num_in_cck_no_fa:\t\t %u\n", |
| 1138 | data->num_in_cck_no_fa); |
| 1139 | pos += scnprintf(buf + pos, bufsz - pos, "nrg_th_ofdm:\t\t\t %u\n", |
| 1140 | data->nrg_th_ofdm); |
| 1141 | |
| 1142 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1143 | kfree(buf); |
| 1144 | return ret; |
| 1145 | } |
| 1146 | |
| 1147 | |
| 1148 | static ssize_t iwl_dbgfs_chain_noise_read(struct file *file, |
| 1149 | char __user *user_buf, |
| 1150 | size_t count, loff_t *ppos) { |
| 1151 | |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1152 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 5225935 | 2009-08-07 15:41:43 -0700 | [diff] [blame] | 1153 | int pos = 0; |
| 1154 | int cnt = 0; |
| 1155 | char *buf; |
| 1156 | int bufsz = sizeof(struct iwl_chain_noise_data) * 4 + 100; |
| 1157 | ssize_t ret; |
| 1158 | struct iwl_chain_noise_data *data; |
| 1159 | |
| 1160 | data = &priv->chain_noise_data; |
| 1161 | buf = kzalloc(bufsz, GFP_KERNEL); |
| 1162 | if (!buf) { |
| 1163 | IWL_ERR(priv, "Can not allocate Buffer\n"); |
| 1164 | return -ENOMEM; |
| 1165 | } |
| 1166 | |
| 1167 | pos += scnprintf(buf + pos, bufsz - pos, "active_chains:\t\t\t %u\n", |
| 1168 | data->active_chains); |
| 1169 | pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_a:\t\t\t %u\n", |
| 1170 | data->chain_noise_a); |
| 1171 | pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_b:\t\t\t %u\n", |
| 1172 | data->chain_noise_b); |
| 1173 | pos += scnprintf(buf + pos, bufsz - pos, "chain_noise_c:\t\t\t %u\n", |
| 1174 | data->chain_noise_c); |
| 1175 | pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_a:\t\t\t %u\n", |
| 1176 | data->chain_signal_a); |
| 1177 | pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_b:\t\t\t %u\n", |
| 1178 | data->chain_signal_b); |
| 1179 | pos += scnprintf(buf + pos, bufsz - pos, "chain_signal_c:\t\t\t %u\n", |
| 1180 | data->chain_signal_c); |
| 1181 | pos += scnprintf(buf + pos, bufsz - pos, "beacon_count:\t\t\t %u\n", |
| 1182 | data->beacon_count); |
| 1183 | |
| 1184 | pos += scnprintf(buf + pos, bufsz - pos, "disconn_array:\t\t\t"); |
| 1185 | for (cnt = 0; cnt < NUM_RX_CHAINS; cnt++) { |
| 1186 | pos += scnprintf(buf + pos, bufsz - pos, " %u", |
| 1187 | data->disconn_array[cnt]); |
| 1188 | } |
| 1189 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
| 1190 | pos += scnprintf(buf + pos, bufsz - pos, "delta_gain_code:\t\t"); |
| 1191 | for (cnt = 0; cnt < NUM_RX_CHAINS; cnt++) { |
| 1192 | pos += scnprintf(buf + pos, bufsz - pos, " %u", |
| 1193 | data->delta_gain_code[cnt]); |
| 1194 | } |
| 1195 | pos += scnprintf(buf + pos, bufsz - pos, "\n"); |
| 1196 | pos += scnprintf(buf + pos, bufsz - pos, "radio_write:\t\t\t %u\n", |
| 1197 | data->radio_write); |
| 1198 | pos += scnprintf(buf + pos, bufsz - pos, "state:\t\t\t\t %u\n", |
| 1199 | data->state); |
| 1200 | |
| 1201 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1202 | kfree(buf); |
| 1203 | return ret; |
| 1204 | } |
| 1205 | |
Wey-Yi Guy | c09430a | 2009-10-16 14:25:50 -0700 | [diff] [blame] | 1206 | static ssize_t iwl_dbgfs_power_save_status_read(struct file *file, |
| 1207 | char __user *user_buf, |
| 1208 | size_t count, loff_t *ppos) |
| 1209 | { |
H Hartley Sweeten | 28f63a4 | 2010-01-08 16:14:10 -0700 | [diff] [blame] | 1210 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | c09430a | 2009-10-16 14:25:50 -0700 | [diff] [blame] | 1211 | char buf[60]; |
| 1212 | int pos = 0; |
| 1213 | const size_t bufsz = sizeof(buf); |
| 1214 | u32 pwrsave_status; |
| 1215 | |
| 1216 | pwrsave_status = iwl_read32(priv, CSR_GP_CNTRL) & |
| 1217 | CSR_GP_REG_POWER_SAVE_STATUS_MSK; |
| 1218 | |
| 1219 | pos += scnprintf(buf + pos, bufsz - pos, "Power Save Status: "); |
| 1220 | pos += scnprintf(buf + pos, bufsz - pos, "%s\n", |
| 1221 | (pwrsave_status == CSR_GP_REG_NO_POWER_SAVE) ? "none" : |
| 1222 | (pwrsave_status == CSR_GP_REG_MAC_POWER_SAVE) ? "MAC" : |
| 1223 | (pwrsave_status == CSR_GP_REG_PHY_POWER_SAVE) ? "PHY" : |
| 1224 | "error"); |
| 1225 | |
| 1226 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1227 | } |
| 1228 | |
Wey-Yi Guy | 7163b8a | 2009-11-20 12:04:56 -0800 | [diff] [blame] | 1229 | static ssize_t iwl_dbgfs_clear_ucode_statistics_write(struct file *file, |
Wey-Yi Guy | ef8d552 | 2009-11-13 11:56:28 -0800 | [diff] [blame] | 1230 | const char __user *user_buf, |
| 1231 | size_t count, loff_t *ppos) |
| 1232 | { |
| 1233 | struct iwl_priv *priv = file->private_data; |
| 1234 | char buf[8]; |
| 1235 | int buf_size; |
| 1236 | int clear; |
| 1237 | |
| 1238 | memset(buf, 0, sizeof(buf)); |
| 1239 | buf_size = min(count, sizeof(buf) - 1); |
| 1240 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1241 | return -EFAULT; |
| 1242 | if (sscanf(buf, "%d", &clear) != 1) |
| 1243 | return -EFAULT; |
| 1244 | |
| 1245 | /* make request to uCode to retrieve statistics information */ |
| 1246 | mutex_lock(&priv->mutex); |
| 1247 | iwl_send_statistics_request(priv, CMD_SYNC, true); |
| 1248 | mutex_unlock(&priv->mutex); |
| 1249 | |
| 1250 | return count; |
| 1251 | } |
| 1252 | |
Wey-Yi Guy | 696bdee | 2009-12-10 14:37:25 -0800 | [diff] [blame] | 1253 | static ssize_t iwl_dbgfs_csr_write(struct file *file, |
| 1254 | const char __user *user_buf, |
| 1255 | size_t count, loff_t *ppos) |
| 1256 | { |
| 1257 | struct iwl_priv *priv = file->private_data; |
| 1258 | char buf[8]; |
| 1259 | int buf_size; |
| 1260 | int csr; |
| 1261 | |
| 1262 | memset(buf, 0, sizeof(buf)); |
| 1263 | buf_size = min(count, sizeof(buf) - 1); |
| 1264 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1265 | return -EFAULT; |
| 1266 | if (sscanf(buf, "%d", &csr) != 1) |
| 1267 | return -EFAULT; |
| 1268 | |
Wey-Yi Guy | 3ecccbc | 2011-03-29 17:53:15 -0700 | [diff] [blame] | 1269 | iwl_dump_csr(priv); |
Wey-Yi Guy | 696bdee | 2009-12-10 14:37:25 -0800 | [diff] [blame] | 1270 | |
| 1271 | return count; |
| 1272 | } |
| 1273 | |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1274 | static ssize_t iwl_dbgfs_ucode_tracing_read(struct file *file, |
| 1275 | char __user *user_buf, |
| 1276 | size_t count, loff_t *ppos) { |
| 1277 | |
Joe Perches | 5767430 | 2010-07-12 13:50:06 -0700 | [diff] [blame] | 1278 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1279 | int pos = 0; |
| 1280 | char buf[128]; |
| 1281 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1282 | |
| 1283 | pos += scnprintf(buf + pos, bufsz - pos, "ucode trace timer is %s\n", |
| 1284 | priv->event_log.ucode_trace ? "On" : "Off"); |
| 1285 | pos += scnprintf(buf + pos, bufsz - pos, "non_wraps_count:\t\t %u\n", |
| 1286 | priv->event_log.non_wraps_count); |
| 1287 | pos += scnprintf(buf + pos, bufsz - pos, "wraps_once_count:\t\t %u\n", |
| 1288 | priv->event_log.wraps_once_count); |
| 1289 | pos += scnprintf(buf + pos, bufsz - pos, "wraps_more_count:\t\t %u\n", |
| 1290 | priv->event_log.wraps_more_count); |
| 1291 | |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 1292 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1293 | } |
| 1294 | |
| 1295 | static ssize_t iwl_dbgfs_ucode_tracing_write(struct file *file, |
| 1296 | const char __user *user_buf, |
| 1297 | size_t count, loff_t *ppos) |
| 1298 | { |
| 1299 | struct iwl_priv *priv = file->private_data; |
| 1300 | char buf[8]; |
| 1301 | int buf_size; |
| 1302 | int trace; |
| 1303 | |
| 1304 | memset(buf, 0, sizeof(buf)); |
| 1305 | buf_size = min(count, sizeof(buf) - 1); |
| 1306 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1307 | return -EFAULT; |
| 1308 | if (sscanf(buf, "%d", &trace) != 1) |
| 1309 | return -EFAULT; |
| 1310 | |
| 1311 | if (trace) { |
| 1312 | priv->event_log.ucode_trace = true; |
| 1313 | /* schedule the ucode timer to occur in UCODE_TRACE_PERIOD */ |
| 1314 | mod_timer(&priv->ucode_trace, |
| 1315 | jiffies + msecs_to_jiffies(UCODE_TRACE_PERIOD)); |
| 1316 | } else { |
| 1317 | priv->event_log.ucode_trace = false; |
| 1318 | del_timer_sync(&priv->ucode_trace); |
| 1319 | } |
| 1320 | |
| 1321 | return count; |
| 1322 | } |
| 1323 | |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1324 | static ssize_t iwl_dbgfs_rxon_flags_read(struct file *file, |
| 1325 | char __user *user_buf, |
| 1326 | size_t count, loff_t *ppos) { |
| 1327 | |
Joe Perches | 5767430 | 2010-07-12 13:50:06 -0700 | [diff] [blame] | 1328 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1329 | int len = 0; |
| 1330 | char buf[20]; |
| 1331 | |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 1332 | len = sprintf(buf, "0x%04X\n", |
| 1333 | le32_to_cpu(priv->contexts[IWL_RXON_CTX_BSS].active.flags)); |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1334 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
| 1335 | } |
| 1336 | |
| 1337 | static ssize_t iwl_dbgfs_rxon_filter_flags_read(struct file *file, |
| 1338 | char __user *user_buf, |
| 1339 | size_t count, loff_t *ppos) { |
| 1340 | |
Joe Perches | 5767430 | 2010-07-12 13:50:06 -0700 | [diff] [blame] | 1341 | struct iwl_priv *priv = file->private_data; |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1342 | int len = 0; |
| 1343 | char buf[20]; |
| 1344 | |
| 1345 | len = sprintf(buf, "0x%04X\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 1346 | le32_to_cpu(priv->contexts[IWL_RXON_CTX_BSS].active.filter_flags)); |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1347 | return simple_read_from_buffer(user_buf, count, ppos, buf, len); |
| 1348 | } |
| 1349 | |
Wey-Yi Guy | 1b3eb82 | 2010-01-15 13:43:39 -0800 | [diff] [blame] | 1350 | static ssize_t iwl_dbgfs_fh_reg_read(struct file *file, |
| 1351 | char __user *user_buf, |
| 1352 | size_t count, loff_t *ppos) |
| 1353 | { |
Joe Perches | 5767430 | 2010-07-12 13:50:06 -0700 | [diff] [blame] | 1354 | struct iwl_priv *priv = file->private_data; |
Wey-Yi Guy | 1b3eb82 | 2010-01-15 13:43:39 -0800 | [diff] [blame] | 1355 | char *buf; |
| 1356 | int pos = 0; |
| 1357 | ssize_t ret = -EFAULT; |
| 1358 | |
Wey-Yi Guy | 3ecccbc | 2011-03-29 17:53:15 -0700 | [diff] [blame] | 1359 | ret = pos = iwl_dump_fh(priv, &buf, true); |
| 1360 | if (buf) { |
| 1361 | ret = simple_read_from_buffer(user_buf, |
| 1362 | count, ppos, buf, pos); |
| 1363 | kfree(buf); |
Wey-Yi Guy | 1b3eb82 | 2010-01-15 13:43:39 -0800 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | return ret; |
| 1367 | } |
| 1368 | |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 1369 | static ssize_t iwl_dbgfs_missed_beacon_read(struct file *file, |
| 1370 | char __user *user_buf, |
| 1371 | size_t count, loff_t *ppos) { |
| 1372 | |
| 1373 | struct iwl_priv *priv = file->private_data; |
| 1374 | int pos = 0; |
| 1375 | char buf[12]; |
| 1376 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 1377 | |
| 1378 | pos += scnprintf(buf + pos, bufsz - pos, "%d\n", |
| 1379 | priv->missed_beacon_threshold); |
| 1380 | |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 1381 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | static ssize_t iwl_dbgfs_missed_beacon_write(struct file *file, |
| 1385 | const char __user *user_buf, |
| 1386 | size_t count, loff_t *ppos) |
| 1387 | { |
| 1388 | struct iwl_priv *priv = file->private_data; |
| 1389 | char buf[8]; |
| 1390 | int buf_size; |
| 1391 | int missed; |
| 1392 | |
| 1393 | memset(buf, 0, sizeof(buf)); |
| 1394 | buf_size = min(count, sizeof(buf) - 1); |
| 1395 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1396 | return -EFAULT; |
| 1397 | if (sscanf(buf, "%d", &missed) != 1) |
| 1398 | return -EINVAL; |
| 1399 | |
| 1400 | if (missed < IWL_MISSED_BEACON_THRESHOLD_MIN || |
| 1401 | missed > IWL_MISSED_BEACON_THRESHOLD_MAX) |
| 1402 | priv->missed_beacon_threshold = |
| 1403 | IWL_MISSED_BEACON_THRESHOLD_DEF; |
| 1404 | else |
| 1405 | priv->missed_beacon_threshold = missed; |
| 1406 | |
| 1407 | return count; |
| 1408 | } |
| 1409 | |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1410 | static ssize_t iwl_dbgfs_plcp_delta_read(struct file *file, |
| 1411 | char __user *user_buf, |
| 1412 | size_t count, loff_t *ppos) { |
| 1413 | |
Joe Perches | 5767430 | 2010-07-12 13:50:06 -0700 | [diff] [blame] | 1414 | struct iwl_priv *priv = file->private_data; |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1415 | int pos = 0; |
| 1416 | char buf[12]; |
| 1417 | const size_t bufsz = sizeof(buf); |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1418 | |
| 1419 | pos += scnprintf(buf + pos, bufsz - pos, "%u\n", |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1420 | priv->cfg->base_params->plcp_delta_threshold); |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1421 | |
Wey-Yi Guy | 4967c31 | 2010-02-18 15:22:07 -0800 | [diff] [blame] | 1422 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1423 | } |
| 1424 | |
| 1425 | static ssize_t iwl_dbgfs_plcp_delta_write(struct file *file, |
| 1426 | const char __user *user_buf, |
| 1427 | size_t count, loff_t *ppos) { |
| 1428 | |
| 1429 | struct iwl_priv *priv = file->private_data; |
| 1430 | char buf[8]; |
| 1431 | int buf_size; |
| 1432 | int plcp; |
| 1433 | |
| 1434 | memset(buf, 0, sizeof(buf)); |
| 1435 | buf_size = min(count, sizeof(buf) - 1); |
| 1436 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1437 | return -EFAULT; |
| 1438 | if (sscanf(buf, "%d", &plcp) != 1) |
| 1439 | return -EINVAL; |
Wey-Yi Guy | 680788a | 2010-06-17 15:25:00 -0700 | [diff] [blame] | 1440 | if ((plcp < IWL_MAX_PLCP_ERR_THRESHOLD_MIN) || |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1441 | (plcp > IWL_MAX_PLCP_ERR_THRESHOLD_MAX)) |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1442 | priv->cfg->base_params->plcp_delta_threshold = |
Wey-Yi Guy | 680788a | 2010-06-17 15:25:00 -0700 | [diff] [blame] | 1443 | IWL_MAX_PLCP_ERR_THRESHOLD_DISABLE; |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1444 | else |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1445 | priv->cfg->base_params->plcp_delta_threshold = plcp; |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1446 | return count; |
| 1447 | } |
| 1448 | |
Wey-Yi Guy | 528c312 | 2010-02-18 22:03:07 -0800 | [diff] [blame] | 1449 | static ssize_t iwl_dbgfs_force_reset_read(struct file *file, |
| 1450 | char __user *user_buf, |
| 1451 | size_t count, loff_t *ppos) { |
| 1452 | |
| 1453 | struct iwl_priv *priv = file->private_data; |
| 1454 | int i, pos = 0; |
| 1455 | char buf[300]; |
| 1456 | const size_t bufsz = sizeof(buf); |
| 1457 | struct iwl_force_reset *force_reset; |
| 1458 | |
| 1459 | for (i = 0; i < IWL_MAX_FORCE_RESET; i++) { |
| 1460 | force_reset = &priv->force_reset[i]; |
| 1461 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1462 | "Force reset method %d\n", i); |
| 1463 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1464 | "\tnumber of reset request: %d\n", |
| 1465 | force_reset->reset_request_count); |
| 1466 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1467 | "\tnumber of reset request success: %d\n", |
| 1468 | force_reset->reset_success_count); |
| 1469 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1470 | "\tnumber of reset request reject: %d\n", |
| 1471 | force_reset->reset_reject_count); |
| 1472 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1473 | "\treset duration: %lu\n", |
| 1474 | force_reset->reset_duration); |
| 1475 | } |
| 1476 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1477 | } |
| 1478 | |
Wey-Yi Guy | 04cafd7 | 2010-02-03 11:47:20 -0800 | [diff] [blame] | 1479 | static ssize_t iwl_dbgfs_force_reset_write(struct file *file, |
| 1480 | const char __user *user_buf, |
| 1481 | size_t count, loff_t *ppos) { |
| 1482 | |
| 1483 | struct iwl_priv *priv = file->private_data; |
| 1484 | char buf[8]; |
| 1485 | int buf_size; |
| 1486 | int reset, ret; |
| 1487 | |
| 1488 | memset(buf, 0, sizeof(buf)); |
| 1489 | buf_size = min(count, sizeof(buf) - 1); |
| 1490 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1491 | return -EFAULT; |
| 1492 | if (sscanf(buf, "%d", &reset) != 1) |
| 1493 | return -EINVAL; |
| 1494 | switch (reset) { |
| 1495 | case IWL_RF_RESET: |
| 1496 | case IWL_FW_RESET: |
Wey-Yi Guy | c04f9f2 | 2010-06-21 16:52:55 -0700 | [diff] [blame] | 1497 | ret = iwl_force_reset(priv, reset, true); |
Wey-Yi Guy | 04cafd7 | 2010-02-03 11:47:20 -0800 | [diff] [blame] | 1498 | break; |
| 1499 | default: |
| 1500 | return -EINVAL; |
| 1501 | } |
| 1502 | return ret ? ret : count; |
| 1503 | } |
| 1504 | |
Wey-Yi Guy | 4bf49a9 | 2010-06-24 13:18:36 -0700 | [diff] [blame] | 1505 | static ssize_t iwl_dbgfs_txfifo_flush_write(struct file *file, |
| 1506 | const char __user *user_buf, |
| 1507 | size_t count, loff_t *ppos) { |
| 1508 | |
| 1509 | struct iwl_priv *priv = file->private_data; |
| 1510 | char buf[8]; |
| 1511 | int buf_size; |
| 1512 | int flush; |
| 1513 | |
| 1514 | memset(buf, 0, sizeof(buf)); |
| 1515 | buf_size = min(count, sizeof(buf) - 1); |
| 1516 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1517 | return -EFAULT; |
| 1518 | if (sscanf(buf, "%d", &flush) != 1) |
| 1519 | return -EINVAL; |
| 1520 | |
| 1521 | if (iwl_is_rfkill(priv)) |
| 1522 | return -EFAULT; |
| 1523 | |
| 1524 | priv->cfg->ops->lib->dev_txfifo_flush(priv, IWL_DROP_ALL); |
| 1525 | |
| 1526 | return count; |
| 1527 | } |
| 1528 | |
Wey-Yi Guy | ffb7d89 | 2010-07-14 08:09:55 -0700 | [diff] [blame] | 1529 | static ssize_t iwl_dbgfs_ucode_bt_stats_read(struct file *file, |
| 1530 | char __user *user_buf, |
| 1531 | size_t count, loff_t *ppos) |
| 1532 | { |
| 1533 | struct iwl_priv *priv = (struct iwl_priv *)file->private_data; |
| 1534 | |
| 1535 | return priv->cfg->ops->lib->debugfs_ops.bt_stats_read(file, |
| 1536 | user_buf, count, ppos); |
| 1537 | } |
| 1538 | |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1539 | static ssize_t iwl_dbgfs_wd_timeout_write(struct file *file, |
Wey-Yi Guy | 7bdc473 | 2010-08-23 07:57:07 -0700 | [diff] [blame] | 1540 | const char __user *user_buf, |
| 1541 | size_t count, loff_t *ppos) { |
| 1542 | |
| 1543 | struct iwl_priv *priv = file->private_data; |
| 1544 | char buf[8]; |
| 1545 | int buf_size; |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1546 | int timeout; |
Wey-Yi Guy | 7bdc473 | 2010-08-23 07:57:07 -0700 | [diff] [blame] | 1547 | |
| 1548 | memset(buf, 0, sizeof(buf)); |
| 1549 | buf_size = min(count, sizeof(buf) - 1); |
| 1550 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1551 | return -EFAULT; |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1552 | if (sscanf(buf, "%d", &timeout) != 1) |
Wey-Yi Guy | 7bdc473 | 2010-08-23 07:57:07 -0700 | [diff] [blame] | 1553 | return -EINVAL; |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1554 | if (timeout < 0 || timeout > IWL_MAX_WD_TIMEOUT) |
| 1555 | timeout = IWL_DEF_WD_TIMEOUT; |
Wey-Yi Guy | 7bdc473 | 2010-08-23 07:57:07 -0700 | [diff] [blame] | 1556 | |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1557 | priv->cfg->base_params->wd_timeout = timeout; |
| 1558 | iwl_setup_watchdog(priv); |
Wey-Yi Guy | 7bdc473 | 2010-08-23 07:57:07 -0700 | [diff] [blame] | 1559 | return count; |
| 1560 | } |
| 1561 | |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1562 | static ssize_t iwl_dbgfs_bt_traffic_read(struct file *file, |
| 1563 | char __user *user_buf, |
| 1564 | size_t count, loff_t *ppos) { |
| 1565 | |
| 1566 | struct iwl_priv *priv = (struct iwl_priv *)file->private_data; |
| 1567 | int pos = 0; |
| 1568 | char buf[200]; |
| 1569 | const size_t bufsz = sizeof(buf); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1570 | |
Wey-Yi Guy | f21dd00 | 2010-12-08 15:34:52 -0800 | [diff] [blame] | 1571 | if (!priv->bt_enable_flag) { |
| 1572 | pos += scnprintf(buf + pos, bufsz - pos, "BT coex disabled\n"); |
Johannes Berg | 08960de | 2011-04-05 09:41:53 -0700 | [diff] [blame] | 1573 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | f21dd00 | 2010-12-08 15:34:52 -0800 | [diff] [blame] | 1574 | } |
| 1575 | pos += scnprintf(buf + pos, bufsz - pos, "BT enable flag: 0x%x\n", |
| 1576 | priv->bt_enable_flag); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1577 | pos += scnprintf(buf + pos, bufsz - pos, "BT in %s mode\n", |
| 1578 | priv->bt_full_concurrent ? "full concurrency" : "3-wire"); |
| 1579 | pos += scnprintf(buf + pos, bufsz - pos, "BT status: %s, " |
| 1580 | "last traffic notif: %d\n", |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 1581 | priv->bt_status ? "On" : "Off", priv->last_bt_traffic_load); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1582 | pos += scnprintf(buf + pos, bufsz - pos, "ch_announcement: %d, " |
Wey-Yi Guy | 187bc4f | 2011-01-27 13:01:33 -0800 | [diff] [blame] | 1583 | "kill_ack_mask: %x, kill_cts_mask: %x\n", |
| 1584 | priv->bt_ch_announce, priv->kill_ack_mask, |
| 1585 | priv->kill_cts_mask); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1586 | |
| 1587 | pos += scnprintf(buf + pos, bufsz - pos, "bluetooth traffic load: "); |
| 1588 | switch (priv->bt_traffic_load) { |
| 1589 | case IWL_BT_COEX_TRAFFIC_LOAD_CONTINUOUS: |
| 1590 | pos += scnprintf(buf + pos, bufsz - pos, "Continuous\n"); |
| 1591 | break; |
| 1592 | case IWL_BT_COEX_TRAFFIC_LOAD_HIGH: |
| 1593 | pos += scnprintf(buf + pos, bufsz - pos, "High\n"); |
| 1594 | break; |
| 1595 | case IWL_BT_COEX_TRAFFIC_LOAD_LOW: |
| 1596 | pos += scnprintf(buf + pos, bufsz - pos, "Low\n"); |
| 1597 | break; |
| 1598 | case IWL_BT_COEX_TRAFFIC_LOAD_NONE: |
| 1599 | default: |
| 1600 | pos += scnprintf(buf + pos, bufsz - pos, "None\n"); |
| 1601 | break; |
| 1602 | } |
| 1603 | |
Johannes Berg | 08960de | 2011-04-05 09:41:53 -0700 | [diff] [blame] | 1604 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1605 | } |
| 1606 | |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1607 | static ssize_t iwl_dbgfs_protection_mode_read(struct file *file, |
| 1608 | char __user *user_buf, |
| 1609 | size_t count, loff_t *ppos) |
| 1610 | { |
| 1611 | struct iwl_priv *priv = (struct iwl_priv *)file->private_data; |
| 1612 | |
| 1613 | int pos = 0; |
| 1614 | char buf[40]; |
| 1615 | const size_t bufsz = sizeof(buf); |
| 1616 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1617 | if (priv->cfg->ht_params) |
| 1618 | pos += scnprintf(buf + pos, bufsz - pos, |
| 1619 | "use %s for aggregation\n", |
| 1620 | (priv->cfg->ht_params->use_rts_for_aggregation) ? |
| 1621 | "rts/cts" : "cts-to-self"); |
| 1622 | else |
| 1623 | pos += scnprintf(buf + pos, bufsz - pos, "N/A"); |
| 1624 | |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1625 | return simple_read_from_buffer(user_buf, count, ppos, buf, pos); |
| 1626 | } |
| 1627 | |
| 1628 | static ssize_t iwl_dbgfs_protection_mode_write(struct file *file, |
| 1629 | const char __user *user_buf, |
| 1630 | size_t count, loff_t *ppos) { |
| 1631 | |
| 1632 | struct iwl_priv *priv = file->private_data; |
| 1633 | char buf[8]; |
| 1634 | int buf_size; |
| 1635 | int rts; |
| 1636 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1637 | if (!priv->cfg->ht_params) |
| 1638 | return -EINVAL; |
| 1639 | |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1640 | memset(buf, 0, sizeof(buf)); |
| 1641 | buf_size = min(count, sizeof(buf) - 1); |
| 1642 | if (copy_from_user(buf, user_buf, buf_size)) |
| 1643 | return -EFAULT; |
| 1644 | if (sscanf(buf, "%d", &rts) != 1) |
| 1645 | return -EINVAL; |
| 1646 | if (rts) |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1647 | priv->cfg->ht_params->use_rts_for_aggregation = true; |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1648 | else |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1649 | priv->cfg->ht_params->use_rts_for_aggregation = false; |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1650 | return count; |
| 1651 | } |
| 1652 | |
Wey-Yi Guy | 54a9aa6 | 2010-09-05 10:49:42 -0700 | [diff] [blame] | 1653 | static ssize_t iwl_dbgfs_reply_tx_error_read(struct file *file, |
| 1654 | char __user *user_buf, |
| 1655 | size_t count, loff_t *ppos) |
| 1656 | { |
| 1657 | struct iwl_priv *priv = file->private_data; |
| 1658 | |
| 1659 | if (priv->cfg->ops->lib->debugfs_ops.reply_tx_error) |
| 1660 | return priv->cfg->ops->lib->debugfs_ops.reply_tx_error( |
| 1661 | file, user_buf, count, ppos); |
| 1662 | else |
| 1663 | return -ENODATA; |
| 1664 | } |
Wey-Yi Guy | 7163b8a | 2009-11-20 12:04:56 -0800 | [diff] [blame] | 1665 | DEBUGFS_READ_FILE_OPS(rx_statistics); |
| 1666 | DEBUGFS_READ_FILE_OPS(tx_statistics); |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 1667 | DEBUGFS_READ_WRITE_FILE_OPS(traffic_log); |
Wey-Yi Guy | 141b03e | 2009-08-07 15:41:41 -0700 | [diff] [blame] | 1668 | DEBUGFS_READ_FILE_OPS(rx_queue); |
| 1669 | DEBUGFS_READ_FILE_OPS(tx_queue); |
Wey-Yi Guy | e8fe59a | 2009-08-07 15:41:42 -0700 | [diff] [blame] | 1670 | DEBUGFS_READ_FILE_OPS(ucode_rx_stats); |
| 1671 | DEBUGFS_READ_FILE_OPS(ucode_tx_stats); |
| 1672 | DEBUGFS_READ_FILE_OPS(ucode_general_stats); |
Wey-Yi Guy | 5225935 | 2009-08-07 15:41:43 -0700 | [diff] [blame] | 1673 | DEBUGFS_READ_FILE_OPS(sensitivity); |
| 1674 | DEBUGFS_READ_FILE_OPS(chain_noise); |
Wey-Yi Guy | c09430a | 2009-10-16 14:25:50 -0700 | [diff] [blame] | 1675 | DEBUGFS_READ_FILE_OPS(power_save_status); |
Wey-Yi Guy | 7163b8a | 2009-11-20 12:04:56 -0800 | [diff] [blame] | 1676 | DEBUGFS_WRITE_FILE_OPS(clear_ucode_statistics); |
| 1677 | DEBUGFS_WRITE_FILE_OPS(clear_traffic_statistics); |
Wey-Yi Guy | 696bdee | 2009-12-10 14:37:25 -0800 | [diff] [blame] | 1678 | DEBUGFS_WRITE_FILE_OPS(csr); |
Wey-Yi Guy | a9e1cb6 | 2009-12-10 14:37:26 -0800 | [diff] [blame] | 1679 | DEBUGFS_READ_WRITE_FILE_OPS(ucode_tracing); |
Wey-Yi Guy | 1b3eb82 | 2010-01-15 13:43:39 -0800 | [diff] [blame] | 1680 | DEBUGFS_READ_FILE_OPS(fh_reg); |
Wey-Yi Guy | a13d276 | 2010-01-22 14:22:42 -0800 | [diff] [blame] | 1681 | DEBUGFS_READ_WRITE_FILE_OPS(missed_beacon); |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 1682 | DEBUGFS_READ_WRITE_FILE_OPS(plcp_delta); |
Wey-Yi Guy | 528c312 | 2010-02-18 22:03:07 -0800 | [diff] [blame] | 1683 | DEBUGFS_READ_WRITE_FILE_OPS(force_reset); |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1684 | DEBUGFS_READ_FILE_OPS(rxon_flags); |
| 1685 | DEBUGFS_READ_FILE_OPS(rxon_filter_flags); |
Wey-Yi Guy | 4bf49a9 | 2010-06-24 13:18:36 -0700 | [diff] [blame] | 1686 | DEBUGFS_WRITE_FILE_OPS(txfifo_flush); |
Wey-Yi Guy | ffb7d89 | 2010-07-14 08:09:55 -0700 | [diff] [blame] | 1687 | DEBUGFS_READ_FILE_OPS(ucode_bt_stats); |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1688 | DEBUGFS_WRITE_FILE_OPS(wd_timeout); |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1689 | DEBUGFS_READ_FILE_OPS(bt_traffic); |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1690 | DEBUGFS_READ_WRITE_FILE_OPS(protection_mode); |
Wey-Yi Guy | 54a9aa6 | 2010-09-05 10:49:42 -0700 | [diff] [blame] | 1691 | DEBUGFS_READ_FILE_OPS(reply_tx_error); |
Wey-Yi Guy | 20594eb | 2009-08-07 15:41:39 -0700 | [diff] [blame] | 1692 | |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1693 | /* |
| 1694 | * Create the debugfs files and directories |
| 1695 | * |
| 1696 | */ |
| 1697 | int iwl_dbgfs_register(struct iwl_priv *priv, const char *name) |
| 1698 | { |
Zhu Yi | 95b1a82 | 2008-05-29 16:34:50 +0800 | [diff] [blame] | 1699 | struct dentry *phyd = priv->hw->wiphy->debugfsdir; |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1700 | struct dentry *dir_drv, *dir_data, *dir_rf, *dir_debug; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1701 | |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1702 | dir_drv = debugfs_create_dir(name, phyd); |
| 1703 | if (!dir_drv) |
| 1704 | return -ENOMEM; |
| 1705 | |
| 1706 | priv->debugfs_dir = dir_drv; |
| 1707 | |
| 1708 | dir_data = debugfs_create_dir("data", dir_drv); |
| 1709 | if (!dir_data) |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1710 | goto err; |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1711 | dir_rf = debugfs_create_dir("rf", dir_drv); |
| 1712 | if (!dir_rf) |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1713 | goto err; |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1714 | dir_debug = debugfs_create_dir("debug", dir_drv); |
| 1715 | if (!dir_debug) |
| 1716 | goto err; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1717 | |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1718 | DEBUGFS_ADD_FILE(nvm, dir_data, S_IRUSR); |
| 1719 | DEBUGFS_ADD_FILE(sram, dir_data, S_IWUSR | S_IRUSR); |
| 1720 | DEBUGFS_ADD_FILE(log_event, dir_data, S_IWUSR | S_IRUSR); |
| 1721 | DEBUGFS_ADD_FILE(stations, dir_data, S_IRUSR); |
| 1722 | DEBUGFS_ADD_FILE(channels, dir_data, S_IRUSR); |
| 1723 | DEBUGFS_ADD_FILE(status, dir_data, S_IRUSR); |
| 1724 | DEBUGFS_ADD_FILE(interrupt, dir_data, S_IWUSR | S_IRUSR); |
| 1725 | DEBUGFS_ADD_FILE(qos, dir_data, S_IRUSR); |
Wey-Yi Guy | 23c0fcc | 2011-04-01 16:29:53 -0700 | [diff] [blame] | 1726 | DEBUGFS_ADD_FILE(sleep_level_override, dir_data, S_IWUSR | S_IRUSR); |
| 1727 | DEBUGFS_ADD_FILE(current_sleep_command, dir_data, S_IRUSR); |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1728 | DEBUGFS_ADD_FILE(thermal_throttling, dir_data, S_IRUSR); |
| 1729 | DEBUGFS_ADD_FILE(disable_ht40, dir_data, S_IWUSR | S_IRUSR); |
| 1730 | DEBUGFS_ADD_FILE(rx_statistics, dir_debug, S_IRUSR); |
| 1731 | DEBUGFS_ADD_FILE(tx_statistics, dir_debug, S_IRUSR); |
| 1732 | DEBUGFS_ADD_FILE(traffic_log, dir_debug, S_IWUSR | S_IRUSR); |
| 1733 | DEBUGFS_ADD_FILE(rx_queue, dir_debug, S_IRUSR); |
| 1734 | DEBUGFS_ADD_FILE(tx_queue, dir_debug, S_IRUSR); |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1735 | DEBUGFS_ADD_FILE(power_save_status, dir_debug, S_IRUSR); |
| 1736 | DEBUGFS_ADD_FILE(clear_ucode_statistics, dir_debug, S_IWUSR); |
| 1737 | DEBUGFS_ADD_FILE(clear_traffic_statistics, dir_debug, S_IWUSR); |
| 1738 | DEBUGFS_ADD_FILE(csr, dir_debug, S_IWUSR); |
| 1739 | DEBUGFS_ADD_FILE(fh_reg, dir_debug, S_IRUSR); |
| 1740 | DEBUGFS_ADD_FILE(missed_beacon, dir_debug, S_IWUSR); |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1741 | DEBUGFS_ADD_FILE(plcp_delta, dir_debug, S_IWUSR | S_IRUSR); |
Wey-Yi Guy | 528c312 | 2010-02-18 22:03:07 -0800 | [diff] [blame] | 1742 | DEBUGFS_ADD_FILE(force_reset, dir_debug, S_IWUSR | S_IRUSR); |
Abhijeet Kolekar | b8c7626 | 2010-04-08 15:29:07 -0700 | [diff] [blame] | 1743 | DEBUGFS_ADD_FILE(ucode_rx_stats, dir_debug, S_IRUSR); |
| 1744 | DEBUGFS_ADD_FILE(ucode_tx_stats, dir_debug, S_IRUSR); |
| 1745 | DEBUGFS_ADD_FILE(ucode_general_stats, dir_debug, S_IRUSR); |
Wey-Yi Guy | 4bf49a9 | 2010-06-24 13:18:36 -0700 | [diff] [blame] | 1746 | if (priv->cfg->ops->lib->dev_txfifo_flush) |
| 1747 | DEBUGFS_ADD_FILE(txfifo_flush, dir_debug, S_IWUSR); |
Wey-Yi Guy | c6abdc0 | 2010-09-01 17:10:51 -0700 | [diff] [blame] | 1748 | DEBUGFS_ADD_FILE(protection_mode, dir_debug, S_IWUSR | S_IRUSR); |
Abhijeet Kolekar | b8c7626 | 2010-04-08 15:29:07 -0700 | [diff] [blame] | 1749 | |
Wey-Yi Guy | 703bc58 | 2011-04-03 08:14:41 -0700 | [diff] [blame^] | 1750 | DEBUGFS_ADD_FILE(sensitivity, dir_debug, S_IRUSR); |
| 1751 | DEBUGFS_ADD_FILE(chain_noise, dir_debug, S_IRUSR); |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 1752 | if (priv->cfg->base_params->ucode_tracing) |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1753 | DEBUGFS_ADD_FILE(ucode_tracing, dir_debug, S_IWUSR | S_IRUSR); |
Stanislaw Gruszka | 9f60e7e | 2011-01-28 16:47:51 +0100 | [diff] [blame] | 1754 | if (iwl_bt_statistics(priv)) |
Wey-Yi Guy | ffb7d89 | 2010-07-14 08:09:55 -0700 | [diff] [blame] | 1755 | DEBUGFS_ADD_FILE(ucode_bt_stats, dir_debug, S_IRUSR); |
Wey-Yi Guy | 54a9aa6 | 2010-09-05 10:49:42 -0700 | [diff] [blame] | 1756 | DEBUGFS_ADD_FILE(reply_tx_error, dir_debug, S_IRUSR); |
Johannes Berg | 6098720 | 2010-02-18 00:36:07 -0800 | [diff] [blame] | 1757 | DEBUGFS_ADD_FILE(rxon_flags, dir_debug, S_IWUSR); |
| 1758 | DEBUGFS_ADD_FILE(rxon_filter_flags, dir_debug, S_IWUSR); |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 1759 | DEBUGFS_ADD_FILE(wd_timeout, dir_debug, S_IWUSR); |
Stanislaw Gruszka | 88e58fc | 2011-01-28 16:47:47 +0100 | [diff] [blame] | 1760 | if (iwl_advanced_bt_coexist(priv)) |
Wey-Yi Guy | befe8c4 | 2010-08-23 07:57:16 -0700 | [diff] [blame] | 1761 | DEBUGFS_ADD_FILE(bt_traffic, dir_debug, S_IRUSR); |
Wey-Yi Guy | 703bc58 | 2011-04-03 08:14:41 -0700 | [diff] [blame^] | 1762 | DEBUGFS_ADD_BOOL(disable_sensitivity, dir_rf, |
| 1763 | &priv->disable_sens_cal); |
| 1764 | DEBUGFS_ADD_BOOL(disable_chain_noise, dir_rf, |
| 1765 | &priv->disable_chain_noise_cal); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1766 | return 0; |
| 1767 | |
| 1768 | err: |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1769 | IWL_ERR(priv, "Can't create the debugfs directory\n"); |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1770 | iwl_dbgfs_unregister(priv); |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1771 | return -ENOMEM; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1772 | } |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1773 | |
| 1774 | /** |
| 1775 | * Remove the debugfs files and directories |
| 1776 | * |
| 1777 | */ |
| 1778 | void iwl_dbgfs_unregister(struct iwl_priv *priv) |
| 1779 | { |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1780 | if (!priv->debugfs_dir) |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1781 | return; |
| 1782 | |
Johannes Berg | 4c84a8f | 2010-01-22 14:22:54 -0800 | [diff] [blame] | 1783 | debugfs_remove_recursive(priv->debugfs_dir); |
| 1784 | priv->debugfs_dir = NULL; |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1785 | } |
Tomas Winkler | 712b6cf | 2008-03-12 16:58:52 -0700 | [diff] [blame] | 1786 | |
| 1787 | |
Tomas Winkler | 445c2df | 2008-05-15 13:54:16 +0800 | [diff] [blame] | 1788 | |