1 /******************************************************************************
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.
8 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
9 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
10 * Copyright(c) 2012 - 2014, 2018 - 2020 Intel Corporation
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * The full GNU General Public License is included in this distribution
22 * in the file called COPYING.
24 * Contact Information:
25 * Intel Linux Wireless <linuxwifi@intel.com>
26 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
31 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
32 * Copyright(c) 2012 - 2014, 2018 - 2020 Intel Corporation
33 * All rights reserved.
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
39 * * Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * * Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in
43 * the documentation and/or other materials provided with the
45 * * Neither the name Intel Corporation nor the names of its
46 * contributors may be used to endorse or promote products derived
47 * from this software without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
50 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
51 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
52 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
53 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
54 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
55 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
59 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *****************************************************************************/
62 #include <net/mac80211.h>
63 #include <linux/netdevice.h>
65 #include "iwl-trans.h"
66 #include "iwl-op-mode.h"
68 #include "iwl-debug.h"
69 #include "iwl-csr.h" /* for iwl_mvm_rx_card_state_notif */
70 #include "iwl-io.h" /* for iwl_mvm_rx_card_state_notif */
76 #include "iwl-phy-db.h"
77 #include "iwl-modparams.h"
78 #include "iwl-nvm-parse.h"
80 #define MVM_UCODE_ALIVE_TIMEOUT HZ
81 #define MVM_UCODE_CALIB_TIMEOUT (2*HZ)
83 #define UCODE_VALID_OK cpu_to_le32(0x1)
85 struct iwl_mvm_alive_data
{
90 /* set device type and latency */
91 static int iwl_set_soc_latency(struct iwl_mvm
*mvm
)
93 struct iwl_soc_configuration_cmd cmd
= {};
97 * In VER_1 of this command, the discrete value is considered
98 * an integer; In VER_2, it's a bitmask. Since we have only 2
99 * values in VER_1, this is backwards-compatible with VER_2,
100 * as long as we don't set any other bits.
102 if (!mvm
->trans
->trans_cfg
->integrated
)
103 cmd
.flags
= cpu_to_le32(SOC_CONFIG_CMD_FLAGS_DISCRETE
);
105 if (iwl_mvm_lookup_cmd_ver(mvm
->fw
, IWL_ALWAYS_LONG_GROUP
,
106 SCAN_REQ_UMAC
) >= 2 &&
107 (mvm
->trans
->trans_cfg
->low_latency_xtal
))
108 cmd
.flags
|= cpu_to_le32(SOC_CONFIG_CMD_FLAGS_LOW_LATENCY
);
110 cmd
.latency
= cpu_to_le32(mvm
->trans
->trans_cfg
->xtal_latency
);
112 ret
= iwl_mvm_send_cmd_pdu(mvm
, iwl_cmd_id(SOC_CONFIGURATION_CMD
,
116 IWL_ERR(mvm
, "Failed to set soc latency: %d\n", ret
);
120 static int iwl_send_tx_ant_cfg(struct iwl_mvm
*mvm
, u8 valid_tx_ant
)
122 struct iwl_tx_ant_cfg_cmd tx_ant_cmd
= {
123 .valid
= cpu_to_le32(valid_tx_ant
),
126 IWL_DEBUG_FW(mvm
, "select valid tx ant: %u\n", valid_tx_ant
);
127 return iwl_mvm_send_cmd_pdu(mvm
, TX_ANT_CONFIGURATION_CMD
, 0,
128 sizeof(tx_ant_cmd
), &tx_ant_cmd
);
131 static int iwl_send_rss_cfg_cmd(struct iwl_mvm
*mvm
)
134 struct iwl_rss_config_cmd cmd
= {
135 .flags
= cpu_to_le32(IWL_RSS_ENABLE
),
136 .hash_mask
= BIT(IWL_RSS_HASH_TYPE_IPV4_TCP
) |
137 BIT(IWL_RSS_HASH_TYPE_IPV4_UDP
) |
138 BIT(IWL_RSS_HASH_TYPE_IPV4_PAYLOAD
) |
139 BIT(IWL_RSS_HASH_TYPE_IPV6_TCP
) |
140 BIT(IWL_RSS_HASH_TYPE_IPV6_UDP
) |
141 BIT(IWL_RSS_HASH_TYPE_IPV6_PAYLOAD
),
144 if (mvm
->trans
->num_rx_queues
== 1)
147 /* Do not direct RSS traffic to Q 0 which is our fallback queue */
148 for (i
= 0; i
< ARRAY_SIZE(cmd
.indirection_table
); i
++)
149 cmd
.indirection_table
[i
] =
150 1 + (i
% (mvm
->trans
->num_rx_queues
- 1));
151 netdev_rss_key_fill(cmd
.secret_key
, sizeof(cmd
.secret_key
));
153 return iwl_mvm_send_cmd_pdu(mvm
, RSS_CONFIG_CMD
, 0, sizeof(cmd
), &cmd
);
156 static int iwl_configure_rxq(struct iwl_mvm
*mvm
)
158 int i
, num_queues
, size
, ret
;
159 struct iwl_rfh_queue_config
*cmd
;
160 struct iwl_host_cmd hcmd
= {
161 .id
= WIDE_ID(DATA_PATH_GROUP
, RFH_QUEUE_CONFIG_CMD
),
162 .dataflags
[0] = IWL_HCMD_DFL_NOCOPY
,
165 /* Do not configure default queue, it is configured via context info */
166 num_queues
= mvm
->trans
->num_rx_queues
- 1;
168 size
= struct_size(cmd
, data
, num_queues
);
170 cmd
= kzalloc(size
, GFP_KERNEL
);
174 cmd
->num_queues
= num_queues
;
176 for (i
= 0; i
< num_queues
; i
++) {
177 struct iwl_trans_rxq_dma_data data
;
179 cmd
->data
[i
].q_num
= i
+ 1;
180 iwl_trans_get_rxq_dma_data(mvm
->trans
, i
+ 1, &data
);
182 cmd
->data
[i
].fr_bd_cb
= cpu_to_le64(data
.fr_bd_cb
);
183 cmd
->data
[i
].urbd_stts_wrptr
=
184 cpu_to_le64(data
.urbd_stts_wrptr
);
185 cmd
->data
[i
].ur_bd_cb
= cpu_to_le64(data
.ur_bd_cb
);
186 cmd
->data
[i
].fr_bd_wid
= cpu_to_le32(data
.fr_bd_wid
);
192 ret
= iwl_mvm_send_cmd(mvm
, &hcmd
);
199 static int iwl_mvm_send_dqa_cmd(struct iwl_mvm
*mvm
)
201 struct iwl_dqa_enable_cmd dqa_cmd
= {
202 .cmd_queue
= cpu_to_le32(IWL_MVM_DQA_CMD_QUEUE
),
204 u32 cmd_id
= iwl_cmd_id(DQA_ENABLE_CMD
, DATA_PATH_GROUP
, 0);
207 ret
= iwl_mvm_send_cmd_pdu(mvm
, cmd_id
, 0, sizeof(dqa_cmd
), &dqa_cmd
);
209 IWL_ERR(mvm
, "Failed to send DQA enabling command: %d\n", ret
);
211 IWL_DEBUG_FW(mvm
, "Working in DQA mode\n");
216 void iwl_mvm_mfu_assert_dump_notif(struct iwl_mvm
*mvm
,
217 struct iwl_rx_cmd_buffer
*rxb
)
219 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
220 struct iwl_mfu_assert_dump_notif
*mfu_dump_notif
= (void *)pkt
->data
;
221 __le32
*dump_data
= mfu_dump_notif
->data
;
222 int n_words
= le32_to_cpu(mfu_dump_notif
->data_size
) / sizeof(__le32
);
225 if (mfu_dump_notif
->index_num
== 0)
226 IWL_INFO(mvm
, "MFUART assert id 0x%x occurred\n",
227 le32_to_cpu(mfu_dump_notif
->assert_id
));
229 for (i
= 0; i
< n_words
; i
++)
231 "MFUART assert dump, dword %u: 0x%08x\n",
232 le16_to_cpu(mfu_dump_notif
->index_num
) *
234 le32_to_cpu(dump_data
[i
]));
237 static bool iwl_alive_fn(struct iwl_notif_wait_data
*notif_wait
,
238 struct iwl_rx_packet
*pkt
, void *data
)
240 struct iwl_mvm
*mvm
=
241 container_of(notif_wait
, struct iwl_mvm
, notif_wait
);
242 struct iwl_mvm_alive_data
*alive_data
= data
;
243 struct mvm_alive_resp_v3
*palive3
;
244 struct mvm_alive_resp
*palive
;
245 struct iwl_umac_alive
*umac
;
246 struct iwl_lmac_alive
*lmac1
;
247 struct iwl_lmac_alive
*lmac2
= NULL
;
249 u32 lmac_error_event_table
, umac_error_event_table
;
251 if (iwl_rx_packet_payload_len(pkt
) == sizeof(*palive
)) {
252 palive
= (void *)pkt
->data
;
253 umac
= &palive
->umac_data
;
254 lmac1
= &palive
->lmac_data
[0];
255 lmac2
= &palive
->lmac_data
[1];
256 status
= le16_to_cpu(palive
->status
);
258 palive3
= (void *)pkt
->data
;
259 umac
= &palive3
->umac_data
;
260 lmac1
= &palive3
->lmac_data
;
261 status
= le16_to_cpu(palive3
->status
);
264 lmac_error_event_table
=
265 le32_to_cpu(lmac1
->dbg_ptrs
.error_event_table_ptr
);
266 iwl_fw_lmac1_set_alive_err_table(mvm
->trans
, lmac_error_event_table
);
269 mvm
->trans
->dbg
.lmac_error_event_table
[1] =
270 le32_to_cpu(lmac2
->dbg_ptrs
.error_event_table_ptr
);
272 umac_error_event_table
= le32_to_cpu(umac
->dbg_ptrs
.error_info_addr
);
274 if (!umac_error_event_table
) {
275 mvm
->support_umac_log
= false;
276 } else if (umac_error_event_table
>=
277 mvm
->trans
->cfg
->min_umac_error_event_table
) {
278 mvm
->support_umac_log
= true;
281 "Not valid error log pointer 0x%08X for %s uCode\n",
282 umac_error_event_table
,
283 (mvm
->fwrt
.cur_fw_img
== IWL_UCODE_INIT
) ?
285 mvm
->support_umac_log
= false;
288 if (mvm
->support_umac_log
)
289 iwl_fw_umac_set_alive_err_table(mvm
->trans
,
290 umac_error_event_table
);
292 alive_data
->scd_base_addr
= le32_to_cpu(lmac1
->dbg_ptrs
.scd_base_ptr
);
293 alive_data
->valid
= status
== IWL_ALIVE_STATUS_OK
;
296 "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n",
297 status
, lmac1
->ver_type
, lmac1
->ver_subtype
);
300 IWL_DEBUG_FW(mvm
, "Alive ucode CDB\n");
303 "UMAC version: Major - 0x%x, Minor - 0x%x\n",
304 le32_to_cpu(umac
->umac_major
),
305 le32_to_cpu(umac
->umac_minor
));
307 iwl_fwrt_update_fw_versions(&mvm
->fwrt
, lmac1
, umac
);
312 static bool iwl_wait_init_complete(struct iwl_notif_wait_data
*notif_wait
,
313 struct iwl_rx_packet
*pkt
, void *data
)
315 WARN_ON(pkt
->hdr
.cmd
!= INIT_COMPLETE_NOTIF
);
320 static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data
*notif_wait
,
321 struct iwl_rx_packet
*pkt
, void *data
)
323 struct iwl_phy_db
*phy_db
= data
;
325 if (pkt
->hdr
.cmd
!= CALIB_RES_NOTIF_PHY_DB
) {
326 WARN_ON(pkt
->hdr
.cmd
!= INIT_COMPLETE_NOTIF
);
330 WARN_ON(iwl_phy_db_set_section(phy_db
, pkt
));
335 static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm
*mvm
,
336 enum iwl_ucode_type ucode_type
)
338 struct iwl_notification_wait alive_wait
;
339 struct iwl_mvm_alive_data alive_data
= {};
340 const struct fw_img
*fw
;
342 enum iwl_ucode_type old_type
= mvm
->fwrt
.cur_fw_img
;
343 static const u16 alive_cmd
[] = { MVM_ALIVE
};
345 ucode_type
== IWL_UCODE_INIT
|| iwl_mvm_has_unified_ucode(mvm
);
347 if (ucode_type
== IWL_UCODE_REGULAR
&&
348 iwl_fw_dbg_conf_usniffer(mvm
->fw
, FW_DBG_START_FROM_ALIVE
) &&
349 !(fw_has_capa(&mvm
->fw
->ucode_capa
,
350 IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED
)))
351 fw
= iwl_get_ucode_image(mvm
->fw
, IWL_UCODE_REGULAR_USNIFFER
);
353 fw
= iwl_get_ucode_image(mvm
->fw
, ucode_type
);
356 iwl_fw_set_current_image(&mvm
->fwrt
, ucode_type
);
357 clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING
, &mvm
->status
);
359 iwl_init_notification_wait(&mvm
->notif_wait
, &alive_wait
,
360 alive_cmd
, ARRAY_SIZE(alive_cmd
),
361 iwl_alive_fn
, &alive_data
);
364 * We want to load the INIT firmware even in RFKILL
365 * For the unified firmware case, the ucode_type is not
366 * INIT, but we still need to run it.
368 ret
= iwl_trans_start_fw(mvm
->trans
, fw
, run_in_rfkill
);
370 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
371 iwl_remove_notification(&mvm
->notif_wait
, &alive_wait
);
376 * Some things may run in the background now, but we
377 * just wait for the ALIVE notification here.
379 ret
= iwl_wait_notification(&mvm
->notif_wait
, &alive_wait
,
380 MVM_UCODE_ALIVE_TIMEOUT
);
382 struct iwl_trans
*trans
= mvm
->trans
;
384 if (trans
->trans_cfg
->device_family
>=
385 IWL_DEVICE_FAMILY_22000
) {
387 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
388 iwl_read_umac_prph(trans
, UMAG_SB_CPU_1_STATUS
),
389 iwl_read_umac_prph(trans
,
390 UMAG_SB_CPU_2_STATUS
));
391 IWL_ERR(mvm
, "UMAC PC: 0x%x\n",
392 iwl_read_umac_prph(trans
,
393 UREG_UMAC_CURRENT_PC
));
394 IWL_ERR(mvm
, "LMAC PC: 0x%x\n",
395 iwl_read_umac_prph(trans
,
396 UREG_LMAC1_CURRENT_PC
));
397 if (iwl_mvm_is_cdb_supported(mvm
))
398 IWL_ERR(mvm
, "LMAC2 PC: 0x%x\n",
399 iwl_read_umac_prph(trans
,
400 UREG_LMAC2_CURRENT_PC
));
401 } else if (trans
->trans_cfg
->device_family
>=
402 IWL_DEVICE_FAMILY_8000
) {
404 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
405 iwl_read_prph(trans
, SB_CPU_1_STATUS
),
406 iwl_read_prph(trans
, SB_CPU_2_STATUS
));
409 if (ret
== -ETIMEDOUT
)
410 iwl_fw_dbg_error_collect(&mvm
->fwrt
,
411 FW_DBG_TRIGGER_ALIVE_TIMEOUT
);
413 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
417 if (!alive_data
.valid
) {
418 IWL_ERR(mvm
, "Loaded ucode is not valid!\n");
419 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
423 iwl_trans_fw_alive(mvm
->trans
, alive_data
.scd_base_addr
);
426 * Note: all the queues are enabled as part of the interface
427 * initialization, but in firmware restart scenarios they
428 * could be stopped, so wake them up. In firmware restart,
429 * mac80211 will have the queues stopped as well until the
430 * reconfiguration completes. During normal startup, they
434 memset(&mvm
->queue_info
, 0, sizeof(mvm
->queue_info
));
436 * Set a 'fake' TID for the command queue, since we use the
437 * hweight() of the tid_bitmap as a refcount now. Not that
438 * we ever even consider the command queue as one we might
439 * want to reuse, but be safe nevertheless.
441 mvm
->queue_info
[IWL_MVM_DQA_CMD_QUEUE
].tid_bitmap
=
442 BIT(IWL_MAX_TID_COUNT
+ 2);
444 set_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING
, &mvm
->status
);
445 #ifdef CONFIG_IWLWIFI_DEBUGFS
446 iwl_fw_set_dbg_rec_on(&mvm
->fwrt
);
452 static int iwl_run_unified_mvm_ucode(struct iwl_mvm
*mvm
, bool read_nvm
)
454 struct iwl_notification_wait init_wait
;
455 struct iwl_nvm_access_complete_cmd nvm_complete
= {};
456 struct iwl_init_extended_cfg_cmd init_cfg
= {
457 .init_flags
= cpu_to_le32(BIT(IWL_INIT_NVM
)),
459 static const u16 init_complete
[] = {
464 if (mvm
->trans
->cfg
->tx_with_siso_diversity
)
465 init_cfg
.init_flags
|= cpu_to_le32(BIT(IWL_INIT_PHY
));
467 lockdep_assert_held(&mvm
->mutex
);
469 mvm
->rfkill_safe_init_done
= false;
471 iwl_init_notification_wait(&mvm
->notif_wait
,
474 ARRAY_SIZE(init_complete
),
475 iwl_wait_init_complete
,
478 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_EARLY
, NULL
);
480 /* Will also start the device */
481 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_REGULAR
);
483 IWL_ERR(mvm
, "Failed to start RT ucode: %d\n", ret
);
486 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_AFTER_ALIVE
,
489 /* Send init config command to mark that we are sending NVM access
492 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(SYSTEM_GROUP
,
493 INIT_EXTENDED_CFG_CMD
),
495 sizeof(init_cfg
), &init_cfg
);
497 IWL_ERR(mvm
, "Failed to run init config command: %d\n",
502 /* Load NVM to NIC if needed */
503 if (mvm
->nvm_file_name
) {
504 iwl_read_external_nvm(mvm
->trans
, mvm
->nvm_file_name
,
506 iwl_mvm_load_nvm_to_nic(mvm
);
509 if (IWL_MVM_PARSE_NVM
&& read_nvm
) {
510 ret
= iwl_nvm_init(mvm
);
512 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
517 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(REGULATORY_AND_NVM_GROUP
,
518 NVM_ACCESS_COMPLETE
),
520 sizeof(nvm_complete
), &nvm_complete
);
522 IWL_ERR(mvm
, "Failed to run complete NVM access: %d\n",
527 /* We wait for the INIT complete notification */
528 ret
= iwl_wait_notification(&mvm
->notif_wait
, &init_wait
,
529 MVM_UCODE_ALIVE_TIMEOUT
);
533 /* Read the NVM only at driver load time, no need to do this twice */
534 if (!IWL_MVM_PARSE_NVM
&& read_nvm
) {
535 mvm
->nvm_data
= iwl_get_nvm(mvm
->trans
, mvm
->fw
);
536 if (IS_ERR(mvm
->nvm_data
)) {
537 ret
= PTR_ERR(mvm
->nvm_data
);
538 mvm
->nvm_data
= NULL
;
539 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
544 mvm
->rfkill_safe_init_done
= true;
549 iwl_remove_notification(&mvm
->notif_wait
, &init_wait
);
553 static int iwl_send_phy_cfg_cmd(struct iwl_mvm
*mvm
)
555 struct iwl_phy_cfg_cmd phy_cfg_cmd
;
556 enum iwl_ucode_type ucode_type
= mvm
->fwrt
.cur_fw_img
;
558 if (iwl_mvm_has_unified_ucode(mvm
) &&
559 !mvm
->trans
->cfg
->tx_with_siso_diversity
)
562 if (mvm
->trans
->cfg
->tx_with_siso_diversity
) {
564 * TODO: currently we don't set the antenna but letting the NIC
565 * to decide which antenna to use. This should come from BIOS.
567 phy_cfg_cmd
.phy_cfg
=
568 cpu_to_le32(FW_PHY_CFG_CHAIN_SAD_ENABLED
);
572 phy_cfg_cmd
.phy_cfg
= cpu_to_le32(iwl_mvm_get_phy_config(mvm
));
574 /* set flags extra PHY configuration flags from the device's cfg */
575 phy_cfg_cmd
.phy_cfg
|=
576 cpu_to_le32(mvm
->trans
->trans_cfg
->extra_phy_cfg_flags
);
578 phy_cfg_cmd
.calib_control
.event_trigger
=
579 mvm
->fw
->default_calib
[ucode_type
].event_trigger
;
580 phy_cfg_cmd
.calib_control
.flow_trigger
=
581 mvm
->fw
->default_calib
[ucode_type
].flow_trigger
;
583 IWL_DEBUG_INFO(mvm
, "Sending Phy CFG command: 0x%x\n",
584 phy_cfg_cmd
.phy_cfg
);
586 return iwl_mvm_send_cmd_pdu(mvm
, PHY_CONFIGURATION_CMD
, 0,
587 sizeof(phy_cfg_cmd
), &phy_cfg_cmd
);
590 int iwl_run_init_mvm_ucode(struct iwl_mvm
*mvm
, bool read_nvm
)
592 struct iwl_notification_wait calib_wait
;
593 static const u16 init_complete
[] = {
595 CALIB_RES_NOTIF_PHY_DB
599 if (iwl_mvm_has_unified_ucode(mvm
))
600 return iwl_run_unified_mvm_ucode(mvm
, true);
602 lockdep_assert_held(&mvm
->mutex
);
604 mvm
->rfkill_safe_init_done
= false;
606 iwl_init_notification_wait(&mvm
->notif_wait
,
609 ARRAY_SIZE(init_complete
),
610 iwl_wait_phy_db_entry
,
613 /* Will also start the device */
614 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_INIT
);
616 IWL_ERR(mvm
, "Failed to start INIT ucode: %d\n", ret
);
620 if (mvm
->trans
->trans_cfg
->device_family
< IWL_DEVICE_FAMILY_8000
) {
621 ret
= iwl_mvm_send_bt_init_conf(mvm
);
626 /* Read the NVM only at driver load time, no need to do this twice */
628 ret
= iwl_nvm_init(mvm
);
630 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
635 /* In case we read the NVM from external file, load it to the NIC */
636 if (mvm
->nvm_file_name
)
637 iwl_mvm_load_nvm_to_nic(mvm
);
639 WARN_ONCE(mvm
->nvm_data
->nvm_version
< mvm
->trans
->cfg
->nvm_ver
,
640 "Too old NVM version (0x%0x, required = 0x%0x)",
641 mvm
->nvm_data
->nvm_version
, mvm
->trans
->cfg
->nvm_ver
);
644 * abort after reading the nvm in case RF Kill is on, we will complete
645 * the init seq later when RF kill will switch to off
647 if (iwl_mvm_is_radio_hw_killed(mvm
)) {
648 IWL_DEBUG_RF_KILL(mvm
,
649 "jump over all phy activities due to RF kill\n");
653 mvm
->rfkill_safe_init_done
= true;
655 /* Send TX valid antennas before triggering calibrations */
656 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
660 ret
= iwl_send_phy_cfg_cmd(mvm
);
662 IWL_ERR(mvm
, "Failed to run INIT calibrations: %d\n",
668 * Some things may run in the background now, but we
669 * just wait for the calibration complete notification.
671 ret
= iwl_wait_notification(&mvm
->notif_wait
, &calib_wait
,
672 MVM_UCODE_CALIB_TIMEOUT
);
676 if (iwl_mvm_is_radio_hw_killed(mvm
)) {
677 IWL_DEBUG_RF_KILL(mvm
, "RFKILL while calibrating.\n");
680 IWL_ERR(mvm
, "Failed to run INIT calibrations: %d\n",
687 iwl_remove_notification(&mvm
->notif_wait
, &calib_wait
);
689 mvm
->rfkill_safe_init_done
= false;
690 if (iwlmvm_mod_params
.init_dbg
&& !mvm
->nvm_data
) {
691 /* we want to debug INIT and we have no NVM - fake */
692 mvm
->nvm_data
= kzalloc(sizeof(struct iwl_nvm_data
) +
693 sizeof(struct ieee80211_channel
) +
694 sizeof(struct ieee80211_rate
),
698 mvm
->nvm_data
->bands
[0].channels
= mvm
->nvm_data
->channels
;
699 mvm
->nvm_data
->bands
[0].n_channels
= 1;
700 mvm
->nvm_data
->bands
[0].n_bitrates
= 1;
701 mvm
->nvm_data
->bands
[0].bitrates
=
702 (void *)mvm
->nvm_data
->channels
+ 1;
703 mvm
->nvm_data
->bands
[0].bitrates
->hw_value
= 10;
709 static int iwl_mvm_config_ltr(struct iwl_mvm
*mvm
)
711 struct iwl_ltr_config_cmd cmd
= {
712 .flags
= cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE
),
715 if (!mvm
->trans
->ltr_enabled
)
718 return iwl_mvm_send_cmd_pdu(mvm
, LTR_CONFIG
, 0,
723 int iwl_mvm_sar_select_profile(struct iwl_mvm
*mvm
, int prof_a
, int prof_b
)
726 struct iwl_dev_tx_power_cmd v5
;
727 struct iwl_dev_tx_power_cmd_v4 v4
;
732 cmd
.v5
.v3
.set_mode
= cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS
);
734 if (fw_has_api(&mvm
->fw
->ucode_capa
,
735 IWL_UCODE_TLV_API_REDUCE_TX_POWER
))
736 len
= sizeof(cmd
.v5
);
737 else if (fw_has_capa(&mvm
->fw
->ucode_capa
,
738 IWL_UCODE_TLV_CAPA_TX_POWER_ACK
))
739 len
= sizeof(struct iwl_dev_tx_power_cmd_v4
);
741 len
= sizeof(cmd
.v4
.v3
);
744 if (iwl_sar_select_profile(&mvm
->fwrt
, cmd
.v5
.v3
.per_chain_restriction
,
747 IWL_DEBUG_RADIO(mvm
, "Sending REDUCE_TX_POWER_CMD per chain\n");
748 return iwl_mvm_send_cmd_pdu(mvm
, REDUCE_TX_POWER_CMD
, 0, len
, &cmd
);
751 int iwl_mvm_get_sar_geo_profile(struct iwl_mvm
*mvm
)
753 union geo_tx_power_profiles_cmd geo_tx_cmd
;
756 struct iwl_host_cmd cmd
;
758 if (fw_has_api(&mvm
->fwrt
.fw
->ucode_capa
,
759 IWL_UCODE_TLV_API_SAR_TABLE_VER
)) {
760 geo_tx_cmd
.geo_cmd
.ops
=
761 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE
);
762 len
= sizeof(geo_tx_cmd
.geo_cmd
);
764 geo_tx_cmd
.geo_cmd_v1
.ops
=
765 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE
);
766 len
= sizeof(geo_tx_cmd
.geo_cmd_v1
);
769 if (!iwl_sar_geo_support(&mvm
->fwrt
))
772 cmd
= (struct iwl_host_cmd
){
773 .id
= WIDE_ID(PHY_OPS_GROUP
, GEO_TX_POWER_LIMIT
),
775 .flags
= CMD_WANT_SKB
,
776 .data
= { &geo_tx_cmd
},
779 ret
= iwl_mvm_send_cmd(mvm
, &cmd
);
781 IWL_ERR(mvm
, "Failed to get geographic profile info %d\n", ret
);
784 ret
= iwl_validate_sar_geo_profile(&mvm
->fwrt
, &cmd
);
789 static int iwl_mvm_sar_geo_init(struct iwl_mvm
*mvm
)
791 u16 cmd_wide_id
= WIDE_ID(PHY_OPS_GROUP
, GEO_TX_POWER_LIMIT
);
792 union geo_tx_power_profiles_cmd cmd
;
796 cmd
.geo_cmd
.ops
= cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES
);
798 ret
= iwl_sar_geo_init(&mvm
->fwrt
, cmd
.geo_cmd
.table
);
800 * It is a valid scenario to not support SAR, or miss wgds table,
801 * but in that case there is no need to send the command.
806 cmd
.geo_cmd
.table_revision
= cpu_to_le32(mvm
->fwrt
.geo_rev
);
808 if (!fw_has_api(&mvm
->fwrt
.fw
->ucode_capa
,
809 IWL_UCODE_TLV_API_SAR_TABLE_VER
)) {
810 len
= sizeof(struct iwl_geo_tx_power_profiles_cmd_v1
);
812 len
= sizeof(cmd
.geo_cmd
);
815 return iwl_mvm_send_cmd_pdu(mvm
, cmd_wide_id
, 0, len
, &cmd
);
818 static int iwl_mvm_get_ppag_table(struct iwl_mvm
*mvm
)
820 union acpi_object
*wifi_pkg
, *data
, *enabled
;
821 int i
, j
, ret
, tbl_rev
;
824 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(0);
825 data
= iwl_acpi_get_object(mvm
->dev
, ACPI_PPAG_METHOD
);
827 return PTR_ERR(data
);
829 wifi_pkg
= iwl_acpi_get_wifi_pkg(mvm
->dev
, data
,
830 ACPI_PPAG_WIFI_DATA_SIZE
, &tbl_rev
);
832 if (IS_ERR(wifi_pkg
)) {
833 ret
= PTR_ERR(wifi_pkg
);
842 enabled
= &wifi_pkg
->package
.elements
[1];
843 if (enabled
->type
!= ACPI_TYPE_INTEGER
||
844 (enabled
->integer
.value
!= 0 && enabled
->integer
.value
!= 1)) {
849 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(enabled
->integer
.value
);
850 if (!mvm
->fwrt
.ppag_table
.enabled
) {
856 * read, verify gain values and save them into the PPAG table.
857 * first sub-band (j=0) corresponds to Low-Band (2.4GHz), and the
858 * following sub-bands to High-Band (5GHz).
860 for (i
= 0; i
< ACPI_PPAG_NUM_CHAINS
; i
++) {
861 for (j
= 0; j
< ACPI_PPAG_NUM_SUB_BANDS
; j
++) {
862 union acpi_object
*ent
;
864 ent
= &wifi_pkg
->package
.elements
[idx
++];
865 if (ent
->type
!= ACPI_TYPE_INTEGER
||
866 (j
== 0 && ent
->integer
.value
> ACPI_PPAG_MAX_LB
) ||
867 (j
== 0 && ent
->integer
.value
< ACPI_PPAG_MIN_LB
) ||
868 (j
!= 0 && ent
->integer
.value
> ACPI_PPAG_MAX_HB
) ||
869 (j
!= 0 && ent
->integer
.value
< ACPI_PPAG_MIN_HB
)) {
870 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(0);
874 mvm
->fwrt
.ppag_table
.gain
[i
][j
] = ent
->integer
.value
;
883 int iwl_mvm_ppag_send_cmd(struct iwl_mvm
*mvm
)
887 if (!fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_SET_PPAG
)) {
889 "PPAG capability not supported by FW, command not sent.\n");
893 if (!mvm
->fwrt
.ppag_table
.enabled
) {
895 "PPAG not enabled, command not sent.\n");
899 IWL_DEBUG_RADIO(mvm
, "Sending PER_PLATFORM_ANT_GAIN_CMD\n");
901 for (i
= 0; i
< ACPI_PPAG_NUM_CHAINS
; i
++) {
902 for (j
= 0; j
< ACPI_PPAG_NUM_SUB_BANDS
; j
++) {
904 "PPAG table: chain[%d] band[%d]: gain = %d\n",
905 i
, j
, mvm
->fwrt
.ppag_table
.gain
[i
][j
]);
909 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(PHY_OPS_GROUP
,
910 PER_PLATFORM_ANT_GAIN_CMD
),
911 0, sizeof(mvm
->fwrt
.ppag_table
),
912 &mvm
->fwrt
.ppag_table
);
914 IWL_ERR(mvm
, "failed to send PER_PLATFORM_ANT_GAIN_CMD (%d)\n",
920 static int iwl_mvm_ppag_init(struct iwl_mvm
*mvm
)
924 ret
= iwl_mvm_get_ppag_table(mvm
);
927 "PPAG BIOS table invalid or unavailable. (%d)\n",
931 return iwl_mvm_ppag_send_cmd(mvm
);
934 #else /* CONFIG_ACPI */
936 inline int iwl_mvm_sar_select_profile(struct iwl_mvm
*mvm
,
937 int prof_a
, int prof_b
)
942 inline int iwl_mvm_get_sar_geo_profile(struct iwl_mvm
*mvm
)
947 static int iwl_mvm_sar_geo_init(struct iwl_mvm
*mvm
)
952 int iwl_mvm_ppag_send_cmd(struct iwl_mvm
*mvm
)
957 static int iwl_mvm_ppag_init(struct iwl_mvm
*mvm
)
961 #endif /* CONFIG_ACPI */
963 void iwl_mvm_send_recovery_cmd(struct iwl_mvm
*mvm
, u32 flags
)
965 u32 error_log_size
= mvm
->fw
->ucode_capa
.error_log_size
;
969 struct iwl_fw_error_recovery_cmd recovery_cmd
= {
970 .flags
= cpu_to_le32(flags
),
973 struct iwl_host_cmd host_cmd
= {
974 .id
= WIDE_ID(SYSTEM_GROUP
, FW_ERROR_RECOVERY_CMD
),
975 .flags
= CMD_WANT_SKB
,
976 .data
= {&recovery_cmd
, },
977 .len
= {sizeof(recovery_cmd
), },
980 /* no error log was defined in TLV */
984 if (flags
& ERROR_RECOVERY_UPDATE_DB
) {
985 /* no buf was allocated while HW reset */
986 if (!mvm
->error_recovery_buf
)
989 host_cmd
.data
[1] = mvm
->error_recovery_buf
;
990 host_cmd
.len
[1] = error_log_size
;
991 host_cmd
.dataflags
[1] = IWL_HCMD_DFL_NOCOPY
;
992 recovery_cmd
.buf_size
= cpu_to_le32(error_log_size
);
995 ret
= iwl_mvm_send_cmd(mvm
, &host_cmd
);
996 kfree(mvm
->error_recovery_buf
);
997 mvm
->error_recovery_buf
= NULL
;
1000 IWL_ERR(mvm
, "Failed to send recovery cmd %d\n", ret
);
1004 /* skb respond is only relevant in ERROR_RECOVERY_UPDATE_DB */
1005 if (flags
& ERROR_RECOVERY_UPDATE_DB
) {
1006 resp
= le32_to_cpu(*(__le32
*)host_cmd
.resp_pkt
->data
);
1009 "Failed to send recovery cmd blob was invalid %d\n",
1014 static int iwl_mvm_sar_init(struct iwl_mvm
*mvm
)
1018 ret
= iwl_sar_get_wrds_table(&mvm
->fwrt
);
1020 IWL_DEBUG_RADIO(mvm
,
1021 "WRDS SAR BIOS table invalid or unavailable. (%d)\n",
1024 * If not available, don't fail and don't bother with EWRD.
1025 * Return 1 to tell that we can't use WGDS either.
1030 ret
= iwl_sar_get_ewrd_table(&mvm
->fwrt
);
1031 /* if EWRD is not available, we can still use WRDS, so don't fail */
1033 IWL_DEBUG_RADIO(mvm
,
1034 "EWRD SAR BIOS table invalid or unavailable. (%d)\n",
1037 ret
= iwl_mvm_sar_select_profile(mvm
, 1, 1);
1039 * If we don't have profile 0 from BIOS, just skip it. This
1040 * means that SAR Geo will not be enabled either, even if we
1041 * have other valid profiles.
1049 static int iwl_mvm_load_rt_fw(struct iwl_mvm
*mvm
)
1053 if (iwl_mvm_has_unified_ucode(mvm
))
1054 return iwl_run_unified_mvm_ucode(mvm
, false);
1056 ret
= iwl_run_init_mvm_ucode(mvm
, false);
1059 IWL_ERR(mvm
, "Failed to run INIT ucode: %d\n", ret
);
1061 if (iwlmvm_mod_params
.init_dbg
)
1066 iwl_fw_dbg_stop_sync(&mvm
->fwrt
);
1067 iwl_trans_stop_device(mvm
->trans
);
1068 ret
= iwl_trans_start_hw(mvm
->trans
);
1072 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_EARLY
, NULL
);
1074 mvm
->rfkill_safe_init_done
= false;
1075 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_REGULAR
);
1079 mvm
->rfkill_safe_init_done
= true;
1081 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_AFTER_ALIVE
,
1084 return iwl_init_paging(&mvm
->fwrt
, mvm
->fwrt
.cur_fw_img
);
1087 int iwl_mvm_up(struct iwl_mvm
*mvm
)
1090 struct ieee80211_channel
*chan
;
1091 struct cfg80211_chan_def chandef
;
1092 struct ieee80211_supported_band
*sband
= NULL
;
1094 lockdep_assert_held(&mvm
->mutex
);
1096 ret
= iwl_trans_start_hw(mvm
->trans
);
1100 ret
= iwl_mvm_load_rt_fw(mvm
);
1102 IWL_ERR(mvm
, "Failed to start RT ucode: %d\n", ret
);
1103 if (ret
!= -ERFKILL
)
1104 iwl_fw_dbg_error_collect(&mvm
->fwrt
,
1105 FW_DBG_TRIGGER_DRIVER
);
1109 iwl_get_shared_mem_conf(&mvm
->fwrt
);
1111 ret
= iwl_mvm_sf_update(mvm
, NULL
, false);
1113 IWL_ERR(mvm
, "Failed to initialize Smart Fifo\n");
1115 if (!iwl_trans_dbg_ini_valid(mvm
->trans
)) {
1116 mvm
->fwrt
.dump
.conf
= FW_DBG_INVALID
;
1117 /* if we have a destination, assume EARLY START */
1118 if (mvm
->fw
->dbg
.dest_tlv
)
1119 mvm
->fwrt
.dump
.conf
= FW_DBG_START_FROM_ALIVE
;
1120 iwl_fw_start_dbg_conf(&mvm
->fwrt
, FW_DBG_START_FROM_ALIVE
);
1123 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
1127 if (!iwl_mvm_has_unified_ucode(mvm
)) {
1128 /* Send phy db control command and then phy db calibration */
1129 ret
= iwl_send_phy_db_data(mvm
->phy_db
);
1134 ret
= iwl_send_phy_cfg_cmd(mvm
);
1138 ret
= iwl_mvm_send_bt_init_conf(mvm
);
1142 if (fw_has_capa(&mvm
->fw
->ucode_capa
,
1143 IWL_UCODE_TLV_CAPA_SOC_LATENCY_SUPPORT
)) {
1144 ret
= iwl_set_soc_latency(mvm
);
1149 /* Init RSS configuration */
1150 if (mvm
->trans
->trans_cfg
->device_family
>= IWL_DEVICE_FAMILY_22000
) {
1151 ret
= iwl_configure_rxq(mvm
);
1153 IWL_ERR(mvm
, "Failed to configure RX queues: %d\n",
1159 if (iwl_mvm_has_new_rx_api(mvm
)) {
1160 ret
= iwl_send_rss_cfg_cmd(mvm
);
1162 IWL_ERR(mvm
, "Failed to configure RSS queues: %d\n",
1168 /* init the fw <-> mac80211 STA mapping */
1169 for (i
= 0; i
< ARRAY_SIZE(mvm
->fw_id_to_mac_id
); i
++)
1170 RCU_INIT_POINTER(mvm
->fw_id_to_mac_id
[i
], NULL
);
1172 mvm
->tdls_cs
.peer
.sta_id
= IWL_MVM_INVALID_STA
;
1174 /* reset quota debouncing buffer - 0xff will yield invalid data */
1175 memset(&mvm
->last_quota_cmd
, 0xff, sizeof(mvm
->last_quota_cmd
));
1177 if (fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_DQA_SUPPORT
)) {
1178 ret
= iwl_mvm_send_dqa_cmd(mvm
);
1183 /* Add auxiliary station for scanning */
1184 ret
= iwl_mvm_add_aux_sta(mvm
);
1188 /* Add all the PHY contexts */
1190 while (!sband
&& i
< NUM_NL80211_BANDS
)
1191 sband
= mvm
->hw
->wiphy
->bands
[i
++];
1193 if (WARN_ON_ONCE(!sband
))
1196 chan
= &sband
->channels
[0];
1198 cfg80211_chandef_create(&chandef
, chan
, NL80211_CHAN_NO_HT
);
1199 for (i
= 0; i
< NUM_PHY_CTX
; i
++) {
1201 * The channel used here isn't relevant as it's
1202 * going to be overwritten in the other flows.
1203 * For now use the first channel we have.
1205 ret
= iwl_mvm_phy_ctxt_add(mvm
, &mvm
->phy_ctxts
[i
],
1211 if (iwl_mvm_is_tt_in_fw(mvm
)) {
1212 /* in order to give the responsibility of ct-kill and
1213 * TX backoff to FW we need to send empty temperature reporting
1214 * cmd during init time
1216 iwl_mvm_send_temp_report_ths_cmd(mvm
);
1218 /* Initialize tx backoffs to the minimal possible */
1219 iwl_mvm_tt_tx_backoff(mvm
, 0);
1222 #ifdef CONFIG_THERMAL
1223 /* TODO: read the budget from BIOS / Platform NVM */
1226 * In case there is no budget from BIOS / Platform NVM the default
1227 * budget should be 2000mW (cooling state 0).
1229 if (iwl_mvm_is_ctdp_supported(mvm
)) {
1230 ret
= iwl_mvm_ctdp_command(mvm
, CTDP_CMD_OPERATION_START
,
1231 mvm
->cooling_dev
.cur_state
);
1237 if (!fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_SET_LTR_GEN2
))
1238 WARN_ON(iwl_mvm_config_ltr(mvm
));
1240 ret
= iwl_mvm_power_update_device(mvm
);
1245 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx
1246 * anyway, so don't init MCC.
1248 if (!test_bit(IWL_MVM_STATUS_HW_CTKILL
, &mvm
->status
)) {
1249 ret
= iwl_mvm_init_mcc(mvm
);
1254 if (fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_UMAC_SCAN
)) {
1255 mvm
->scan_type
= IWL_SCAN_TYPE_NOT_SET
;
1256 mvm
->hb_scan_type
= IWL_SCAN_TYPE_NOT_SET
;
1257 ret
= iwl_mvm_config_scan(mvm
);
1262 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
))
1263 iwl_mvm_send_recovery_cmd(mvm
, ERROR_RECOVERY_UPDATE_DB
);
1265 if (iwl_acpi_get_eckv(mvm
->dev
, &mvm
->ext_clock_valid
))
1266 IWL_DEBUG_INFO(mvm
, "ECKV table doesn't exist in BIOS\n");
1268 ret
= iwl_mvm_ppag_init(mvm
);
1272 ret
= iwl_mvm_sar_init(mvm
);
1274 ret
= iwl_mvm_sar_geo_init(mvm
);
1275 } else if (ret
> 0 && !iwl_sar_get_wgds_table(&mvm
->fwrt
)) {
1277 * If basic SAR is not available, we check for WGDS,
1278 * which should *not* be available either. If it is
1279 * available, issue an error, because we can't use SAR
1280 * Geo without basic SAR.
1282 IWL_ERR(mvm
, "BIOS contains WGDS but no WRDS\n");
1288 iwl_mvm_leds_sync(mvm
);
1290 IWL_DEBUG_INFO(mvm
, "RT uCode started.\n");
1293 if (!iwlmvm_mod_params
.init_dbg
|| !ret
)
1294 iwl_mvm_stop_device(mvm
);
1298 int iwl_mvm_load_d3_fw(struct iwl_mvm
*mvm
)
1302 lockdep_assert_held(&mvm
->mutex
);
1304 ret
= iwl_trans_start_hw(mvm
->trans
);
1308 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_WOWLAN
);
1310 IWL_ERR(mvm
, "Failed to start WoWLAN firmware: %d\n", ret
);
1314 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
1318 /* Send phy db control command and then phy db calibration*/
1319 ret
= iwl_send_phy_db_data(mvm
->phy_db
);
1323 ret
= iwl_send_phy_cfg_cmd(mvm
);
1327 /* init the fw <-> mac80211 STA mapping */
1328 for (i
= 0; i
< ARRAY_SIZE(mvm
->fw_id_to_mac_id
); i
++)
1329 RCU_INIT_POINTER(mvm
->fw_id_to_mac_id
[i
], NULL
);
1331 /* Add auxiliary station for scanning */
1332 ret
= iwl_mvm_add_aux_sta(mvm
);
1338 iwl_mvm_stop_device(mvm
);
1342 void iwl_mvm_rx_card_state_notif(struct iwl_mvm
*mvm
,
1343 struct iwl_rx_cmd_buffer
*rxb
)
1345 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
1346 struct iwl_card_state_notif
*card_state_notif
= (void *)pkt
->data
;
1347 u32 flags
= le32_to_cpu(card_state_notif
->flags
);
1349 IWL_DEBUG_RF_KILL(mvm
, "Card state received: HW:%s SW:%s CT:%s\n",
1350 (flags
& HW_CARD_DISABLED
) ? "Kill" : "On",
1351 (flags
& SW_CARD_DISABLED
) ? "Kill" : "On",
1352 (flags
& CT_KILL_CARD_DISABLED
) ?
1353 "Reached" : "Not reached");
1356 void iwl_mvm_rx_mfuart_notif(struct iwl_mvm
*mvm
,
1357 struct iwl_rx_cmd_buffer
*rxb
)
1359 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
1360 struct iwl_mfuart_load_notif
*mfuart_notif
= (void *)pkt
->data
;
1363 "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
1364 le32_to_cpu(mfuart_notif
->installed_ver
),
1365 le32_to_cpu(mfuart_notif
->external_ver
),
1366 le32_to_cpu(mfuart_notif
->status
),
1367 le32_to_cpu(mfuart_notif
->duration
));
1369 if (iwl_rx_packet_payload_len(pkt
) == sizeof(*mfuart_notif
))
1371 "MFUART: image size: 0x%08x\n",
1372 le32_to_cpu(mfuart_notif
->image_size
));