iwlwifi: mvm: Add basic uAPSD client support
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / mvm / debugfs.c
CommitLineData
8ca151b5
JB
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
8 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
410dc5aa 25 * in the file called COPYING.
8ca151b5
JB
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
33 * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
63#include "mvm.h"
64#include "sta.h"
65#include "iwl-io.h"
66
67struct iwl_dbgfs_mvm_ctx {
68 struct iwl_mvm *mvm;
69 struct ieee80211_vif *vif;
70};
71
8ca151b5
JB
72static ssize_t iwl_dbgfs_tx_flush_write(struct file *file,
73 const char __user *user_buf,
74 size_t count, loff_t *ppos)
75{
76 struct iwl_mvm *mvm = file->private_data;
77
78 char buf[16];
79 int buf_size, ret;
80 u32 scd_q_msk;
81
82 if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
83 return -EIO;
84
85 memset(buf, 0, sizeof(buf));
86 buf_size = min(count, sizeof(buf) - 1);
87 if (copy_from_user(buf, user_buf, buf_size))
88 return -EFAULT;
89
90 if (sscanf(buf, "%x", &scd_q_msk) != 1)
91 return -EINVAL;
92
93 IWL_ERR(mvm, "FLUSHING queues: scd_q_msk = 0x%x\n", scd_q_msk);
94
95 mutex_lock(&mvm->mutex);
96 ret = iwl_mvm_flush_tx_path(mvm, scd_q_msk, true) ? : count;
97 mutex_unlock(&mvm->mutex);
98
99 return ret;
100}
101
102static ssize_t iwl_dbgfs_sta_drain_write(struct file *file,
103 const char __user *user_buf,
104 size_t count, loff_t *ppos)
105{
106 struct iwl_mvm *mvm = file->private_data;
107 struct ieee80211_sta *sta;
108
109 char buf[8];
110 int buf_size, sta_id, drain, ret;
111
112 if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
113 return -EIO;
114
115 memset(buf, 0, sizeof(buf));
116 buf_size = min(count, sizeof(buf) - 1);
117 if (copy_from_user(buf, user_buf, buf_size))
118 return -EFAULT;
119
120 if (sscanf(buf, "%d %d", &sta_id, &drain) != 2)
121 return -EINVAL;
122
123 mutex_lock(&mvm->mutex);
124
125 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[sta_id],
126 lockdep_is_held(&mvm->mutex));
127 if (IS_ERR_OR_NULL(sta))
128 ret = -ENOENT;
129 else
130 ret = iwl_mvm_drain_sta(mvm, (void *)sta->drv_priv, drain) ? :
131 count;
132
133 mutex_unlock(&mvm->mutex);
134
135 return ret;
136}
137
138static ssize_t iwl_dbgfs_sram_read(struct file *file, char __user *user_buf,
139 size_t count, loff_t *ppos)
140{
141 struct iwl_mvm *mvm = file->private_data;
142 const struct fw_img *img;
143 int ofs, len, pos = 0;
144 size_t bufsz, ret;
145 char *buf;
146 u8 *ptr;
147
60191d99
JB
148 if (!mvm->ucode_loaded)
149 return -EINVAL;
150
8ca151b5
JB
151 /* default is to dump the entire data segment */
152 if (!mvm->dbgfs_sram_offset && !mvm->dbgfs_sram_len) {
8ca151b5 153 img = &mvm->fw->img[mvm->cur_ucode];
60191d99
JB
154 ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
155 len = img->sec[IWL_UCODE_SECTION_DATA].len;
156 } else {
157 ofs = mvm->dbgfs_sram_offset;
158 len = mvm->dbgfs_sram_len;
8ca151b5 159 }
8ca151b5
JB
160
161 bufsz = len * 4 + 256;
162 buf = kzalloc(bufsz, GFP_KERNEL);
163 if (!buf)
164 return -ENOMEM;
165
166 ptr = kzalloc(len, GFP_KERNEL);
167 if (!ptr) {
168 kfree(buf);
169 return -ENOMEM;
170 }
171
172 pos += scnprintf(buf + pos, bufsz - pos, "sram_len: 0x%x\n", len);
60191d99 173 pos += scnprintf(buf + pos, bufsz - pos, "sram_offset: 0x%x\n", ofs);
8ca151b5 174
60191d99 175 iwl_trans_read_mem_bytes(mvm->trans, ofs, ptr, len);
8ca151b5
JB
176 for (ofs = 0; ofs < len; ofs += 16) {
177 pos += scnprintf(buf + pos, bufsz - pos, "0x%.4x ", ofs);
178 hex_dump_to_buffer(ptr + ofs, 16, 16, 1, buf + pos,
179 bufsz - pos, false);
180 pos += strlen(buf + pos);
181 if (bufsz - pos > 0)
182 buf[pos++] = '\n';
183 }
184
185 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
186
187 kfree(buf);
188 kfree(ptr);
189
190 return ret;
191}
192
193static ssize_t iwl_dbgfs_sram_write(struct file *file,
194 const char __user *user_buf, size_t count,
195 loff_t *ppos)
196{
197 struct iwl_mvm *mvm = file->private_data;
198 char buf[64];
199 int buf_size;
200 u32 offset, len;
201
202 memset(buf, 0, sizeof(buf));
203 buf_size = min(count, sizeof(buf) - 1);
204 if (copy_from_user(buf, user_buf, buf_size))
205 return -EFAULT;
206
207 if (sscanf(buf, "%x,%x", &offset, &len) == 2) {
208 if ((offset & 0x3) || (len & 0x3))
209 return -EINVAL;
210 mvm->dbgfs_sram_offset = offset;
211 mvm->dbgfs_sram_len = len;
212 } else {
213 mvm->dbgfs_sram_offset = 0;
214 mvm->dbgfs_sram_len = 0;
215 }
216
217 return count;
218}
219
220static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf,
221 size_t count, loff_t *ppos)
222{
223 struct iwl_mvm *mvm = file->private_data;
224 struct ieee80211_sta *sta;
225 char buf[400];
226 int i, pos = 0, bufsz = sizeof(buf);
227
228 mutex_lock(&mvm->mutex);
229
230 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
231 pos += scnprintf(buf + pos, bufsz - pos, "%.2d: ", i);
232 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
233 lockdep_is_held(&mvm->mutex));
234 if (!sta)
235 pos += scnprintf(buf + pos, bufsz - pos, "N/A\n");
236 else if (IS_ERR(sta))
237 pos += scnprintf(buf + pos, bufsz - pos, "%ld\n",
238 PTR_ERR(sta));
239 else
240 pos += scnprintf(buf + pos, bufsz - pos, "%pM\n",
241 sta->addr);
242 }
243
244 mutex_unlock(&mvm->mutex);
245
246 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
247}
248
249static ssize_t iwl_dbgfs_power_down_allow_write(struct file *file,
250 const char __user *user_buf,
251 size_t count, loff_t *ppos)
252{
253 struct iwl_mvm *mvm = file->private_data;
254 char buf[8] = {};
255 int allow;
256
257 if (!mvm->ucode_loaded)
258 return -EIO;
259
260 if (copy_from_user(buf, user_buf, sizeof(buf)))
261 return -EFAULT;
262
263 if (sscanf(buf, "%d", &allow) != 1)
264 return -EINVAL;
265
266 IWL_DEBUG_POWER(mvm, "%s device power down\n",
267 allow ? "allow" : "prevent");
268
269 /*
270 * TODO: Send REPLY_DEBUG_CMD (0xf0) when FW support it
271 */
272
273 return count;
274}
275
276static ssize_t iwl_dbgfs_power_down_d3_allow_write(struct file *file,
277 const char __user *user_buf,
278 size_t count, loff_t *ppos)
279{
280 struct iwl_mvm *mvm = file->private_data;
281 char buf[8] = {};
282 int allow;
283
284 if (copy_from_user(buf, user_buf, sizeof(buf)))
285 return -EFAULT;
286
287 if (sscanf(buf, "%d", &allow) != 1)
288 return -EINVAL;
289
290 IWL_DEBUG_POWER(mvm, "%s device power down in d3\n",
291 allow ? "allow" : "prevent");
292
293 /*
294 * TODO: When WoWLAN FW alive notification happens, driver will send
295 * REPLY_DEBUG_CMD setting power_down_allow flag according to
296 * mvm->prevent_power_down_d3
297 */
298 mvm->prevent_power_down_d3 = !allow;
299
300 return count;
301}
302
b571a697
AB
303static void iwl_dbgfs_update_pm(struct iwl_mvm *mvm,
304 struct ieee80211_vif *vif,
305 enum iwl_dbgfs_pm_mask param, int val)
306{
307 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
308 struct iwl_dbgfs_pm *dbgfs_pm = &mvmvif->dbgfs_pm;
309
310 dbgfs_pm->mask |= param;
311
312 switch (param) {
313 case MVM_DEBUGFS_PM_KEEP_ALIVE: {
314 struct ieee80211_hw *hw = mvm->hw;
315 int dtimper = hw->conf.ps_dtim_period ?: 1;
316 int dtimper_msec = dtimper * vif->bss_conf.beacon_int;
317
318 IWL_DEBUG_POWER(mvm, "debugfs: set keep_alive= %d sec\n", val);
319 if (val * MSEC_PER_SEC < 3 * dtimper_msec) {
320 IWL_WARN(mvm,
321 "debugfs: keep alive period (%ld msec) is less than minimum required (%d msec)\n",
322 val * MSEC_PER_SEC, 3 * dtimper_msec);
323 }
324 dbgfs_pm->keep_alive_seconds = val;
325 break;
326 }
327 case MVM_DEBUGFS_PM_SKIP_OVER_DTIM:
328 IWL_DEBUG_POWER(mvm, "skip_over_dtim %s\n",
329 val ? "enabled" : "disabled");
330 dbgfs_pm->skip_over_dtim = val;
331 break;
332 case MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS:
333 IWL_DEBUG_POWER(mvm, "skip_dtim_periods=%d\n", val);
334 dbgfs_pm->skip_dtim_periods = val;
335 break;
336 case MVM_DEBUGFS_PM_RX_DATA_TIMEOUT:
337 IWL_DEBUG_POWER(mvm, "rx_data_timeout=%d\n", val);
338 dbgfs_pm->rx_data_timeout = val;
339 break;
340 case MVM_DEBUGFS_PM_TX_DATA_TIMEOUT:
341 IWL_DEBUG_POWER(mvm, "tx_data_timeout=%d\n", val);
342 dbgfs_pm->tx_data_timeout = val;
343 break;
344 case MVM_DEBUGFS_PM_DISABLE_POWER_OFF:
345 IWL_DEBUG_POWER(mvm, "disable_power_off=%d\n", val);
346 dbgfs_pm->disable_power_off = val;
bd4ace2a
AB
347 case MVM_DEBUGFS_PM_LPRX_ENA:
348 IWL_DEBUG_POWER(mvm, "lprx %s\n", val ? "enabled" : "disabled");
349 dbgfs_pm->lprx_ena = val;
350 break;
351 case MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD:
352 IWL_DEBUG_POWER(mvm, "lprx_rssi_threshold=%d\n", val);
353 dbgfs_pm->lprx_rssi_threshold = val;
b571a697
AB
354 break;
355 }
356}
357
358static ssize_t iwl_dbgfs_pm_params_write(struct file *file,
359 const char __user *user_buf,
360 size_t count, loff_t *ppos)
361{
362 struct ieee80211_vif *vif = file->private_data;
363 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
364 struct iwl_mvm *mvm = mvmvif->dbgfs_data;
365 enum iwl_dbgfs_pm_mask param;
366 char buf[32] = {};
367 int val;
368 int ret;
369
370 if (copy_from_user(buf, user_buf, sizeof(buf)))
371 return -EFAULT;
372
373 if (!strncmp("keep_alive=", buf, 11)) {
374 if (sscanf(buf + 11, "%d", &val) != 1)
375 return -EINVAL;
376 param = MVM_DEBUGFS_PM_KEEP_ALIVE;
377 } else if (!strncmp("skip_over_dtim=", buf, 15)) {
378 if (sscanf(buf + 15, "%d", &val) != 1)
379 return -EINVAL;
380 param = MVM_DEBUGFS_PM_SKIP_OVER_DTIM;
381 } else if (!strncmp("skip_dtim_periods=", buf, 18)) {
382 if (sscanf(buf + 18, "%d", &val) != 1)
383 return -EINVAL;
384 param = MVM_DEBUGFS_PM_SKIP_DTIM_PERIODS;
385 } else if (!strncmp("rx_data_timeout=", buf, 16)) {
386 if (sscanf(buf + 16, "%d", &val) != 1)
387 return -EINVAL;
388 param = MVM_DEBUGFS_PM_RX_DATA_TIMEOUT;
389 } else if (!strncmp("tx_data_timeout=", buf, 16)) {
390 if (sscanf(buf + 16, "%d", &val) != 1)
391 return -EINVAL;
392 param = MVM_DEBUGFS_PM_TX_DATA_TIMEOUT;
393 } else if (!strncmp("disable_power_off=", buf, 18)) {
394 if (sscanf(buf + 18, "%d", &val) != 1)
395 return -EINVAL;
396 param = MVM_DEBUGFS_PM_DISABLE_POWER_OFF;
bd4ace2a
AB
397 } else if (!strncmp("lprx=", buf, 5)) {
398 if (sscanf(buf + 5, "%d", &val) != 1)
399 return -EINVAL;
400 param = MVM_DEBUGFS_PM_LPRX_ENA;
401 } else if (!strncmp("lprx_rssi_threshold=", buf, 20)) {
402 if (sscanf(buf + 20, "%d", &val) != 1)
403 return -EINVAL;
404 if (val > POWER_LPRX_RSSI_THRESHOLD_MAX || val <
405 POWER_LPRX_RSSI_THRESHOLD_MIN)
406 return -EINVAL;
407 param = MVM_DEBUGFS_PM_LPRX_RSSI_THRESHOLD;
b571a697
AB
408 } else {
409 return -EINVAL;
410 }
411
412 mutex_lock(&mvm->mutex);
413 iwl_dbgfs_update_pm(mvm, vif, param, val);
414 ret = iwl_mvm_power_update_mode(mvm, vif);
415 mutex_unlock(&mvm->mutex);
416
417 return ret ?: count;
418}
419
420static ssize_t iwl_dbgfs_pm_params_read(struct file *file,
421 char __user *user_buf,
422 size_t count, loff_t *ppos)
423{
424 struct ieee80211_vif *vif = file->private_data;
425 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
426 struct iwl_mvm *mvm = mvmvif->dbgfs_data;
e3c588ec 427 char buf[512];
b571a697 428 int bufsz = sizeof(buf);
e811ada7 429 int pos;
b571a697 430
e811ada7 431 pos = iwl_mvm_power_dbgfs_read(mvm, vif, buf, bufsz);
b571a697
AB
432
433 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
434}
435
63494374
JB
436static ssize_t iwl_dbgfs_mac_params_read(struct file *file,
437 char __user *user_buf,
438 size_t count, loff_t *ppos)
439{
440 struct ieee80211_vif *vif = file->private_data;
441 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
442 struct iwl_mvm *mvm = mvmvif->dbgfs_data;
443 u8 ap_sta_id;
444 struct ieee80211_chanctx_conf *chanctx_conf;
445 char buf[512];
446 int bufsz = sizeof(buf);
447 int pos = 0;
448 int i;
449
450 mutex_lock(&mvm->mutex);
451
452 ap_sta_id = mvmvif->ap_sta_id;
453
454 pos += scnprintf(buf+pos, bufsz-pos, "mac id/color: %d / %d\n",
455 mvmvif->id, mvmvif->color);
456 pos += scnprintf(buf+pos, bufsz-pos, "bssid: %pM\n",
457 vif->bss_conf.bssid);
458 pos += scnprintf(buf+pos, bufsz-pos, "QoS:\n");
459 for (i = 0; i < ARRAY_SIZE(mvmvif->queue_params); i++) {
460 pos += scnprintf(buf+pos, bufsz-pos,
461 "\t%d: txop:%d - cw_min:%d - cw_max = %d - aifs = %d upasd = %d\n",
462 i, mvmvif->queue_params[i].txop,
463 mvmvif->queue_params[i].cw_min,
464 mvmvif->queue_params[i].cw_max,
465 mvmvif->queue_params[i].aifs,
466 mvmvif->queue_params[i].uapsd);
467 }
468
2b76ef13
EG
469 if (vif->type == NL80211_IFTYPE_STATION &&
470 ap_sta_id != IWL_MVM_STATION_COUNT) {
471 struct ieee80211_sta *sta;
472 struct iwl_mvm_sta *mvm_sta;
473
474 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[ap_sta_id],
475 lockdep_is_held(&mvm->mutex));
476 mvm_sta = (void *)sta->drv_priv;
477 pos += scnprintf(buf+pos, bufsz-pos,
478 "ap_sta_id %d - reduced Tx power %d\n",
479 ap_sta_id, mvm_sta->bt_reduced_txpower);
480 }
63494374
JB
481
482 rcu_read_lock();
483 chanctx_conf = rcu_dereference(vif->chanctx_conf);
484 if (chanctx_conf) {
485 pos += scnprintf(buf+pos, bufsz-pos,
486 "idle rx chains %d, active rx chains: %d\n",
487 chanctx_conf->rx_chains_static,
488 chanctx_conf->rx_chains_dynamic);
489 }
490 rcu_read_unlock();
491
492 mutex_unlock(&mvm->mutex);
493
494 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
495}
496
10942342
EG
497#define BT_MBOX_MSG(_notif, _num, _field) \
498 ((le32_to_cpu((_notif)->mbox_msg[(_num)]) & BT_MBOX##_num##_##_field)\
499 >> BT_MBOX##_num##_##_field##_POS)
500
501
502#define BT_MBOX_PRINT(_num, _field, _end) \
503 pos += scnprintf(buf + pos, bufsz - pos, \
504 "\t%s: %d%s", \
505 #_field, \
506 BT_MBOX_MSG(notif, _num, _field), \
507 true ? "\n" : ", ");
508
509static ssize_t iwl_dbgfs_bt_notif_read(struct file *file, char __user *user_buf,
510 size_t count, loff_t *ppos)
511{
512 struct iwl_mvm *mvm = file->private_data;
513 struct iwl_bt_coex_profile_notif *notif = &mvm->last_bt_notif;
514 char *buf;
515 int ret, pos = 0, bufsz = sizeof(char) * 1024;
516
517 buf = kmalloc(bufsz, GFP_KERNEL);
518 if (!buf)
519 return -ENOMEM;
520
521 mutex_lock(&mvm->mutex);
522
523 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw0:\n");
524
525 BT_MBOX_PRINT(0, LE_SLAVE_LAT, false);
526 BT_MBOX_PRINT(0, LE_PROF1, false);
527 BT_MBOX_PRINT(0, LE_PROF2, false);
528 BT_MBOX_PRINT(0, LE_PROF_OTHER, false);
529 BT_MBOX_PRINT(0, CHL_SEQ_N, false);
530 BT_MBOX_PRINT(0, INBAND_S, false);
531 BT_MBOX_PRINT(0, LE_MIN_RSSI, false);
532 BT_MBOX_PRINT(0, LE_SCAN, false);
533 BT_MBOX_PRINT(0, LE_ADV, false);
534 BT_MBOX_PRINT(0, LE_MAX_TX_POWER, false);
535 BT_MBOX_PRINT(0, OPEN_CON_1, true);
536
537 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw1:\n");
538
539 BT_MBOX_PRINT(1, BR_MAX_TX_POWER, false);
540 BT_MBOX_PRINT(1, IP_SR, false);
541 BT_MBOX_PRINT(1, LE_MSTR, false);
542 BT_MBOX_PRINT(1, AGGR_TRFC_LD, false);
543 BT_MBOX_PRINT(1, MSG_TYPE, false);
544 BT_MBOX_PRINT(1, SSN, true);
545
546 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw2:\n");
547
548 BT_MBOX_PRINT(2, SNIFF_ACT, false);
549 BT_MBOX_PRINT(2, PAG, false);
550 BT_MBOX_PRINT(2, INQUIRY, false);
551 BT_MBOX_PRINT(2, CONN, false);
552 BT_MBOX_PRINT(2, SNIFF_INTERVAL, false);
553 BT_MBOX_PRINT(2, DISC, false);
554 BT_MBOX_PRINT(2, SCO_TX_ACT, false);
555 BT_MBOX_PRINT(2, SCO_RX_ACT, false);
556 BT_MBOX_PRINT(2, ESCO_RE_TX, false);
557 BT_MBOX_PRINT(2, SCO_DURATION, true);
558
559 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw3:\n");
560
561 BT_MBOX_PRINT(3, SCO_STATE, false);
562 BT_MBOX_PRINT(3, SNIFF_STATE, false);
563 BT_MBOX_PRINT(3, A2DP_STATE, false);
564 BT_MBOX_PRINT(3, ACL_STATE, false);
565 BT_MBOX_PRINT(3, MSTR_STATE, false);
566 BT_MBOX_PRINT(3, OBX_STATE, false);
567 BT_MBOX_PRINT(3, OPEN_CON_2, false);
568 BT_MBOX_PRINT(3, TRAFFIC_LOAD, false);
569 BT_MBOX_PRINT(3, CHL_SEQN_LSB, false);
570 BT_MBOX_PRINT(3, INBAND_P, false);
571 BT_MBOX_PRINT(3, MSG_TYPE_2, false);
572 BT_MBOX_PRINT(3, SSN_2, false);
573 BT_MBOX_PRINT(3, UPDATE_REQUEST, true);
574
575 pos += scnprintf(buf+pos, bufsz-pos, "bt_status = %d\n",
576 notif->bt_status);
577 pos += scnprintf(buf+pos, bufsz-pos, "bt_open_conn = %d\n",
578 notif->bt_open_conn);
579 pos += scnprintf(buf+pos, bufsz-pos, "bt_traffic_load = %d\n",
580 notif->bt_traffic_load);
581 pos += scnprintf(buf+pos, bufsz-pos, "bt_agg_traffic_load = %d\n",
582 notif->bt_agg_traffic_load);
583 pos += scnprintf(buf+pos, bufsz-pos, "bt_ci_compliance = %d\n",
584 notif->bt_ci_compliance);
585
586 mutex_unlock(&mvm->mutex);
587
588 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
589 kfree(buf);
590
591 return ret;
592}
593#undef BT_MBOX_PRINT
594
3848ab66
MG
595#define PRINT_STATS_LE32(_str, _val) \
596 pos += scnprintf(buf + pos, bufsz - pos, \
597 fmt_table, _str, \
598 le32_to_cpu(_val))
599
600static ssize_t iwl_dbgfs_fw_rx_stats_read(struct file *file,
601 char __user *user_buf, size_t count,
602 loff_t *ppos)
603{
604 struct iwl_mvm *mvm = file->private_data;
605 static const char *fmt_table = "\t%-30s %10u\n";
606 static const char *fmt_header = "%-32s\n";
607 int pos = 0;
608 char *buf;
609 int ret;
610 int bufsz = sizeof(struct mvm_statistics_rx_phy) * 20 +
611 sizeof(struct mvm_statistics_rx_non_phy) * 10 +
612 sizeof(struct mvm_statistics_rx_ht_phy) * 10 + 200;
613 struct mvm_statistics_rx_phy *ofdm;
614 struct mvm_statistics_rx_phy *cck;
615 struct mvm_statistics_rx_non_phy *general;
616 struct mvm_statistics_rx_ht_phy *ht;
617
618 buf = kzalloc(bufsz, GFP_KERNEL);
619 if (!buf)
620 return -ENOMEM;
621
622 mutex_lock(&mvm->mutex);
623
624 ofdm = &mvm->rx_stats.ofdm;
625 cck = &mvm->rx_stats.cck;
626 general = &mvm->rx_stats.general;
627 ht = &mvm->rx_stats.ofdm_ht;
628
629 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
630 "Statistics_Rx - OFDM");
631 PRINT_STATS_LE32("ina_cnt", ofdm->ina_cnt);
632 PRINT_STATS_LE32("fina_cnt", ofdm->fina_cnt);
633 PRINT_STATS_LE32("plcp_err", ofdm->plcp_err);
634 PRINT_STATS_LE32("crc32_err", ofdm->crc32_err);
635 PRINT_STATS_LE32("overrun_err", ofdm->overrun_err);
636 PRINT_STATS_LE32("early_overrun_err", ofdm->early_overrun_err);
637 PRINT_STATS_LE32("crc32_good", ofdm->crc32_good);
638 PRINT_STATS_LE32("false_alarm_cnt", ofdm->false_alarm_cnt);
639 PRINT_STATS_LE32("fina_sync_err_cnt", ofdm->fina_sync_err_cnt);
640 PRINT_STATS_LE32("sfd_timeout", ofdm->sfd_timeout);
641 PRINT_STATS_LE32("fina_timeout", ofdm->fina_timeout);
642 PRINT_STATS_LE32("unresponded_rts", ofdm->unresponded_rts);
643 PRINT_STATS_LE32("rxe_frame_lmt_overrun",
644 ofdm->rxe_frame_limit_overrun);
645 PRINT_STATS_LE32("sent_ack_cnt", ofdm->sent_ack_cnt);
646 PRINT_STATS_LE32("sent_cts_cnt", ofdm->sent_cts_cnt);
647 PRINT_STATS_LE32("sent_ba_rsp_cnt", ofdm->sent_ba_rsp_cnt);
648 PRINT_STATS_LE32("dsp_self_kill", ofdm->dsp_self_kill);
649 PRINT_STATS_LE32("mh_format_err", ofdm->mh_format_err);
650 PRINT_STATS_LE32("re_acq_main_rssi_sum", ofdm->re_acq_main_rssi_sum);
651 PRINT_STATS_LE32("reserved", ofdm->reserved);
652
653 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
654 "Statistics_Rx - CCK");
655 PRINT_STATS_LE32("ina_cnt", cck->ina_cnt);
656 PRINT_STATS_LE32("fina_cnt", cck->fina_cnt);
657 PRINT_STATS_LE32("plcp_err", cck->plcp_err);
658 PRINT_STATS_LE32("crc32_err", cck->crc32_err);
659 PRINT_STATS_LE32("overrun_err", cck->overrun_err);
660 PRINT_STATS_LE32("early_overrun_err", cck->early_overrun_err);
661 PRINT_STATS_LE32("crc32_good", cck->crc32_good);
662 PRINT_STATS_LE32("false_alarm_cnt", cck->false_alarm_cnt);
663 PRINT_STATS_LE32("fina_sync_err_cnt", cck->fina_sync_err_cnt);
664 PRINT_STATS_LE32("sfd_timeout", cck->sfd_timeout);
665 PRINT_STATS_LE32("fina_timeout", cck->fina_timeout);
666 PRINT_STATS_LE32("unresponded_rts", cck->unresponded_rts);
667 PRINT_STATS_LE32("rxe_frame_lmt_overrun",
668 cck->rxe_frame_limit_overrun);
669 PRINT_STATS_LE32("sent_ack_cnt", cck->sent_ack_cnt);
670 PRINT_STATS_LE32("sent_cts_cnt", cck->sent_cts_cnt);
671 PRINT_STATS_LE32("sent_ba_rsp_cnt", cck->sent_ba_rsp_cnt);
672 PRINT_STATS_LE32("dsp_self_kill", cck->dsp_self_kill);
673 PRINT_STATS_LE32("mh_format_err", cck->mh_format_err);
674 PRINT_STATS_LE32("re_acq_main_rssi_sum", cck->re_acq_main_rssi_sum);
675 PRINT_STATS_LE32("reserved", cck->reserved);
676
677 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
678 "Statistics_Rx - GENERAL");
679 PRINT_STATS_LE32("bogus_cts", general->bogus_cts);
680 PRINT_STATS_LE32("bogus_ack", general->bogus_ack);
681 PRINT_STATS_LE32("non_bssid_frames", general->non_bssid_frames);
682 PRINT_STATS_LE32("filtered_frames", general->filtered_frames);
683 PRINT_STATS_LE32("non_channel_beacons", general->non_channel_beacons);
684 PRINT_STATS_LE32("channel_beacons", general->channel_beacons);
685 PRINT_STATS_LE32("num_missed_bcon", general->num_missed_bcon);
686 PRINT_STATS_LE32("adc_rx_saturation_time",
687 general->adc_rx_saturation_time);
688 PRINT_STATS_LE32("ina_detection_search_time",
689 general->ina_detection_search_time);
690 PRINT_STATS_LE32("beacon_silence_rssi_a",
691 general->beacon_silence_rssi_a);
692 PRINT_STATS_LE32("beacon_silence_rssi_b",
693 general->beacon_silence_rssi_b);
694 PRINT_STATS_LE32("beacon_silence_rssi_c",
695 general->beacon_silence_rssi_c);
696 PRINT_STATS_LE32("interference_data_flag",
697 general->interference_data_flag);
698 PRINT_STATS_LE32("channel_load", general->channel_load);
699 PRINT_STATS_LE32("dsp_false_alarms", general->dsp_false_alarms);
700 PRINT_STATS_LE32("beacon_rssi_a", general->beacon_rssi_a);
701 PRINT_STATS_LE32("beacon_rssi_b", general->beacon_rssi_b);
702 PRINT_STATS_LE32("beacon_rssi_c", general->beacon_rssi_c);
703 PRINT_STATS_LE32("beacon_energy_a", general->beacon_energy_a);
704 PRINT_STATS_LE32("beacon_energy_b", general->beacon_energy_b);
705 PRINT_STATS_LE32("beacon_energy_c", general->beacon_energy_c);
706 PRINT_STATS_LE32("num_bt_kills", general->num_bt_kills);
707 PRINT_STATS_LE32("directed_data_mpdu", general->directed_data_mpdu);
708
709 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
710 "Statistics_Rx - HT");
711 PRINT_STATS_LE32("plcp_err", ht->plcp_err);
712 PRINT_STATS_LE32("overrun_err", ht->overrun_err);
713 PRINT_STATS_LE32("early_overrun_err", ht->early_overrun_err);
714 PRINT_STATS_LE32("crc32_good", ht->crc32_good);
715 PRINT_STATS_LE32("crc32_err", ht->crc32_err);
716 PRINT_STATS_LE32("mh_format_err", ht->mh_format_err);
717 PRINT_STATS_LE32("agg_crc32_good", ht->agg_crc32_good);
718 PRINT_STATS_LE32("agg_mpdu_cnt", ht->agg_mpdu_cnt);
719 PRINT_STATS_LE32("agg_cnt", ht->agg_cnt);
720 PRINT_STATS_LE32("unsupport_mcs", ht->unsupport_mcs);
721
722 mutex_unlock(&mvm->mutex);
723
724 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
725 kfree(buf);
726
727 return ret;
728}
729#undef PRINT_STAT_LE32
730
490953ac
EG
731static ssize_t iwl_dbgfs_fw_restart_write(struct file *file,
732 const char __user *user_buf,
733 size_t count, loff_t *ppos)
734{
735 struct iwl_mvm *mvm = file->private_data;
490953ac
EG
736 int ret;
737
490953ac
EG
738 mutex_lock(&mvm->mutex);
739
291aa7c4
EH
740 /* allow one more restart that we're provoking here */
741 if (mvm->restart_fw >= 0)
742 mvm->restart_fw++;
743
490953ac
EG
744 /* take the return value to make compiler happy - it will fail anyway */
745 ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_ERROR, CMD_SYNC, 0, NULL);
746
747 mutex_unlock(&mvm->mutex);
748
490953ac
EG
749 return count;
750}
751
b571a697
AB
752static void iwl_dbgfs_update_bf(struct ieee80211_vif *vif,
753 enum iwl_dbgfs_bf_mask param, int value)
754{
755 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
756 struct iwl_dbgfs_bf *dbgfs_bf = &mvmvif->dbgfs_bf;
757
758 dbgfs_bf->mask |= param;
759
760 switch (param) {
761 case MVM_DEBUGFS_BF_ENERGY_DELTA:
762 dbgfs_bf->bf_energy_delta = value;
763 break;
764 case MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA:
765 dbgfs_bf->bf_roaming_energy_delta = value;
766 break;
767 case MVM_DEBUGFS_BF_ROAMING_STATE:
768 dbgfs_bf->bf_roaming_state = value;
769 break;
5dca7c24
HG
770 case MVM_DEBUGFS_BF_TEMP_THRESHOLD:
771 dbgfs_bf->bf_temp_threshold = value;
772 break;
773 case MVM_DEBUGFS_BF_TEMP_FAST_FILTER:
774 dbgfs_bf->bf_temp_fast_filter = value;
775 break;
776 case MVM_DEBUGFS_BF_TEMP_SLOW_FILTER:
777 dbgfs_bf->bf_temp_slow_filter = value;
b571a697
AB
778 break;
779 case MVM_DEBUGFS_BF_ENABLE_BEACON_FILTER:
780 dbgfs_bf->bf_enable_beacon_filter = value;
781 break;
782 case MVM_DEBUGFS_BF_DEBUG_FLAG:
783 dbgfs_bf->bf_debug_flag = value;
784 break;
785 case MVM_DEBUGFS_BF_ESCAPE_TIMER:
786 dbgfs_bf->bf_escape_timer = value;
787 break;
788 case MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT:
789 dbgfs_bf->ba_enable_beacon_abort = value;
790 break;
791 case MVM_DEBUGFS_BA_ESCAPE_TIMER:
792 dbgfs_bf->ba_escape_timer = value;
793 break;
794 }
795}
796
797static ssize_t iwl_dbgfs_bf_params_write(struct file *file,
798 const char __user *user_buf,
799 size_t count, loff_t *ppos)
800{
801 struct ieee80211_vif *vif = file->private_data;
802 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
803 struct iwl_mvm *mvm = mvmvif->dbgfs_data;
804 enum iwl_dbgfs_bf_mask param;
805 char buf[256];
806 int buf_size;
807 int value;
808 int ret = 0;
809
810 memset(buf, 0, sizeof(buf));
811 buf_size = min(count, sizeof(buf) - 1);
812 if (copy_from_user(buf, user_buf, buf_size))
813 return -EFAULT;
814
815 if (!strncmp("bf_energy_delta=", buf, 16)) {
816 if (sscanf(buf+16, "%d", &value) != 1)
817 return -EINVAL;
818 if (value < IWL_BF_ENERGY_DELTA_MIN ||
819 value > IWL_BF_ENERGY_DELTA_MAX)
820 return -EINVAL;
821 param = MVM_DEBUGFS_BF_ENERGY_DELTA;
822 } else if (!strncmp("bf_roaming_energy_delta=", buf, 24)) {
823 if (sscanf(buf+24, "%d", &value) != 1)
824 return -EINVAL;
825 if (value < IWL_BF_ROAMING_ENERGY_DELTA_MIN ||
826 value > IWL_BF_ROAMING_ENERGY_DELTA_MAX)
827 return -EINVAL;
828 param = MVM_DEBUGFS_BF_ROAMING_ENERGY_DELTA;
829 } else if (!strncmp("bf_roaming_state=", buf, 17)) {
830 if (sscanf(buf+17, "%d", &value) != 1)
831 return -EINVAL;
832 if (value < IWL_BF_ROAMING_STATE_MIN ||
833 value > IWL_BF_ROAMING_STATE_MAX)
834 return -EINVAL;
835 param = MVM_DEBUGFS_BF_ROAMING_STATE;
5dca7c24
HG
836 } else if (!strncmp("bf_temp_threshold=", buf, 18)) {
837 if (sscanf(buf+18, "%d", &value) != 1)
838 return -EINVAL;
839 if (value < IWL_BF_TEMP_THRESHOLD_MIN ||
840 value > IWL_BF_TEMP_THRESHOLD_MAX)
841 return -EINVAL;
842 param = MVM_DEBUGFS_BF_TEMP_THRESHOLD;
843 } else if (!strncmp("bf_temp_fast_filter=", buf, 20)) {
844 if (sscanf(buf+20, "%d", &value) != 1)
845 return -EINVAL;
846 if (value < IWL_BF_TEMP_FAST_FILTER_MIN ||
847 value > IWL_BF_TEMP_FAST_FILTER_MAX)
848 return -EINVAL;
849 param = MVM_DEBUGFS_BF_TEMP_FAST_FILTER;
850 } else if (!strncmp("bf_temp_slow_filter=", buf, 20)) {
851 if (sscanf(buf+20, "%d", &value) != 1)
b571a697 852 return -EINVAL;
5dca7c24
HG
853 if (value < IWL_BF_TEMP_SLOW_FILTER_MIN ||
854 value > IWL_BF_TEMP_SLOW_FILTER_MAX)
b571a697 855 return -EINVAL;
5dca7c24 856 param = MVM_DEBUGFS_BF_TEMP_SLOW_FILTER;
b571a697
AB
857 } else if (!strncmp("bf_enable_beacon_filter=", buf, 24)) {
858 if (sscanf(buf+24, "%d", &value) != 1)
859 return -EINVAL;
860 if (value < 0 || value > 1)
861 return -EINVAL;
862 param = MVM_DEBUGFS_BF_ENABLE_BEACON_FILTER;
863 } else if (!strncmp("bf_debug_flag=", buf, 14)) {
864 if (sscanf(buf+14, "%d", &value) != 1)
865 return -EINVAL;
866 if (value < 0 || value > 1)
867 return -EINVAL;
868 param = MVM_DEBUGFS_BF_DEBUG_FLAG;
869 } else if (!strncmp("bf_escape_timer=", buf, 16)) {
870 if (sscanf(buf+16, "%d", &value) != 1)
871 return -EINVAL;
872 if (value < IWL_BF_ESCAPE_TIMER_MIN ||
873 value > IWL_BF_ESCAPE_TIMER_MAX)
874 return -EINVAL;
875 param = MVM_DEBUGFS_BF_ESCAPE_TIMER;
876 } else if (!strncmp("ba_escape_timer=", buf, 16)) {
877 if (sscanf(buf+16, "%d", &value) != 1)
878 return -EINVAL;
879 if (value < IWL_BA_ESCAPE_TIMER_MIN ||
880 value > IWL_BA_ESCAPE_TIMER_MAX)
881 return -EINVAL;
882 param = MVM_DEBUGFS_BA_ESCAPE_TIMER;
883 } else if (!strncmp("ba_enable_beacon_abort=", buf, 23)) {
884 if (sscanf(buf+23, "%d", &value) != 1)
885 return -EINVAL;
886 if (value < 0 || value > 1)
887 return -EINVAL;
888 param = MVM_DEBUGFS_BA_ENABLE_BEACON_ABORT;
889 } else {
890 return -EINVAL;
891 }
892
893 mutex_lock(&mvm->mutex);
894 iwl_dbgfs_update_bf(vif, param, value);
895 if (param == MVM_DEBUGFS_BF_ENABLE_BEACON_FILTER && !value) {
896 ret = iwl_mvm_disable_beacon_filter(mvm, vif);
897 } else {
495191c7 898 ret = iwl_mvm_enable_beacon_filter(mvm, vif);
b571a697
AB
899 }
900 mutex_unlock(&mvm->mutex);
901
902 return ret ?: count;
903}
904
905static ssize_t iwl_dbgfs_bf_params_read(struct file *file,
906 char __user *user_buf,
907 size_t count, loff_t *ppos)
908{
909 struct ieee80211_vif *vif = file->private_data;
910 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
911 char buf[256];
912 int pos = 0;
913 const size_t bufsz = sizeof(buf);
914 struct iwl_beacon_filter_cmd cmd = {
5dca7c24
HG
915 IWL_BF_CMD_CONFIG_DEFAULTS,
916 .bf_enable_beacon_filter =
917 cpu_to_le32(IWL_BF_ENABLE_BEACON_FILTER_DEFAULT),
918 .ba_enable_beacon_abort =
919 cpu_to_le32(IWL_BA_ENABLE_BEACON_ABORT_DEFAULT),
b571a697
AB
920 };
921
922 iwl_mvm_beacon_filter_debugfs_parameters(vif, &cmd);
923 if (mvmvif->bf_enabled)
5dca7c24 924 cmd.bf_enable_beacon_filter = cpu_to_le32(1);
b571a697
AB
925 else
926 cmd.bf_enable_beacon_filter = 0;
927
928 pos += scnprintf(buf+pos, bufsz-pos, "bf_energy_delta = %d\n",
5dca7c24 929 le32_to_cpu(cmd.bf_energy_delta));
b571a697 930 pos += scnprintf(buf+pos, bufsz-pos, "bf_roaming_energy_delta = %d\n",
5dca7c24 931 le32_to_cpu(cmd.bf_roaming_energy_delta));
b571a697 932 pos += scnprintf(buf+pos, bufsz-pos, "bf_roaming_state = %d\n",
5dca7c24
HG
933 le32_to_cpu(cmd.bf_roaming_state));
934 pos += scnprintf(buf+pos, bufsz-pos, "bf_temp_threshold = %d\n",
935 le32_to_cpu(cmd.bf_temp_threshold));
936 pos += scnprintf(buf+pos, bufsz-pos, "bf_temp_fast_filter = %d\n",
937 le32_to_cpu(cmd.bf_temp_fast_filter));
938 pos += scnprintf(buf+pos, bufsz-pos, "bf_temp_slow_filter = %d\n",
939 le32_to_cpu(cmd.bf_temp_slow_filter));
b571a697 940 pos += scnprintf(buf+pos, bufsz-pos, "bf_enable_beacon_filter = %d\n",
5dca7c24 941 le32_to_cpu(cmd.bf_enable_beacon_filter));
b571a697 942 pos += scnprintf(buf+pos, bufsz-pos, "bf_debug_flag = %d\n",
5dca7c24 943 le32_to_cpu(cmd.bf_debug_flag));
b571a697 944 pos += scnprintf(buf+pos, bufsz-pos, "bf_escape_timer = %d\n",
5dca7c24 945 le32_to_cpu(cmd.bf_escape_timer));
b571a697 946 pos += scnprintf(buf+pos, bufsz-pos, "ba_escape_timer = %d\n",
5dca7c24 947 le32_to_cpu(cmd.ba_escape_timer));
b571a697 948 pos += scnprintf(buf+pos, bufsz-pos, "ba_enable_beacon_abort = %d\n",
5dca7c24 949 le32_to_cpu(cmd.ba_enable_beacon_abort));
b571a697
AB
950
951 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
952}
953
afc66bb7
JB
954#ifdef CONFIG_PM_SLEEP
955static ssize_t iwl_dbgfs_d3_sram_write(struct file *file,
956 const char __user *user_buf,
957 size_t count, loff_t *ppos)
958{
959 struct iwl_mvm *mvm = file->private_data;
960 char buf[8] = {};
961 int store;
962
963 if (copy_from_user(buf, user_buf, sizeof(buf)))
964 return -EFAULT;
965
966 if (sscanf(buf, "%d", &store) != 1)
967 return -EINVAL;
968
969 mvm->store_d3_resume_sram = store;
970
971 return count;
972}
973
974static ssize_t iwl_dbgfs_d3_sram_read(struct file *file, char __user *user_buf,
975 size_t count, loff_t *ppos)
976{
977 struct iwl_mvm *mvm = file->private_data;
978 const struct fw_img *img;
979 int ofs, len, pos = 0;
980 size_t bufsz, ret;
981 char *buf;
982 u8 *ptr = mvm->d3_resume_sram;
983
984 img = &mvm->fw->img[IWL_UCODE_WOWLAN];
985 len = img->sec[IWL_UCODE_SECTION_DATA].len;
986
987 bufsz = len * 4 + 256;
988 buf = kzalloc(bufsz, GFP_KERNEL);
989 if (!buf)
990 return -ENOMEM;
991
992 pos += scnprintf(buf, bufsz, "D3 SRAM capture: %sabled\n",
993 mvm->store_d3_resume_sram ? "en" : "dis");
994
995 if (ptr) {
996 for (ofs = 0; ofs < len; ofs += 16) {
997 pos += scnprintf(buf + pos, bufsz - pos,
998 "0x%.4x ", ofs);
999 hex_dump_to_buffer(ptr + ofs, 16, 16, 1, buf + pos,
1000 bufsz - pos, false);
1001 pos += strlen(buf + pos);
1002 if (bufsz - pos > 0)
1003 buf[pos++] = '\n';
1004 }
1005 } else {
1006 pos += scnprintf(buf + pos, bufsz - pos,
1007 "(no data captured)\n");
1008 }
1009
1010 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1011
1012 kfree(buf);
1013
1014 return ret;
1015}
1016#endif
1017
8ca151b5
JB
1018#define MVM_DEBUGFS_READ_FILE_OPS(name) \
1019static const struct file_operations iwl_dbgfs_##name##_ops = { \
1020 .read = iwl_dbgfs_##name##_read, \
ba5295f8 1021 .open = simple_open, \
8ca151b5
JB
1022 .llseek = generic_file_llseek, \
1023}
1024
1025#define MVM_DEBUGFS_READ_WRITE_FILE_OPS(name) \
1026static const struct file_operations iwl_dbgfs_##name##_ops = { \
1027 .write = iwl_dbgfs_##name##_write, \
1028 .read = iwl_dbgfs_##name##_read, \
ba5295f8 1029 .open = simple_open, \
8ca151b5
JB
1030 .llseek = generic_file_llseek, \
1031};
1032
1033#define MVM_DEBUGFS_WRITE_FILE_OPS(name) \
1034static const struct file_operations iwl_dbgfs_##name##_ops = { \
1035 .write = iwl_dbgfs_##name##_write, \
ba5295f8 1036 .open = simple_open, \
8ca151b5
JB
1037 .llseek = generic_file_llseek, \
1038};
1039
1040#define MVM_DEBUGFS_ADD_FILE(name, parent, mode) do { \
1041 if (!debugfs_create_file(#name, mode, parent, mvm, \
1042 &iwl_dbgfs_##name##_ops)) \
1043 goto err; \
1044 } while (0)
1045
1046#define MVM_DEBUGFS_ADD_FILE_VIF(name, parent, mode) do { \
1047 if (!debugfs_create_file(#name, mode, parent, vif, \
1048 &iwl_dbgfs_##name##_ops)) \
1049 goto err; \
1050 } while (0)
1051
1052/* Device wide debugfs entries */
1053MVM_DEBUGFS_WRITE_FILE_OPS(tx_flush);
1054MVM_DEBUGFS_WRITE_FILE_OPS(sta_drain);
1055MVM_DEBUGFS_READ_WRITE_FILE_OPS(sram);
1056MVM_DEBUGFS_READ_FILE_OPS(stations);
10942342 1057MVM_DEBUGFS_READ_FILE_OPS(bt_notif);
8ca151b5
JB
1058MVM_DEBUGFS_WRITE_FILE_OPS(power_down_allow);
1059MVM_DEBUGFS_WRITE_FILE_OPS(power_down_d3_allow);
3848ab66 1060MVM_DEBUGFS_READ_FILE_OPS(fw_rx_stats);
490953ac 1061MVM_DEBUGFS_WRITE_FILE_OPS(fw_restart);
afc66bb7
JB
1062#ifdef CONFIG_PM_SLEEP
1063MVM_DEBUGFS_READ_WRITE_FILE_OPS(d3_sram);
1064#endif
8ca151b5 1065
63494374
JB
1066/* Interface specific debugfs entries */
1067MVM_DEBUGFS_READ_FILE_OPS(mac_params);
b571a697
AB
1068MVM_DEBUGFS_READ_WRITE_FILE_OPS(pm_params);
1069MVM_DEBUGFS_READ_WRITE_FILE_OPS(bf_params);
63494374 1070
8ca151b5
JB
1071int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir)
1072{
1073 char buf[100];
1074
1075 mvm->debugfs_dir = dbgfs_dir;
1076
1077 MVM_DEBUGFS_ADD_FILE(tx_flush, mvm->debugfs_dir, S_IWUSR);
1078 MVM_DEBUGFS_ADD_FILE(sta_drain, mvm->debugfs_dir, S_IWUSR);
1079 MVM_DEBUGFS_ADD_FILE(sram, mvm->debugfs_dir, S_IWUSR | S_IRUSR);
1080 MVM_DEBUGFS_ADD_FILE(stations, dbgfs_dir, S_IRUSR);
10942342 1081 MVM_DEBUGFS_ADD_FILE(bt_notif, dbgfs_dir, S_IRUSR);
8ca151b5
JB
1082 MVM_DEBUGFS_ADD_FILE(power_down_allow, mvm->debugfs_dir, S_IWUSR);
1083 MVM_DEBUGFS_ADD_FILE(power_down_d3_allow, mvm->debugfs_dir, S_IWUSR);
3848ab66 1084 MVM_DEBUGFS_ADD_FILE(fw_rx_stats, mvm->debugfs_dir, S_IRUSR);
490953ac 1085 MVM_DEBUGFS_ADD_FILE(fw_restart, mvm->debugfs_dir, S_IWUSR);
afc66bb7
JB
1086#ifdef CONFIG_PM_SLEEP
1087 MVM_DEBUGFS_ADD_FILE(d3_sram, mvm->debugfs_dir, S_IRUSR | S_IWUSR);
debff618 1088 MVM_DEBUGFS_ADD_FILE(d3_test, mvm->debugfs_dir, S_IRUSR);
b0114714
JB
1089 if (!debugfs_create_bool("d3_wake_sysassert", S_IRUSR | S_IWUSR,
1090 mvm->debugfs_dir, &mvm->d3_wake_sysassert))
1091 goto err;
afc66bb7 1092#endif
8ca151b5
JB
1093
1094 /*
1095 * Create a symlink with mac80211. It will be removed when mac80211
1096 * exists (before the opmode exists which removes the target.)
1097 */
1098 snprintf(buf, 100, "../../%s/%s",
1099 dbgfs_dir->d_parent->d_parent->d_name.name,
1100 dbgfs_dir->d_parent->d_name.name);
1101 if (!debugfs_create_symlink("iwlwifi", mvm->hw->wiphy->debugfsdir, buf))
1102 goto err;
1103
1104 return 0;
1105err:
1106 IWL_ERR(mvm, "Can't create the mvm debugfs directory\n");
1107 return -ENOMEM;
1108}
63494374
JB
1109
1110void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1111{
1112 struct dentry *dbgfs_dir = vif->debugfs_dir;
1113 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1114 char buf[100];
1115
1116 if (!dbgfs_dir)
1117 return;
1118
1119 mvmvif->dbgfs_dir = debugfs_create_dir("iwlmvm", dbgfs_dir);
1120 mvmvif->dbgfs_data = mvm;
1121
1122 if (!mvmvif->dbgfs_dir) {
1123 IWL_ERR(mvm, "Failed to create debugfs directory under %s\n",
1124 dbgfs_dir->d_name.name);
1125 return;
1126 }
1127
b571a697
AB
1128 if (iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM &&
1129 vif->type == NL80211_IFTYPE_STATION && !vif->p2p)
1130 MVM_DEBUGFS_ADD_FILE_VIF(pm_params, mvmvif->dbgfs_dir, S_IWUSR |
1131 S_IRUSR);
1132
63494374
JB
1133 MVM_DEBUGFS_ADD_FILE_VIF(mac_params, mvmvif->dbgfs_dir,
1134 S_IRUSR);
1135
b571a697
AB
1136 if (vif->type == NL80211_IFTYPE_STATION && !vif->p2p &&
1137 mvmvif == mvm->bf_allowed_vif)
1138 MVM_DEBUGFS_ADD_FILE_VIF(bf_params, mvmvif->dbgfs_dir,
1139 S_IRUSR | S_IWUSR);
1140
63494374
JB
1141 /*
1142 * Create symlink for convenience pointing to interface specific
1143 * debugfs entries for the driver. For example, under
1144 * /sys/kernel/debug/iwlwifi/0000\:02\:00.0/iwlmvm/
1145 * find
1146 * netdev:wlan0 -> ../../../ieee80211/phy0/netdev:wlan0/iwlmvm/
1147 */
1148 snprintf(buf, 100, "../../../%s/%s/%s/%s",
1149 dbgfs_dir->d_parent->d_parent->d_name.name,
1150 dbgfs_dir->d_parent->d_name.name,
1151 dbgfs_dir->d_name.name,
1152 mvmvif->dbgfs_dir->d_name.name);
1153
1154 mvmvif->dbgfs_slink = debugfs_create_symlink(dbgfs_dir->d_name.name,
1155 mvm->debugfs_dir, buf);
1156 if (!mvmvif->dbgfs_slink)
1157 IWL_ERR(mvm, "Can't create debugfs symbolic link under %s\n",
1158 dbgfs_dir->d_name.name);
1159 return;
1160err:
1161 IWL_ERR(mvm, "Can't create debugfs entity\n");
1162}
1163
1164void iwl_mvm_vif_dbgfs_clean(struct iwl_mvm *mvm, struct ieee80211_vif *vif)
1165{
1166 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
1167
1168 debugfs_remove(mvmvif->dbgfs_slink);
1169 mvmvif->dbgfs_slink = NULL;
1170
1171 debugfs_remove_recursive(mvmvif->dbgfs_dir);
1172 mvmvif->dbgfs_dir = NULL;
1173}
This page took 0.104429 seconds and 5 git commands to generate.