blob: 2a61baca508120e086352be85cc2f098226429b1 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
Emmanuel Grumbach192c80a2014-03-19 08:25:05 +020065#include <linux/vmalloc.h>
66
Johannes Berg8ca151b2013-01-24 14:25:36 +010067#include "mvm.h"
68#include "sta.h"
69#include "iwl-io.h"
Johannes Berg820a1a52013-11-12 16:58:41 +010070#include "debugfs.h"
Johannes Berg4d075002014-04-24 10:41:31 +020071#include "iwl-fw-error-dump.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010072
Johannes Berg1fa3f572013-11-13 09:10:21 +010073static ssize_t iwl_dbgfs_tx_flush_write(struct iwl_mvm *mvm, char *buf,
Johannes Berg8ca151b2013-01-24 14:25:36 +010074 size_t count, loff_t *ppos)
75{
Johannes Berg8a0bd162013-11-12 16:48:03 +010076 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +010077 u32 scd_q_msk;
78
79 if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
80 return -EIO;
81
Johannes Berg8ca151b2013-01-24 14:25:36 +010082 if (sscanf(buf, "%x", &scd_q_msk) != 1)
83 return -EINVAL;
84
85 IWL_ERR(mvm, "FLUSHING queues: scd_q_msk = 0x%x\n", scd_q_msk);
86
87 mutex_lock(&mvm->mutex);
88 ret = iwl_mvm_flush_tx_path(mvm, scd_q_msk, true) ? : count;
89 mutex_unlock(&mvm->mutex);
90
91 return ret;
92}
93
Johannes Berg1fa3f572013-11-13 09:10:21 +010094static ssize_t iwl_dbgfs_sta_drain_write(struct iwl_mvm *mvm, char *buf,
Johannes Berg8ca151b2013-01-24 14:25:36 +010095 size_t count, loff_t *ppos)
96{
Emmanuel Grumbachf327b042014-01-14 08:30:32 +020097 struct iwl_mvm_sta *mvmsta;
Johannes Berg8a0bd162013-11-12 16:48:03 +010098 int sta_id, drain, ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +010099
100 if (!mvm->ucode_loaded || mvm->cur_ucode != IWL_UCODE_REGULAR)
101 return -EIO;
102
Johannes Berg8ca151b2013-01-24 14:25:36 +0100103 if (sscanf(buf, "%d %d", &sta_id, &drain) != 2)
104 return -EINVAL;
Johannes Berg60765a42013-10-25 13:06:06 +0200105 if (sta_id < 0 || sta_id >= IWL_MVM_STATION_COUNT)
106 return -EINVAL;
107 if (drain < 0 || drain > 1)
108 return -EINVAL;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100109
110 mutex_lock(&mvm->mutex);
111
Emmanuel Grumbachf327b042014-01-14 08:30:32 +0200112 mvmsta = iwl_mvm_sta_from_staid_protected(mvm, sta_id);
113
114 if (!mvmsta)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100115 ret = -ENOENT;
116 else
Emmanuel Grumbachf327b042014-01-14 08:30:32 +0200117 ret = iwl_mvm_drain_sta(mvm, mvmsta, drain) ? : count;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100118
119 mutex_unlock(&mvm->mutex);
120
121 return ret;
122}
123
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200124static int iwl_dbgfs_fw_error_dump_open(struct inode *inode, struct file *file)
125{
126 struct iwl_mvm *mvm = inode->i_private;
127 int ret;
128
129 if (!mvm)
130 return -EINVAL;
131
132 mutex_lock(&mvm->mutex);
133 if (!mvm->fw_error_dump) {
134 ret = -ENODATA;
135 goto out;
136 }
137
138 file->private_data = mvm->fw_error_dump;
139 mvm->fw_error_dump = NULL;
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200140 ret = 0;
141
142out:
143 mutex_unlock(&mvm->mutex);
144 return ret;
145}
146
147static ssize_t iwl_dbgfs_fw_error_dump_read(struct file *file,
148 char __user *user_buf,
149 size_t count, loff_t *ppos)
150{
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300151 struct iwl_mvm_dump_ptrs *dump_ptrs = (void *)file->private_data;
152 ssize_t bytes_read = 0;
153 ssize_t bytes_read_trans = 0;
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200154
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300155 if (*ppos < dump_ptrs->op_mode_len)
156 bytes_read +=
157 simple_read_from_buffer(user_buf, count, ppos,
158 dump_ptrs->op_mode_ptr,
159 dump_ptrs->op_mode_len);
160
161 if (bytes_read < 0 || *ppos < dump_ptrs->op_mode_len)
162 return bytes_read;
163
164 if (dump_ptrs->trans_ptr) {
165 *ppos -= dump_ptrs->op_mode_len;
166 bytes_read_trans =
167 simple_read_from_buffer(user_buf + bytes_read,
168 count - bytes_read, ppos,
169 dump_ptrs->trans_ptr->data,
170 dump_ptrs->trans_ptr->len);
171 *ppos += dump_ptrs->op_mode_len;
172
173 if (bytes_read_trans >= 0)
174 bytes_read += bytes_read_trans;
175 else if (!bytes_read)
176 /* propagate the failure */
177 return bytes_read_trans;
178 }
179
180 return bytes_read;
181
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200182}
183
184static int iwl_dbgfs_fw_error_dump_release(struct inode *inode,
185 struct file *file)
186{
Emmanuel Grumbach48eb7b32014-07-08 19:45:17 +0300187 struct iwl_mvm_dump_ptrs *dump_ptrs = (void *)file->private_data;
188
189 vfree(dump_ptrs->op_mode_ptr);
190 vfree(dump_ptrs->trans_ptr);
191 kfree(dump_ptrs);
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +0200192
193 return 0;
194}
195
Johannes Berg8ca151b2013-01-24 14:25:36 +0100196static ssize_t iwl_dbgfs_sram_read(struct file *file, char __user *user_buf,
197 size_t count, loff_t *ppos)
198{
199 struct iwl_mvm *mvm = file->private_data;
200 const struct fw_img *img;
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200201 unsigned int ofs, len;
202 size_t ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100203 u8 *ptr;
204
Johannes Berg60191d92013-05-15 13:08:51 +0200205 if (!mvm->ucode_loaded)
206 return -EINVAL;
207
Johannes Berg8ca151b2013-01-24 14:25:36 +0100208 /* default is to dump the entire data segment */
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200209 img = &mvm->fw->img[mvm->cur_ucode];
210 ofs = img->sec[IWL_UCODE_SECTION_DATA].offset;
211 len = img->sec[IWL_UCODE_SECTION_DATA].len;
212
Emmanuel Grumbach01e0efe2014-01-06 09:05:54 +0200213 if (mvm->dbgfs_sram_len) {
Johannes Berg60191d92013-05-15 13:08:51 +0200214 ofs = mvm->dbgfs_sram_offset;
215 len = mvm->dbgfs_sram_len;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100216 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100217
Johannes Berg8ca151b2013-01-24 14:25:36 +0100218 ptr = kzalloc(len, GFP_KERNEL);
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200219 if (!ptr)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100220 return -ENOMEM;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100221
Johannes Berg60191d92013-05-15 13:08:51 +0200222 iwl_trans_read_mem_bytes(mvm->trans, ofs, ptr, len);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100223
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200224 ret = simple_read_from_buffer(user_buf, count, ppos, ptr, len);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100225
Johannes Berg8ca151b2013-01-24 14:25:36 +0100226 kfree(ptr);
227
228 return ret;
229}
230
Johannes Berg1fa3f572013-11-13 09:10:21 +0100231static ssize_t iwl_dbgfs_sram_write(struct iwl_mvm *mvm, char *buf,
232 size_t count, loff_t *ppos)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100233{
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200234 const struct fw_img *img;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100235 u32 offset, len;
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200236 u32 img_offset, img_len;
237
238 if (!mvm->ucode_loaded)
239 return -EINVAL;
240
241 img = &mvm->fw->img[mvm->cur_ucode];
242 img_offset = img->sec[IWL_UCODE_SECTION_DATA].offset;
243 img_len = img->sec[IWL_UCODE_SECTION_DATA].len;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100244
Johannes Berg8ca151b2013-01-24 14:25:36 +0100245 if (sscanf(buf, "%x,%x", &offset, &len) == 2) {
246 if ((offset & 0x3) || (len & 0x3))
247 return -EINVAL;
Emmanuel Grumbachd5103422013-12-24 14:58:29 +0200248
249 if (offset + len > img_offset + img_len)
250 return -EINVAL;
251
Johannes Berg8ca151b2013-01-24 14:25:36 +0100252 mvm->dbgfs_sram_offset = offset;
253 mvm->dbgfs_sram_len = len;
254 } else {
255 mvm->dbgfs_sram_offset = 0;
256 mvm->dbgfs_sram_len = 0;
257 }
258
259 return count;
260}
261
Matti Gottlieb7280d1f2014-07-17 16:41:14 +0300262static ssize_t iwl_dbgfs_set_nic_temperature_read(struct file *file,
263 char __user *user_buf,
264 size_t count, loff_t *ppos)
265{
266 struct iwl_mvm *mvm = file->private_data;
267 char buf[16];
268 int pos;
269
270 if (!mvm->temperature_test)
271 pos = scnprintf(buf , sizeof(buf), "disabled\n");
272 else
273 pos = scnprintf(buf , sizeof(buf), "%d\n", mvm->temperature);
274
275 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
276}
277
278/*
279 * Set NIC Temperature
280 * Cause the driver to ignore the actual NIC temperature reported by the FW
281 * Enable: any value between IWL_MVM_DEBUG_SET_TEMPERATURE_MIN -
282 * IWL_MVM_DEBUG_SET_TEMPERATURE_MAX
283 * Disable: IWL_MVM_DEBUG_SET_TEMPERATURE_DISABLE
284 */
285static ssize_t iwl_dbgfs_set_nic_temperature_write(struct iwl_mvm *mvm,
286 char *buf, size_t count,
287 loff_t *ppos)
288{
289 int temperature;
290
Luciano Coelhoa26d4e72014-08-20 10:21:07 +0300291 if (!mvm->ucode_loaded && !mvm->temperature_test)
292 return -EIO;
293
Matti Gottlieb7280d1f2014-07-17 16:41:14 +0300294 if (kstrtoint(buf, 10, &temperature))
295 return -EINVAL;
296 /* not a legal temperature */
297 if ((temperature > IWL_MVM_DEBUG_SET_TEMPERATURE_MAX &&
298 temperature != IWL_MVM_DEBUG_SET_TEMPERATURE_DISABLE) ||
299 temperature < IWL_MVM_DEBUG_SET_TEMPERATURE_MIN)
300 return -EINVAL;
301
302 mutex_lock(&mvm->mutex);
303 if (temperature == IWL_MVM_DEBUG_SET_TEMPERATURE_DISABLE) {
Luciano Coelhob689fa72014-08-20 17:26:58 +0300304 if (!mvm->temperature_test)
305 goto out;
306
Matti Gottlieb7280d1f2014-07-17 16:41:14 +0300307 mvm->temperature_test = false;
Luciano Coelhob689fa72014-08-20 17:26:58 +0300308 /* Since we can't read the temp while awake, just set
309 * it to zero until we get the next RX stats from the
310 * firmware.
311 */
312 mvm->temperature = 0;
Matti Gottlieb7280d1f2014-07-17 16:41:14 +0300313 } else {
314 mvm->temperature_test = true;
315 mvm->temperature = temperature;
316 }
317 IWL_DEBUG_TEMP(mvm, "%sabling debug set temperature (temp = %d)\n",
318 mvm->temperature_test ? "En" : "Dis" ,
319 mvm->temperature);
320 /* handle the temperature change */
321 iwl_mvm_tt_handler(mvm);
Luciano Coelhob689fa72014-08-20 17:26:58 +0300322
323out:
Matti Gottlieb7280d1f2014-07-17 16:41:14 +0300324 mutex_unlock(&mvm->mutex);
325
326 return count;
327}
328
Luciano Coelhoc549e392014-09-04 15:58:47 +0300329static ssize_t iwl_dbgfs_nic_temp_read(struct file *file,
330 char __user *user_buf,
331 size_t count, loff_t *ppos)
332{
333 struct iwl_mvm *mvm = file->private_data;
334 char buf[16];
335 int pos, temp;
336
337 if (!mvm->ucode_loaded)
338 return -EIO;
339
340 mutex_lock(&mvm->mutex);
341 temp = iwl_mvm_get_temp(mvm);
342 mutex_unlock(&mvm->mutex);
343
344 if (temp < 0)
345 return temp;
346
347 pos = scnprintf(buf , sizeof(buf), "%d\n", temp);
348
349 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
350}
351
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352static ssize_t iwl_dbgfs_stations_read(struct file *file, char __user *user_buf,
353 size_t count, loff_t *ppos)
354{
355 struct iwl_mvm *mvm = file->private_data;
356 struct ieee80211_sta *sta;
357 char buf[400];
358 int i, pos = 0, bufsz = sizeof(buf);
359
360 mutex_lock(&mvm->mutex);
361
362 for (i = 0; i < IWL_MVM_STATION_COUNT; i++) {
363 pos += scnprintf(buf + pos, bufsz - pos, "%.2d: ", i);
364 sta = rcu_dereference_protected(mvm->fw_id_to_mac_id[i],
365 lockdep_is_held(&mvm->mutex));
366 if (!sta)
367 pos += scnprintf(buf + pos, bufsz - pos, "N/A\n");
368 else if (IS_ERR(sta))
369 pos += scnprintf(buf + pos, bufsz - pos, "%ld\n",
370 PTR_ERR(sta));
371 else
372 pos += scnprintf(buf + pos, bufsz - pos, "%pM\n",
373 sta->addr);
374 }
375
376 mutex_unlock(&mvm->mutex);
377
378 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
379}
380
Alexander Bondar64b928c2013-09-03 14:18:03 +0300381static ssize_t iwl_dbgfs_disable_power_off_read(struct file *file,
382 char __user *user_buf,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100383 size_t count, loff_t *ppos)
384{
385 struct iwl_mvm *mvm = file->private_data;
Alexander Bondar64b928c2013-09-03 14:18:03 +0300386 char buf[64];
387 int bufsz = sizeof(buf);
388 int pos = 0;
389
390 pos += scnprintf(buf+pos, bufsz-pos, "disable_power_off_d0=%d\n",
391 mvm->disable_power_off);
392 pos += scnprintf(buf+pos, bufsz-pos, "disable_power_off_d3=%d\n",
393 mvm->disable_power_off_d3);
394
395 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
396}
397
Johannes Berg1fa3f572013-11-13 09:10:21 +0100398static ssize_t iwl_dbgfs_disable_power_off_write(struct iwl_mvm *mvm, char *buf,
Alexander Bondar64b928c2013-09-03 14:18:03 +0300399 size_t count, loff_t *ppos)
400{
Johannes Berg1fa3f572013-11-13 09:10:21 +0100401 int ret, val;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100402
403 if (!mvm->ucode_loaded)
404 return -EIO;
405
Alexander Bondar64b928c2013-09-03 14:18:03 +0300406 if (!strncmp("disable_power_off_d0=", buf, 21)) {
407 if (sscanf(buf + 21, "%d", &val) != 1)
408 return -EINVAL;
409 mvm->disable_power_off = val;
410 } else if (!strncmp("disable_power_off_d3=", buf, 21)) {
411 if (sscanf(buf + 21, "%d", &val) != 1)
412 return -EINVAL;
413 mvm->disable_power_off_d3 = val;
414 } else {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100415 return -EINVAL;
Alexander Bondar64b928c2013-09-03 14:18:03 +0300416 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100417
Alexander Bondar64b928c2013-09-03 14:18:03 +0300418 mutex_lock(&mvm->mutex);
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +0200419 ret = iwl_mvm_power_update_device(mvm);
Alexander Bondar64b928c2013-09-03 14:18:03 +0300420 mutex_unlock(&mvm->mutex);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100421
Alexander Bondar64b928c2013-09-03 14:18:03 +0300422 return ret ?: count;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100423}
424
Emmanuel Grumbach10942342013-02-19 11:02:36 +0200425#define BT_MBOX_MSG(_notif, _num, _field) \
426 ((le32_to_cpu((_notif)->mbox_msg[(_num)]) & BT_MBOX##_num##_##_field)\
427 >> BT_MBOX##_num##_##_field##_POS)
428
429
430#define BT_MBOX_PRINT(_num, _field, _end) \
431 pos += scnprintf(buf + pos, bufsz - pos, \
432 "\t%s: %d%s", \
433 #_field, \
434 BT_MBOX_MSG(notif, _num, _field), \
435 true ? "\n" : ", ");
436
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300437static
438int iwl_mvm_coex_dump_mbox(struct iwl_bt_coex_profile_notif *notif, char *buf,
439 int pos, int bufsz)
Emmanuel Grumbach10942342013-02-19 11:02:36 +0200440{
Emmanuel Grumbach10942342013-02-19 11:02:36 +0200441 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw0:\n");
442
443 BT_MBOX_PRINT(0, LE_SLAVE_LAT, false);
444 BT_MBOX_PRINT(0, LE_PROF1, false);
445 BT_MBOX_PRINT(0, LE_PROF2, false);
446 BT_MBOX_PRINT(0, LE_PROF_OTHER, false);
447 BT_MBOX_PRINT(0, CHL_SEQ_N, false);
448 BT_MBOX_PRINT(0, INBAND_S, false);
449 BT_MBOX_PRINT(0, LE_MIN_RSSI, false);
450 BT_MBOX_PRINT(0, LE_SCAN, false);
451 BT_MBOX_PRINT(0, LE_ADV, false);
452 BT_MBOX_PRINT(0, LE_MAX_TX_POWER, false);
453 BT_MBOX_PRINT(0, OPEN_CON_1, true);
454
455 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw1:\n");
456
457 BT_MBOX_PRINT(1, BR_MAX_TX_POWER, false);
458 BT_MBOX_PRINT(1, IP_SR, false);
459 BT_MBOX_PRINT(1, LE_MSTR, false);
460 BT_MBOX_PRINT(1, AGGR_TRFC_LD, false);
461 BT_MBOX_PRINT(1, MSG_TYPE, false);
462 BT_MBOX_PRINT(1, SSN, true);
463
464 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw2:\n");
465
466 BT_MBOX_PRINT(2, SNIFF_ACT, false);
467 BT_MBOX_PRINT(2, PAG, false);
468 BT_MBOX_PRINT(2, INQUIRY, false);
469 BT_MBOX_PRINT(2, CONN, false);
470 BT_MBOX_PRINT(2, SNIFF_INTERVAL, false);
471 BT_MBOX_PRINT(2, DISC, false);
472 BT_MBOX_PRINT(2, SCO_TX_ACT, false);
473 BT_MBOX_PRINT(2, SCO_RX_ACT, false);
474 BT_MBOX_PRINT(2, ESCO_RE_TX, false);
475 BT_MBOX_PRINT(2, SCO_DURATION, true);
476
477 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw3:\n");
478
479 BT_MBOX_PRINT(3, SCO_STATE, false);
480 BT_MBOX_PRINT(3, SNIFF_STATE, false);
481 BT_MBOX_PRINT(3, A2DP_STATE, false);
482 BT_MBOX_PRINT(3, ACL_STATE, false);
483 BT_MBOX_PRINT(3, MSTR_STATE, false);
484 BT_MBOX_PRINT(3, OBX_STATE, false);
485 BT_MBOX_PRINT(3, OPEN_CON_2, false);
486 BT_MBOX_PRINT(3, TRAFFIC_LOAD, false);
487 BT_MBOX_PRINT(3, CHL_SEQN_LSB, false);
488 BT_MBOX_PRINT(3, INBAND_P, false);
489 BT_MBOX_PRINT(3, MSG_TYPE_2, false);
490 BT_MBOX_PRINT(3, SSN_2, false);
491 BT_MBOX_PRINT(3, UPDATE_REQUEST, true);
492
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300493 return pos;
494}
495
496static
497int iwl_mvm_coex_dump_mbox_old(struct iwl_bt_coex_profile_notif_old *notif,
498 char *buf, int pos, int bufsz)
499{
500 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw0:\n");
501
502 BT_MBOX_PRINT(0, LE_SLAVE_LAT, false);
503 BT_MBOX_PRINT(0, LE_PROF1, false);
504 BT_MBOX_PRINT(0, LE_PROF2, false);
505 BT_MBOX_PRINT(0, LE_PROF_OTHER, false);
506 BT_MBOX_PRINT(0, CHL_SEQ_N, false);
507 BT_MBOX_PRINT(0, INBAND_S, false);
508 BT_MBOX_PRINT(0, LE_MIN_RSSI, false);
509 BT_MBOX_PRINT(0, LE_SCAN, false);
510 BT_MBOX_PRINT(0, LE_ADV, false);
511 BT_MBOX_PRINT(0, LE_MAX_TX_POWER, false);
512 BT_MBOX_PRINT(0, OPEN_CON_1, true);
513
514 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw1:\n");
515
516 BT_MBOX_PRINT(1, BR_MAX_TX_POWER, false);
517 BT_MBOX_PRINT(1, IP_SR, false);
518 BT_MBOX_PRINT(1, LE_MSTR, false);
519 BT_MBOX_PRINT(1, AGGR_TRFC_LD, false);
520 BT_MBOX_PRINT(1, MSG_TYPE, false);
521 BT_MBOX_PRINT(1, SSN, true);
522
523 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw2:\n");
524
525 BT_MBOX_PRINT(2, SNIFF_ACT, false);
526 BT_MBOX_PRINT(2, PAG, false);
527 BT_MBOX_PRINT(2, INQUIRY, false);
528 BT_MBOX_PRINT(2, CONN, false);
529 BT_MBOX_PRINT(2, SNIFF_INTERVAL, false);
530 BT_MBOX_PRINT(2, DISC, false);
531 BT_MBOX_PRINT(2, SCO_TX_ACT, false);
532 BT_MBOX_PRINT(2, SCO_RX_ACT, false);
533 BT_MBOX_PRINT(2, ESCO_RE_TX, false);
534 BT_MBOX_PRINT(2, SCO_DURATION, true);
535
536 pos += scnprintf(buf+pos, bufsz-pos, "MBOX dw3:\n");
537
538 BT_MBOX_PRINT(3, SCO_STATE, false);
539 BT_MBOX_PRINT(3, SNIFF_STATE, false);
540 BT_MBOX_PRINT(3, A2DP_STATE, false);
541 BT_MBOX_PRINT(3, ACL_STATE, false);
542 BT_MBOX_PRINT(3, MSTR_STATE, false);
543 BT_MBOX_PRINT(3, OBX_STATE, false);
544 BT_MBOX_PRINT(3, OPEN_CON_2, false);
545 BT_MBOX_PRINT(3, TRAFFIC_LOAD, false);
546 BT_MBOX_PRINT(3, CHL_SEQN_LSB, false);
547 BT_MBOX_PRINT(3, INBAND_P, false);
548 BT_MBOX_PRINT(3, MSG_TYPE_2, false);
549 BT_MBOX_PRINT(3, SSN_2, false);
550 BT_MBOX_PRINT(3, UPDATE_REQUEST, true);
551
552 return pos;
553}
554
555static ssize_t iwl_dbgfs_bt_notif_read(struct file *file, char __user *user_buf,
556 size_t count, loff_t *ppos)
557{
558 struct iwl_mvm *mvm = file->private_data;
559 char *buf;
560 int ret, pos = 0, bufsz = sizeof(char) * 1024;
561
562 buf = kmalloc(bufsz, GFP_KERNEL);
563 if (!buf)
564 return -ENOMEM;
565
566 mutex_lock(&mvm->mutex);
567
568 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) {
569 struct iwl_bt_coex_profile_notif_old *notif =
570 &mvm->last_bt_notif_old;
571
572 pos += iwl_mvm_coex_dump_mbox_old(notif, buf, pos, bufsz);
573
574 pos += scnprintf(buf+pos, bufsz-pos, "bt_ci_compliance = %d\n",
575 notif->bt_ci_compliance);
576 pos += scnprintf(buf+pos, bufsz-pos, "primary_ch_lut = %d\n",
577 le32_to_cpu(notif->primary_ch_lut));
578 pos += scnprintf(buf+pos, bufsz-pos, "secondary_ch_lut = %d\n",
579 le32_to_cpu(notif->secondary_ch_lut));
580 pos += scnprintf(buf+pos,
581 bufsz-pos, "bt_activity_grading = %d\n",
582 le32_to_cpu(notif->bt_activity_grading));
583 pos += scnprintf(buf+pos, bufsz-pos,
584 "antenna isolation = %d CORUN LUT index = %d\n",
585 mvm->last_ant_isol, mvm->last_corun_lut);
586 } else {
587 struct iwl_bt_coex_profile_notif *notif =
588 &mvm->last_bt_notif;
589
590 pos += iwl_mvm_coex_dump_mbox(notif, buf, pos, bufsz);
591
592 pos += scnprintf(buf+pos, bufsz-pos, "bt_ci_compliance = %d\n",
593 notif->bt_ci_compliance);
594 pos += scnprintf(buf+pos, bufsz-pos, "primary_ch_lut = %d\n",
595 le32_to_cpu(notif->primary_ch_lut));
596 pos += scnprintf(buf+pos, bufsz-pos, "secondary_ch_lut = %d\n",
597 le32_to_cpu(notif->secondary_ch_lut));
598 pos += scnprintf(buf+pos,
599 bufsz-pos, "bt_activity_grading = %d\n",
600 le32_to_cpu(notif->bt_activity_grading));
601 pos += scnprintf(buf+pos, bufsz-pos,
602 "antenna isolation = %d CORUN LUT index = %d\n",
603 mvm->last_ant_isol, mvm->last_corun_lut);
604 }
Emmanuel Grumbach10942342013-02-19 11:02:36 +0200605
606 mutex_unlock(&mvm->mutex);
607
608 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
609 kfree(buf);
610
611 return ret;
612}
613#undef BT_MBOX_PRINT
614
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300615static ssize_t iwl_dbgfs_bt_cmd_read(struct file *file, char __user *user_buf,
616 size_t count, loff_t *ppos)
617{
618 struct iwl_mvm *mvm = file->private_data;
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300619 char buf[256];
620 int bufsz = sizeof(buf);
621 int pos = 0;
622
623 mutex_lock(&mvm->mutex);
624
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300625 if (!(mvm->fw->ucode_capa.api[0] & IWL_UCODE_TLV_API_BT_COEX_SPLIT)) {
626 struct iwl_bt_coex_ci_cmd_old *cmd = &mvm->last_bt_ci_cmd_old;
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300627
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300628 pos += scnprintf(buf+pos, bufsz-pos,
629 "Channel inhibition CMD\n");
630 pos += scnprintf(buf+pos, bufsz-pos,
631 "\tPrimary Channel Bitmap 0x%016llx\n",
632 le64_to_cpu(cmd->bt_primary_ci));
633 pos += scnprintf(buf+pos, bufsz-pos,
634 "\tSecondary Channel Bitmap 0x%016llx\n",
635 le64_to_cpu(cmd->bt_secondary_ci));
636
637 pos += scnprintf(buf+pos, bufsz-pos, "BT Configuration CMD\n");
638 pos += scnprintf(buf+pos, bufsz-pos, "\tACK Kill Mask 0x%08x\n",
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300639 iwl_bt_ctl_kill_msk[mvm->bt_ack_kill_msk[0]]);
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300640 pos += scnprintf(buf+pos, bufsz-pos, "\tCTS Kill Mask 0x%08x\n",
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300641 iwl_bt_ctl_kill_msk[mvm->bt_cts_kill_msk[0]]);
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300642
643 } else {
644 struct iwl_bt_coex_ci_cmd *cmd = &mvm->last_bt_ci_cmd;
645
646 pos += scnprintf(buf+pos, bufsz-pos,
647 "Channel inhibition CMD\n");
648 pos += scnprintf(buf+pos, bufsz-pos,
649 "\tPrimary Channel Bitmap 0x%016llx\n",
650 le64_to_cpu(cmd->bt_primary_ci));
651 pos += scnprintf(buf+pos, bufsz-pos,
652 "\tSecondary Channel Bitmap 0x%016llx\n",
653 le64_to_cpu(cmd->bt_secondary_ci));
654
655 pos += scnprintf(buf+pos, bufsz-pos, "BT Configuration CMD\n");
Emmanuel Grumbach1459f262014-07-06 09:34:38 +0300656 pos += scnprintf(buf+pos, bufsz-pos,
657 "\tPrimary: ACK Kill Mask 0x%08x\n",
658 iwl_bt_ctl_kill_msk[mvm->bt_ack_kill_msk[0]]);
659 pos += scnprintf(buf+pos, bufsz-pos,
660 "\tPrimary: CTS Kill Mask 0x%08x\n",
661 iwl_bt_ctl_kill_msk[mvm->bt_cts_kill_msk[0]]);
662 pos += scnprintf(buf+pos, bufsz-pos,
663 "\tSecondary: ACK Kill Mask 0x%08x\n",
664 iwl_bt_ctl_kill_msk[mvm->bt_ack_kill_msk[1]]);
665 pos += scnprintf(buf+pos, bufsz-pos,
666 "\tSecondary: CTS Kill Mask 0x%08x\n",
667 iwl_bt_ctl_kill_msk[mvm->bt_cts_kill_msk[1]]);
668
Emmanuel Grumbach160be572014-07-02 17:33:52 +0300669 }
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +0300670
671 mutex_unlock(&mvm->mutex);
672
673 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
674}
675
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +0200676static ssize_t
677iwl_dbgfs_bt_tx_prio_write(struct iwl_mvm *mvm, char *buf,
678 size_t count, loff_t *ppos)
679{
680 u32 bt_tx_prio;
681
682 if (sscanf(buf, "%u", &bt_tx_prio) != 1)
683 return -EINVAL;
684 if (bt_tx_prio > 4)
685 return -EINVAL;
686
687 mvm->bt_tx_prio = bt_tx_prio;
688
689 return count;
690}
691
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +0300692static ssize_t
693iwl_dbgfs_bt_force_ant_write(struct iwl_mvm *mvm, char *buf,
694 size_t count, loff_t *ppos)
695{
696 static const char * const modes_str[BT_FORCE_ANT_MAX] = {
697 [BT_FORCE_ANT_DIS] = "dis",
698 [BT_FORCE_ANT_AUTO] = "auto",
699 [BT_FORCE_ANT_BT] = "bt",
700 [BT_FORCE_ANT_WIFI] = "wifi",
701 };
702 int ret, bt_force_ant_mode;
703
704 for (bt_force_ant_mode = 0;
705 bt_force_ant_mode < ARRAY_SIZE(modes_str);
706 bt_force_ant_mode++) {
707 if (!strcmp(buf, modes_str[bt_force_ant_mode]))
708 break;
709 }
710
711 if (bt_force_ant_mode >= ARRAY_SIZE(modes_str))
712 return -EINVAL;
713
714 ret = 0;
715 mutex_lock(&mvm->mutex);
716 if (mvm->bt_force_ant_mode == bt_force_ant_mode)
717 goto out;
718
719 mvm->bt_force_ant_mode = bt_force_ant_mode;
720 IWL_DEBUG_COEX(mvm, "Force mode: %s\n",
721 modes_str[mvm->bt_force_ant_mode]);
722 ret = iwl_send_bt_init_conf(mvm);
723
724out:
725 mutex_unlock(&mvm->mutex);
726 return ret ?: count;
727}
728
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300729#define PRINT_STATS_LE32(_str, _val) \
730 pos += scnprintf(buf + pos, bufsz - pos, \
731 fmt_table, _str, \
732 le32_to_cpu(_val))
733
734static ssize_t iwl_dbgfs_fw_rx_stats_read(struct file *file,
735 char __user *user_buf, size_t count,
736 loff_t *ppos)
737{
738 struct iwl_mvm *mvm = file->private_data;
739 static const char *fmt_table = "\t%-30s %10u\n";
740 static const char *fmt_header = "%-32s\n";
741 int pos = 0;
742 char *buf;
743 int ret;
Luciano Coelho3f617282013-10-14 13:18:41 +0300744 /* 43 is the size of each data line, 33 is the size of each header */
745 size_t bufsz =
746 ((sizeof(struct mvm_statistics_rx) / sizeof(__le32)) * 43) +
747 (4 * 33) + 1;
748
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300749 struct mvm_statistics_rx_phy *ofdm;
750 struct mvm_statistics_rx_phy *cck;
751 struct mvm_statistics_rx_non_phy *general;
752 struct mvm_statistics_rx_ht_phy *ht;
753
754 buf = kzalloc(bufsz, GFP_KERNEL);
755 if (!buf)
756 return -ENOMEM;
757
758 mutex_lock(&mvm->mutex);
759
760 ofdm = &mvm->rx_stats.ofdm;
761 cck = &mvm->rx_stats.cck;
762 general = &mvm->rx_stats.general;
763 ht = &mvm->rx_stats.ofdm_ht;
764
765 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
766 "Statistics_Rx - OFDM");
767 PRINT_STATS_LE32("ina_cnt", ofdm->ina_cnt);
768 PRINT_STATS_LE32("fina_cnt", ofdm->fina_cnt);
769 PRINT_STATS_LE32("plcp_err", ofdm->plcp_err);
770 PRINT_STATS_LE32("crc32_err", ofdm->crc32_err);
771 PRINT_STATS_LE32("overrun_err", ofdm->overrun_err);
772 PRINT_STATS_LE32("early_overrun_err", ofdm->early_overrun_err);
773 PRINT_STATS_LE32("crc32_good", ofdm->crc32_good);
774 PRINT_STATS_LE32("false_alarm_cnt", ofdm->false_alarm_cnt);
775 PRINT_STATS_LE32("fina_sync_err_cnt", ofdm->fina_sync_err_cnt);
776 PRINT_STATS_LE32("sfd_timeout", ofdm->sfd_timeout);
777 PRINT_STATS_LE32("fina_timeout", ofdm->fina_timeout);
778 PRINT_STATS_LE32("unresponded_rts", ofdm->unresponded_rts);
779 PRINT_STATS_LE32("rxe_frame_lmt_overrun",
780 ofdm->rxe_frame_limit_overrun);
781 PRINT_STATS_LE32("sent_ack_cnt", ofdm->sent_ack_cnt);
782 PRINT_STATS_LE32("sent_cts_cnt", ofdm->sent_cts_cnt);
783 PRINT_STATS_LE32("sent_ba_rsp_cnt", ofdm->sent_ba_rsp_cnt);
784 PRINT_STATS_LE32("dsp_self_kill", ofdm->dsp_self_kill);
785 PRINT_STATS_LE32("mh_format_err", ofdm->mh_format_err);
786 PRINT_STATS_LE32("re_acq_main_rssi_sum", ofdm->re_acq_main_rssi_sum);
787 PRINT_STATS_LE32("reserved", ofdm->reserved);
788
789 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
790 "Statistics_Rx - CCK");
791 PRINT_STATS_LE32("ina_cnt", cck->ina_cnt);
792 PRINT_STATS_LE32("fina_cnt", cck->fina_cnt);
793 PRINT_STATS_LE32("plcp_err", cck->plcp_err);
794 PRINT_STATS_LE32("crc32_err", cck->crc32_err);
795 PRINT_STATS_LE32("overrun_err", cck->overrun_err);
796 PRINT_STATS_LE32("early_overrun_err", cck->early_overrun_err);
797 PRINT_STATS_LE32("crc32_good", cck->crc32_good);
798 PRINT_STATS_LE32("false_alarm_cnt", cck->false_alarm_cnt);
799 PRINT_STATS_LE32("fina_sync_err_cnt", cck->fina_sync_err_cnt);
800 PRINT_STATS_LE32("sfd_timeout", cck->sfd_timeout);
801 PRINT_STATS_LE32("fina_timeout", cck->fina_timeout);
802 PRINT_STATS_LE32("unresponded_rts", cck->unresponded_rts);
803 PRINT_STATS_LE32("rxe_frame_lmt_overrun",
804 cck->rxe_frame_limit_overrun);
805 PRINT_STATS_LE32("sent_ack_cnt", cck->sent_ack_cnt);
806 PRINT_STATS_LE32("sent_cts_cnt", cck->sent_cts_cnt);
807 PRINT_STATS_LE32("sent_ba_rsp_cnt", cck->sent_ba_rsp_cnt);
808 PRINT_STATS_LE32("dsp_self_kill", cck->dsp_self_kill);
809 PRINT_STATS_LE32("mh_format_err", cck->mh_format_err);
810 PRINT_STATS_LE32("re_acq_main_rssi_sum", cck->re_acq_main_rssi_sum);
811 PRINT_STATS_LE32("reserved", cck->reserved);
812
813 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
814 "Statistics_Rx - GENERAL");
815 PRINT_STATS_LE32("bogus_cts", general->bogus_cts);
816 PRINT_STATS_LE32("bogus_ack", general->bogus_ack);
817 PRINT_STATS_LE32("non_bssid_frames", general->non_bssid_frames);
818 PRINT_STATS_LE32("filtered_frames", general->filtered_frames);
819 PRINT_STATS_LE32("non_channel_beacons", general->non_channel_beacons);
820 PRINT_STATS_LE32("channel_beacons", general->channel_beacons);
821 PRINT_STATS_LE32("num_missed_bcon", general->num_missed_bcon);
822 PRINT_STATS_LE32("adc_rx_saturation_time",
823 general->adc_rx_saturation_time);
824 PRINT_STATS_LE32("ina_detection_search_time",
825 general->ina_detection_search_time);
826 PRINT_STATS_LE32("beacon_silence_rssi_a",
827 general->beacon_silence_rssi_a);
828 PRINT_STATS_LE32("beacon_silence_rssi_b",
829 general->beacon_silence_rssi_b);
830 PRINT_STATS_LE32("beacon_silence_rssi_c",
831 general->beacon_silence_rssi_c);
832 PRINT_STATS_LE32("interference_data_flag",
833 general->interference_data_flag);
834 PRINT_STATS_LE32("channel_load", general->channel_load);
835 PRINT_STATS_LE32("dsp_false_alarms", general->dsp_false_alarms);
836 PRINT_STATS_LE32("beacon_rssi_a", general->beacon_rssi_a);
837 PRINT_STATS_LE32("beacon_rssi_b", general->beacon_rssi_b);
838 PRINT_STATS_LE32("beacon_rssi_c", general->beacon_rssi_c);
839 PRINT_STATS_LE32("beacon_energy_a", general->beacon_energy_a);
840 PRINT_STATS_LE32("beacon_energy_b", general->beacon_energy_b);
841 PRINT_STATS_LE32("beacon_energy_c", general->beacon_energy_c);
842 PRINT_STATS_LE32("num_bt_kills", general->num_bt_kills);
Luciano Coelho3f617282013-10-14 13:18:41 +0300843 PRINT_STATS_LE32("mac_id", general->mac_id);
Matti Gottlieb3848ab62013-07-30 15:29:37 +0300844 PRINT_STATS_LE32("directed_data_mpdu", general->directed_data_mpdu);
845
846 pos += scnprintf(buf + pos, bufsz - pos, fmt_header,
847 "Statistics_Rx - HT");
848 PRINT_STATS_LE32("plcp_err", ht->plcp_err);
849 PRINT_STATS_LE32("overrun_err", ht->overrun_err);
850 PRINT_STATS_LE32("early_overrun_err", ht->early_overrun_err);
851 PRINT_STATS_LE32("crc32_good", ht->crc32_good);
852 PRINT_STATS_LE32("crc32_err", ht->crc32_err);
853 PRINT_STATS_LE32("mh_format_err", ht->mh_format_err);
854 PRINT_STATS_LE32("agg_crc32_good", ht->agg_crc32_good);
855 PRINT_STATS_LE32("agg_mpdu_cnt", ht->agg_mpdu_cnt);
856 PRINT_STATS_LE32("agg_cnt", ht->agg_cnt);
857 PRINT_STATS_LE32("unsupport_mcs", ht->unsupport_mcs);
858
859 mutex_unlock(&mvm->mutex);
860
861 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
862 kfree(buf);
863
864 return ret;
865}
866#undef PRINT_STAT_LE32
867
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200868static ssize_t iwl_dbgfs_frame_stats_read(struct iwl_mvm *mvm,
869 char __user *user_buf, size_t count,
870 loff_t *ppos,
871 struct iwl_mvm_frame_stats *stats)
872{
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200873 char *buff, *pos, *endpos;
874 int idx, i;
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200875 int ret;
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200876 static const size_t bufsz = 1024;
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200877
878 buff = kmalloc(bufsz, GFP_KERNEL);
879 if (!buff)
880 return -ENOMEM;
881
882 spin_lock_bh(&mvm->drv_stats_lock);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200883
884 pos = buff;
885 endpos = pos + bufsz;
886
887 pos += scnprintf(pos, endpos - pos,
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200888 "Legacy/HT/VHT\t:\t%d/%d/%d\n",
889 stats->legacy_frames,
890 stats->ht_frames,
891 stats->vht_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200892 pos += scnprintf(pos, endpos - pos, "20/40/80\t:\t%d/%d/%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200893 stats->bw_20_frames,
894 stats->bw_40_frames,
895 stats->bw_80_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200896 pos += scnprintf(pos, endpos - pos, "NGI/SGI\t\t:\t%d/%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200897 stats->ngi_frames,
898 stats->sgi_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200899 pos += scnprintf(pos, endpos - pos, "SISO/MIMO2\t:\t%d/%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200900 stats->siso_frames,
901 stats->mimo2_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200902 pos += scnprintf(pos, endpos - pos, "FAIL/SCSS\t:\t%d/%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200903 stats->fail_frames,
904 stats->success_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200905 pos += scnprintf(pos, endpos - pos, "MPDUs agg\t:\t%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200906 stats->agg_frames);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200907 pos += scnprintf(pos, endpos - pos, "A-MPDUs\t\t:\t%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200908 stats->ampdu_count);
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200909 pos += scnprintf(pos, endpos - pos, "Avg MPDUs/A-MPDU:\t%d\n",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200910 stats->ampdu_count > 0 ?
911 (stats->agg_frames / stats->ampdu_count) : 0);
912
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200913 pos += scnprintf(pos, endpos - pos, "Last Rates\n");
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200914
915 idx = stats->last_frame_idx - 1;
916 for (i = 0; i < ARRAY_SIZE(stats->last_rates); i++) {
917 idx = (idx + 1) % ARRAY_SIZE(stats->last_rates);
918 if (stats->last_rates[idx] == 0)
919 continue;
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200920 pos += scnprintf(pos, endpos - pos, "Rate[%d]: ",
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200921 (int)(ARRAY_SIZE(stats->last_rates) - i));
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200922 pos += rs_pretty_print_rate(pos, stats->last_rates[idx]);
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200923 }
924 spin_unlock_bh(&mvm->drv_stats_lock);
925
Eyal Shapiraf754b5c2014-02-24 10:24:34 +0200926 ret = simple_read_from_buffer(user_buf, count, ppos, buff, pos - buff);
Eyal Shapira5fc0f762014-01-28 01:35:32 +0200927 kfree(buff);
928
929 return ret;
930}
931
932static ssize_t iwl_dbgfs_drv_rx_stats_read(struct file *file,
933 char __user *user_buf, size_t count,
934 loff_t *ppos)
935{
936 struct iwl_mvm *mvm = file->private_data;
937
938 return iwl_dbgfs_frame_stats_read(mvm, user_buf, count, ppos,
939 &mvm->drv_rx_stats);
940}
941
Johannes Berg1fa3f572013-11-13 09:10:21 +0100942static ssize_t iwl_dbgfs_fw_restart_write(struct iwl_mvm *mvm, char *buf,
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200943 size_t count, loff_t *ppos)
944{
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200945 int ret;
946
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200947 mutex_lock(&mvm->mutex);
948
Eran Harary291aa7c2013-07-03 11:00:06 +0300949 /* allow one more restart that we're provoking here */
950 if (mvm->restart_fw >= 0)
951 mvm->restart_fw++;
952
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200953 /* take the return value to make compiler happy - it will fail anyway */
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300954 ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_ERROR, 0, 0, NULL);
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200955
956 mutex_unlock(&mvm->mutex);
957
Emmanuel Grumbach490953a2013-03-04 08:53:07 +0200958 return count;
959}
960
Johannes Berg1fa3f572013-11-13 09:10:21 +0100961static ssize_t iwl_dbgfs_fw_nmi_write(struct iwl_mvm *mvm, char *buf,
Alexander Bondar119663c2013-10-17 14:26:50 +0200962 size_t count, loff_t *ppos)
963{
Eliad Peller576eeee2014-07-01 18:38:38 +0300964 int ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_NMI);
965 if (ret)
966 return ret;
967
Liad Kaufman4c9706d2014-04-27 16:46:09 +0300968 iwl_force_nmi(mvm->trans);
Alexander Bondar119663c2013-10-17 14:26:50 +0200969
Eliad Peller576eeee2014-07-01 18:38:38 +0300970 iwl_mvm_unref(mvm, IWL_MVM_REF_NMI);
971
Alexander Bondar119663c2013-10-17 14:26:50 +0200972 return count;
973}
974
Oren Givon91b05d12013-08-19 08:36:48 +0300975static ssize_t
976iwl_dbgfs_scan_ant_rxchain_read(struct file *file,
977 char __user *user_buf,
978 size_t count, loff_t *ppos)
979{
980 struct iwl_mvm *mvm = file->private_data;
981 int pos = 0;
982 char buf[32];
983 const size_t bufsz = sizeof(buf);
984
985 /* print which antennas were set for the scan command by the user */
986 pos += scnprintf(buf + pos, bufsz - pos, "Antennas for scan: ");
987 if (mvm->scan_rx_ant & ANT_A)
988 pos += scnprintf(buf + pos, bufsz - pos, "A");
989 if (mvm->scan_rx_ant & ANT_B)
990 pos += scnprintf(buf + pos, bufsz - pos, "B");
991 if (mvm->scan_rx_ant & ANT_C)
992 pos += scnprintf(buf + pos, bufsz - pos, "C");
993 pos += scnprintf(buf + pos, bufsz - pos, " (%hhx)\n", mvm->scan_rx_ant);
994
995 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
996}
997
998static ssize_t
Johannes Berg1fa3f572013-11-13 09:10:21 +0100999iwl_dbgfs_scan_ant_rxchain_write(struct iwl_mvm *mvm, char *buf,
Oren Givon91b05d12013-08-19 08:36:48 +03001000 size_t count, loff_t *ppos)
1001{
Oren Givon91b05d12013-08-19 08:36:48 +03001002 u8 scan_rx_ant;
1003
Oren Givon91b05d12013-08-19 08:36:48 +03001004 if (sscanf(buf, "%hhx", &scan_rx_ant) != 1)
1005 return -EINVAL;
1006 if (scan_rx_ant > ANT_ABC)
1007 return -EINVAL;
Johannes Berg4ed735e2014-02-12 21:47:44 +01001008 if (scan_rx_ant & ~mvm->fw->valid_rx_ant)
Oren Givon91b05d12013-08-19 08:36:48 +03001009 return -EINVAL;
1010
Oren Givon91b05d12013-08-19 08:36:48 +03001011 mvm->scan_rx_ant = scan_rx_ant;
1012
1013 return count;
1014}
1015
Eliad Pellerde06a592014-01-08 10:11:12 +02001016#define ADD_TEXT(...) pos += scnprintf(buf + pos, bufsz - pos, __VA_ARGS__)
1017#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1018static ssize_t iwl_dbgfs_bcast_filters_read(struct file *file,
1019 char __user *user_buf,
1020 size_t count, loff_t *ppos)
1021{
1022 struct iwl_mvm *mvm = file->private_data;
1023 struct iwl_bcast_filter_cmd cmd;
1024 const struct iwl_fw_bcast_filter *filter;
1025 char *buf;
1026 int bufsz = 1024;
1027 int i, j, pos = 0;
1028 ssize_t ret;
1029
1030 buf = kzalloc(bufsz, GFP_KERNEL);
1031 if (!buf)
1032 return -ENOMEM;
1033
1034 mutex_lock(&mvm->mutex);
1035 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) {
1036 ADD_TEXT("None\n");
1037 mutex_unlock(&mvm->mutex);
1038 goto out;
1039 }
1040 mutex_unlock(&mvm->mutex);
1041
1042 for (i = 0; cmd.filters[i].attrs[0].mask; i++) {
1043 filter = &cmd.filters[i];
1044
1045 ADD_TEXT("Filter [%d]:\n", i);
1046 ADD_TEXT("\tDiscard=%d\n", filter->discard);
1047 ADD_TEXT("\tFrame Type: %s\n",
1048 filter->frame_type ? "IPv4" : "Generic");
1049
1050 for (j = 0; j < ARRAY_SIZE(filter->attrs); j++) {
1051 const struct iwl_fw_bcast_filter_attr *attr;
1052
1053 attr = &filter->attrs[j];
1054 if (!attr->mask)
1055 break;
1056
1057 ADD_TEXT("\tAttr [%d]: offset=%d (from %s), mask=0x%x, value=0x%x reserved=0x%x\n",
1058 j, attr->offset,
1059 attr->offset_type ? "IP End" :
1060 "Payload Start",
1061 be32_to_cpu(attr->mask),
1062 be32_to_cpu(attr->val),
1063 le16_to_cpu(attr->reserved1));
1064 }
1065 }
1066out:
1067 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1068 kfree(buf);
1069 return ret;
1070}
1071
1072static ssize_t iwl_dbgfs_bcast_filters_write(struct iwl_mvm *mvm, char *buf,
1073 size_t count, loff_t *ppos)
1074{
1075 int pos, next_pos;
1076 struct iwl_fw_bcast_filter filter = {};
1077 struct iwl_bcast_filter_cmd cmd;
1078 u32 filter_id, attr_id, mask, value;
1079 int err = 0;
1080
1081 if (sscanf(buf, "%d %hhi %hhi %n", &filter_id, &filter.discard,
1082 &filter.frame_type, &pos) != 3)
1083 return -EINVAL;
1084
1085 if (filter_id >= ARRAY_SIZE(mvm->dbgfs_bcast_filtering.cmd.filters) ||
1086 filter.frame_type > BCAST_FILTER_FRAME_TYPE_IPV4)
1087 return -EINVAL;
1088
1089 for (attr_id = 0; attr_id < ARRAY_SIZE(filter.attrs);
1090 attr_id++) {
1091 struct iwl_fw_bcast_filter_attr *attr =
1092 &filter.attrs[attr_id];
1093
1094 if (pos >= count)
1095 break;
1096
1097 if (sscanf(&buf[pos], "%hhi %hhi %i %i %n",
1098 &attr->offset, &attr->offset_type,
1099 &mask, &value, &next_pos) != 4)
1100 return -EINVAL;
1101
1102 attr->mask = cpu_to_be32(mask);
1103 attr->val = cpu_to_be32(value);
1104 if (mask)
1105 filter.num_attrs++;
1106
1107 pos += next_pos;
1108 }
1109
1110 mutex_lock(&mvm->mutex);
1111 memcpy(&mvm->dbgfs_bcast_filtering.cmd.filters[filter_id],
1112 &filter, sizeof(filter));
1113
1114 /* send updated bcast filtering configuration */
1115 if (mvm->dbgfs_bcast_filtering.override &&
1116 iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001117 err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerde06a592014-01-08 10:11:12 +02001118 sizeof(cmd), &cmd);
1119 mutex_unlock(&mvm->mutex);
1120
1121 return err ?: count;
1122}
1123
1124static ssize_t iwl_dbgfs_bcast_filters_macs_read(struct file *file,
1125 char __user *user_buf,
1126 size_t count, loff_t *ppos)
1127{
1128 struct iwl_mvm *mvm = file->private_data;
1129 struct iwl_bcast_filter_cmd cmd;
1130 char *buf;
1131 int bufsz = 1024;
1132 int i, pos = 0;
1133 ssize_t ret;
1134
1135 buf = kzalloc(bufsz, GFP_KERNEL);
1136 if (!buf)
1137 return -ENOMEM;
1138
1139 mutex_lock(&mvm->mutex);
1140 if (!iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) {
1141 ADD_TEXT("None\n");
1142 mutex_unlock(&mvm->mutex);
1143 goto out;
1144 }
1145 mutex_unlock(&mvm->mutex);
1146
1147 for (i = 0; i < ARRAY_SIZE(cmd.macs); i++) {
1148 const struct iwl_fw_bcast_mac *mac = &cmd.macs[i];
1149
1150 ADD_TEXT("Mac [%d]: discard=%d attached_filters=0x%x\n",
1151 i, mac->default_discard, mac->attached_filters);
1152 }
1153out:
1154 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1155 kfree(buf);
1156 return ret;
1157}
1158
1159static ssize_t iwl_dbgfs_bcast_filters_macs_write(struct iwl_mvm *mvm,
1160 char *buf, size_t count,
1161 loff_t *ppos)
1162{
1163 struct iwl_bcast_filter_cmd cmd;
1164 struct iwl_fw_bcast_mac mac = {};
1165 u32 mac_id, attached_filters;
1166 int err = 0;
1167
1168 if (!mvm->bcast_filters)
1169 return -ENOENT;
1170
1171 if (sscanf(buf, "%d %hhi %i", &mac_id, &mac.default_discard,
1172 &attached_filters) != 3)
1173 return -EINVAL;
1174
1175 if (mac_id >= ARRAY_SIZE(cmd.macs) ||
1176 mac.default_discard > 1 ||
1177 attached_filters >= BIT(ARRAY_SIZE(cmd.filters)))
1178 return -EINVAL;
1179
1180 mac.attached_filters = cpu_to_le16(attached_filters);
1181
1182 mutex_lock(&mvm->mutex);
1183 memcpy(&mvm->dbgfs_bcast_filtering.cmd.macs[mac_id],
1184 &mac, sizeof(mac));
1185
1186 /* send updated bcast filtering configuration */
1187 if (mvm->dbgfs_bcast_filtering.override &&
1188 iwl_mvm_bcast_filter_build_cmd(mvm, &cmd))
Emmanuel Grumbacha1022922014-05-12 11:36:41 +03001189 err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0,
Eliad Pellerde06a592014-01-08 10:11:12 +02001190 sizeof(cmd), &cmd);
1191 mutex_unlock(&mvm->mutex);
1192
1193 return err ?: count;
1194}
1195#endif
1196
Johannes Bergafc66bb2013-05-03 11:44:16 +02001197#ifdef CONFIG_PM_SLEEP
Johannes Berg1fa3f572013-11-13 09:10:21 +01001198static ssize_t iwl_dbgfs_d3_sram_write(struct iwl_mvm *mvm, char *buf,
Johannes Bergafc66bb2013-05-03 11:44:16 +02001199 size_t count, loff_t *ppos)
1200{
Johannes Bergafc66bb2013-05-03 11:44:16 +02001201 int store;
1202
Johannes Bergafc66bb2013-05-03 11:44:16 +02001203 if (sscanf(buf, "%d", &store) != 1)
1204 return -EINVAL;
1205
1206 mvm->store_d3_resume_sram = store;
1207
1208 return count;
1209}
1210
1211static ssize_t iwl_dbgfs_d3_sram_read(struct file *file, char __user *user_buf,
1212 size_t count, loff_t *ppos)
1213{
1214 struct iwl_mvm *mvm = file->private_data;
1215 const struct fw_img *img;
1216 int ofs, len, pos = 0;
1217 size_t bufsz, ret;
1218 char *buf;
1219 u8 *ptr = mvm->d3_resume_sram;
1220
1221 img = &mvm->fw->img[IWL_UCODE_WOWLAN];
1222 len = img->sec[IWL_UCODE_SECTION_DATA].len;
1223
1224 bufsz = len * 4 + 256;
1225 buf = kzalloc(bufsz, GFP_KERNEL);
1226 if (!buf)
1227 return -ENOMEM;
1228
1229 pos += scnprintf(buf, bufsz, "D3 SRAM capture: %sabled\n",
1230 mvm->store_d3_resume_sram ? "en" : "dis");
1231
1232 if (ptr) {
1233 for (ofs = 0; ofs < len; ofs += 16) {
1234 pos += scnprintf(buf + pos, bufsz - pos,
1235 "0x%.4x ", ofs);
1236 hex_dump_to_buffer(ptr + ofs, 16, 16, 1, buf + pos,
1237 bufsz - pos, false);
1238 pos += strlen(buf + pos);
1239 if (bufsz - pos > 0)
1240 buf[pos++] = '\n';
1241 }
1242 } else {
1243 pos += scnprintf(buf + pos, bufsz - pos,
1244 "(no data captured)\n");
1245 }
1246
1247 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1248
1249 kfree(buf);
1250
1251 return ret;
1252}
Luciano Coelho3c2f3b22014-09-24 08:29:11 +03001253
1254#define MAX_NUM_ND_MATCHSETS 10
1255
1256static ssize_t iwl_dbgfs_netdetect_write(struct iwl_mvm *mvm, char *buf,
1257 size_t count, loff_t *ppos)
1258{
1259 const char *seps = ",\n";
1260 char *buf_ptr = buf;
1261 char *value_str = NULL;
1262 int ret, i;
1263
1264 /* TODO: don't free if write is being called several times in one go */
1265 if (mvm->nd_config) {
1266 kfree(mvm->nd_config->match_sets);
1267 kfree(mvm->nd_config);
1268 mvm->nd_config = NULL;
1269 kfree(mvm->nd_ies);
1270 mvm->nd_ies = NULL;
1271 }
1272
1273 mvm->nd_ies = kzalloc(sizeof(*mvm->nd_ies), GFP_KERNEL);
1274 if (!mvm->nd_ies)
1275 return -ENOMEM;
1276
1277 mvm->nd_config = kzalloc(sizeof(*mvm->nd_config) +
1278 (11 * sizeof(struct ieee80211_channel *)),
1279 GFP_KERNEL);
1280 if (!mvm->nd_config) {
1281 ret = -ENOMEM;
1282 goto out_free;
1283 }
1284
1285 mvm->nd_config->n_channels = 11;
1286 mvm->nd_config->scan_width = NL80211_BSS_CHAN_WIDTH_20;
1287 mvm->nd_config->interval = 5;
1288 mvm->nd_config->min_rssi_thold = -80;
1289 for (i = 0; i < mvm->nd_config->n_channels; i++)
1290 mvm->nd_config->channels[i] = &mvm->nvm_data->channels[i];
1291
1292 mvm->nd_config->match_sets =
1293 kcalloc(MAX_NUM_ND_MATCHSETS,
1294 sizeof(*mvm->nd_config->match_sets),
1295 GFP_KERNEL);
1296 if (!mvm->nd_config->match_sets) {
1297 ret = -ENOMEM;
1298 goto out_free;
1299 }
1300
1301 while ((value_str = strsep(&buf_ptr, seps)) &&
1302 strlen(value_str)) {
1303 struct cfg80211_match_set *set;
1304
1305 if (mvm->nd_config->n_match_sets >= MAX_NUM_ND_MATCHSETS) {
1306 ret = -EINVAL;
1307 goto out_free;
1308 }
1309
1310 set = &mvm->nd_config->match_sets[mvm->nd_config->n_match_sets];
1311 set->ssid.ssid_len = strlen(value_str);
1312
1313 if (set->ssid.ssid_len > IEEE80211_MAX_SSID_LEN) {
1314 ret = -EINVAL;
1315 goto out_free;
1316 }
1317
1318 memcpy(set->ssid.ssid, value_str, set->ssid.ssid_len);
1319
1320 mvm->nd_config->n_match_sets++;
1321 }
1322
1323 ret = count;
1324
1325 if (mvm->nd_config->n_match_sets)
1326 goto out;
1327
1328out_free:
1329 if (mvm->nd_config)
1330 kfree(mvm->nd_config->match_sets);
1331 kfree(mvm->nd_config);
1332 mvm->nd_config = NULL;
1333 kfree(mvm->nd_ies);
1334 mvm->nd_ies = NULL;
1335out:
1336 return ret;
1337}
1338
1339static ssize_t
1340iwl_dbgfs_netdetect_read(struct file *file, char __user *user_buf,
1341 size_t count, loff_t *ppos)
1342{
1343 struct iwl_mvm *mvm = file->private_data;
1344 size_t bufsz, ret;
1345 char *buf;
1346 int i, n_match_sets, pos = 0;
1347
1348 n_match_sets = mvm->nd_config ? mvm->nd_config->n_match_sets : 0;
1349
1350 bufsz = n_match_sets * (IEEE80211_MAX_SSID_LEN + 1) + 1;
1351 buf = kzalloc(bufsz, GFP_KERNEL);
1352 if (!buf)
1353 return -ENOMEM;
1354
1355 for (i = 0; i < n_match_sets; i++) {
1356 if (pos +
1357 mvm->nd_config->match_sets[i].ssid.ssid_len + 2 > bufsz) {
1358 ret = -EIO;
1359 goto out;
1360 }
1361
1362 memcpy(buf + pos, mvm->nd_config->match_sets[i].ssid.ssid,
1363 mvm->nd_config->match_sets[i].ssid.ssid_len);
1364 pos += mvm->nd_config->match_sets[i].ssid.ssid_len;
1365 buf[pos++] = '\n';
1366 }
1367
1368 ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1369out:
1370 kfree(buf);
1371 return ret;
1372}
Johannes Bergafc66bb2013-05-03 11:44:16 +02001373#endif
1374
Eliad Peller576eeee2014-07-01 18:38:38 +03001375#define PRINT_MVM_REF(ref) do { \
1376 if (mvm->refs[ref]) \
1377 pos += scnprintf(buf + pos, bufsz - pos, \
1378 "\t(0x%lx): %d %s\n", \
1379 BIT(ref), mvm->refs[ref], #ref); \
Eliad Peller70d6bab2013-11-05 14:45:16 +02001380} while (0)
1381
1382static ssize_t iwl_dbgfs_d0i3_refs_read(struct file *file,
1383 char __user *user_buf,
1384 size_t count, loff_t *ppos)
1385{
1386 struct iwl_mvm *mvm = file->private_data;
Eliad Peller576eeee2014-07-01 18:38:38 +03001387 int i, pos = 0;
Eliad Peller70d6bab2013-11-05 14:45:16 +02001388 char buf[256];
1389 const size_t bufsz = sizeof(buf);
Eliad Peller576eeee2014-07-01 18:38:38 +03001390 u32 refs = 0;
Eliad Peller70d6bab2013-11-05 14:45:16 +02001391
Eliad Peller576eeee2014-07-01 18:38:38 +03001392 for (i = 0; i < IWL_MVM_REF_COUNT; i++)
1393 if (mvm->refs[i])
1394 refs |= BIT(i);
1395
1396 pos += scnprintf(buf + pos, bufsz - pos, "taken mvm refs: 0x%x\n",
1397 refs);
Eliad Peller70d6bab2013-11-05 14:45:16 +02001398
1399 PRINT_MVM_REF(IWL_MVM_REF_UCODE_DOWN);
1400 PRINT_MVM_REF(IWL_MVM_REF_SCAN);
1401 PRINT_MVM_REF(IWL_MVM_REF_ROC);
1402 PRINT_MVM_REF(IWL_MVM_REF_P2P_CLIENT);
1403 PRINT_MVM_REF(IWL_MVM_REF_AP_IBSS);
Eliad Peller0eb83652013-11-11 18:56:35 +02001404 PRINT_MVM_REF(IWL_MVM_REF_USER);
Johannes Berg34e611e2014-09-12 10:28:01 +02001405 PRINT_MVM_REF(IWL_MVM_REF_TX);
1406 PRINT_MVM_REF(IWL_MVM_REF_TX_AGG);
1407 PRINT_MVM_REF(IWL_MVM_REF_ADD_IF);
1408 PRINT_MVM_REF(IWL_MVM_REF_START_AP);
1409 PRINT_MVM_REF(IWL_MVM_REF_BSS_CHANGED);
1410 PRINT_MVM_REF(IWL_MVM_REF_PREPARE_TX);
1411 PRINT_MVM_REF(IWL_MVM_REF_PROTECT_TDLS);
1412 PRINT_MVM_REF(IWL_MVM_REF_CHECK_CTKILL);
1413 PRINT_MVM_REF(IWL_MVM_REF_PRPH_READ);
1414 PRINT_MVM_REF(IWL_MVM_REF_PRPH_WRITE);
1415 PRINT_MVM_REF(IWL_MVM_REF_NMI);
1416 PRINT_MVM_REF(IWL_MVM_REF_TM_CMD);
Eliad Pellerd15a7472014-03-27 18:53:12 +02001417 PRINT_MVM_REF(IWL_MVM_REF_EXIT_WORK);
Eliad Peller70d6bab2013-11-05 14:45:16 +02001418
1419 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1420}
1421
Eliad Peller0eb83652013-11-11 18:56:35 +02001422static ssize_t iwl_dbgfs_d0i3_refs_write(struct iwl_mvm *mvm, char *buf,
1423 size_t count, loff_t *ppos)
1424{
1425 unsigned long value;
1426 int ret;
1427 bool taken;
1428
1429 ret = kstrtoul(buf, 10, &value);
1430 if (ret < 0)
1431 return ret;
1432
1433 mutex_lock(&mvm->mutex);
1434
Eliad Peller576eeee2014-07-01 18:38:38 +03001435 taken = mvm->refs[IWL_MVM_REF_USER];
Eliad Peller0eb83652013-11-11 18:56:35 +02001436 if (value == 1 && !taken)
1437 iwl_mvm_ref(mvm, IWL_MVM_REF_USER);
1438 else if (value == 0 && taken)
1439 iwl_mvm_unref(mvm, IWL_MVM_REF_USER);
1440 else
1441 ret = -EINVAL;
1442
1443 mutex_unlock(&mvm->mutex);
1444
1445 if (ret < 0)
1446 return ret;
1447 return count;
1448}
1449
Johannes Berg1fa3f572013-11-13 09:10:21 +01001450#define MVM_DEBUGFS_WRITE_FILE_OPS(name, bufsz) \
1451 _MVM_DEBUGFS_WRITE_FILE_OPS(name, bufsz, struct iwl_mvm)
1452#define MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz) \
1453 _MVM_DEBUGFS_READ_WRITE_FILE_OPS(name, bufsz, struct iwl_mvm)
Eliad Pellerde06a592014-01-08 10:11:12 +02001454#define MVM_DEBUGFS_ADD_FILE_ALIAS(alias, name, parent, mode) do { \
1455 if (!debugfs_create_file(alias, mode, parent, mvm, \
Johannes Berg8ca151b2013-01-24 14:25:36 +01001456 &iwl_dbgfs_##name##_ops)) \
1457 goto err; \
1458 } while (0)
Eliad Pellerde06a592014-01-08 10:11:12 +02001459#define MVM_DEBUGFS_ADD_FILE(name, parent, mode) \
1460 MVM_DEBUGFS_ADD_FILE_ALIAS(#name, name, parent, mode)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001461
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001462static ssize_t
1463iwl_dbgfs_prph_reg_read(struct file *file,
1464 char __user *user_buf,
1465 size_t count, loff_t *ppos)
1466{
1467 struct iwl_mvm *mvm = file->private_data;
1468 int pos = 0;
1469 char buf[32];
1470 const size_t bufsz = sizeof(buf);
Eliad Peller576eeee2014-07-01 18:38:38 +03001471 int ret;
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001472
1473 if (!mvm->dbgfs_prph_reg_addr)
1474 return -EINVAL;
1475
Eliad Peller576eeee2014-07-01 18:38:38 +03001476 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PRPH_READ);
1477 if (ret)
1478 return ret;
1479
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001480 pos += scnprintf(buf + pos, bufsz - pos, "Reg 0x%x: (0x%x)\n",
1481 mvm->dbgfs_prph_reg_addr,
1482 iwl_read_prph(mvm->trans, mvm->dbgfs_prph_reg_addr));
1483
Eliad Peller576eeee2014-07-01 18:38:38 +03001484 iwl_mvm_unref(mvm, IWL_MVM_REF_PRPH_READ);
1485
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001486 return simple_read_from_buffer(user_buf, count, ppos, buf, pos);
1487}
1488
1489static ssize_t
1490iwl_dbgfs_prph_reg_write(struct iwl_mvm *mvm, char *buf,
1491 size_t count, loff_t *ppos)
1492{
1493 u8 args;
1494 u32 value;
Eliad Peller576eeee2014-07-01 18:38:38 +03001495 int ret;
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001496
1497 args = sscanf(buf, "%i %i", &mvm->dbgfs_prph_reg_addr, &value);
1498 /* if we only want to set the reg address - nothing more to do */
1499 if (args == 1)
1500 goto out;
1501
1502 /* otherwise, make sure we have both address and value */
1503 if (args != 2)
1504 return -EINVAL;
1505
Eliad Peller576eeee2014-07-01 18:38:38 +03001506 ret = iwl_mvm_ref_sync(mvm, IWL_MVM_REF_PRPH_WRITE);
1507 if (ret)
1508 return ret;
1509
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001510 iwl_write_prph(mvm->trans, mvm->dbgfs_prph_reg_addr, value);
Eliad Peller576eeee2014-07-01 18:38:38 +03001511
1512 iwl_mvm_unref(mvm, IWL_MVM_REF_PRPH_WRITE);
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001513out:
1514 return count;
1515}
1516
1517MVM_DEBUGFS_READ_WRITE_FILE_OPS(prph_reg, 64);
1518
Johannes Berg8ca151b2013-01-24 14:25:36 +01001519/* Device wide debugfs entries */
Johannes Berg1fa3f572013-11-13 09:10:21 +01001520MVM_DEBUGFS_WRITE_FILE_OPS(tx_flush, 16);
1521MVM_DEBUGFS_WRITE_FILE_OPS(sta_drain, 8);
1522MVM_DEBUGFS_READ_WRITE_FILE_OPS(sram, 64);
Matti Gottlieb7280d1f2014-07-17 16:41:14 +03001523MVM_DEBUGFS_READ_WRITE_FILE_OPS(set_nic_temperature, 64);
Luciano Coelhoc549e392014-09-04 15:58:47 +03001524MVM_DEBUGFS_READ_FILE_OPS(nic_temp);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001525MVM_DEBUGFS_READ_FILE_OPS(stations);
Emmanuel Grumbach10942342013-02-19 11:02:36 +02001526MVM_DEBUGFS_READ_FILE_OPS(bt_notif);
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +03001527MVM_DEBUGFS_READ_FILE_OPS(bt_cmd);
Johannes Berg1fa3f572013-11-13 09:10:21 +01001528MVM_DEBUGFS_READ_WRITE_FILE_OPS(disable_power_off, 64);
Matti Gottlieb3848ab62013-07-30 15:29:37 +03001529MVM_DEBUGFS_READ_FILE_OPS(fw_rx_stats);
Eyal Shapira5fc0f762014-01-28 01:35:32 +02001530MVM_DEBUGFS_READ_FILE_OPS(drv_rx_stats);
Johannes Berg1fa3f572013-11-13 09:10:21 +01001531MVM_DEBUGFS_WRITE_FILE_OPS(fw_restart, 10);
1532MVM_DEBUGFS_WRITE_FILE_OPS(fw_nmi, 10);
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +02001533MVM_DEBUGFS_WRITE_FILE_OPS(bt_tx_prio, 10);
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +03001534MVM_DEBUGFS_WRITE_FILE_OPS(bt_force_ant, 10);
Johannes Berg1fa3f572013-11-13 09:10:21 +01001535MVM_DEBUGFS_READ_WRITE_FILE_OPS(scan_ant_rxchain, 8);
Eliad Peller0eb83652013-11-11 18:56:35 +02001536MVM_DEBUGFS_READ_WRITE_FILE_OPS(d0i3_refs, 8);
Oren Givon91b05d12013-08-19 08:36:48 +03001537
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +02001538static const struct file_operations iwl_dbgfs_fw_error_dump_ops = {
Emmanuel Grumbach3a58d98e2014-04-13 09:38:48 +03001539 .open = iwl_dbgfs_fw_error_dump_open,
1540 .read = iwl_dbgfs_fw_error_dump_read,
1541 .release = iwl_dbgfs_fw_error_dump_release,
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +02001542};
1543
Eliad Pellerde06a592014-01-08 10:11:12 +02001544#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1545MVM_DEBUGFS_READ_WRITE_FILE_OPS(bcast_filters, 256);
1546MVM_DEBUGFS_READ_WRITE_FILE_OPS(bcast_filters_macs, 256);
1547#endif
1548
Johannes Bergafc66bb2013-05-03 11:44:16 +02001549#ifdef CONFIG_PM_SLEEP
Johannes Berg1fa3f572013-11-13 09:10:21 +01001550MVM_DEBUGFS_READ_WRITE_FILE_OPS(d3_sram, 8);
Luciano Coelho3c2f3b22014-09-24 08:29:11 +03001551MVM_DEBUGFS_READ_WRITE_FILE_OPS(netdetect, 384);
Johannes Bergafc66bb2013-05-03 11:44:16 +02001552#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001553
1554int iwl_mvm_dbgfs_register(struct iwl_mvm *mvm, struct dentry *dbgfs_dir)
1555{
Eliad Pellerde06a592014-01-08 10:11:12 +02001556 struct dentry *bcast_dir __maybe_unused;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001557 char buf[100];
1558
Johannes Bergd07913a2014-02-26 11:25:58 +01001559 spin_lock_init(&mvm->drv_stats_lock);
1560
Johannes Berg8ca151b2013-01-24 14:25:36 +01001561 mvm->debugfs_dir = dbgfs_dir;
1562
1563 MVM_DEBUGFS_ADD_FILE(tx_flush, mvm->debugfs_dir, S_IWUSR);
1564 MVM_DEBUGFS_ADD_FILE(sta_drain, mvm->debugfs_dir, S_IWUSR);
1565 MVM_DEBUGFS_ADD_FILE(sram, mvm->debugfs_dir, S_IWUSR | S_IRUSR);
Matti Gottlieb7280d1f2014-07-17 16:41:14 +03001566 MVM_DEBUGFS_ADD_FILE(set_nic_temperature, mvm->debugfs_dir,
1567 S_IWUSR | S_IRUSR);
Luciano Coelhoc549e392014-09-04 15:58:47 +03001568 MVM_DEBUGFS_ADD_FILE(nic_temp, dbgfs_dir, S_IRUSR);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001569 MVM_DEBUGFS_ADD_FILE(stations, dbgfs_dir, S_IRUSR);
Emmanuel Grumbach1bd3cbc2014-03-18 21:15:06 +02001570 MVM_DEBUGFS_ADD_FILE(fw_error_dump, dbgfs_dir, S_IRUSR);
Emmanuel Grumbach10942342013-02-19 11:02:36 +02001571 MVM_DEBUGFS_ADD_FILE(bt_notif, dbgfs_dir, S_IRUSR);
Emmanuel Grumbach2de13ca2013-06-30 07:43:28 +03001572 MVM_DEBUGFS_ADD_FILE(bt_cmd, dbgfs_dir, S_IRUSR);
Emmanuel Grumbach639eaba2014-03-30 10:11:13 +03001573 MVM_DEBUGFS_ADD_FILE(disable_power_off, mvm->debugfs_dir,
1574 S_IRUSR | S_IWUSR);
Matti Gottlieb3848ab62013-07-30 15:29:37 +03001575 MVM_DEBUGFS_ADD_FILE(fw_rx_stats, mvm->debugfs_dir, S_IRUSR);
Eyal Shapira5fc0f762014-01-28 01:35:32 +02001576 MVM_DEBUGFS_ADD_FILE(drv_rx_stats, mvm->debugfs_dir, S_IRUSR);
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001577 MVM_DEBUGFS_ADD_FILE(fw_restart, mvm->debugfs_dir, S_IWUSR);
Alexander Bondar119663c2013-10-17 14:26:50 +02001578 MVM_DEBUGFS_ADD_FILE(fw_nmi, mvm->debugfs_dir, S_IWUSR);
Emmanuel Grumbachcdb00562014-03-16 21:55:43 +02001579 MVM_DEBUGFS_ADD_FILE(bt_tx_prio, mvm->debugfs_dir, S_IWUSR);
Emmanuel Grumbacha39979a2014-05-28 12:06:41 +03001580 MVM_DEBUGFS_ADD_FILE(bt_force_ant, mvm->debugfs_dir, S_IWUSR);
Oren Givon91b05d12013-08-19 08:36:48 +03001581 MVM_DEBUGFS_ADD_FILE(scan_ant_rxchain, mvm->debugfs_dir,
1582 S_IWUSR | S_IRUSR);
Eliad Pellerf3c221f2014-01-09 13:12:54 +02001583 MVM_DEBUGFS_ADD_FILE(prph_reg, mvm->debugfs_dir, S_IWUSR | S_IRUSR);
Eliad Peller0eb83652013-11-11 18:56:35 +02001584 MVM_DEBUGFS_ADD_FILE(d0i3_refs, mvm->debugfs_dir, S_IRUSR | S_IWUSR);
Eliad Pellerde06a592014-01-08 10:11:12 +02001585
1586#ifdef CONFIG_IWLWIFI_BCAST_FILTERING
1587 if (mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BCAST_FILTERING) {
1588 bcast_dir = debugfs_create_dir("bcast_filtering",
1589 mvm->debugfs_dir);
1590 if (!bcast_dir)
1591 goto err;
1592
1593 if (!debugfs_create_bool("override", S_IRUSR | S_IWUSR,
1594 bcast_dir,
1595 &mvm->dbgfs_bcast_filtering.override))
1596 goto err;
1597
1598 MVM_DEBUGFS_ADD_FILE_ALIAS("filters", bcast_filters,
1599 bcast_dir, S_IWUSR | S_IRUSR);
1600 MVM_DEBUGFS_ADD_FILE_ALIAS("macs", bcast_filters_macs,
1601 bcast_dir, S_IWUSR | S_IRUSR);
1602 }
1603#endif
1604
Johannes Bergafc66bb2013-05-03 11:44:16 +02001605#ifdef CONFIG_PM_SLEEP
1606 MVM_DEBUGFS_ADD_FILE(d3_sram, mvm->debugfs_dir, S_IRUSR | S_IWUSR);
Johannes Bergdebff612013-05-14 13:53:45 +02001607 MVM_DEBUGFS_ADD_FILE(d3_test, mvm->debugfs_dir, S_IRUSR);
Johannes Bergb0114712013-06-12 14:55:40 +02001608 if (!debugfs_create_bool("d3_wake_sysassert", S_IRUSR | S_IWUSR,
1609 mvm->debugfs_dir, &mvm->d3_wake_sysassert))
1610 goto err;
Luciano Coelho3c2f3b22014-09-24 08:29:11 +03001611 MVM_DEBUGFS_ADD_FILE(netdetect, mvm->debugfs_dir, S_IRUSR | S_IWUSR);
Johannes Bergafc66bb2013-05-03 11:44:16 +02001612#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +01001613
Eyal Shapira9ecd0512014-08-28 02:21:05 +03001614 if (!debugfs_create_u8("low_latency_agg_frame_limit", S_IRUSR | S_IWUSR,
1615 mvm->debugfs_dir,
1616 &mvm->low_latency_agg_frame_limit))
1617 goto err;
Luciano Coelhobdd54832014-08-07 18:08:56 +03001618 if (!debugfs_create_u8("ps_disabled", S_IRUSR,
1619 mvm->debugfs_dir, &mvm->ps_disabled))
1620 goto err;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +02001621 if (!debugfs_create_blob("nvm_hw", S_IRUSR,
1622 mvm->debugfs_dir, &mvm->nvm_hw_blob))
1623 goto err;
1624 if (!debugfs_create_blob("nvm_sw", S_IRUSR,
1625 mvm->debugfs_dir, &mvm->nvm_sw_blob))
1626 goto err;
1627 if (!debugfs_create_blob("nvm_calib", S_IRUSR,
1628 mvm->debugfs_dir, &mvm->nvm_calib_blob))
1629 goto err;
1630 if (!debugfs_create_blob("nvm_prod", S_IRUSR,
1631 mvm->debugfs_dir, &mvm->nvm_prod_blob))
1632 goto err;
1633
Johannes Berg8ca151b2013-01-24 14:25:36 +01001634 /*
1635 * Create a symlink with mac80211. It will be removed when mac80211
1636 * exists (before the opmode exists which removes the target.)
1637 */
1638 snprintf(buf, 100, "../../%s/%s",
1639 dbgfs_dir->d_parent->d_parent->d_name.name,
1640 dbgfs_dir->d_parent->d_name.name);
1641 if (!debugfs_create_symlink("iwlwifi", mvm->hw->wiphy->debugfsdir, buf))
1642 goto err;
1643
1644 return 0;
1645err:
1646 IWL_ERR(mvm, "Can't create the mvm debugfs directory\n");
1647 return -ENOMEM;
1648}