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) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
11 * Copyright(c) 2018 - 2019 Intel Corporation
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.
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.
22 * The full GNU General Public License is included in this distribution
23 * in the file called COPYING.
25 * Contact Information:
26 * Intel Linux Wireless <linuxwifi@intel.com>
27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
32 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
33 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
34 * Copyright(c) 2018 - 2019 Intel Corporation
35 * All rights reserved.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
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
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.
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.
63 *****************************************************************************/
64 #include <net/mac80211.h>
65 #include <linux/netdevice.h>
67 #include "iwl-trans.h"
68 #include "iwl-op-mode.h"
70 #include "iwl-debug.h"
71 #include "iwl-csr.h" /* for iwl_mvm_rx_card_state_notif */
72 #include "iwl-io.h" /* for iwl_mvm_rx_card_state_notif */
78 #include "iwl-phy-db.h"
79 #include "iwl-modparams.h"
80 #include "iwl-nvm-parse.h"
82 #define MVM_UCODE_ALIVE_TIMEOUT HZ
83 #define MVM_UCODE_CALIB_TIMEOUT (2*HZ)
85 #define UCODE_VALID_OK cpu_to_le32(0x1)
87 struct iwl_mvm_alive_data
{
92 static int iwl_send_tx_ant_cfg(struct iwl_mvm
*mvm
, u8 valid_tx_ant
)
94 struct iwl_tx_ant_cfg_cmd tx_ant_cmd
= {
95 .valid
= cpu_to_le32(valid_tx_ant
),
98 IWL_DEBUG_FW(mvm
, "select valid tx ant: %u\n", valid_tx_ant
);
99 return iwl_mvm_send_cmd_pdu(mvm
, TX_ANT_CONFIGURATION_CMD
, 0,
100 sizeof(tx_ant_cmd
), &tx_ant_cmd
);
103 static int iwl_send_rss_cfg_cmd(struct iwl_mvm
*mvm
)
106 struct iwl_rss_config_cmd cmd
= {
107 .flags
= cpu_to_le32(IWL_RSS_ENABLE
),
108 .hash_mask
= BIT(IWL_RSS_HASH_TYPE_IPV4_TCP
) |
109 BIT(IWL_RSS_HASH_TYPE_IPV4_UDP
) |
110 BIT(IWL_RSS_HASH_TYPE_IPV4_PAYLOAD
) |
111 BIT(IWL_RSS_HASH_TYPE_IPV6_TCP
) |
112 BIT(IWL_RSS_HASH_TYPE_IPV6_UDP
) |
113 BIT(IWL_RSS_HASH_TYPE_IPV6_PAYLOAD
),
116 if (mvm
->trans
->num_rx_queues
== 1)
119 /* Do not direct RSS traffic to Q 0 which is our fallback queue */
120 for (i
= 0; i
< ARRAY_SIZE(cmd
.indirection_table
); i
++)
121 cmd
.indirection_table
[i
] =
122 1 + (i
% (mvm
->trans
->num_rx_queues
- 1));
123 netdev_rss_key_fill(cmd
.secret_key
, sizeof(cmd
.secret_key
));
125 return iwl_mvm_send_cmd_pdu(mvm
, RSS_CONFIG_CMD
, 0, sizeof(cmd
), &cmd
);
128 static int iwl_configure_rxq(struct iwl_mvm
*mvm
)
130 int i
, num_queues
, size
, ret
;
131 struct iwl_rfh_queue_config
*cmd
;
132 struct iwl_host_cmd hcmd
= {
133 .id
= WIDE_ID(DATA_PATH_GROUP
, RFH_QUEUE_CONFIG_CMD
),
134 .dataflags
[0] = IWL_HCMD_DFL_NOCOPY
,
137 /* Do not configure default queue, it is configured via context info */
138 num_queues
= mvm
->trans
->num_rx_queues
- 1;
140 size
= struct_size(cmd
, data
, num_queues
);
142 cmd
= kzalloc(size
, GFP_KERNEL
);
146 cmd
->num_queues
= num_queues
;
148 for (i
= 0; i
< num_queues
; i
++) {
149 struct iwl_trans_rxq_dma_data data
;
151 cmd
->data
[i
].q_num
= i
+ 1;
152 iwl_trans_get_rxq_dma_data(mvm
->trans
, i
+ 1, &data
);
154 cmd
->data
[i
].fr_bd_cb
= cpu_to_le64(data
.fr_bd_cb
);
155 cmd
->data
[i
].urbd_stts_wrptr
=
156 cpu_to_le64(data
.urbd_stts_wrptr
);
157 cmd
->data
[i
].ur_bd_cb
= cpu_to_le64(data
.ur_bd_cb
);
158 cmd
->data
[i
].fr_bd_wid
= cpu_to_le32(data
.fr_bd_wid
);
164 ret
= iwl_mvm_send_cmd(mvm
, &hcmd
);
171 static int iwl_mvm_send_dqa_cmd(struct iwl_mvm
*mvm
)
173 struct iwl_dqa_enable_cmd dqa_cmd
= {
174 .cmd_queue
= cpu_to_le32(IWL_MVM_DQA_CMD_QUEUE
),
176 u32 cmd_id
= iwl_cmd_id(DQA_ENABLE_CMD
, DATA_PATH_GROUP
, 0);
179 ret
= iwl_mvm_send_cmd_pdu(mvm
, cmd_id
, 0, sizeof(dqa_cmd
), &dqa_cmd
);
181 IWL_ERR(mvm
, "Failed to send DQA enabling command: %d\n", ret
);
183 IWL_DEBUG_FW(mvm
, "Working in DQA mode\n");
188 void iwl_mvm_mfu_assert_dump_notif(struct iwl_mvm
*mvm
,
189 struct iwl_rx_cmd_buffer
*rxb
)
191 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
192 struct iwl_mfu_assert_dump_notif
*mfu_dump_notif
= (void *)pkt
->data
;
193 __le32
*dump_data
= mfu_dump_notif
->data
;
194 int n_words
= le32_to_cpu(mfu_dump_notif
->data_size
) / sizeof(__le32
);
197 if (mfu_dump_notif
->index_num
== 0)
198 IWL_INFO(mvm
, "MFUART assert id 0x%x occurred\n",
199 le32_to_cpu(mfu_dump_notif
->assert_id
));
201 for (i
= 0; i
< n_words
; i
++)
203 "MFUART assert dump, dword %u: 0x%08x\n",
204 le16_to_cpu(mfu_dump_notif
->index_num
) *
206 le32_to_cpu(dump_data
[i
]));
209 static bool iwl_alive_fn(struct iwl_notif_wait_data
*notif_wait
,
210 struct iwl_rx_packet
*pkt
, void *data
)
212 struct iwl_mvm
*mvm
=
213 container_of(notif_wait
, struct iwl_mvm
, notif_wait
);
214 struct iwl_mvm_alive_data
*alive_data
= data
;
215 struct mvm_alive_resp_v3
*palive3
;
216 struct mvm_alive_resp
*palive
;
217 struct iwl_umac_alive
*umac
;
218 struct iwl_lmac_alive
*lmac1
;
219 struct iwl_lmac_alive
*lmac2
= NULL
;
221 u32 lmac_error_event_table
, umac_error_event_table
;
223 if (iwl_rx_packet_payload_len(pkt
) == sizeof(*palive
)) {
224 palive
= (void *)pkt
->data
;
225 umac
= &palive
->umac_data
;
226 lmac1
= &palive
->lmac_data
[0];
227 lmac2
= &palive
->lmac_data
[1];
228 status
= le16_to_cpu(palive
->status
);
230 palive3
= (void *)pkt
->data
;
231 umac
= &palive3
->umac_data
;
232 lmac1
= &palive3
->lmac_data
;
233 status
= le16_to_cpu(palive3
->status
);
236 lmac_error_event_table
=
237 le32_to_cpu(lmac1
->dbg_ptrs
.error_event_table_ptr
);
238 iwl_fw_lmac1_set_alive_err_table(mvm
->trans
, lmac_error_event_table
);
241 mvm
->trans
->dbg
.lmac_error_event_table
[1] =
242 le32_to_cpu(lmac2
->dbg_ptrs
.error_event_table_ptr
);
244 umac_error_event_table
= le32_to_cpu(umac
->dbg_ptrs
.error_info_addr
);
246 if (!umac_error_event_table
) {
247 mvm
->support_umac_log
= false;
248 } else if (umac_error_event_table
>=
249 mvm
->trans
->cfg
->min_umac_error_event_table
) {
250 mvm
->support_umac_log
= true;
253 "Not valid error log pointer 0x%08X for %s uCode\n",
254 umac_error_event_table
,
255 (mvm
->fwrt
.cur_fw_img
== IWL_UCODE_INIT
) ?
257 mvm
->support_umac_log
= false;
260 if (mvm
->support_umac_log
)
261 iwl_fw_umac_set_alive_err_table(mvm
->trans
,
262 umac_error_event_table
);
264 alive_data
->scd_base_addr
= le32_to_cpu(lmac1
->dbg_ptrs
.scd_base_ptr
);
265 alive_data
->valid
= status
== IWL_ALIVE_STATUS_OK
;
268 "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n",
269 status
, lmac1
->ver_type
, lmac1
->ver_subtype
);
272 IWL_DEBUG_FW(mvm
, "Alive ucode CDB\n");
275 "UMAC version: Major - 0x%x, Minor - 0x%x\n",
276 le32_to_cpu(umac
->umac_major
),
277 le32_to_cpu(umac
->umac_minor
));
279 iwl_fwrt_update_fw_versions(&mvm
->fwrt
, lmac1
, umac
);
284 static bool iwl_wait_init_complete(struct iwl_notif_wait_data
*notif_wait
,
285 struct iwl_rx_packet
*pkt
, void *data
)
287 WARN_ON(pkt
->hdr
.cmd
!= INIT_COMPLETE_NOTIF
);
292 static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data
*notif_wait
,
293 struct iwl_rx_packet
*pkt
, void *data
)
295 struct iwl_phy_db
*phy_db
= data
;
297 if (pkt
->hdr
.cmd
!= CALIB_RES_NOTIF_PHY_DB
) {
298 WARN_ON(pkt
->hdr
.cmd
!= INIT_COMPLETE_NOTIF
);
302 WARN_ON(iwl_phy_db_set_section(phy_db
, pkt
));
307 static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm
*mvm
,
308 enum iwl_ucode_type ucode_type
)
310 struct iwl_notification_wait alive_wait
;
311 struct iwl_mvm_alive_data alive_data
= {};
312 const struct fw_img
*fw
;
314 enum iwl_ucode_type old_type
= mvm
->fwrt
.cur_fw_img
;
315 static const u16 alive_cmd
[] = { MVM_ALIVE
};
317 ucode_type
== IWL_UCODE_INIT
|| iwl_mvm_has_unified_ucode(mvm
);
319 if (ucode_type
== IWL_UCODE_REGULAR
&&
320 iwl_fw_dbg_conf_usniffer(mvm
->fw
, FW_DBG_START_FROM_ALIVE
) &&
321 !(fw_has_capa(&mvm
->fw
->ucode_capa
,
322 IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED
)))
323 fw
= iwl_get_ucode_image(mvm
->fw
, IWL_UCODE_REGULAR_USNIFFER
);
325 fw
= iwl_get_ucode_image(mvm
->fw
, ucode_type
);
328 iwl_fw_set_current_image(&mvm
->fwrt
, ucode_type
);
329 clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING
, &mvm
->status
);
331 iwl_init_notification_wait(&mvm
->notif_wait
, &alive_wait
,
332 alive_cmd
, ARRAY_SIZE(alive_cmd
),
333 iwl_alive_fn
, &alive_data
);
336 * We want to load the INIT firmware even in RFKILL
337 * For the unified firmware case, the ucode_type is not
338 * INIT, but we still need to run it.
340 ret
= iwl_trans_start_fw(mvm
->trans
, fw
, run_in_rfkill
);
342 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
343 iwl_remove_notification(&mvm
->notif_wait
, &alive_wait
);
348 * Some things may run in the background now, but we
349 * just wait for the ALIVE notification here.
351 ret
= iwl_wait_notification(&mvm
->notif_wait
, &alive_wait
,
352 MVM_UCODE_ALIVE_TIMEOUT
);
354 struct iwl_trans
*trans
= mvm
->trans
;
356 if (trans
->trans_cfg
->device_family
>=
357 IWL_DEVICE_FAMILY_22000
) {
359 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
360 iwl_read_umac_prph(trans
, UMAG_SB_CPU_1_STATUS
),
361 iwl_read_umac_prph(trans
,
362 UMAG_SB_CPU_2_STATUS
));
363 IWL_ERR(mvm
, "UMAC PC: 0x%x\n",
364 iwl_read_umac_prph(trans
,
365 UREG_UMAC_CURRENT_PC
));
366 IWL_ERR(mvm
, "LMAC PC: 0x%x\n",
367 iwl_read_umac_prph(trans
,
368 UREG_LMAC1_CURRENT_PC
));
369 if (iwl_mvm_is_cdb_supported(mvm
))
370 IWL_ERR(mvm
, "LMAC2 PC: 0x%x\n",
371 iwl_read_umac_prph(trans
,
372 UREG_LMAC2_CURRENT_PC
));
373 } else if (trans
->trans_cfg
->device_family
>=
374 IWL_DEVICE_FAMILY_8000
) {
376 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
377 iwl_read_prph(trans
, SB_CPU_1_STATUS
),
378 iwl_read_prph(trans
, SB_CPU_2_STATUS
));
381 if (ret
== -ETIMEDOUT
)
382 iwl_fw_dbg_error_collect(&mvm
->fwrt
,
383 FW_DBG_TRIGGER_ALIVE_TIMEOUT
);
385 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
389 if (!alive_data
.valid
) {
390 IWL_ERR(mvm
, "Loaded ucode is not valid!\n");
391 iwl_fw_set_current_image(&mvm
->fwrt
, old_type
);
395 iwl_trans_fw_alive(mvm
->trans
, alive_data
.scd_base_addr
);
398 * Note: all the queues are enabled as part of the interface
399 * initialization, but in firmware restart scenarios they
400 * could be stopped, so wake them up. In firmware restart,
401 * mac80211 will have the queues stopped as well until the
402 * reconfiguration completes. During normal startup, they
406 memset(&mvm
->queue_info
, 0, sizeof(mvm
->queue_info
));
408 * Set a 'fake' TID for the command queue, since we use the
409 * hweight() of the tid_bitmap as a refcount now. Not that
410 * we ever even consider the command queue as one we might
411 * want to reuse, but be safe nevertheless.
413 mvm
->queue_info
[IWL_MVM_DQA_CMD_QUEUE
].tid_bitmap
=
414 BIT(IWL_MAX_TID_COUNT
+ 2);
416 set_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING
, &mvm
->status
);
417 #ifdef CONFIG_IWLWIFI_DEBUGFS
418 iwl_fw_set_dbg_rec_on(&mvm
->fwrt
);
424 static int iwl_run_unified_mvm_ucode(struct iwl_mvm
*mvm
, bool read_nvm
)
426 struct iwl_notification_wait init_wait
;
427 struct iwl_nvm_access_complete_cmd nvm_complete
= {};
428 struct iwl_init_extended_cfg_cmd init_cfg
= {
429 .init_flags
= cpu_to_le32(BIT(IWL_INIT_NVM
)),
431 static const u16 init_complete
[] = {
436 if (mvm
->trans
->cfg
->tx_with_siso_diversity
)
437 init_cfg
.init_flags
|= cpu_to_le32(BIT(IWL_INIT_PHY
));
439 lockdep_assert_held(&mvm
->mutex
);
441 mvm
->rfkill_safe_init_done
= false;
443 iwl_init_notification_wait(&mvm
->notif_wait
,
446 ARRAY_SIZE(init_complete
),
447 iwl_wait_init_complete
,
450 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_EARLY
, NULL
);
452 /* Will also start the device */
453 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_REGULAR
);
455 IWL_ERR(mvm
, "Failed to start RT ucode: %d\n", ret
);
458 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_AFTER_ALIVE
,
461 /* Send init config command to mark that we are sending NVM access
464 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(SYSTEM_GROUP
,
465 INIT_EXTENDED_CFG_CMD
),
467 sizeof(init_cfg
), &init_cfg
);
469 IWL_ERR(mvm
, "Failed to run init config command: %d\n",
474 /* Load NVM to NIC if needed */
475 if (mvm
->nvm_file_name
) {
476 iwl_read_external_nvm(mvm
->trans
, mvm
->nvm_file_name
,
478 iwl_mvm_load_nvm_to_nic(mvm
);
481 if (IWL_MVM_PARSE_NVM
&& read_nvm
) {
482 ret
= iwl_nvm_init(mvm
);
484 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
489 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(REGULATORY_AND_NVM_GROUP
,
490 NVM_ACCESS_COMPLETE
),
492 sizeof(nvm_complete
), &nvm_complete
);
494 IWL_ERR(mvm
, "Failed to run complete NVM access: %d\n",
499 /* We wait for the INIT complete notification */
500 ret
= iwl_wait_notification(&mvm
->notif_wait
, &init_wait
,
501 MVM_UCODE_ALIVE_TIMEOUT
);
505 /* Read the NVM only at driver load time, no need to do this twice */
506 if (!IWL_MVM_PARSE_NVM
&& read_nvm
) {
507 mvm
->nvm_data
= iwl_get_nvm(mvm
->trans
, mvm
->fw
);
508 if (IS_ERR(mvm
->nvm_data
)) {
509 ret
= PTR_ERR(mvm
->nvm_data
);
510 mvm
->nvm_data
= NULL
;
511 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
516 mvm
->rfkill_safe_init_done
= true;
521 iwl_remove_notification(&mvm
->notif_wait
, &init_wait
);
525 static int iwl_send_phy_cfg_cmd(struct iwl_mvm
*mvm
)
527 struct iwl_phy_cfg_cmd phy_cfg_cmd
;
528 enum iwl_ucode_type ucode_type
= mvm
->fwrt
.cur_fw_img
;
530 if (iwl_mvm_has_unified_ucode(mvm
) &&
531 !mvm
->trans
->cfg
->tx_with_siso_diversity
)
534 if (mvm
->trans
->cfg
->tx_with_siso_diversity
) {
536 * TODO: currently we don't set the antenna but letting the NIC
537 * to decide which antenna to use. This should come from BIOS.
539 phy_cfg_cmd
.phy_cfg
=
540 cpu_to_le32(FW_PHY_CFG_CHAIN_SAD_ENABLED
);
544 phy_cfg_cmd
.phy_cfg
= cpu_to_le32(iwl_mvm_get_phy_config(mvm
));
546 /* set flags extra PHY configuration flags from the device's cfg */
547 phy_cfg_cmd
.phy_cfg
|= cpu_to_le32(mvm
->cfg
->extra_phy_cfg_flags
);
549 phy_cfg_cmd
.calib_control
.event_trigger
=
550 mvm
->fw
->default_calib
[ucode_type
].event_trigger
;
551 phy_cfg_cmd
.calib_control
.flow_trigger
=
552 mvm
->fw
->default_calib
[ucode_type
].flow_trigger
;
554 IWL_DEBUG_INFO(mvm
, "Sending Phy CFG command: 0x%x\n",
555 phy_cfg_cmd
.phy_cfg
);
557 return iwl_mvm_send_cmd_pdu(mvm
, PHY_CONFIGURATION_CMD
, 0,
558 sizeof(phy_cfg_cmd
), &phy_cfg_cmd
);
561 int iwl_run_init_mvm_ucode(struct iwl_mvm
*mvm
, bool read_nvm
)
563 struct iwl_notification_wait calib_wait
;
564 static const u16 init_complete
[] = {
566 CALIB_RES_NOTIF_PHY_DB
570 if (iwl_mvm_has_unified_ucode(mvm
))
571 return iwl_run_unified_mvm_ucode(mvm
, true);
573 lockdep_assert_held(&mvm
->mutex
);
575 mvm
->rfkill_safe_init_done
= false;
577 iwl_init_notification_wait(&mvm
->notif_wait
,
580 ARRAY_SIZE(init_complete
),
581 iwl_wait_phy_db_entry
,
584 /* Will also start the device */
585 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_INIT
);
587 IWL_ERR(mvm
, "Failed to start INIT ucode: %d\n", ret
);
591 if (mvm
->trans
->trans_cfg
->device_family
< IWL_DEVICE_FAMILY_8000
) {
592 ret
= iwl_mvm_send_bt_init_conf(mvm
);
597 /* Read the NVM only at driver load time, no need to do this twice */
599 ret
= iwl_nvm_init(mvm
);
601 IWL_ERR(mvm
, "Failed to read NVM: %d\n", ret
);
606 /* In case we read the NVM from external file, load it to the NIC */
607 if (mvm
->nvm_file_name
)
608 iwl_mvm_load_nvm_to_nic(mvm
);
610 WARN_ONCE(mvm
->nvm_data
->nvm_version
< mvm
->trans
->cfg
->nvm_ver
,
611 "Too old NVM version (0x%0x, required = 0x%0x)",
612 mvm
->nvm_data
->nvm_version
, mvm
->trans
->cfg
->nvm_ver
);
615 * abort after reading the nvm in case RF Kill is on, we will complete
616 * the init seq later when RF kill will switch to off
618 if (iwl_mvm_is_radio_hw_killed(mvm
)) {
619 IWL_DEBUG_RF_KILL(mvm
,
620 "jump over all phy activities due to RF kill\n");
624 mvm
->rfkill_safe_init_done
= true;
626 /* Send TX valid antennas before triggering calibrations */
627 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
631 ret
= iwl_send_phy_cfg_cmd(mvm
);
633 IWL_ERR(mvm
, "Failed to run INIT calibrations: %d\n",
639 * Some things may run in the background now, but we
640 * just wait for the calibration complete notification.
642 ret
= iwl_wait_notification(&mvm
->notif_wait
, &calib_wait
,
643 MVM_UCODE_CALIB_TIMEOUT
);
647 if (iwl_mvm_is_radio_hw_killed(mvm
)) {
648 IWL_DEBUG_RF_KILL(mvm
, "RFKILL while calibrating.\n");
651 IWL_ERR(mvm
, "Failed to run INIT calibrations: %d\n",
658 iwl_remove_notification(&mvm
->notif_wait
, &calib_wait
);
660 mvm
->rfkill_safe_init_done
= false;
661 if (iwlmvm_mod_params
.init_dbg
&& !mvm
->nvm_data
) {
662 /* we want to debug INIT and we have no NVM - fake */
663 mvm
->nvm_data
= kzalloc(sizeof(struct iwl_nvm_data
) +
664 sizeof(struct ieee80211_channel
) +
665 sizeof(struct ieee80211_rate
),
669 mvm
->nvm_data
->bands
[0].channels
= mvm
->nvm_data
->channels
;
670 mvm
->nvm_data
->bands
[0].n_channels
= 1;
671 mvm
->nvm_data
->bands
[0].n_bitrates
= 1;
672 mvm
->nvm_data
->bands
[0].bitrates
=
673 (void *)mvm
->nvm_data
->channels
+ 1;
674 mvm
->nvm_data
->bands
[0].bitrates
->hw_value
= 10;
680 static int iwl_mvm_config_ltr(struct iwl_mvm
*mvm
)
682 struct iwl_ltr_config_cmd cmd
= {
683 .flags
= cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE
),
686 if (!mvm
->trans
->ltr_enabled
)
689 return iwl_mvm_send_cmd_pdu(mvm
, LTR_CONFIG
, 0,
694 int iwl_mvm_sar_select_profile(struct iwl_mvm
*mvm
, int prof_a
, int prof_b
)
697 struct iwl_dev_tx_power_cmd v5
;
698 struct iwl_dev_tx_power_cmd_v4 v4
;
703 cmd
.v5
.v3
.set_mode
= cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS
);
705 if (fw_has_api(&mvm
->fw
->ucode_capa
,
706 IWL_UCODE_TLV_API_REDUCE_TX_POWER
))
707 len
= sizeof(cmd
.v5
);
708 else if (fw_has_capa(&mvm
->fw
->ucode_capa
,
709 IWL_UCODE_TLV_CAPA_TX_POWER_ACK
))
710 len
= sizeof(struct iwl_dev_tx_power_cmd_v4
);
712 len
= sizeof(cmd
.v4
.v3
);
715 if (iwl_sar_select_profile(&mvm
->fwrt
, cmd
.v5
.v3
.per_chain_restriction
,
718 IWL_DEBUG_RADIO(mvm
, "Sending REDUCE_TX_POWER_CMD per chain\n");
719 return iwl_mvm_send_cmd_pdu(mvm
, REDUCE_TX_POWER_CMD
, 0, len
, &cmd
);
722 int iwl_mvm_get_sar_geo_profile(struct iwl_mvm
*mvm
)
724 union geo_tx_power_profiles_cmd geo_tx_cmd
;
727 struct iwl_host_cmd cmd
;
729 if (fw_has_api(&mvm
->fwrt
.fw
->ucode_capa
,
730 IWL_UCODE_TLV_API_SAR_TABLE_VER
)) {
731 geo_tx_cmd
.geo_cmd
.ops
=
732 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE
);
733 len
= sizeof(geo_tx_cmd
.geo_cmd
);
735 geo_tx_cmd
.geo_cmd_v1
.ops
=
736 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE
);
737 len
= sizeof(geo_tx_cmd
.geo_cmd_v1
);
740 if (!iwl_sar_geo_support(&mvm
->fwrt
))
743 cmd
= (struct iwl_host_cmd
){
744 .id
= WIDE_ID(PHY_OPS_GROUP
, GEO_TX_POWER_LIMIT
),
746 .flags
= CMD_WANT_SKB
,
747 .data
= { &geo_tx_cmd
},
750 ret
= iwl_mvm_send_cmd(mvm
, &cmd
);
752 IWL_ERR(mvm
, "Failed to get geographic profile info %d\n", ret
);
755 ret
= iwl_validate_sar_geo_profile(&mvm
->fwrt
, &cmd
);
760 static int iwl_mvm_sar_geo_init(struct iwl_mvm
*mvm
)
762 u16 cmd_wide_id
= WIDE_ID(PHY_OPS_GROUP
, GEO_TX_POWER_LIMIT
);
763 union geo_tx_power_profiles_cmd cmd
;
766 cmd
.geo_cmd
.ops
= cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES
);
768 iwl_sar_geo_init(&mvm
->fwrt
, cmd
.geo_cmd
.table
);
770 cmd
.geo_cmd
.table_revision
= cpu_to_le32(mvm
->fwrt
.geo_rev
);
772 if (!fw_has_api(&mvm
->fwrt
.fw
->ucode_capa
,
773 IWL_UCODE_TLV_API_SAR_TABLE_VER
)) {
774 len
= sizeof(struct iwl_geo_tx_power_profiles_cmd_v1
);
776 len
= sizeof(cmd
.geo_cmd
);
779 return iwl_mvm_send_cmd_pdu(mvm
, cmd_wide_id
, 0, len
, &cmd
);
782 static int iwl_mvm_get_ppag_table(struct iwl_mvm
*mvm
)
784 union acpi_object
*wifi_pkg
, *data
, *enabled
;
785 int i
, j
, ret
, tbl_rev
;
788 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(0);
789 data
= iwl_acpi_get_object(mvm
->dev
, ACPI_PPAG_METHOD
);
791 return PTR_ERR(data
);
793 wifi_pkg
= iwl_acpi_get_wifi_pkg(mvm
->dev
, data
,
794 ACPI_PPAG_WIFI_DATA_SIZE
, &tbl_rev
);
796 if (IS_ERR(wifi_pkg
)) {
797 ret
= PTR_ERR(wifi_pkg
);
806 enabled
= &wifi_pkg
->package
.elements
[1];
807 if (enabled
->type
!= ACPI_TYPE_INTEGER
||
808 (enabled
->integer
.value
!= 0 && enabled
->integer
.value
!= 1)) {
813 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(enabled
->integer
.value
);
814 if (!mvm
->fwrt
.ppag_table
.enabled
) {
820 * read, verify gain values and save them into the PPAG table.
821 * first sub-band (j=0) corresponds to Low-Band (2.4GHz), and the
822 * following sub-bands to High-Band (5GHz).
824 for (i
= 0; i
< ACPI_PPAG_NUM_CHAINS
; i
++) {
825 for (j
= 0; j
< ACPI_PPAG_NUM_SUB_BANDS
; j
++) {
826 union acpi_object
*ent
;
828 ent
= &wifi_pkg
->package
.elements
[idx
++];
829 if (ent
->type
!= ACPI_TYPE_INTEGER
||
830 (j
== 0 && ent
->integer
.value
> ACPI_PPAG_MAX_LB
) ||
831 (j
== 0 && ent
->integer
.value
< ACPI_PPAG_MIN_LB
) ||
832 (j
!= 0 && ent
->integer
.value
> ACPI_PPAG_MAX_HB
) ||
833 (j
!= 0 && ent
->integer
.value
< ACPI_PPAG_MIN_HB
)) {
834 mvm
->fwrt
.ppag_table
.enabled
= cpu_to_le32(0);
838 mvm
->fwrt
.ppag_table
.gain
[i
][j
] = ent
->integer
.value
;
847 int iwl_mvm_ppag_send_cmd(struct iwl_mvm
*mvm
)
851 if (!fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_SET_PPAG
)) {
853 "PPAG capability not supported by FW, command not sent.\n");
857 if (!mvm
->fwrt
.ppag_table
.enabled
) {
859 "PPAG not enabled, command not sent.\n");
863 IWL_DEBUG_RADIO(mvm
, "Sending PER_PLATFORM_ANT_GAIN_CMD\n");
865 for (i
= 0; i
< ACPI_PPAG_NUM_CHAINS
; i
++) {
866 for (j
= 0; j
< ACPI_PPAG_NUM_SUB_BANDS
; j
++) {
868 "PPAG table: chain[%d] band[%d]: gain = %d\n",
869 i
, j
, mvm
->fwrt
.ppag_table
.gain
[i
][j
]);
873 ret
= iwl_mvm_send_cmd_pdu(mvm
, WIDE_ID(PHY_OPS_GROUP
,
874 PER_PLATFORM_ANT_GAIN_CMD
),
875 0, sizeof(mvm
->fwrt
.ppag_table
),
876 &mvm
->fwrt
.ppag_table
);
878 IWL_ERR(mvm
, "failed to send PER_PLATFORM_ANT_GAIN_CMD (%d)\n",
884 static int iwl_mvm_ppag_init(struct iwl_mvm
*mvm
)
888 ret
= iwl_mvm_get_ppag_table(mvm
);
891 "PPAG BIOS table invalid or unavailable. (%d)\n",
895 return iwl_mvm_ppag_send_cmd(mvm
);
898 #else /* CONFIG_ACPI */
900 inline int iwl_mvm_sar_select_profile(struct iwl_mvm
*mvm
,
901 int prof_a
, int prof_b
)
906 inline int iwl_mvm_get_sar_geo_profile(struct iwl_mvm
*mvm
)
911 static int iwl_mvm_sar_geo_init(struct iwl_mvm
*mvm
)
916 int iwl_mvm_ppag_send_cmd(struct iwl_mvm
*mvm
)
921 static int iwl_mvm_ppag_init(struct iwl_mvm
*mvm
)
925 #endif /* CONFIG_ACPI */
927 void iwl_mvm_send_recovery_cmd(struct iwl_mvm
*mvm
, u32 flags
)
929 u32 error_log_size
= mvm
->fw
->ucode_capa
.error_log_size
;
933 struct iwl_fw_error_recovery_cmd recovery_cmd
= {
934 .flags
= cpu_to_le32(flags
),
937 struct iwl_host_cmd host_cmd
= {
938 .id
= WIDE_ID(SYSTEM_GROUP
, FW_ERROR_RECOVERY_CMD
),
939 .flags
= CMD_WANT_SKB
,
940 .data
= {&recovery_cmd
, },
941 .len
= {sizeof(recovery_cmd
), },
944 /* no error log was defined in TLV */
948 if (flags
& ERROR_RECOVERY_UPDATE_DB
) {
949 /* no buf was allocated while HW reset */
950 if (!mvm
->error_recovery_buf
)
953 host_cmd
.data
[1] = mvm
->error_recovery_buf
;
954 host_cmd
.len
[1] = error_log_size
;
955 host_cmd
.dataflags
[1] = IWL_HCMD_DFL_NOCOPY
;
956 recovery_cmd
.buf_size
= cpu_to_le32(error_log_size
);
959 ret
= iwl_mvm_send_cmd(mvm
, &host_cmd
);
960 kfree(mvm
->error_recovery_buf
);
961 mvm
->error_recovery_buf
= NULL
;
964 IWL_ERR(mvm
, "Failed to send recovery cmd %d\n", ret
);
968 /* skb respond is only relevant in ERROR_RECOVERY_UPDATE_DB */
969 if (flags
& ERROR_RECOVERY_UPDATE_DB
) {
970 resp
= le32_to_cpu(*(__le32
*)host_cmd
.resp_pkt
->data
);
973 "Failed to send recovery cmd blob was invalid %d\n",
978 static int iwl_mvm_sar_init(struct iwl_mvm
*mvm
)
982 ret
= iwl_sar_get_wrds_table(&mvm
->fwrt
);
985 "WRDS SAR BIOS table invalid or unavailable. (%d)\n",
988 * If not available, don't fail and don't bother with EWRD.
989 * Return 1 to tell that we can't use WGDS either.
994 ret
= iwl_sar_get_ewrd_table(&mvm
->fwrt
);
995 /* if EWRD is not available, we can still use WRDS, so don't fail */
998 "EWRD SAR BIOS table invalid or unavailable. (%d)\n",
1001 ret
= iwl_mvm_sar_select_profile(mvm
, 1, 1);
1003 * If we don't have profile 0 from BIOS, just skip it. This
1004 * means that SAR Geo will not be enabled either, even if we
1005 * have other valid profiles.
1013 static int iwl_mvm_load_rt_fw(struct iwl_mvm
*mvm
)
1017 if (iwl_mvm_has_unified_ucode(mvm
))
1018 return iwl_run_unified_mvm_ucode(mvm
, false);
1020 ret
= iwl_run_init_mvm_ucode(mvm
, false);
1023 IWL_ERR(mvm
, "Failed to run INIT ucode: %d\n", ret
);
1025 if (iwlmvm_mod_params
.init_dbg
)
1030 iwl_fw_dbg_stop_sync(&mvm
->fwrt
);
1031 iwl_trans_stop_device(mvm
->trans
);
1032 ret
= iwl_trans_start_hw(mvm
->trans
);
1036 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_EARLY
, NULL
);
1038 mvm
->rfkill_safe_init_done
= false;
1039 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_REGULAR
);
1043 mvm
->rfkill_safe_init_done
= true;
1045 iwl_dbg_tlv_time_point(&mvm
->fwrt
, IWL_FW_INI_TIME_POINT_AFTER_ALIVE
,
1048 return iwl_init_paging(&mvm
->fwrt
, mvm
->fwrt
.cur_fw_img
);
1051 int iwl_mvm_up(struct iwl_mvm
*mvm
)
1054 struct ieee80211_channel
*chan
;
1055 struct cfg80211_chan_def chandef
;
1056 struct ieee80211_supported_band
*sband
= NULL
;
1058 lockdep_assert_held(&mvm
->mutex
);
1060 ret
= iwl_trans_start_hw(mvm
->trans
);
1064 ret
= iwl_mvm_load_rt_fw(mvm
);
1066 IWL_ERR(mvm
, "Failed to start RT ucode: %d\n", ret
);
1067 if (ret
!= -ERFKILL
)
1068 iwl_fw_dbg_error_collect(&mvm
->fwrt
,
1069 FW_DBG_TRIGGER_DRIVER
);
1073 iwl_get_shared_mem_conf(&mvm
->fwrt
);
1075 ret
= iwl_mvm_sf_update(mvm
, NULL
, false);
1077 IWL_ERR(mvm
, "Failed to initialize Smart Fifo\n");
1079 if (!iwl_trans_dbg_ini_valid(mvm
->trans
)) {
1080 mvm
->fwrt
.dump
.conf
= FW_DBG_INVALID
;
1081 /* if we have a destination, assume EARLY START */
1082 if (mvm
->fw
->dbg
.dest_tlv
)
1083 mvm
->fwrt
.dump
.conf
= FW_DBG_START_FROM_ALIVE
;
1084 iwl_fw_start_dbg_conf(&mvm
->fwrt
, FW_DBG_START_FROM_ALIVE
);
1087 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
1091 if (!iwl_mvm_has_unified_ucode(mvm
)) {
1092 /* Send phy db control command and then phy db calibration */
1093 ret
= iwl_send_phy_db_data(mvm
->phy_db
);
1098 ret
= iwl_send_phy_cfg_cmd(mvm
);
1102 ret
= iwl_mvm_send_bt_init_conf(mvm
);
1106 /* Init RSS configuration */
1107 if (mvm
->trans
->trans_cfg
->device_family
>= IWL_DEVICE_FAMILY_22000
) {
1108 ret
= iwl_configure_rxq(mvm
);
1110 IWL_ERR(mvm
, "Failed to configure RX queues: %d\n",
1116 if (iwl_mvm_has_new_rx_api(mvm
)) {
1117 ret
= iwl_send_rss_cfg_cmd(mvm
);
1119 IWL_ERR(mvm
, "Failed to configure RSS queues: %d\n",
1125 /* init the fw <-> mac80211 STA mapping */
1126 for (i
= 0; i
< ARRAY_SIZE(mvm
->fw_id_to_mac_id
); i
++)
1127 RCU_INIT_POINTER(mvm
->fw_id_to_mac_id
[i
], NULL
);
1129 mvm
->tdls_cs
.peer
.sta_id
= IWL_MVM_INVALID_STA
;
1131 /* reset quota debouncing buffer - 0xff will yield invalid data */
1132 memset(&mvm
->last_quota_cmd
, 0xff, sizeof(mvm
->last_quota_cmd
));
1134 if (fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_DQA_SUPPORT
)) {
1135 ret
= iwl_mvm_send_dqa_cmd(mvm
);
1140 /* Add auxiliary station for scanning */
1141 ret
= iwl_mvm_add_aux_sta(mvm
);
1145 /* Add all the PHY contexts */
1147 while (!sband
&& i
< NUM_NL80211_BANDS
)
1148 sband
= mvm
->hw
->wiphy
->bands
[i
++];
1150 if (WARN_ON_ONCE(!sband
))
1153 chan
= &sband
->channels
[0];
1155 cfg80211_chandef_create(&chandef
, chan
, NL80211_CHAN_NO_HT
);
1156 for (i
= 0; i
< NUM_PHY_CTX
; i
++) {
1158 * The channel used here isn't relevant as it's
1159 * going to be overwritten in the other flows.
1160 * For now use the first channel we have.
1162 ret
= iwl_mvm_phy_ctxt_add(mvm
, &mvm
->phy_ctxts
[i
],
1168 if (iwl_mvm_is_tt_in_fw(mvm
)) {
1169 /* in order to give the responsibility of ct-kill and
1170 * TX backoff to FW we need to send empty temperature reporting
1171 * cmd during init time
1173 iwl_mvm_send_temp_report_ths_cmd(mvm
);
1175 /* Initialize tx backoffs to the minimal possible */
1176 iwl_mvm_tt_tx_backoff(mvm
, 0);
1179 #ifdef CONFIG_THERMAL
1180 /* TODO: read the budget from BIOS / Platform NVM */
1183 * In case there is no budget from BIOS / Platform NVM the default
1184 * budget should be 2000mW (cooling state 0).
1186 if (iwl_mvm_is_ctdp_supported(mvm
)) {
1187 ret
= iwl_mvm_ctdp_command(mvm
, CTDP_CMD_OPERATION_START
,
1188 mvm
->cooling_dev
.cur_state
);
1194 if (!fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_SET_LTR_GEN2
))
1195 WARN_ON(iwl_mvm_config_ltr(mvm
));
1197 ret
= iwl_mvm_power_update_device(mvm
);
1202 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx
1203 * anyway, so don't init MCC.
1205 if (!test_bit(IWL_MVM_STATUS_HW_CTKILL
, &mvm
->status
)) {
1206 ret
= iwl_mvm_init_mcc(mvm
);
1211 if (fw_has_capa(&mvm
->fw
->ucode_capa
, IWL_UCODE_TLV_CAPA_UMAC_SCAN
)) {
1212 mvm
->scan_type
= IWL_SCAN_TYPE_NOT_SET
;
1213 mvm
->hb_scan_type
= IWL_SCAN_TYPE_NOT_SET
;
1214 ret
= iwl_mvm_config_scan(mvm
);
1219 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART
, &mvm
->status
))
1220 iwl_mvm_send_recovery_cmd(mvm
, ERROR_RECOVERY_UPDATE_DB
);
1222 if (iwl_acpi_get_eckv(mvm
->dev
, &mvm
->ext_clock_valid
))
1223 IWL_DEBUG_INFO(mvm
, "ECKV table doesn't exist in BIOS\n");
1225 ret
= iwl_mvm_ppag_init(mvm
);
1229 ret
= iwl_mvm_sar_init(mvm
);
1231 ret
= iwl_mvm_sar_geo_init(mvm
);
1232 } else if (ret
> 0 && !iwl_sar_get_wgds_table(&mvm
->fwrt
)) {
1234 * If basic SAR is not available, we check for WGDS,
1235 * which should *not* be available either. If it is
1236 * available, issue an error, because we can't use SAR
1237 * Geo without basic SAR.
1239 IWL_ERR(mvm
, "BIOS contains WGDS but no WRDS\n");
1245 iwl_mvm_leds_sync(mvm
);
1247 IWL_DEBUG_INFO(mvm
, "RT uCode started.\n");
1250 if (!iwlmvm_mod_params
.init_dbg
|| !ret
)
1251 iwl_mvm_stop_device(mvm
);
1255 int iwl_mvm_load_d3_fw(struct iwl_mvm
*mvm
)
1259 lockdep_assert_held(&mvm
->mutex
);
1261 ret
= iwl_trans_start_hw(mvm
->trans
);
1265 ret
= iwl_mvm_load_ucode_wait_alive(mvm
, IWL_UCODE_WOWLAN
);
1267 IWL_ERR(mvm
, "Failed to start WoWLAN firmware: %d\n", ret
);
1271 ret
= iwl_send_tx_ant_cfg(mvm
, iwl_mvm_get_valid_tx_ant(mvm
));
1275 /* Send phy db control command and then phy db calibration*/
1276 ret
= iwl_send_phy_db_data(mvm
->phy_db
);
1280 ret
= iwl_send_phy_cfg_cmd(mvm
);
1284 /* init the fw <-> mac80211 STA mapping */
1285 for (i
= 0; i
< ARRAY_SIZE(mvm
->fw_id_to_mac_id
); i
++)
1286 RCU_INIT_POINTER(mvm
->fw_id_to_mac_id
[i
], NULL
);
1288 /* Add auxiliary station for scanning */
1289 ret
= iwl_mvm_add_aux_sta(mvm
);
1295 iwl_mvm_stop_device(mvm
);
1299 void iwl_mvm_rx_card_state_notif(struct iwl_mvm
*mvm
,
1300 struct iwl_rx_cmd_buffer
*rxb
)
1302 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
1303 struct iwl_card_state_notif
*card_state_notif
= (void *)pkt
->data
;
1304 u32 flags
= le32_to_cpu(card_state_notif
->flags
);
1306 IWL_DEBUG_RF_KILL(mvm
, "Card state received: HW:%s SW:%s CT:%s\n",
1307 (flags
& HW_CARD_DISABLED
) ? "Kill" : "On",
1308 (flags
& SW_CARD_DISABLED
) ? "Kill" : "On",
1309 (flags
& CT_KILL_CARD_DISABLED
) ?
1310 "Reached" : "Not reached");
1313 void iwl_mvm_rx_mfuart_notif(struct iwl_mvm
*mvm
,
1314 struct iwl_rx_cmd_buffer
*rxb
)
1316 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
1317 struct iwl_mfuart_load_notif
*mfuart_notif
= (void *)pkt
->data
;
1320 "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
1321 le32_to_cpu(mfuart_notif
->installed_ver
),
1322 le32_to_cpu(mfuart_notif
->external_ver
),
1323 le32_to_cpu(mfuart_notif
->status
),
1324 le32_to_cpu(mfuart_notif
->duration
));
1326 if (iwl_rx_packet_payload_len(pkt
) == sizeof(*mfuart_notif
))
1328 "MFUART: image size: 0x%08x\n",
1329 le32_to_cpu(mfuart_notif
->image_size
));