wifi: iwlwifi: take send-DSM-to-FW flows out of ACPI ifdef
[linux-2.6-block.git] / drivers / net / wireless / intel / iwlwifi / mvm / fw.c
CommitLineData
8e99ea8d
JB
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/*
1724fc78 3 * Copyright (C) 2012-2014, 2018-2023 Intel Corporation
8e99ea8d
JB
4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2016-2017 Intel Deutschland GmbH
6 */
8ca151b5 7#include <net/mac80211.h>
854d773e 8#include <linux/netdevice.h>
a2ac0f48 9#include <linux/dmi.h>
8ca151b5
JB
10
11#include "iwl-trans.h"
12#include "iwl-op-mode.h"
d962f9b1 13#include "fw/img.h"
8ca151b5 14#include "iwl-debug.h"
8c23f95c 15#include "iwl-prph.h"
813df5ce 16#include "fw/acpi.h"
b3e4c0f3 17#include "fw/pnvm.h"
4a9bb5b4 18#include "fw/uefi.h"
427661e4 19#include "fw/regulatory.h"
8ca151b5
JB
20
21#include "mvm.h"
7174beb6 22#include "fw/dbg.h"
8ca151b5 23#include "iwl-phy-db.h"
9c4f7d51
ST
24#include "iwl-modparams.h"
25#include "iwl-nvm-parse.h"
cf85123a 26#include "time-sync.h"
8ca151b5 27
abea0d06 28#define MVM_UCODE_ALIVE_TIMEOUT (2 * HZ)
b3e4c0f3 29#define MVM_UCODE_CALIB_TIMEOUT (2 * HZ)
8ca151b5 30
4a9bb5b4
MS
31#define IWL_UATS_VLP_AP_SUPPORTED BIT(29)
32#define IWL_UATS_AFC_AP_SUPPORTED BIT(30)
33
8ca151b5
JB
34struct iwl_mvm_alive_data {
35 bool valid;
36 u32 scd_base_addr;
37};
38
8ca151b5
JB
39static 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
33223542 45 IWL_DEBUG_FW(mvm, "select valid tx ant: %u\n", valid_tx_ant);
a1022927 46 return iwl_mvm_send_cmd_pdu(mvm, TX_ANT_CONFIGURATION_CMD, 0,
8ca151b5
JB
47 sizeof(tx_ant_cmd), &tx_ant_cmd);
48}
49
43413a97
SS
50static 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),
608dce95
SS
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),
43413a97
SS
61 };
62
f43495fd
SS
63 if (mvm->trans->num_rx_queues == 1)
64 return 0;
65
854d773e 66 /* Do not direct RSS traffic to Q 0 which is our fallback queue */
43413a97 67 for (i = 0; i < ARRAY_SIZE(cmd.indirection_table); i++)
854d773e
SS
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));
43413a97
SS
71
72 return iwl_mvm_send_cmd_pdu(mvm, RSS_CONFIG_CMD, 0, sizeof(cmd), &cmd);
73}
74
97d5be7e
LK
75static 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 };
f0c86427 80 u32 cmd_id = WIDE_ID(DATA_PATH_GROUP, DQA_ENABLE_CMD);
97d5be7e
LK
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
bdccdb85
GBA
92void 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
8ca151b5
JB
113static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
114 struct iwl_rx_packet *pkt, void *data)
115{
fd1c3318 116 unsigned int pkt_len = iwl_rx_packet_payload_len(pkt);
8ca151b5
JB
117 struct iwl_mvm *mvm =
118 container_of(notif_wait, struct iwl_mvm, notif_wait);
119 struct iwl_mvm_alive_data *alive_data = data;
5c228d63
SS
120 struct iwl_umac_alive *umac;
121 struct iwl_lmac_alive *lmac1;
122 struct iwl_lmac_alive *lmac2 = NULL;
123 u16 status;
cfa5d0ca 124 u32 lmac_error_event_table, umac_error_table;
708d8c53
JB
125 u32 version = iwl_fw_lookup_notif_ver(mvm->fw, LEGACY_GROUP,
126 UCODE_ALIVE_NTFY, 0);
5053a451 127 u32 i;
b2f20cf2 128
01a9ca51 129
c0941ace
MS
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));
5053a451
MS
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 }
c0941ace
MS
173 }
174
175 if (version >= 5) {
90824f2f
LC
176 struct iwl_alive_ntf_v5 *palive;
177
fd1c3318
JB
178 if (pkt_len < sizeof(*palive))
179 return false;
180
90824f2f
LC
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)) {
9422b978
LC
196 struct iwl_alive_ntf_v4 *palive;
197
fd1c3318
JB
198 if (pkt_len < sizeof(*palive))
199 return false;
200
5c228d63
SS
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);
9422b978
LC
206 } else if (iwl_rx_packet_payload_len(pkt) ==
207 sizeof(struct iwl_alive_ntf_v3)) {
208 struct iwl_alive_ntf_v3 *palive3;
209
fd1c3318
JB
210 if (pkt_len < sizeof(*palive3))
211 return false;
212
5c228d63
SS
213 palive3 = (void *)pkt->data;
214 umac = &palive3->umac_data;
215 lmac1 = &palive3->lmac_data;
216 status = le16_to_cpu(palive3->status);
9422b978
LC
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;
5c228d63 222 }
01a9ca51 223
22463857
SM
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
5c228d63 228 if (lmac2)
91c28b83 229 mvm->trans->dbg.lmac_error_event_table[1] =
22463857 230 le32_to_cpu(lmac2->dbg_ptrs.error_event_table_ptr);
ffa70264 231
4f7411d6
RG
232 umac_error_table = le32_to_cpu(umac->dbg_ptrs.error_info_addr) &
233 ~FW_ADDR_CACHE_CONTROL;
cfa5d0ca
MG
234
235 if (umac_error_table) {
236 if (umac_error_table >=
834f920e 237 mvm->trans->cfg->min_umac_error_event_table) {
cfa5d0ca
MG
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 }
3485e76e 247 }
fb5b2846 248
22463857 249 alive_data->scd_base_addr = le32_to_cpu(lmac1->dbg_ptrs.scd_base_ptr);
5c228d63 250 alive_data->valid = status == IWL_ALIVE_STATUS_OK;
7e1223b5 251
5c228d63
SS
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);
7e1223b5 255
5c228d63
SS
256 if (lmac2)
257 IWL_DEBUG_FW(mvm, "Alive ucode CDB\n");
7e1223b5 258
5c228d63
SS
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));
8ca151b5 263
0a3a3e9e
SM
264 iwl_fwrt_update_fw_versions(&mvm->fwrt, lmac1, umac);
265
8ca151b5
JB
266 return true;
267}
268
1f370650
SS
269static 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
8ca151b5
JB
277static 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
ce1f2778 287 WARN_ON(iwl_phy_db_set_section(phy_db, pkt));
8ca151b5
JB
288
289 return false;
290}
291
a7de31d5
MG
292static void iwl_mvm_print_pd_notification(struct iwl_mvm *mvm)
293{
184f10db
MG
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
a7de31d5
MG
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)
184f10db 304 IWL_FW_PRINT_REG_INFO(WFPM_ARC1_PD_NOTIFICATION);
a7de31d5 305 else
184f10db 306 IWL_FW_PRINT_REG_INFO(WFPM_LMAC1_PD_NOTIFICATION);
f2f17ca0 307
184f10db 308 IWL_FW_PRINT_REG_INFO(HPM_SECONDARY_DEVICE_STATE);
f2f17ca0 309
184f10db
MG
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);
a7de31d5
MG
313}
314
8ca151b5
JB
315static 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;
94a8d87c 319 struct iwl_mvm_alive_data alive_data = {};
8ca151b5 320 const struct fw_img *fw;
cfbc6c4c 321 int ret;
702e975d 322 enum iwl_ucode_type old_type = mvm->fwrt.cur_fw_img;
9422b978 323 static const u16 alive_cmd[] = { UCODE_ALIVE_NTFY };
b3500b47
EG
324 bool run_in_rfkill =
325 ucode_type == IWL_UCODE_INIT || iwl_mvm_has_unified_ucode(mvm);
5e31b3df
MS
326 u8 count;
327 struct iwl_pc_data *pc_data;
8ca151b5 328
61df750c 329 if (ucode_type == IWL_UCODE_REGULAR &&
3d2d4422
GBA
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)))
612da1ef 333 fw = iwl_get_ucode_image(mvm->fw, IWL_UCODE_REGULAR_USNIFFER);
61df750c 334 else
612da1ef 335 fw = iwl_get_ucode_image(mvm->fw, ucode_type);
befe9b6f 336 if (WARN_ON(!fw))
8ca151b5 337 return -EINVAL;
702e975d 338 iwl_fw_set_current_image(&mvm->fwrt, ucode_type);
65b280fe 339 clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
8ca151b5
JB
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
b3500b47
EG
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);
8ca151b5 351 if (ret) {
702e975d 352 iwl_fw_set_current_image(&mvm->fwrt, old_type);
8ca151b5
JB
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);
56731878
DG
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));
b8133439
AS
373 IWL_INFO(mvm, "CNVI_SCU_SEQ_DATA_DW9: 0x%x\n",
374 iwl_read_prph(mvm->trans, CNVI_SCU_SEQ_DATA_DW9));
56731878
DG
375 }
376
8ca151b5 377 if (ret) {
d6be9c1d
SS
378 struct iwl_trans *trans = mvm->trans;
379
5667ccc2 380 /* SecBoot info */
20f5aef5
JB
381 if (trans->trans_cfg->device_family >=
382 IWL_DEVICE_FAMILY_22000) {
d6be9c1d
SS
383 IWL_ERR(mvm,
384 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
ea695b7c
ST
385 iwl_read_umac_prph(trans, UMAG_SB_CPU_1_STATUS),
386 iwl_read_umac_prph(trans,
387 UMAG_SB_CPU_2_STATUS));
5667ccc2
MG
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
a7de31d5
MG
396 iwl_mvm_print_pd_notification(mvm);
397
5667ccc2
MG
398 /* LMAC/UMAC PC info */
399 if (trans->trans_cfg->device_family >=
5e31b3df
MS
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 >=
5667ccc2 408 IWL_DEVICE_FAMILY_9000) {
20f5aef5
JB
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));
20f5aef5
JB
419 }
420
b8133439 421 if (ret == -ETIMEDOUT && !mvm->pldr_sync)
20f5aef5
JB
422 iwl_fw_dbg_error_collect(&mvm->fwrt,
423 FW_DBG_TRIGGER_ALIVE_TIMEOUT);
424
702e975d 425 iwl_fw_set_current_image(&mvm->fwrt, old_type);
8ca151b5
JB
426 return ret;
427 }
428
429 if (!alive_data.valid) {
430 IWL_ERR(mvm, "Loaded ucode is not valid!\n");
702e975d 431 iwl_fw_set_current_image(&mvm->fwrt, old_type);
8ca151b5
JB
432 return -EIO;
433 }
434
f31f7cd9
GG
435 /* if reached this point, Alive notification was received */
436 iwl_mei_alive_notif(true);
733eb54f 437
33182810
AG
438 ret = iwl_pnvm_load(mvm->trans, &mvm->notif_wait,
439 &mvm->fw->ucode_capa);
70d3ca86
LC
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
8ca151b5
JB
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
4ecafae9 457 memset(&mvm->queue_info, 0, sizeof(mvm->queue_info));
1c14089e
JB
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);
8ca151b5 466
65b280fe 467 set_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status);
f7805b33
LC
468#ifdef CONFIG_IWLWIFI_DEBUGFS
469 iwl_fw_set_dbg_rec_on(&mvm->fwrt);
470#endif
8ca151b5 471
d3d9b4fc
EG
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
8ca151b5
JB
480 return 0;
481}
8ca151b5 482
c4ace426
GA
483static void iwl_mvm_phy_filter_init(struct iwl_mvm *mvm,
484 struct iwl_phy_specific_cfg *phy_filters)
485{
c4c95454
JB
486#ifdef CONFIG_ACPI
487 *phy_filters = mvm->phy_filters;
c4ace426 488#endif /* CONFIG_ACPI */
c4c95454 489}
c4ace426 490
c593d2fa 491#if defined(CONFIG_ACPI) && defined(CONFIG_EFI)
4a9bb5b4
MS
492static void iwl_mvm_uats_init(struct iwl_mvm *mvm)
493{
494 u8 cmd_ver;
495 int ret;
496 struct iwl_host_cmd cmd = {
497 .id = WIDE_ID(REGULATORY_AND_NVM_GROUP,
498 UATS_TABLE_CMD),
499 .flags = 0,
500 .data[0] = &mvm->fwrt.uats_table,
501 .len[0] = sizeof(mvm->fwrt.uats_table),
502 .dataflags[0] = IWL_HCMD_DFL_NOCOPY,
503 };
504
505 if (!(mvm->trans->trans_cfg->device_family >=
506 IWL_DEVICE_FAMILY_AX210)) {
507 IWL_DEBUG_RADIO(mvm, "UATS feature is not supported\n");
508 return;
509 }
510
511 if (!mvm->fwrt.uats_enabled) {
512 IWL_DEBUG_RADIO(mvm, "UATS feature is disabled\n");
513 return;
514 }
515
516 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
517 IWL_FW_CMD_VER_UNKNOWN);
518 if (cmd_ver != 1) {
519 IWL_DEBUG_RADIO(mvm,
520 "UATS_TABLE_CMD ver %d not supported\n",
521 cmd_ver);
522 return;
523 }
524
525 ret = iwl_uefi_get_uats_table(mvm->trans, &mvm->fwrt);
526 if (ret < 0) {
527 IWL_ERR(mvm, "failed to read UATS table (%d)\n", ret);
528 return;
529 }
530
531 ret = iwl_mvm_send_cmd(mvm, &cmd);
532 if (ret < 0)
533 IWL_ERR(mvm, "failed to send UATS_TABLE_CMD (%d)\n", ret);
534 else
535 IWL_DEBUG_RADIO(mvm, "UATS_TABLE_CMD sent to FW\n");
536}
537
c593d2fa
AB
538static 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
971cbe50 556 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
c593d2fa
AB
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#else
572
573static int iwl_mvm_sgom_init(struct iwl_mvm *mvm)
574{
575 return 0;
576}
4a9bb5b4
MS
577
578static void iwl_mvm_uats_init(struct iwl_mvm *mvm)
579{
580}
c593d2fa
AB
581#endif
582
8ca151b5
JB
583static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)
584{
971cbe50 585 u32 cmd_id = PHY_CONFIGURATION_CMD;
c4ace426 586 struct iwl_phy_cfg_cmd_v3 phy_cfg_cmd;
702e975d 587 enum iwl_ucode_type ucode_type = mvm->fwrt.cur_fw_img;
c4ace426
GA
588 u8 cmd_ver;
589 size_t cmd_size;
8ca151b5 590
bb99ff9b 591 if (iwl_mvm_has_unified_ucode(mvm) &&
d923b020 592 !mvm->trans->cfg->tx_with_siso_diversity)
bb99ff9b 593 return 0;
d923b020
LC
594
595 if (mvm->trans->cfg->tx_with_siso_diversity) {
bb99ff9b
LC
596 /*
597 * TODO: currently we don't set the antenna but letting the NIC
598 * to decide which antenna to use. This should come from BIOS.
599 */
600 phy_cfg_cmd.phy_cfg =
601 cpu_to_le32(FW_PHY_CFG_CHAIN_SAD_ENABLED);
602 }
603
8ca151b5 604 /* Set parameters */
a0544272 605 phy_cfg_cmd.phy_cfg = cpu_to_le32(iwl_mvm_get_phy_config(mvm));
86a2b204
LC
606
607 /* set flags extra PHY configuration flags from the device's cfg */
7897dfa2
LC
608 phy_cfg_cmd.phy_cfg |=
609 cpu_to_le32(mvm->trans->trans_cfg->extra_phy_cfg_flags);
86a2b204 610
8ca151b5
JB
611 phy_cfg_cmd.calib_control.event_trigger =
612 mvm->fw->default_calib[ucode_type].event_trigger;
613 phy_cfg_cmd.calib_control.flow_trigger =
614 mvm->fw->default_calib[ucode_type].flow_trigger;
615
971cbe50 616 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
e80bfd11 617 IWL_FW_CMD_VER_UNKNOWN);
c4c95454
JB
618 if (cmd_ver >= 3)
619 iwl_mvm_phy_filter_init(mvm, &phy_cfg_cmd.phy_specific_cfg);
c4ace426 620
8ca151b5
JB
621 IWL_DEBUG_INFO(mvm, "Sending Phy CFG command: 0x%x\n",
622 phy_cfg_cmd.phy_cfg);
c4ace426
GA
623 cmd_size = (cmd_ver == 3) ? sizeof(struct iwl_phy_cfg_cmd_v3) :
624 sizeof(struct iwl_phy_cfg_cmd_v1);
971cbe50 625 return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, cmd_size, &phy_cfg_cmd);
8ca151b5
JB
626}
627
e305a408
MS
628static int iwl_run_unified_mvm_ucode(struct iwl_mvm *mvm)
629{
630 struct iwl_notification_wait init_wait;
631 struct iwl_nvm_access_complete_cmd nvm_complete = {};
632 struct iwl_init_extended_cfg_cmd init_cfg = {
633 .init_flags = cpu_to_le32(BIT(IWL_INIT_NVM)),
634 };
635 static const u16 init_complete[] = {
636 INIT_COMPLETE_NOTIF,
637 };
bdd94061 638 u32 sb_cfg;
e305a408
MS
639 int ret;
640
641 if (mvm->trans->cfg->tx_with_siso_diversity)
642 init_cfg.init_flags |= cpu_to_le32(BIT(IWL_INIT_PHY));
643
644 lockdep_assert_held(&mvm->mutex);
645
646 mvm->rfkill_safe_init_done = false;
647
a856ce66
JB
648 if (mvm->trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_AX210) {
649 sb_cfg = iwl_read_umac_prph(mvm->trans, SB_MODIFY_CFG_FLAG);
650 /* if needed, we'll reset this on our way out later */
3277baa9 651 mvm->pldr_sync = sb_cfg == SB_CFG_RESIDES_IN_ROM;
a856ce66
JB
652 if (mvm->pldr_sync && iwl_mei_pldr_req())
653 return -EBUSY;
654 }
bdd94061 655
e305a408
MS
656 iwl_init_notification_wait(&mvm->notif_wait,
657 &init_wait,
658 init_complete,
659 ARRAY_SIZE(init_complete),
660 iwl_wait_init_complete,
661 NULL);
662
663 iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_EARLY, NULL);
664
665 /* Will also start the device */
666 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
667 if (ret) {
668 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
bdd94061
JB
669
670 /* if we needed reset then fail here, but notify and remove */
671 if (mvm->pldr_sync) {
672 iwl_mei_alive_notif(false);
673 iwl_trans_pcie_remove(mvm->trans, true);
674 }
675
e305a408
MS
676 goto error;
677 }
678 iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_AFTER_ALIVE,
679 NULL);
680
de0c2cdc
JB
681 if (mvm->trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_BZ)
682 mvm->trans->step_urm = !!(iwl_read_umac_prph(mvm->trans,
683 CNVI_PMU_STEP_FLOW) &
684 CNVI_PMU_STEP_FLOW_FORCE_URM);
685
e305a408
MS
686 /* Send init config command to mark that we are sending NVM access
687 * commands
688 */
689 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(SYSTEM_GROUP,
690 INIT_EXTENDED_CFG_CMD),
691 CMD_SEND_IN_RFKILL,
692 sizeof(init_cfg), &init_cfg);
693 if (ret) {
694 IWL_ERR(mvm, "Failed to run init config command: %d\n",
695 ret);
696 goto error;
697 }
698
699 /* Load NVM to NIC if needed */
700 if (mvm->nvm_file_name) {
701 ret = iwl_read_external_nvm(mvm->trans, mvm->nvm_file_name,
702 mvm->nvm_sections);
703 if (ret)
704 goto error;
705 ret = iwl_mvm_load_nvm_to_nic(mvm);
706 if (ret)
707 goto error;
708 }
709
710 if (IWL_MVM_PARSE_NVM && !mvm->nvm_data) {
711 ret = iwl_nvm_init(mvm);
712 if (ret) {
713 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
714 goto error;
715 }
716 }
717
718 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(REGULATORY_AND_NVM_GROUP,
719 NVM_ACCESS_COMPLETE),
720 CMD_SEND_IN_RFKILL,
721 sizeof(nvm_complete), &nvm_complete);
722 if (ret) {
723 IWL_ERR(mvm, "Failed to run complete NVM access: %d\n",
724 ret);
725 goto error;
726 }
727
d2ccc5c1
MS
728 ret = iwl_send_phy_cfg_cmd(mvm);
729 if (ret) {
730 IWL_ERR(mvm, "Failed to run PHY configuration: %d\n",
731 ret);
732 goto error;
733 }
734
e305a408
MS
735 /* We wait for the INIT complete notification */
736 ret = iwl_wait_notification(&mvm->notif_wait, &init_wait,
737 MVM_UCODE_ALIVE_TIMEOUT);
738 if (ret)
739 return ret;
740
741 /* Read the NVM only at driver load time, no need to do this twice */
742 if (!IWL_MVM_PARSE_NVM && !mvm->nvm_data) {
4ea1ed1d
EG
743 mvm->nvm_data = iwl_get_nvm(mvm->trans, mvm->fw,
744 mvm->set_tx_ant, mvm->set_rx_ant);
e305a408
MS
745 if (IS_ERR(mvm->nvm_data)) {
746 ret = PTR_ERR(mvm->nvm_data);
747 mvm->nvm_data = NULL;
748 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
749 return ret;
750 }
751 }
752
753 mvm->rfkill_safe_init_done = true;
754
755 return 0;
756
757error:
758 iwl_remove_notification(&mvm->notif_wait, &init_wait);
759 return ret;
760}
761
3b25f1af 762int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm)
8ca151b5
JB
763{
764 struct iwl_notification_wait calib_wait;
6eb031d2 765 static const u16 init_complete[] = {
8ca151b5
JB
766 INIT_COMPLETE_NOTIF,
767 CALIB_RES_NOTIF_PHY_DB
768 };
769 int ret;
770
7d6222e2 771 if (iwl_mvm_has_unified_ucode(mvm))
52b15521 772 return iwl_run_unified_mvm_ucode(mvm);
8c5f47b1 773
8ca151b5
JB
774 lockdep_assert_held(&mvm->mutex);
775
94022562 776 mvm->rfkill_safe_init_done = false;
8ca151b5
JB
777
778 iwl_init_notification_wait(&mvm->notif_wait,
779 &calib_wait,
780 init_complete,
781 ARRAY_SIZE(init_complete),
782 iwl_wait_phy_db_entry,
783 mvm->phy_db);
784
11f8c533
LC
785 iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_EARLY, NULL);
786
8ca151b5
JB
787 /* Will also start the device */
788 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_INIT);
789 if (ret) {
790 IWL_ERR(mvm, "Failed to start INIT ucode: %d\n", ret);
00e0c6c8 791 goto remove_notif;
8ca151b5
JB
792 }
793
7d34a7d7 794 if (mvm->trans->trans_cfg->device_family < IWL_DEVICE_FAMILY_8000) {
b3de3ef4
EG
795 ret = iwl_mvm_send_bt_init_conf(mvm);
796 if (ret)
00e0c6c8 797 goto remove_notif;
b3de3ef4 798 }
931d4160 799
81a67e32 800 /* Read the NVM only at driver load time, no need to do this twice */
3b25f1af 801 if (!mvm->nvm_data) {
5bd1d2c1 802 ret = iwl_nvm_init(mvm);
8ca151b5
JB
803 if (ret) {
804 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
00e0c6c8 805 goto remove_notif;
8ca151b5
JB
806 }
807 }
808
81a67e32 809 /* In case we read the NVM from external file, load it to the NIC */
9ce505fe
AN
810 if (mvm->nvm_file_name) {
811 ret = iwl_mvm_load_nvm_to_nic(mvm);
812 if (ret)
813 goto remove_notif;
814 }
81a67e32 815
64866e5d
LC
816 WARN_ONCE(mvm->nvm_data->nvm_version < mvm->trans->cfg->nvm_ver,
817 "Too old NVM version (0x%0x, required = 0x%0x)",
818 mvm->nvm_data->nvm_version, mvm->trans->cfg->nvm_ver);
8ca151b5 819
4f59334b
EH
820 /*
821 * abort after reading the nvm in case RF Kill is on, we will complete
822 * the init seq later when RF kill will switch to off
823 */
1a3fe0b2 824 if (iwl_mvm_is_radio_hw_killed(mvm)) {
4f59334b
EH
825 IWL_DEBUG_RF_KILL(mvm,
826 "jump over all phy activities due to RF kill\n");
00e0c6c8 827 goto remove_notif;
4f59334b
EH
828 }
829
b3500b47 830 mvm->rfkill_safe_init_done = true;
31b8b343 831
e07cbb53 832 /* Send TX valid antennas before triggering calibrations */
a0544272 833 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
e07cbb53 834 if (ret)
00e0c6c8 835 goto remove_notif;
e07cbb53 836
8ca151b5
JB
837 ret = iwl_send_phy_cfg_cmd(mvm);
838 if (ret) {
839 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
840 ret);
00e0c6c8 841 goto remove_notif;
8ca151b5
JB
842 }
843
844 /*
845 * Some things may run in the background now, but we
846 * just wait for the calibration complete notification.
847 */
848 ret = iwl_wait_notification(&mvm->notif_wait, &calib_wait,
00e0c6c8
LC
849 MVM_UCODE_CALIB_TIMEOUT);
850 if (!ret)
851 goto out;
31b8b343 852
00e0c6c8 853 if (iwl_mvm_is_radio_hw_killed(mvm)) {
31b8b343 854 IWL_DEBUG_RF_KILL(mvm, "RFKILL while calibrating.\n");
00e0c6c8
LC
855 ret = 0;
856 } else {
857 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
858 ret);
31b8b343 859 }
00e0c6c8 860
8ca151b5
JB
861 goto out;
862
00e0c6c8 863remove_notif:
8ca151b5
JB
864 iwl_remove_notification(&mvm->notif_wait, &calib_wait);
865out:
b3500b47 866 mvm->rfkill_safe_init_done = false;
a4082843 867 if (iwlmvm_mod_params.init_dbg && !mvm->nvm_data) {
8ca151b5
JB
868 /* we want to debug INIT and we have no NVM - fake */
869 mvm->nvm_data = kzalloc(sizeof(struct iwl_nvm_data) +
870 sizeof(struct ieee80211_channel) +
871 sizeof(struct ieee80211_rate),
872 GFP_KERNEL);
873 if (!mvm->nvm_data)
874 return -ENOMEM;
8ca151b5
JB
875 mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels;
876 mvm->nvm_data->bands[0].n_channels = 1;
877 mvm->nvm_data->bands[0].n_bitrates = 1;
878 mvm->nvm_data->bands[0].bitrates =
8ba438ef 879 (void *)(mvm->nvm_data->channels + 1);
8ca151b5
JB
880 mvm->nvm_data->bands[0].bitrates->hw_value = 10;
881 }
882
883 return ret;
884}
885
84bfffa9
EG
886static int iwl_mvm_config_ltr(struct iwl_mvm *mvm)
887{
888 struct iwl_ltr_config_cmd cmd = {
889 .flags = cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE),
890 };
891
892 if (!mvm->trans->ltr_enabled)
893 return 0;
894
84bfffa9
EG
895 return iwl_mvm_send_cmd_pdu(mvm, LTR_CONFIG, 0,
896 sizeof(cmd), &cmd);
897}
898
42ce76d6 899int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b)
da2830ac 900{
971cbe50 901 u32 cmd_id = REDUCE_TX_POWER_CMD;
216cdfb5
LC
902 struct iwl_dev_tx_power_cmd cmd = {
903 .common.set_mode = cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS),
71e9378b 904 };
9c08cef8 905 __le16 *per_chain;
1edd56e6 906 int ret;
39c1a972 907 u16 len = 0;
fbb7957d 908 u32 n_subbands;
971cbe50 909 u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
e80bfd11 910 IWL_FW_CMD_VER_UNKNOWN);
b0aa02b3
AB
911 if (cmd_ver == 7) {
912 len = sizeof(cmd.v7);
913 n_subbands = IWL_NUM_SUB_BANDS_V2;
914 per_chain = cmd.v7.per_chain[0][0];
915 cmd.v7.flags = cpu_to_le32(mvm->fwrt.reduced_power_flags);
916 } else if (cmd_ver == 6) {
fbb7957d
LC
917 len = sizeof(cmd.v6);
918 n_subbands = IWL_NUM_SUB_BANDS_V2;
919 per_chain = cmd.v6.per_chain[0][0];
920 } else if (fw_has_api(&mvm->fw->ucode_capa,
921 IWL_UCODE_TLV_API_REDUCE_TX_POWER)) {
0791c2fc 922 len = sizeof(cmd.v5);
e12cfc7b 923 n_subbands = IWL_NUM_SUB_BANDS_V1;
9c08cef8
LC
924 per_chain = cmd.v5.per_chain[0][0];
925 } else if (fw_has_capa(&mvm->fw->ucode_capa,
fbb7957d 926 IWL_UCODE_TLV_CAPA_TX_POWER_ACK)) {
216cdfb5 927 len = sizeof(cmd.v4);
e12cfc7b 928 n_subbands = IWL_NUM_SUB_BANDS_V1;
9c08cef8
LC
929 per_chain = cmd.v4.per_chain[0][0];
930 } else {
216cdfb5 931 len = sizeof(cmd.v3);
e12cfc7b 932 n_subbands = IWL_NUM_SUB_BANDS_V1;
9c08cef8
LC
933 per_chain = cmd.v3.per_chain[0][0];
934 }
55bfa4b9 935
216cdfb5
LC
936 /* all structs have the same common part, add it */
937 len += sizeof(cmd.common);
da2830ac 938
2594e4d9
MK
939 ret = iwl_sar_fill_profile(&mvm->fwrt, per_chain,
940 IWL_NUM_CHAIN_TABLES,
941 n_subbands, prof_a, prof_b);
1edd56e6
LC
942
943 /* return on error or if the profile is disabled (positive number) */
944 if (ret)
945 return ret;
946
6d19a5eb
EG
947 iwl_mei_set_power_limit(per_chain);
948
42ce76d6 949 IWL_DEBUG_RADIO(mvm, "Sending REDUCE_TX_POWER_CMD per chain\n");
971cbe50 950 return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, len, &cmd);
42ce76d6
LC
951}
952
7fe90e0e
HD
953int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm)
954{
dd2a1256 955 union iwl_geo_tx_power_profiles_cmd geo_tx_cmd;
f604324e 956 struct iwl_geo_tx_power_profiles_resp *resp;
0c3d7282 957 u16 len;
39c1a972 958 int ret;
c8611331
JB
959 struct iwl_host_cmd cmd = {
960 .id = WIDE_ID(PHY_OPS_GROUP, PER_CHAIN_LIMIT_OFFSET_CMD),
961 .flags = CMD_WANT_SKB,
962 .data = { &geo_tx_cmd },
963 };
971cbe50 964 u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd.id,
e80bfd11 965 IWL_FW_CMD_VER_UNKNOWN);
0c3d7282 966
dd2a1256
LC
967 /* the ops field is at the same spot for all versions, so set in v1 */
968 geo_tx_cmd.v1.ops =
969 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE);
970
97f8a3d1
AB
971 if (cmd_ver == 5)
972 len = sizeof(geo_tx_cmd.v5);
973 else if (cmd_ver == 4)
974 len = sizeof(geo_tx_cmd.v4);
975 else if (cmd_ver == 3)
0ea788ed
LC
976 len = sizeof(geo_tx_cmd.v3);
977 else if (fw_has_api(&mvm->fwrt.fw->ucode_capa,
978 IWL_UCODE_TLV_API_SAR_TABLE_VER))
dd2a1256
LC
979 len = sizeof(geo_tx_cmd.v2);
980 else
981 len = sizeof(geo_tx_cmd.v1);
7fe90e0e 982
39c1a972
IZ
983 if (!iwl_sar_geo_support(&mvm->fwrt))
984 return -EOPNOTSUPP;
985
c8611331 986 cmd.len[0] = len;
7fe90e0e
HD
987
988 ret = iwl_mvm_send_cmd(mvm, &cmd);
989 if (ret) {
990 IWL_ERR(mvm, "Failed to get geographic profile info %d\n", ret);
991 return ret;
992 }
f604324e
LC
993
994 resp = (void *)cmd.resp_pkt->data;
995 ret = le32_to_cpu(resp->profile_idx);
996
2594e4d9 997 if (WARN_ON(ret > BIOS_GEO_MAX_PROFILE_NUM))
f604324e
LC
998 ret = -EIO;
999
7fe90e0e
HD
1000 iwl_free_resp(&cmd);
1001 return ret;
1002}
1003
a6bff3cb
HD
1004static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm)
1005{
971cbe50 1006 u32 cmd_id = WIDE_ID(PHY_OPS_GROUP, PER_CHAIN_LIMIT_OFFSET_CMD);
dd2a1256 1007 union iwl_geo_tx_power_profiles_cmd cmd;
39c1a972 1008 u16 len;
45acebf8 1009 u32 n_bands;
97f8a3d1 1010 u32 n_profiles;
c0a3dfc1 1011 __le32 sk = cpu_to_le32(0);
0433ae55 1012 int ret;
971cbe50 1013 u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
e80bfd11 1014 IWL_FW_CMD_VER_UNKNOWN);
a6bff3cb 1015
45acebf8
NG
1016 BUILD_BUG_ON(offsetof(struct iwl_geo_tx_power_profiles_cmd_v1, ops) !=
1017 offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, ops) ||
1018 offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, ops) !=
97f8a3d1
AB
1019 offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, ops) ||
1020 offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, ops) !=
1021 offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, ops) ||
1022 offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, ops) !=
1023 offsetof(struct iwl_geo_tx_power_profiles_cmd_v5, ops));
1024
dd2a1256
LC
1025 /* the ops field is at the same spot for all versions, so set in v1 */
1026 cmd.v1.ops = cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES);
0c3d7282 1027
c0a3dfc1
MK
1028 /* Only set to South Korea if the table revision is 1 */
1029 if (mvm->fwrt.geo_rev == 1)
1030 sk = cpu_to_le32(1);
1031
97f8a3d1
AB
1032 if (cmd_ver == 5) {
1033 len = sizeof(cmd.v5);
1034 n_bands = ARRAY_SIZE(cmd.v5.table[0]);
2594e4d9 1035 n_profiles = BIOS_GEO_MAX_PROFILE_NUM;
c0a3dfc1 1036 cmd.v5.table_revision = sk;
97f8a3d1
AB
1037 } else if (cmd_ver == 4) {
1038 len = sizeof(cmd.v4);
1039 n_bands = ARRAY_SIZE(cmd.v4.table[0]);
2594e4d9 1040 n_profiles = BIOS_GEO_MAX_PROFILE_NUM;
c0a3dfc1 1041 cmd.v4.table_revision = sk;
97f8a3d1 1042 } else if (cmd_ver == 3) {
0ea788ed 1043 len = sizeof(cmd.v3);
45acebf8 1044 n_bands = ARRAY_SIZE(cmd.v3.table[0]);
2594e4d9 1045 n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
c0a3dfc1 1046 cmd.v3.table_revision = sk;
0ea788ed
LC
1047 } else if (fw_has_api(&mvm->fwrt.fw->ucode_capa,
1048 IWL_UCODE_TLV_API_SAR_TABLE_VER)) {
dd2a1256 1049 len = sizeof(cmd.v2);
45acebf8 1050 n_bands = ARRAY_SIZE(cmd.v2.table[0]);
2594e4d9 1051 n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
c0a3dfc1 1052 cmd.v2.table_revision = sk;
39c1a972 1053 } else {
dd2a1256 1054 len = sizeof(cmd.v1);
45acebf8 1055 n_bands = ARRAY_SIZE(cmd.v1.table[0]);
2594e4d9 1056 n_profiles = BIOS_GEO_MIN_PROFILE_NUM;
0c3d7282
HD
1057 }
1058
45acebf8
NG
1059 BUILD_BUG_ON(offsetof(struct iwl_geo_tx_power_profiles_cmd_v1, table) !=
1060 offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, table) ||
1061 offsetof(struct iwl_geo_tx_power_profiles_cmd_v2, table) !=
97f8a3d1
AB
1062 offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, table) ||
1063 offsetof(struct iwl_geo_tx_power_profiles_cmd_v3, table) !=
1064 offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, table) ||
1065 offsetof(struct iwl_geo_tx_power_profiles_cmd_v4, table) !=
1066 offsetof(struct iwl_geo_tx_power_profiles_cmd_v5, table));
45acebf8 1067 /* the table is at the same position for all versions, so set use v1 */
2594e4d9
MK
1068 ret = iwl_sar_geo_fill_table(&mvm->fwrt, &cmd.v1.table[0][0],
1069 n_bands, n_profiles);
45acebf8
NG
1070
1071 /*
1072 * It is a valid scenario to not support SAR, or miss wgds table,
1073 * but in that case there is no need to send the command.
1074 */
1075 if (ret)
1076 return 0;
1077
971cbe50 1078 return iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, len, &cmd);
6ce1e5c0
GA
1079}
1080
1081int iwl_mvm_ppag_send_cmd(struct iwl_mvm *mvm)
1082{
8bdc52b9 1083 union iwl_ppag_table_cmd cmd;
e8e10a37 1084 int ret, cmd_size;
160bab43 1085
be3a8cbb 1086 ret = iwl_fill_ppag_table(&mvm->fwrt, &cmd, &cmd_size);
b20bdd9c 1087 /* Not supporting PPAG table is a valid scenario */
473bc264 1088 if (ret < 0)
b20bdd9c 1089 return 0;
6ce1e5c0 1090
f2134f66 1091 IWL_DEBUG_RADIO(mvm, "Sending PER_PLATFORM_ANT_GAIN_CMD\n");
6ce1e5c0
GA
1092 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(PHY_OPS_GROUP,
1093 PER_PLATFORM_ANT_GAIN_CMD),
8bdc52b9 1094 0, cmd_size, &cmd);
6ce1e5c0
GA
1095 if (ret < 0)
1096 IWL_ERR(mvm, "failed to send PER_PLATFORM_ANT_GAIN_CMD (%d)\n",
1097 ret);
1098
1099 return ret;
1100}
1101
1102static int iwl_mvm_ppag_init(struct iwl_mvm *mvm)
1103{
78a19d52 1104 /* no need to read the table, done in INIT stage */
09059c67 1105 if (!(iwl_is_ppag_approved(&mvm->fwrt)))
a2ac0f48 1106 return 0;
a2ac0f48 1107
6ce1e5c0
GA
1108 return iwl_mvm_ppag_send_cmd(mvm);
1109}
1110
c3f40c3e
MK
1111static bool iwl_mvm_add_to_tas_block_list(__le32 *list, __le32 *le_size, unsigned int mcc)
1112{
1113 int i;
1114 u32 size = le32_to_cpu(*le_size);
1115
1116 /* Verify that there is room for another country */
ad5a85d8 1117 if (size >= IWL_WTAS_BLACK_LIST_MAX)
c3f40c3e
MK
1118 return false;
1119
1120 for (i = 0; i < size; i++) {
1121 if (list[i] == cpu_to_le32(mcc))
1122 return true;
1123 }
1124
1125 list[size++] = cpu_to_le32(mcc);
1126 *le_size = cpu_to_le32(size);
1127 return true;
1128}
1129
28dd7ccd
MG
1130static void iwl_mvm_tas_init(struct iwl_mvm *mvm)
1131{
971cbe50 1132 u32 cmd_id = WIDE_ID(REGULATORY_AND_NVM_GROUP, TAS_CONFIG);
28dd7ccd 1133 int ret;
3bc67e7c
MK
1134 struct iwl_tas_data data = {};
1135 struct iwl_tas_config_cmd cmd = {};
6da7ba3a 1136 int cmd_size, fw_ver;
28dd7ccd 1137
3bc67e7c
MK
1138 BUILD_BUG_ON(ARRAY_SIZE(data.block_list_array) !=
1139 IWL_WTAS_BLACK_LIST_MAX);
1140 BUILD_BUG_ON(ARRAY_SIZE(cmd.common.block_list_array) !=
ad5a85d8 1141 IWL_WTAS_BLACK_LIST_MAX);
28dd7ccd
MG
1142
1143 if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_TAS_CFG)) {
1144 IWL_DEBUG_RADIO(mvm, "TAS not enabled in FW\n");
1145 return;
1146 }
1147
084e0452 1148 ret = iwl_bios_get_tas_table(&mvm->fwrt, &data);
28dd7ccd
MG
1149 if (ret < 0) {
1150 IWL_DEBUG_RADIO(mvm,
1151 "TAS table invalid or unavailable. (%d)\n",
1152 ret);
1153 return;
1154 }
1155
7c530588 1156 if (ret == 0)
28dd7ccd
MG
1157 return;
1158
ad5a85d8 1159 if (!iwl_is_tas_approved()) {
c3f40c3e
MK
1160 IWL_DEBUG_RADIO(mvm,
1161 "System vendor '%s' is not in the approved list, disabling TAS in US and Canada.\n",
1162 dmi_get_system_info(DMI_SYS_VENDOR));
3bc67e7c
MK
1163 if ((!iwl_mvm_add_to_tas_block_list(data.block_list_array,
1164 &data.block_list_size,
1165 IWL_MCC_US)) ||
1166 (!iwl_mvm_add_to_tas_block_list(data.block_list_array,
1167 &data.block_list_size,
1168 IWL_MCC_CANADA))) {
c3f40c3e
MK
1169 IWL_DEBUG_RADIO(mvm,
1170 "Unable to add US/Canada to TAS block list, disabling TAS\n");
1171 return;
1172 }
06471b67
AG
1173 } else {
1174 IWL_DEBUG_RADIO(mvm,
1175 "System vendor '%s' is in the approved list.\n",
1176 dmi_get_system_info(DMI_SYS_VENDOR));
c3f40c3e
MK
1177 }
1178
3bc67e7c
MK
1179 fw_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,
1180 IWL_FW_CMD_VER_UNKNOWN);
1181
1182 memcpy(&cmd.common, &data, sizeof(struct iwl_tas_config_cmd_common));
1183
1184 /* Set v3 or v4 specific parts. will be trunctated for fw_ver < 3 */
1185 if (fw_ver == 4) {
1186 cmd.v4.override_tas_iec = data.override_tas_iec;
1187 cmd.v4.enable_tas_iec = data.enable_tas_iec;
1188 cmd.v4.usa_tas_uhb_allowed = data.usa_tas_uhb_allowed;
1189 } else {
1190 cmd.v3.override_tas_iec = cpu_to_le16(data.override_tas_iec);
1191 cmd.v3.enable_tas_iec = cpu_to_le16(data.enable_tas_iec);
1192 }
1193
1194 cmd_size = sizeof(struct iwl_tas_config_cmd_common);
1195 if (fw_ver >= 3)
1196 /* v4 is the same size as v3 */
1197 cmd_size += sizeof(struct iwl_tas_config_cmd_v3);
28dd7ccd 1198
971cbe50 1199 ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, cmd_size, &cmd);
28dd7ccd
MG
1200 if (ret < 0)
1201 IWL_DEBUG_RADIO(mvm, "failed to send TAS_CONFIG (%d)\n", ret);
1202}
f5b1cb2e 1203
dc2b94a1 1204static bool iwl_mvm_eval_dsm_rfi(struct iwl_mvm *mvm)
4e8fe214 1205{
dc2b94a1
MK
1206 u8 value = 0;
1207 /* default behaviour is disabled */
1208 bool bios_enable_rfi = false;
1209 int ret = iwl_acpi_get_dsm_u8(mvm->fwrt.dev, 0,
1210 DSM_FUNC_RFI_CONFIG, &iwl_guid,
1211 &value);
4e8fe214
GG
1212
1213 if (ret < 0) {
1214 IWL_DEBUG_RADIO(mvm, "Failed to get DSM RFI, ret=%d\n", ret);
dc2b94a1
MK
1215 return bios_enable_rfi;
1216 }
4e8fe214 1217
dc2b94a1
MK
1218 value &= DSM_VALUE_RFI_DISABLE;
1219 /* RFI BIOS CONFIG value can be 0 or 3 only.
1220 * i.e 0 means DDR and DLVR enabled. 3 means DDR and DLVR disabled.
1221 * 1 and 2 are invalid BIOS configurations, So, it's not possible to
1222 * disable ddr/dlvr separately.
1223 */
1224 if (!value) {
4e8fe214 1225 IWL_DEBUG_RADIO(mvm, "DSM RFI is evaluated to enable\n");
dc2b94a1
MK
1226 bios_enable_rfi = true;
1227 } else if (value == DSM_VALUE_RFI_DISABLE) {
1228 IWL_DEBUG_RADIO(mvm, "DSM RFI is evaluated to disable\n");
1229 } else {
1230 IWL_DEBUG_RADIO(mvm,
1231 "DSM RFI got invalid value, value=%d\n", value);
4e8fe214
GG
1232 }
1233
dc2b94a1 1234 return bios_enable_rfi;
4e8fe214
GG
1235}
1236
f5b1cb2e
GA
1237static void iwl_mvm_lari_cfg(struct iwl_mvm *mvm)
1238{
7119f02b
MK
1239 int ret;
1240 u32 value;
c8e01fe0 1241 struct iwl_lari_config_change_cmd_v7 cmd = {};
c3e5f5f6
MK
1242 u8 cmd_ver = iwl_fw_lookup_cmd_ver(mvm->fw,
1243 WIDE_ID(REGULATORY_AND_NVM_GROUP,
1244 LARI_CONFIG_CHANGE), 1);
f5b1cb2e 1245
f21afaba 1246 cmd.config_bitmap = iwl_acpi_get_lari_config_bitmap(&mvm->fwrt);
d2bfda8a 1247
45fe1b6b 1248 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0, DSM_FUNC_11AX_ENABLEMENT,
7119f02b
MK
1249 &iwl_guid, &value);
1250 if (!ret)
1251 cmd.oem_11ax_allow_bitmap = cpu_to_le32(value);
f5b1cb2e 1252
45fe1b6b 1253 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0,
54b4fda5
AN
1254 DSM_FUNC_ENABLE_UNII4_CHAN,
1255 &iwl_guid, &value);
1256 if (!ret)
1257 cmd.oem_unii4_allow_bitmap = cpu_to_le32(value);
1258
45fe1b6b 1259 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0,
1f578d4f
MK
1260 DSM_FUNC_ACTIVATE_CHANNEL,
1261 &iwl_guid, &value);
c3e5f5f6
MK
1262 if (!ret) {
1263 if (cmd_ver < 8)
1264 value &= ~ACTIVATE_5G2_IN_WW_MASK;
1f578d4f 1265 cmd.chan_state_active_bitmap = cpu_to_le32(value);
c3e5f5f6 1266 }
1f578d4f 1267
698b166e
LC
1268 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0,
1269 DSM_FUNC_ENABLE_6E,
1270 &iwl_guid, &value);
1271 if (!ret)
1272 cmd.oem_uhb_allow_bitmap = cpu_to_le32(value);
1273
8f323d06
AB
1274 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0,
1275 DSM_FUNC_FORCE_DISABLE_CHANNELS,
1276 &iwl_guid, &value);
1277 if (!ret)
1278 cmd.force_disable_channels_bitmap = cpu_to_le32(value);
1279
c8e01fe0
AG
1280 ret = iwl_acpi_get_dsm_u32(mvm->fwrt.dev, 0,
1281 DSM_FUNC_ENERGY_DETECTION_THRESHOLD,
1282 &iwl_guid, &value);
1283 if (!ret)
1284 cmd.edt_bitmap = cpu_to_le32(value);
1285
54b4fda5 1286 if (cmd.config_bitmap ||
698b166e 1287 cmd.oem_uhb_allow_bitmap ||
54b4fda5 1288 cmd.oem_11ax_allow_bitmap ||
1f578d4f 1289 cmd.oem_unii4_allow_bitmap ||
8f323d06 1290 cmd.chan_state_active_bitmap ||
c8e01fe0
AG
1291 cmd.force_disable_channels_bitmap ||
1292 cmd.edt_bitmap) {
3c21990b 1293 size_t cmd_size;
c3e5f5f6 1294
8f323d06 1295 switch (cmd_ver) {
c3e5f5f6 1296 case 8:
c8e01fe0
AG
1297 case 7:
1298 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v7);
1299 break;
8f323d06
AB
1300 case 6:
1301 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v6);
1302 break;
1303 case 5:
1f578d4f 1304 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v5);
8f323d06
AB
1305 break;
1306 case 4:
54b4fda5 1307 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v4);
8f323d06
AB
1308 break;
1309 case 3:
3c21990b 1310 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v3);
8f323d06
AB
1311 break;
1312 case 2:
3c21990b 1313 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v2);
8f323d06
AB
1314 break;
1315 default:
3c21990b 1316 cmd_size = sizeof(struct iwl_lari_config_change_cmd_v1);
8f323d06
AB
1317 break;
1318 }
3c21990b 1319
3ce88247 1320 IWL_DEBUG_RADIO(mvm,
7119f02b
MK
1321 "sending LARI_CONFIG_CHANGE, config_bitmap=0x%x, oem_11ax_allow_bitmap=0x%x\n",
1322 le32_to_cpu(cmd.config_bitmap),
1323 le32_to_cpu(cmd.oem_11ax_allow_bitmap));
54b4fda5 1324 IWL_DEBUG_RADIO(mvm,
1f578d4f 1325 "sending LARI_CONFIG_CHANGE, oem_unii4_allow_bitmap=0x%x, chan_state_active_bitmap=0x%x, cmd_ver=%d\n",
54b4fda5 1326 le32_to_cpu(cmd.oem_unii4_allow_bitmap),
1f578d4f 1327 le32_to_cpu(cmd.chan_state_active_bitmap),
54b4fda5 1328 cmd_ver);
698b166e 1329 IWL_DEBUG_RADIO(mvm,
8f323d06
AB
1330 "sending LARI_CONFIG_CHANGE, oem_uhb_allow_bitmap=0x%x, force_disable_channels_bitmap=0x%x\n",
1331 le32_to_cpu(cmd.oem_uhb_allow_bitmap),
1332 le32_to_cpu(cmd.force_disable_channels_bitmap));
c8e01fe0
AG
1333 IWL_DEBUG_RADIO(mvm,
1334 "sending LARI_CONFIG_CHANGE, edt_bitmap=0x%x\n",
1335 le32_to_cpu(cmd.edt_bitmap));
7119f02b
MK
1336 ret = iwl_mvm_send_cmd_pdu(mvm,
1337 WIDE_ID(REGULATORY_AND_NVM_GROUP,
1338 LARI_CONFIG_CHANGE),
1339 0, cmd_size, &cmd);
1340 if (ret < 0)
f5b1cb2e
GA
1341 IWL_DEBUG_RADIO(mvm,
1342 "Failed to send LARI_CONFIG_CHANGE (%d)\n",
7119f02b 1343 ret);
f5b1cb2e 1344 }
4a9bb5b4
MS
1345
1346 if (le32_to_cpu(cmd.oem_uhb_allow_bitmap) & IWL_UATS_VLP_AP_SUPPORTED ||
1347 le32_to_cpu(cmd.oem_uhb_allow_bitmap) & IWL_UATS_AFC_AP_SUPPORTED)
1348 mvm->fwrt.uats_enabled = TRUE;
f5b1cb2e 1349}
78a19d52 1350
427661e4 1351void iwl_mvm_get_bios_tables(struct iwl_mvm *mvm)
78a19d52
MK
1352{
1353 int ret;
1354
ebe8f413
MK
1355 iwl_acpi_get_guid_lock_status(&mvm->fwrt);
1356
78a19d52 1357 /* read PPAG table */
bc8d0a45 1358 ret = iwl_bios_get_ppag_table(&mvm->fwrt);
78a19d52
MK
1359 if (ret < 0) {
1360 IWL_DEBUG_RADIO(mvm,
1361 "PPAG BIOS table invalid or unavailable. (%d)\n",
1362 ret);
1363 }
1364
1365 /* read SAR tables */
427661e4 1366 ret = iwl_bios_get_wrds_table(&mvm->fwrt);
78a19d52
MK
1367 if (ret < 0) {
1368 IWL_DEBUG_RADIO(mvm,
1369 "WRDS SAR BIOS table invalid or unavailable. (%d)\n",
1370 ret);
1371 /*
1372 * If not available, don't fail and don't bother with EWRD and
1373 * WGDS */
1374
427661e4 1375 if (!iwl_bios_get_wgds_table(&mvm->fwrt)) {
78a19d52
MK
1376 /*
1377 * If basic SAR is not available, we check for WGDS,
1378 * which should *not* be available either. If it is
1379 * available, issue an error, because we can't use SAR
1380 * Geo without basic SAR.
1381 */
1382 IWL_ERR(mvm, "BIOS contains WGDS but no WRDS\n");
1383 }
1384
1385 } else {
427661e4 1386 ret = iwl_bios_get_ewrd_table(&mvm->fwrt);
78a19d52
MK
1387 /* if EWRD is not available, we can still use
1388 * WRDS, so don't fail */
1389 if (ret < 0)
1390 IWL_DEBUG_RADIO(mvm,
1391 "EWRD SAR BIOS table invalid or unavailable. (%d)\n",
1392 ret);
1393
1394 /* read geo SAR table */
1395 if (iwl_sar_geo_support(&mvm->fwrt)) {
427661e4 1396 ret = iwl_bios_get_wgds_table(&mvm->fwrt);
78a19d52
MK
1397 if (ret < 0)
1398 IWL_DEBUG_RADIO(mvm,
1399 "Geo SAR BIOS table invalid or unavailable. (%d)\n",
1400 ret);
1401 /* we don't fail if the table is not available */
1402 }
1403 }
c4c95454
JB
1404
1405 iwl_acpi_get_phy_filters(&mvm->fwrt, &mvm->phy_filters);
20935f3e
MK
1406
1407 if (iwl_bios_get_eckv(&mvm->fwrt, &mvm->ext_clock_valid))
1408 IWL_DEBUG_RADIO(mvm, "ECKV table doesn't exist in BIOS\n");
78a19d52 1409}
69964905 1410
e50a88e5
EG
1411static void iwl_mvm_disconnect_iterator(void *data, u8 *mac,
1412 struct ieee80211_vif *vif)
1413{
1414 if (vif->type == NL80211_IFTYPE_STATION)
1415 ieee80211_hw_restart_disconnect(vif);
1416}
1417
f130bb75
MG
1418void iwl_mvm_send_recovery_cmd(struct iwl_mvm *mvm, u32 flags)
1419{
1420 u32 error_log_size = mvm->fw->ucode_capa.error_log_size;
1421 int ret;
1422 u32 resp;
1423
1424 struct iwl_fw_error_recovery_cmd recovery_cmd = {
1425 .flags = cpu_to_le32(flags),
1426 .buf_size = 0,
1427 };
1428 struct iwl_host_cmd host_cmd = {
1429 .id = WIDE_ID(SYSTEM_GROUP, FW_ERROR_RECOVERY_CMD),
1430 .flags = CMD_WANT_SKB,
1431 .data = {&recovery_cmd, },
1432 .len = {sizeof(recovery_cmd), },
1433 };
1434
1435 /* no error log was defined in TLV */
1436 if (!error_log_size)
1437 return;
1438
1439 if (flags & ERROR_RECOVERY_UPDATE_DB) {
1440 /* no buf was allocated while HW reset */
1441 if (!mvm->error_recovery_buf)
1442 return;
1443
1444 host_cmd.data[1] = mvm->error_recovery_buf;
1445 host_cmd.len[1] = error_log_size;
1446 host_cmd.dataflags[1] = IWL_HCMD_DFL_NOCOPY;
1447 recovery_cmd.buf_size = cpu_to_le32(error_log_size);
1448 }
1449
1450 ret = iwl_mvm_send_cmd(mvm, &host_cmd);
1451 kfree(mvm->error_recovery_buf);
1452 mvm->error_recovery_buf = NULL;
1453
1454 if (ret) {
1455 IWL_ERR(mvm, "Failed to send recovery cmd %d\n", ret);
1456 return;
1457 }
1458
1459 /* skb respond is only relevant in ERROR_RECOVERY_UPDATE_DB */
1460 if (flags & ERROR_RECOVERY_UPDATE_DB) {
1461 resp = le32_to_cpu(*(__le32 *)host_cmd.resp_pkt->data);
e50a88e5 1462 if (resp) {
f130bb75
MG
1463 IWL_ERR(mvm,
1464 "Failed to send recovery cmd blob was invalid %d\n",
1465 resp);
e50a88e5
EG
1466
1467 ieee80211_iterate_interfaces(mvm->hw, 0,
1468 iwl_mvm_disconnect_iterator,
1469 mvm);
1470 }
f130bb75
MG
1471 }
1472}
1473
42ce76d6
LC
1474static int iwl_mvm_sar_init(struct iwl_mvm *mvm)
1475{
1edd56e6 1476 return iwl_mvm_sar_select_profile(mvm, 1, 1);
da2830ac
LC
1477}
1478
1f370650 1479static int iwl_mvm_load_rt_fw(struct iwl_mvm *mvm)
8ca151b5 1480{
1f370650 1481 int ret;
8ca151b5 1482
7d6222e2 1483 if (iwl_mvm_has_unified_ucode(mvm))
52b15521 1484 return iwl_run_unified_mvm_ucode(mvm);
8ca151b5 1485
3b25f1af 1486 ret = iwl_run_init_mvm_ucode(mvm);
f2082a53 1487
f2082a53 1488 if (ret) {
8d193ca2 1489 IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret);
f4744258
LK
1490
1491 if (iwlmvm_mod_params.init_dbg)
1492 return 0;
1f370650 1493 return ret;
8d193ca2 1494 }
8ca151b5 1495
203c83d3 1496 iwl_fw_dbg_stop_sync(&mvm->fwrt);
bab3cb92
EG
1497 iwl_trans_stop_device(mvm->trans);
1498 ret = iwl_trans_start_hw(mvm->trans);
f2082a53 1499 if (ret)
1f370650 1500 return ret;
8ca151b5 1501
94022562 1502 mvm->rfkill_safe_init_done = false;
8ca151b5 1503 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
1f370650
SS
1504 if (ret)
1505 return ret;
1506
94022562
EG
1507 mvm->rfkill_safe_init_done = true;
1508
b108d8c7
SM
1509 iwl_dbg_tlv_time_point(&mvm->fwrt, IWL_FW_INI_TIME_POINT_AFTER_ALIVE,
1510 NULL);
da2eb669 1511
702e975d 1512 return iwl_init_paging(&mvm->fwrt, mvm->fwrt.cur_fw_img);
1f370650
SS
1513}
1514
1515int iwl_mvm_up(struct iwl_mvm *mvm)
1516{
1517 int ret, i;
dd36a507 1518 struct ieee80211_supported_band *sband = NULL;
1f370650
SS
1519
1520 lockdep_assert_held(&mvm->mutex);
1521
1522 ret = iwl_trans_start_hw(mvm->trans);
1523 if (ret)
1524 return ret;
733eb54f 1525
1f370650 1526 ret = iwl_mvm_load_rt_fw(mvm);
8ca151b5
JB
1527 if (ret) {
1528 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
b8133439 1529 if (ret != -ERFKILL && !mvm->pldr_sync)
72d3c7bb
JB
1530 iwl_fw_dbg_error_collect(&mvm->fwrt,
1531 FW_DBG_TRIGGER_DRIVER);
8ca151b5
JB
1532 goto error;
1533 }
1534
b8133439
AS
1535 /* FW loaded successfully */
1536 mvm->pldr_sync = false;
1537
fc2fe0a5 1538 iwl_fw_disable_dbg_asserts(&mvm->fwrt);
d0b813fc 1539 iwl_get_shared_mem_conf(&mvm->fwrt);
04fd2c28 1540
1f3b0ff8
LE
1541 ret = iwl_mvm_sf_update(mvm, NULL, false);
1542 if (ret)
1543 IWL_ERR(mvm, "Failed to initialize Smart Fifo\n");
1544
a1af4c48 1545 if (!iwl_trans_dbg_ini_valid(mvm->trans)) {
7a14c23d
SS
1546 mvm->fwrt.dump.conf = FW_DBG_INVALID;
1547 /* if we have a destination, assume EARLY START */
1548 if (mvm->fw->dbg.dest_tlv)
1549 mvm->fwrt.dump.conf = FW_DBG_START_FROM_ALIVE;
1550 iwl_fw_start_dbg_conf(&mvm->fwrt, FW_DBG_START_FROM_ALIVE);
1551 }
6a951267 1552
a0544272 1553 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
8ca151b5
JB
1554 if (ret)
1555 goto error;
1556
7d6222e2
JB
1557 if (!iwl_mvm_has_unified_ucode(mvm)) {
1558 /* Send phy db control command and then phy db calibration */
1f370650
SS
1559 ret = iwl_send_phy_db_data(mvm->phy_db);
1560 if (ret)
1561 goto error;
d2ccc5c1
MS
1562 ret = iwl_send_phy_cfg_cmd(mvm);
1563 if (ret)
1564 goto error;
1f370650 1565 }
8ca151b5 1566
b3de3ef4
EG
1567 ret = iwl_mvm_send_bt_init_conf(mvm);
1568 if (ret)
1569 goto error;
1570
cceb4507
SM
1571 if (fw_has_capa(&mvm->fw->ucode_capa,
1572 IWL_UCODE_TLV_CAPA_SOC_LATENCY_SUPPORT)) {
a8eb340f 1573 ret = iwl_set_soc_latency(&mvm->fwrt);
cceb4507
SM
1574 if (ret)
1575 goto error;
1576 }
1577
c0a2f819
BB
1578 iwl_mvm_lari_cfg(mvm);
1579
43413a97 1580 /* Init RSS configuration */
9cd243f2
MG
1581 ret = iwl_configure_rxq(&mvm->fwrt);
1582 if (ret)
1583 goto error;
8edbfaa1
SS
1584
1585 if (iwl_mvm_has_new_rx_api(mvm)) {
43413a97
SS
1586 ret = iwl_send_rss_cfg_cmd(mvm);
1587 if (ret) {
1588 IWL_ERR(mvm, "Failed to configure RSS queues: %d\n",
1589 ret);
1590 goto error;
1591 }
1592 }
1593
8ca151b5 1594 /* init the fw <-> mac80211 STA mapping */
b8a85a1d 1595 for (i = 0; i < mvm->fw->ucode_capa.num_stations; i++) {
8ca151b5 1596 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
b8a85a1d
JB
1597 RCU_INIT_POINTER(mvm->fw_id_to_link_sta[i], NULL);
1598 }
8ca151b5 1599
d464550b
YB
1600 for (i = 0; i < IWL_MVM_FW_MAX_LINK_ID + 1; i++)
1601 RCU_INIT_POINTER(mvm->link_id_to_link_conf[i], NULL);
1602
d6f6b0d8
GG
1603 memset(&mvm->fw_link_ids_map, 0, sizeof(mvm->fw_link_ids_map));
1604
0ae98812 1605 mvm->tdls_cs.peer.sta_id = IWL_MVM_INVALID_STA;
1d3c3f63 1606
b2b7875b
JB
1607 /* reset quota debouncing buffer - 0xff will yield invalid data */
1608 memset(&mvm->last_quota_cmd, 0xff, sizeof(mvm->last_quota_cmd));
1609
79660869
IL
1610 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_DQA_SUPPORT)) {
1611 ret = iwl_mvm_send_dqa_cmd(mvm);
1612 if (ret)
1613 goto error;
1614 }
97d5be7e 1615
2c2c3647
NE
1616 /*
1617 * Add auxiliary station for scanning.
1618 * Newer versions of this command implies that the fw uses
1619 * internal aux station for all aux activities that don't
1620 * requires a dedicated data queue.
1621 */
1724fc78 1622 if (!iwl_mvm_has_new_station_api(mvm->fw)) {
2c2c3647
NE
1623 /*
1624 * In old version the aux station uses mac id like other
1625 * station and not lmac id
1626 */
1627 ret = iwl_mvm_add_aux_sta(mvm, MAC_INDEX_AUX);
1628 if (ret)
1629 goto error;
1630 }
8ca151b5 1631
53a9d61e 1632 /* Add all the PHY contexts */
dd36a507
TM
1633 i = 0;
1634 while (!sband && i < NUM_NL80211_BANDS)
1635 sband = mvm->hw->wiphy->bands[i++];
1636
583d1833
DC
1637 if (WARN_ON_ONCE(!sband)) {
1638 ret = -ENODEV;
dd36a507 1639 goto error;
583d1833 1640 }
dd36a507 1641
c221daf2
CRI
1642 if (iwl_mvm_is_tt_in_fw(mvm)) {
1643 /* in order to give the responsibility of ct-kill and
1644 * TX backoff to FW we need to send empty temperature reporting
1645 * cmd during init time
1646 */
1647 iwl_mvm_send_temp_report_ths_cmd(mvm);
1648 } else {
1649 /* Initialize tx backoffs to the minimal possible */
1650 iwl_mvm_tt_tx_backoff(mvm, 0);
1651 }
5c89e7bc 1652
242d9c8b 1653#ifdef CONFIG_THERMAL
5c89e7bc 1654 /* TODO: read the budget from BIOS / Platform NVM */
944eafc2
CRI
1655
1656 /*
1657 * In case there is no budget from BIOS / Platform NVM the default
1658 * budget should be 2000mW (cooling state 0).
1659 */
1660 if (iwl_mvm_is_ctdp_supported(mvm)) {
5c89e7bc
CRI
1661 ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_START,
1662 mvm->cooling_dev.cur_state);
75cfe338
LC
1663 if (ret)
1664 goto error;
1665 }
c221daf2 1666#endif
0c0e2c71 1667
aa43ae12
AM
1668 if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_SET_LTR_GEN2))
1669 WARN_ON(iwl_mvm_config_ltr(mvm));
9180ac50 1670
c1cb92fc 1671 ret = iwl_mvm_power_update_device(mvm);
64b928c4
AB
1672 if (ret)
1673 goto error;
1674
35af15d1
AN
1675 /*
1676 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx
1677 * anyway, so don't init MCC.
1678 */
1679 if (!test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) {
1680 ret = iwl_mvm_init_mcc(mvm);
1681 if (ret)
1682 goto error;
1683 }
90d4f7db 1684
859d914c 1685 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
4ca87a5f 1686 mvm->scan_type = IWL_SCAN_TYPE_NOT_SET;
b66b5817 1687 mvm->hb_scan_type = IWL_SCAN_TYPE_NOT_SET;
d2496221
DS
1688 ret = iwl_mvm_config_scan(mvm);
1689 if (ret)
1690 goto error;
1691 }
1692
cf85123a 1693 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
f130bb75 1694 iwl_mvm_send_recovery_cmd(mvm, ERROR_RECOVERY_UPDATE_DB);
ead65aa2
JB
1695
1696 if (mvm->time_sync.active)
1697 iwl_mvm_time_sync_config(mvm, mvm->time_sync.peer_addr,
1698 IWL_TIME_SYNC_PROTOCOL_TM |
1699 IWL_TIME_SYNC_PROTOCOL_FTM);
cf85123a 1700 }
f130bb75 1701
1595ecce
KP
1702 if (!mvm->ptp_data.ptp_clock)
1703 iwl_mvm_ptp_init(mvm);
1704
6ce1e5c0
GA
1705 ret = iwl_mvm_ppag_init(mvm);
1706 if (ret)
1707 goto error;
1708
da2830ac 1709 ret = iwl_mvm_sar_init(mvm);
78a19d52 1710 if (ret == 0)
5d041c46 1711 ret = iwl_mvm_sar_geo_init(mvm);
5f06f6bf 1712 if (ret < 0)
a6bff3cb
HD
1713 goto error;
1714
c593d2fa
AB
1715 ret = iwl_mvm_sgom_init(mvm);
1716 if (ret)
1717 goto error;
1718
28dd7ccd 1719 iwl_mvm_tas_init(mvm);
7089ae63 1720 iwl_mvm_leds_sync(mvm);
4a9bb5b4 1721 iwl_mvm_uats_init(mvm);
7089ae63 1722
9e26f098 1723 if (iwl_rfi_supported(mvm)) {
dc2b94a1 1724 if (iwl_mvm_eval_dsm_rfi(mvm))
4e8fe214
GG
1725 iwl_rfi_send_config_cmd(mvm, NULL);
1726 }
1727
5aa7ce31
AS
1728 iwl_mvm_mei_device_state(mvm, true);
1729
53a9d61e 1730 IWL_DEBUG_INFO(mvm, "RT uCode started.\n");
8ca151b5
JB
1731 return 0;
1732 error:
f4744258 1733 if (!iwlmvm_mod_params.init_dbg || !ret)
de8ba41b 1734 iwl_mvm_stop_device(mvm);
8ca151b5
JB
1735 return ret;
1736}
1737
1738int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm)
1739{
1740 int ret, i;
1741
1742 lockdep_assert_held(&mvm->mutex);
1743
1744 ret = iwl_trans_start_hw(mvm->trans);
1745 if (ret)
1746 return ret;
1747
1748 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_WOWLAN);
1749 if (ret) {
1750 IWL_ERR(mvm, "Failed to start WoWLAN firmware: %d\n", ret);
1751 goto error;
1752 }
1753
a0544272 1754 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
8ca151b5
JB
1755 if (ret)
1756 goto error;
1757
1758 /* Send phy db control command and then phy db calibration*/
1759 ret = iwl_send_phy_db_data(mvm->phy_db);
1760 if (ret)
1761 goto error;
1762
1763 ret = iwl_send_phy_cfg_cmd(mvm);
1764 if (ret)
1765 goto error;
1766
1767 /* init the fw <-> mac80211 STA mapping */
b8a85a1d 1768 for (i = 0; i < mvm->fw->ucode_capa.num_stations; i++) {
8ca151b5 1769 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
b8a85a1d
JB
1770 RCU_INIT_POINTER(mvm->fw_id_to_link_sta[i], NULL);
1771 }
8ca151b5 1772
1724fc78 1773 if (!iwl_mvm_has_new_station_api(mvm->fw)) {
2c2c3647
NE
1774 /*
1775 * Add auxiliary station for scanning.
1776 * Newer versions of this command implies that the fw uses
1777 * internal aux station for all aux activities that don't
1778 * requires a dedicated data queue.
1779 * In old version the aux station uses mac id like other
1780 * station and not lmac id
1781 */
1782 ret = iwl_mvm_add_aux_sta(mvm, MAC_INDEX_AUX);
1783 if (ret)
1784 goto error;
1785 }
8ca151b5
JB
1786
1787 return 0;
1788 error:
fcb6b92a 1789 iwl_mvm_stop_device(mvm);
8ca151b5
JB
1790 return ret;
1791}
1792
0416841d
JB
1793void iwl_mvm_rx_mfuart_notif(struct iwl_mvm *mvm,
1794 struct iwl_rx_cmd_buffer *rxb)
30269c12
CRI
1795{
1796 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1797 struct iwl_mfuart_load_notif *mfuart_notif = (void *)pkt->data;
1798
0c8d0a47
GBA
1799 IWL_DEBUG_INFO(mvm,
1800 "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
1801 le32_to_cpu(mfuart_notif->installed_ver),
1802 le32_to_cpu(mfuart_notif->external_ver),
1803 le32_to_cpu(mfuart_notif->status),
1804 le32_to_cpu(mfuart_notif->duration));
1805
19f63c53
GBA
1806 if (iwl_rx_packet_payload_len(pkt) == sizeof(*mfuart_notif))
1807 IWL_DEBUG_INFO(mvm,
0c8d0a47 1808 "MFUART: image size: 0x%08x\n",
19f63c53 1809 le32_to_cpu(mfuart_notif->image_size));
30269c12 1810}