xref: /linux/drivers/net/wireless/intel/iwlwifi/mvm/fw.c (revision 001821b0e79716c4e17c71d8e053a23599a7a508)
1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3  * Copyright (C) 2012-2014, 2018-2024 Intel Corporation
4  * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5  * Copyright (C) 2016-2017 Intel Deutschland GmbH
6  */
7 #include <net/mac80211.h>
8 #include <linux/netdevice.h>
9 #include <linux/dmi.h>
10 
11 #include "iwl-trans.h"
12 #include "iwl-op-mode.h"
13 #include "fw/img.h"
14 #include "iwl-debug.h"
15 #include "iwl-prph.h"
16 #include "fw/acpi.h"
17 #include "fw/pnvm.h"
18 #include "fw/uefi.h"
19 #include "fw/regulatory.h"
20 
21 #include "mvm.h"
22 #include "fw/dbg.h"
23 #include "iwl-phy-db.h"
24 #include "iwl-modparams.h"
25 #include "iwl-nvm-parse.h"
26 #include "time-sync.h"
27 
28 #define MVM_UCODE_ALIVE_TIMEOUT	(2 * HZ)
29 #define MVM_UCODE_CALIB_TIMEOUT	(2 * HZ)
30 
31 #define IWL_UATS_VLP_AP_SUPPORTED BIT(29)
32 #define IWL_UATS_AFC_AP_SUPPORTED BIT(30)
33 
34 struct iwl_mvm_alive_data {
35 	bool valid;
36 	u32 scd_base_addr;
37 };
38 
39 static int iwl_send_tx_ant_cfg(struct iwl_mvm *mvm, u8 valid_tx_ant)
40 {
41 	struct iwl_tx_ant_cfg_cmd tx_ant_cmd = {
42 		.valid = cpu_to_le32(valid_tx_ant),
43 	};
44 
45 	IWL_DEBUG_FW(mvm, "select valid tx ant: %u\n", valid_tx_ant);
46 	return iwl_mvm_send_cmd_pdu(mvm, TX_ANT_CONFIGURATION_CMD, 0,
47 				    sizeof(tx_ant_cmd), &tx_ant_cmd);
48 }
49 
50 static int iwl_send_rss_cfg_cmd(struct iwl_mvm *mvm)
51 {
52 	int i;
53 	struct iwl_rss_config_cmd cmd = {
54 		.flags = cpu_to_le32(IWL_RSS_ENABLE),
55 		.hash_mask = BIT(IWL_RSS_HASH_TYPE_IPV4_TCP) |
56 			     BIT(IWL_RSS_HASH_TYPE_IPV4_UDP) |
57 			     BIT(IWL_RSS_HASH_TYPE_IPV4_PAYLOAD) |
58 			     BIT(IWL_RSS_HASH_TYPE_IPV6_TCP) |
59 			     BIT(IWL_RSS_HASH_TYPE_IPV6_UDP) |
60 			     BIT(IWL_RSS_HASH_TYPE_IPV6_PAYLOAD),
61 	};
62 
63 	if (mvm->trans->num_rx_queues == 1)
64 		return 0;
65 
66 	/* Do not direct RSS traffic to Q 0 which is our fallback queue */
67 	for (i = 0; i < ARRAY_SIZE(cmd.indirection_table); i++)
68 		cmd.indirection_table[i] =
69 			1 + (i % (mvm->trans->num_rx_queues - 1));
70 	netdev_rss_key_fill(cmd.secret_key, sizeof(cmd.secret_key));
71 
72 	return iwl_mvm_send_cmd_pdu(mvm, RSS_CONFIG_CMD, 0, sizeof(cmd), &cmd);
73 }
74 
75 static int iwl_mvm_send_dqa_cmd(struct iwl_mvm *mvm)
76 {
77 	struct iwl_dqa_enable_cmd dqa_cmd = {
78 		.cmd_queue = cpu_to_le32(IWL_MVM_DQA_CMD_QUEUE),
79 	};
80 	u32 cmd_id = WIDE_ID(DATA_PATH_GROUP, DQA_ENABLE_CMD);
81 	int ret;
82 
83 	ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, sizeof(dqa_cmd), &dqa_cmd);
84 	if (ret)
85 		IWL_ERR(mvm, "Failed to send DQA enabling command: %d\n", ret);
86 	else
87 		IWL_DEBUG_FW(mvm, "Working in DQA mode\n");
88 
89 	return ret;
90 }
91 
92 void iwl_mvm_mfu_assert_dump_notif(struct iwl_mvm *mvm,
93 				   struct iwl_rx_cmd_buffer *rxb)
94 {
95 	struct iwl_rx_packet *pkt = rxb_addr(rxb);
96 	struct iwl_mfu_assert_dump_notif *mfu_dump_notif = (void *)pkt->data;
97 	__le32 *dump_data = mfu_dump_notif->data;
98 	int n_words = le32_to_cpu(mfu_dump_notif->data_size) / sizeof(__le32);
99 	int i;
100 
101 	if (mfu_dump_notif->index_num == 0)
102 		IWL_INFO(mvm, "MFUART assert id 0x%x occurred\n",
103 			 le32_to_cpu(mfu_dump_notif->assert_id));
104 
105 	for (i = 0; i < n_words; i++)
106 		IWL_DEBUG_INFO(mvm,
107 			       "MFUART assert dump, dword %u: 0x%08x\n",
108 			       le16_to_cpu(mfu_dump_notif->index_num) *
109 			       n_words + i,
110 			       le32_to_cpu(dump_data[i]));
111 }
112 
113 static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
114 			 struct iwl_rx_packet *pkt, void *data)
115 {
116 	unsigned int pkt_len = iwl_rx_packet_payload_len(pkt);
117 	struct iwl_mvm *mvm =
118 		container_of(notif_wait, struct iwl_mvm, notif_wait);
119 	struct iwl_mvm_alive_data *alive_data = data;
120 	struct iwl_umac_alive *umac;
121 	struct iwl_lmac_alive *lmac1;
122 	struct iwl_lmac_alive *lmac2 = NULL;
123 	u16 status;
124 	u32 lmac_error_event_table, umac_error_table;
125 	u32 version = iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
126 					      UCODE_ALIVE_NTFY, 0);
127 	u32 i;
128 
129 
130 	if (version == 6) {
131 		struct iwl_alive_ntf_v6 *palive;
132 
133 		if (pkt_len < sizeof(*palive))
134 			return false;
135 
136 		palive = (void *)pkt->data;
137 		mvm->trans->dbg.imr_data.imr_enable =
138 			le32_to_cpu(palive->imr.enabled);
139 		mvm->trans->dbg.imr_data.imr_size =
140 			le32_to_cpu(palive->imr.size);
141 		mvm->trans->dbg.imr_data.imr2sram_remainbyte =
142 			mvm->trans->dbg.imr_data.imr_size;
143 		mvm->trans->dbg.imr_data.imr_base_addr =
144 			palive->imr.base_addr;
145 		mvm->trans->dbg.imr_data.imr_curr_addr =
146 			le64_to_cpu(mvm->trans->dbg.imr_data.imr_base_addr);
147 		IWL_DEBUG_FW(mvm, "IMR Enabled: 0x0%x  size 0x0%x Address 0x%016llx\n",
148 			     mvm->trans->dbg.imr_data.imr_enable,
149 			     mvm->trans->dbg.imr_data.imr_size,
150 			     le64_to_cpu(mvm->trans->dbg.imr_data.imr_base_addr));
151 
152 		if (!mvm->trans->dbg.imr_data.imr_enable) {
153 			for (i = 0; i < ARRAY_SIZE(mvm->trans->dbg.active_regions); i++) {
154 				struct iwl_ucode_tlv *reg_tlv;
155 				struct iwl_fw_ini_region_tlv *reg;
156 
157 				reg_tlv = mvm->trans->dbg.active_regions[i];
158 				if (!reg_tlv)
159 					continue;
160 
161 				reg = (void *)reg_tlv->data;
162 				/*
163 				 * We have only one DRAM IMR region, so we
164 				 * can break as soon as we find the first
165 				 * one.
166 				 */
167 				if (reg->type == IWL_FW_INI_REGION_DRAM_IMR) {
168 					mvm->trans->dbg.unsupported_region_msk |= BIT(i);
169 					break;
170 				}
171 			}
172 		}
173 	}
174 
175 	if (version >= 5) {
176 		struct iwl_alive_ntf_v5 *palive;
177 
178 		if (pkt_len < sizeof(*palive))
179 			return false;
180 
181 		palive = (void *)pkt->data;
182 		umac = &palive->umac_data;
183 		lmac1 = &palive->lmac_data[0];
184 		lmac2 = &palive->lmac_data[1];
185 		status = le16_to_cpu(palive->status);
186 
187 		mvm->trans->sku_id[0] = le32_to_cpu(palive->sku_id.data[0]);
188 		mvm->trans->sku_id[1] = le32_to_cpu(palive->sku_id.data[1]);
189 		mvm->trans->sku_id[2] = le32_to_cpu(palive->sku_id.data[2]);
190 
191 		IWL_DEBUG_FW(mvm, "Got sku_id: 0x0%x 0x0%x 0x0%x\n",
192 			     mvm->trans->sku_id[0],
193 			     mvm->trans->sku_id[1],
194 			     mvm->trans->sku_id[2]);
195 	} else if (iwl_rx_packet_payload_len(pkt) == sizeof(struct iwl_alive_ntf_v4)) {
196 		struct iwl_alive_ntf_v4 *palive;
197 
198 		if (pkt_len < sizeof(*palive))
199 			return false;
200 
201 		palive = (void *)pkt->data;
202 		umac = &palive->umac_data;
203 		lmac1 = &palive->lmac_data[0];
204 		lmac2 = &palive->lmac_data[1];
205 		status = le16_to_cpu(palive->status);
206 	} else if (iwl_rx_packet_payload_len(pkt) ==
207 		   sizeof(struct iwl_alive_ntf_v3)) {
208 		struct iwl_alive_ntf_v3 *palive3;
209 
210 		if (pkt_len < sizeof(*palive3))
211 			return false;
212 
213 		palive3 = (void *)pkt->data;
214 		umac = &palive3->umac_data;
215 		lmac1 = &palive3->lmac_data;
216 		status = le16_to_cpu(palive3->status);
217 	} else {
218 		WARN(1, "unsupported alive notification (size %d)\n",
219 		     iwl_rx_packet_payload_len(pkt));
220 		/* get timeout later */
221 		return false;
222 	}
223 
224 	lmac_error_event_table =
225 		le32_to_cpu(lmac1->dbg_ptrs.error_event_table_ptr);
226 	iwl_fw_lmac1_set_alive_err_table(mvm->trans, lmac_error_event_table);
227 
228 	if (lmac2)
229 		mvm->trans->dbg.lmac_error_event_table[1] =
230 			le32_to_cpu(lmac2->dbg_ptrs.error_event_table_ptr);
231 
232 	umac_error_table = le32_to_cpu(umac->dbg_ptrs.error_info_addr) &
233 							~FW_ADDR_CACHE_CONTROL;
234 
235 	if (umac_error_table) {
236 		if (umac_error_table >=
237 		    mvm->trans->cfg->min_umac_error_event_table) {
238 			iwl_fw_umac_set_alive_err_table(mvm->trans,
239 							umac_error_table);
240 		} else {
241 			IWL_ERR(mvm,
242 				"Not valid error log pointer 0x%08X for %s uCode\n",
243 				umac_error_table,
244 				(mvm->fwrt.cur_fw_img == IWL_UCODE_INIT) ?
245 				"Init" : "RT");
246 		}
247 	}
248 
249 	alive_data->scd_base_addr = le32_to_cpu(lmac1->dbg_ptrs.scd_base_ptr);
250 	alive_data->valid = status == IWL_ALIVE_STATUS_OK;
251 
252 	IWL_DEBUG_FW(mvm,
253 		     "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n",
254 		     status, lmac1->ver_type, lmac1->ver_subtype);
255 
256 	if (lmac2)
257 		IWL_DEBUG_FW(mvm, "Alive ucode CDB\n");
258 
259 	IWL_DEBUG_FW(mvm,
260 		     "UMAC version: Major - 0x%x, Minor - 0x%x\n",
261 		     le32_to_cpu(umac->umac_major),
262 		     le32_to_cpu(umac->umac_minor));
263 
264 	iwl_fwrt_update_fw_versions(&mvm->fwrt, lmac1, umac);
265 
266 	return true;
267 }
268 
269 static bool iwl_wait_init_complete(struct iwl_notif_wait_data *notif_wait,
270 				   struct iwl_rx_packet *pkt, void *data)
271 {
272 	WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF);
273 
274 	return true;
275 }
276 
277 static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data *notif_wait,
278 				  struct iwl_rx_packet *pkt, void *data)
279 {
280 	struct iwl_phy_db *phy_db = data;
281 
282 	if (pkt->hdr.cmd != CALIB_RES_NOTIF_PHY_DB) {
283 		WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF);
284 		return true;
285 	}
286 
287 	WARN_ON(iwl_phy_db_set_section(phy_db, pkt));
288 
289 	return false;
290 }
291 
292 static void iwl_mvm_print_pd_notification(struct iwl_mvm *mvm)
293 {
294 #define IWL_FW_PRINT_REG_INFO(reg_name) \
295 	IWL_ERR(mvm, #reg_name ": 0x%x\n", iwl_read_umac_prph(trans, reg_name))
296 
297 	struct iwl_trans *trans = mvm->trans;
298 	enum iwl_device_family device_family = trans->trans_cfg->device_family;
299 
300 	if (device_family < IWL_DEVICE_FAMILY_8000)
301 		return;
302 
303 	if (device_family <= IWL_DEVICE_FAMILY_9000)
304 		IWL_FW_PRINT_REG_INFO(WFPM_ARC1_PD_NOTIFICATION);
305 	else
306 		IWL_FW_PRINT_REG_INFO(WFPM_LMAC1_PD_NOTIFICATION);
307 
308 	IWL_FW_PRINT_REG_INFO(HPM_SECONDARY_DEVICE_STATE);
309 
310 	/* print OPT info */
311 	IWL_FW_PRINT_REG_INFO(WFPM_MAC_OTP_CFG7_ADDR);
312 	IWL_FW_PRINT_REG_INFO(WFPM_MAC_OTP_CFG7_DATA);
313 }
314 
315 static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm *mvm,
316 					 enum iwl_ucode_type ucode_type)
317 {
318 	struct iwl_notification_wait alive_wait;
319 	struct iwl_mvm_alive_data alive_data = {};
320 	const struct fw_img *fw;
321 	int ret;
322 	enum iwl_ucode_type old_type = mvm->fwrt.cur_fw_img;
323 	static const u16 alive_cmd[] = { UCODE_ALIVE_NTFY };
324 	bool run_in_rfkill =
325 		ucode_type == IWL_UCODE_INIT || iwl_mvm_has_unified_ucode(mvm);
326 	u8 count;
327 	struct iwl_pc_data *pc_data;
328 
329 	if (ucode_type == IWL_UCODE_REGULAR &&
330 	    iwl_fw_dbg_conf_usniffer(mvm->fw, FW_DBG_START_FROM_ALIVE) &&
331 	    !(fw_has_capa(&mvm->fw->ucode_capa,
332 			  IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED)))
333 		fw = iwl_get_ucode_image(mvm->fw, IWL_UCODE_REGULAR_USNIFFER);
334 	else
335 		fw = iwl_get_ucode_image(mvm->fw, ucode_type);
336 	if (WARN_ON(!fw))
337 		return -EINVAL;
338 	iwl_fw_set_current_image(&mvm->fwrt, ucode_type);
339 	clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
340 
341 	iwl_init_notification_wait(&mvm->notif_wait, &alive_wait,
342 				   alive_cmd, ARRAY_SIZE(alive_cmd),
343 				   iwl_alive_fn, &alive_data);
344 
345 	/*
346 	 * We want to load the INIT firmware even in RFKILL
347 	 * For the unified firmware case, the ucode_type is not
348 	 * INIT, but we still need to run it.
349 	 */
350 	ret = iwl_trans_start_fw(mvm->trans, fw, run_in_rfkill);
351 	if (ret) {
352 		iwl_fw_set_current_image(&mvm->fwrt, old_type);
353 		iwl_remove_notification(&mvm->notif_wait, &alive_wait);
354 		return ret;
355 	}
356 
357 	/*
358 	 * Some things may run in the background now, but we
359 	 * just wait for the ALIVE notification here.
360 	 */
361 	ret = iwl_wait_notification(&mvm->notif_wait, &alive_wait,
362 				    MVM_UCODE_ALIVE_TIMEOUT);
363 
364 	if (mvm->trans->trans_cfg->device_family ==
365 	    IWL_DEVICE_FAMILY_AX210) {
366 		/* print these registers regardless of alive fail/success */
367 		IWL_INFO(mvm, "WFPM_UMAC_PD_NOTIFICATION: 0x%x\n",
368 			 iwl_read_umac_prph(mvm->trans, WFPM_ARC1_PD_NOTIFICATION));
369 		IWL_INFO(mvm, "WFPM_LMAC2_PD_NOTIFICATION: 0x%x\n",
370 			 iwl_read_umac_prph(mvm->trans, WFPM_LMAC2_PD_NOTIFICATION));
371 		IWL_INFO(mvm, "WFPM_AUTH_KEY_0: 0x%x\n",
372 			 iwl_read_umac_prph(mvm->trans, SB_MODIFY_CFG_FLAG));
373 		IWL_INFO(mvm, "CNVI_SCU_SEQ_DATA_DW9: 0x%x\n",
374 			 iwl_read_prph(mvm->trans, CNVI_SCU_SEQ_DATA_DW9));
375 	}
376 
377 	if (ret) {
378 		struct iwl_trans *trans = mvm->trans;
379 
380 		/* SecBoot info */
381 		if (trans->trans_cfg->device_family >=
382 					IWL_DEVICE_FAMILY_22000) {
383 			IWL_ERR(mvm,
384 				"SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
385 				iwl_read_umac_prph(trans, UMAG_SB_CPU_1_STATUS),
386 				iwl_read_umac_prph(trans,
387 						   UMAG_SB_CPU_2_STATUS));
388 		} else if (trans->trans_cfg->device_family >=
389 			   IWL_DEVICE_FAMILY_8000) {
390 			IWL_ERR(mvm,
391 				"SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
392 				iwl_read_prph(trans, SB_CPU_1_STATUS),
393 				iwl_read_prph(trans, SB_CPU_2_STATUS));
394 		}
395 
396 		iwl_mvm_print_pd_notification(mvm);
397 
398 		/* LMAC/UMAC PC info */
399 		if (trans->trans_cfg->device_family >=
400 					IWL_DEVICE_FAMILY_22000) {
401 			pc_data = trans->dbg.pc_data;
402 			for (count = 0; count < trans->dbg.num_pc;
403 			     count++, pc_data++)
404 				IWL_ERR(mvm, "%s: 0x%x\n",
405 					pc_data->pc_name,
406 					pc_data->pc_address);
407 		} else if (trans->trans_cfg->device_family >=
408 					IWL_DEVICE_FAMILY_9000) {
409 			IWL_ERR(mvm, "UMAC PC: 0x%x\n",
410 				iwl_read_umac_prph(trans,
411 						   UREG_UMAC_CURRENT_PC));
412 			IWL_ERR(mvm, "LMAC PC: 0x%x\n",
413 				iwl_read_umac_prph(trans,
414 						   UREG_LMAC1_CURRENT_PC));
415 			if (iwl_mvm_is_cdb_supported(mvm))
416 				IWL_ERR(mvm, "LMAC2 PC: 0x%x\n",
417 					iwl_read_umac_prph(trans,
418 						UREG_LMAC2_CURRENT_PC));
419 		}
420 
421 		if (ret == -ETIMEDOUT && !mvm->pldr_sync)
422 			iwl_fw_dbg_error_collect(&mvm->fwrt,
423 						 FW_DBG_TRIGGER_ALIVE_TIMEOUT);
424 
425 		iwl_fw_set_current_image(&mvm->fwrt, old_type);
426 		return ret;
427 	}
428 
429 	if (!alive_data.valid) {
430 		IWL_ERR(mvm, "Loaded ucode is not valid!\n");
431 		iwl_fw_set_current_image(&mvm->fwrt, old_type);
432 		return -EIO;
433 	}
434 
435 	/* if reached this point, Alive notification was received */
436 	iwl_mei_alive_notif(true);
437 
438 	ret = iwl_pnvm_load(mvm->trans, &mvm->notif_wait,
439 			    &mvm->fw->ucode_capa);
440 	if (ret) {
441 		IWL_ERR(mvm, "Timeout waiting for PNVM load!\n");
442 		iwl_fw_set_current_image(&mvm->fwrt, old_type);
443 		return ret;
444 	}
445 
446 	iwl_trans_fw_alive(mvm->trans, alive_data.scd_base_addr);
447 
448 	/*
449 	 * Note: all the queues are enabled as part of the interface
450 	 * initialization, but in firmware restart scenarios they
451 	 * could be stopped, so wake them up. In firmware restart,
452 	 * mac80211 will have the queues stopped as well until the
453 	 * reconfiguration completes. During normal startup, they
454 	 * will be empty.
455 	 */
456 
457 	memset(&mvm->queue_info, 0, sizeof(mvm->queue_info));
458 	/*
459 	 * Set a 'fake' TID for the command queue, since we use the
460 	 * hweight() of the tid_bitmap as a refcount now. Not that
461 	 * we ever even consider the command queue as one we might
462 	 * want to reuse, but be safe nevertheless.
463 	 */
464 	mvm->queue_info[IWL_MVM_DQA_CMD_QUEUE].tid_bitmap =
465 		BIT(IWL_MAX_TID_COUNT + 2);
466 
467 	set_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
468 #ifdef CONFIG_IWLWIFI_DEBUGFS
469 	iwl_fw_set_dbg_rec_on(&mvm->fwrt);
470 #endif
471 
472 	/*
473 	 * All the BSSes in the BSS table include the GP2 in the system
474 	 * at the beacon Rx time, this is of course no longer relevant
475 	 * since we are resetting the firmware.
476 	 * Purge all the BSS table.
477 	 */
478 	cfg80211_bss_flush(mvm->hw->wiphy);
479 
480 	return 0;
481 }
482 
483 static void iwl_mvm_phy_filter_init(struct iwl_mvm *mvm,
484 				    struct iwl_phy_specific_cfg *phy_filters)
485 {
486 #ifdef CONFIG_ACPI
487 	*phy_filters = mvm->phy_filters;
488 #endif /* CONFIG_ACPI */
489 }
490 
491 static void iwl_mvm_uats_init(struct iwl_mvm *mvm)
492 {
493 	u8 cmd_ver;
494 	int ret;
495 	struct iwl_host_cmd cmd = {
496 		.id = WIDE_ID(REGULATORY_AND_NVM_GROUP,
497 			      MCC_ALLOWED_AP_TYPE_CMD),
498 		.flags = 0,
499 		.data[0] = &mvm->fwrt.uats_table,
500 		.len[0] =  sizeof(mvm->fwrt.uats_table),
501 		.dataflags[0] = IWL_HCMD_DFL_NOCOPY,
502 	};
503 
504 	if (!(mvm->trans->trans_cfg->device_family >=
505 	      IWL_DEVICE_FAMILY_AX210)) {
506 		IWL_DEBUG_RADIO(mvm, "UATS feature is not supported\n");
507 		return;
508 	}
509 
510 	if (!mvm->fwrt.uats_enabled) {
511 		IWL_DEBUG_RADIO(mvm, "UATS feature is disabled\n");
512 		return;
513 	}
514 
515 	cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
516 					IWL_FW_CMD_VER_UNKNOWN);
517 	if (cmd_ver != 1) {
518 		IWL_DEBUG_RADIO(mvm,
519 				"MCC_ALLOWED_AP_TYPE_CMD ver %d not supported\n",
520 				cmd_ver);
521 		return;
522 	}
523 
524 	ret = iwl_uefi_get_uats_table(mvm->trans, &mvm->fwrt);
525 	if (ret < 0) {
526 		IWL_ERR(mvm, "failed to read UATS table (%d)\n", ret);
527 		return;
528 	}
529 
530 	ret = iwl_mvm_send_cmd(mvm, &cmd);
531 	if (ret < 0)
532 		IWL_ERR(mvm, "failed to send MCC_ALLOWED_AP_TYPE_CMD (%d)\n",
533 			ret);
534 	else
535 		IWL_DEBUG_RADIO(mvm, "MCC_ALLOWED_AP_TYPE_CMD sent to FW\n");
536 }
537 
538 static int iwl_mvm_sgom_init(struct iwl_mvm *mvm)
539 {
540 	u8 cmd_ver;
541 	int ret;
542 	struct iwl_host_cmd cmd = {
543 		.id = WIDE_ID(REGULATORY_AND_NVM_GROUP,
544 			      SAR_OFFSET_MAPPING_TABLE_CMD),
545 		.flags = 0,
546 		.data[0] = &mvm->fwrt.sgom_table,
547 		.len[0] =  sizeof(mvm->fwrt.sgom_table),
548 		.dataflags[0] = IWL_HCMD_DFL_NOCOPY,
549 	};
550 
551 	if (!mvm->fwrt.sgom_enabled) {
552 		IWL_DEBUG_RADIO(mvm, "SGOM table is disabled\n");
553 		return 0;
554 	}
555 
556 	cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
557 					IWL_FW_CMD_VER_UNKNOWN);
558 
559 	if (cmd_ver != 2) {
560 		IWL_DEBUG_RADIO(mvm, "command version is unsupported. version = %d\n",
561 				cmd_ver);
562 		return 0;
563 	}
564 
565 	ret = iwl_mvm_send_cmd(mvm, &cmd);
566 	if (ret < 0)
567 		IWL_ERR(mvm, "failed to send SAR_OFFSET_MAPPING_CMD (%d)\n", ret);
568 
569 	return ret;
570 }
571 
572 static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)
573 {
574 	u32 cmd_id = PHY_CONFIGURATION_CMD;
575 	struct iwl_phy_cfg_cmd_v3 phy_cfg_cmd;
576 	enum iwl_ucode_type ucode_type = mvm->fwrt.cur_fw_img;
577 	u8 cmd_ver;
578 	size_t cmd_size;
579 
580 	if (iwl_mvm_has_unified_ucode(mvm) &&
581 	    !mvm->trans->cfg->tx_with_siso_diversity)
582 		return 0;
583 
584 	if (mvm->trans->cfg->tx_with_siso_diversity) {
585 		/*
586 		 * TODO: currently we don't set the antenna but letting the NIC
587 		 * to decide which antenna to use. This should come from BIOS.
588 		 */
589 		phy_cfg_cmd.phy_cfg =
590 			cpu_to_le32(FW_PHY_CFG_CHAIN_SAD_ENABLED);
591 	}
592 
593 	/* Set parameters */
594 	phy_cfg_cmd.phy_cfg = cpu_to_le32(iwl_mvm_get_phy_config(mvm));
595 
596 	/* set flags extra PHY configuration flags from the device's cfg */
597 	phy_cfg_cmd.phy_cfg |=
598 		cpu_to_le32(mvm->trans->trans_cfg->extra_phy_cfg_flags);
599 
600 	phy_cfg_cmd.calib_control.event_trigger =
601 		mvm->fw->default_calib[ucode_type].event_trigger;
602 	phy_cfg_cmd.calib_control.flow_trigger =
603 		mvm->fw->default_calib[ucode_type].flow_trigger;
604 
605 	cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
606 					IWL_FW_CMD_VER_UNKNOWN);
607 	if (cmd_ver >= 3)
608 		iwl_mvm_phy_filter_init(mvm, &phy_cfg_cmd.phy_specific_cfg);
609 
610 	IWL_DEBUG_INFO(mvm, "Sending Phy CFG command: 0x%x\n",
611 		       phy_cfg_cmd.phy_cfg);
612 	cmd_size = (cmd_ver == 3) ? sizeof(struct iwl_phy_cfg_cmd_v3) :
613 				    sizeof(struct iwl_phy_cfg_cmd_v1);
614 	return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, cmd_size, &phy_cfg_cmd);
615 }
616 
617 static int iwl_run_unified_mvm_ucode(struct iwl_mvm *mvm)
618 {
619 	struct iwl_notification_wait init_wait;
620 	struct iwl_nvm_access_complete_cmd nvm_complete = {};
621 	struct iwl_init_extended_cfg_cmd init_cfg = {
622 		.init_flags = cpu_to_le32(BIT(IWL_INIT_NVM)),
623 	};
624 	static const u16 init_complete[] = {
625 		INIT_COMPLETE_NOTIF,
626 	};
627 	u32 sb_cfg;
628 	int ret;
629 
630 	if (mvm->trans->cfg->tx_with_siso_diversity)
631 		init_cfg.init_flags |= cpu_to_le32(BIT(IWL_INIT_PHY));
632 
633 	lockdep_assert_held(&mvm->mutex);
634 
635 	mvm->rfkill_safe_init_done = false;
636 
637 	if (mvm->trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_AX210) {
638 		sb_cfg = iwl_read_umac_prph(mvm->trans, SB_MODIFY_CFG_FLAG);
639 		/* if needed, we'll reset this on our way out later */
640 		mvm->pldr_sync = sb_cfg == SB_CFG_RESIDES_IN_ROM;
641 		if (mvm->pldr_sync && iwl_mei_pldr_req())
642 			return -EBUSY;
643 	}
644 
645 	iwl_init_notification_wait(&mvm->notif_wait,
646 				   &init_wait,
647 				   init_complete,
648 				   ARRAY_SIZE(init_complete),
649 				   iwl_wait_init_complete,
650 				   NULL);
651 
652 	iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_EARLY, NULL);
653 
654 	/* Will also start the device */
655 	ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
656 	if (ret) {
657 		IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
658 
659 		/* if we needed reset then fail here, but notify and remove */
660 		if (mvm->pldr_sync) {
661 			iwl_mei_alive_notif(false);
662 			iwl_trans_pcie_remove(mvm->trans, true);
663 		}
664 
665 		goto error;
666 	}
667 	iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_AFTER_ALIVE,
668 			       NULL);
669 
670 	if (mvm->trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_BZ)
671 		mvm->trans->step_urm = !!(iwl_read_umac_prph(mvm->trans,
672 							     CNVI_PMU_STEP_FLOW) &
673 						CNVI_PMU_STEP_FLOW_FORCE_URM);
674 
675 	/* Send init config command to mark that we are sending NVM access
676 	 * commands
677 	 */
678 	ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(SYSTEM_GROUP,
679 						INIT_EXTENDED_CFG_CMD),
680 				   CMD_SEND_IN_RFKILL,
681 				   sizeof(init_cfg), &init_cfg);
682 	if (ret) {
683 		IWL_ERR(mvm, "Failed to run init config command: %d\n",
684 			ret);
685 		goto error;
686 	}
687 
688 	/* Load NVM to NIC if needed */
689 	if (mvm->nvm_file_name) {
690 		ret = iwl_read_external_nvm(mvm->trans, mvm->nvm_file_name,
691 					    mvm->nvm_sections);
692 		if (ret)
693 			goto error;
694 		ret = iwl_mvm_load_nvm_to_nic(mvm);
695 		if (ret)
696 			goto error;
697 	}
698 
699 	if (IWL_MVM_PARSE_NVM && !mvm->nvm_data) {
700 		ret = iwl_nvm_init(mvm);
701 		if (ret) {
702 			IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
703 			goto error;
704 		}
705 	}
706 
707 	ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(REGULATORY_AND_NVM_GROUP,
708 						NVM_ACCESS_COMPLETE),
709 				   CMD_SEND_IN_RFKILL,
710 				   sizeof(nvm_complete), &nvm_complete);
711 	if (ret) {
712 		IWL_ERR(mvm, "Failed to run complete NVM access: %d\n",
713 			ret);
714 		goto error;
715 	}
716 
717 	ret = iwl_send_phy_cfg_cmd(mvm);
718 	if (ret) {
719 		IWL_ERR(mvm, "Failed to run PHY configuration: %d\n",
720 			ret);
721 		goto error;
722 	}
723 
724 	/* We wait for the INIT complete notification */
725 	ret = iwl_wait_notification(&mvm->notif_wait, &init_wait,
726 				    MVM_UCODE_ALIVE_TIMEOUT);
727 	if (ret)
728 		return ret;
729 
730 	/* Read the NVM only at driver load time, no need to do this twice */
731 	if (!IWL_MVM_PARSE_NVM && !mvm->nvm_data) {
732 		mvm->nvm_data = iwl_get_nvm(mvm->trans, mvm->fw,
733 					    mvm->set_tx_ant, mvm->set_rx_ant);
734 		if (IS_ERR(mvm->nvm_data)) {
735 			ret = PTR_ERR(mvm->nvm_data);
736 			mvm->nvm_data = NULL;
737 			IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
738 			return ret;
739 		}
740 	}
741 
742 	mvm->rfkill_safe_init_done = true;
743 
744 	return 0;
745 
746 error:
747 	iwl_remove_notification(&mvm->notif_wait, &init_wait);
748 	return ret;
749 }
750 
751 int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm)
752 {
753 	struct iwl_notification_wait calib_wait;
754 	static const u16 init_complete[] = {
755 		INIT_COMPLETE_NOTIF,
756 		CALIB_RES_NOTIF_PHY_DB
757 	};
758 	int ret;
759 
760 	if (iwl_mvm_has_unified_ucode(mvm))
761 		return iwl_run_unified_mvm_ucode(mvm);
762 
763 	lockdep_assert_held(&mvm->mutex);
764 
765 	mvm->rfkill_safe_init_done = false;
766 
767 	iwl_init_notification_wait(&mvm->notif_wait,
768 				   &calib_wait,
769 				   init_complete,
770 				   ARRAY_SIZE(init_complete),
771 				   iwl_wait_phy_db_entry,
772 				   mvm->phy_db);
773 
774 	iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_EARLY, NULL);
775 
776 	/* Will also start the device */
777 	ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_INIT);
778 	if (ret) {
779 		IWL_ERR(mvm, "Failed to start INIT ucode: %d\n", ret);
780 		goto remove_notif;
781 	}
782 
783 	if (mvm->trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_8000) {
784 		ret = iwl_mvm_send_bt_init_conf(mvm);
785 		if (ret)
786 			goto remove_notif;
787 	}
788 
789 	/* Read the NVM only at driver load time, no need to do this twice */
790 	if (!mvm->nvm_data) {
791 		ret = iwl_nvm_init(mvm);
792 		if (ret) {
793 			IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
794 			goto remove_notif;
795 		}
796 	}
797 
798 	/* In case we read the NVM from external file, load it to the NIC */
799 	if (mvm->nvm_file_name) {
800 		ret = iwl_mvm_load_nvm_to_nic(mvm);
801 		if (ret)
802 			goto remove_notif;
803 	}
804 
805 	WARN_ONCE(mvm->nvm_data->nvm_version < mvm->trans->cfg->nvm_ver,
806 		  "Too old NVM version (0x%0x, required = 0x%0x)",
807 		  mvm->nvm_data->nvm_version, mvm->trans->cfg->nvm_ver);
808 
809 	/*
810 	 * abort after reading the nvm in case RF Kill is on, we will complete
811 	 * the init seq later when RF kill will switch to off
812 	 */
813 	if (iwl_mvm_is_radio_hw_killed(mvm)) {
814 		IWL_DEBUG_RF_KILL(mvm,
815 				  "jump over all phy activities due to RF kill\n");
816 		goto remove_notif;
817 	}
818 
819 	mvm->rfkill_safe_init_done = true;
820 
821 	/* Send TX valid antennas before triggering calibrations */
822 	ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
823 	if (ret)
824 		goto remove_notif;
825 
826 	ret = iwl_send_phy_cfg_cmd(mvm);
827 	if (ret) {
828 		IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
829 			ret);
830 		goto remove_notif;
831 	}
832 
833 	/*
834 	 * Some things may run in the background now, but we
835 	 * just wait for the calibration complete notification.
836 	 */
837 	ret = iwl_wait_notification(&mvm->notif_wait, &calib_wait,
838 				    MVM_UCODE_CALIB_TIMEOUT);
839 	if (!ret)
840 		goto out;
841 
842 	if (iwl_mvm_is_radio_hw_killed(mvm)) {
843 		IWL_DEBUG_RF_KILL(mvm, "RFKILL while calibrating.\n");
844 		ret = 0;
845 	} else {
846 		IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
847 			ret);
848 	}
849 
850 	goto out;
851 
852 remove_notif:
853 	iwl_remove_notification(&mvm->notif_wait, &calib_wait);
854 out:
855 	mvm->rfkill_safe_init_done = false;
856 	if (iwlmvm_mod_params.init_dbg && !mvm->nvm_data) {
857 		/* we want to debug INIT and we have no NVM - fake */
858 		mvm->nvm_data = kzalloc(sizeof(struct iwl_nvm_data) +
859 					sizeof(struct ieee80211_channel) +
860 					sizeof(struct ieee80211_rate),
861 					GFP_KERNEL);
862 		if (!mvm->nvm_data)
863 			return -ENOMEM;
864 		mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels;
865 		mvm->nvm_data->bands[0].n_channels = 1;
866 		mvm->nvm_data->bands[0].n_bitrates = 1;
867 		mvm->nvm_data->bands[0].bitrates =
868 			(void *)(mvm->nvm_data->channels + 1);
869 		mvm->nvm_data->bands[0].bitrates->hw_value = 10;
870 	}
871 
872 	return ret;
873 }
874 
875 static int iwl_mvm_config_ltr(struct iwl_mvm *mvm)
876 {
877 	struct iwl_ltr_config_cmd cmd = {
878 		.flags = cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE),
879 	};
880 
881 	if (!mvm->trans->ltr_enabled)
882 		return 0;
883 
884 	return iwl_mvm_send_cmd_pdu(mvm, LTR_CONFIG, 0,
885 				    sizeof(cmd), &cmd);
886 }
887 
888 int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b)
889 {
890 	u32 cmd_id = REDUCE_TX_POWER_CMD;
891 	struct iwl_dev_tx_power_cmd cmd = {
892 		.common.set_mode = cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS),
893 	};
894 	__le16 *per_chain;
895 	int ret;
896 	u16 len = 0;
897 	u32 n_subbands;
898 	u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
899 					   IWL_FW_CMD_VER_UNKNOWN);
900 	if (cmd_ver >= 7) {
901 		len = sizeof(cmd.v7);
902 		n_subbands = IWL_NUM_SUB_BANDS_V2;
903 		per_chain = cmd.v7.per_chain[0][0];
904 		cmd.v7.flags = cpu_to_le32(mvm->fwrt.reduced_power_flags);
905 		if (cmd_ver == 8)
906 			len = sizeof(cmd.v8);
907 	} else if (cmd_ver == 6) {
908 		len = sizeof(cmd.v6);
909 		n_subbands = IWL_NUM_SUB_BANDS_V2;
910 		per_chain = cmd.v6.per_chain[0][0];
911 	} else if (fw_has_api(&mvm->fw->ucode_capa,
912 			      IWL_UCODE_TLV_API_REDUCE_TX_POWER)) {
913 		len = sizeof(cmd.v5);
914 		n_subbands = IWL_NUM_SUB_BANDS_V1;
915 		per_chain = cmd.v5.per_chain[0][0];
916 	} else if (fw_has_capa(&mvm->fw->ucode_capa,
917 			       IWL_UCODE_TLV_CAPA_TX_POWER_ACK)) {
918 		len = sizeof(cmd.v4);
919 		n_subbands = IWL_NUM_SUB_BANDS_V1;
920 		per_chain = cmd.v4.per_chain[0][0];
921 	} else {
922 		len = sizeof(cmd.v3);
923 		n_subbands = IWL_NUM_SUB_BANDS_V1;
924 		per_chain = cmd.v3.per_chain[0][0];
925 	}
926 
927 	/* all structs have the same common part, add it */
928 	len += sizeof(cmd.common);
929 
930 	ret = iwl_sar_fill_profile(&mvm->fwrt, per_chain,
931 				   IWL_NUM_CHAIN_TABLES,
932 				   n_subbands, prof_a, prof_b);
933 
934 	/* return on error or if the profile is disabled (positive number) */
935 	if (ret)
936 		return ret;
937 
938 	iwl_mei_set_power_limit(per_chain);
939 
940 	IWL_DEBUG_RADIO(mvm, "Sending REDUCE_TX_POWER_CMD per chain\n");
941 	return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, len, &cmd);
942 }
943 
944 int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm)
945 {
946 	union iwl_geo_tx_power_profiles_cmd geo_tx_cmd;
947 	struct iwl_geo_tx_power_profiles_resp *resp;
948 	u16 len;
949 	int ret;
950 	struct iwl_host_cmd cmd = {
951 		.id = WIDE_ID(PHY_OPS_GROUP, PER_CHAIN_LIMIT_OFFSET_CMD),
952 		.flags = CMD_WANT_SKB,
953 		.data = { &geo_tx_cmd },
954 	};
955 	u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
956 					   IWL_FW_CMD_VER_UNKNOWN);
957 
958 	/* the ops field is at the same spot for all versions, so set in v1 */
959 	geo_tx_cmd.v1.ops =
960 		cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE);
961 
962 	if (cmd_ver == 5)
963 		len = sizeof(geo_tx_cmd.v5);
964 	else if (cmd_ver == 4)
965 		len = sizeof(geo_tx_cmd.v4);
966 	else if (cmd_ver == 3)
967 		len = sizeof(geo_tx_cmd.v3);
968 	else if (fw_has_api(&mvm->fwrt.fw->ucode_capa,
969 			    IWL_UCODE_TLV_API_SAR_TABLE_VER))
970 		len = sizeof(geo_tx_cmd.v2);
971 	else
972 		len = sizeof(geo_tx_cmd.v1);
973 
974 	if (!iwl_sar_geo_support(&mvm->fwrt))
975 		return -EOPNOTSUPP;
976 
977 	cmd.len[0] = len;
978 
979 	ret = iwl_mvm_send_cmd(mvm, &cmd);
980 	if (ret) {
981 		IWL_ERR(mvm, "Failed to get geographic profile info %d\n", ret);
982 		return ret;
983 	}
984 
985 	resp = (void *)cmd.resp_pkt->data;
986 	ret = le32_to_cpu(resp->profile_idx);
987 
988 	if (WARN_ON(ret > BIOS_GEO_MAX_PROFILE_NUM))
989 		ret = -EIO;
990 
991 	iwl_free_resp(&cmd);
992 	return ret;
993 }
994 
995 static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm)
996 {
997 	u32 cmd_id = WIDE_ID(PHY_OPS_GROUP, PER_CHAIN_LIMIT_OFFSET_CMD);
998 	union iwl_geo_tx_power_profiles_cmd cmd;
999 	u16 len;
1000 	u32 n_bands;
1001 	u32 n_profiles;
1002 	__le32 sk = cpu_to_le32(0);
1003 	int ret;
1004 	u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
1005 					   IWL_FW_CMD_VER_UNKNOWN);
1006 
1007 	BUILD_BUG_ON(offsetof(struct iwl_geo_tx_power_profiles_cmd_v1, ops) !=
1008 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, ops) ||
1009 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, ops) !=
1010 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, ops) ||
1011 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, ops) !=
1012 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, ops) ||
1013 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, ops) !=
1014 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v5, ops));
1015 
1016 	/* the ops field is at the same spot for all versions, so set in v1 */
1017 	cmd.v1.ops = cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES);
1018 
1019 	/* Only set to South Korea if the table revision is 1 */
1020 	if (mvm->fwrt.geo_rev == 1)
1021 		sk = cpu_to_le32(1);
1022 
1023 	if (cmd_ver == 5) {
1024 		len = sizeof(cmd.v5);
1025 		n_bands = ARRAY_SIZE(cmd.v5.table[0]);
1026 		n_profiles = BIOS_GEO_MAX_PROFILE_NUM;
1027 		cmd.v5.table_revision = sk;
1028 	} else if (cmd_ver == 4) {
1029 		len = sizeof(cmd.v4);
1030 		n_bands = ARRAY_SIZE(cmd.v4.table[0]);
1031 		n_profiles = BIOS_GEO_MAX_PROFILE_NUM;
1032 		cmd.v4.table_revision = sk;
1033 	} else if (cmd_ver == 3) {
1034 		len = sizeof(cmd.v3);
1035 		n_bands = ARRAY_SIZE(cmd.v3.table[0]);
1036 		n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
1037 		cmd.v3.table_revision = sk;
1038 	} else if (fw_has_api(&mvm->fwrt.fw->ucode_capa,
1039 			      IWL_UCODE_TLV_API_SAR_TABLE_VER)) {
1040 		len = sizeof(cmd.v2);
1041 		n_bands = ARRAY_SIZE(cmd.v2.table[0]);
1042 		n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
1043 		cmd.v2.table_revision = sk;
1044 	} else {
1045 		len = sizeof(cmd.v1);
1046 		n_bands = ARRAY_SIZE(cmd.v1.table[0]);
1047 		n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
1048 	}
1049 
1050 	BUILD_BUG_ON(offsetof(struct iwl_geo_tx_power_profiles_cmd_v1, table) !=
1051 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, table) ||
1052 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, table) !=
1053 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, table) ||
1054 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, table) !=
1055 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, table) ||
1056 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, table) !=
1057 		     offsetof(struct iwl_geo_tx_power_profiles_cmd_v5, table));
1058 	/* the table is at the same position for all versions, so set use v1 */
1059 	ret = iwl_sar_geo_fill_table(&mvm->fwrt, &cmd.v1.table[0][0],
1060 				     n_bands, n_profiles);
1061 
1062 	/*
1063 	 * It is a valid scenario to not support SAR, or miss wgds table,
1064 	 * but in that case there is no need to send the command.
1065 	 */
1066 	if (ret)
1067 		return 0;
1068 
1069 	return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, len, &cmd);
1070 }
1071 
1072 int iwl_mvm_ppag_send_cmd(struct iwl_mvm *mvm)
1073 {
1074 	union iwl_ppag_table_cmd cmd;
1075 	int ret, cmd_size;
1076 
1077 	ret = iwl_fill_ppag_table(&mvm->fwrt, &cmd, &cmd_size);
1078 	/* Not supporting PPAG table is a valid scenario */
1079 	if (ret < 0)
1080 		return 0;
1081 
1082 	IWL_DEBUG_RADIO(mvm, "Sending PER_PLATFORM_ANT_GAIN_CMD\n");
1083 	ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(PHY_OPS_GROUP,
1084 						PER_PLATFORM_ANT_GAIN_CMD),
1085 				   0, cmd_size, &cmd);
1086 	if (ret < 0)
1087 		IWL_ERR(mvm, "failed to send PER_PLATFORM_ANT_GAIN_CMD (%d)\n",
1088 			ret);
1089 
1090 	return ret;
1091 }
1092 
1093 static int iwl_mvm_ppag_init(struct iwl_mvm *mvm)
1094 {
1095 	/* no need to read the table, done in INIT stage */
1096 	if (!(iwl_is_ppag_approved(&mvm->fwrt)))
1097 		return 0;
1098 
1099 	return iwl_mvm_ppag_send_cmd(mvm);
1100 }
1101 
1102 static bool iwl_mvm_add_to_tas_block_list(__le32 *list, __le32 *le_size, unsigned int mcc)
1103 {
1104 	int i;
1105 	u32 size = le32_to_cpu(*le_size);
1106 
1107 	/* Verify that there is room for another country */
1108 	if (size >= IWL_WTAS_BLACK_LIST_MAX)
1109 		return false;
1110 
1111 	for (i = 0; i < size; i++) {
1112 		if (list[i] == cpu_to_le32(mcc))
1113 			return true;
1114 	}
1115 
1116 	list[size++] = cpu_to_le32(mcc);
1117 	*le_size = cpu_to_le32(size);
1118 	return true;
1119 }
1120 
1121 static void iwl_mvm_tas_init(struct iwl_mvm *mvm)
1122 {
1123 	u32 cmd_id = WIDE_ID(REGULATORY_AND_NVM_GROUP, TAS_CONFIG);
1124 	int ret;
1125 	struct iwl_tas_data data = {};
1126 	struct iwl_tas_config_cmd cmd = {};
1127 	int cmd_size, fw_ver;
1128 
1129 	BUILD_BUG_ON(ARRAY_SIZE(data.block_list_array) !=
1130 		     IWL_WTAS_BLACK_LIST_MAX);
1131 	BUILD_BUG_ON(ARRAY_SIZE(cmd.common.block_list_array) !=
1132 		     IWL_WTAS_BLACK_LIST_MAX);
1133 
1134 	if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_TAS_CFG)) {
1135 		IWL_DEBUG_RADIO(mvm, "TAS not enabled in FW\n");
1136 		return;
1137 	}
1138 
1139 	ret = iwl_bios_get_tas_table(&mvm->fwrt, &data);
1140 	if (ret < 0) {
1141 		IWL_DEBUG_RADIO(mvm,
1142 				"TAS table invalid or unavailable. (%d)\n",
1143 				ret);
1144 		return;
1145 	}
1146 
1147 	if (ret == 0)
1148 		return;
1149 
1150 	if (!iwl_is_tas_approved()) {
1151 		IWL_DEBUG_RADIO(mvm,
1152 				"System vendor '%s' is not in the approved list, disabling TAS in US and Canada.\n",
1153 				dmi_get_system_info(DMI_SYS_VENDOR) ?: "<unknown>");
1154 		if ((!iwl_mvm_add_to_tas_block_list(data.block_list_array,
1155 						    &data.block_list_size,
1156 						    IWL_MCC_US)) ||
1157 		    (!iwl_mvm_add_to_tas_block_list(data.block_list_array,
1158 						    &data.block_list_size,
1159 						    IWL_MCC_CANADA))) {
1160 			IWL_DEBUG_RADIO(mvm,
1161 					"Unable to add US/Canada to TAS block list, disabling TAS\n");
1162 			return;
1163 		}
1164 	} else {
1165 		IWL_DEBUG_RADIO(mvm,
1166 				"System vendor '%s' is in the approved list.\n",
1167 				dmi_get_system_info(DMI_SYS_VENDOR) ?: "<unknown>");
1168 	}
1169 
1170 	fw_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
1171 				       IWL_FW_CMD_VER_UNKNOWN);
1172 
1173 	memcpy(&cmd.common, &data, sizeof(struct iwl_tas_config_cmd_common));
1174 
1175 	/* Set v3 or v4 specific parts. will be trunctated for fw_ver < 3 */
1176 	if (fw_ver == 4) {
1177 		cmd.v4.override_tas_iec = data.override_tas_iec;
1178 		cmd.v4.enable_tas_iec = data.enable_tas_iec;
1179 		cmd.v4.usa_tas_uhb_allowed = data.usa_tas_uhb_allowed;
1180 	} else {
1181 		cmd.v3.override_tas_iec = cpu_to_le16(data.override_tas_iec);
1182 		cmd.v3.enable_tas_iec = cpu_to_le16(data.enable_tas_iec);
1183 	}
1184 
1185 	cmd_size = sizeof(struct iwl_tas_config_cmd_common);
1186 	if (fw_ver >= 3)
1187 		/* v4 is the same size as v3 */
1188 		cmd_size += sizeof(struct iwl_tas_config_cmd_v3);
1189 
1190 	ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, cmd_size, &cmd);
1191 	if (ret < 0)
1192 		IWL_DEBUG_RADIO(mvm, "failed to send TAS_CONFIG (%d)\n", ret);
1193 }
1194 
1195 static bool iwl_mvm_eval_dsm_rfi(struct iwl_mvm *mvm)
1196 {
1197 	u32 value = 0;
1198 	/* default behaviour is disabled */
1199 	bool bios_enable_rfi = false;
1200 	int ret = iwl_bios_get_dsm(&mvm->fwrt, DSM_FUNC_RFI_CONFIG, &value);
1201 
1202 
1203 	if (ret < 0) {
1204 		IWL_DEBUG_RADIO(mvm, "Failed to get DSM RFI, ret=%d\n", ret);
1205 		return bios_enable_rfi;
1206 	}
1207 
1208 	value &= DSM_VALUE_RFI_DISABLE;
1209 	/* RFI BIOS CONFIG value can be 0 or 3 only.
1210 	 * i.e 0 means DDR and DLVR enabled. 3 means DDR and DLVR disabled.
1211 	 * 1 and 2 are invalid BIOS configurations, So, it's not possible to
1212 	 * disable ddr/dlvr separately.
1213 	 */
1214 	if (!value) {
1215 		IWL_DEBUG_RADIO(mvm, "DSM RFI is evaluated to enable\n");
1216 		bios_enable_rfi = true;
1217 	} else if (value == DSM_VALUE_RFI_DISABLE) {
1218 		IWL_DEBUG_RADIO(mvm, "DSM RFI is evaluated to disable\n");
1219 	} else {
1220 		IWL_DEBUG_RADIO(mvm,
1221 				"DSM RFI got invalid value, value=%d\n", value);
1222 	}
1223 
1224 	return bios_enable_rfi;
1225 }
1226 
1227 static void iwl_mvm_lari_cfg(struct iwl_mvm *mvm)
1228 {
1229 	struct iwl_lari_config_change_cmd cmd;
1230 	size_t cmd_size;
1231 	int ret;
1232 
1233 	ret = iwl_fill_lari_config(&mvm->fwrt, &cmd, &cmd_size);
1234 	if (!ret) {
1235 		ret = iwl_mvm_send_cmd_pdu(mvm,
1236 					   WIDE_ID(REGULATORY_AND_NVM_GROUP,
1237 						   LARI_CONFIG_CHANGE),
1238 					   0, cmd_size, &cmd);
1239 		if (ret < 0)
1240 			IWL_DEBUG_RADIO(mvm,
1241 					"Failed to send LARI_CONFIG_CHANGE (%d)\n",
1242 					ret);
1243 	}
1244 
1245 	if (le32_to_cpu(cmd.oem_uhb_allow_bitmap) & IWL_UATS_VLP_AP_SUPPORTED ||
1246 	    le32_to_cpu(cmd.oem_uhb_allow_bitmap) & IWL_UATS_AFC_AP_SUPPORTED)
1247 		mvm->fwrt.uats_enabled = true;
1248 }
1249 
1250 void iwl_mvm_get_bios_tables(struct iwl_mvm *mvm)
1251 {
1252 	int ret;
1253 
1254 	iwl_acpi_get_guid_lock_status(&mvm->fwrt);
1255 
1256 	/* read PPAG table */
1257 	ret = iwl_bios_get_ppag_table(&mvm->fwrt);
1258 	if (ret < 0) {
1259 		IWL_DEBUG_RADIO(mvm,
1260 				"PPAG BIOS table invalid or unavailable. (%d)\n",
1261 				ret);
1262 	}
1263 
1264 	/* read SAR tables */
1265 	ret = iwl_bios_get_wrds_table(&mvm->fwrt);
1266 	if (ret < 0) {
1267 		IWL_DEBUG_RADIO(mvm,
1268 				"WRDS SAR BIOS table invalid or unavailable. (%d)\n",
1269 				ret);
1270 		/*
1271 		 * If not available, don't fail and don't bother with EWRD and
1272 		 * WGDS */
1273 
1274 		if (!iwl_bios_get_wgds_table(&mvm->fwrt)) {
1275 			/*
1276 			 * If basic SAR is not available, we check for WGDS,
1277 			 * which should *not* be available either.  If it is
1278 			 * available, issue an error, because we can't use SAR
1279 			 * Geo without basic SAR.
1280 			 */
1281 			IWL_ERR(mvm, "BIOS contains WGDS but no WRDS\n");
1282 		}
1283 
1284 	} else {
1285 		ret = iwl_bios_get_ewrd_table(&mvm->fwrt);
1286 		/* if EWRD is not available, we can still use
1287 		* WRDS, so don't fail */
1288 		if (ret < 0)
1289 			IWL_DEBUG_RADIO(mvm,
1290 					"EWRD SAR BIOS table invalid or unavailable. (%d)\n",
1291 					ret);
1292 
1293 		/* read geo SAR table */
1294 		if (iwl_sar_geo_support(&mvm->fwrt)) {
1295 			ret = iwl_bios_get_wgds_table(&mvm->fwrt);
1296 			if (ret < 0)
1297 				IWL_DEBUG_RADIO(mvm,
1298 						"Geo SAR BIOS table invalid or unavailable. (%d)\n",
1299 						ret);
1300 				/* we don't fail if the table is not available */
1301 		}
1302 	}
1303 
1304 	iwl_acpi_get_phy_filters(&mvm->fwrt, &mvm->phy_filters);
1305 
1306 	if (iwl_bios_get_eckv(&mvm->fwrt, &mvm->ext_clock_valid))
1307 		IWL_DEBUG_RADIO(mvm, "ECKV table doesn't exist in BIOS\n");
1308 }
1309 
1310 static void iwl_mvm_disconnect_iterator(void *data, u8 *mac,
1311 					struct ieee80211_vif *vif)
1312 {
1313 	if (vif->type == NL80211_IFTYPE_STATION)
1314 		ieee80211_hw_restart_disconnect(vif);
1315 }
1316 
1317 void iwl_mvm_send_recovery_cmd(struct iwl_mvm *mvm, u32 flags)
1318 {
1319 	u32 error_log_size = mvm->fw->ucode_capa.error_log_size;
1320 	int ret;
1321 	u32 resp;
1322 
1323 	struct iwl_fw_error_recovery_cmd recovery_cmd = {
1324 		.flags = cpu_to_le32(flags),
1325 		.buf_size = 0,
1326 	};
1327 	struct iwl_host_cmd host_cmd = {
1328 		.id = WIDE_ID(SYSTEM_GROUP, FW_ERROR_RECOVERY_CMD),
1329 		.flags = CMD_WANT_SKB,
1330 		.data = {&recovery_cmd, },
1331 		.len = {sizeof(recovery_cmd), },
1332 	};
1333 
1334 	/* no error log was defined in TLV */
1335 	if (!error_log_size)
1336 		return;
1337 
1338 	if (flags & ERROR_RECOVERY_UPDATE_DB) {
1339 		/* no buf was allocated while HW reset */
1340 		if (!mvm->error_recovery_buf)
1341 			return;
1342 
1343 		host_cmd.data[1] = mvm->error_recovery_buf;
1344 		host_cmd.len[1] =  error_log_size;
1345 		host_cmd.dataflags[1] = IWL_HCMD_DFL_NOCOPY;
1346 		recovery_cmd.buf_size = cpu_to_le32(error_log_size);
1347 	}
1348 
1349 	ret = iwl_mvm_send_cmd(mvm, &host_cmd);
1350 	kfree(mvm->error_recovery_buf);
1351 	mvm->error_recovery_buf = NULL;
1352 
1353 	if (ret) {
1354 		IWL_ERR(mvm, "Failed to send recovery cmd %d\n", ret);
1355 		return;
1356 	}
1357 
1358 	/* skb respond is only relevant in ERROR_RECOVERY_UPDATE_DB */
1359 	if (flags & ERROR_RECOVERY_UPDATE_DB) {
1360 		resp = le32_to_cpu(*(__le32 *)host_cmd.resp_pkt->data);
1361 		if (resp) {
1362 			IWL_ERR(mvm,
1363 				"Failed to send recovery cmd blob was invalid %d\n",
1364 				resp);
1365 
1366 			ieee80211_iterate_interfaces(mvm->hw, 0,
1367 						     iwl_mvm_disconnect_iterator,
1368 						     mvm);
1369 		}
1370 	}
1371 }
1372 
1373 static int iwl_mvm_sar_init(struct iwl_mvm *mvm)
1374 {
1375 	return iwl_mvm_sar_select_profile(mvm, 1, 1);
1376 }
1377 
1378 static int iwl_mvm_load_rt_fw(struct iwl_mvm *mvm)
1379 {
1380 	int ret;
1381 
1382 	if (iwl_mvm_has_unified_ucode(mvm))
1383 		return iwl_run_unified_mvm_ucode(mvm);
1384 
1385 	ret = iwl_run_init_mvm_ucode(mvm);
1386 
1387 	if (ret) {
1388 		IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret);
1389 
1390 		if (iwlmvm_mod_params.init_dbg)
1391 			return 0;
1392 		return ret;
1393 	}
1394 
1395 	iwl_fw_dbg_stop_sync(&mvm->fwrt);
1396 	iwl_trans_stop_device(mvm->trans);
1397 	ret = iwl_trans_start_hw(mvm->trans);
1398 	if (ret)
1399 		return ret;
1400 
1401 	mvm->rfkill_safe_init_done = false;
1402 	ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
1403 	if (ret)
1404 		return ret;
1405 
1406 	mvm->rfkill_safe_init_done = true;
1407 
1408 	iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_AFTER_ALIVE,
1409 			       NULL);
1410 
1411 	return iwl_init_paging(&mvm->fwrt, mvm->fwrt.cur_fw_img);
1412 }
1413 
1414 int iwl_mvm_up(struct iwl_mvm *mvm)
1415 {
1416 	int ret, i;
1417 	struct ieee80211_supported_band *sband = NULL;
1418 
1419 	lockdep_assert_held(&mvm->mutex);
1420 
1421 	ret = iwl_trans_start_hw(mvm->trans);
1422 	if (ret)
1423 		return ret;
1424 
1425 	ret = iwl_mvm_load_rt_fw(mvm);
1426 	if (ret) {
1427 		IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
1428 		if (ret != -ERFKILL && !mvm->pldr_sync)
1429 			iwl_fw_dbg_error_collect(&mvm->fwrt,
1430 						 FW_DBG_TRIGGER_DRIVER);
1431 		goto error;
1432 	}
1433 
1434 	/* FW loaded successfully */
1435 	mvm->pldr_sync = false;
1436 
1437 	iwl_fw_disable_dbg_asserts(&mvm->fwrt);
1438 	iwl_get_shared_mem_conf(&mvm->fwrt);
1439 
1440 	ret = iwl_mvm_sf_update(mvm, NULL, false);
1441 	if (ret)
1442 		IWL_ERR(mvm, "Failed to initialize Smart Fifo\n");
1443 
1444 	if (!iwl_trans_dbg_ini_valid(mvm->trans)) {
1445 		mvm->fwrt.dump.conf = FW_DBG_INVALID;
1446 		/* if we have a destination, assume EARLY START */
1447 		if (mvm->fw->dbg.dest_tlv)
1448 			mvm->fwrt.dump.conf = FW_DBG_START_FROM_ALIVE;
1449 		iwl_fw_start_dbg_conf(&mvm->fwrt, FW_DBG_START_FROM_ALIVE);
1450 	}
1451 
1452 	ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
1453 	if (ret)
1454 		goto error;
1455 
1456 	if (!iwl_mvm_has_unified_ucode(mvm)) {
1457 		/* Send phy db control command and then phy db calibration */
1458 		ret = iwl_send_phy_db_data(mvm->phy_db);
1459 		if (ret)
1460 			goto error;
1461 		ret = iwl_send_phy_cfg_cmd(mvm);
1462 		if (ret)
1463 			goto error;
1464 	}
1465 
1466 	ret = iwl_mvm_send_bt_init_conf(mvm);
1467 	if (ret)
1468 		goto error;
1469 
1470 	if (fw_has_capa(&mvm->fw->ucode_capa,
1471 			IWL_UCODE_TLV_CAPA_SOC_LATENCY_SUPPORT)) {
1472 		ret = iwl_set_soc_latency(&mvm->fwrt);
1473 		if (ret)
1474 			goto error;
1475 	}
1476 
1477 	iwl_mvm_lari_cfg(mvm);
1478 
1479 	/* Init RSS configuration */
1480 	ret = iwl_configure_rxq(&mvm->fwrt);
1481 	if (ret)
1482 		goto error;
1483 
1484 	if (iwl_mvm_has_new_rx_api(mvm)) {
1485 		ret = iwl_send_rss_cfg_cmd(mvm);
1486 		if (ret) {
1487 			IWL_ERR(mvm, "Failed to configure RSS queues: %d\n",
1488 				ret);
1489 			goto error;
1490 		}
1491 	}
1492 
1493 	/* init the fw <-> mac80211 STA mapping */
1494 	for (i = 0; i < mvm->fw->ucode_capa.num_stations; i++) {
1495 		RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
1496 		RCU_INIT_POINTER(mvm->fw_id_to_link_sta[i], NULL);
1497 	}
1498 
1499 	for (i = 0; i < IWL_MVM_FW_MAX_LINK_ID + 1; i++)
1500 		RCU_INIT_POINTER(mvm->link_id_to_link_conf[i], NULL);
1501 
1502 	memset(&mvm->fw_link_ids_map, 0, sizeof(mvm->fw_link_ids_map));
1503 
1504 	mvm->tdls_cs.peer.sta_id = IWL_MVM_INVALID_STA;
1505 
1506 	/* reset quota debouncing buffer - 0xff will yield invalid data */
1507 	memset(&mvm->last_quota_cmd, 0xff, sizeof(mvm->last_quota_cmd));
1508 
1509 	if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_DQA_SUPPORT)) {
1510 		ret = iwl_mvm_send_dqa_cmd(mvm);
1511 		if (ret)
1512 			goto error;
1513 	}
1514 
1515 	/*
1516 	 * Add auxiliary station for scanning.
1517 	 * Newer versions of this command implies that the fw uses
1518 	 * internal aux station for all aux activities that don't
1519 	 * requires a dedicated data queue.
1520 	 */
1521 	if (!iwl_mvm_has_new_station_api(mvm->fw)) {
1522 		 /*
1523 		  * In old version the aux station uses mac id like other
1524 		  * station and not lmac id
1525 		  */
1526 		ret = iwl_mvm_add_aux_sta(mvm, MAC_INDEX_AUX);
1527 		if (ret)
1528 			goto error;
1529 	}
1530 
1531 	/* Add all the PHY contexts */
1532 	i = 0;
1533 	while (!sband && i < NUM_NL80211_BANDS)
1534 		sband = mvm->hw->wiphy->bands[i++];
1535 
1536 	if (WARN_ON_ONCE(!sband)) {
1537 		ret = -ENODEV;
1538 		goto error;
1539 	}
1540 
1541 	if (iwl_mvm_is_tt_in_fw(mvm)) {
1542 		/* in order to give the responsibility of ct-kill and
1543 		 * TX backoff to FW we need to send empty temperature reporting
1544 		 * cmd during init time
1545 		 */
1546 		iwl_mvm_send_temp_report_ths_cmd(mvm);
1547 	} else {
1548 		/* Initialize tx backoffs to the minimal possible */
1549 		iwl_mvm_tt_tx_backoff(mvm, 0);
1550 	}
1551 
1552 #ifdef CONFIG_THERMAL
1553 	/* TODO: read the budget from BIOS / Platform NVM */
1554 
1555 	/*
1556 	 * In case there is no budget from BIOS / Platform NVM the default
1557 	 * budget should be 2000mW (cooling state 0).
1558 	 */
1559 	if (iwl_mvm_is_ctdp_supported(mvm)) {
1560 		ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_START,
1561 					   mvm->cooling_dev.cur_state);
1562 		if (ret)
1563 			goto error;
1564 	}
1565 #endif
1566 
1567 	if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_SET_LTR_GEN2))
1568 		WARN_ON(iwl_mvm_config_ltr(mvm));
1569 
1570 	ret = iwl_mvm_power_update_device(mvm);
1571 	if (ret)
1572 		goto error;
1573 
1574 	/*
1575 	 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx
1576 	 * anyway, so don't init MCC.
1577 	 */
1578 	if (!test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) {
1579 		ret = iwl_mvm_init_mcc(mvm);
1580 		if (ret)
1581 			goto error;
1582 	}
1583 
1584 	if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
1585 		mvm->scan_type = IWL_SCAN_TYPE_NOT_SET;
1586 		mvm->hb_scan_type = IWL_SCAN_TYPE_NOT_SET;
1587 		ret = iwl_mvm_config_scan(mvm);
1588 		if (ret)
1589 			goto error;
1590 	}
1591 
1592 	if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
1593 		iwl_mvm_send_recovery_cmd(mvm, ERROR_RECOVERY_UPDATE_DB);
1594 
1595 		if (mvm->time_sync.active)
1596 			iwl_mvm_time_sync_config(mvm, mvm->time_sync.peer_addr,
1597 						 IWL_TIME_SYNC_PROTOCOL_TM |
1598 						 IWL_TIME_SYNC_PROTOCOL_FTM);
1599 	}
1600 
1601 	if (!mvm->ptp_data.ptp_clock)
1602 		iwl_mvm_ptp_init(mvm);
1603 
1604 	ret = iwl_mvm_ppag_init(mvm);
1605 	if (ret)
1606 		goto error;
1607 
1608 	ret = iwl_mvm_sar_init(mvm);
1609 	if (ret == 0)
1610 		ret = iwl_mvm_sar_geo_init(mvm);
1611 	if (ret < 0)
1612 		goto error;
1613 
1614 	ret = iwl_mvm_sgom_init(mvm);
1615 	if (ret)
1616 		goto error;
1617 
1618 	iwl_mvm_tas_init(mvm);
1619 	iwl_mvm_leds_sync(mvm);
1620 	iwl_mvm_uats_init(mvm);
1621 
1622 	if (iwl_rfi_supported(mvm)) {
1623 		if (iwl_mvm_eval_dsm_rfi(mvm))
1624 			iwl_rfi_send_config_cmd(mvm, NULL);
1625 	}
1626 
1627 	iwl_mvm_mei_device_state(mvm, true);
1628 
1629 	IWL_DEBUG_INFO(mvm, "RT uCode started.\n");
1630 	return 0;
1631  error:
1632 	if (!iwlmvm_mod_params.init_dbg || !ret)
1633 		iwl_mvm_stop_device(mvm);
1634 	return ret;
1635 }
1636 
1637 int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm)
1638 {
1639 	int ret, i;
1640 
1641 	lockdep_assert_held(&mvm->mutex);
1642 
1643 	ret = iwl_trans_start_hw(mvm->trans);
1644 	if (ret)
1645 		return ret;
1646 
1647 	ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_WOWLAN);
1648 	if (ret) {
1649 		IWL_ERR(mvm, "Failed to start WoWLAN firmware: %d\n", ret);
1650 		goto error;
1651 	}
1652 
1653 	ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
1654 	if (ret)
1655 		goto error;
1656 
1657 	/* Send phy db control command and then phy db calibration*/
1658 	ret = iwl_send_phy_db_data(mvm->phy_db);
1659 	if (ret)
1660 		goto error;
1661 
1662 	ret = iwl_send_phy_cfg_cmd(mvm);
1663 	if (ret)
1664 		goto error;
1665 
1666 	/* init the fw <-> mac80211 STA mapping */
1667 	for (i = 0; i < mvm->fw->ucode_capa.num_stations; i++) {
1668 		RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
1669 		RCU_INIT_POINTER(mvm->fw_id_to_link_sta[i], NULL);
1670 	}
1671 
1672 	if (!iwl_mvm_has_new_station_api(mvm->fw)) {
1673 		/*
1674 		 * Add auxiliary station for scanning.
1675 		 * Newer versions of this command implies that the fw uses
1676 		 * internal aux station for all aux activities that don't
1677 		 * requires a dedicated data queue.
1678 		 * In old version the aux station uses mac id like other
1679 		 * station and not lmac id
1680 		 */
1681 		ret = iwl_mvm_add_aux_sta(mvm, MAC_INDEX_AUX);
1682 		if (ret)
1683 			goto error;
1684 	}
1685 
1686 	return 0;
1687  error:
1688 	iwl_mvm_stop_device(mvm);
1689 	return ret;
1690 }
1691 
1692 void iwl_mvm_rx_mfuart_notif(struct iwl_mvm *mvm,
1693 			     struct iwl_rx_cmd_buffer *rxb)
1694 {
1695 	struct iwl_rx_packet *pkt = rxb_addr(rxb);
1696 	struct iwl_mfuart_load_notif *mfuart_notif = (void *)pkt->data;
1697 
1698 	IWL_DEBUG_INFO(mvm,
1699 		       "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
1700 		       le32_to_cpu(mfuart_notif->installed_ver),
1701 		       le32_to_cpu(mfuart_notif->external_ver),
1702 		       le32_to_cpu(mfuart_notif->status),
1703 		       le32_to_cpu(mfuart_notif->duration));
1704 
1705 	if (iwl_rx_packet_payload_len(pkt) == sizeof(*mfuart_notif))
1706 		IWL_DEBUG_INFO(mvm,
1707 			       "MFUART: image size: 0x%08x\n",
1708 			       le32_to_cpu(mfuart_notif->image_size));
1709 }
1710