blob: 3b016f95a8ed59ad84531b8b3806907c99d2d48c [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 *****************************************************************************/
65#include <net/mac80211.h>
66
67#include "iwl-debug.h"
68#include "iwl-io.h"
Emmanuel Grumbach7b445f32014-03-20 11:08:19 +020069#include "iwl-prph.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010070
71#include "mvm.h"
72#include "fw-api-rs.h"
73
74/*
75 * Will return 0 even if the cmd failed when RFKILL is asserted unless
76 * CMD_WANT_SKB is set in cmd->flags.
77 */
78int iwl_mvm_send_cmd(struct iwl_mvm *mvm, struct iwl_host_cmd *cmd)
79{
80 int ret;
81
Johannes Bergdebff612013-05-14 13:53:45 +020082#if defined(CONFIG_IWLWIFI_DEBUGFS) && defined(CONFIG_PM_SLEEP)
83 if (WARN_ON(mvm->d3_test_active))
84 return -EIO;
85#endif
86
Johannes Berg8ca151b2013-01-24 14:25:36 +010087 /*
88 * Synchronous commands from this op-mode must hold
89 * the mutex, this ensures we don't try to send two
90 * (or more) synchronous commands at a time.
91 */
92 if (!(cmd->flags & CMD_ASYNC))
93 lockdep_assert_held(&mvm->mutex);
94
95 ret = iwl_trans_send_cmd(mvm->trans, cmd);
96
97 /*
98 * If the caller wants the SKB, then don't hide any problems, the
99 * caller might access the response buffer which will be NULL if
100 * the command failed.
101 */
102 if (cmd->flags & CMD_WANT_SKB)
103 return ret;
104
105 /* Silently ignore failures if RFKILL is asserted */
106 if (!ret || ret == -ERFKILL)
107 return 0;
108 return ret;
109}
110
111int iwl_mvm_send_cmd_pdu(struct iwl_mvm *mvm, u8 id,
112 u32 flags, u16 len, const void *data)
113{
114 struct iwl_host_cmd cmd = {
115 .id = id,
116 .len = { len, },
117 .data = { data, },
118 .flags = flags,
119 };
120
121 return iwl_mvm_send_cmd(mvm, &cmd);
122}
123
124/*
Sara Sharon0d365ae2015-03-31 12:24:05 +0300125 * We assume that the caller set the status to the success value
Johannes Berg8ca151b2013-01-24 14:25:36 +0100126 */
127int iwl_mvm_send_cmd_status(struct iwl_mvm *mvm, struct iwl_host_cmd *cmd,
128 u32 *status)
129{
130 struct iwl_rx_packet *pkt;
131 struct iwl_cmd_response *resp;
132 int ret, resp_len;
133
134 lockdep_assert_held(&mvm->mutex);
135
Johannes Bergdebff612013-05-14 13:53:45 +0200136#if defined(CONFIG_IWLWIFI_DEBUGFS) && defined(CONFIG_PM_SLEEP)
137 if (WARN_ON(mvm->d3_test_active))
138 return -EIO;
139#endif
140
Johannes Berg8ca151b2013-01-24 14:25:36 +0100141 /*
142 * Only synchronous commands can wait for status,
143 * we use WANT_SKB so the caller can't.
144 */
145 if (WARN_ONCE(cmd->flags & (CMD_ASYNC | CMD_WANT_SKB),
146 "cmd flags %x", cmd->flags))
147 return -EINVAL;
148
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300149 cmd->flags |= CMD_WANT_SKB;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100150
151 ret = iwl_trans_send_cmd(mvm->trans, cmd);
152 if (ret == -ERFKILL) {
153 /*
154 * The command failed because of RFKILL, don't update
155 * the status, leave it as success and return 0.
156 */
157 return 0;
158 } else if (ret) {
159 return ret;
160 }
161
162 pkt = cmd->resp_pkt;
163 /* Can happen if RFKILL is asserted */
164 if (!pkt) {
165 ret = 0;
166 goto out_free_resp;
167 }
168
169 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
170 ret = -EIO;
171 goto out_free_resp;
172 }
173
Johannes Berg65b30342014-01-08 13:16:33 +0100174 resp_len = iwl_rx_packet_payload_len(pkt);
175 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100176 ret = -EIO;
177 goto out_free_resp;
178 }
179
180 resp = (void *)pkt->data;
181 *status = le32_to_cpu(resp->status);
182 out_free_resp:
183 iwl_free_resp(cmd);
184 return ret;
185}
186
187/*
188 * We assume that the caller set the status to the sucess value
189 */
190int iwl_mvm_send_cmd_pdu_status(struct iwl_mvm *mvm, u8 id, u16 len,
191 const void *data, u32 *status)
192{
193 struct iwl_host_cmd cmd = {
194 .id = id,
195 .len = { len, },
196 .data = { data, },
197 };
198
199 return iwl_mvm_send_cmd_status(mvm, &cmd, status);
200}
201
202#define IWL_DECLARE_RATE_INFO(r) \
203 [IWL_RATE_##r##M_INDEX] = IWL_RATE_##r##M_PLCP
204
205/*
206 * Translate from fw_rate_index (IWL_RATE_XXM_INDEX) to PLCP
207 */
208static const u8 fw_rate_idx_to_plcp[IWL_RATE_COUNT] = {
209 IWL_DECLARE_RATE_INFO(1),
210 IWL_DECLARE_RATE_INFO(2),
211 IWL_DECLARE_RATE_INFO(5),
212 IWL_DECLARE_RATE_INFO(11),
213 IWL_DECLARE_RATE_INFO(6),
214 IWL_DECLARE_RATE_INFO(9),
215 IWL_DECLARE_RATE_INFO(12),
216 IWL_DECLARE_RATE_INFO(18),
217 IWL_DECLARE_RATE_INFO(24),
218 IWL_DECLARE_RATE_INFO(36),
219 IWL_DECLARE_RATE_INFO(48),
220 IWL_DECLARE_RATE_INFO(54),
221};
222
223int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
224 enum ieee80211_band band)
225{
226 int rate = rate_n_flags & RATE_LEGACY_RATE_MSK;
227 int idx;
228 int band_offset = 0;
229
230 /* Legacy rate format, search for match in table */
231 if (band == IEEE80211_BAND_5GHZ)
232 band_offset = IWL_FIRST_OFDM_RATE;
233 for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
234 if (fw_rate_idx_to_plcp[idx] == rate)
235 return idx - band_offset;
236
237 return -1;
238}
239
240u8 iwl_mvm_mac80211_idx_to_hwrate(int rate_idx)
241{
242 /* Get PLCP rate for tx_cmd->rate_n_flags */
243 return fw_rate_idx_to_plcp[rate_idx];
244}
245
Johannes Berg04168412015-06-23 21:22:09 +0200246void iwl_mvm_rx_fw_error(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100247{
248 struct iwl_rx_packet *pkt = rxb_addr(rxb);
249 struct iwl_error_resp *err_resp = (void *)pkt->data;
250
251 IWL_ERR(mvm, "FW Error notification: type 0x%08X cmd_id 0x%02X\n",
252 le32_to_cpu(err_resp->error_type), err_resp->cmd_id);
253 IWL_ERR(mvm, "FW Error notification: seq 0x%04X service 0x%08X\n",
254 le16_to_cpu(err_resp->bad_cmd_seq_num),
255 le32_to_cpu(err_resp->error_service));
256 IWL_ERR(mvm, "FW Error notification: timestamp 0x%16llX\n",
257 le64_to_cpu(err_resp->timestamp));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100258}
259
260/*
261 * Returns the first antenna as ANT_[ABC], as defined in iwl-config.h.
262 * The parameter should also be a combination of ANT_[ABC].
263 */
264u8 first_antenna(u8 mask)
265{
266 BUILD_BUG_ON(ANT_A != BIT(0)); /* using ffs is wrong if not */
Emmanuel Grumbachd7dad552013-04-14 14:41:03 +0300267 if (WARN_ON_ONCE(!mask)) /* ffs will return 0 if mask is zeroed */
268 return BIT(0);
269 return BIT(ffs(mask) - 1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100270}
271
272/*
273 * Toggles between TX antennas to send the probe request on.
274 * Receives the bitmask of valid TX antennas and the *index* used
275 * for the last TX, and returns the next valid *index* to use.
276 * In order to set it in the tx_cmd, must do BIT(idx).
277 */
278u8 iwl_mvm_next_antenna(struct iwl_mvm *mvm, u8 valid, u8 last_idx)
279{
280 u8 ind = last_idx;
281 int i;
282
283 for (i = 0; i < RATE_MCS_ANT_NUM; i++) {
284 ind = (ind + 1) % RATE_MCS_ANT_NUM;
285 if (valid & BIT(ind))
286 return ind;
287 }
288
289 WARN_ONCE(1, "Failed to toggle between antennas 0x%x", valid);
290 return last_idx;
291}
292
Johannes Berge5209262014-01-20 23:38:59 +0100293static const struct {
294 const char *name;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100295 u8 num;
296} advanced_lookup[] = {
297 { "NMI_INTERRUPT_WDG", 0x34 },
298 { "SYSASSERT", 0x35 },
299 { "UCODE_VERSION_MISMATCH", 0x37 },
300 { "BAD_COMMAND", 0x38 },
301 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
302 { "FATAL_ERROR", 0x3D },
303 { "NMI_TRM_HW_ERR", 0x46 },
304 { "NMI_INTERRUPT_TRM", 0x4C },
305 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
306 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
307 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
308 { "NMI_INTERRUPT_HOST", 0x66 },
309 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
310 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
311 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
312 { "ADVANCED_SYSASSERT", 0 },
313};
314
315static const char *desc_lookup(u32 num)
316{
317 int i;
318
319 for (i = 0; i < ARRAY_SIZE(advanced_lookup) - 1; i++)
320 if (advanced_lookup[i].num == num)
321 return advanced_lookup[i].name;
322
323 /* No entry matches 'num', so it is the last: ADVANCED_SYSASSERT */
324 return advanced_lookup[i].name;
325}
326
327/*
328 * Note: This structure is read from the device with IO accesses,
329 * and the reading already does the endian conversion. As it is
330 * read with u32-sized accesses, any members with a different size
331 * need to be ordered correctly though!
332 */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200333struct iwl_error_event_table_v1 {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100334 u32 valid; /* (nonzero) valid, (0) log is empty */
335 u32 error_id; /* type of error */
336 u32 pc; /* program counter */
337 u32 blink1; /* branch link */
338 u32 blink2; /* branch link */
339 u32 ilink1; /* interrupt link */
340 u32 ilink2; /* interrupt link */
341 u32 data1; /* error-specific data */
342 u32 data2; /* error-specific data */
343 u32 data3; /* error-specific data */
344 u32 bcon_time; /* beacon timer */
345 u32 tsf_low; /* network timestamp function timer */
346 u32 tsf_hi; /* network timestamp function timer */
347 u32 gp1; /* GP1 timer register */
348 u32 gp2; /* GP2 timer register */
349 u32 gp3; /* GP3 timer register */
350 u32 ucode_ver; /* uCode version */
351 u32 hw_ver; /* HW Silicon version */
352 u32 brd_ver; /* HW board version */
353 u32 log_pc; /* log program counter */
354 u32 frame_ptr; /* frame pointer */
355 u32 stack_ptr; /* stack pointer */
356 u32 hcmd; /* last host command header */
357 u32 isr0; /* isr status register LMPM_NIC_ISR0:
358 * rxtx_flag */
359 u32 isr1; /* isr status register LMPM_NIC_ISR1:
360 * host_flag */
361 u32 isr2; /* isr status register LMPM_NIC_ISR2:
362 * enc_flag */
363 u32 isr3; /* isr status register LMPM_NIC_ISR3:
364 * time_flag */
365 u32 isr4; /* isr status register LMPM_NIC_ISR4:
366 * wico interrupt */
367 u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
368 u32 wait_event; /* wait event() caller address */
369 u32 l2p_control; /* L2pControlField */
370 u32 l2p_duration; /* L2pDurationField */
371 u32 l2p_mhvalid; /* L2pMhValidBits */
372 u32 l2p_addr_match; /* L2pAddrMatchStat */
373 u32 lmpm_pmg_sel; /* indicate which clocks are turned on
374 * (LMPM_PMG_SEL) */
375 u32 u_timestamp; /* indicate when the date and time of the
376 * compilation */
377 u32 flow_handler; /* FH read/write pointers, RX credit */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200378} __packed /* LOG_ERROR_TABLE_API_S_VER_1 */;
379
380struct iwl_error_event_table {
381 u32 valid; /* (nonzero) valid, (0) log is empty */
382 u32 error_id; /* type of error */
383 u32 pc; /* program counter */
384 u32 blink1; /* branch link */
385 u32 blink2; /* branch link */
386 u32 ilink1; /* interrupt link */
387 u32 ilink2; /* interrupt link */
388 u32 data1; /* error-specific data */
389 u32 data2; /* error-specific data */
390 u32 data3; /* error-specific data */
391 u32 bcon_time; /* beacon timer */
392 u32 tsf_low; /* network timestamp function timer */
393 u32 tsf_hi; /* network timestamp function timer */
394 u32 gp1; /* GP1 timer register */
395 u32 gp2; /* GP2 timer register */
396 u32 gp3; /* GP3 timer register */
397 u32 major; /* uCode version major */
398 u32 minor; /* uCode version minor */
399 u32 hw_ver; /* HW Silicon version */
400 u32 brd_ver; /* HW board version */
401 u32 log_pc; /* log program counter */
402 u32 frame_ptr; /* frame pointer */
403 u32 stack_ptr; /* stack pointer */
404 u32 hcmd; /* last host command header */
405 u32 isr0; /* isr status register LMPM_NIC_ISR0:
406 * rxtx_flag */
407 u32 isr1; /* isr status register LMPM_NIC_ISR1:
408 * host_flag */
409 u32 isr2; /* isr status register LMPM_NIC_ISR2:
410 * enc_flag */
411 u32 isr3; /* isr status register LMPM_NIC_ISR3:
412 * time_flag */
413 u32 isr4; /* isr status register LMPM_NIC_ISR4:
414 * wico interrupt */
415 u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
416 u32 wait_event; /* wait event() caller address */
417 u32 l2p_control; /* L2pControlField */
418 u32 l2p_duration; /* L2pDurationField */
419 u32 l2p_mhvalid; /* L2pMhValidBits */
420 u32 l2p_addr_match; /* L2pAddrMatchStat */
421 u32 lmpm_pmg_sel; /* indicate which clocks are turned on
422 * (LMPM_PMG_SEL) */
423 u32 u_timestamp; /* indicate when the date and time of the
424 * compilation */
425 u32 flow_handler; /* FH read/write pointers, RX credit */
426} __packed /* LOG_ERROR_TABLE_API_S_VER_2 */;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100427
Eran Harary01a9ca52014-02-03 09:29:57 +0200428/*
429 * UMAC error struct - relevant starting from family 8000 chip.
430 * Note: This structure is read from the device with IO accesses,
431 * and the reading already does the endian conversion. As it is
432 * read with u32-sized accesses, any members with a different size
433 * need to be ordered correctly though!
434 */
435struct iwl_umac_error_event_table {
436 u32 valid; /* (nonzero) valid, (0) log is empty */
437 u32 error_id; /* type of error */
Eran Harary01a9ca52014-02-03 09:29:57 +0200438 u32 blink1; /* branch link */
439 u32 blink2; /* branch link */
440 u32 ilink1; /* interrupt link */
441 u32 ilink2; /* interrupt link */
442 u32 data1; /* error-specific data */
443 u32 data2; /* error-specific data */
Eran Harary32be1a82014-08-24 08:02:46 +0300444 u32 data3; /* error-specific data */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200445 u32 umac_major;
446 u32 umac_minor;
Eran Harary32be1a82014-08-24 08:02:46 +0300447 u32 frame_pointer; /* core register 27*/
448 u32 stack_pointer; /* core register 28 */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200449 u32 cmd_header; /* latest host cmd sent to UMAC */
Eran Harary32be1a82014-08-24 08:02:46 +0300450 u32 nic_isr_pref; /* ISR status register */
Eran Harary01a9ca52014-02-03 09:29:57 +0200451} __packed;
452
Johannes Berg8ca151b2013-01-24 14:25:36 +0100453#define ERROR_START_OFFSET (1 * sizeof(u32))
454#define ERROR_ELEM_SIZE (7 * sizeof(u32))
455
Eran Harary01a9ca52014-02-03 09:29:57 +0200456static void iwl_mvm_dump_umac_error_log(struct iwl_mvm *mvm)
457{
458 struct iwl_trans *trans = mvm->trans;
459 struct iwl_umac_error_event_table table;
460 u32 base;
461
462 base = mvm->umac_error_event_table;
463
Eran Harary32be1a82014-08-24 08:02:46 +0300464 if (base < 0x800000) {
Eran Harary01a9ca52014-02-03 09:29:57 +0200465 IWL_ERR(mvm,
466 "Not valid error log pointer 0x%08X for %s uCode\n",
467 base,
468 (mvm->cur_ucode == IWL_UCODE_INIT)
469 ? "Init" : "RT");
470 return;
471 }
472
473 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
474
475 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
476 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
477 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
478 mvm->status, table.valid);
479 }
480
Johannes Bergedbad052015-01-28 23:43:24 +0100481 IWL_ERR(mvm, "0x%08X | %s\n", table.error_id,
Eran Harary01a9ca52014-02-03 09:29:57 +0200482 desc_lookup(table.error_id));
Eran Harary01a9ca52014-02-03 09:29:57 +0200483 IWL_ERR(mvm, "0x%08X | umac branchlink1\n", table.blink1);
484 IWL_ERR(mvm, "0x%08X | umac branchlink2\n", table.blink2);
485 IWL_ERR(mvm, "0x%08X | umac interruptlink1\n", table.ilink1);
486 IWL_ERR(mvm, "0x%08X | umac interruptlink2\n", table.ilink2);
487 IWL_ERR(mvm, "0x%08X | umac data1\n", table.data1);
488 IWL_ERR(mvm, "0x%08X | umac data2\n", table.data2);
Eran Harary32be1a82014-08-24 08:02:46 +0300489 IWL_ERR(mvm, "0x%08X | umac data3\n", table.data3);
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200490 IWL_ERR(mvm, "0x%08X | umac major\n", table.umac_major);
491 IWL_ERR(mvm, "0x%08X | umac minor\n", table.umac_minor);
Eran Harary32be1a82014-08-24 08:02:46 +0300492 IWL_ERR(mvm, "0x%08X | frame pointer\n", table.frame_pointer);
493 IWL_ERR(mvm, "0x%08X | stack pointer\n", table.stack_pointer);
494 IWL_ERR(mvm, "0x%08X | last host cmd\n", table.cmd_header);
495 IWL_ERR(mvm, "0x%08X | isr status reg\n", table.nic_isr_pref);
Eran Harary01a9ca52014-02-03 09:29:57 +0200496}
497
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200498static void iwl_mvm_dump_nic_error_log_old(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100499{
500 struct iwl_trans *trans = mvm->trans;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200501 struct iwl_error_event_table_v1 table;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100502 u32 base;
503
504 base = mvm->error_event_table;
505 if (mvm->cur_ucode == IWL_UCODE_INIT) {
506 if (!base)
507 base = mvm->fw->init_errlog_ptr;
508 } else {
509 if (!base)
510 base = mvm->fw->inst_errlog_ptr;
511 }
512
Ariej Marjieh15ef4132013-12-31 18:52:13 +0200513 if (base < 0x800000) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100514 IWL_ERR(mvm,
515 "Not valid error log pointer 0x%08X for %s uCode\n",
516 base,
517 (mvm->cur_ucode == IWL_UCODE_INIT)
518 ? "Init" : "RT");
519 return;
520 }
521
522 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
523
524 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
525 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
526 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
527 mvm->status, table.valid);
528 }
529
Emmanuel Grumbach7b445f32014-03-20 11:08:19 +0200530 /* Do not change this output - scripts rely on it */
531
Emmanuel Grumbachb900a872014-01-23 11:55:16 +0200532 IWL_ERR(mvm, "Loaded firmware version: %s\n", mvm->fw->fw_version);
533
Johannes Berg8ca151b2013-01-24 14:25:36 +0100534 trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low,
535 table.data1, table.data2, table.data3,
536 table.blink1, table.blink2, table.ilink1,
537 table.ilink2, table.bcon_time, table.gp1,
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200538 table.gp2, table.gp3, table.ucode_ver, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100539 table.hw_ver, table.brd_ver);
540 IWL_ERR(mvm, "0x%08X | %-28s\n", table.error_id,
541 desc_lookup(table.error_id));
542 IWL_ERR(mvm, "0x%08X | uPc\n", table.pc);
543 IWL_ERR(mvm, "0x%08X | branchlink1\n", table.blink1);
544 IWL_ERR(mvm, "0x%08X | branchlink2\n", table.blink2);
545 IWL_ERR(mvm, "0x%08X | interruptlink1\n", table.ilink1);
546 IWL_ERR(mvm, "0x%08X | interruptlink2\n", table.ilink2);
547 IWL_ERR(mvm, "0x%08X | data1\n", table.data1);
548 IWL_ERR(mvm, "0x%08X | data2\n", table.data2);
549 IWL_ERR(mvm, "0x%08X | data3\n", table.data3);
550 IWL_ERR(mvm, "0x%08X | beacon time\n", table.bcon_time);
551 IWL_ERR(mvm, "0x%08X | tsf low\n", table.tsf_low);
552 IWL_ERR(mvm, "0x%08X | tsf hi\n", table.tsf_hi);
553 IWL_ERR(mvm, "0x%08X | time gp1\n", table.gp1);
554 IWL_ERR(mvm, "0x%08X | time gp2\n", table.gp2);
555 IWL_ERR(mvm, "0x%08X | time gp3\n", table.gp3);
556 IWL_ERR(mvm, "0x%08X | uCode version\n", table.ucode_ver);
557 IWL_ERR(mvm, "0x%08X | hw version\n", table.hw_ver);
558 IWL_ERR(mvm, "0x%08X | board version\n", table.brd_ver);
559 IWL_ERR(mvm, "0x%08X | hcmd\n", table.hcmd);
560 IWL_ERR(mvm, "0x%08X | isr0\n", table.isr0);
561 IWL_ERR(mvm, "0x%08X | isr1\n", table.isr1);
562 IWL_ERR(mvm, "0x%08X | isr2\n", table.isr2);
563 IWL_ERR(mvm, "0x%08X | isr3\n", table.isr3);
564 IWL_ERR(mvm, "0x%08X | isr4\n", table.isr4);
565 IWL_ERR(mvm, "0x%08X | isr_pref\n", table.isr_pref);
566 IWL_ERR(mvm, "0x%08X | wait_event\n", table.wait_event);
567 IWL_ERR(mvm, "0x%08X | l2p_control\n", table.l2p_control);
568 IWL_ERR(mvm, "0x%08X | l2p_duration\n", table.l2p_duration);
569 IWL_ERR(mvm, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
570 IWL_ERR(mvm, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
571 IWL_ERR(mvm, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
572 IWL_ERR(mvm, "0x%08X | timestamp\n", table.u_timestamp);
573 IWL_ERR(mvm, "0x%08X | flow_handler\n", table.flow_handler);
Eran Harary01a9ca52014-02-03 09:29:57 +0200574
575 if (mvm->support_umac_log)
576 iwl_mvm_dump_umac_error_log(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100577}
578
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200579void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm)
580{
581 struct iwl_trans *trans = mvm->trans;
582 struct iwl_error_event_table table;
583 u32 base;
584
Johannes Berg859d9142015-06-01 17:11:11 +0200585 if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION)) {
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200586 iwl_mvm_dump_nic_error_log_old(mvm);
587 return;
588 }
589
590 base = mvm->error_event_table;
591 if (mvm->cur_ucode == IWL_UCODE_INIT) {
592 if (!base)
593 base = mvm->fw->init_errlog_ptr;
594 } else {
595 if (!base)
596 base = mvm->fw->inst_errlog_ptr;
597 }
598
599 if (base < 0x800000) {
600 IWL_ERR(mvm,
601 "Not valid error log pointer 0x%08X for %s uCode\n",
602 base,
603 (mvm->cur_ucode == IWL_UCODE_INIT)
604 ? "Init" : "RT");
605 return;
606 }
607
608 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
609
610 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
611 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
612 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
613 mvm->status, table.valid);
614 }
615
616 /* Do not change this output - scripts rely on it */
617
618 IWL_ERR(mvm, "Loaded firmware version: %s\n", mvm->fw->fw_version);
619
620 trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low,
621 table.data1, table.data2, table.data3,
622 table.blink1, table.blink2, table.ilink1,
623 table.ilink2, table.bcon_time, table.gp1,
624 table.gp2, table.gp3, table.major,
625 table.minor, table.hw_ver, table.brd_ver);
626 IWL_ERR(mvm, "0x%08X | %-28s\n", table.error_id,
627 desc_lookup(table.error_id));
628 IWL_ERR(mvm, "0x%08X | uPc\n", table.pc);
629 IWL_ERR(mvm, "0x%08X | branchlink1\n", table.blink1);
630 IWL_ERR(mvm, "0x%08X | branchlink2\n", table.blink2);
631 IWL_ERR(mvm, "0x%08X | interruptlink1\n", table.ilink1);
632 IWL_ERR(mvm, "0x%08X | interruptlink2\n", table.ilink2);
633 IWL_ERR(mvm, "0x%08X | data1\n", table.data1);
634 IWL_ERR(mvm, "0x%08X | data2\n", table.data2);
635 IWL_ERR(mvm, "0x%08X | data3\n", table.data3);
636 IWL_ERR(mvm, "0x%08X | beacon time\n", table.bcon_time);
637 IWL_ERR(mvm, "0x%08X | tsf low\n", table.tsf_low);
638 IWL_ERR(mvm, "0x%08X | tsf hi\n", table.tsf_hi);
639 IWL_ERR(mvm, "0x%08X | time gp1\n", table.gp1);
640 IWL_ERR(mvm, "0x%08X | time gp2\n", table.gp2);
641 IWL_ERR(mvm, "0x%08X | time gp3\n", table.gp3);
642 IWL_ERR(mvm, "0x%08X | uCode version major\n", table.major);
643 IWL_ERR(mvm, "0x%08X | uCode version minor\n", table.minor);
644 IWL_ERR(mvm, "0x%08X | hw version\n", table.hw_ver);
645 IWL_ERR(mvm, "0x%08X | board version\n", table.brd_ver);
646 IWL_ERR(mvm, "0x%08X | hcmd\n", table.hcmd);
647 IWL_ERR(mvm, "0x%08X | isr0\n", table.isr0);
648 IWL_ERR(mvm, "0x%08X | isr1\n", table.isr1);
649 IWL_ERR(mvm, "0x%08X | isr2\n", table.isr2);
650 IWL_ERR(mvm, "0x%08X | isr3\n", table.isr3);
651 IWL_ERR(mvm, "0x%08X | isr4\n", table.isr4);
652 IWL_ERR(mvm, "0x%08X | isr_pref\n", table.isr_pref);
653 IWL_ERR(mvm, "0x%08X | wait_event\n", table.wait_event);
654 IWL_ERR(mvm, "0x%08X | l2p_control\n", table.l2p_control);
655 IWL_ERR(mvm, "0x%08X | l2p_duration\n", table.l2p_duration);
656 IWL_ERR(mvm, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
657 IWL_ERR(mvm, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
658 IWL_ERR(mvm, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
659 IWL_ERR(mvm, "0x%08X | timestamp\n", table.u_timestamp);
660 IWL_ERR(mvm, "0x%08X | flow_handler\n", table.flow_handler);
661
662 if (mvm->support_umac_log)
663 iwl_mvm_dump_umac_error_log(mvm);
664}
Avri Altman3edf8ff2014-07-30 11:41:01 +0300665void iwl_mvm_enable_txq(struct iwl_mvm *mvm, int queue, u16 ssn,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200666 const struct iwl_trans_txq_scd_cfg *cfg,
667 unsigned int wdg_timeout)
Avri Altman3edf8ff2014-07-30 11:41:01 +0300668{
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200669 struct iwl_scd_txq_cfg_cmd cmd = {
670 .scd_queue = queue,
671 .enable = 1,
672 .window = cfg->frame_limit,
673 .sta_id = cfg->sta_id,
674 .ssn = cpu_to_le16(ssn),
675 .tx_fifo = cfg->fifo,
676 .aggregate = cfg->aggregate,
677 .tid = cfg->tid,
678 };
679
680 if (!iwl_mvm_is_scd_cfg_supported(mvm)) {
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200681 iwl_trans_txq_enable_cfg(mvm->trans, queue, ssn, cfg,
682 wdg_timeout);
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200683 return;
Avri Altman3edf8ff2014-07-30 11:41:01 +0300684 }
685
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200686 iwl_trans_txq_enable_cfg(mvm->trans, queue, ssn, NULL, wdg_timeout);
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200687 WARN(iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, 0, sizeof(cmd), &cmd),
688 "Failed to configure queue %d on FIFO %d\n", queue, cfg->fifo);
Avri Altman3edf8ff2014-07-30 11:41:01 +0300689}
690
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200691void iwl_mvm_disable_txq(struct iwl_mvm *mvm, int queue, u8 flags)
Avri Altman3edf8ff2014-07-30 11:41:01 +0300692{
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200693 struct iwl_scd_txq_cfg_cmd cmd = {
694 .scd_queue = queue,
695 .enable = 0,
696 };
697 int ret;
Avri Altman3edf8ff2014-07-30 11:41:01 +0300698
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200699 if (!iwl_mvm_is_scd_cfg_supported(mvm)) {
700 iwl_trans_txq_disable(mvm->trans, queue, true);
701 return;
Avri Altman3edf8ff2014-07-30 11:41:01 +0300702 }
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200703
704 iwl_trans_txq_disable(mvm->trans, queue, false);
705 ret = iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, flags,
706 sizeof(cmd), &cmd);
707 if (ret)
708 IWL_ERR(mvm, "Failed to disable queue %d (ret=%d)\n",
709 queue, ret);
Avri Altman3edf8ff2014-07-30 11:41:01 +0300710}
711
Johannes Berg8ca151b2013-01-24 14:25:36 +0100712/**
713 * iwl_mvm_send_lq_cmd() - Send link quality command
714 * @init: This command is sent as part of station initialization right
715 * after station has been added.
716 *
717 * The link quality command is sent as the last step of station creation.
718 * This is the special case in which init is set and we call a callback in
719 * this case to clear the state indicating that station creation is in
720 * progress.
721 */
Eyal Shapira9e680942013-11-09 00:16:16 +0200722int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq, bool init)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100723{
724 struct iwl_host_cmd cmd = {
725 .id = LQ_CMD,
726 .len = { sizeof(struct iwl_lq_cmd), },
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300727 .flags = init ? 0 : CMD_ASYNC,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100728 .data = { lq, },
729 };
730
Emmanuel Grumbach881acd82013-03-19 16:16:00 +0200731 if (WARN_ON(lq->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100732 return -EINVAL;
733
Johannes Berg8ca151b2013-01-24 14:25:36 +0100734 return iwl_mvm_send_cmd(mvm, &cmd);
735}
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300736
737/**
Sara Sharon0d365ae2015-03-31 12:24:05 +0300738 * iwl_mvm_update_smps - Get a request to change the SMPS mode
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300739 * @req_type: The part of the driver who call for a change.
740 * @smps_requests: The request to change the SMPS mode.
741 *
742 * Get a requst to change the SMPS mode,
743 * and change it according to all other requests in the driver.
744 */
745void iwl_mvm_update_smps(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
746 enum iwl_mvm_smps_type_request req_type,
747 enum ieee80211_smps_mode smps_request)
748{
749 struct iwl_mvm_vif *mvmvif;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200750 enum ieee80211_smps_mode smps_mode;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300751 int i;
752
753 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach710e4d02013-11-28 15:25:21 +0200754
755 /* SMPS is irrelevant for NICs that don't have at least 2 RX antenna */
Moshe Harela0544272014-12-08 21:13:14 +0200756 if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
Emmanuel Grumbach710e4d02013-11-28 15:25:21 +0200757 return;
758
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200759 if (vif->type == NL80211_IFTYPE_AP)
760 smps_mode = IEEE80211_SMPS_OFF;
761 else
762 smps_mode = IEEE80211_SMPS_AUTOMATIC;
763
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300764 mvmvif = iwl_mvm_vif_from_mac80211(vif);
765 mvmvif->smps_requests[req_type] = smps_request;
766 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
767 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_STATIC) {
768 smps_mode = IEEE80211_SMPS_STATIC;
769 break;
770 }
771 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_DYNAMIC)
772 smps_mode = IEEE80211_SMPS_DYNAMIC;
773 }
774
775 ieee80211_request_smps(vif, smps_mode);
776}
Johannes Berga21d7bc2013-11-12 17:30:52 +0100777
Johannes Berg33cef922015-01-21 21:41:29 +0100778int iwl_mvm_request_statistics(struct iwl_mvm *mvm, bool clear)
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100779{
Johannes Berg33cef922015-01-21 21:41:29 +0100780 struct iwl_statistics_cmd scmd = {
781 .flags = clear ? cpu_to_le32(IWL_STATISTICS_FLG_CLEAR) : 0,
782 };
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100783 struct iwl_host_cmd cmd = {
784 .id = STATISTICS_CMD,
785 .len[0] = sizeof(scmd),
786 .data[0] = &scmd,
787 .flags = CMD_WANT_SKB,
788 };
789 int ret;
790
791 ret = iwl_mvm_send_cmd(mvm, &cmd);
792 if (ret)
793 return ret;
794
795 iwl_mvm_handle_rx_statistics(mvm, cmd.resp_pkt);
796 iwl_free_resp(&cmd);
797
Johannes Berg33cef922015-01-21 21:41:29 +0100798 if (clear)
799 iwl_mvm_accu_radio_stats(mvm);
800
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100801 return 0;
802}
803
804void iwl_mvm_accu_radio_stats(struct iwl_mvm *mvm)
805{
806 mvm->accu_radio_stats.rx_time += mvm->radio_stats.rx_time;
807 mvm->accu_radio_stats.tx_time += mvm->radio_stats.tx_time;
808 mvm->accu_radio_stats.on_time_rf += mvm->radio_stats.on_time_rf;
809 mvm->accu_radio_stats.on_time_scan += mvm->radio_stats.on_time_scan;
810}
811
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300812static void iwl_mvm_diversity_iter(void *_data, u8 *mac,
813 struct ieee80211_vif *vif)
814{
815 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
816 bool *result = _data;
817 int i;
818
819 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
820 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_STATIC ||
821 mvmvif->smps_requests[i] == IEEE80211_SMPS_DYNAMIC)
822 *result = false;
823 }
824}
825
826bool iwl_mvm_rx_diversity_allowed(struct iwl_mvm *mvm)
827{
828 bool result = true;
829
830 lockdep_assert_held(&mvm->mutex);
831
Moshe Harela0544272014-12-08 21:13:14 +0200832 if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300833 return false;
834
Eyal Shapirac93edc62014-12-31 19:30:15 +0200835 if (mvm->cfg->rx_with_siso_diversity)
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300836 return false;
837
838 ieee80211_iterate_active_interfaces_atomic(
839 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
840 iwl_mvm_diversity_iter, &result);
841
842 return result;
843}
844
Johannes Berga21d7bc2013-11-12 17:30:52 +0100845int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
846 bool value)
847{
848 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berge03f9bef2013-11-13 17:16:19 +0100849 int res;
Johannes Berga21d7bc2013-11-12 17:30:52 +0100850
851 lockdep_assert_held(&mvm->mutex);
852
Johannes Berg3510aea2014-03-18 10:21:02 +0100853 if (mvmvif->low_latency == value)
854 return 0;
855
Johannes Berga21d7bc2013-11-12 17:30:52 +0100856 mvmvif->low_latency = value;
857
Emmanuel Grumbach7754ae72015-02-26 15:14:35 +0200858 res = iwl_mvm_update_quotas(mvm, false, NULL);
Johannes Berge03f9bef2013-11-13 17:16:19 +0100859 if (res)
860 return res;
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200861
862 iwl_mvm_bt_coex_vif_change(mvm);
863
Arik Nemtsov999609f2014-05-15 17:31:51 +0300864 return iwl_mvm_power_update_mac(mvm);
Johannes Berga21d7bc2013-11-12 17:30:52 +0100865}
Alexander Bondar50df8a32014-03-12 20:30:51 +0200866
867static void iwl_mvm_ll_iter(void *_data, u8 *mac, struct ieee80211_vif *vif)
868{
869 bool *result = _data;
870
871 if (iwl_mvm_vif_low_latency(iwl_mvm_vif_from_mac80211(vif)))
872 *result = true;
873}
874
875bool iwl_mvm_low_latency(struct iwl_mvm *mvm)
876{
877 bool result = false;
878
879 ieee80211_iterate_active_interfaces_atomic(
880 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
881 iwl_mvm_ll_iter, &result);
882
883 return result;
884}
David Spinadelbd5e4742014-04-24 13:15:29 +0300885
Luciano Coelho7f549e22014-10-02 15:38:04 +0300886struct iwl_bss_iter_data {
887 struct ieee80211_vif *vif;
888 bool error;
889};
890
891static void iwl_mvm_bss_iface_iterator(void *_data, u8 *mac,
892 struct ieee80211_vif *vif)
893{
894 struct iwl_bss_iter_data *data = _data;
895
896 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
897 return;
898
899 if (data->vif) {
900 data->error = true;
901 return;
902 }
903
904 data->vif = vif;
905}
906
907struct ieee80211_vif *iwl_mvm_get_bss_vif(struct iwl_mvm *mvm)
908{
909 struct iwl_bss_iter_data bss_iter_data = {};
910
911 ieee80211_iterate_active_interfaces_atomic(
912 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
913 iwl_mvm_bss_iface_iterator, &bss_iter_data);
914
915 if (bss_iter_data.error) {
916 IWL_ERR(mvm, "More than one managed interface active!\n");
917 return ERR_PTR(-EINVAL);
918 }
919
920 return bss_iter_data.vif;
921}
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +0200922
923unsigned int iwl_mvm_get_wd_timeout(struct iwl_mvm *mvm,
924 struct ieee80211_vif *vif,
925 bool tdls, bool cmd_q)
926{
927 struct iwl_fw_dbg_trigger_tlv *trigger;
928 struct iwl_fw_dbg_trigger_txq_timer *txq_timer;
929 unsigned int default_timeout =
930 cmd_q ? IWL_DEF_WD_TIMEOUT : mvm->cfg->base_params->wd_timeout;
931
932 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS))
933 return iwlmvm_mod_params.tfd_q_hang_detect ?
934 default_timeout : IWL_WATCHDOG_DISABLED;
935
936 trigger = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS);
937 txq_timer = (void *)trigger->data;
938
939 if (tdls)
940 return le32_to_cpu(txq_timer->tdls);
941
942 if (cmd_q)
943 return le32_to_cpu(txq_timer->command_queue);
944
945 if (WARN_ON(!vif))
946 return default_timeout;
947
948 switch (ieee80211_vif_type_p2p(vif)) {
949 case NL80211_IFTYPE_ADHOC:
950 return le32_to_cpu(txq_timer->ibss);
951 case NL80211_IFTYPE_STATION:
952 return le32_to_cpu(txq_timer->bss);
953 case NL80211_IFTYPE_AP:
954 return le32_to_cpu(txq_timer->softap);
955 case NL80211_IFTYPE_P2P_CLIENT:
956 return le32_to_cpu(txq_timer->p2p_client);
957 case NL80211_IFTYPE_P2P_GO:
958 return le32_to_cpu(txq_timer->p2p_go);
959 case NL80211_IFTYPE_P2P_DEVICE:
960 return le32_to_cpu(txq_timer->p2p_device);
961 default:
962 WARN_ON(1);
963 return mvm->cfg->base_params->wd_timeout;
964 }
965}
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300966
967void iwl_mvm_connection_loss(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
968 const char *errmsg)
969{
970 struct iwl_fw_dbg_trigger_tlv *trig;
971 struct iwl_fw_dbg_trigger_mlme *trig_mlme;
972
973 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_MLME))
974 goto out;
975
976 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_MLME);
977 trig_mlme = (void *)trig->data;
978 if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig))
979 goto out;
980
981 if (trig_mlme->stop_connection_loss &&
982 --trig_mlme->stop_connection_loss)
983 goto out;
984
985 iwl_mvm_fw_dbg_collect_trig(mvm, trig, "%s", errmsg);
986
987out:
988 ieee80211_connection_loss(vif);
989}