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