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