1 /****************************************************************************** 2 * 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * GPL LICENSE SUMMARY 7 * 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH 10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 11 * Copyright(c) 2018 - 2019 Intel Corporation 12 * 13 * This program is free software; you can redistribute it and/or modify 14 * it under the terms of version 2 of the GNU General Public License as 15 * published by the Free Software Foundation. 16 * 17 * This program is distributed in the hope that it will be useful, but 18 * WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * General Public License for more details. 21 * 22 * The full GNU General Public License is included in this distribution 23 * in the file called COPYING. 24 * 25 * Contact Information: 26 * Intel Linux Wireless <linuxwifi@intel.com> 27 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 28 * 29 * BSD LICENSE 30 * 31 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. 32 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH 33 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 34 * Copyright(c) 2018 - 2019 Intel Corporation 35 * All rights reserved. 36 * 37 * Redistribution and use in source and binary forms, with or without 38 * modification, are permitted provided that the following conditions 39 * are met: 40 * 41 * * Redistributions of source code must retain the above copyright 42 * notice, this list of conditions and the following disclaimer. 43 * * Redistributions in binary form must reproduce the above copyright 44 * notice, this list of conditions and the following disclaimer in 45 * the documentation and/or other materials provided with the 46 * distribution. 47 * * Neither the name Intel Corporation nor the names of its 48 * contributors may be used to endorse or promote products derived 49 * from this software without specific prior written permission. 50 * 51 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 52 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 53 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 54 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 55 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 56 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 57 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 58 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 59 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 60 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 61 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 62 * 63 *****************************************************************************/ 64 #include <net/mac80211.h> 65 #include <linux/netdevice.h> 66 67 #include "iwl-trans.h" 68 #include "iwl-op-mode.h" 69 #include "fw/img.h" 70 #include "iwl-debug.h" 71 #include "iwl-csr.h" /* for iwl_mvm_rx_card_state_notif */ 72 #include "iwl-io.h" /* for iwl_mvm_rx_card_state_notif */ 73 #include "iwl-prph.h" 74 #include "fw/acpi.h" 75 76 #include "mvm.h" 77 #include "fw/dbg.h" 78 #include "iwl-phy-db.h" 79 #include "iwl-modparams.h" 80 #include "iwl-nvm-parse.h" 81 82 #define MVM_UCODE_ALIVE_TIMEOUT HZ 83 #define MVM_UCODE_CALIB_TIMEOUT (2*HZ) 84 85 #define UCODE_VALID_OK cpu_to_le32(0x1) 86 87 struct iwl_mvm_alive_data { 88 bool valid; 89 u32 scd_base_addr; 90 }; 91 92 static int iwl_send_tx_ant_cfg(struct iwl_mvm *mvm, u8 valid_tx_ant) 93 { 94 struct iwl_tx_ant_cfg_cmd tx_ant_cmd = { 95 .valid = cpu_to_le32(valid_tx_ant), 96 }; 97 98 IWL_DEBUG_FW(mvm, "select valid tx ant: %u\n", valid_tx_ant); 99 return iwl_mvm_send_cmd_pdu(mvm, TX_ANT_CONFIGURATION_CMD, 0, 100 sizeof(tx_ant_cmd), &tx_ant_cmd); 101 } 102 103 static int iwl_send_rss_cfg_cmd(struct iwl_mvm *mvm) 104 { 105 int i; 106 struct iwl_rss_config_cmd cmd = { 107 .flags = cpu_to_le32(IWL_RSS_ENABLE), 108 .hash_mask = BIT(IWL_RSS_HASH_TYPE_IPV4_TCP) | 109 BIT(IWL_RSS_HASH_TYPE_IPV4_UDP) | 110 BIT(IWL_RSS_HASH_TYPE_IPV4_PAYLOAD) | 111 BIT(IWL_RSS_HASH_TYPE_IPV6_TCP) | 112 BIT(IWL_RSS_HASH_TYPE_IPV6_UDP) | 113 BIT(IWL_RSS_HASH_TYPE_IPV6_PAYLOAD), 114 }; 115 116 if (mvm->trans->num_rx_queues == 1) 117 return 0; 118 119 /* Do not direct RSS traffic to Q 0 which is our fallback queue */ 120 for (i = 0; i < ARRAY_SIZE(cmd.indirection_table); i++) 121 cmd.indirection_table[i] = 122 1 + (i % (mvm->trans->num_rx_queues - 1)); 123 netdev_rss_key_fill(cmd.secret_key, sizeof(cmd.secret_key)); 124 125 return iwl_mvm_send_cmd_pdu(mvm, RSS_CONFIG_CMD, 0, sizeof(cmd), &cmd); 126 } 127 128 static int iwl_configure_rxq(struct iwl_mvm *mvm) 129 { 130 int i, num_queues, size, ret; 131 struct iwl_rfh_queue_config *cmd; 132 struct iwl_host_cmd hcmd = { 133 .id = WIDE_ID(DATA_PATH_GROUP, RFH_QUEUE_CONFIG_CMD), 134 .dataflags[0] = IWL_HCMD_DFL_NOCOPY, 135 }; 136 137 /* Do not configure default queue, it is configured via context info */ 138 num_queues = mvm->trans->num_rx_queues - 1; 139 140 size = struct_size(cmd, data, num_queues); 141 142 cmd = kzalloc(size, GFP_KERNEL); 143 if (!cmd) 144 return -ENOMEM; 145 146 cmd->num_queues = num_queues; 147 148 for (i = 0; i < num_queues; i++) { 149 struct iwl_trans_rxq_dma_data data; 150 151 cmd->data[i].q_num = i + 1; 152 iwl_trans_get_rxq_dma_data(mvm->trans, i + 1, &data); 153 154 cmd->data[i].fr_bd_cb = cpu_to_le64(data.fr_bd_cb); 155 cmd->data[i].urbd_stts_wrptr = 156 cpu_to_le64(data.urbd_stts_wrptr); 157 cmd->data[i].ur_bd_cb = cpu_to_le64(data.ur_bd_cb); 158 cmd->data[i].fr_bd_wid = cpu_to_le32(data.fr_bd_wid); 159 } 160 161 hcmd.data[0] = cmd; 162 hcmd.len[0] = size; 163 164 ret = iwl_mvm_send_cmd(mvm, &hcmd); 165 166 kfree(cmd); 167 168 return ret; 169 } 170 171 static int iwl_mvm_send_dqa_cmd(struct iwl_mvm *mvm) 172 { 173 struct iwl_dqa_enable_cmd dqa_cmd = { 174 .cmd_queue = cpu_to_le32(IWL_MVM_DQA_CMD_QUEUE), 175 }; 176 u32 cmd_id = iwl_cmd_id(DQA_ENABLE_CMD, DATA_PATH_GROUP, 0); 177 int ret; 178 179 ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, sizeof(dqa_cmd), &dqa_cmd); 180 if (ret) 181 IWL_ERR(mvm, "Failed to send DQA enabling command: %d\n", ret); 182 else 183 IWL_DEBUG_FW(mvm, "Working in DQA mode\n"); 184 185 return ret; 186 } 187 188 void iwl_mvm_mfu_assert_dump_notif(struct iwl_mvm *mvm, 189 struct iwl_rx_cmd_buffer *rxb) 190 { 191 struct iwl_rx_packet *pkt = rxb_addr(rxb); 192 struct iwl_mfu_assert_dump_notif *mfu_dump_notif = (void *)pkt->data; 193 __le32 *dump_data = mfu_dump_notif->data; 194 int n_words = le32_to_cpu(mfu_dump_notif->data_size) / sizeof(__le32); 195 int i; 196 197 if (mfu_dump_notif->index_num == 0) 198 IWL_INFO(mvm, "MFUART assert id 0x%x occurred\n", 199 le32_to_cpu(mfu_dump_notif->assert_id)); 200 201 for (i = 0; i < n_words; i++) 202 IWL_DEBUG_INFO(mvm, 203 "MFUART assert dump, dword %u: 0x%08x\n", 204 le16_to_cpu(mfu_dump_notif->index_num) * 205 n_words + i, 206 le32_to_cpu(dump_data[i])); 207 } 208 209 static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait, 210 struct iwl_rx_packet *pkt, void *data) 211 { 212 struct iwl_mvm *mvm = 213 container_of(notif_wait, struct iwl_mvm, notif_wait); 214 struct iwl_mvm_alive_data *alive_data = data; 215 struct mvm_alive_resp_v3 *palive3; 216 struct mvm_alive_resp *palive; 217 struct iwl_umac_alive *umac; 218 struct iwl_lmac_alive *lmac1; 219 struct iwl_lmac_alive *lmac2 = NULL; 220 u16 status; 221 u32 lmac_error_event_table, umac_error_event_table; 222 223 if (iwl_rx_packet_payload_len(pkt) == sizeof(*palive)) { 224 palive = (void *)pkt->data; 225 umac = &palive->umac_data; 226 lmac1 = &palive->lmac_data[0]; 227 lmac2 = &palive->lmac_data[1]; 228 status = le16_to_cpu(palive->status); 229 } else { 230 palive3 = (void *)pkt->data; 231 umac = &palive3->umac_data; 232 lmac1 = &palive3->lmac_data; 233 status = le16_to_cpu(palive3->status); 234 } 235 236 lmac_error_event_table = 237 le32_to_cpu(lmac1->dbg_ptrs.error_event_table_ptr); 238 iwl_fw_lmac1_set_alive_err_table(mvm->trans, lmac_error_event_table); 239 240 if (lmac2) 241 mvm->trans->dbg.lmac_error_event_table[1] = 242 le32_to_cpu(lmac2->dbg_ptrs.error_event_table_ptr); 243 244 umac_error_event_table = le32_to_cpu(umac->dbg_ptrs.error_info_addr); 245 246 if (!umac_error_event_table) { 247 mvm->support_umac_log = false; 248 } else if (umac_error_event_table >= 249 mvm->trans->cfg->min_umac_error_event_table) { 250 mvm->support_umac_log = true; 251 } else { 252 IWL_ERR(mvm, 253 "Not valid error log pointer 0x%08X for %s uCode\n", 254 umac_error_event_table, 255 (mvm->fwrt.cur_fw_img == IWL_UCODE_INIT) ? 256 "Init" : "RT"); 257 mvm->support_umac_log = false; 258 } 259 260 if (mvm->support_umac_log) 261 iwl_fw_umac_set_alive_err_table(mvm->trans, 262 umac_error_event_table); 263 264 alive_data->scd_base_addr = le32_to_cpu(lmac1->dbg_ptrs.scd_base_ptr); 265 alive_data->valid = status == IWL_ALIVE_STATUS_OK; 266 267 IWL_DEBUG_FW(mvm, 268 "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n", 269 status, lmac1->ver_type, lmac1->ver_subtype); 270 271 if (lmac2) 272 IWL_DEBUG_FW(mvm, "Alive ucode CDB\n"); 273 274 IWL_DEBUG_FW(mvm, 275 "UMAC version: Major - 0x%x, Minor - 0x%x\n", 276 le32_to_cpu(umac->umac_major), 277 le32_to_cpu(umac->umac_minor)); 278 279 iwl_fwrt_update_fw_versions(&mvm->fwrt, lmac1, umac); 280 281 return true; 282 } 283 284 static bool iwl_wait_init_complete(struct iwl_notif_wait_data *notif_wait, 285 struct iwl_rx_packet *pkt, void *data) 286 { 287 WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF); 288 289 return true; 290 } 291 292 static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data *notif_wait, 293 struct iwl_rx_packet *pkt, void *data) 294 { 295 struct iwl_phy_db *phy_db = data; 296 297 if (pkt->hdr.cmd != CALIB_RES_NOTIF_PHY_DB) { 298 WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF); 299 return true; 300 } 301 302 WARN_ON(iwl_phy_db_set_section(phy_db, pkt)); 303 304 return false; 305 } 306 307 static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm *mvm, 308 enum iwl_ucode_type ucode_type) 309 { 310 struct iwl_notification_wait alive_wait; 311 struct iwl_mvm_alive_data alive_data = {}; 312 const struct fw_img *fw; 313 int ret; 314 enum iwl_ucode_type old_type = mvm->fwrt.cur_fw_img; 315 static const u16 alive_cmd[] = { MVM_ALIVE }; 316 bool run_in_rfkill = 317 ucode_type == IWL_UCODE_INIT || iwl_mvm_has_unified_ucode(mvm); 318 319 if (ucode_type == IWL_UCODE_REGULAR && 320 iwl_fw_dbg_conf_usniffer(mvm->fw, FW_DBG_START_FROM_ALIVE) && 321 !(fw_has_capa(&mvm->fw->ucode_capa, 322 IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED))) 323 fw = iwl_get_ucode_image(mvm->fw, IWL_UCODE_REGULAR_USNIFFER); 324 else 325 fw = iwl_get_ucode_image(mvm->fw, ucode_type); 326 if (WARN_ON(!fw)) 327 return -EINVAL; 328 iwl_fw_set_current_image(&mvm->fwrt, ucode_type); 329 clear_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status); 330 331 iwl_init_notification_wait(&mvm->notif_wait, &alive_wait, 332 alive_cmd, ARRAY_SIZE(alive_cmd), 333 iwl_alive_fn, &alive_data); 334 335 /* 336 * We want to load the INIT firmware even in RFKILL 337 * For the unified firmware case, the ucode_type is not 338 * INIT, but we still need to run it. 339 */ 340 ret = iwl_trans_start_fw(mvm->trans, fw, run_in_rfkill); 341 if (ret) { 342 iwl_fw_set_current_image(&mvm->fwrt, old_type); 343 iwl_remove_notification(&mvm->notif_wait, &alive_wait); 344 return ret; 345 } 346 347 /* 348 * Some things may run in the background now, but we 349 * just wait for the ALIVE notification here. 350 */ 351 ret = iwl_wait_notification(&mvm->notif_wait, &alive_wait, 352 MVM_UCODE_ALIVE_TIMEOUT); 353 if (ret) { 354 struct iwl_trans *trans = mvm->trans; 355 356 if (ret == -ETIMEDOUT) 357 iwl_fw_dbg_error_collect(&mvm->fwrt, 358 FW_DBG_TRIGGER_ALIVE_TIMEOUT); 359 360 if (trans->cfg->device_family >= IWL_DEVICE_FAMILY_22000) 361 IWL_ERR(mvm, 362 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n", 363 iwl_read_umac_prph(trans, UMAG_SB_CPU_1_STATUS), 364 iwl_read_umac_prph(trans, 365 UMAG_SB_CPU_2_STATUS)); 366 else if (trans->cfg->device_family >= IWL_DEVICE_FAMILY_8000) 367 IWL_ERR(mvm, 368 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n", 369 iwl_read_prph(trans, SB_CPU_1_STATUS), 370 iwl_read_prph(trans, SB_CPU_2_STATUS)); 371 iwl_fw_set_current_image(&mvm->fwrt, old_type); 372 return ret; 373 } 374 375 if (!alive_data.valid) { 376 IWL_ERR(mvm, "Loaded ucode is not valid!\n"); 377 iwl_fw_set_current_image(&mvm->fwrt, old_type); 378 return -EIO; 379 } 380 381 iwl_trans_fw_alive(mvm->trans, alive_data.scd_base_addr); 382 383 /* 384 * Note: all the queues are enabled as part of the interface 385 * initialization, but in firmware restart scenarios they 386 * could be stopped, so wake them up. In firmware restart, 387 * mac80211 will have the queues stopped as well until the 388 * reconfiguration completes. During normal startup, they 389 * will be empty. 390 */ 391 392 memset(&mvm->queue_info, 0, sizeof(mvm->queue_info)); 393 /* 394 * Set a 'fake' TID for the command queue, since we use the 395 * hweight() of the tid_bitmap as a refcount now. Not that 396 * we ever even consider the command queue as one we might 397 * want to reuse, but be safe nevertheless. 398 */ 399 mvm->queue_info[IWL_MVM_DQA_CMD_QUEUE].tid_bitmap = 400 BIT(IWL_MAX_TID_COUNT + 2); 401 402 set_bit(IWL_MVM_STATUS_FIRMWARE_RUNNING, &mvm->status); 403 #ifdef CONFIG_IWLWIFI_DEBUGFS 404 iwl_fw_set_dbg_rec_on(&mvm->fwrt); 405 #endif 406 407 return 0; 408 } 409 410 static int iwl_run_unified_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm) 411 { 412 struct iwl_notification_wait init_wait; 413 struct iwl_nvm_access_complete_cmd nvm_complete = {}; 414 struct iwl_init_extended_cfg_cmd init_cfg = { 415 .init_flags = cpu_to_le32(BIT(IWL_INIT_NVM)), 416 }; 417 static const u16 init_complete[] = { 418 INIT_COMPLETE_NOTIF, 419 }; 420 int ret; 421 422 lockdep_assert_held(&mvm->mutex); 423 424 mvm->rfkill_safe_init_done = false; 425 426 iwl_init_notification_wait(&mvm->notif_wait, 427 &init_wait, 428 init_complete, 429 ARRAY_SIZE(init_complete), 430 iwl_wait_init_complete, 431 NULL); 432 433 iwl_fw_dbg_apply_point(&mvm->fwrt, IWL_FW_INI_APPLY_EARLY); 434 435 /* Will also start the device */ 436 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR); 437 if (ret) { 438 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret); 439 goto error; 440 } 441 iwl_fw_dbg_apply_point(&mvm->fwrt, IWL_FW_INI_APPLY_AFTER_ALIVE); 442 443 /* Send init config command to mark that we are sending NVM access 444 * commands 445 */ 446 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(SYSTEM_GROUP, 447 INIT_EXTENDED_CFG_CMD), 448 CMD_SEND_IN_RFKILL, 449 sizeof(init_cfg), &init_cfg); 450 if (ret) { 451 IWL_ERR(mvm, "Failed to run init config command: %d\n", 452 ret); 453 goto error; 454 } 455 456 /* Load NVM to NIC if needed */ 457 if (mvm->nvm_file_name) { 458 iwl_read_external_nvm(mvm->trans, mvm->nvm_file_name, 459 mvm->nvm_sections); 460 iwl_mvm_load_nvm_to_nic(mvm); 461 } 462 463 if (IWL_MVM_PARSE_NVM && read_nvm) { 464 ret = iwl_nvm_init(mvm); 465 if (ret) { 466 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret); 467 goto error; 468 } 469 } 470 471 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(REGULATORY_AND_NVM_GROUP, 472 NVM_ACCESS_COMPLETE), 473 CMD_SEND_IN_RFKILL, 474 sizeof(nvm_complete), &nvm_complete); 475 if (ret) { 476 IWL_ERR(mvm, "Failed to run complete NVM access: %d\n", 477 ret); 478 goto error; 479 } 480 481 /* We wait for the INIT complete notification */ 482 ret = iwl_wait_notification(&mvm->notif_wait, &init_wait, 483 MVM_UCODE_ALIVE_TIMEOUT); 484 if (ret) 485 return ret; 486 487 /* Read the NVM only at driver load time, no need to do this twice */ 488 if (!IWL_MVM_PARSE_NVM && read_nvm) { 489 mvm->nvm_data = iwl_get_nvm(mvm->trans, mvm->fw); 490 if (IS_ERR(mvm->nvm_data)) { 491 ret = PTR_ERR(mvm->nvm_data); 492 mvm->nvm_data = NULL; 493 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret); 494 return ret; 495 } 496 } 497 498 mvm->rfkill_safe_init_done = true; 499 500 return 0; 501 502 error: 503 iwl_remove_notification(&mvm->notif_wait, &init_wait); 504 return ret; 505 } 506 507 static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm) 508 { 509 struct iwl_phy_cfg_cmd phy_cfg_cmd; 510 enum iwl_ucode_type ucode_type = mvm->fwrt.cur_fw_img; 511 512 /* Set parameters */ 513 phy_cfg_cmd.phy_cfg = cpu_to_le32(iwl_mvm_get_phy_config(mvm)); 514 515 /* set flags extra PHY configuration flags from the device's cfg */ 516 phy_cfg_cmd.phy_cfg |= cpu_to_le32(mvm->cfg->extra_phy_cfg_flags); 517 518 phy_cfg_cmd.calib_control.event_trigger = 519 mvm->fw->default_calib[ucode_type].event_trigger; 520 phy_cfg_cmd.calib_control.flow_trigger = 521 mvm->fw->default_calib[ucode_type].flow_trigger; 522 523 IWL_DEBUG_INFO(mvm, "Sending Phy CFG command: 0x%x\n", 524 phy_cfg_cmd.phy_cfg); 525 526 return iwl_mvm_send_cmd_pdu(mvm, PHY_CONFIGURATION_CMD, 0, 527 sizeof(phy_cfg_cmd), &phy_cfg_cmd); 528 } 529 530 int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm) 531 { 532 struct iwl_notification_wait calib_wait; 533 static const u16 init_complete[] = { 534 INIT_COMPLETE_NOTIF, 535 CALIB_RES_NOTIF_PHY_DB 536 }; 537 int ret; 538 539 if (iwl_mvm_has_unified_ucode(mvm)) 540 return iwl_run_unified_mvm_ucode(mvm, true); 541 542 lockdep_assert_held(&mvm->mutex); 543 544 mvm->rfkill_safe_init_done = false; 545 546 iwl_init_notification_wait(&mvm->notif_wait, 547 &calib_wait, 548 init_complete, 549 ARRAY_SIZE(init_complete), 550 iwl_wait_phy_db_entry, 551 mvm->phy_db); 552 553 /* Will also start the device */ 554 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_INIT); 555 if (ret) { 556 IWL_ERR(mvm, "Failed to start INIT ucode: %d\n", ret); 557 goto remove_notif; 558 } 559 560 if (mvm->cfg->device_family < IWL_DEVICE_FAMILY_8000) { 561 ret = iwl_mvm_send_bt_init_conf(mvm); 562 if (ret) 563 goto remove_notif; 564 } 565 566 /* Read the NVM only at driver load time, no need to do this twice */ 567 if (read_nvm) { 568 ret = iwl_nvm_init(mvm); 569 if (ret) { 570 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret); 571 goto remove_notif; 572 } 573 } 574 575 /* In case we read the NVM from external file, load it to the NIC */ 576 if (mvm->nvm_file_name) 577 iwl_mvm_load_nvm_to_nic(mvm); 578 579 WARN_ONCE(mvm->nvm_data->nvm_version < mvm->trans->cfg->nvm_ver, 580 "Too old NVM version (0x%0x, required = 0x%0x)", 581 mvm->nvm_data->nvm_version, mvm->trans->cfg->nvm_ver); 582 583 /* 584 * abort after reading the nvm in case RF Kill is on, we will complete 585 * the init seq later when RF kill will switch to off 586 */ 587 if (iwl_mvm_is_radio_hw_killed(mvm)) { 588 IWL_DEBUG_RF_KILL(mvm, 589 "jump over all phy activities due to RF kill\n"); 590 goto remove_notif; 591 } 592 593 mvm->rfkill_safe_init_done = true; 594 595 /* Send TX valid antennas before triggering calibrations */ 596 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm)); 597 if (ret) 598 goto remove_notif; 599 600 ret = iwl_send_phy_cfg_cmd(mvm); 601 if (ret) { 602 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n", 603 ret); 604 goto remove_notif; 605 } 606 607 /* 608 * Some things may run in the background now, but we 609 * just wait for the calibration complete notification. 610 */ 611 ret = iwl_wait_notification(&mvm->notif_wait, &calib_wait, 612 MVM_UCODE_CALIB_TIMEOUT); 613 if (!ret) 614 goto out; 615 616 if (iwl_mvm_is_radio_hw_killed(mvm)) { 617 IWL_DEBUG_RF_KILL(mvm, "RFKILL while calibrating.\n"); 618 ret = 0; 619 } else { 620 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n", 621 ret); 622 } 623 624 goto out; 625 626 remove_notif: 627 iwl_remove_notification(&mvm->notif_wait, &calib_wait); 628 out: 629 mvm->rfkill_safe_init_done = false; 630 if (iwlmvm_mod_params.init_dbg && !mvm->nvm_data) { 631 /* we want to debug INIT and we have no NVM - fake */ 632 mvm->nvm_data = kzalloc(sizeof(struct iwl_nvm_data) + 633 sizeof(struct ieee80211_channel) + 634 sizeof(struct ieee80211_rate), 635 GFP_KERNEL); 636 if (!mvm->nvm_data) 637 return -ENOMEM; 638 mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels; 639 mvm->nvm_data->bands[0].n_channels = 1; 640 mvm->nvm_data->bands[0].n_bitrates = 1; 641 mvm->nvm_data->bands[0].bitrates = 642 (void *)mvm->nvm_data->channels + 1; 643 mvm->nvm_data->bands[0].bitrates->hw_value = 10; 644 } 645 646 return ret; 647 } 648 649 static int iwl_mvm_config_ltr(struct iwl_mvm *mvm) 650 { 651 struct iwl_ltr_config_cmd cmd = { 652 .flags = cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE), 653 }; 654 655 if (!mvm->trans->ltr_enabled) 656 return 0; 657 658 return iwl_mvm_send_cmd_pdu(mvm, LTR_CONFIG, 0, 659 sizeof(cmd), &cmd); 660 } 661 662 #ifdef CONFIG_ACPI 663 static inline int iwl_mvm_sar_set_profile(struct iwl_mvm *mvm, 664 union acpi_object *table, 665 struct iwl_mvm_sar_profile *profile, 666 bool enabled) 667 { 668 int i; 669 670 profile->enabled = enabled; 671 672 for (i = 0; i < ACPI_SAR_TABLE_SIZE; i++) { 673 if ((table[i].type != ACPI_TYPE_INTEGER) || 674 (table[i].integer.value > U8_MAX)) 675 return -EINVAL; 676 677 profile->table[i] = table[i].integer.value; 678 } 679 680 return 0; 681 } 682 683 static int iwl_mvm_sar_get_wrds_table(struct iwl_mvm *mvm) 684 { 685 union acpi_object *wifi_pkg, *table, *data; 686 bool enabled; 687 int ret, tbl_rev; 688 689 data = iwl_acpi_get_object(mvm->dev, ACPI_WRDS_METHOD); 690 if (IS_ERR(data)) 691 return PTR_ERR(data); 692 693 wifi_pkg = iwl_acpi_get_wifi_pkg(mvm->dev, data, 694 ACPI_WRDS_WIFI_DATA_SIZE, &tbl_rev); 695 if (IS_ERR(wifi_pkg) || tbl_rev != 0) { 696 ret = PTR_ERR(wifi_pkg); 697 goto out_free; 698 } 699 700 if (wifi_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) { 701 ret = -EINVAL; 702 goto out_free; 703 } 704 705 enabled = !!(wifi_pkg->package.elements[1].integer.value); 706 707 /* position of the actual table */ 708 table = &wifi_pkg->package.elements[2]; 709 710 /* The profile from WRDS is officially profile 1, but goes 711 * into sar_profiles[0] (because we don't have a profile 0). 712 */ 713 ret = iwl_mvm_sar_set_profile(mvm, table, &mvm->sar_profiles[0], 714 enabled); 715 out_free: 716 kfree(data); 717 return ret; 718 } 719 720 static int iwl_mvm_sar_get_ewrd_table(struct iwl_mvm *mvm) 721 { 722 union acpi_object *wifi_pkg, *data; 723 bool enabled; 724 int i, n_profiles, ret, tbl_rev; 725 726 data = iwl_acpi_get_object(mvm->dev, ACPI_EWRD_METHOD); 727 if (IS_ERR(data)) 728 return PTR_ERR(data); 729 730 wifi_pkg = iwl_acpi_get_wifi_pkg(mvm->dev, data, 731 ACPI_EWRD_WIFI_DATA_SIZE, &tbl_rev); 732 if (IS_ERR(wifi_pkg) || tbl_rev != 0) { 733 ret = PTR_ERR(wifi_pkg); 734 goto out_free; 735 } 736 737 if ((wifi_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) || 738 (wifi_pkg->package.elements[2].type != ACPI_TYPE_INTEGER)) { 739 ret = -EINVAL; 740 goto out_free; 741 } 742 743 enabled = !!(wifi_pkg->package.elements[1].integer.value); 744 n_profiles = wifi_pkg->package.elements[2].integer.value; 745 746 /* 747 * Check the validity of n_profiles. The EWRD profiles start 748 * from index 1, so the maximum value allowed here is 749 * ACPI_SAR_PROFILES_NUM - 1. 750 */ 751 if (n_profiles <= 0 || n_profiles >= ACPI_SAR_PROFILE_NUM) { 752 ret = -EINVAL; 753 goto out_free; 754 } 755 756 for (i = 0; i < n_profiles; i++) { 757 /* the tables start at element 3 */ 758 static int pos = 3; 759 760 /* The EWRD profiles officially go from 2 to 4, but we 761 * save them in sar_profiles[1-3] (because we don't 762 * have profile 0). So in the array we start from 1. 763 */ 764 ret = iwl_mvm_sar_set_profile(mvm, 765 &wifi_pkg->package.elements[pos], 766 &mvm->sar_profiles[i + 1], 767 enabled); 768 if (ret < 0) 769 break; 770 771 /* go to the next table */ 772 pos += ACPI_SAR_TABLE_SIZE; 773 } 774 775 out_free: 776 kfree(data); 777 return ret; 778 } 779 780 static int iwl_mvm_sar_get_wgds_table(struct iwl_mvm *mvm) 781 { 782 union acpi_object *wifi_pkg, *data; 783 int i, j, ret, tbl_rev; 784 int idx = 1; 785 786 data = iwl_acpi_get_object(mvm->dev, ACPI_WGDS_METHOD); 787 if (IS_ERR(data)) 788 return PTR_ERR(data); 789 790 wifi_pkg = iwl_acpi_get_wifi_pkg(mvm->dev, data, 791 ACPI_WGDS_WIFI_DATA_SIZE, &tbl_rev); 792 if (IS_ERR(wifi_pkg) || tbl_rev > 1) { 793 ret = PTR_ERR(wifi_pkg); 794 goto out_free; 795 } 796 797 mvm->geo_rev = tbl_rev; 798 for (i = 0; i < ACPI_NUM_GEO_PROFILES; i++) { 799 for (j = 0; j < ACPI_GEO_TABLE_SIZE; j++) { 800 union acpi_object *entry; 801 802 entry = &wifi_pkg->package.elements[idx++]; 803 if ((entry->type != ACPI_TYPE_INTEGER) || 804 (entry->integer.value > U8_MAX)) { 805 ret = -EINVAL; 806 goto out_free; 807 } 808 809 mvm->geo_profiles[i].values[j] = entry->integer.value; 810 } 811 } 812 ret = 0; 813 out_free: 814 kfree(data); 815 return ret; 816 } 817 818 int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b) 819 { 820 union { 821 struct iwl_dev_tx_power_cmd v5; 822 struct iwl_dev_tx_power_cmd_v4 v4; 823 } cmd; 824 int i, j, idx; 825 int profs[ACPI_SAR_NUM_CHAIN_LIMITS] = { prof_a, prof_b }; 826 int len; 827 828 BUILD_BUG_ON(ACPI_SAR_NUM_CHAIN_LIMITS < 2); 829 BUILD_BUG_ON(ACPI_SAR_NUM_CHAIN_LIMITS * ACPI_SAR_NUM_SUB_BANDS != 830 ACPI_SAR_TABLE_SIZE); 831 832 cmd.v5.v3.set_mode = cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS); 833 834 if (fw_has_api(&mvm->fw->ucode_capa, 835 IWL_UCODE_TLV_API_REDUCE_TX_POWER)) 836 len = sizeof(cmd.v5); 837 else if (fw_has_capa(&mvm->fw->ucode_capa, 838 IWL_UCODE_TLV_CAPA_TX_POWER_ACK)) 839 len = sizeof(cmd.v4); 840 else 841 len = sizeof(cmd.v4.v3); 842 843 for (i = 0; i < ACPI_SAR_NUM_CHAIN_LIMITS; i++) { 844 struct iwl_mvm_sar_profile *prof; 845 846 /* don't allow SAR to be disabled (profile 0 means disable) */ 847 if (profs[i] == 0) 848 return -EPERM; 849 850 /* we are off by one, so allow up to ACPI_SAR_PROFILE_NUM */ 851 if (profs[i] > ACPI_SAR_PROFILE_NUM) 852 return -EINVAL; 853 854 /* profiles go from 1 to 4, so decrement to access the array */ 855 prof = &mvm->sar_profiles[profs[i] - 1]; 856 857 /* if the profile is disabled, do nothing */ 858 if (!prof->enabled) { 859 IWL_DEBUG_RADIO(mvm, "SAR profile %d is disabled.\n", 860 profs[i]); 861 /* if one of the profiles is disabled, we fail all */ 862 return -ENOENT; 863 } 864 865 IWL_DEBUG_INFO(mvm, 866 "SAR EWRD: chain %d profile index %d\n", 867 i, profs[i]); 868 IWL_DEBUG_RADIO(mvm, " Chain[%d]:\n", i); 869 for (j = 0; j < ACPI_SAR_NUM_SUB_BANDS; j++) { 870 idx = (i * ACPI_SAR_NUM_SUB_BANDS) + j; 871 cmd.v5.v3.per_chain_restriction[i][j] = 872 cpu_to_le16(prof->table[idx]); 873 IWL_DEBUG_RADIO(mvm, " Band[%d] = %d * .125dBm\n", 874 j, prof->table[idx]); 875 } 876 } 877 878 IWL_DEBUG_RADIO(mvm, "Sending REDUCE_TX_POWER_CMD per chain\n"); 879 880 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, len, &cmd); 881 } 882 883 int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm) 884 { 885 struct iwl_geo_tx_power_profiles_resp *resp; 886 int ret; 887 u16 len; 888 void *data; 889 struct iwl_geo_tx_power_profiles_cmd geo_cmd; 890 struct iwl_geo_tx_power_profiles_cmd_v1 geo_cmd_v1; 891 struct iwl_host_cmd cmd; 892 893 if (fw_has_api(&mvm->fw->ucode_capa, IWL_UCODE_TLV_API_SAR_TABLE_VER)) { 894 geo_cmd.ops = 895 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE); 896 len = sizeof(geo_cmd); 897 data = &geo_cmd; 898 } else { 899 geo_cmd_v1.ops = 900 cpu_to_le32(IWL_PER_CHAIN_OFFSET_GET_CURRENT_TABLE); 901 len = sizeof(geo_cmd_v1); 902 data = &geo_cmd_v1; 903 } 904 905 cmd = (struct iwl_host_cmd){ 906 .id = WIDE_ID(PHY_OPS_GROUP, GEO_TX_POWER_LIMIT), 907 .len = { len, }, 908 .flags = CMD_WANT_SKB, 909 .data = { data }, 910 }; 911 912 ret = iwl_mvm_send_cmd(mvm, &cmd); 913 if (ret) { 914 IWL_ERR(mvm, "Failed to get geographic profile info %d\n", ret); 915 return ret; 916 } 917 918 resp = (void *)cmd.resp_pkt->data; 919 ret = le32_to_cpu(resp->profile_idx); 920 if (WARN_ON(ret > ACPI_NUM_GEO_PROFILES)) { 921 ret = -EIO; 922 IWL_WARN(mvm, "Invalid geographic profile idx (%d)\n", ret); 923 } 924 925 iwl_free_resp(&cmd); 926 return ret; 927 } 928 929 static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm) 930 { 931 struct iwl_geo_tx_power_profiles_cmd cmd = { 932 .ops = cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES), 933 }; 934 int ret, i, j; 935 u16 cmd_wide_id = WIDE_ID(PHY_OPS_GROUP, GEO_TX_POWER_LIMIT); 936 937 /* 938 * This command is not supported on earlier firmware versions. 939 * Unfortunately, we don't have a TLV API flag to rely on, so 940 * rely on the major version which is in the first byte of 941 * ucode_ver. 942 */ 943 if (IWL_UCODE_SERIAL(mvm->fw->ucode_ver) < 41) 944 return 0; 945 946 ret = iwl_mvm_sar_get_wgds_table(mvm); 947 if (ret < 0) { 948 IWL_DEBUG_RADIO(mvm, 949 "Geo SAR BIOS table invalid or unavailable. (%d)\n", 950 ret); 951 /* we don't fail if the table is not available */ 952 return 0; 953 } 954 955 IWL_DEBUG_RADIO(mvm, "Sending GEO_TX_POWER_LIMIT\n"); 956 957 BUILD_BUG_ON(ACPI_NUM_GEO_PROFILES * ACPI_WGDS_NUM_BANDS * 958 ACPI_WGDS_TABLE_SIZE + 1 != ACPI_WGDS_WIFI_DATA_SIZE); 959 960 BUILD_BUG_ON(ACPI_NUM_GEO_PROFILES > IWL_NUM_GEO_PROFILES); 961 962 for (i = 0; i < ACPI_NUM_GEO_PROFILES; i++) { 963 struct iwl_per_chain_offset *chain = 964 (struct iwl_per_chain_offset *)&cmd.table[i]; 965 966 for (j = 0; j < ACPI_WGDS_NUM_BANDS; j++) { 967 u8 *value; 968 969 value = &mvm->geo_profiles[i].values[j * 970 ACPI_GEO_PER_CHAIN_SIZE]; 971 chain[j].max_tx_power = cpu_to_le16(value[0]); 972 chain[j].chain_a = value[1]; 973 chain[j].chain_b = value[2]; 974 IWL_DEBUG_RADIO(mvm, 975 "SAR geographic profile[%d] Band[%d]: chain A = %d chain B = %d max_tx_power = %d\n", 976 i, j, value[1], value[2], value[0]); 977 } 978 } 979 980 cmd.table_revision = cpu_to_le32(mvm->geo_rev); 981 982 if (!fw_has_api(&mvm->fw->ucode_capa, 983 IWL_UCODE_TLV_API_SAR_TABLE_VER)) { 984 return iwl_mvm_send_cmd_pdu(mvm, cmd_wide_id, 0, 985 sizeof(struct iwl_geo_tx_power_profiles_cmd_v1), 986 &cmd); 987 } 988 989 return iwl_mvm_send_cmd_pdu(mvm, cmd_wide_id, 0, sizeof(cmd), &cmd); 990 } 991 992 #else /* CONFIG_ACPI */ 993 static int iwl_mvm_sar_get_wrds_table(struct iwl_mvm *mvm) 994 { 995 return -ENOENT; 996 } 997 998 static int iwl_mvm_sar_get_ewrd_table(struct iwl_mvm *mvm) 999 { 1000 return -ENOENT; 1001 } 1002 1003 static int iwl_mvm_sar_get_wgds_table(struct iwl_mvm *mvm) 1004 { 1005 return -ENOENT; 1006 } 1007 1008 static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm) 1009 { 1010 return 0; 1011 } 1012 1013 int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, 1014 int prof_b) 1015 { 1016 return -ENOENT; 1017 } 1018 1019 int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm) 1020 { 1021 return -ENOENT; 1022 } 1023 #endif /* CONFIG_ACPI */ 1024 1025 void iwl_mvm_send_recovery_cmd(struct iwl_mvm *mvm, u32 flags) 1026 { 1027 u32 error_log_size = mvm->fw->ucode_capa.error_log_size; 1028 int ret; 1029 u32 resp; 1030 1031 struct iwl_fw_error_recovery_cmd recovery_cmd = { 1032 .flags = cpu_to_le32(flags), 1033 .buf_size = 0, 1034 }; 1035 struct iwl_host_cmd host_cmd = { 1036 .id = WIDE_ID(SYSTEM_GROUP, FW_ERROR_RECOVERY_CMD), 1037 .flags = CMD_WANT_SKB, 1038 .data = {&recovery_cmd, }, 1039 .len = {sizeof(recovery_cmd), }, 1040 }; 1041 1042 /* no error log was defined in TLV */ 1043 if (!error_log_size) 1044 return; 1045 1046 if (flags & ERROR_RECOVERY_UPDATE_DB) { 1047 /* no buf was allocated while HW reset */ 1048 if (!mvm->error_recovery_buf) 1049 return; 1050 1051 host_cmd.data[1] = mvm->error_recovery_buf; 1052 host_cmd.len[1] = error_log_size; 1053 host_cmd.dataflags[1] = IWL_HCMD_DFL_NOCOPY; 1054 recovery_cmd.buf_size = cpu_to_le32(error_log_size); 1055 } 1056 1057 ret = iwl_mvm_send_cmd(mvm, &host_cmd); 1058 kfree(mvm->error_recovery_buf); 1059 mvm->error_recovery_buf = NULL; 1060 1061 if (ret) { 1062 IWL_ERR(mvm, "Failed to send recovery cmd %d\n", ret); 1063 return; 1064 } 1065 1066 /* skb respond is only relevant in ERROR_RECOVERY_UPDATE_DB */ 1067 if (flags & ERROR_RECOVERY_UPDATE_DB) { 1068 resp = le32_to_cpu(*(__le32 *)host_cmd.resp_pkt->data); 1069 if (resp) 1070 IWL_ERR(mvm, 1071 "Failed to send recovery cmd blob was invalid %d\n", 1072 resp); 1073 } 1074 } 1075 1076 static int iwl_mvm_sar_init(struct iwl_mvm *mvm) 1077 { 1078 int ret; 1079 1080 ret = iwl_mvm_sar_get_wrds_table(mvm); 1081 if (ret < 0) { 1082 IWL_DEBUG_RADIO(mvm, 1083 "WRDS SAR BIOS table invalid or unavailable. (%d)\n", 1084 ret); 1085 /* 1086 * If not available, don't fail and don't bother with EWRD. 1087 * Return 1 to tell that we can't use WGDS either. 1088 */ 1089 return 1; 1090 } 1091 1092 ret = iwl_mvm_sar_get_ewrd_table(mvm); 1093 /* if EWRD is not available, we can still use WRDS, so don't fail */ 1094 if (ret < 0) 1095 IWL_DEBUG_RADIO(mvm, 1096 "EWRD SAR BIOS table invalid or unavailable. (%d)\n", 1097 ret); 1098 1099 /* choose profile 1 (WRDS) as default for both chains */ 1100 ret = iwl_mvm_sar_select_profile(mvm, 1, 1); 1101 1102 /* 1103 * If we don't have profile 0 from BIOS, just skip it. This 1104 * means that SAR Geo will not be enabled either, even if we 1105 * have other valid profiles. 1106 */ 1107 if (ret == -ENOENT) 1108 return 1; 1109 1110 return ret; 1111 } 1112 1113 static int iwl_mvm_load_rt_fw(struct iwl_mvm *mvm) 1114 { 1115 int ret; 1116 1117 if (iwl_mvm_has_unified_ucode(mvm)) 1118 return iwl_run_unified_mvm_ucode(mvm, false); 1119 1120 ret = iwl_run_init_mvm_ucode(mvm, false); 1121 1122 if (ret) { 1123 IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret); 1124 1125 if (iwlmvm_mod_params.init_dbg) 1126 return 0; 1127 return ret; 1128 } 1129 1130 /* 1131 * Stop and start the transport without entering low power 1132 * mode. This will save the state of other components on the 1133 * device that are triggered by the INIT firwmare (MFUART). 1134 */ 1135 _iwl_trans_stop_device(mvm->trans, false); 1136 ret = _iwl_trans_start_hw(mvm->trans, false); 1137 if (ret) 1138 return ret; 1139 1140 iwl_fw_dbg_apply_point(&mvm->fwrt, IWL_FW_INI_APPLY_EARLY); 1141 1142 mvm->rfkill_safe_init_done = false; 1143 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR); 1144 if (ret) 1145 return ret; 1146 1147 mvm->rfkill_safe_init_done = true; 1148 1149 iwl_fw_dbg_apply_point(&mvm->fwrt, IWL_FW_INI_APPLY_AFTER_ALIVE); 1150 1151 return iwl_init_paging(&mvm->fwrt, mvm->fwrt.cur_fw_img); 1152 } 1153 1154 int iwl_mvm_up(struct iwl_mvm *mvm) 1155 { 1156 int ret, i; 1157 struct ieee80211_channel *chan; 1158 struct cfg80211_chan_def chandef; 1159 1160 lockdep_assert_held(&mvm->mutex); 1161 1162 ret = iwl_trans_start_hw(mvm->trans); 1163 if (ret) 1164 return ret; 1165 1166 ret = iwl_mvm_load_rt_fw(mvm); 1167 if (ret) { 1168 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret); 1169 if (ret != -ERFKILL) 1170 iwl_fw_dbg_error_collect(&mvm->fwrt, 1171 FW_DBG_TRIGGER_DRIVER); 1172 goto error; 1173 } 1174 1175 iwl_get_shared_mem_conf(&mvm->fwrt); 1176 1177 ret = iwl_mvm_sf_update(mvm, NULL, false); 1178 if (ret) 1179 IWL_ERR(mvm, "Failed to initialize Smart Fifo\n"); 1180 1181 if (!mvm->trans->dbg.ini_valid) { 1182 mvm->fwrt.dump.conf = FW_DBG_INVALID; 1183 /* if we have a destination, assume EARLY START */ 1184 if (mvm->fw->dbg.dest_tlv) 1185 mvm->fwrt.dump.conf = FW_DBG_START_FROM_ALIVE; 1186 iwl_fw_start_dbg_conf(&mvm->fwrt, FW_DBG_START_FROM_ALIVE); 1187 } 1188 1189 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm)); 1190 if (ret) 1191 goto error; 1192 1193 if (!iwl_mvm_has_unified_ucode(mvm)) { 1194 /* Send phy db control command and then phy db calibration */ 1195 ret = iwl_send_phy_db_data(mvm->phy_db); 1196 if (ret) 1197 goto error; 1198 1199 ret = iwl_send_phy_cfg_cmd(mvm); 1200 if (ret) 1201 goto error; 1202 } 1203 1204 ret = iwl_mvm_send_bt_init_conf(mvm); 1205 if (ret) 1206 goto error; 1207 1208 /* Init RSS configuration */ 1209 if (mvm->trans->cfg->device_family >= IWL_DEVICE_FAMILY_22000) { 1210 ret = iwl_configure_rxq(mvm); 1211 if (ret) { 1212 IWL_ERR(mvm, "Failed to configure RX queues: %d\n", 1213 ret); 1214 goto error; 1215 } 1216 } 1217 1218 if (iwl_mvm_has_new_rx_api(mvm)) { 1219 ret = iwl_send_rss_cfg_cmd(mvm); 1220 if (ret) { 1221 IWL_ERR(mvm, "Failed to configure RSS queues: %d\n", 1222 ret); 1223 goto error; 1224 } 1225 } 1226 1227 /* init the fw <-> mac80211 STA mapping */ 1228 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) 1229 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL); 1230 1231 mvm->tdls_cs.peer.sta_id = IWL_MVM_INVALID_STA; 1232 1233 /* reset quota debouncing buffer - 0xff will yield invalid data */ 1234 memset(&mvm->last_quota_cmd, 0xff, sizeof(mvm->last_quota_cmd)); 1235 1236 ret = iwl_mvm_send_dqa_cmd(mvm); 1237 if (ret) 1238 goto error; 1239 1240 /* Add auxiliary station for scanning */ 1241 ret = iwl_mvm_add_aux_sta(mvm); 1242 if (ret) 1243 goto error; 1244 1245 /* Add all the PHY contexts */ 1246 chan = &mvm->hw->wiphy->bands[NL80211_BAND_2GHZ]->channels[0]; 1247 cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_NO_HT); 1248 for (i = 0; i < NUM_PHY_CTX; i++) { 1249 /* 1250 * The channel used here isn't relevant as it's 1251 * going to be overwritten in the other flows. 1252 * For now use the first channel we have. 1253 */ 1254 ret = iwl_mvm_phy_ctxt_add(mvm, &mvm->phy_ctxts[i], 1255 &chandef, 1, 1); 1256 if (ret) 1257 goto error; 1258 } 1259 1260 #ifdef CONFIG_THERMAL 1261 if (iwl_mvm_is_tt_in_fw(mvm)) { 1262 /* in order to give the responsibility of ct-kill and 1263 * TX backoff to FW we need to send empty temperature reporting 1264 * cmd during init time 1265 */ 1266 iwl_mvm_send_temp_report_ths_cmd(mvm); 1267 } else { 1268 /* Initialize tx backoffs to the minimal possible */ 1269 iwl_mvm_tt_tx_backoff(mvm, 0); 1270 } 1271 1272 /* TODO: read the budget from BIOS / Platform NVM */ 1273 1274 /* 1275 * In case there is no budget from BIOS / Platform NVM the default 1276 * budget should be 2000mW (cooling state 0). 1277 */ 1278 if (iwl_mvm_is_ctdp_supported(mvm)) { 1279 ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_START, 1280 mvm->cooling_dev.cur_state); 1281 if (ret) 1282 goto error; 1283 } 1284 #else 1285 /* Initialize tx backoffs to the minimal possible */ 1286 iwl_mvm_tt_tx_backoff(mvm, 0); 1287 #endif 1288 1289 WARN_ON(iwl_mvm_config_ltr(mvm)); 1290 1291 ret = iwl_mvm_power_update_device(mvm); 1292 if (ret) 1293 goto error; 1294 1295 /* 1296 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx 1297 * anyway, so don't init MCC. 1298 */ 1299 if (!test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) { 1300 ret = iwl_mvm_init_mcc(mvm); 1301 if (ret) 1302 goto error; 1303 } 1304 1305 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) { 1306 mvm->scan_type = IWL_SCAN_TYPE_NOT_SET; 1307 mvm->hb_scan_type = IWL_SCAN_TYPE_NOT_SET; 1308 ret = iwl_mvm_config_scan(mvm); 1309 if (ret) 1310 goto error; 1311 } 1312 1313 /* allow FW/transport low power modes if not during restart */ 1314 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) 1315 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN); 1316 1317 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) 1318 iwl_mvm_send_recovery_cmd(mvm, ERROR_RECOVERY_UPDATE_DB); 1319 1320 if (iwl_acpi_get_eckv(mvm->dev, &mvm->ext_clock_valid)) 1321 IWL_DEBUG_INFO(mvm, "ECKV table doesn't exist in BIOS\n"); 1322 1323 ret = iwl_mvm_sar_init(mvm); 1324 if (ret == 0) { 1325 ret = iwl_mvm_sar_geo_init(mvm); 1326 } else if (ret > 0 && !iwl_mvm_sar_get_wgds_table(mvm)) { 1327 /* 1328 * If basic SAR is not available, we check for WGDS, 1329 * which should *not* be available either. If it is 1330 * available, issue an error, because we can't use SAR 1331 * Geo without basic SAR. 1332 */ 1333 IWL_ERR(mvm, "BIOS contains WGDS but no WRDS\n"); 1334 } 1335 1336 if (ret < 0) 1337 goto error; 1338 1339 iwl_mvm_leds_sync(mvm); 1340 1341 IWL_DEBUG_INFO(mvm, "RT uCode started.\n"); 1342 return 0; 1343 error: 1344 if (!iwlmvm_mod_params.init_dbg || !ret) 1345 iwl_mvm_stop_device(mvm); 1346 return ret; 1347 } 1348 1349 int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm) 1350 { 1351 int ret, i; 1352 1353 lockdep_assert_held(&mvm->mutex); 1354 1355 ret = iwl_trans_start_hw(mvm->trans); 1356 if (ret) 1357 return ret; 1358 1359 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_WOWLAN); 1360 if (ret) { 1361 IWL_ERR(mvm, "Failed to start WoWLAN firmware: %d\n", ret); 1362 goto error; 1363 } 1364 1365 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm)); 1366 if (ret) 1367 goto error; 1368 1369 /* Send phy db control command and then phy db calibration*/ 1370 ret = iwl_send_phy_db_data(mvm->phy_db); 1371 if (ret) 1372 goto error; 1373 1374 ret = iwl_send_phy_cfg_cmd(mvm); 1375 if (ret) 1376 goto error; 1377 1378 /* init the fw <-> mac80211 STA mapping */ 1379 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++) 1380 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL); 1381 1382 /* Add auxiliary station for scanning */ 1383 ret = iwl_mvm_add_aux_sta(mvm); 1384 if (ret) 1385 goto error; 1386 1387 return 0; 1388 error: 1389 iwl_mvm_stop_device(mvm); 1390 return ret; 1391 } 1392 1393 void iwl_mvm_rx_card_state_notif(struct iwl_mvm *mvm, 1394 struct iwl_rx_cmd_buffer *rxb) 1395 { 1396 struct iwl_rx_packet *pkt = rxb_addr(rxb); 1397 struct iwl_card_state_notif *card_state_notif = (void *)pkt->data; 1398 u32 flags = le32_to_cpu(card_state_notif->flags); 1399 1400 IWL_DEBUG_RF_KILL(mvm, "Card state received: HW:%s SW:%s CT:%s\n", 1401 (flags & HW_CARD_DISABLED) ? "Kill" : "On", 1402 (flags & SW_CARD_DISABLED) ? "Kill" : "On", 1403 (flags & CT_KILL_CARD_DISABLED) ? 1404 "Reached" : "Not reached"); 1405 } 1406 1407 void iwl_mvm_rx_mfuart_notif(struct iwl_mvm *mvm, 1408 struct iwl_rx_cmd_buffer *rxb) 1409 { 1410 struct iwl_rx_packet *pkt = rxb_addr(rxb); 1411 struct iwl_mfuart_load_notif *mfuart_notif = (void *)pkt->data; 1412 1413 IWL_DEBUG_INFO(mvm, 1414 "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n", 1415 le32_to_cpu(mfuart_notif->installed_ver), 1416 le32_to_cpu(mfuart_notif->external_ver), 1417 le32_to_cpu(mfuart_notif->status), 1418 le32_to_cpu(mfuart_notif->duration)); 1419 1420 if (iwl_rx_packet_payload_len(pkt) == sizeof(*mfuart_notif)) 1421 IWL_DEBUG_INFO(mvm, 1422 "MFUART: image size: 0x%08x\n", 1423 le32_to_cpu(mfuart_notif->image_size)); 1424 } 1425