iwlwifi: mvm: reset the fw_dump_desc pointer after ASSERT
[linux-2.6-block.git] / drivers / net / wireless / intel / iwlwifi / mvm / ops.c
CommitLineData
8ca151b5
JB
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
51368bf7 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
4fb06283 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
de8ba41b 10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
8ca151b5
JB
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
410dc5aa 27 * in the file called COPYING.
8ca151b5
JB
28 *
29 * Contact Information:
cb2f8277 30 * Intel Linux Wireless <linuxwifi@intel.com>
8ca151b5
JB
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
51368bf7 35 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
4fb06283 36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
de8ba41b 37 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
8ca151b5
JB
38 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67#include <linux/module.h>
1bd3cbc1 68#include <linux/vmalloc.h>
8ca151b5
JB
69#include <net/mac80211.h>
70
71#include "iwl-notif-wait.h"
72#include "iwl-trans.h"
73#include "iwl-op-mode.h"
74#include "iwl-fw.h"
75#include "iwl-debug.h"
76#include "iwl-drv.h"
77#include "iwl-modparams.h"
78#include "mvm.h"
79#include "iwl-phy-db.h"
80#include "iwl-eeprom-parse.h"
81#include "iwl-csr.h"
82#include "iwl-io.h"
83#include "iwl-prph.h"
84#include "rs.h"
85#include "fw-api-scan.h"
86#include "time-event.h"
2f89a5d7 87#include "fw-dbg.h"
39bdb17e
SD
88#include "fw-api.h"
89#include "fw-api-scan.h"
8ca151b5 90
8ca151b5 91#define DRV_DESCRIPTION "The new Intel(R) wireless AGN driver for Linux"
8ca151b5 92MODULE_DESCRIPTION(DRV_DESCRIPTION);
8ca151b5
JB
93MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
94MODULE_LICENSE("GPL");
95
96static const struct iwl_op_mode_ops iwl_mvm_ops;
0316d30e 97static const struct iwl_op_mode_ops iwl_mvm_ops_mq;
8ca151b5
JB
98
99struct iwl_mvm_mod_params iwlmvm_mod_params = {
100 .power_scheme = IWL_POWER_SCHEME_BPS,
ce71c2f7 101 .tfd_q_hang_detect = true
8ca151b5
JB
102 /* rest of fields are 0 by default */
103};
104
105module_param_named(init_dbg, iwlmvm_mod_params.init_dbg, bool, S_IRUGO);
106MODULE_PARM_DESC(init_dbg,
107 "set to true to debug an ASSERT in INIT fw (default: false");
108module_param_named(power_scheme, iwlmvm_mod_params.power_scheme, int, S_IRUGO);
109MODULE_PARM_DESC(power_scheme,
110 "power management scheme: 1-active, 2-balanced, 3-low power, default: 2");
ce71c2f7
EG
111module_param_named(tfd_q_hang_detect, iwlmvm_mod_params.tfd_q_hang_detect,
112 bool, S_IRUGO);
113MODULE_PARM_DESC(tfd_q_hang_detect,
114 "TFD queues hang detection (default: true");
8ca151b5
JB
115
116/*
117 * module init and exit functions
118 */
119static int __init iwl_mvm_init(void)
120{
121 int ret;
122
123 ret = iwl_mvm_rate_control_register();
124 if (ret) {
125 pr_err("Unable to register rate control algorithm: %d\n", ret);
126 return ret;
127 }
128
129 ret = iwl_opmode_register("iwlmvm", &iwl_mvm_ops);
130
131 if (ret) {
132 pr_err("Unable to register MVM op_mode: %d\n", ret);
133 iwl_mvm_rate_control_unregister();
134 }
135
136 return ret;
137}
138module_init(iwl_mvm_init);
139
140static void __exit iwl_mvm_exit(void)
141{
142 iwl_opmode_deregister("iwlmvm");
143 iwl_mvm_rate_control_unregister();
144}
145module_exit(iwl_mvm_exit);
146
147static void iwl_mvm_nic_config(struct iwl_op_mode *op_mode)
148{
149 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
150 u8 radio_cfg_type, radio_cfg_step, radio_cfg_dash;
151 u32 reg_val = 0;
a0544272
MH
152 u32 phy_config = iwl_mvm_get_phy_config(mvm);
153
154 radio_cfg_type = (phy_config & FW_PHY_CFG_RADIO_TYPE) >>
155 FW_PHY_CFG_RADIO_TYPE_POS;
156 radio_cfg_step = (phy_config & FW_PHY_CFG_RADIO_STEP) >>
157 FW_PHY_CFG_RADIO_STEP_POS;
158 radio_cfg_dash = (phy_config & FW_PHY_CFG_RADIO_DASH) >>
159 FW_PHY_CFG_RADIO_DASH_POS;
8ca151b5
JB
160
161 /* SKU control */
162 reg_val |= CSR_HW_REV_STEP(mvm->trans->hw_rev) <<
163 CSR_HW_IF_CONFIG_REG_POS_MAC_STEP;
164 reg_val |= CSR_HW_REV_DASH(mvm->trans->hw_rev) <<
165 CSR_HW_IF_CONFIG_REG_POS_MAC_DASH;
166
167 /* radio configuration */
168 reg_val |= radio_cfg_type << CSR_HW_IF_CONFIG_REG_POS_PHY_TYPE;
169 reg_val |= radio_cfg_step << CSR_HW_IF_CONFIG_REG_POS_PHY_STEP;
170 reg_val |= radio_cfg_dash << CSR_HW_IF_CONFIG_REG_POS_PHY_DASH;
171
172 WARN_ON((radio_cfg_type << CSR_HW_IF_CONFIG_REG_POS_PHY_TYPE) &
173 ~CSR_HW_IF_CONFIG_REG_MSK_PHY_TYPE);
174
9b1fcc11 175 /*
6e584873
SS
176 * TODO: Bits 7-8 of CSR in 8000 HW family and higher set the ADC
177 * sampling, and shouldn't be set to any non-zero value.
178 * The same is supposed to be true of the other HW, but unsetting
179 * them (such as the 7260) causes automatic tests to fail on seemingly
180 * unrelated errors. Need to further investigate this, but for now
181 * we'll separate cases.
9b1fcc11 182 */
6e584873 183 if (mvm->trans->cfg->device_family < IWL_DEVICE_FAMILY_8000)
9b1fcc11 184 reg_val |= CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI;
8ca151b5 185
e139dc4a
LE
186 iwl_trans_set_bits_mask(mvm->trans, CSR_HW_IF_CONFIG_REG,
187 CSR_HW_IF_CONFIG_REG_MSK_MAC_DASH |
188 CSR_HW_IF_CONFIG_REG_MSK_MAC_STEP |
189 CSR_HW_IF_CONFIG_REG_MSK_PHY_TYPE |
190 CSR_HW_IF_CONFIG_REG_MSK_PHY_STEP |
191 CSR_HW_IF_CONFIG_REG_MSK_PHY_DASH |
192 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
193 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI,
194 reg_val);
8ca151b5
JB
195
196 IWL_DEBUG_INFO(mvm, "Radio type=0x%x-0x%x-0x%x\n", radio_cfg_type,
197 radio_cfg_step, radio_cfg_dash);
198
199 /*
200 * W/A : NIC is stuck in a reset state after Early PCIe power off
201 * (PCIe power is lost before PERST# is asserted), causing ME FW
202 * to lose ownership and not being able to obtain it back.
203 */
95411d04 204 if (!mvm->trans->cfg->apmg_not_supported)
3073d8c0
EH
205 iwl_set_bits_mask_prph(mvm->trans, APMG_PS_CTRL_REG,
206 APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS,
207 ~APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS);
8ca151b5
JB
208}
209
c9cb14a6
CRI
210/**
211 * enum iwl_rx_handler_context context for Rx handler
212 * @RX_HANDLER_SYNC : this means that it will be called in the Rx path
213 * which can't acquire mvm->mutex.
214 * @RX_HANDLER_ASYNC_LOCKED : If the handler needs to hold mvm->mutex
215 * (and only in this case!), it should be set as ASYNC. In that case,
216 * it will be called from a worker with mvm->mutex held.
217 * @RX_HANDLER_ASYNC_UNLOCKED : in case the handler needs to lock the
218 * mutex itself, it will be called from a worker without mvm->mutex held.
219 */
220enum iwl_rx_handler_context {
221 RX_HANDLER_SYNC,
222 RX_HANDLER_ASYNC_LOCKED,
223 RX_HANDLER_ASYNC_UNLOCKED,
224};
225
226/**
227 * struct iwl_rx_handlers handler for FW notification
228 * @cmd_id: command id
229 * @context: see &iwl_rx_handler_context
230 * @fn: the function is called when notification is received
231 */
8ca151b5 232struct iwl_rx_handlers {
1230b16b 233 u16 cmd_id;
c9cb14a6 234 enum iwl_rx_handler_context context;
0416841d 235 void (*fn)(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb);
8ca151b5
JB
236};
237
c9cb14a6
CRI
238#define RX_HANDLER(_cmd_id, _fn, _context) \
239 { .cmd_id = _cmd_id, .fn = _fn, .context = _context }
240#define RX_HANDLER_GRP(_grp, _cmd, _fn, _context) \
241 { .cmd_id = WIDE_ID(_grp, _cmd), .fn = _fn, .context = _context }
8ca151b5
JB
242
243/*
244 * Handlers for fw notifications
245 * Convention: RX_HANDLER(CMD_NAME, iwl_mvm_rx_CMD_NAME
246 * This list should be in order of frequency for performance purposes.
247 *
c9cb14a6 248 * The handler can be one from three contexts, see &iwl_rx_handler_context
8ca151b5
JB
249 */
250static const struct iwl_rx_handlers iwl_mvm_rx_handlers[] = {
c9cb14a6
CRI
251 RX_HANDLER(TX_CMD, iwl_mvm_rx_tx_cmd, RX_HANDLER_SYNC),
252 RX_HANDLER(BA_NOTIF, iwl_mvm_rx_ba_notif, RX_HANDLER_SYNC),
253
254 RX_HANDLER(BT_PROFILE_NOTIFICATION, iwl_mvm_rx_bt_coex_notif,
255 RX_HANDLER_ASYNC_LOCKED),
256 RX_HANDLER(BEACON_NOTIFICATION, iwl_mvm_rx_beacon_notif,
257 RX_HANDLER_ASYNC_LOCKED),
258 RX_HANDLER(STATISTICS_NOTIFICATION, iwl_mvm_rx_statistics,
259 RX_HANDLER_ASYNC_LOCKED),
b9fae2d5 260 RX_HANDLER(ANTENNA_COUPLING_NOTIFICATION,
c9cb14a6 261 iwl_mvm_rx_ant_coupling_notif, RX_HANDLER_ASYNC_LOCKED),
f421f9c3 262
3af512d6 263 RX_HANDLER(BA_WINDOW_STATUS_NOTIFICATION_ID,
c9cb14a6 264 iwl_mvm_window_status_notif, RX_HANDLER_SYNC),
3af512d6 265
c9cb14a6
CRI
266 RX_HANDLER(TIME_EVENT_NOTIFICATION, iwl_mvm_rx_time_event_notif,
267 RX_HANDLER_SYNC),
268 RX_HANDLER(MCC_CHUB_UPDATE_CMD, iwl_mvm_rx_chub_update_mcc,
269 RX_HANDLER_ASYNC_LOCKED),
497b49d2 270
c9cb14a6 271 RX_HANDLER(EOSP_NOTIFICATION, iwl_mvm_rx_eosp_notif, RX_HANDLER_SYNC),
3e56eadf 272
e5d74646 273 RX_HANDLER(SCAN_ITERATION_COMPLETE,
c9cb14a6 274 iwl_mvm_rx_lmac_scan_iter_complete_notif, RX_HANDLER_SYNC),
35a000b7 275 RX_HANDLER(SCAN_OFFLOAD_COMPLETE,
c9cb14a6
CRI
276 iwl_mvm_rx_lmac_scan_complete_notif,
277 RX_HANDLER_ASYNC_LOCKED),
6e56f01d 278 RX_HANDLER(MATCH_FOUND_NOTIFICATION, iwl_mvm_rx_scan_match_found,
c9cb14a6 279 RX_HANDLER_SYNC),
d2496221 280 RX_HANDLER(SCAN_COMPLETE_UMAC, iwl_mvm_rx_umac_scan_complete_notif,
c9cb14a6 281 RX_HANDLER_ASYNC_LOCKED),
ee9219b2 282 RX_HANDLER(SCAN_ITERATION_COMPLETE_UMAC,
c9cb14a6 283 iwl_mvm_rx_umac_scan_iter_complete_notif, RX_HANDLER_SYNC),
497b49d2 284
c9cb14a6
CRI
285 RX_HANDLER(CARD_STATE_NOTIFICATION, iwl_mvm_rx_card_state_notif,
286 RX_HANDLER_SYNC),
8ca151b5 287
d64048ed 288 RX_HANDLER(MISSED_BEACONS_NOTIFICATION, iwl_mvm_rx_missed_beacons_notif,
c9cb14a6 289 RX_HANDLER_SYNC),
d64048ed 290
c9cb14a6 291 RX_HANDLER(REPLY_ERROR, iwl_mvm_rx_fw_error, RX_HANDLER_SYNC),
175a70b7 292 RX_HANDLER(PSM_UAPSD_AP_MISBEHAVING_NOTIFICATION,
c9cb14a6
CRI
293 iwl_mvm_power_uapsd_misbehaving_ap_notif, RX_HANDLER_SYNC),
294 RX_HANDLER(DTS_MEASUREMENT_NOTIFICATION, iwl_mvm_temp_notif,
295 RX_HANDLER_ASYNC_LOCKED),
09eef330 296 RX_HANDLER_GRP(PHY_OPS_GROUP, DTS_MEASUREMENT_NOTIF_WIDE,
ec77a33e 297 iwl_mvm_temp_notif, RX_HANDLER_ASYNC_UNLOCKED),
0a3b7119 298 RX_HANDLER_GRP(PHY_OPS_GROUP, CT_KILL_NOTIFICATION,
c9cb14a6 299 iwl_mvm_ct_kill_notif, RX_HANDLER_SYNC),
ea9af24d 300
1d3c3f63 301 RX_HANDLER(TDLS_CHANNEL_SWITCH_NOTIFICATION, iwl_mvm_rx_tdls_notif,
c9cb14a6
CRI
302 RX_HANDLER_ASYNC_LOCKED),
303 RX_HANDLER(MFUART_LOAD_NOTIFICATION, iwl_mvm_rx_mfuart_notif,
304 RX_HANDLER_SYNC),
305 RX_HANDLER(TOF_NOTIFICATION, iwl_mvm_tof_resp_handler,
306 RX_HANDLER_ASYNC_LOCKED),
bdccdb85
GBA
307 RX_HANDLER_GRP(DEBUG_GROUP, MFU_ASSERT_DUMP_NTF,
308 iwl_mvm_mfu_assert_dump_notif, RX_HANDLER_SYNC),
0db056d3 309 RX_HANDLER_GRP(PROT_OFFLOAD_GROUP, STORED_BEACON_NTF,
c9cb14a6 310 iwl_mvm_rx_stored_beacon_notif, RX_HANDLER_SYNC),
f92659a1 311 RX_HANDLER_GRP(DATA_PATH_GROUP, MU_GROUP_MGMT_NOTIF,
c9cb14a6 312 iwl_mvm_mu_mimo_grp_notif, RX_HANDLER_SYNC),
65e25482
JB
313 RX_HANDLER_GRP(DATA_PATH_GROUP, STA_PM_NOTIF,
314 iwl_mvm_sta_pm_notif, RX_HANDLER_SYNC),
8ca151b5
JB
315};
316#undef RX_HANDLER
1230b16b 317#undef RX_HANDLER_GRP
39bdb17e
SD
318
319/* Please keep this array *SORTED* by hex value.
320 * Access is done through binary search
321 */
322static const struct iwl_hcmd_names iwl_mvm_legacy_names[] = {
323 HCMD_NAME(MVM_ALIVE),
324 HCMD_NAME(REPLY_ERROR),
325 HCMD_NAME(ECHO_CMD),
326 HCMD_NAME(INIT_COMPLETE_NOTIF),
327 HCMD_NAME(PHY_CONTEXT_CMD),
328 HCMD_NAME(DBG_CFG),
329 HCMD_NAME(ANTENNA_COUPLING_NOTIFICATION),
330 HCMD_NAME(SCAN_CFG_CMD),
331 HCMD_NAME(SCAN_REQ_UMAC),
332 HCMD_NAME(SCAN_ABORT_UMAC),
333 HCMD_NAME(SCAN_COMPLETE_UMAC),
334 HCMD_NAME(TOF_CMD),
335 HCMD_NAME(TOF_NOTIFICATION),
3af512d6 336 HCMD_NAME(BA_WINDOW_STATUS_NOTIFICATION_ID),
39bdb17e
SD
337 HCMD_NAME(ADD_STA_KEY),
338 HCMD_NAME(ADD_STA),
339 HCMD_NAME(REMOVE_STA),
340 HCMD_NAME(FW_GET_ITEM_CMD),
341 HCMD_NAME(TX_CMD),
342 HCMD_NAME(SCD_QUEUE_CFG),
343 HCMD_NAME(TXPATH_FLUSH),
344 HCMD_NAME(MGMT_MCAST_KEY),
345 HCMD_NAME(WEP_KEY),
346 HCMD_NAME(SHARED_MEM_CFG),
347 HCMD_NAME(TDLS_CHANNEL_SWITCH_CMD),
348 HCMD_NAME(MAC_CONTEXT_CMD),
349 HCMD_NAME(TIME_EVENT_CMD),
350 HCMD_NAME(TIME_EVENT_NOTIFICATION),
351 HCMD_NAME(BINDING_CONTEXT_CMD),
352 HCMD_NAME(TIME_QUOTA_CMD),
353 HCMD_NAME(NON_QOS_TX_COUNTER_CMD),
354 HCMD_NAME(LQ_CMD),
355 HCMD_NAME(FW_PAGING_BLOCK_CMD),
356 HCMD_NAME(SCAN_OFFLOAD_REQUEST_CMD),
357 HCMD_NAME(SCAN_OFFLOAD_ABORT_CMD),
358 HCMD_NAME(HOT_SPOT_CMD),
359 HCMD_NAME(SCAN_OFFLOAD_PROFILES_QUERY_CMD),
360 HCMD_NAME(SCAN_OFFLOAD_HOTSPOTS_CONFIG_CMD),
361 HCMD_NAME(SCAN_OFFLOAD_HOTSPOTS_QUERY_CMD),
362 HCMD_NAME(BT_COEX_UPDATE_SW_BOOST),
363 HCMD_NAME(BT_COEX_UPDATE_CORUN_LUT),
364 HCMD_NAME(BT_COEX_UPDATE_REDUCED_TXP),
365 HCMD_NAME(BT_COEX_CI),
366 HCMD_NAME(PHY_CONFIGURATION_CMD),
367 HCMD_NAME(CALIB_RES_NOTIF_PHY_DB),
176aa60b 368 HCMD_NAME(PHY_DB_CMD),
39bdb17e
SD
369 HCMD_NAME(SCAN_OFFLOAD_COMPLETE),
370 HCMD_NAME(SCAN_OFFLOAD_UPDATE_PROFILES_CMD),
371 HCMD_NAME(SCAN_OFFLOAD_CONFIG_CMD),
372 HCMD_NAME(POWER_TABLE_CMD),
373 HCMD_NAME(PSM_UAPSD_AP_MISBEHAVING_NOTIFICATION),
374 HCMD_NAME(REPLY_THERMAL_MNG_BACKOFF),
375 HCMD_NAME(DC2DC_CONFIG_CMD),
376 HCMD_NAME(NVM_ACCESS_CMD),
377 HCMD_NAME(SET_CALIB_DEFAULT_CMD),
378 HCMD_NAME(BEACON_NOTIFICATION),
379 HCMD_NAME(BEACON_TEMPLATE_CMD),
380 HCMD_NAME(TX_ANT_CONFIGURATION_CMD),
381 HCMD_NAME(BT_CONFIG),
382 HCMD_NAME(STATISTICS_CMD),
383 HCMD_NAME(STATISTICS_NOTIFICATION),
384 HCMD_NAME(EOSP_NOTIFICATION),
385 HCMD_NAME(REDUCE_TX_POWER_CMD),
386 HCMD_NAME(CARD_STATE_CMD),
387 HCMD_NAME(CARD_STATE_NOTIFICATION),
388 HCMD_NAME(MISSED_BEACONS_NOTIFICATION),
389 HCMD_NAME(TDLS_CONFIG_CMD),
390 HCMD_NAME(MAC_PM_POWER_TABLE),
391 HCMD_NAME(TDLS_CHANNEL_SWITCH_NOTIFICATION),
392 HCMD_NAME(MFUART_LOAD_NOTIFICATION),
43413a97 393 HCMD_NAME(RSS_CONFIG_CMD),
39bdb17e
SD
394 HCMD_NAME(SCAN_ITERATION_COMPLETE_UMAC),
395 HCMD_NAME(REPLY_RX_PHY_CMD),
396 HCMD_NAME(REPLY_RX_MPDU_CMD),
397 HCMD_NAME(BA_NOTIF),
398 HCMD_NAME(MCC_UPDATE_CMD),
399 HCMD_NAME(MCC_CHUB_UPDATE_CMD),
400 HCMD_NAME(MARKER_CMD),
401 HCMD_NAME(BT_COEX_PRIO_TABLE),
402 HCMD_NAME(BT_COEX_PROT_ENV),
403 HCMD_NAME(BT_PROFILE_NOTIFICATION),
404 HCMD_NAME(BCAST_FILTER_CMD),
405 HCMD_NAME(MCAST_FILTER_CMD),
406 HCMD_NAME(REPLY_SF_CFG_CMD),
407 HCMD_NAME(REPLY_BEACON_FILTERING_CMD),
408 HCMD_NAME(D3_CONFIG_CMD),
409 HCMD_NAME(PROT_OFFLOAD_CONFIG_CMD),
410 HCMD_NAME(OFFLOADS_QUERY_CMD),
411 HCMD_NAME(REMOTE_WAKE_CONFIG_CMD),
412 HCMD_NAME(MATCH_FOUND_NOTIFICATION),
413 HCMD_NAME(CMD_DTS_MEASUREMENT_TRIGGER),
414 HCMD_NAME(DTS_MEASUREMENT_NOTIFICATION),
415 HCMD_NAME(WOWLAN_PATTERNS),
416 HCMD_NAME(WOWLAN_CONFIGURATION),
417 HCMD_NAME(WOWLAN_TSC_RSC_PARAM),
418 HCMD_NAME(WOWLAN_TKIP_PARAM),
419 HCMD_NAME(WOWLAN_KEK_KCK_MATERIAL),
420 HCMD_NAME(WOWLAN_GET_STATUSES),
421 HCMD_NAME(WOWLAN_TX_POWER_PER_DB),
422 HCMD_NAME(SCAN_ITERATION_COMPLETE),
423 HCMD_NAME(D0I3_END_CMD),
424 HCMD_NAME(LTR_CONFIG),
425 HCMD_NAME(REPLY_DEBUG_CMD),
8ca151b5 426};
39bdb17e 427
5b086414
GBA
428/* Please keep this array *SORTED* by hex value.
429 * Access is done through binary search
430 */
431static const struct iwl_hcmd_names iwl_mvm_system_names[] = {
432 HCMD_NAME(SHARED_MEM_CFG_CMD),
4399caaa 433 HCMD_NAME(INIT_EXTENDED_CFG_CMD),
5b086414
GBA
434};
435
03098268
AE
436/* Please keep this array *SORTED* by hex value.
437 * Access is done through binary search
438 */
439static const struct iwl_hcmd_names iwl_mvm_mac_conf_names[] = {
440 HCMD_NAME(LINK_QUALITY_MEASUREMENT_CMD),
441 HCMD_NAME(LINK_QUALITY_MEASUREMENT_COMPLETE_NOTIF),
d3a108a4 442 HCMD_NAME(CHANNEL_SWITCH_NOA_NOTIF),
03098268
AE
443};
444
39bdb17e
SD
445/* Please keep this array *SORTED* by hex value.
446 * Access is done through binary search
447 */
448static const struct iwl_hcmd_names iwl_mvm_phy_names[] = {
449 HCMD_NAME(CMD_DTS_MEASUREMENT_TRIGGER_WIDE),
5c89e7bc 450 HCMD_NAME(CTDP_CONFIG_CMD),
c221daf2 451 HCMD_NAME(TEMP_REPORTING_THRESHOLDS_CMD),
a6bff3cb 452 HCMD_NAME(GEO_TX_POWER_LIMIT),
0a3b7119 453 HCMD_NAME(CT_KILL_NOTIFICATION),
39bdb17e
SD
454 HCMD_NAME(DTS_MEASUREMENT_NOTIF_WIDE),
455};
456
e0d8fdec
SS
457/* Please keep this array *SORTED* by hex value.
458 * Access is done through binary search
459 */
460static const struct iwl_hcmd_names iwl_mvm_data_path_names[] = {
ddef2f98 461 HCMD_NAME(DQA_ENABLE_CMD),
e0d8fdec 462 HCMD_NAME(UPDATE_MU_GROUPS_CMD),
94bb4481 463 HCMD_NAME(TRIGGER_RX_QUEUES_NOTIF_CMD),
65e25482 464 HCMD_NAME(STA_PM_NOTIF),
f92659a1 465 HCMD_NAME(MU_GROUP_MGMT_NOTIF),
94bb4481 466 HCMD_NAME(RX_QUEUES_NOTIFICATION),
e0d8fdec
SS
467};
468
bdccdb85
GBA
469/* Please keep this array *SORTED* by hex value.
470 * Access is done through binary search
471 */
472static const struct iwl_hcmd_names iwl_mvm_debug_names[] = {
473 HCMD_NAME(MFU_ASSERT_DUMP_NTF),
474};
475
0db056d3
SS
476/* Please keep this array *SORTED* by hex value.
477 * Access is done through binary search
478 */
479static const struct iwl_hcmd_names iwl_mvm_prot_offload_names[] = {
480 HCMD_NAME(STORED_BEACON_NTF),
481};
482
1f370650
SS
483/* Please keep this array *SORTED* by hex value.
484 * Access is done through binary search
485 */
486static const struct iwl_hcmd_names iwl_mvm_regulatory_and_nvm_names[] = {
487 HCMD_NAME(NVM_ACCESS_COMPLETE),
e9e1ba3d 488 HCMD_NAME(NVM_GET_INFO),
1f370650
SS
489};
490
39bdb17e
SD
491static const struct iwl_hcmd_arr iwl_mvm_groups[] = {
492 [LEGACY_GROUP] = HCMD_ARR(iwl_mvm_legacy_names),
493 [LONG_GROUP] = HCMD_ARR(iwl_mvm_legacy_names),
5b086414 494 [SYSTEM_GROUP] = HCMD_ARR(iwl_mvm_system_names),
03098268 495 [MAC_CONF_GROUP] = HCMD_ARR(iwl_mvm_mac_conf_names),
39bdb17e 496 [PHY_OPS_GROUP] = HCMD_ARR(iwl_mvm_phy_names),
e0d8fdec 497 [DATA_PATH_GROUP] = HCMD_ARR(iwl_mvm_data_path_names),
0db056d3 498 [PROT_OFFLOAD_GROUP] = HCMD_ARR(iwl_mvm_prot_offload_names),
1f370650
SS
499 [REGULATORY_AND_NVM_GROUP] =
500 HCMD_ARR(iwl_mvm_regulatory_and_nvm_names),
39bdb17e
SD
501};
502
8ca151b5
JB
503/* this forward declaration can avoid to export the function */
504static void iwl_mvm_async_handlers_wk(struct work_struct *wk);
37577fe2 505static void iwl_mvm_d0i3_exit_work(struct work_struct *wk);
8ca151b5 506
0c0e2c71
IY
507static u32 calc_min_backoff(struct iwl_trans *trans, const struct iwl_cfg *cfg)
508{
509 const struct iwl_pwr_tx_backoff *pwr_tx_backoff = cfg->pwr_tx_backoffs;
510
511 if (!pwr_tx_backoff)
512 return 0;
513
514 while (pwr_tx_backoff->pwr) {
515 if (trans->dflt_pwr_limit >= pwr_tx_backoff->pwr)
516 return pwr_tx_backoff->backoff;
517
518 pwr_tx_backoff++;
519 }
520
521 return 0;
522}
523
4bfa47f3
EG
524static void iwl_mvm_fw_error_dump_wk(struct work_struct *work);
525
d3a108a4
AO
526static void iwl_mvm_tx_unblock_dwork(struct work_struct *work)
527{
528 struct iwl_mvm *mvm =
529 container_of(work, struct iwl_mvm, cs_tx_unblock_dwork.work);
530 struct ieee80211_vif *tx_blocked_vif;
531 struct iwl_mvm_vif *mvmvif;
532
533 mutex_lock(&mvm->mutex);
534
535 tx_blocked_vif =
536 rcu_dereference_protected(mvm->csa_tx_blocked_vif,
537 lockdep_is_held(&mvm->mutex));
538
539 if (!tx_blocked_vif)
540 goto unlock;
541
542 mvmvif = iwl_mvm_vif_from_mac80211(tx_blocked_vif);
543 iwl_mvm_modify_all_sta_disable_tx(mvm, mvmvif, false);
544 RCU_INIT_POINTER(mvm->csa_tx_blocked_vif, NULL);
545unlock:
546 mutex_unlock(&mvm->mutex);
547}
548
8ca151b5
JB
549static struct iwl_op_mode *
550iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,
551 const struct iwl_fw *fw, struct dentry *dbgfs_dir)
552{
553 struct ieee80211_hw *hw;
554 struct iwl_op_mode *op_mode;
555 struct iwl_mvm *mvm;
556 struct iwl_trans_config trans_cfg = {};
557 static const u8 no_reclaim_cmds[] = {
558 TX_CMD,
559 };
560 int err, scan_size;
0c0e2c71 561 u32 min_backoff;
8ca151b5 562
c4d83271
EG
563 /*
564 * We use IWL_MVM_STATION_COUNT to check the validity of the station
565 * index all over the driver - check that its value corresponds to the
566 * array size.
567 */
568 BUILD_BUG_ON(ARRAY_SIZE(mvm->fw_id_to_mac_id) != IWL_MVM_STATION_COUNT);
569
8ca151b5
JB
570 /********************************
571 * 1. Allocating and configuring HW data
572 ********************************/
573 hw = ieee80211_alloc_hw(sizeof(struct iwl_op_mode) +
574 sizeof(struct iwl_mvm),
575 &iwl_mvm_hw_ops);
576 if (!hw)
577 return NULL;
578
745160ee
OG
579 if (cfg->max_rx_agg_size)
580 hw->max_rx_aggregation_subframes = cfg->max_rx_agg_size;
581
77d96730
GG
582 if (cfg->max_tx_agg_size)
583 hw->max_tx_aggregation_subframes = cfg->max_tx_agg_size;
584
8ca151b5 585 op_mode = hw->priv;
8ca151b5
JB
586
587 mvm = IWL_OP_MODE_GET_MVM(op_mode);
588 mvm->dev = trans->dev;
589 mvm->trans = trans;
590 mvm->cfg = cfg;
591 mvm->fw = fw;
592 mvm->hw = hw;
593
de8ba41b
LK
594 mvm->init_status = 0;
595
0316d30e
JB
596 if (iwl_mvm_has_new_rx_api(mvm)) {
597 op_mode->ops = &iwl_mvm_ops_mq;
25c2b22c 598 trans->rx_mpdu_cmd_hdr_size = sizeof(struct iwl_rx_mpdu_desc);
0316d30e
JB
599 } else {
600 op_mode->ops = &iwl_mvm_ops;
25c2b22c
SS
601 trans->rx_mpdu_cmd_hdr_size =
602 sizeof(struct iwl_rx_mpdu_res_start);
0316d30e
JB
603
604 if (WARN_ON(trans->num_rx_queues > 1))
605 goto out_free;
606 }
607
291aa7c4
EH
608 mvm->restart_fw = iwlwifi_mod_params.restart_fw ? -1 : 0;
609
cf961e16 610 if (!iwl_mvm_is_dqa_supported(mvm)) {
cf961e16 611 mvm->last_agg_queue = mvm->cfg->base_params->num_of_queues - 1;
28d0793e
LK
612
613 if (mvm->cfg->base_params->num_of_queues == 16) {
614 mvm->aux_queue = 11;
615 mvm->first_agg_queue = 12;
616 } else {
617 mvm->aux_queue = 15;
618 mvm->first_agg_queue = 16;
619 }
cf961e16 620 } else {
28d0793e 621 mvm->aux_queue = IWL_MVM_DQA_AUX_QUEUE;
49f71713
SS
622 mvm->probe_queue = IWL_MVM_DQA_AP_PROBE_RESP_QUEUE;
623 mvm->p2p_dev_queue = IWL_MVM_DQA_P2P_DEVICE_QUEUE;
cf961e16
LK
624 mvm->first_agg_queue = IWL_MVM_DQA_MIN_DATA_QUEUE;
625 mvm->last_agg_queue = IWL_MVM_DQA_MAX_DATA_QUEUE;
626 }
1f3b0ff8 627 mvm->sf_state = SF_UNINIT;
1f370650
SS
628 if (iwl_mvm_has_new_tx_api(mvm))
629 mvm->cur_ucode = IWL_UCODE_REGULAR;
630 else
631 mvm->cur_ucode = IWL_UCODE_INIT;
c89e333d 632 mvm->drop_bcn_ap_mode = true;
19e737c9 633
8ca151b5 634 mutex_init(&mvm->mutex);
d15a747f 635 mutex_init(&mvm->d0i3_suspend_mutex);
8ca151b5
JB
636 spin_lock_init(&mvm->async_handlers_lock);
637 INIT_LIST_HEAD(&mvm->time_event_list);
b112889c 638 INIT_LIST_HEAD(&mvm->aux_roc_te_list);
8ca151b5
JB
639 INIT_LIST_HEAD(&mvm->async_handlers_list);
640 spin_lock_init(&mvm->time_event_lock);
4ecafae9 641 spin_lock_init(&mvm->queue_info_lock);
8ca151b5
JB
642
643 INIT_WORK(&mvm->async_handlers_wk, iwl_mvm_async_handlers_wk);
644 INIT_WORK(&mvm->roc_done_wk, iwl_mvm_roc_done_wk);
645 INIT_WORK(&mvm->sta_drained_wk, iwl_mvm_sta_drained_wk);
37577fe2 646 INIT_WORK(&mvm->d0i3_exit_work, iwl_mvm_d0i3_exit_work);
d2709ad7 647 INIT_DELAYED_WORK(&mvm->fw_dump_wk, iwl_mvm_fw_error_dump_wk);
1d3c3f63 648 INIT_DELAYED_WORK(&mvm->tdls_cs.dwork, iwl_mvm_tdls_ch_switch_work);
69e04642 649 INIT_DELAYED_WORK(&mvm->scan_timeout_dwork, iwl_mvm_scan_timeout_wk);
24afba76 650 INIT_WORK(&mvm->add_stream_wk, iwl_mvm_add_new_dqa_stream_wk);
8ca151b5 651
b2492501 652 spin_lock_init(&mvm->d0i3_tx_lock);
576eeee9 653 spin_lock_init(&mvm->refs_lock);
b2492501
AN
654 skb_queue_head_init(&mvm->d0i3_tx);
655 init_waitqueue_head(&mvm->d0i3_exit_waitq);
3a732c65 656 init_waitqueue_head(&mvm->rx_sync_waitq);
b2492501 657
0636b938
SS
658 atomic_set(&mvm->queue_sync_counter, 0);
659
8ca151b5
JB
660 SET_IEEE80211_DEV(mvm->hw, mvm->trans->dev);
661
d3a108a4
AO
662 INIT_DELAYED_WORK(&mvm->cs_tx_unblock_dwork, iwl_mvm_tx_unblock_dwork);
663
8ca151b5
JB
664 /*
665 * Populate the state variables that the transport layer needs
666 * to know about.
667 */
668 trans_cfg.op_mode = op_mode;
669 trans_cfg.no_reclaim_cmds = no_reclaim_cmds;
670 trans_cfg.n_no_reclaim_cmds = ARRAY_SIZE(no_reclaim_cmds);
6c4fbcbc 671 switch (iwlwifi_mod_params.amsdu_size) {
4bdd4dfe 672 case IWL_AMSDU_DEF:
6c4fbcbc
EG
673 case IWL_AMSDU_4K:
674 trans_cfg.rx_buf_size = IWL_AMSDU_4K;
675 break;
676 case IWL_AMSDU_8K:
677 trans_cfg.rx_buf_size = IWL_AMSDU_8K;
678 break;
679 case IWL_AMSDU_12K:
680 trans_cfg.rx_buf_size = IWL_AMSDU_12K;
681 break;
682 default:
683 pr_err("%s: Unsupported amsdu_size: %d\n", KBUILD_MODNAME,
684 iwlwifi_mod_params.amsdu_size);
685 trans_cfg.rx_buf_size = IWL_AMSDU_4K;
686 }
4bdd4dfe
EG
687
688 /* the hardware splits the A-MSDU */
689 if (mvm->cfg->mq_rx_supported)
690 trans_cfg.rx_buf_size = IWL_AMSDU_4K;
8ca151b5 691
4b87e5af
LC
692 trans->wide_cmd_header = true;
693 trans_cfg.bc_table_dword = true;
8ca151b5 694
39bdb17e
SD
695 trans_cfg.command_groups = iwl_mvm_groups;
696 trans_cfg.command_groups_size = ARRAY_SIZE(iwl_mvm_groups);
8ca151b5 697
097129c9
LK
698 if (iwl_mvm_is_dqa_supported(mvm))
699 trans_cfg.cmd_queue = IWL_MVM_DQA_CMD_QUEUE;
700 else
701 trans_cfg.cmd_queue = IWL_MVM_CMD_QUEUE;
b2d81db7 702 trans_cfg.cmd_fifo = IWL_MVM_TX_FIFO_CMD;
3a736bcb 703 trans_cfg.scd_set_active = true;
8ca151b5 704
21cb3222
JB
705 trans_cfg.cb_data_offs = offsetof(struct ieee80211_tx_info,
706 driver_data[2]);
707
b4821767 708 trans_cfg.sdio_adma_addr = fw->sdio_adma_addr;
41837ca9 709 trans_cfg.sw_csum_tx = IWL_MVM_SW_TX_CSUM_OFFLOAD;
b4821767 710
4cf677fd
EG
711 /* Set a short watchdog for the command queue */
712 trans_cfg.cmd_q_wdg_timeout =
5d42e7b2 713 iwl_mvm_get_wd_timeout(mvm, NULL, false, true);
4cf677fd 714
8ca151b5
JB
715 snprintf(mvm->hw->wiphy->fw_version,
716 sizeof(mvm->hw->wiphy->fw_version),
717 "%s", fw->fw_version);
718
719 /* Configure transport layer */
720 iwl_trans_configure(mvm->trans, &trans_cfg);
721
722 trans->rx_mpdu_cmd = REPLY_RX_MPDU_CMD;
09e350f7
LK
723 trans->dbg_dest_tlv = mvm->fw->dbg_dest_tlv;
724 trans->dbg_dest_reg_num = mvm->fw->dbg_dest_reg_num;
725 memcpy(trans->dbg_conf_tlv, mvm->fw->dbg_conf_tlv,
726 sizeof(trans->dbg_conf_tlv));
d2709ad7 727 trans->dbg_trigger_tlv = mvm->fw->dbg_trigger_tlv;
8ca151b5
JB
728
729 /* set up notification wait support */
730 iwl_notification_wait_init(&mvm->notif_wait);
731
732 /* Init phy db */
733 mvm->phy_db = iwl_phy_db_init(trans);
734 if (!mvm->phy_db) {
735 IWL_ERR(mvm, "Cannot init phy_db\n");
736 goto out_free;
737 }
738
739 IWL_INFO(mvm, "Detected %s, REV=0x%X\n",
740 mvm->cfg->name, mvm->trans->hw_rev);
741
4fb06283 742 if (iwlwifi_mod_params.nvm_file)
e02a9d60 743 mvm->nvm_file_name = iwlwifi_mod_params.nvm_file;
4fb06283
EH
744 else
745 IWL_DEBUG_EEPROM(mvm->trans->dev,
746 "working without external nvm file\n");
9ee718aa 747
56f2929b
SS
748 err = iwl_trans_start_hw(mvm->trans);
749 if (err)
14b485f0
EH
750 goto out_free;
751
56f2929b
SS
752 mutex_lock(&mvm->mutex);
753 iwl_mvm_ref(mvm, IWL_MVM_REF_INIT_UCODE);
8c5f47b1 754 err = iwl_run_init_mvm_ucode(mvm, true);
56f2929b
SS
755 if (!err || !iwlmvm_mod_params.init_dbg)
756 iwl_mvm_stop_device(mvm);
757 iwl_mvm_unref(mvm, IWL_MVM_REF_INIT_UCODE);
758 mutex_unlock(&mvm->mutex);
759 /* returns 0 if successful, 1 if success but in rfkill */
de8ba41b 760 if (err < 0) {
56f2929b
SS
761 IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", err);
762 goto out_free;
8ca151b5
JB
763 }
764
d2496221 765 scan_size = iwl_mvm_scan_size(mvm);
fb98be5e 766
8ca151b5
JB
767 mvm->scan_cmd = kmalloc(scan_size, GFP_KERNEL);
768 if (!mvm->scan_cmd)
769 goto out_free;
770
5a4b2afa
HD
771 /* Set EBS as successful as long as not stated otherwise by the FW. */
772 mvm->last_ebs_successful = true;
773
8ca151b5
JB
774 err = iwl_mvm_mac_setup_register(mvm);
775 if (err)
776 goto out_free;
1f370650 777 mvm->hw_registered = true;
8ca151b5 778
04ddc2aa
CRI
779 min_backoff = calc_min_backoff(trans, cfg);
780 iwl_mvm_thermal_initialize(mvm, min_backoff);
781
8ca151b5
JB
782 err = iwl_mvm_dbgfs_register(mvm, dbgfs_dir);
783 if (err)
784 goto out_unregister;
785
3848ab66
MG
786 memset(&mvm->rx_stats, 0, sizeof(struct mvm_statistics_rx));
787
33c85ead
LC
788 /* The transport always starts with a taken reference, we can
789 * release it now if d0i3 is supported */
790 if (iwl_mvm_is_d0i3_supported(mvm))
791 iwl_trans_unref(mvm->trans);
7498cf4c 792
ce792918
GG
793 iwl_mvm_tof_init(mvm);
794
8ca151b5
JB
795 return op_mode;
796
797 out_unregister:
de8ba41b
LK
798 if (iwlmvm_mod_params.init_dbg)
799 return op_mode;
800
8ca151b5 801 ieee80211_unregister_hw(mvm->hw);
1f370650 802 mvm->hw_registered = false;
91b0d119 803 iwl_mvm_leds_exit(mvm);
c221daf2 804 iwl_mvm_thermal_exit(mvm);
8ca151b5 805 out_free:
dbf73d4a 806 flush_delayed_work(&mvm->fw_dump_wk);
de8ba41b
LK
807
808 if (iwlmvm_mod_params.init_dbg)
809 return op_mode;
8ca151b5
JB
810 iwl_phy_db_free(mvm->phy_db);
811 kfree(mvm->scan_cmd);
56f2929b
SS
812 iwl_trans_op_mode_leave(trans);
813
8ca151b5
JB
814 ieee80211_free_hw(mvm->hw);
815 return NULL;
816}
817
818static void iwl_op_mode_mvm_stop(struct iwl_op_mode *op_mode)
819{
820 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
821 int i;
822
e27deb45
LC
823 /* If d0i3 is supported, we have released the reference that
824 * the transport started with, so we should take it back now
825 * that we are leaving.
826 */
827 if (iwl_mvm_is_d0i3_supported(mvm))
828 iwl_trans_ref(mvm->trans);
829
8ca151b5
JB
830 iwl_mvm_leds_exit(mvm);
831
c221daf2 832 iwl_mvm_thermal_exit(mvm);
9ee718aa 833
de8ba41b
LK
834 if (mvm->init_status & IWL_MVM_INIT_STATUS_REG_HW_INIT_COMPLETE) {
835 ieee80211_unregister_hw(mvm->hw);
836 mvm->init_status &= ~IWL_MVM_INIT_STATUS_REG_HW_INIT_COMPLETE;
837 }
8ca151b5
JB
838
839 kfree(mvm->scan_cmd);
e59647ea
EP
840 kfree(mvm->mcast_filter_cmd);
841 mvm->mcast_filter_cmd = NULL;
8ca151b5 842
afc66bb7
JB
843#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_IWLWIFI_DEBUGFS)
844 kfree(mvm->d3_resume_sram);
845#endif
846
a4082843 847 iwl_trans_op_mode_leave(mvm->trans);
8ca151b5
JB
848
849 iwl_phy_db_free(mvm->phy_db);
850 mvm->phy_db = NULL;
851
1dad3e0a 852 kfree(mvm->nvm_data);
ae2b21b0 853 for (i = 0; i < NVM_MAX_NUM_SECTIONS; i++)
8ca151b5
JB
854 kfree(mvm->nvm_sections[i].data);
855
ce792918
GG
856 iwl_mvm_tof_clean(mvm);
857
a2a57a35
EG
858 mutex_destroy(&mvm->mutex);
859 mutex_destroy(&mvm->d0i3_suspend_mutex);
860
8ca151b5
JB
861 ieee80211_free_hw(mvm->hw);
862}
863
864struct iwl_async_handler_entry {
865 struct list_head list;
866 struct iwl_rx_cmd_buffer rxb;
c9cb14a6 867 enum iwl_rx_handler_context context;
0416841d 868 void (*fn)(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb);
8ca151b5
JB
869};
870
871void iwl_mvm_async_handlers_purge(struct iwl_mvm *mvm)
872{
873 struct iwl_async_handler_entry *entry, *tmp;
874
875 spin_lock_bh(&mvm->async_handlers_lock);
876 list_for_each_entry_safe(entry, tmp, &mvm->async_handlers_list, list) {
877 iwl_free_rxb(&entry->rxb);
878 list_del(&entry->list);
879 kfree(entry);
880 }
881 spin_unlock_bh(&mvm->async_handlers_lock);
882}
883
884static void iwl_mvm_async_handlers_wk(struct work_struct *wk)
885{
886 struct iwl_mvm *mvm =
887 container_of(wk, struct iwl_mvm, async_handlers_wk);
888 struct iwl_async_handler_entry *entry, *tmp;
8098203f 889 LIST_HEAD(local_list);
8ca151b5
JB
890
891 /* Ensure that we are not in stop flow (check iwl_mvm_mac_stop) */
8ca151b5
JB
892
893 /*
894 * Sync with Rx path with a lock. Remove all the entries from this list,
895 * add them to a local one (lock free), and then handle them.
896 */
897 spin_lock_bh(&mvm->async_handlers_lock);
898 list_splice_init(&mvm->async_handlers_list, &local_list);
899 spin_unlock_bh(&mvm->async_handlers_lock);
900
901 list_for_each_entry_safe(entry, tmp, &local_list, list) {
c9cb14a6
CRI
902 if (entry->context == RX_HANDLER_ASYNC_LOCKED)
903 mutex_lock(&mvm->mutex);
0416841d 904 entry->fn(mvm, &entry->rxb);
8ca151b5
JB
905 iwl_free_rxb(&entry->rxb);
906 list_del(&entry->list);
c9cb14a6
CRI
907 if (entry->context == RX_HANDLER_ASYNC_LOCKED)
908 mutex_unlock(&mvm->mutex);
8ca151b5
JB
909 kfree(entry);
910 }
8ca151b5
JB
911}
912
917f39bb
EG
913static inline void iwl_mvm_rx_check_trigger(struct iwl_mvm *mvm,
914 struct iwl_rx_packet *pkt)
915{
916 struct iwl_fw_dbg_trigger_tlv *trig;
917 struct iwl_fw_dbg_trigger_cmd *cmds_trig;
917f39bb
EG
918 int i;
919
920 if (!iwl_fw_dbg_trigger_enabled(mvm->fw, FW_DBG_TRIGGER_FW_NOTIF))
921 return;
922
923 trig = iwl_fw_dbg_get_trigger(mvm->fw, FW_DBG_TRIGGER_FW_NOTIF);
924 cmds_trig = (void *)trig->data;
925
926 if (!iwl_fw_dbg_trigger_check_stop(mvm, NULL, trig))
927 return;
928
929 for (i = 0; i < ARRAY_SIZE(cmds_trig->cmds); i++) {
930 /* don't collect on CMD 0 */
931 if (!cmds_trig->cmds[i].cmd_id)
932 break;
933
0ab66e6d
SS
934 if (cmds_trig->cmds[i].cmd_id != pkt->hdr.cmd ||
935 cmds_trig->cmds[i].group_id != pkt->hdr.group_id)
917f39bb
EG
936 continue;
937
5d4f929e 938 iwl_mvm_fw_dbg_collect_trig(mvm, trig,
0ab66e6d
SS
939 "CMD 0x%02x.%02x received",
940 pkt->hdr.group_id, pkt->hdr.cmd);
917f39bb
EG
941 break;
942 }
943}
944
0316d30e
JB
945static void iwl_mvm_rx_common(struct iwl_mvm *mvm,
946 struct iwl_rx_cmd_buffer *rxb,
947 struct iwl_rx_packet *pkt)
8ca151b5 948{
0316d30e 949 int i;
1738d60b 950
917f39bb
EG
951 iwl_mvm_rx_check_trigger(mvm, pkt);
952
8ca151b5
JB
953 /*
954 * Do the notification wait before RX handlers so
955 * even if the RX handler consumes the RXB we have
956 * access to it in the notification wait entry.
957 */
958 iwl_notification_wait_notify(&mvm->notif_wait, pkt);
959
960 for (i = 0; i < ARRAY_SIZE(iwl_mvm_rx_handlers); i++) {
961 const struct iwl_rx_handlers *rx_h = &iwl_mvm_rx_handlers[i];
36eed56a
EG
962 struct iwl_async_handler_entry *entry;
963
1230b16b 964 if (rx_h->cmd_id != WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd))
36eed56a
EG
965 continue;
966
c9cb14a6 967 if (rx_h->context == RX_HANDLER_SYNC) {
0416841d 968 rx_h->fn(mvm, rxb);
f7e6469f 969 return;
0416841d 970 }
36eed56a
EG
971
972 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
973 /* we can't do much... */
974 if (!entry)
f7e6469f 975 return;
36eed56a
EG
976
977 entry->rxb._page = rxb_steal_page(rxb);
978 entry->rxb._offset = rxb->_offset;
979 entry->rxb._rx_page_order = rxb->_rx_page_order;
980 entry->fn = rx_h->fn;
c9cb14a6 981 entry->context = rx_h->context;
36eed56a
EG
982 spin_lock(&mvm->async_handlers_lock);
983 list_add_tail(&entry->list, &mvm->async_handlers_list);
984 spin_unlock(&mvm->async_handlers_lock);
985 schedule_work(&mvm->async_handlers_wk);
986 break;
8ca151b5 987 }
8ca151b5
JB
988}
989
0316d30e
JB
990static void iwl_mvm_rx(struct iwl_op_mode *op_mode,
991 struct napi_struct *napi,
992 struct iwl_rx_cmd_buffer *rxb)
993{
994 struct iwl_rx_packet *pkt = rxb_addr(rxb);
995 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
61b0f5d7 996 u16 cmd = WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd);
0316d30e 997
61b0f5d7 998 if (likely(cmd == WIDE_ID(LEGACY_GROUP, REPLY_RX_MPDU_CMD)))
0316d30e 999 iwl_mvm_rx_rx_mpdu(mvm, napi, rxb);
61b0f5d7 1000 else if (cmd == WIDE_ID(LEGACY_GROUP, REPLY_RX_PHY_CMD))
0316d30e
JB
1001 iwl_mvm_rx_rx_phy_cmd(mvm, rxb);
1002 else
1003 iwl_mvm_rx_common(mvm, rxb, pkt);
1004}
1005
1006static void iwl_mvm_rx_mq(struct iwl_op_mode *op_mode,
1007 struct napi_struct *napi,
1008 struct iwl_rx_cmd_buffer *rxb)
1009{
1010 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1011 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
61b0f5d7 1012 u16 cmd = WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd);
0316d30e 1013
61b0f5d7 1014 if (likely(cmd == WIDE_ID(LEGACY_GROUP, REPLY_RX_MPDU_CMD)))
780e87c2 1015 iwl_mvm_rx_mpdu_mq(mvm, napi, rxb, 0);
61b0f5d7
JB
1016 else if (unlikely(cmd == WIDE_ID(DATA_PATH_GROUP,
1017 RX_QUEUES_NOTIFICATION)))
94bb4481 1018 iwl_mvm_rx_queue_notif(mvm, rxb, 0);
61b0f5d7 1019 else if (cmd == WIDE_ID(LEGACY_GROUP, FRAME_RELEASE))
58035432 1020 iwl_mvm_rx_frame_release(mvm, napi, rxb, 0);
0316d30e
JB
1021 else
1022 iwl_mvm_rx_common(mvm, rxb, pkt);
1023}
1024
b4f7a9d1 1025void iwl_mvm_stop_mac_queues(struct iwl_mvm *mvm, unsigned long mq)
8ca151b5 1026{
4ecafae9 1027 int q;
8ca151b5 1028
4ecafae9 1029 if (WARN_ON_ONCE(!mq))
8ca151b5 1030 return;
8ca151b5 1031
4ecafae9
LK
1032 for_each_set_bit(q, &mq, IEEE80211_MAX_QUEUES) {
1033 if (atomic_inc_return(&mvm->mac80211_queue_stop_count[q]) > 1) {
1034 IWL_DEBUG_TX_QUEUES(mvm,
b4f7a9d1 1035 "mac80211 %d already stopped\n", q);
4ecafae9
LK
1036 continue;
1037 }
1038
1039 ieee80211_stop_queue(mvm->hw, q);
1040 }
8ca151b5
JB
1041}
1042
156f92f2
EG
1043static void iwl_mvm_async_cb(struct iwl_op_mode *op_mode,
1044 const struct iwl_device_cmd *cmd)
1045{
1046 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1047
1048 /*
1049 * For now, we only set the CMD_WANT_ASYNC_CALLBACK for ADD_STA
1050 * commands that need to block the Tx queues.
1051 */
1052 iwl_trans_block_txq_ptrs(mvm->trans, false);
1053}
1054
b4f7a9d1 1055static void iwl_mvm_stop_sw_queue(struct iwl_op_mode *op_mode, int hw_queue)
8ca151b5
JB
1056{
1057 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
4ecafae9 1058 unsigned long mq;
8ca151b5 1059
4ecafae9 1060 spin_lock_bh(&mvm->queue_info_lock);
34e10860 1061 mq = mvm->hw_queue_to_mac80211[hw_queue];
4ecafae9 1062 spin_unlock_bh(&mvm->queue_info_lock);
8ca151b5 1063
b4f7a9d1
LK
1064 iwl_mvm_stop_mac_queues(mvm, mq);
1065}
1066
1067void iwl_mvm_start_mac_queues(struct iwl_mvm *mvm, unsigned long mq)
1068{
1069 int q;
1070
4ecafae9 1071 if (WARN_ON_ONCE(!mq))
8ca151b5 1072 return;
8ca151b5 1073
4ecafae9
LK
1074 for_each_set_bit(q, &mq, IEEE80211_MAX_QUEUES) {
1075 if (atomic_dec_return(&mvm->mac80211_queue_stop_count[q]) > 0) {
1076 IWL_DEBUG_TX_QUEUES(mvm,
b4f7a9d1 1077 "mac80211 %d still stopped\n", q);
4ecafae9
LK
1078 continue;
1079 }
1080
1081 ieee80211_wake_queue(mvm->hw, q);
1082 }
8ca151b5
JB
1083}
1084
b4f7a9d1
LK
1085static void iwl_mvm_wake_sw_queue(struct iwl_op_mode *op_mode, int hw_queue)
1086{
1087 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1088 unsigned long mq;
1089
1090 spin_lock_bh(&mvm->queue_info_lock);
34e10860 1091 mq = mvm->hw_queue_to_mac80211[hw_queue];
b4f7a9d1
LK
1092 spin_unlock_bh(&mvm->queue_info_lock);
1093
1094 iwl_mvm_start_mac_queues(mvm, mq);
1095}
1096
6ad04359
JB
1097static void iwl_mvm_set_rfkill_state(struct iwl_mvm *mvm)
1098{
1099 bool state = iwl_mvm_is_radio_killed(mvm);
1100
1101 if (state)
1102 wake_up(&mvm->rx_sync_waitq);
1103
1104 wiphy_rfkill_set_hw_state(mvm->hw->wiphy, state);
1105}
1106
9ee718aa
EL
1107void iwl_mvm_set_hw_ctkill_state(struct iwl_mvm *mvm, bool state)
1108{
1109 if (state)
1110 set_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status);
1111 else
1112 clear_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status);
1113
6ad04359 1114 iwl_mvm_set_rfkill_state(mvm);
9ee718aa
EL
1115}
1116
14cfca71 1117static bool iwl_mvm_set_hw_rfkill_state(struct iwl_op_mode *op_mode, bool state)
8ca151b5
JB
1118{
1119 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
31b8b343 1120 bool calibrating = ACCESS_ONCE(mvm->calibrating);
8ca151b5
JB
1121
1122 if (state)
1123 set_bit(IWL_MVM_STATUS_HW_RFKILL, &mvm->status);
1124 else
1125 clear_bit(IWL_MVM_STATUS_HW_RFKILL, &mvm->status);
1126
6ad04359 1127 iwl_mvm_set_rfkill_state(mvm);
14cfca71 1128
31b8b343
EG
1129 /* iwl_run_init_mvm_ucode is waiting for results, abort it */
1130 if (calibrating)
1131 iwl_abort_notification_waits(&mvm->notif_wait);
1132
1133 /*
1134 * Stop the device if we run OPERATIONAL firmware or if we are in the
1135 * middle of the calibrations.
1136 */
1137 return state && (mvm->cur_ucode != IWL_UCODE_INIT || calibrating);
8ca151b5
JB
1138}
1139
1140static void iwl_mvm_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb)
1141{
1142 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1143 struct ieee80211_tx_info *info;
1144
1145 info = IEEE80211_SKB_CB(skb);
1146 iwl_trans_free_tx_cmd(mvm->trans, info->driver_data[1]);
1147 ieee80211_free_txskb(mvm->hw, skb);
1148}
1149
ac1ed416
JB
1150struct iwl_mvm_reprobe {
1151 struct device *dev;
1152 struct work_struct work;
1153};
1154
1155static void iwl_mvm_reprobe_wk(struct work_struct *wk)
1156{
1157 struct iwl_mvm_reprobe *reprobe;
1158
1159 reprobe = container_of(wk, struct iwl_mvm_reprobe, work);
1160 if (device_reprobe(reprobe->dev))
1161 dev_err(reprobe->dev, "reprobe failed!\n");
1162 kfree(reprobe);
1163 module_put(THIS_MODULE);
1164}
1165
4bfa47f3
EG
1166static void iwl_mvm_fw_error_dump_wk(struct work_struct *work)
1167{
1168 struct iwl_mvm *mvm =
d2709ad7 1169 container_of(work, struct iwl_mvm, fw_dump_wk.work);
4bfa47f3 1170
fb2380a2
LK
1171 if (iwl_mvm_ref_sync(mvm, IWL_MVM_REF_FW_DBG_COLLECT))
1172 return;
1173
4bfa47f3 1174 mutex_lock(&mvm->mutex);
145d90b6 1175
145d90b6 1176 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000) {
addce854 1177 /* stop recording */
145d90b6 1178 iwl_set_bits_prph(mvm->trans, MON_BUFF_SAMPLE_CTL, 0x100);
addce854
EG
1179
1180 iwl_mvm_fw_error_dump(mvm);
1181
1182 /* start recording again if the firmware is not crashed */
1183 if (!test_bit(STATUS_FW_ERROR, &mvm->trans->status) &&
3e731484 1184 mvm->fw->dbg_dest_tlv) {
addce854
EG
1185 iwl_clear_bits_prph(mvm->trans,
1186 MON_BUFF_SAMPLE_CTL, 0x100);
3e731484
LK
1187 iwl_clear_bits_prph(mvm->trans,
1188 MON_BUFF_SAMPLE_CTL, 0x1);
1189 iwl_set_bits_prph(mvm->trans, MON_BUFF_SAMPLE_CTL, 0x1);
1190 }
145d90b6 1191 } else {
addce854
EG
1192 u32 in_sample = iwl_read_prph(mvm->trans, DBGC_IN_SAMPLE);
1193 u32 out_ctrl = iwl_read_prph(mvm->trans, DBGC_OUT_CTRL);
1194
1195 /* stop recording */
145d90b6 1196 iwl_write_prph(mvm->trans, DBGC_IN_SAMPLE, 0);
145d90b6 1197 udelay(100);
addce854
EG
1198 iwl_write_prph(mvm->trans, DBGC_OUT_CTRL, 0);
1199 /* wait before we collect the data till the DBGC stop */
1200 udelay(500);
145d90b6 1201
addce854 1202 iwl_mvm_fw_error_dump(mvm);
e66e0b70 1203
addce854
EG
1204 /* start recording again if the firmware is not crashed */
1205 if (!test_bit(STATUS_FW_ERROR, &mvm->trans->status) &&
1206 mvm->fw->dbg_dest_tlv) {
1207 iwl_write_prph(mvm->trans, DBGC_IN_SAMPLE, in_sample);
1208 iwl_write_prph(mvm->trans, DBGC_OUT_CTRL, out_ctrl);
1209 }
1210 }
e66e0b70 1211
4bfa47f3 1212 mutex_unlock(&mvm->mutex);
fb2380a2
LK
1213
1214 iwl_mvm_unref(mvm, IWL_MVM_REF_FW_DBG_COLLECT);
4bfa47f3
EG
1215}
1216
b08c1d97 1217void iwl_mvm_nic_restart(struct iwl_mvm *mvm, bool fw_error)
8ca151b5 1218{
8ca151b5
JB
1219 iwl_abort_notification_waits(&mvm->notif_wait);
1220
992f81fc
DS
1221 /*
1222 * This is a bit racy, but worst case we tell mac80211 about
1223 * a stopped/aborted scan when that was already done which
1224 * is not a problem. It is necessary to abort any os scan
1225 * here because mac80211 requires having the scan cleared
1226 * before restarting.
1227 * We'll reset the scan_status to NONE in restart cleanup in
1228 * the next start() call from mac80211. If restart isn't called
1229 * (no fw restart) scan status will stay busy.
1230 */
4ffb3650 1231 iwl_mvm_report_scan_aborted(mvm);
992f81fc 1232
8ca151b5
JB
1233 /*
1234 * If we're restarting already, don't cycle restarts.
1235 * If INIT fw asserted, it will likely fail again.
1236 * If WoWLAN fw asserted, don't restart either, mac80211
1237 * can't recover this since we're already half suspended.
1238 */
60f1071c 1239 if (!mvm->restart_fw && fw_error) {
36fb9017
OG
1240 iwl_mvm_fw_dbg_collect_desc(mvm, &iwl_mvm_dump_desc_assert,
1241 NULL);
60f1071c
LC
1242 } else if (test_and_set_bit(IWL_MVM_STATUS_IN_HW_RESTART,
1243 &mvm->status)) {
ac1ed416
JB
1244 struct iwl_mvm_reprobe *reprobe;
1245
1246 IWL_ERR(mvm,
1247 "Firmware error during reconfiguration - reprobe!\n");
1248
1249 /*
1250 * get a module reference to avoid doing this while unloading
1251 * anyway and to avoid scheduling a work with code that's
1252 * being removed.
1253 */
1254 if (!try_module_get(THIS_MODULE)) {
1255 IWL_ERR(mvm, "Module is being unloaded - abort\n");
1256 return;
1257 }
1258
1259 reprobe = kzalloc(sizeof(*reprobe), GFP_ATOMIC);
1260 if (!reprobe) {
1261 module_put(THIS_MODULE);
1262 return;
1263 }
1264 reprobe->dev = mvm->trans->dev;
1265 INIT_WORK(&reprobe->work, iwl_mvm_reprobe_wk);
1266 schedule_work(&reprobe->work);
1f370650
SS
1267 } else if (mvm->cur_ucode == IWL_UCODE_REGULAR &&
1268 mvm->hw_registered) {
7498cf4c
EP
1269 /* don't let the transport/FW power down */
1270 iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
1271
b08c1d97 1272 if (fw_error && mvm->restart_fw > 0)
291aa7c4 1273 mvm->restart_fw--;
8ca151b5
JB
1274 ieee80211_restart_hw(mvm->hw);
1275 }
1276}
1277
715c998f
EG
1278static void iwl_mvm_nic_error(struct iwl_op_mode *op_mode)
1279{
1280 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1281
1282 iwl_mvm_dump_nic_error_log(mvm);
1bd3cbc1 1283
b08c1d97 1284 iwl_mvm_nic_restart(mvm, true);
715c998f
EG
1285}
1286
8ca151b5
JB
1287static void iwl_mvm_cmd_queue_full(struct iwl_op_mode *op_mode)
1288{
715c998f
EG
1289 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1290
8ca151b5 1291 WARN_ON(1);
b08c1d97 1292 iwl_mvm_nic_restart(mvm, true);
8ca151b5
JB
1293}
1294
37577fe2
EP
1295struct iwl_d0i3_iter_data {
1296 struct iwl_mvm *mvm;
a3f7ba5c 1297 struct ieee80211_vif *connected_vif;
37577fe2
EP
1298 u8 ap_sta_id;
1299 u8 vif_count;
b2492501
AN
1300 u8 offloading_tid;
1301 bool disable_offloading;
37577fe2
EP
1302};
1303
b2492501
AN
1304static bool iwl_mvm_disallow_offloading(struct iwl_mvm *mvm,
1305 struct ieee80211_vif *vif,
1306 struct iwl_d0i3_iter_data *iter_data)
1307{
1308 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
b2492501
AN
1309 struct iwl_mvm_sta *mvmsta;
1310 u32 available_tids = 0;
1311 u8 tid;
1312
1313 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION ||
0ae98812 1314 mvmvif->ap_sta_id == IWL_MVM_INVALID_STA))
b2492501
AN
1315 return false;
1316
13303c0f
SS
1317 mvmsta = iwl_mvm_sta_from_staid_rcu(mvm, mvmvif->ap_sta_id);
1318 if (!mvmsta)
b2492501
AN
1319 return false;
1320
b2492501
AN
1321 spin_lock_bh(&mvmsta->lock);
1322 for (tid = 0; tid < IWL_MAX_TID_COUNT; tid++) {
1323 struct iwl_mvm_tid_data *tid_data = &mvmsta->tid_data[tid];
1324
1325 /*
1326 * in case of pending tx packets, don't use this tid
1327 * for offloading in order to prevent reuse of the same
1328 * qos seq counters.
1329 */
dd32162d 1330 if (iwl_mvm_tid_queued(mvm, tid_data))
b2492501
AN
1331 continue;
1332
1333 if (tid_data->state != IWL_AGG_OFF)
1334 continue;
1335
1336 available_tids |= BIT(tid);
1337 }
1338 spin_unlock_bh(&mvmsta->lock);
1339
1340 /*
1341 * disallow protocol offloading if we have no available tid
1342 * (with no pending frames and no active aggregation,
1343 * as we don't handle "holes" properly - the scheduler needs the
1344 * frame's seq number and TFD index to match)
1345 */
1346 if (!available_tids)
1347 return true;
1348
1349 /* for simplicity, just use the first available tid */
1350 iter_data->offloading_tid = ffs(available_tids) - 1;
1351 return false;
1352}
1353
d6230972
EP
1354static void iwl_mvm_enter_d0i3_iterator(void *_data, u8 *mac,
1355 struct ieee80211_vif *vif)
1356{
37577fe2
EP
1357 struct iwl_d0i3_iter_data *data = _data;
1358 struct iwl_mvm *mvm = data->mvm;
1359 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
d6230972
EP
1360 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO | CMD_SEND_IN_IDLE;
1361
1362 IWL_DEBUG_RPM(mvm, "entering D0i3 - vif %pM\n", vif->addr);
1363 if (vif->type != NL80211_IFTYPE_STATION ||
1364 !vif->bss_conf.assoc)
1365 return;
1366
b2492501
AN
1367 /*
1368 * in case of pending tx packets or active aggregations,
1369 * avoid offloading features in order to prevent reuse of
1370 * the same qos seq counters.
1371 */
1372 if (iwl_mvm_disallow_offloading(mvm, vif, data))
1373 data->disable_offloading = true;
1374
d6230972 1375 iwl_mvm_update_d0i3_power_mode(mvm, vif, true, flags);
c97dab40
SS
1376 iwl_mvm_send_proto_offload(mvm, vif, data->disable_offloading,
1377 false, flags);
d6230972
EP
1378
1379 /*
1380 * on init/association, mvm already configures POWER_TABLE_CMD
1381 * and REPLY_MCAST_FILTER_CMD, so currently don't
1382 * reconfigure them (we might want to use different
1383 * params later on, though).
1384 */
37577fe2
EP
1385 data->ap_sta_id = mvmvif->ap_sta_id;
1386 data->vif_count++;
a3f7ba5c
EP
1387
1388 /*
1389 * no new commands can be sent at this stage, so it's safe
1390 * to save the vif pointer during d0i3 entrance.
1391 */
1392 data->connected_vif = vif;
d6230972
EP
1393}
1394
1a95c8df 1395static void iwl_mvm_set_wowlan_data(struct iwl_mvm *mvm,
c8b06a99 1396 struct iwl_wowlan_config_cmd *cmd,
1a95c8df
EP
1397 struct iwl_d0i3_iter_data *iter_data)
1398{
1399 struct ieee80211_sta *ap_sta;
1400 struct iwl_mvm_sta *mvm_ap_sta;
1401
0ae98812 1402 if (iter_data->ap_sta_id == IWL_MVM_INVALID_STA)
1a95c8df
EP
1403 return;
1404
1405 rcu_read_lock();
1406
1407 ap_sta = rcu_dereference(mvm->fw_id_to_mac_id[iter_data->ap_sta_id]);
1408 if (IS_ERR_OR_NULL(ap_sta))
1409 goto out;
1410
1411 mvm_ap_sta = iwl_mvm_sta_from_mac80211(ap_sta);
c8b06a99 1412 cmd->is_11n_connection = ap_sta->ht_cap.ht_supported;
b2492501 1413 cmd->offloading_tid = iter_data->offloading_tid;
70b4c536 1414 cmd->flags = ENABLE_L3_FILTERING | ENABLE_NBNS_FILTERING |
0db056d3 1415 ENABLE_DHCP_FILTERING | ENABLE_STORE_BEACON;
1a95c8df
EP
1416 /*
1417 * The d0i3 uCode takes care of the nonqos counters,
1418 * so configure only the qos seq ones.
1419 */
c8b06a99 1420 iwl_mvm_set_wowlan_qos_seq(mvm_ap_sta, cmd);
1a95c8df
EP
1421out:
1422 rcu_read_unlock();
1423}
6735943f
EP
1424
1425int iwl_mvm_enter_d0i3(struct iwl_op_mode *op_mode)
b3370d47
EP
1426{
1427 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
98ee7783 1428 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO | CMD_SEND_IN_IDLE;
b77f06d9 1429 int ret;
37577fe2
EP
1430 struct iwl_d0i3_iter_data d0i3_iter_data = {
1431 .mvm = mvm,
1432 };
c8b06a99
EG
1433 struct iwl_wowlan_config_cmd wowlan_config_cmd = {
1434 .wakeup_filter = cpu_to_le32(IWL_WOWLAN_WAKEUP_RX_FRAME |
1435 IWL_WOWLAN_WAKEUP_BEACON_MISS |
0db056d3 1436 IWL_WOWLAN_WAKEUP_LINK_CHANGE),
b77f06d9 1437 };
98ee7783
AN
1438 struct iwl_d3_manager_config d3_cfg_cmd = {
1439 .min_sleep_time = cpu_to_le32(1000),
d9f1fc20 1440 .wakeup_flags = cpu_to_le32(IWL_WAKEUP_D3_CONFIG_FW_ERROR),
98ee7783 1441 };
b3370d47
EP
1442
1443 IWL_DEBUG_RPM(mvm, "MVM entering D0i3\n");
98ee7783 1444
08f0d23d
EP
1445 if (WARN_ON_ONCE(mvm->cur_ucode != IWL_UCODE_REGULAR))
1446 return -EINVAL;
1447
b2492501 1448 set_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
b2492501 1449
f4cf8680
EP
1450 /*
1451 * iwl_mvm_ref_sync takes a reference before checking the flag.
1452 * so by checking there is no held reference we prevent a state
1453 * in which iwl_mvm_ref_sync continues successfully while we
1454 * configure the firmware to enter d0i3
1455 */
1456 if (iwl_mvm_ref_taken(mvm)) {
1457 IWL_DEBUG_RPM(mvm->trans, "abort d0i3 due to taken ref\n");
1458 clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
caf1578a 1459 wake_up(&mvm->d0i3_exit_waitq);
f4cf8680
EP
1460 return 1;
1461 }
1462
d6230972
EP
1463 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
1464 IEEE80211_IFACE_ITER_NORMAL,
1465 iwl_mvm_enter_d0i3_iterator,
37577fe2
EP
1466 &d0i3_iter_data);
1467 if (d0i3_iter_data.vif_count == 1) {
1468 mvm->d0i3_ap_sta_id = d0i3_iter_data.ap_sta_id;
b2492501 1469 mvm->d0i3_offloading = !d0i3_iter_data.disable_offloading;
37577fe2
EP
1470 } else {
1471 WARN_ON_ONCE(d0i3_iter_data.vif_count > 1);
0ae98812 1472 mvm->d0i3_ap_sta_id = IWL_MVM_INVALID_STA;
b2492501 1473 mvm->d0i3_offloading = false;
37577fe2 1474 }
d6230972 1475
ecc7c518
EG
1476 /* make sure we have no running tx while configuring the seqno */
1477 synchronize_net();
1478
eb3908d3
LC
1479 /* Flush the hw queues, in case something got queued during entry */
1480 ret = iwl_mvm_flush_tx_path(mvm, iwl_mvm_flushable_queues(mvm), flags);
1481 if (ret)
1482 return ret;
1483
183edd84 1484 /* configure wowlan configuration only if needed */
0ae98812 1485 if (mvm->d0i3_ap_sta_id != IWL_MVM_INVALID_STA) {
0db056d3
SS
1486 /* wake on beacons only if beacon storing isn't supported */
1487 if (!fw_has_capa(&mvm->fw->ucode_capa,
1488 IWL_UCODE_TLV_CAPA_BEACON_STORING))
1489 wowlan_config_cmd.wakeup_filter |=
1490 cpu_to_le32(IWL_WOWLAN_WAKEUP_BCN_FILTERING);
1491
a3f7ba5c
EP
1492 iwl_mvm_wowlan_config_key_params(mvm,
1493 d0i3_iter_data.connected_vif,
1494 true, flags);
1495
183edd84
EP
1496 iwl_mvm_set_wowlan_data(mvm, &wowlan_config_cmd,
1497 &d0i3_iter_data);
1498
1499 ret = iwl_mvm_send_cmd_pdu(mvm, WOWLAN_CONFIGURATION, flags,
1500 sizeof(wowlan_config_cmd),
1501 &wowlan_config_cmd);
1502 if (ret)
1503 return ret;
1504 }
b77f06d9 1505
98ee7783
AN
1506 return iwl_mvm_send_cmd_pdu(mvm, D3_CONFIG_CMD,
1507 flags | CMD_MAKE_TRANS_IDLE,
1508 sizeof(d3_cfg_cmd), &d3_cfg_cmd);
b3370d47
EP
1509}
1510
d6230972
EP
1511static void iwl_mvm_exit_d0i3_iterator(void *_data, u8 *mac,
1512 struct ieee80211_vif *vif)
1513{
1514 struct iwl_mvm *mvm = _data;
1515 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO;
1516
1517 IWL_DEBUG_RPM(mvm, "exiting D0i3 - vif %pM\n", vif->addr);
1518 if (vif->type != NL80211_IFTYPE_STATION ||
1519 !vif->bss_conf.assoc)
1520 return;
1521
1522 iwl_mvm_update_d0i3_power_mode(mvm, vif, false, flags);
1523}
1524
a3f7ba5c 1525struct iwl_mvm_d0i3_exit_work_iter_data {
b3df2247 1526 struct iwl_mvm *mvm;
a3f7ba5c 1527 struct iwl_wowlan_status *status;
b3df2247
DS
1528 u32 wakeup_reasons;
1529};
1530
a3f7ba5c
EP
1531static void iwl_mvm_d0i3_exit_work_iter(void *_data, u8 *mac,
1532 struct ieee80211_vif *vif)
37577fe2 1533{
a3f7ba5c 1534 struct iwl_mvm_d0i3_exit_work_iter_data *data = _data;
37577fe2 1535 struct iwl_mvm_vif *mvmvif = iwl_mvm_vif_from_mac80211(vif);
a3f7ba5c 1536 u32 reasons = data->wakeup_reasons;
37577fe2 1537
a3f7ba5c
EP
1538 /* consider only the relevant station interface */
1539 if (vif->type != NL80211_IFTYPE_STATION || !vif->bss_conf.assoc ||
1540 data->mvm->d0i3_ap_sta_id != mvmvif->ap_sta_id)
1541 return;
1542
1543 if (reasons & IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_DEAUTH)
1544 iwl_mvm_connection_loss(data->mvm, vif, "D0i3");
1545 else if (reasons & IWL_WOWLAN_WAKEUP_BY_DISCONNECTION_ON_MISSED_BEACON)
1546 ieee80211_beacon_loss(vif);
1547 else
1548 iwl_mvm_d0i3_update_keys(data->mvm, vif, data->status);
37577fe2
EP
1549}
1550
b2492501
AN
1551void iwl_mvm_d0i3_enable_tx(struct iwl_mvm *mvm, __le16 *qos_seq)
1552{
1553 struct ieee80211_sta *sta = NULL;
1554 struct iwl_mvm_sta *mvm_ap_sta;
1555 int i;
1556 bool wake_queues = false;
1557
1558 lockdep_assert_held(&mvm->mutex);
1559
1560 spin_lock_bh(&mvm->d0i3_tx_lock);
1561
0ae98812 1562 if (mvm->d0i3_ap_sta_id == IWL_MVM_INVALID_STA)
b2492501
AN
1563 goto out;
1564
1565 IWL_DEBUG_RPM(mvm, "re-enqueue packets\n");
1566
1567 /* get the sta in order to update seq numbers and re-enqueue skbs */
1568 sta = rcu_dereference_protected(
1569 mvm->fw_id_to_mac_id[mvm->d0i3_ap_sta_id],
1570 lockdep_is_held(&mvm->mutex));
1571
1572 if (IS_ERR_OR_NULL(sta)) {
1573 sta = NULL;
1574 goto out;
1575 }
1576
1577 if (mvm->d0i3_offloading && qos_seq) {
1578 /* update qos seq numbers if offloading was enabled */
9d8ce6af 1579 mvm_ap_sta = iwl_mvm_sta_from_mac80211(sta);
b2492501
AN
1580 for (i = 0; i < IWL_MAX_TID_COUNT; i++) {
1581 u16 seq = le16_to_cpu(qos_seq[i]);
1582 /* firmware stores last-used one, we store next one */
1583 seq += 0x10;
1584 mvm_ap_sta->tid_data[i].seq_number = seq;
1585 }
1586 }
1587out:
1588 /* re-enqueue (or drop) all packets */
1589 while (!skb_queue_empty(&mvm->d0i3_tx)) {
1590 struct sk_buff *skb = __skb_dequeue(&mvm->d0i3_tx);
1591
1592 if (!sta || iwl_mvm_tx_skb(mvm, skb, sta))
1593 ieee80211_free_txskb(mvm->hw, skb);
1594
1595 /* if the skb_queue is not empty, we need to wake queues */
1596 wake_queues = true;
1597 }
1598 clear_bit(IWL_MVM_STATUS_IN_D0I3, &mvm->status);
1599 wake_up(&mvm->d0i3_exit_waitq);
0ae98812 1600 mvm->d0i3_ap_sta_id = IWL_MVM_INVALID_STA;
b2492501
AN
1601 if (wake_queues)
1602 ieee80211_wake_queues(mvm->hw);
1603
1604 spin_unlock_bh(&mvm->d0i3_tx_lock);
1605}
1606
37577fe2
EP
1607static void iwl_mvm_d0i3_exit_work(struct work_struct *wk)
1608{
1609 struct iwl_mvm *mvm = container_of(wk, struct iwl_mvm, d0i3_exit_work);
1610 struct iwl_host_cmd get_status_cmd = {
1611 .id = WOWLAN_GET_STATUSES,
a1022927 1612 .flags = CMD_HIGH_PRIO | CMD_WANT_SKB,
37577fe2 1613 };
a3f7ba5c
EP
1614 struct iwl_mvm_d0i3_exit_work_iter_data iter_data = {
1615 .mvm = mvm,
1616 };
1617
3afec639 1618 struct iwl_wowlan_status *status;
37577fe2 1619 int ret;
a3f7ba5c 1620 u32 wakeup_reasons = 0;
b2492501 1621 __le16 *qos_seq = NULL;
37577fe2
EP
1622
1623 mutex_lock(&mvm->mutex);
1624 ret = iwl_mvm_send_cmd(mvm, &get_status_cmd);
1625 if (ret)
1626 goto out;
1627
37577fe2
EP
1628 status = (void *)get_status_cmd.resp_pkt->data;
1629 wakeup_reasons = le32_to_cpu(status->wakeup_reasons);
b2492501 1630 qos_seq = status->qos_seq_ctr;
37577fe2
EP
1631
1632 IWL_DEBUG_RPM(mvm, "wakeup reasons: 0x%x\n", wakeup_reasons);
1633
a3f7ba5c
EP
1634 iter_data.wakeup_reasons = wakeup_reasons;
1635 iter_data.status = status;
1636 ieee80211_iterate_active_interfaces(mvm->hw,
1637 IEEE80211_IFACE_ITER_NORMAL,
1638 iwl_mvm_d0i3_exit_work_iter,
1639 &iter_data);
37577fe2 1640out:
b2492501 1641 iwl_mvm_d0i3_enable_tx(mvm, qos_seq);
47c8b154 1642
7c014e35
EP
1643 IWL_DEBUG_INFO(mvm, "d0i3 exit completed (wakeup reasons: 0x%x)\n",
1644 wakeup_reasons);
1645
e5629be7
EP
1646 /* qos_seq might point inside resp_pkt, so free it only now */
1647 if (get_status_cmd.resp_pkt)
1648 iwl_free_resp(&get_status_cmd);
1649
47c8b154
JD
1650 /* the FW might have updated the regdomain */
1651 iwl_mvm_update_changed_regdom(mvm);
1652
d15a747f 1653 iwl_mvm_unref(mvm, IWL_MVM_REF_EXIT_WORK);
37577fe2
EP
1654 mutex_unlock(&mvm->mutex);
1655}
1656
d15a747f 1657int _iwl_mvm_exit_d0i3(struct iwl_mvm *mvm)
b3370d47 1658{
98ee7783
AN
1659 u32 flags = CMD_ASYNC | CMD_HIGH_PRIO | CMD_SEND_IN_IDLE |
1660 CMD_WAKE_UP_TRANS;
d6230972 1661 int ret;
b3370d47
EP
1662
1663 IWL_DEBUG_RPM(mvm, "MVM exiting D0i3\n");
98ee7783 1664
08f0d23d
EP
1665 if (WARN_ON_ONCE(mvm->cur_ucode != IWL_UCODE_REGULAR))
1666 return -EINVAL;
1667
d15a747f
EP
1668 mutex_lock(&mvm->d0i3_suspend_mutex);
1669 if (test_bit(D0I3_DEFER_WAKEUP, &mvm->d0i3_suspend_flags)) {
1670 IWL_DEBUG_RPM(mvm, "Deferring d0i3 exit until resume\n");
1671 __set_bit(D0I3_PENDING_WAKEUP, &mvm->d0i3_suspend_flags);
1672 mutex_unlock(&mvm->d0i3_suspend_mutex);
1673 return 0;
1674 }
1675 mutex_unlock(&mvm->d0i3_suspend_mutex);
1676
d6230972
EP
1677 ret = iwl_mvm_send_cmd_pdu(mvm, D0I3_END_CMD, flags, 0, NULL);
1678 if (ret)
37577fe2 1679 goto out;
d6230972
EP
1680
1681 ieee80211_iterate_active_interfaces_atomic(mvm->hw,
1682 IEEE80211_IFACE_ITER_NORMAL,
1683 iwl_mvm_exit_d0i3_iterator,
1684 mvm);
37577fe2
EP
1685out:
1686 schedule_work(&mvm->d0i3_exit_work);
1687 return ret;
b3370d47
EP
1688}
1689
6735943f 1690int iwl_mvm_exit_d0i3(struct iwl_op_mode *op_mode)
d15a747f
EP
1691{
1692 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
1693
1694 iwl_mvm_ref(mvm, IWL_MVM_REF_EXIT_WORK);
1695 return _iwl_mvm_exit_d0i3(mvm);
1696}
1697
0316d30e
JB
1698#define IWL_MVM_COMMON_OPS \
1699 /* these could be differentiated */ \
156f92f2 1700 .async_cb = iwl_mvm_async_cb, \
0316d30e
JB
1701 .queue_full = iwl_mvm_stop_sw_queue, \
1702 .queue_not_full = iwl_mvm_wake_sw_queue, \
1703 .hw_rf_kill = iwl_mvm_set_hw_rfkill_state, \
1704 .free_skb = iwl_mvm_free_skb, \
1705 .nic_error = iwl_mvm_nic_error, \
1706 .cmd_queue_full = iwl_mvm_cmd_queue_full, \
1707 .nic_config = iwl_mvm_nic_config, \
1708 .enter_d0i3 = iwl_mvm_enter_d0i3, \
1709 .exit_d0i3 = iwl_mvm_exit_d0i3, \
1710 /* as we only register one, these MUST be common! */ \
1711 .start = iwl_op_mode_mvm_start, \
1712 .stop = iwl_op_mode_mvm_stop
1713
8ca151b5 1714static const struct iwl_op_mode_ops iwl_mvm_ops = {
0316d30e
JB
1715 IWL_MVM_COMMON_OPS,
1716 .rx = iwl_mvm_rx,
1717};
1718
1719static void iwl_mvm_rx_mq_rss(struct iwl_op_mode *op_mode,
1720 struct napi_struct *napi,
1721 struct iwl_rx_cmd_buffer *rxb,
1722 unsigned int queue)
1723{
1724 struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode);
585a6fcc 1725 struct iwl_rx_packet *pkt = rxb_addr(rxb);
61b0f5d7 1726 u16 cmd = WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd);
0316d30e 1727
61b0f5d7 1728 if (unlikely(cmd == WIDE_ID(LEGACY_GROUP, FRAME_RELEASE)))
a338384b 1729 iwl_mvm_rx_frame_release(mvm, napi, rxb, queue);
61b0f5d7
JB
1730 else if (unlikely(cmd == WIDE_ID(DATA_PATH_GROUP,
1731 RX_QUEUES_NOTIFICATION)))
94bb4481 1732 iwl_mvm_rx_queue_notif(mvm, rxb, queue);
61b0f5d7 1733 else if (likely(cmd == WIDE_ID(LEGACY_GROUP, REPLY_RX_MPDU_CMD)))
585a6fcc 1734 iwl_mvm_rx_mpdu_mq(mvm, napi, rxb, queue);
0316d30e
JB
1735}
1736
1737static const struct iwl_op_mode_ops iwl_mvm_ops_mq = {
1738 IWL_MVM_COMMON_OPS,
1739 .rx = iwl_mvm_rx_mq,
1740 .rx_rss = iwl_mvm_rx_mq_rss,
8ca151b5 1741};