blob: 06cba97418b3462dab7cfbce5a0ed0b707b022d6 [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
Aviya Erenfeldab021652015-06-09 16:45:52 +0300111int iwl_mvm_send_cmd_pdu(struct iwl_mvm *mvm, u32 id,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100112 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
Johannes Berg65b30342014-01-08 13:16:33 +0100169 resp_len = iwl_rx_packet_payload_len(pkt);
170 if (WARN_ON_ONCE(resp_len != sizeof(*resp))) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100171 ret = -EIO;
172 goto out_free_resp;
173 }
174
175 resp = (void *)pkt->data;
176 *status = le32_to_cpu(resp->status);
177 out_free_resp:
178 iwl_free_resp(cmd);
179 return ret;
180}
181
182/*
183 * We assume that the caller set the status to the sucess value
184 */
Aviya Erenfeldab021652015-06-09 16:45:52 +0300185int iwl_mvm_send_cmd_pdu_status(struct iwl_mvm *mvm, u32 id, u16 len,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100186 const void *data, u32 *status)
187{
188 struct iwl_host_cmd cmd = {
189 .id = id,
190 .len = { len, },
191 .data = { data, },
192 };
193
194 return iwl_mvm_send_cmd_status(mvm, &cmd, status);
195}
196
197#define IWL_DECLARE_RATE_INFO(r) \
198 [IWL_RATE_##r##M_INDEX] = IWL_RATE_##r##M_PLCP
199
200/*
201 * Translate from fw_rate_index (IWL_RATE_XXM_INDEX) to PLCP
202 */
203static const u8 fw_rate_idx_to_plcp[IWL_RATE_COUNT] = {
204 IWL_DECLARE_RATE_INFO(1),
205 IWL_DECLARE_RATE_INFO(2),
206 IWL_DECLARE_RATE_INFO(5),
207 IWL_DECLARE_RATE_INFO(11),
208 IWL_DECLARE_RATE_INFO(6),
209 IWL_DECLARE_RATE_INFO(9),
210 IWL_DECLARE_RATE_INFO(12),
211 IWL_DECLARE_RATE_INFO(18),
212 IWL_DECLARE_RATE_INFO(24),
213 IWL_DECLARE_RATE_INFO(36),
214 IWL_DECLARE_RATE_INFO(48),
215 IWL_DECLARE_RATE_INFO(54),
216};
217
218int iwl_mvm_legacy_rate_to_mac80211_idx(u32 rate_n_flags,
219 enum ieee80211_band band)
220{
221 int rate = rate_n_flags & RATE_LEGACY_RATE_MSK;
222 int idx;
223 int band_offset = 0;
224
225 /* Legacy rate format, search for match in table */
226 if (band == IEEE80211_BAND_5GHZ)
227 band_offset = IWL_FIRST_OFDM_RATE;
228 for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++)
229 if (fw_rate_idx_to_plcp[idx] == rate)
230 return idx - band_offset;
231
232 return -1;
233}
234
235u8 iwl_mvm_mac80211_idx_to_hwrate(int rate_idx)
236{
237 /* Get PLCP rate for tx_cmd->rate_n_flags */
238 return fw_rate_idx_to_plcp[rate_idx];
239}
240
Johannes Berg04168412015-06-23 21:22:09 +0200241void iwl_mvm_rx_fw_error(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100242{
243 struct iwl_rx_packet *pkt = rxb_addr(rxb);
244 struct iwl_error_resp *err_resp = (void *)pkt->data;
245
246 IWL_ERR(mvm, "FW Error notification: type 0x%08X cmd_id 0x%02X\n",
247 le32_to_cpu(err_resp->error_type), err_resp->cmd_id);
248 IWL_ERR(mvm, "FW Error notification: seq 0x%04X service 0x%08X\n",
249 le16_to_cpu(err_resp->bad_cmd_seq_num),
250 le32_to_cpu(err_resp->error_service));
251 IWL_ERR(mvm, "FW Error notification: timestamp 0x%16llX\n",
252 le64_to_cpu(err_resp->timestamp));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100253}
254
255/*
256 * Returns the first antenna as ANT_[ABC], as defined in iwl-config.h.
257 * The parameter should also be a combination of ANT_[ABC].
258 */
259u8 first_antenna(u8 mask)
260{
261 BUILD_BUG_ON(ANT_A != BIT(0)); /* using ffs is wrong if not */
Emmanuel Grumbachd7dad552013-04-14 14:41:03 +0300262 if (WARN_ON_ONCE(!mask)) /* ffs will return 0 if mask is zeroed */
263 return BIT(0);
264 return BIT(ffs(mask) - 1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100265}
266
267/*
268 * Toggles between TX antennas to send the probe request on.
269 * Receives the bitmask of valid TX antennas and the *index* used
270 * for the last TX, and returns the next valid *index* to use.
271 * In order to set it in the tx_cmd, must do BIT(idx).
272 */
273u8 iwl_mvm_next_antenna(struct iwl_mvm *mvm, u8 valid, u8 last_idx)
274{
275 u8 ind = last_idx;
276 int i;
277
278 for (i = 0; i < RATE_MCS_ANT_NUM; i++) {
279 ind = (ind + 1) % RATE_MCS_ANT_NUM;
280 if (valid & BIT(ind))
281 return ind;
282 }
283
284 WARN_ONCE(1, "Failed to toggle between antennas 0x%x", valid);
285 return last_idx;
286}
287
Johannes Berge5209262014-01-20 23:38:59 +0100288static const struct {
289 const char *name;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100290 u8 num;
291} advanced_lookup[] = {
292 { "NMI_INTERRUPT_WDG", 0x34 },
293 { "SYSASSERT", 0x35 },
294 { "UCODE_VERSION_MISMATCH", 0x37 },
295 { "BAD_COMMAND", 0x38 },
296 { "NMI_INTERRUPT_DATA_ACTION_PT", 0x3C },
297 { "FATAL_ERROR", 0x3D },
298 { "NMI_TRM_HW_ERR", 0x46 },
299 { "NMI_INTERRUPT_TRM", 0x4C },
300 { "NMI_INTERRUPT_BREAK_POINT", 0x54 },
301 { "NMI_INTERRUPT_WDG_RXF_FULL", 0x5C },
302 { "NMI_INTERRUPT_WDG_NO_RBD_RXF_FULL", 0x64 },
303 { "NMI_INTERRUPT_HOST", 0x66 },
304 { "NMI_INTERRUPT_ACTION_PT", 0x7C },
305 { "NMI_INTERRUPT_UNKNOWN", 0x84 },
306 { "NMI_INTERRUPT_INST_ACTION_PT", 0x86 },
307 { "ADVANCED_SYSASSERT", 0 },
308};
309
310static const char *desc_lookup(u32 num)
311{
312 int i;
313
314 for (i = 0; i < ARRAY_SIZE(advanced_lookup) - 1; i++)
315 if (advanced_lookup[i].num == num)
316 return advanced_lookup[i].name;
317
318 /* No entry matches 'num', so it is the last: ADVANCED_SYSASSERT */
319 return advanced_lookup[i].name;
320}
321
322/*
323 * Note: This structure is read from the device with IO accesses,
324 * and the reading already does the endian conversion. As it is
325 * read with u32-sized accesses, any members with a different size
326 * need to be ordered correctly though!
327 */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200328struct iwl_error_event_table_v1 {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100329 u32 valid; /* (nonzero) valid, (0) log is empty */
330 u32 error_id; /* type of error */
331 u32 pc; /* program counter */
332 u32 blink1; /* branch link */
333 u32 blink2; /* branch link */
334 u32 ilink1; /* interrupt link */
335 u32 ilink2; /* interrupt link */
336 u32 data1; /* error-specific data */
337 u32 data2; /* error-specific data */
338 u32 data3; /* error-specific data */
339 u32 bcon_time; /* beacon timer */
340 u32 tsf_low; /* network timestamp function timer */
341 u32 tsf_hi; /* network timestamp function timer */
342 u32 gp1; /* GP1 timer register */
343 u32 gp2; /* GP2 timer register */
344 u32 gp3; /* GP3 timer register */
345 u32 ucode_ver; /* uCode version */
346 u32 hw_ver; /* HW Silicon version */
347 u32 brd_ver; /* HW board version */
348 u32 log_pc; /* log program counter */
349 u32 frame_ptr; /* frame pointer */
350 u32 stack_ptr; /* stack pointer */
351 u32 hcmd; /* last host command header */
352 u32 isr0; /* isr status register LMPM_NIC_ISR0:
353 * rxtx_flag */
354 u32 isr1; /* isr status register LMPM_NIC_ISR1:
355 * host_flag */
356 u32 isr2; /* isr status register LMPM_NIC_ISR2:
357 * enc_flag */
358 u32 isr3; /* isr status register LMPM_NIC_ISR3:
359 * time_flag */
360 u32 isr4; /* isr status register LMPM_NIC_ISR4:
361 * wico interrupt */
362 u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
363 u32 wait_event; /* wait event() caller address */
364 u32 l2p_control; /* L2pControlField */
365 u32 l2p_duration; /* L2pDurationField */
366 u32 l2p_mhvalid; /* L2pMhValidBits */
367 u32 l2p_addr_match; /* L2pAddrMatchStat */
368 u32 lmpm_pmg_sel; /* indicate which clocks are turned on
369 * (LMPM_PMG_SEL) */
370 u32 u_timestamp; /* indicate when the date and time of the
371 * compilation */
372 u32 flow_handler; /* FH read/write pointers, RX credit */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200373} __packed /* LOG_ERROR_TABLE_API_S_VER_1 */;
374
375struct iwl_error_event_table {
376 u32 valid; /* (nonzero) valid, (0) log is empty */
377 u32 error_id; /* type of error */
378 u32 pc; /* program counter */
379 u32 blink1; /* branch link */
380 u32 blink2; /* branch link */
381 u32 ilink1; /* interrupt link */
382 u32 ilink2; /* interrupt link */
383 u32 data1; /* error-specific data */
384 u32 data2; /* error-specific data */
385 u32 data3; /* error-specific data */
386 u32 bcon_time; /* beacon timer */
387 u32 tsf_low; /* network timestamp function timer */
388 u32 tsf_hi; /* network timestamp function timer */
389 u32 gp1; /* GP1 timer register */
390 u32 gp2; /* GP2 timer register */
391 u32 gp3; /* GP3 timer register */
392 u32 major; /* uCode version major */
393 u32 minor; /* uCode version minor */
394 u32 hw_ver; /* HW Silicon version */
395 u32 brd_ver; /* HW board version */
396 u32 log_pc; /* log program counter */
397 u32 frame_ptr; /* frame pointer */
398 u32 stack_ptr; /* stack pointer */
399 u32 hcmd; /* last host command header */
400 u32 isr0; /* isr status register LMPM_NIC_ISR0:
401 * rxtx_flag */
402 u32 isr1; /* isr status register LMPM_NIC_ISR1:
403 * host_flag */
404 u32 isr2; /* isr status register LMPM_NIC_ISR2:
405 * enc_flag */
406 u32 isr3; /* isr status register LMPM_NIC_ISR3:
407 * time_flag */
408 u32 isr4; /* isr status register LMPM_NIC_ISR4:
409 * wico interrupt */
410 u32 isr_pref; /* isr status register LMPM_NIC_PREF_STAT */
411 u32 wait_event; /* wait event() caller address */
412 u32 l2p_control; /* L2pControlField */
413 u32 l2p_duration; /* L2pDurationField */
414 u32 l2p_mhvalid; /* L2pMhValidBits */
415 u32 l2p_addr_match; /* L2pAddrMatchStat */
416 u32 lmpm_pmg_sel; /* indicate which clocks are turned on
417 * (LMPM_PMG_SEL) */
418 u32 u_timestamp; /* indicate when the date and time of the
419 * compilation */
420 u32 flow_handler; /* FH read/write pointers, RX credit */
421} __packed /* LOG_ERROR_TABLE_API_S_VER_2 */;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100422
Eran Harary01a9ca52014-02-03 09:29:57 +0200423/*
424 * UMAC error struct - relevant starting from family 8000 chip.
425 * Note: This structure is read from the device with IO accesses,
426 * and the reading already does the endian conversion. As it is
427 * read with u32-sized accesses, any members with a different size
428 * need to be ordered correctly though!
429 */
430struct iwl_umac_error_event_table {
431 u32 valid; /* (nonzero) valid, (0) log is empty */
432 u32 error_id; /* type of error */
Eran Harary01a9ca52014-02-03 09:29:57 +0200433 u32 blink1; /* branch link */
434 u32 blink2; /* branch link */
435 u32 ilink1; /* interrupt link */
436 u32 ilink2; /* interrupt link */
437 u32 data1; /* error-specific data */
438 u32 data2; /* error-specific data */
Eran Harary32be1a82014-08-24 08:02:46 +0300439 u32 data3; /* error-specific data */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200440 u32 umac_major;
441 u32 umac_minor;
Eran Harary32be1a82014-08-24 08:02:46 +0300442 u32 frame_pointer; /* core register 27*/
443 u32 stack_pointer; /* core register 28 */
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200444 u32 cmd_header; /* latest host cmd sent to UMAC */
Eran Harary32be1a82014-08-24 08:02:46 +0300445 u32 nic_isr_pref; /* ISR status register */
Eran Harary01a9ca52014-02-03 09:29:57 +0200446} __packed;
447
Johannes Berg8ca151b2013-01-24 14:25:36 +0100448#define ERROR_START_OFFSET (1 * sizeof(u32))
449#define ERROR_ELEM_SIZE (7 * sizeof(u32))
450
Eran Harary01a9ca52014-02-03 09:29:57 +0200451static void iwl_mvm_dump_umac_error_log(struct iwl_mvm *mvm)
452{
453 struct iwl_trans *trans = mvm->trans;
454 struct iwl_umac_error_event_table table;
455 u32 base;
456
457 base = mvm->umac_error_event_table;
458
Eran Harary32be1a82014-08-24 08:02:46 +0300459 if (base < 0x800000) {
Eran Harary01a9ca52014-02-03 09:29:57 +0200460 IWL_ERR(mvm,
461 "Not valid error log pointer 0x%08X for %s uCode\n",
462 base,
463 (mvm->cur_ucode == IWL_UCODE_INIT)
464 ? "Init" : "RT");
465 return;
466 }
467
468 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
469
470 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
471 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
472 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
473 mvm->status, table.valid);
474 }
475
Johannes Bergedbad052015-01-28 23:43:24 +0100476 IWL_ERR(mvm, "0x%08X | %s\n", table.error_id,
Eran Harary01a9ca52014-02-03 09:29:57 +0200477 desc_lookup(table.error_id));
Eran Harary01a9ca52014-02-03 09:29:57 +0200478 IWL_ERR(mvm, "0x%08X | umac branchlink1\n", table.blink1);
479 IWL_ERR(mvm, "0x%08X | umac branchlink2\n", table.blink2);
480 IWL_ERR(mvm, "0x%08X | umac interruptlink1\n", table.ilink1);
481 IWL_ERR(mvm, "0x%08X | umac interruptlink2\n", table.ilink2);
482 IWL_ERR(mvm, "0x%08X | umac data1\n", table.data1);
483 IWL_ERR(mvm, "0x%08X | umac data2\n", table.data2);
Eran Harary32be1a82014-08-24 08:02:46 +0300484 IWL_ERR(mvm, "0x%08X | umac data3\n", table.data3);
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200485 IWL_ERR(mvm, "0x%08X | umac major\n", table.umac_major);
486 IWL_ERR(mvm, "0x%08X | umac minor\n", table.umac_minor);
Eran Harary32be1a82014-08-24 08:02:46 +0300487 IWL_ERR(mvm, "0x%08X | frame pointer\n", table.frame_pointer);
488 IWL_ERR(mvm, "0x%08X | stack pointer\n", table.stack_pointer);
489 IWL_ERR(mvm, "0x%08X | last host cmd\n", table.cmd_header);
490 IWL_ERR(mvm, "0x%08X | isr status reg\n", table.nic_isr_pref);
Eran Harary01a9ca52014-02-03 09:29:57 +0200491}
492
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200493static void iwl_mvm_dump_nic_error_log_old(struct iwl_mvm *mvm)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100494{
495 struct iwl_trans *trans = mvm->trans;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200496 struct iwl_error_event_table_v1 table;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100497 u32 base;
498
499 base = mvm->error_event_table;
500 if (mvm->cur_ucode == IWL_UCODE_INIT) {
501 if (!base)
502 base = mvm->fw->init_errlog_ptr;
503 } else {
504 if (!base)
505 base = mvm->fw->inst_errlog_ptr;
506 }
507
Ariej Marjieh15ef4132013-12-31 18:52:13 +0200508 if (base < 0x800000) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100509 IWL_ERR(mvm,
510 "Not valid error log pointer 0x%08X for %s uCode\n",
511 base,
512 (mvm->cur_ucode == IWL_UCODE_INIT)
513 ? "Init" : "RT");
514 return;
515 }
516
517 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
518
519 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
520 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
521 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
522 mvm->status, table.valid);
523 }
524
Emmanuel Grumbach7b445f32014-03-20 11:08:19 +0200525 /* Do not change this output - scripts rely on it */
526
Emmanuel Grumbachb900a872014-01-23 11:55:16 +0200527 IWL_ERR(mvm, "Loaded firmware version: %s\n", mvm->fw->fw_version);
528
Johannes Berg8ca151b2013-01-24 14:25:36 +0100529 trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low,
530 table.data1, table.data2, table.data3,
531 table.blink1, table.blink2, table.ilink1,
532 table.ilink2, table.bcon_time, table.gp1,
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200533 table.gp2, table.gp3, table.ucode_ver, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100534 table.hw_ver, table.brd_ver);
535 IWL_ERR(mvm, "0x%08X | %-28s\n", table.error_id,
536 desc_lookup(table.error_id));
537 IWL_ERR(mvm, "0x%08X | uPc\n", table.pc);
538 IWL_ERR(mvm, "0x%08X | branchlink1\n", table.blink1);
539 IWL_ERR(mvm, "0x%08X | branchlink2\n", table.blink2);
540 IWL_ERR(mvm, "0x%08X | interruptlink1\n", table.ilink1);
541 IWL_ERR(mvm, "0x%08X | interruptlink2\n", table.ilink2);
542 IWL_ERR(mvm, "0x%08X | data1\n", table.data1);
543 IWL_ERR(mvm, "0x%08X | data2\n", table.data2);
544 IWL_ERR(mvm, "0x%08X | data3\n", table.data3);
545 IWL_ERR(mvm, "0x%08X | beacon time\n", table.bcon_time);
546 IWL_ERR(mvm, "0x%08X | tsf low\n", table.tsf_low);
547 IWL_ERR(mvm, "0x%08X | tsf hi\n", table.tsf_hi);
548 IWL_ERR(mvm, "0x%08X | time gp1\n", table.gp1);
549 IWL_ERR(mvm, "0x%08X | time gp2\n", table.gp2);
550 IWL_ERR(mvm, "0x%08X | time gp3\n", table.gp3);
551 IWL_ERR(mvm, "0x%08X | uCode version\n", table.ucode_ver);
552 IWL_ERR(mvm, "0x%08X | hw version\n", table.hw_ver);
553 IWL_ERR(mvm, "0x%08X | board version\n", table.brd_ver);
554 IWL_ERR(mvm, "0x%08X | hcmd\n", table.hcmd);
555 IWL_ERR(mvm, "0x%08X | isr0\n", table.isr0);
556 IWL_ERR(mvm, "0x%08X | isr1\n", table.isr1);
557 IWL_ERR(mvm, "0x%08X | isr2\n", table.isr2);
558 IWL_ERR(mvm, "0x%08X | isr3\n", table.isr3);
559 IWL_ERR(mvm, "0x%08X | isr4\n", table.isr4);
560 IWL_ERR(mvm, "0x%08X | isr_pref\n", table.isr_pref);
561 IWL_ERR(mvm, "0x%08X | wait_event\n", table.wait_event);
562 IWL_ERR(mvm, "0x%08X | l2p_control\n", table.l2p_control);
563 IWL_ERR(mvm, "0x%08X | l2p_duration\n", table.l2p_duration);
564 IWL_ERR(mvm, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
565 IWL_ERR(mvm, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
566 IWL_ERR(mvm, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
567 IWL_ERR(mvm, "0x%08X | timestamp\n", table.u_timestamp);
568 IWL_ERR(mvm, "0x%08X | flow_handler\n", table.flow_handler);
Eran Harary01a9ca52014-02-03 09:29:57 +0200569
570 if (mvm->support_umac_log)
571 iwl_mvm_dump_umac_error_log(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100572}
573
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200574void iwl_mvm_dump_nic_error_log(struct iwl_mvm *mvm)
575{
576 struct iwl_trans *trans = mvm->trans;
577 struct iwl_error_event_table table;
578 u32 base;
579
Johannes Berg859d9142015-06-01 17:11:11 +0200580 if (!fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION)) {
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200581 iwl_mvm_dump_nic_error_log_old(mvm);
582 return;
583 }
584
585 base = mvm->error_event_table;
586 if (mvm->cur_ucode == IWL_UCODE_INIT) {
587 if (!base)
588 base = mvm->fw->init_errlog_ptr;
589 } else {
590 if (!base)
591 base = mvm->fw->inst_errlog_ptr;
592 }
593
594 if (base < 0x800000) {
595 IWL_ERR(mvm,
596 "Not valid error log pointer 0x%08X for %s uCode\n",
597 base,
598 (mvm->cur_ucode == IWL_UCODE_INIT)
599 ? "Init" : "RT");
600 return;
601 }
602
603 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table));
604
605 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) {
606 IWL_ERR(trans, "Start IWL Error Log Dump:\n");
607 IWL_ERR(trans, "Status: 0x%08lX, count: %d\n",
608 mvm->status, table.valid);
609 }
610
611 /* Do not change this output - scripts rely on it */
612
613 IWL_ERR(mvm, "Loaded firmware version: %s\n", mvm->fw->fw_version);
614
615 trace_iwlwifi_dev_ucode_error(trans->dev, table.error_id, table.tsf_low,
616 table.data1, table.data2, table.data3,
617 table.blink1, table.blink2, table.ilink1,
618 table.ilink2, table.bcon_time, table.gp1,
619 table.gp2, table.gp3, table.major,
620 table.minor, table.hw_ver, table.brd_ver);
621 IWL_ERR(mvm, "0x%08X | %-28s\n", table.error_id,
622 desc_lookup(table.error_id));
623 IWL_ERR(mvm, "0x%08X | uPc\n", table.pc);
624 IWL_ERR(mvm, "0x%08X | branchlink1\n", table.blink1);
625 IWL_ERR(mvm, "0x%08X | branchlink2\n", table.blink2);
626 IWL_ERR(mvm, "0x%08X | interruptlink1\n", table.ilink1);
627 IWL_ERR(mvm, "0x%08X | interruptlink2\n", table.ilink2);
628 IWL_ERR(mvm, "0x%08X | data1\n", table.data1);
629 IWL_ERR(mvm, "0x%08X | data2\n", table.data2);
630 IWL_ERR(mvm, "0x%08X | data3\n", table.data3);
631 IWL_ERR(mvm, "0x%08X | beacon time\n", table.bcon_time);
632 IWL_ERR(mvm, "0x%08X | tsf low\n", table.tsf_low);
633 IWL_ERR(mvm, "0x%08X | tsf hi\n", table.tsf_hi);
634 IWL_ERR(mvm, "0x%08X | time gp1\n", table.gp1);
635 IWL_ERR(mvm, "0x%08X | time gp2\n", table.gp2);
636 IWL_ERR(mvm, "0x%08X | time gp3\n", table.gp3);
637 IWL_ERR(mvm, "0x%08X | uCode version major\n", table.major);
638 IWL_ERR(mvm, "0x%08X | uCode version minor\n", table.minor);
639 IWL_ERR(mvm, "0x%08X | hw version\n", table.hw_ver);
640 IWL_ERR(mvm, "0x%08X | board version\n", table.brd_ver);
641 IWL_ERR(mvm, "0x%08X | hcmd\n", table.hcmd);
642 IWL_ERR(mvm, "0x%08X | isr0\n", table.isr0);
643 IWL_ERR(mvm, "0x%08X | isr1\n", table.isr1);
644 IWL_ERR(mvm, "0x%08X | isr2\n", table.isr2);
645 IWL_ERR(mvm, "0x%08X | isr3\n", table.isr3);
646 IWL_ERR(mvm, "0x%08X | isr4\n", table.isr4);
647 IWL_ERR(mvm, "0x%08X | isr_pref\n", table.isr_pref);
648 IWL_ERR(mvm, "0x%08X | wait_event\n", table.wait_event);
649 IWL_ERR(mvm, "0x%08X | l2p_control\n", table.l2p_control);
650 IWL_ERR(mvm, "0x%08X | l2p_duration\n", table.l2p_duration);
651 IWL_ERR(mvm, "0x%08X | l2p_mhvalid\n", table.l2p_mhvalid);
652 IWL_ERR(mvm, "0x%08X | l2p_addr_match\n", table.l2p_addr_match);
653 IWL_ERR(mvm, "0x%08X | lmpm_pmg_sel\n", table.lmpm_pmg_sel);
654 IWL_ERR(mvm, "0x%08X | timestamp\n", table.u_timestamp);
655 IWL_ERR(mvm, "0x%08X | flow_handler\n", table.flow_handler);
656
657 if (mvm->support_umac_log)
658 iwl_mvm_dump_umac_error_log(mvm);
659}
Avri Altman3edf8ff2014-07-30 11:41:01 +0300660void iwl_mvm_enable_txq(struct iwl_mvm *mvm, int queue, u16 ssn,
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200661 const struct iwl_trans_txq_scd_cfg *cfg,
662 unsigned int wdg_timeout)
Avri Altman3edf8ff2014-07-30 11:41:01 +0300663{
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200664 struct iwl_scd_txq_cfg_cmd cmd = {
665 .scd_queue = queue,
666 .enable = 1,
667 .window = cfg->frame_limit,
668 .sta_id = cfg->sta_id,
669 .ssn = cpu_to_le16(ssn),
670 .tx_fifo = cfg->fifo,
671 .aggregate = cfg->aggregate,
672 .tid = cfg->tid,
673 };
674
Emmanuel Grumbach4cf677f2015-01-12 14:38:29 +0200675 iwl_trans_txq_enable_cfg(mvm->trans, queue, ssn, NULL, wdg_timeout);
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200676 WARN(iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, 0, sizeof(cmd), &cmd),
677 "Failed to configure queue %d on FIFO %d\n", queue, cfg->fifo);
Avri Altman3edf8ff2014-07-30 11:41:01 +0300678}
679
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200680void iwl_mvm_disable_txq(struct iwl_mvm *mvm, int queue, u8 flags)
Avri Altman3edf8ff2014-07-30 11:41:01 +0300681{
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200682 struct iwl_scd_txq_cfg_cmd cmd = {
683 .scd_queue = queue,
684 .enable = 0,
685 };
686 int ret;
Avri Altman3edf8ff2014-07-30 11:41:01 +0300687
Emmanuel Grumbach0294d9e2015-01-05 16:52:55 +0200688 iwl_trans_txq_disable(mvm->trans, queue, false);
689 ret = iwl_mvm_send_cmd_pdu(mvm, SCD_QUEUE_CFG, flags,
690 sizeof(cmd), &cmd);
691 if (ret)
692 IWL_ERR(mvm, "Failed to disable queue %d (ret=%d)\n",
693 queue, ret);
Avri Altman3edf8ff2014-07-30 11:41:01 +0300694}
695
Johannes Berg8ca151b2013-01-24 14:25:36 +0100696/**
697 * iwl_mvm_send_lq_cmd() - Send link quality command
698 * @init: This command is sent as part of station initialization right
699 * after station has been added.
700 *
701 * The link quality command is sent as the last step of station creation.
702 * This is the special case in which init is set and we call a callback in
703 * this case to clear the state indicating that station creation is in
704 * progress.
705 */
Eyal Shapira9e680942013-11-09 00:16:16 +0200706int iwl_mvm_send_lq_cmd(struct iwl_mvm *mvm, struct iwl_lq_cmd *lq, bool init)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100707{
708 struct iwl_host_cmd cmd = {
709 .id = LQ_CMD,
710 .len = { sizeof(struct iwl_lq_cmd), },
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300711 .flags = init ? 0 : CMD_ASYNC,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100712 .data = { lq, },
713 };
714
Emmanuel Grumbach881acd82013-03-19 16:16:00 +0200715 if (WARN_ON(lq->sta_id == IWL_MVM_STATION_COUNT))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100716 return -EINVAL;
717
Johannes Berg8ca151b2013-01-24 14:25:36 +0100718 return iwl_mvm_send_cmd(mvm, &cmd);
719}
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300720
721/**
Sara Sharon0d365ae2015-03-31 12:24:05 +0300722 * iwl_mvm_update_smps - Get a request to change the SMPS mode
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300723 * @req_type: The part of the driver who call for a change.
724 * @smps_requests: The request to change the SMPS mode.
725 *
726 * Get a requst to change the SMPS mode,
727 * and change it according to all other requests in the driver.
728 */
729void iwl_mvm_update_smps(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
730 enum iwl_mvm_smps_type_request req_type,
731 enum ieee80211_smps_mode smps_request)
732{
733 struct iwl_mvm_vif *mvmvif;
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200734 enum ieee80211_smps_mode smps_mode;
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300735 int i;
736
737 lockdep_assert_held(&mvm->mutex);
Emmanuel Grumbach710e4d02013-11-28 15:25:21 +0200738
739 /* SMPS is irrelevant for NICs that don't have at least 2 RX antenna */
Moshe Harela0544272014-12-08 21:13:14 +0200740 if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
Emmanuel Grumbach710e4d02013-11-28 15:25:21 +0200741 return;
742
Emmanuel Grumbachf6415f62013-12-26 15:32:40 +0200743 if (vif->type == NL80211_IFTYPE_AP)
744 smps_mode = IEEE80211_SMPS_OFF;
745 else
746 smps_mode = IEEE80211_SMPS_AUTOMATIC;
747
Eytan Lifshitz9ee718a2013-05-19 19:14:41 +0300748 mvmvif = iwl_mvm_vif_from_mac80211(vif);
749 mvmvif->smps_requests[req_type] = smps_request;
750 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
751 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_STATIC) {
752 smps_mode = IEEE80211_SMPS_STATIC;
753 break;
754 }
755 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_DYNAMIC)
756 smps_mode = IEEE80211_SMPS_DYNAMIC;
757 }
758
759 ieee80211_request_smps(vif, smps_mode);
760}
Johannes Berga21d7bc2013-11-12 17:30:52 +0100761
Johannes Berg33cef922015-01-21 21:41:29 +0100762int iwl_mvm_request_statistics(struct iwl_mvm *mvm, bool clear)
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100763{
Johannes Berg33cef922015-01-21 21:41:29 +0100764 struct iwl_statistics_cmd scmd = {
765 .flags = clear ? cpu_to_le32(IWL_STATISTICS_FLG_CLEAR) : 0,
766 };
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100767 struct iwl_host_cmd cmd = {
768 .id = STATISTICS_CMD,
769 .len[0] = sizeof(scmd),
770 .data[0] = &scmd,
771 .flags = CMD_WANT_SKB,
772 };
773 int ret;
774
775 ret = iwl_mvm_send_cmd(mvm, &cmd);
776 if (ret)
777 return ret;
778
779 iwl_mvm_handle_rx_statistics(mvm, cmd.resp_pkt);
780 iwl_free_resp(&cmd);
781
Johannes Berg33cef922015-01-21 21:41:29 +0100782 if (clear)
783 iwl_mvm_accu_radio_stats(mvm);
784
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100785 return 0;
786}
787
788void iwl_mvm_accu_radio_stats(struct iwl_mvm *mvm)
789{
790 mvm->accu_radio_stats.rx_time += mvm->radio_stats.rx_time;
791 mvm->accu_radio_stats.tx_time += mvm->radio_stats.tx_time;
792 mvm->accu_radio_stats.on_time_rf += mvm->radio_stats.on_time_rf;
793 mvm->accu_radio_stats.on_time_scan += mvm->radio_stats.on_time_scan;
794}
795
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300796static void iwl_mvm_diversity_iter(void *_data, u8 *mac,
797 struct ieee80211_vif *vif)
798{
799 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
800 bool *result = _data;
801 int i;
802
803 for (i = 0; i < NUM_IWL_MVM_SMPS_REQ; i++) {
804 if (mvmvif->smps_requests[i] == IEEE80211_SMPS_STATIC ||
805 mvmvif->smps_requests[i] == IEEE80211_SMPS_DYNAMIC)
806 *result = false;
807 }
808}
809
810bool iwl_mvm_rx_diversity_allowed(struct iwl_mvm *mvm)
811{
812 bool result = true;
813
814 lockdep_assert_held(&mvm->mutex);
815
Moshe Harela0544272014-12-08 21:13:14 +0200816 if (num_of_ant(iwl_mvm_get_valid_rx_ant(mvm)) == 1)
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300817 return false;
818
Eyal Shapirac93edc62014-12-31 19:30:15 +0200819 if (mvm->cfg->rx_with_siso_diversity)
Emmanuel Grumbach5c904222014-05-18 09:16:45 +0300820 return false;
821
822 ieee80211_iterate_active_interfaces_atomic(
823 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
824 iwl_mvm_diversity_iter, &result);
825
826 return result;
827}
828
Johannes Berga21d7bc2013-11-12 17:30:52 +0100829int iwl_mvm_update_low_latency(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
830 bool value)
831{
832 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
Johannes Berge03f9bef2013-11-13 17:16:19 +0100833 int res;
Johannes Berga21d7bc2013-11-12 17:30:52 +0100834
835 lockdep_assert_held(&mvm->mutex);
836
Johannes Berg3510aea2014-03-18 10:21:02 +0100837 if (mvmvif->low_latency == value)
838 return 0;
839
Johannes Berga21d7bc2013-11-12 17:30:52 +0100840 mvmvif->low_latency = value;
841
Emmanuel Grumbach7754ae72015-02-26 15:14:35 +0200842 res = iwl_mvm_update_quotas(mvm, false, NULL);
Johannes Berge03f9bef2013-11-13 17:16:19 +0100843 if (res)
844 return res;
Emmanuel Grumbach0ee5bcd2014-01-15 16:57:54 +0200845
846 iwl_mvm_bt_coex_vif_change(mvm);
847
Arik Nemtsov999609f2014-05-15 17:31:51 +0300848 return iwl_mvm_power_update_mac(mvm);
Johannes Berga21d7bc2013-11-12 17:30:52 +0100849}
Alexander Bondar50df8a32014-03-12 20:30:51 +0200850
851static void iwl_mvm_ll_iter(void *_data, u8 *mac, struct ieee80211_vif *vif)
852{
853 bool *result = _data;
854
855 if (iwl_mvm_vif_low_latency(iwl_mvm_vif_from_mac80211(vif)))
856 *result = true;
857}
858
859bool iwl_mvm_low_latency(struct iwl_mvm *mvm)
860{
861 bool result = false;
862
863 ieee80211_iterate_active_interfaces_atomic(
864 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
865 iwl_mvm_ll_iter, &result);
866
867 return result;
868}
David Spinadelbd5e4742014-04-24 13:15:29 +0300869
Luciano Coelho7f549e22014-10-02 15:38:04 +0300870struct iwl_bss_iter_data {
871 struct ieee80211_vif *vif;
872 bool error;
873};
874
875static void iwl_mvm_bss_iface_iterator(void *_data, u8 *mac,
876 struct ieee80211_vif *vif)
877{
878 struct iwl_bss_iter_data *data = _data;
879
880 if (vif->type != NL80211_IFTYPE_STATION || vif->p2p)
881 return;
882
883 if (data->vif) {
884 data->error = true;
885 return;
886 }
887
888 data->vif = vif;
889}
890
891struct ieee80211_vif *iwl_mvm_get_bss_vif(struct iwl_mvm *mvm)
892{
893 struct iwl_bss_iter_data bss_iter_data = {};
894
895 ieee80211_iterate_active_interfaces_atomic(
896 mvm->hw, IEEE80211_IFACE_ITER_NORMAL,
897 iwl_mvm_bss_iface_iterator, &bss_iter_data);
898
899 if (bss_iter_data.error) {
900 IWL_ERR(mvm, "More than one managed interface active!\n");
901 return ERR_PTR(-EINVAL);
902 }
903
904 return bss_iter_data.vif;
905}
Emmanuel Grumbach5d42e7b2015-03-19 20:04:51 +0200906
907unsigned int iwl_mvm_get_wd_timeout(struct iwl_mvm *mvm,
908 struct ieee80211_vif *vif,
909 bool tdls, bool cmd_q)
910{
911 struct iwl_fw_dbg_trigger_tlv *trigger;
912 struct iwl_fw_dbg_trigger_txq_timer *txq_timer;
913 unsigned int default_timeout =
914 cmd_q ? IWL_DEF_WD_TIMEOUT : mvm->cfg->base_params->wd_timeout;
915
916 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS))
917 return iwlmvm_mod_params.tfd_q_hang_detect ?
918 default_timeout : IWL_WATCHDOG_DISABLED;
919
920 trigger = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_TXQ_TIMERS);
921 txq_timer = (void *)trigger->data;
922
923 if (tdls)
924 return le32_to_cpu(txq_timer->tdls);
925
926 if (cmd_q)
927 return le32_to_cpu(txq_timer->command_queue);
928
929 if (WARN_ON(!vif))
930 return default_timeout;
931
932 switch (ieee80211_vif_type_p2p(vif)) {
933 case NL80211_IFTYPE_ADHOC:
934 return le32_to_cpu(txq_timer->ibss);
935 case NL80211_IFTYPE_STATION:
936 return le32_to_cpu(txq_timer->bss);
937 case NL80211_IFTYPE_AP:
938 return le32_to_cpu(txq_timer->softap);
939 case NL80211_IFTYPE_P2P_CLIENT:
940 return le32_to_cpu(txq_timer->p2p_client);
941 case NL80211_IFTYPE_P2P_GO:
942 return le32_to_cpu(txq_timer->p2p_go);
943 case NL80211_IFTYPE_P2P_DEVICE:
944 return le32_to_cpu(txq_timer->p2p_device);
945 default:
946 WARN_ON(1);
947 return mvm->cfg->base_params->wd_timeout;
948 }
949}
Emmanuel Grumbach31755202015-03-30 10:55:57 +0300950
951void iwl_mvm_connection_loss(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
952 const char *errmsg)
953{
954 struct iwl_fw_dbg_trigger_tlv *trig;
955 struct iwl_fw_dbg_trigger_mlme *trig_mlme;
956
957 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_MLME))
958 goto out;
959
960 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_MLME);
961 trig_mlme = (void *)trig->data;
962 if (!iwl_fw_dbg_trigger_check_stop(mvm, vif, trig))
963 goto out;
964
965 if (trig_mlme->stop_connection_loss &&
966 --trig_mlme->stop_connection_loss)
967 goto out;
968
969 iwl_mvm_fw_dbg_collect_trig(mvm, trig, "%s", errmsg);
970
971out:
972 ieee80211_connection_loss(vif);
973}