blob: bce3cf5fab67573b4465d641f7de3192eb5de263 [file] [log] [blame]
Johannes Berg8ca151b2013-01-24 14:25:36 +01001/******************************************************************************
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 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Eran Harary8d193ca2015-04-27 10:29:31 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Golan Ben-Amibdccdb82016-11-15 14:45:29 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010011 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Berg8ca151b2013-01-24 14:25:36 +010031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Eran Harary8d193ca2015-04-27 10:29:31 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Golan Ben-Amibdccdb82016-11-15 14:45:29 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010038 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
49 * distribution.
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 *
66 *****************************************************************************/
67#include <net/mac80211.h>
Sara Sharon854d7732016-03-22 15:55:58 +020068#include <linux/netdevice.h>
Luca Coelhoda2830a2016-05-30 13:00:44 +030069#include <linux/acpi.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010070
71#include "iwl-trans.h"
72#include "iwl-op-mode.h"
73#include "iwl-fw.h"
74#include "iwl-debug.h"
75#include "iwl-csr.h" /* for iwl_mvm_rx_card_state_notif */
76#include "iwl-io.h" /* for iwl_mvm_rx_card_state_notif */
Emmanuel Grumbach8c23f952014-12-04 10:07:47 +020077#include "iwl-prph.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010078#include "iwl-eeprom-parse.h"
79
80#include "mvm.h"
Golan Ben-Ami2f89a5d2015-10-27 19:17:14 +020081#include "fw-dbg.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010082#include "iwl-phy-db.h"
83
84#define MVM_UCODE_ALIVE_TIMEOUT HZ
85#define MVM_UCODE_CALIB_TIMEOUT (2*HZ)
86
87#define UCODE_VALID_OK cpu_to_le32(0x1)
88
Johannes Berg8ca151b2013-01-24 14:25:36 +010089struct iwl_mvm_alive_data {
90 bool valid;
91 u32 scd_base_addr;
92};
93
Johannes Berg8ca151b2013-01-24 14:25:36 +010094static int iwl_send_tx_ant_cfg(struct iwl_mvm *mvm, u8 valid_tx_ant)
95{
96 struct iwl_tx_ant_cfg_cmd tx_ant_cmd = {
97 .valid = cpu_to_le32(valid_tx_ant),
98 };
99
Emmanuel Grumbach33223542013-03-09 20:38:19 +0200100 IWL_DEBUG_FW(mvm, "select valid tx ant: %u\n", valid_tx_ant);
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300101 return iwl_mvm_send_cmd_pdu(mvm, TX_ANT_CONFIGURATION_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100102 sizeof(tx_ant_cmd), &tx_ant_cmd);
103}
104
Sara Sharon43413a92015-12-31 11:49:18 +0200105static int iwl_send_rss_cfg_cmd(struct iwl_mvm *mvm)
106{
107 int i;
108 struct iwl_rss_config_cmd cmd = {
109 .flags = cpu_to_le32(IWL_RSS_ENABLE),
110 .hash_mask = IWL_RSS_HASH_TYPE_IPV4_TCP |
Sara Sharon854d7732016-03-22 15:55:58 +0200111 IWL_RSS_HASH_TYPE_IPV4_UDP |
Sara Sharon43413a92015-12-31 11:49:18 +0200112 IWL_RSS_HASH_TYPE_IPV4_PAYLOAD |
113 IWL_RSS_HASH_TYPE_IPV6_TCP |
Sara Sharon854d7732016-03-22 15:55:58 +0200114 IWL_RSS_HASH_TYPE_IPV6_UDP |
Sara Sharon43413a92015-12-31 11:49:18 +0200115 IWL_RSS_HASH_TYPE_IPV6_PAYLOAD,
116 };
117
Sara Sharonf43495f2016-05-04 14:22:10 +0300118 if (mvm->trans->num_rx_queues == 1)
119 return 0;
120
Sara Sharon854d7732016-03-22 15:55:58 +0200121 /* Do not direct RSS traffic to Q 0 which is our fallback queue */
Sara Sharon43413a92015-12-31 11:49:18 +0200122 for (i = 0; i < ARRAY_SIZE(cmd.indirection_table); i++)
Sara Sharon854d7732016-03-22 15:55:58 +0200123 cmd.indirection_table[i] =
124 1 + (i % (mvm->trans->num_rx_queues - 1));
125 netdev_rss_key_fill(cmd.secret_key, sizeof(cmd.secret_key));
Sara Sharon43413a92015-12-31 11:49:18 +0200126
127 return iwl_mvm_send_cmd_pdu(mvm, RSS_CONFIG_CMD, 0, sizeof(cmd), &cmd);
128}
129
Liad Kaufman97d5be72015-08-31 14:33:23 +0300130static int iwl_mvm_send_dqa_cmd(struct iwl_mvm *mvm)
131{
132 struct iwl_dqa_enable_cmd dqa_cmd = {
133 .cmd_queue = cpu_to_le32(IWL_MVM_DQA_CMD_QUEUE),
134 };
135 u32 cmd_id = iwl_cmd_id(DQA_ENABLE_CMD, DATA_PATH_GROUP, 0);
136 int ret;
137
138 ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, sizeof(dqa_cmd), &dqa_cmd);
139 if (ret)
140 IWL_ERR(mvm, "Failed to send DQA enabling command: %d\n", ret);
141 else
142 IWL_DEBUG_FW(mvm, "Working in DQA mode\n");
143
144 return ret;
145}
146
Matti Gottlieb905e36a2016-02-14 17:05:39 +0200147void iwl_free_fw_paging(struct iwl_mvm *mvm)
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300148{
149 int i;
150
151 if (!mvm->fw_paging_db[0].fw_paging_block)
152 return;
153
154 for (i = 0; i < NUM_OF_FW_PAGING_BLOCKS; i++) {
Emmanuel Grumbach3edbc7d2016-06-19 20:57:02 +0300155 struct iwl_fw_paging *paging = &mvm->fw_paging_db[i];
156
157 if (!paging->fw_paging_block) {
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300158 IWL_DEBUG_FW(mvm,
159 "Paging: block %d already freed, continue to next page\n",
160 i);
161
162 continue;
163 }
Emmanuel Grumbach3edbc7d2016-06-19 20:57:02 +0300164 dma_unmap_page(mvm->trans->dev, paging->fw_paging_phys,
165 paging->fw_paging_size, DMA_BIDIRECTIONAL);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300166
Emmanuel Grumbach3edbc7d2016-06-19 20:57:02 +0300167 __free_pages(paging->fw_paging_block,
168 get_order(paging->fw_paging_size));
169 paging->fw_paging_block = NULL;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300170 }
Matti Gottliebe1120182015-07-19 11:15:07 +0300171 kfree(mvm->trans->paging_download_buf);
Matti Gottlieb905e36a2016-02-14 17:05:39 +0200172 mvm->trans->paging_download_buf = NULL;
Matti Gottliebf742aaf2016-04-10 10:53:57 +0300173 mvm->trans->paging_db = NULL;
Matti Gottlieb905e36a2016-02-14 17:05:39 +0200174
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300175 memset(mvm->fw_paging_db, 0, sizeof(mvm->fw_paging_db));
176}
177
178static int iwl_fill_paging_mem(struct iwl_mvm *mvm, const struct fw_img *image)
179{
180 int sec_idx, idx;
181 u32 offset = 0;
182
183 /*
184 * find where is the paging image start point:
185 * if CPU2 exist and it's in paging format, then the image looks like:
186 * CPU1 sections (2 or more)
187 * CPU1_CPU2_SEPARATOR_SECTION delimiter - separate between CPU1 to CPU2
188 * CPU2 sections (not paged)
189 * PAGING_SEPARATOR_SECTION delimiter - separate between CPU2
190 * non paged to CPU2 paging sec
191 * CPU2 paging CSS
192 * CPU2 paging image (including instruction and data)
193 */
Sara Sharoneef187a2016-10-25 11:38:31 +0300194 for (sec_idx = 0; sec_idx < image->num_sec; sec_idx++) {
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300195 if (image->sec[sec_idx].offset == PAGING_SEPARATOR_SECTION) {
196 sec_idx++;
197 break;
198 }
199 }
200
Matti Gottliebcd47a3d2016-03-10 16:18:26 +0200201 /*
202 * If paging is enabled there should be at least 2 more sections left
203 * (one for CSS and one for Paging data)
204 */
Sara Sharoneef187a2016-10-25 11:38:31 +0300205 if (sec_idx >= image->num_sec - 1) {
Matti Gottliebcd47a3d2016-03-10 16:18:26 +0200206 IWL_ERR(mvm, "Paging: Missing CSS and/or paging sections\n");
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300207 iwl_free_fw_paging(mvm);
208 return -EINVAL;
209 }
210
211 /* copy the CSS block to the dram */
212 IWL_DEBUG_FW(mvm, "Paging: load paging CSS to FW, sec = %d\n",
213 sec_idx);
214
215 memcpy(page_address(mvm->fw_paging_db[0].fw_paging_block),
216 image->sec[sec_idx].data,
217 mvm->fw_paging_db[0].fw_paging_size);
Sara Sharon4b70f072016-11-30 16:49:11 +0200218 dma_sync_single_for_device(mvm->trans->dev,
219 mvm->fw_paging_db[0].fw_paging_phys,
220 mvm->fw_paging_db[0].fw_paging_size,
221 DMA_BIDIRECTIONAL);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300222
223 IWL_DEBUG_FW(mvm,
224 "Paging: copied %d CSS bytes to first block\n",
225 mvm->fw_paging_db[0].fw_paging_size);
226
227 sec_idx++;
228
229 /*
230 * copy the paging blocks to the dram
231 * loop index start from 1 since that CSS block already copied to dram
232 * and CSS index is 0.
233 * loop stop at num_of_paging_blk since that last block is not full.
234 */
235 for (idx = 1; idx < mvm->num_of_paging_blk; idx++) {
Sara Sharon4b70f072016-11-30 16:49:11 +0200236 struct iwl_fw_paging *block = &mvm->fw_paging_db[idx];
237
238 memcpy(page_address(block->fw_paging_block),
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300239 image->sec[sec_idx].data + offset,
Sara Sharon4b70f072016-11-30 16:49:11 +0200240 block->fw_paging_size);
241 dma_sync_single_for_device(mvm->trans->dev,
242 block->fw_paging_phys,
243 block->fw_paging_size,
244 DMA_BIDIRECTIONAL);
245
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300246
247 IWL_DEBUG_FW(mvm,
248 "Paging: copied %d paging bytes to block %d\n",
249 mvm->fw_paging_db[idx].fw_paging_size,
250 idx);
251
252 offset += mvm->fw_paging_db[idx].fw_paging_size;
253 }
254
255 /* copy the last paging block */
256 if (mvm->num_of_pages_in_last_blk > 0) {
Sara Sharon4b70f072016-11-30 16:49:11 +0200257 struct iwl_fw_paging *block = &mvm->fw_paging_db[idx];
258
259 memcpy(page_address(block->fw_paging_block),
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300260 image->sec[sec_idx].data + offset,
261 FW_PAGING_SIZE * mvm->num_of_pages_in_last_blk);
Sara Sharon4b70f072016-11-30 16:49:11 +0200262 dma_sync_single_for_device(mvm->trans->dev,
263 block->fw_paging_phys,
264 block->fw_paging_size,
265 DMA_BIDIRECTIONAL);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300266
267 IWL_DEBUG_FW(mvm,
268 "Paging: copied %d pages in the last block %d\n",
269 mvm->num_of_pages_in_last_blk, idx);
270 }
271
272 return 0;
273}
274
Golan Ben-Amibdccdb82016-11-15 14:45:29 +0200275void iwl_mvm_mfu_assert_dump_notif(struct iwl_mvm *mvm,
276 struct iwl_rx_cmd_buffer *rxb)
277{
278 struct iwl_rx_packet *pkt = rxb_addr(rxb);
279 struct iwl_mfu_assert_dump_notif *mfu_dump_notif = (void *)pkt->data;
280 __le32 *dump_data = mfu_dump_notif->data;
281 int n_words = le32_to_cpu(mfu_dump_notif->data_size) / sizeof(__le32);
282 int i;
283
284 if (mfu_dump_notif->index_num == 0)
285 IWL_INFO(mvm, "MFUART assert id 0x%x occurred\n",
286 le32_to_cpu(mfu_dump_notif->assert_id));
287
288 for (i = 0; i < n_words; i++)
289 IWL_DEBUG_INFO(mvm,
290 "MFUART assert dump, dword %u: 0x%08x\n",
291 le16_to_cpu(mfu_dump_notif->index_num) *
292 n_words + i,
293 le32_to_cpu(dump_data[i]));
294}
295
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300296static int iwl_alloc_fw_paging_mem(struct iwl_mvm *mvm,
297 const struct fw_img *image)
298{
299 struct page *block;
300 dma_addr_t phys = 0;
Sara Sharon08d785f2016-10-27 17:27:23 +0300301 int blk_idx, order, num_of_pages, size, dma_enabled;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300302
303 if (mvm->fw_paging_db[0].fw_paging_block)
304 return 0;
305
306 dma_enabled = is_device_dma_capable(mvm->trans->dev);
307
308 /* ensure BLOCK_2_EXP_SIZE is power of 2 of PAGING_BLOCK_SIZE */
309 BUILD_BUG_ON(BIT(BLOCK_2_EXP_SIZE) != PAGING_BLOCK_SIZE);
310
311 num_of_pages = image->paging_mem_size / FW_PAGING_SIZE;
Sara Sharon850fe9a2016-10-27 17:58:27 +0300312 mvm->num_of_paging_blk =
313 DIV_ROUND_UP(num_of_pages, NUM_OF_PAGE_PER_GROUP);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300314 mvm->num_of_pages_in_last_blk =
315 num_of_pages -
316 NUM_OF_PAGE_PER_GROUP * (mvm->num_of_paging_blk - 1);
317
318 IWL_DEBUG_FW(mvm,
319 "Paging: allocating mem for %d paging blocks, each block holds 8 pages, last block holds %d pages\n",
320 mvm->num_of_paging_blk,
321 mvm->num_of_pages_in_last_blk);
322
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300323 /*
Sara Sharon08d785f2016-10-27 17:27:23 +0300324 * Allocate CSS and paging blocks in dram.
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300325 */
Sara Sharon08d785f2016-10-27 17:27:23 +0300326 for (blk_idx = 0; blk_idx < mvm->num_of_paging_blk + 1; blk_idx++) {
327 /* For CSS allocate 4KB, for others PAGING_BLOCK_SIZE (32K) */
328 size = blk_idx ? PAGING_BLOCK_SIZE : FW_PAGING_SIZE;
329 order = get_order(size);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300330 block = alloc_pages(GFP_KERNEL, order);
331 if (!block) {
332 /* free all the previous pages since we failed */
333 iwl_free_fw_paging(mvm);
334 return -ENOMEM;
335 }
336
337 mvm->fw_paging_db[blk_idx].fw_paging_block = block;
Sara Sharon08d785f2016-10-27 17:27:23 +0300338 mvm->fw_paging_db[blk_idx].fw_paging_size = size;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300339
340 if (dma_enabled) {
341 phys = dma_map_page(mvm->trans->dev, block, 0,
342 PAGE_SIZE << order,
343 DMA_BIDIRECTIONAL);
344 if (dma_mapping_error(mvm->trans->dev, phys)) {
345 /*
346 * free the previous pages and the current one
347 * since we failed to map_page.
348 */
349 iwl_free_fw_paging(mvm);
350 return -ENOMEM;
351 }
352 mvm->fw_paging_db[blk_idx].fw_paging_phys = phys;
Matti Gottliebe1120182015-07-19 11:15:07 +0300353 } else {
354 mvm->fw_paging_db[blk_idx].fw_paging_phys =
355 PAGING_ADDR_SIG |
356 blk_idx << BLOCK_2_EXP_SIZE;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300357 }
358
Sara Sharon08d785f2016-10-27 17:27:23 +0300359 if (!blk_idx)
360 IWL_DEBUG_FW(mvm,
361 "Paging: allocated 4K(CSS) bytes (order %d) for firmware paging.\n",
362 order);
363 else
364 IWL_DEBUG_FW(mvm,
365 "Paging: allocated 32K bytes (order %d) for firmware paging.\n",
366 order);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300367 }
368
369 return 0;
370}
371
372static int iwl_save_fw_paging(struct iwl_mvm *mvm,
373 const struct fw_img *fw)
374{
375 int ret;
376
377 ret = iwl_alloc_fw_paging_mem(mvm, fw);
378 if (ret)
379 return ret;
380
381 return iwl_fill_paging_mem(mvm, fw);
382}
383
384/* send paging cmd to FW in case CPU2 has paging image */
385static int iwl_send_paging_cmd(struct iwl_mvm *mvm, const struct fw_img *fw)
386{
Sara Sharond975d722016-07-04 11:52:07 +0300387 struct iwl_fw_paging_cmd paging_cmd = {
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300388 .flags =
389 cpu_to_le32(PAGING_CMD_IS_SECURED |
390 PAGING_CMD_IS_ENABLED |
391 (mvm->num_of_pages_in_last_blk <<
392 PAGING_CMD_NUM_OF_PAGES_IN_LAST_GRP_POS)),
393 .block_size = cpu_to_le32(BLOCK_2_EXP_SIZE),
394 .block_num = cpu_to_le32(mvm->num_of_paging_blk),
395 };
Sara Sharond975d722016-07-04 11:52:07 +0300396 int blk_idx, size = sizeof(paging_cmd);
397
398 /* A bit hard coded - but this is the old API and will be deprecated */
399 if (!iwl_mvm_has_new_tx_api(mvm))
400 size -= NUM_OF_FW_PAGING_BLOCKS * 4;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300401
402 /* loop for for all paging blocks + CSS block */
403 for (blk_idx = 0; blk_idx < mvm->num_of_paging_blk + 1; blk_idx++) {
Sara Sharond975d722016-07-04 11:52:07 +0300404 dma_addr_t addr = mvm->fw_paging_db[blk_idx].fw_paging_phys;
405
406 addr = addr >> PAGE_2_EXP_SIZE;
407
408 if (iwl_mvm_has_new_tx_api(mvm)) {
409 __le64 phy_addr = cpu_to_le64(addr);
410
411 paging_cmd.device_phy_addr.addr64[blk_idx] = phy_addr;
412 } else {
413 __le32 phy_addr = cpu_to_le32(addr);
414
415 paging_cmd.device_phy_addr.addr32[blk_idx] = phy_addr;
416 }
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300417 }
418
419 return iwl_mvm_send_cmd_pdu(mvm, iwl_cmd_id(FW_PAGING_BLOCK_CMD,
420 IWL_ALWAYS_LONG_GROUP, 0),
Sara Sharond975d722016-07-04 11:52:07 +0300421 0, size, &paging_cmd);
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300422}
423
Matti Gottliebe1120182015-07-19 11:15:07 +0300424/*
425 * Send paging item cmd to FW in case CPU2 has paging image
426 */
427static int iwl_trans_get_paging_item(struct iwl_mvm *mvm)
428{
429 int ret;
430 struct iwl_fw_get_item_cmd fw_get_item_cmd = {
431 .item_id = cpu_to_le32(IWL_FW_ITEM_ID_PAGING),
432 };
433
434 struct iwl_fw_get_item_resp *item_resp;
435 struct iwl_host_cmd cmd = {
436 .id = iwl_cmd_id(FW_GET_ITEM_CMD, IWL_ALWAYS_LONG_GROUP, 0),
437 .flags = CMD_WANT_SKB | CMD_SEND_IN_RFKILL,
438 .data = { &fw_get_item_cmd, },
439 };
440
441 cmd.len[0] = sizeof(struct iwl_fw_get_item_cmd);
442
443 ret = iwl_mvm_send_cmd(mvm, &cmd);
444 if (ret) {
445 IWL_ERR(mvm,
446 "Paging: Failed to send FW_GET_ITEM_CMD cmd (err = %d)\n",
447 ret);
448 return ret;
449 }
450
451 item_resp = (void *)((struct iwl_rx_packet *)cmd.resp_pkt)->data;
452 if (item_resp->item_id != cpu_to_le32(IWL_FW_ITEM_ID_PAGING)) {
453 IWL_ERR(mvm,
454 "Paging: got wrong item in FW_GET_ITEM_CMD resp (item_id = %u)\n",
455 le32_to_cpu(item_resp->item_id));
456 ret = -EIO;
457 goto exit;
458 }
459
Matti Gottliebc94d7992016-03-09 10:54:10 +0200460 /* Add an extra page for headers */
461 mvm->trans->paging_download_buf = kzalloc(PAGING_BLOCK_SIZE +
462 FW_PAGING_SIZE,
Matti Gottliebe1120182015-07-19 11:15:07 +0300463 GFP_KERNEL);
464 if (!mvm->trans->paging_download_buf) {
465 ret = -ENOMEM;
466 goto exit;
467 }
468 mvm->trans->paging_req_addr = le32_to_cpu(item_resp->item_val);
469 mvm->trans->paging_db = mvm->fw_paging_db;
470 IWL_DEBUG_FW(mvm,
471 "Paging: got paging request address (paging_req_addr 0x%08x)\n",
472 mvm->trans->paging_req_addr);
473
474exit:
475 iwl_free_resp(&cmd);
476
477 return ret;
478}
479
Johannes Berg8ca151b2013-01-24 14:25:36 +0100480static bool iwl_alive_fn(struct iwl_notif_wait_data *notif_wait,
481 struct iwl_rx_packet *pkt, void *data)
482{
483 struct iwl_mvm *mvm =
484 container_of(notif_wait, struct iwl_mvm, notif_wait);
485 struct iwl_mvm_alive_data *alive_data = data;
Sara Sharon5c228d62016-11-24 13:48:27 +0200486 struct mvm_alive_resp_v3 *palive3;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200487 struct mvm_alive_resp *palive;
Sara Sharon5c228d62016-11-24 13:48:27 +0200488 struct iwl_umac_alive *umac;
489 struct iwl_lmac_alive *lmac1;
490 struct iwl_lmac_alive *lmac2 = NULL;
491 u16 status;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100492
Sara Sharon5c228d62016-11-24 13:48:27 +0200493 if (iwl_rx_packet_payload_len(pkt) == sizeof(*palive)) {
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200494 palive = (void *)pkt->data;
Sara Sharon5c228d62016-11-24 13:48:27 +0200495 umac = &palive->umac_data;
496 lmac1 = &palive->lmac_data[0];
497 lmac2 = &palive->lmac_data[1];
498 status = le16_to_cpu(palive->status);
499 } else {
500 palive3 = (void *)pkt->data;
501 umac = &palive3->umac_data;
502 lmac1 = &palive3->lmac_data;
503 status = le16_to_cpu(palive3->status);
Eran Harary01a9ca52014-02-03 09:29:57 +0200504 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100505
Sara Sharon5c228d62016-11-24 13:48:27 +0200506 mvm->error_event_table[0] = le32_to_cpu(lmac1->error_event_table_ptr);
507 if (lmac2)
508 mvm->error_event_table[1] =
509 le32_to_cpu(lmac2->error_event_table_ptr);
510 mvm->log_event_table = le32_to_cpu(lmac1->log_event_table_ptr);
511 mvm->sf_space.addr = le32_to_cpu(lmac1->st_fwrd_addr);
512 mvm->sf_space.size = le32_to_cpu(lmac1->st_fwrd_size);
513
514 mvm->umac_error_event_table = le32_to_cpu(umac->error_info_addr);
515
516 alive_data->scd_base_addr = le32_to_cpu(lmac1->scd_base_ptr);
517 alive_data->valid = status == IWL_ALIVE_STATUS_OK;
518 if (mvm->umac_error_event_table)
519 mvm->support_umac_log = true;
520
521 IWL_DEBUG_FW(mvm,
522 "Alive ucode status 0x%04x revision 0x%01X 0x%01X\n",
523 status, lmac1->ver_type, lmac1->ver_subtype);
524
525 if (lmac2)
526 IWL_DEBUG_FW(mvm, "Alive ucode CDB\n");
527
528 IWL_DEBUG_FW(mvm,
529 "UMAC version: Major - 0x%x, Minor - 0x%x\n",
530 le32_to_cpu(umac->umac_major),
531 le32_to_cpu(umac->umac_minor));
532
Johannes Berg8ca151b2013-01-24 14:25:36 +0100533 return true;
534}
535
Sara Sharon1f370652016-08-31 18:13:57 +0300536static bool iwl_wait_init_complete(struct iwl_notif_wait_data *notif_wait,
537 struct iwl_rx_packet *pkt, void *data)
538{
539 WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF);
540
541 return true;
542}
543
Johannes Berg8ca151b2013-01-24 14:25:36 +0100544static bool iwl_wait_phy_db_entry(struct iwl_notif_wait_data *notif_wait,
545 struct iwl_rx_packet *pkt, void *data)
546{
547 struct iwl_phy_db *phy_db = data;
548
549 if (pkt->hdr.cmd != CALIB_RES_NOTIF_PHY_DB) {
550 WARN_ON(pkt->hdr.cmd != INIT_COMPLETE_NOTIF);
551 return true;
552 }
553
Sara Sharonce1f2772016-04-10 16:02:12 +0300554 WARN_ON(iwl_phy_db_set_section(phy_db, pkt));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100555
556 return false;
557}
558
Sara Sharon1f370652016-08-31 18:13:57 +0300559static int iwl_mvm_init_paging(struct iwl_mvm *mvm)
560{
561 const struct fw_img *fw = &mvm->fw->img[mvm->cur_ucode];
562 int ret;
563
564 /*
565 * Configure and operate fw paging mechanism.
566 * The driver configures the paging flow only once.
567 * The CPU2 paging image is included in the IWL_UCODE_INIT image.
568 */
569 if (!fw->paging_mem_size)
570 return 0;
571
572 /*
573 * When dma is not enabled, the driver needs to copy / write
574 * the downloaded / uploaded page to / from the smem.
575 * This gets the location of the place were the pages are
576 * stored.
577 */
578 if (!is_device_dma_capable(mvm->trans->dev)) {
579 ret = iwl_trans_get_paging_item(mvm);
580 if (ret) {
581 IWL_ERR(mvm, "failed to get FW paging item\n");
582 return ret;
583 }
584 }
585
586 ret = iwl_save_fw_paging(mvm, fw);
587 if (ret) {
588 IWL_ERR(mvm, "failed to save the FW paging image\n");
589 return ret;
590 }
591
592 ret = iwl_send_paging_cmd(mvm, fw);
593 if (ret) {
594 IWL_ERR(mvm, "failed to send the paging cmd\n");
595 iwl_free_fw_paging(mvm);
596 return ret;
597 }
598
599 return 0;
600}
Johannes Berg8ca151b2013-01-24 14:25:36 +0100601static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm *mvm,
602 enum iwl_ucode_type ucode_type)
603{
604 struct iwl_notification_wait alive_wait;
605 struct iwl_mvm_alive_data alive_data;
606 const struct fw_img *fw;
607 int ret, i;
608 enum iwl_ucode_type old_type = mvm->cur_ucode;
Sara Sharon6eb031d2015-07-13 14:50:47 +0300609 static const u16 alive_cmd[] = { MVM_ALIVE };
Eran Harary91479b62014-05-11 08:11:34 +0300610 struct iwl_sf_region st_fwrd_space;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100611
Eran Harary61df7502014-12-01 17:40:37 +0200612 if (ucode_type == IWL_UCODE_REGULAR &&
Golan Ben-Ami3d2d4422016-02-23 10:34:48 +0200613 iwl_fw_dbg_conf_usniffer(mvm->fw, FW_DBG_START_FROM_ALIVE) &&
614 !(fw_has_capa(&mvm->fw->ucode_capa,
615 IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED)))
Sharon Dvir612da1e2016-08-03 10:55:45 +0300616 fw = iwl_get_ucode_image(mvm->fw, IWL_UCODE_REGULAR_USNIFFER);
Eran Harary61df7502014-12-01 17:40:37 +0200617 else
Sharon Dvir612da1e2016-08-03 10:55:45 +0300618 fw = iwl_get_ucode_image(mvm->fw, ucode_type);
Johannes Bergbefe9b62013-10-25 12:32:51 +0200619 if (WARN_ON(!fw))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100620 return -EINVAL;
Johannes Bergbefe9b62013-10-25 12:32:51 +0200621 mvm->cur_ucode = ucode_type;
622 mvm->ucode_loaded = false;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100623
624 iwl_init_notification_wait(&mvm->notif_wait, &alive_wait,
625 alive_cmd, ARRAY_SIZE(alive_cmd),
626 iwl_alive_fn, &alive_data);
627
628 ret = iwl_trans_start_fw(mvm->trans, fw, ucode_type == IWL_UCODE_INIT);
629 if (ret) {
630 mvm->cur_ucode = old_type;
631 iwl_remove_notification(&mvm->notif_wait, &alive_wait);
632 return ret;
633 }
634
635 /*
636 * Some things may run in the background now, but we
637 * just wait for the ALIVE notification here.
638 */
639 ret = iwl_wait_notification(&mvm->notif_wait, &alive_wait,
640 MVM_UCODE_ALIVE_TIMEOUT);
641 if (ret) {
Sara Sharond6be9c12017-01-12 11:31:25 +0200642 struct iwl_trans *trans = mvm->trans;
643
644 if (trans->cfg->gen2)
Dor Shaish192de2b2015-07-15 11:41:21 +0300645 IWL_ERR(mvm,
646 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
Sara Sharond6be9c12017-01-12 11:31:25 +0200647 iwl_read_prph(trans, UMAG_SB_CPU_1_STATUS),
648 iwl_read_prph(trans, UMAG_SB_CPU_2_STATUS));
649 else if (trans->cfg->device_family == IWL_DEVICE_FAMILY_8000)
650 IWL_ERR(mvm,
651 "SecBoot CPU1 Status: 0x%x, CPU2 Status: 0x%x\n",
652 iwl_read_prph(trans, SB_CPU_1_STATUS),
653 iwl_read_prph(trans, SB_CPU_2_STATUS));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100654 mvm->cur_ucode = old_type;
655 return ret;
656 }
657
658 if (!alive_data.valid) {
659 IWL_ERR(mvm, "Loaded ucode is not valid!\n");
660 mvm->cur_ucode = old_type;
661 return -EIO;
662 }
663
Eran Harary91479b62014-05-11 08:11:34 +0300664 /*
665 * update the sdio allocation according to the pointer we get in the
666 * alive notification.
667 */
668 st_fwrd_space.addr = mvm->sf_space.addr;
669 st_fwrd_space.size = mvm->sf_space.size;
670 ret = iwl_trans_update_sf(mvm->trans, &st_fwrd_space);
Eyal Shapira82e8aea2014-10-19 14:56:40 +0300671 if (ret) {
672 IWL_ERR(mvm, "Failed to update SF size. ret %d\n", ret);
673 return ret;
674 }
Eran Harary91479b62014-05-11 08:11:34 +0300675
Johannes Berg8ca151b2013-01-24 14:25:36 +0100676 iwl_trans_fw_alive(mvm->trans, alive_data.scd_base_addr);
677
678 /*
679 * Note: all the queues are enabled as part of the interface
680 * initialization, but in firmware restart scenarios they
681 * could be stopped, so wake them up. In firmware restart,
682 * mac80211 will have the queues stopped as well until the
683 * reconfiguration completes. During normal startup, they
684 * will be empty.
685 */
686
Liad Kaufman4ecafae2015-07-14 13:36:18 +0300687 memset(&mvm->queue_info, 0, sizeof(mvm->queue_info));
Liad Kaufman097129c2015-08-09 18:28:43 +0300688 if (iwl_mvm_is_dqa_supported(mvm))
689 mvm->queue_info[IWL_MVM_DQA_CMD_QUEUE].hw_queue_refcount = 1;
690 else
691 mvm->queue_info[IWL_MVM_CMD_QUEUE].hw_queue_refcount = 1;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100692
Johannes Bergdf197c02014-08-01 18:14:45 +0200693 for (i = 0; i < IEEE80211_MAX_QUEUES; i++)
694 atomic_set(&mvm->mac80211_queue_stop_count[i], 0);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100695
696 mvm->ucode_loaded = true;
697
698 return 0;
699}
Johannes Berg8ca151b2013-01-24 14:25:36 +0100700
701static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)
702{
703 struct iwl_phy_cfg_cmd phy_cfg_cmd;
704 enum iwl_ucode_type ucode_type = mvm->cur_ucode;
705
706 /* Set parameters */
Moshe Harela0544272014-12-08 21:13:14 +0200707 phy_cfg_cmd.phy_cfg = cpu_to_le32(iwl_mvm_get_phy_config(mvm));
Johannes Berg8ca151b2013-01-24 14:25:36 +0100708 phy_cfg_cmd.calib_control.event_trigger =
709 mvm->fw->default_calib[ucode_type].event_trigger;
710 phy_cfg_cmd.calib_control.flow_trigger =
711 mvm->fw->default_calib[ucode_type].flow_trigger;
712
713 IWL_DEBUG_INFO(mvm, "Sending Phy CFG command: 0x%x\n",
714 phy_cfg_cmd.phy_cfg);
715
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300716 return iwl_mvm_send_cmd_pdu(mvm, PHY_CONFIGURATION_CMD, 0,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100717 sizeof(phy_cfg_cmd), &phy_cfg_cmd);
718}
719
Johannes Berg8ca151b2013-01-24 14:25:36 +0100720int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm)
721{
722 struct iwl_notification_wait calib_wait;
Sara Sharon6eb031d2015-07-13 14:50:47 +0300723 static const u16 init_complete[] = {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100724 INIT_COMPLETE_NOTIF,
725 CALIB_RES_NOTIF_PHY_DB
726 };
727 int ret;
728
729 lockdep_assert_held(&mvm->mutex);
730
Eran Harary8d193ca2015-04-27 10:29:31 +0300731 if (WARN_ON_ONCE(mvm->calibrating))
Johannes Berg8ca151b2013-01-24 14:25:36 +0100732 return 0;
733
734 iwl_init_notification_wait(&mvm->notif_wait,
735 &calib_wait,
736 init_complete,
737 ARRAY_SIZE(init_complete),
738 iwl_wait_phy_db_entry,
739 mvm->phy_db);
740
741 /* Will also start the device */
742 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_INIT);
743 if (ret) {
744 IWL_ERR(mvm, "Failed to start INIT ucode: %d\n", ret);
745 goto error;
746 }
747
Emmanuel Grumbachae397472014-03-30 16:55:18 +0300748 ret = iwl_send_bt_init_conf(mvm);
Emmanuel Grumbach931d4162013-01-17 09:42:25 +0200749 if (ret)
750 goto error;
751
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200752 /* Read the NVM only at driver load time, no need to do this twice */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100753 if (read_nvm) {
754 /* Read nvm */
Eran Harary14b485f2014-04-23 10:46:09 +0300755 ret = iwl_nvm_init(mvm, true);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100756 if (ret) {
757 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
758 goto error;
759 }
760 }
761
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200762 /* In case we read the NVM from external file, load it to the NIC */
Eran Hararye02a9d62014-05-07 12:27:10 +0300763 if (mvm->nvm_file_name)
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200764 iwl_mvm_load_nvm_to_nic(mvm);
765
Johannes Berg8ca151b2013-01-24 14:25:36 +0100766 ret = iwl_nvm_check_version(mvm->nvm_data, mvm->trans);
767 WARN_ON(ret);
768
Eran Harary4f593342013-05-13 07:53:26 +0300769 /*
770 * abort after reading the nvm in case RF Kill is on, we will complete
771 * the init seq later when RF kill will switch to off
772 */
Arik Nemtsov1a3fe0b2015-09-30 11:19:55 +0300773 if (iwl_mvm_is_radio_hw_killed(mvm)) {
Eran Harary4f593342013-05-13 07:53:26 +0300774 IWL_DEBUG_RF_KILL(mvm,
775 "jump over all phy activities due to RF kill\n");
776 iwl_remove_notification(&mvm->notif_wait, &calib_wait);
Arik Nemtsova4082842013-11-24 19:10:46 +0200777 ret = 1;
778 goto out;
Eran Harary4f593342013-05-13 07:53:26 +0300779 }
780
Emmanuel Grumbach31b8b342014-11-02 15:48:09 +0200781 mvm->calibrating = true;
782
Dor Shaishe07cbb52013-02-27 23:00:27 +0200783 /* Send TX valid antennas before triggering calibrations */
Moshe Harela0544272014-12-08 21:13:14 +0200784 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
Dor Shaishe07cbb52013-02-27 23:00:27 +0200785 if (ret)
786 goto error;
787
Johannes Berg8ca151b2013-01-24 14:25:36 +0100788 /*
789 * Send phy configurations command to init uCode
790 * to start the 16.0 uCode init image internal calibrations.
791 */
792 ret = iwl_send_phy_cfg_cmd(mvm);
793 if (ret) {
794 IWL_ERR(mvm, "Failed to run INIT calibrations: %d\n",
795 ret);
796 goto error;
797 }
798
799 /*
800 * Some things may run in the background now, but we
801 * just wait for the calibration complete notification.
802 */
803 ret = iwl_wait_notification(&mvm->notif_wait, &calib_wait,
804 MVM_UCODE_CALIB_TIMEOUT);
Emmanuel Grumbach31b8b342014-11-02 15:48:09 +0200805
Arik Nemtsov1a3fe0b2015-09-30 11:19:55 +0300806 if (ret && iwl_mvm_is_radio_hw_killed(mvm)) {
Emmanuel Grumbach31b8b342014-11-02 15:48:09 +0200807 IWL_DEBUG_RF_KILL(mvm, "RFKILL while calibrating.\n");
808 ret = 1;
809 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100810 goto out;
811
812error:
813 iwl_remove_notification(&mvm->notif_wait, &calib_wait);
814out:
Emmanuel Grumbach31b8b342014-11-02 15:48:09 +0200815 mvm->calibrating = false;
Arik Nemtsova4082842013-11-24 19:10:46 +0200816 if (iwlmvm_mod_params.init_dbg && !mvm->nvm_data) {
Johannes Berg8ca151b2013-01-24 14:25:36 +0100817 /* we want to debug INIT and we have no NVM - fake */
818 mvm->nvm_data = kzalloc(sizeof(struct iwl_nvm_data) +
819 sizeof(struct ieee80211_channel) +
820 sizeof(struct ieee80211_rate),
821 GFP_KERNEL);
822 if (!mvm->nvm_data)
823 return -ENOMEM;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100824 mvm->nvm_data->bands[0].channels = mvm->nvm_data->channels;
825 mvm->nvm_data->bands[0].n_channels = 1;
826 mvm->nvm_data->bands[0].n_bitrates = 1;
827 mvm->nvm_data->bands[0].bitrates =
828 (void *)mvm->nvm_data->channels + 1;
829 mvm->nvm_data->bands[0].bitrates->hw_value = 10;
830 }
831
832 return ret;
833}
834
Sara Sharon1f370652016-08-31 18:13:57 +0300835int iwl_run_unified_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm)
836{
837 struct iwl_notification_wait init_wait;
838 struct iwl_nvm_access_complete_cmd nvm_complete = {};
839 static const u16 init_complete[] = {
840 INIT_COMPLETE_NOTIF,
841 };
842 int ret;
843
844 lockdep_assert_held(&mvm->mutex);
845
846 iwl_init_notification_wait(&mvm->notif_wait,
847 &init_wait,
848 init_complete,
849 ARRAY_SIZE(init_complete),
850 iwl_wait_init_complete,
851 NULL);
852
853 /* Will also start the device */
854 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
855 if (ret) {
856 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
857 goto error;
858 }
859
Sara Sharon1f370652016-08-31 18:13:57 +0300860 /* Read the NVM only at driver load time, no need to do this twice */
861 if (read_nvm) {
862 /* Read nvm */
863 ret = iwl_nvm_init(mvm, true);
864 if (ret) {
865 IWL_ERR(mvm, "Failed to read NVM: %d\n", ret);
866 goto error;
867 }
868 }
869
870 /* In case we read the NVM from external file, load it to the NIC */
871 if (mvm->nvm_file_name)
872 iwl_mvm_load_nvm_to_nic(mvm);
873
874 ret = iwl_nvm_check_version(mvm->nvm_data, mvm->trans);
875 if (WARN_ON(ret))
876 goto error;
877
878 ret = iwl_mvm_send_cmd_pdu(mvm, WIDE_ID(REGULATORY_AND_NVM_GROUP,
879 NVM_ACCESS_COMPLETE), 0,
880 sizeof(nvm_complete), &nvm_complete);
881 if (ret) {
882 IWL_ERR(mvm, "Failed to run complete NVM access: %d\n",
883 ret);
884 goto error;
885 }
886
887 /* We wait for the INIT complete notification */
888 return iwl_wait_notification(&mvm->notif_wait, &init_wait,
889 MVM_UCODE_ALIVE_TIMEOUT);
890
891error:
892 iwl_remove_notification(&mvm->notif_wait, &init_wait);
893 return ret;
894}
895
Sara Sharondb06f042016-07-05 17:37:58 +0300896static void iwl_mvm_parse_shared_mem_a000(struct iwl_mvm *mvm,
897 struct iwl_rx_packet *pkt)
898{
899 struct iwl_shared_mem_cfg *mem_cfg = (void *)pkt->data;
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200900 int i, lmac;
901 int lmac_num = le32_to_cpu(mem_cfg->lmac_num);
Sara Sharondb06f042016-07-05 17:37:58 +0300902
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200903 if (WARN_ON(lmac_num > ARRAY_SIZE(mem_cfg->lmac_smem)))
904 return;
Sara Sharondb06f042016-07-05 17:37:58 +0300905
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200906 mvm->smem_cfg.num_lmacs = lmac_num;
907 mvm->smem_cfg.num_txfifo_entries =
908 ARRAY_SIZE(mem_cfg->lmac_smem[0].txfifo_size);
909 mvm->smem_cfg.rxfifo2_size = le32_to_cpu(mem_cfg->rxfifo2_size);
Sara Sharondb06f042016-07-05 17:37:58 +0300910
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200911 for (lmac = 0; lmac < lmac_num; lmac++) {
912 struct iwl_shared_mem_lmac_cfg *lmac_cfg =
913 &mem_cfg->lmac_smem[lmac];
914
915 for (i = 0; i < ARRAY_SIZE(lmac_cfg->txfifo_size); i++)
916 mvm->smem_cfg.lmac[lmac].txfifo_size[i] =
917 le32_to_cpu(lmac_cfg->txfifo_size[i]);
918 mvm->smem_cfg.lmac[lmac].rxfifo1_size =
919 le32_to_cpu(lmac_cfg->rxfifo1_size);
920 }
Sara Sharondb06f042016-07-05 17:37:58 +0300921}
922
923static void iwl_mvm_parse_shared_mem(struct iwl_mvm *mvm,
924 struct iwl_rx_packet *pkt)
925{
926 struct iwl_shared_mem_cfg_v1 *mem_cfg = (void *)pkt->data;
927 int i;
928
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200929 mvm->smem_cfg.num_lmacs = 1;
930
931 mvm->smem_cfg.num_txfifo_entries = ARRAY_SIZE(mem_cfg->txfifo_size);
Sara Sharondb06f042016-07-05 17:37:58 +0300932 for (i = 0; i < ARRAY_SIZE(mem_cfg->txfifo_size); i++)
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200933 mvm->smem_cfg.lmac[0].txfifo_size[i] =
Sara Sharondb06f042016-07-05 17:37:58 +0300934 le32_to_cpu(mem_cfg->txfifo_size[i]);
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200935
936 mvm->smem_cfg.lmac[0].rxfifo1_size =
937 le32_to_cpu(mem_cfg->rxfifo_size[0]);
938 mvm->smem_cfg.rxfifo2_size = le32_to_cpu(mem_cfg->rxfifo_size[1]);
Sara Sharondb06f042016-07-05 17:37:58 +0300939
940 /* new API has more data, from rxfifo_addr field and on */
941 if (fw_has_capa(&mvm->fw->ucode_capa,
942 IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG)) {
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200943 BUILD_BUG_ON(sizeof(mvm->smem_cfg.internal_txfifo_size) !=
Sara Sharondb06f042016-07-05 17:37:58 +0300944 sizeof(mem_cfg->internal_txfifo_size));
945
946 for (i = 0;
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200947 i < ARRAY_SIZE(mvm->smem_cfg.internal_txfifo_size);
Sara Sharondb06f042016-07-05 17:37:58 +0300948 i++)
Sara Sharonfa1f2b62017-01-26 12:40:25 +0200949 mvm->smem_cfg.internal_txfifo_size[i] =
Sara Sharondb06f042016-07-05 17:37:58 +0300950 le32_to_cpu(mem_cfg->internal_txfifo_size[i]);
951 }
952}
953
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200954static void iwl_mvm_get_shared_mem_conf(struct iwl_mvm *mvm)
955{
956 struct iwl_host_cmd cmd = {
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200957 .flags = CMD_WANT_SKB,
958 .data = { NULL, },
959 .len = { 0, },
960 };
Golan Ben-Ami5b086412016-02-09 12:57:16 +0200961 struct iwl_rx_packet *pkt;
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200962
963 lockdep_assert_held(&mvm->mutex);
964
Golan Ben-Ami5b086412016-02-09 12:57:16 +0200965 if (fw_has_capa(&mvm->fw->ucode_capa,
966 IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG))
967 cmd.id = iwl_cmd_id(SHARED_MEM_CFG_CMD, SYSTEM_GROUP, 0);
968 else
969 cmd.id = SHARED_MEM_CFG;
970
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200971 if (WARN_ON(iwl_mvm_send_cmd(mvm, &cmd)))
972 return;
973
974 pkt = cmd.resp_pkt;
Sara Sharondb06f042016-07-05 17:37:58 +0300975 if (iwl_mvm_has_new_tx_api(mvm))
976 iwl_mvm_parse_shared_mem_a000(mvm, pkt);
977 else
978 iwl_mvm_parse_shared_mem(mvm, pkt);
Golan Ben-Ami5b086412016-02-09 12:57:16 +0200979
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200980 IWL_DEBUG_INFO(mvm, "SHARED MEM CFG: got memory offsets/sizes\n");
981
Liad Kaufman04fd2c22014-12-15 17:54:16 +0200982 iwl_free_resp(&cmd);
983}
984
Emmanuel Grumbach84bfffa2015-01-13 10:16:30 +0200985static int iwl_mvm_config_ltr(struct iwl_mvm *mvm)
986{
987 struct iwl_ltr_config_cmd cmd = {
988 .flags = cpu_to_le32(LTR_CFG_FLAG_FEATURE_ENABLE),
989 };
990
991 if (!mvm->trans->ltr_enabled)
992 return 0;
993
Emmanuel Grumbach84bfffa2015-01-13 10:16:30 +0200994 return iwl_mvm_send_cmd_pdu(mvm, LTR_CONFIG, 0,
995 sizeof(cmd), &cmd);
996}
997
Luca Coelhoda2830a2016-05-30 13:00:44 +0300998#ifdef CONFIG_ACPI
Haim Dreyfussc386dac2016-12-28 15:58:22 +0200999#define ACPI_WRDS_METHOD "WRDS"
Luca Coelho69964902017-01-12 12:43:12 +02001000#define ACPI_EWRD_METHOD "EWRD"
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001001#define ACPI_WGDS_METHOD "WGDS"
Luca Coelho69964902017-01-12 12:43:12 +02001002#define ACPI_WIFI_DOMAIN (0x07)
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001003#define ACPI_WRDS_WIFI_DATA_SIZE (IWL_MVM_SAR_TABLE_SIZE + 2)
Luca Coelho69964902017-01-12 12:43:12 +02001004#define ACPI_EWRD_WIFI_DATA_SIZE ((IWL_MVM_SAR_PROFILE_NUM - 1) * \
1005 IWL_MVM_SAR_TABLE_SIZE + 3)
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001006#define ACPI_WGDS_WIFI_DATA_SIZE 18
1007#define ACPI_WGDS_NUM_BANDS 2
1008#define ACPI_WGDS_TABLE_SIZE 3
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001009
1010static int iwl_mvm_sar_set_profile(struct iwl_mvm *mvm,
1011 union acpi_object *table,
1012 struct iwl_mvm_sar_profile *profile,
1013 bool enabled)
Luca Coelhoda2830a2016-05-30 13:00:44 +03001014{
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001015 int i;
Luca Coelhoda2830a2016-05-30 13:00:44 +03001016
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001017 profile->enabled = enabled;
Luca Coelhoda2830a2016-05-30 13:00:44 +03001018
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001019 for (i = 0; i < IWL_MVM_SAR_TABLE_SIZE; i++) {
1020 if ((table[i].type != ACPI_TYPE_INTEGER) ||
1021 (table[i].integer.value > U8_MAX))
Luca Coelhoda2830a2016-05-30 13:00:44 +03001022 return -EINVAL;
1023
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001024 profile->table[i] = table[i].integer.value;
Luca Coelhoda2830a2016-05-30 13:00:44 +03001025 }
1026
1027 return 0;
1028}
1029
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001030static union acpi_object *iwl_mvm_sar_find_wifi_pkg(struct iwl_mvm *mvm,
1031 union acpi_object *data,
1032 int data_size)
Luca Coelhoda2830a2016-05-30 13:00:44 +03001033{
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001034 int i;
1035 union acpi_object *wifi_pkg;
1036
1037 /*
1038 * We need at least two packages, one for the revision and one
1039 * for the data itself. Also check that the revision is valid
1040 * (i.e. it is an integer set to 0).
1041 */
1042 if (data->type != ACPI_TYPE_PACKAGE ||
1043 data->package.count < 2 ||
1044 data->package.elements[0].type != ACPI_TYPE_INTEGER ||
1045 data->package.elements[0].integer.value != 0) {
1046 IWL_DEBUG_RADIO(mvm, "Unsupported packages structure\n");
1047 return ERR_PTR(-EINVAL);
1048 }
1049
1050 /* loop through all the packages to find the one for WiFi */
1051 for (i = 1; i < data->package.count; i++) {
1052 union acpi_object *domain;
1053
1054 wifi_pkg = &data->package.elements[i];
1055
1056 /* Skip anything that is not a package with the right
1057 * amount of elements (i.e. domain_type,
1058 * enabled/disabled plus the actual data size.
1059 */
1060 if (wifi_pkg->type != ACPI_TYPE_PACKAGE ||
1061 wifi_pkg->package.count != data_size)
1062 continue;
1063
1064 domain = &wifi_pkg->package.elements[0];
1065 if (domain->type == ACPI_TYPE_INTEGER &&
Luca Coelho69964902017-01-12 12:43:12 +02001066 domain->integer.value == ACPI_WIFI_DOMAIN)
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001067 break;
1068
1069 wifi_pkg = NULL;
1070 }
1071
1072 if (!wifi_pkg)
1073 return ERR_PTR(-ENOENT);
1074
1075 return wifi_pkg;
1076}
1077
1078static int iwl_mvm_sar_get_wrds_table(struct iwl_mvm *mvm)
1079{
1080 union acpi_object *wifi_pkg, *table;
Luca Coelhoda2830a2016-05-30 13:00:44 +03001081 acpi_handle root_handle;
1082 acpi_handle handle;
1083 struct acpi_buffer wrds = {ACPI_ALLOCATE_BUFFER, NULL};
1084 acpi_status status;
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001085 bool enabled;
Luca Coelhoda2830a2016-05-30 13:00:44 +03001086 int ret;
1087
1088 root_handle = ACPI_HANDLE(mvm->dev);
1089 if (!root_handle) {
1090 IWL_DEBUG_RADIO(mvm,
1091 "Could not retrieve root port ACPI handle\n");
1092 return -ENOENT;
1093 }
1094
1095 /* Get the method's handle */
1096 status = acpi_get_handle(root_handle, (acpi_string)ACPI_WRDS_METHOD,
1097 &handle);
1098 if (ACPI_FAILURE(status)) {
1099 IWL_DEBUG_RADIO(mvm, "WRDS method not found\n");
1100 return -ENOENT;
1101 }
1102
1103 /* Call WRDS with no arguments */
1104 status = acpi_evaluate_object(handle, NULL, NULL, &wrds);
1105 if (ACPI_FAILURE(status)) {
1106 IWL_DEBUG_RADIO(mvm, "WRDS invocation failed (0x%x)\n", status);
1107 return -ENOENT;
1108 }
1109
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001110 wifi_pkg = iwl_mvm_sar_find_wifi_pkg(mvm, wrds.pointer,
1111 ACPI_WRDS_WIFI_DATA_SIZE);
1112 if (IS_ERR(wifi_pkg)) {
1113 ret = PTR_ERR(wifi_pkg);
1114 goto out_free;
1115 }
Luca Coelhoda2830a2016-05-30 13:00:44 +03001116
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001117 if (wifi_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) {
1118 ret = -EINVAL;
1119 goto out_free;
1120 }
1121
1122 enabled = !!(wifi_pkg->package.elements[1].integer.value);
1123
1124 /* position of the actual table */
1125 table = &wifi_pkg->package.elements[2];
1126
1127 /* The profile from WRDS is officially profile 1, but goes
1128 * into sar_profiles[0] (because we don't have a profile 0).
1129 */
1130 ret = iwl_mvm_sar_set_profile(mvm, table, &mvm->sar_profiles[0],
1131 enabled);
1132
1133out_free:
1134 kfree(wrds.pointer);
Luca Coelhoda2830a2016-05-30 13:00:44 +03001135 return ret;
1136}
Luca Coelhoda2830a2016-05-30 13:00:44 +03001137
Luca Coelho69964902017-01-12 12:43:12 +02001138static int iwl_mvm_sar_get_ewrd_table(struct iwl_mvm *mvm)
1139{
1140 union acpi_object *wifi_pkg;
1141 acpi_handle root_handle;
1142 acpi_handle handle;
1143 struct acpi_buffer ewrd = {ACPI_ALLOCATE_BUFFER, NULL};
1144 acpi_status status;
1145 bool enabled;
1146 int i, n_profiles, ret;
1147
1148 root_handle = ACPI_HANDLE(mvm->dev);
1149 if (!root_handle) {
1150 IWL_DEBUG_RADIO(mvm,
1151 "Could not retrieve root port ACPI handle\n");
1152 return -ENOENT;
1153 }
1154
1155 /* Get the method's handle */
1156 status = acpi_get_handle(root_handle, (acpi_string)ACPI_EWRD_METHOD,
1157 &handle);
1158 if (ACPI_FAILURE(status)) {
1159 IWL_DEBUG_RADIO(mvm, "EWRD method not found\n");
1160 return -ENOENT;
1161 }
1162
1163 /* Call EWRD with no arguments */
1164 status = acpi_evaluate_object(handle, NULL, NULL, &ewrd);
1165 if (ACPI_FAILURE(status)) {
1166 IWL_DEBUG_RADIO(mvm, "EWRD invocation failed (0x%x)\n", status);
1167 return -ENOENT;
1168 }
1169
1170 wifi_pkg = iwl_mvm_sar_find_wifi_pkg(mvm, ewrd.pointer,
1171 ACPI_EWRD_WIFI_DATA_SIZE);
1172 if (IS_ERR(wifi_pkg)) {
1173 ret = PTR_ERR(wifi_pkg);
1174 goto out_free;
1175 }
1176
1177 if ((wifi_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) ||
1178 (wifi_pkg->package.elements[2].type != ACPI_TYPE_INTEGER)) {
1179 ret = -EINVAL;
1180 goto out_free;
1181 }
1182
1183 enabled = !!(wifi_pkg->package.elements[1].integer.value);
1184 n_profiles = wifi_pkg->package.elements[2].integer.value;
1185
1186 for (i = 0; i < n_profiles; i++) {
1187 /* the tables start at element 3 */
1188 static int pos = 3;
1189
1190 /* The EWRD profiles officially go from 2 to 4, but we
1191 * save them in sar_profiles[1-3] (because we don't
1192 * have profile 0). So in the array we start from 1.
1193 */
1194 ret = iwl_mvm_sar_set_profile(mvm,
1195 &wifi_pkg->package.elements[pos],
1196 &mvm->sar_profiles[i + 1],
1197 enabled);
1198 if (ret < 0)
1199 break;
1200
1201 /* go to the next table */
1202 pos += IWL_MVM_SAR_TABLE_SIZE;
1203 }
1204
1205out_free:
1206 kfree(ewrd.pointer);
1207 return ret;
1208}
1209
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001210static int iwl_mvm_sar_get_wgds_table(struct iwl_mvm *mvm,
1211 struct iwl_mvm_geo_table *geo_table)
1212{
1213 union acpi_object *wifi_pkg;
1214 acpi_handle root_handle;
1215 acpi_handle handle;
1216 struct acpi_buffer wgds = {ACPI_ALLOCATE_BUFFER, NULL};
1217 acpi_status status;
1218 int i, ret;
1219
1220 root_handle = ACPI_HANDLE(mvm->dev);
1221 if (!root_handle) {
1222 IWL_DEBUG_RADIO(mvm,
1223 "Could not retrieve root port ACPI handle\n");
1224 return -ENOENT;
1225 }
1226
1227 /* Get the method's handle */
1228 status = acpi_get_handle(root_handle, (acpi_string)ACPI_WGDS_METHOD,
1229 &handle);
1230 if (ACPI_FAILURE(status)) {
1231 IWL_DEBUG_RADIO(mvm, "WGDS method not found\n");
1232 return -ENOENT;
1233 }
1234
1235 /* Call WGDS with no arguments */
1236 status = acpi_evaluate_object(handle, NULL, NULL, &wgds);
1237 if (ACPI_FAILURE(status)) {
1238 IWL_DEBUG_RADIO(mvm, "WGDS invocation failed (0x%x)\n", status);
1239 return -ENOENT;
1240 }
1241
1242 wifi_pkg = iwl_mvm_sar_find_wifi_pkg(mvm, wgds.pointer,
1243 ACPI_WGDS_WIFI_DATA_SIZE);
1244 if (IS_ERR(wifi_pkg)) {
1245 ret = PTR_ERR(wifi_pkg);
1246 goto out_free;
1247 }
1248
1249 for (i = 0; i < ACPI_WGDS_WIFI_DATA_SIZE; i++) {
1250 union acpi_object *entry;
1251
1252 entry = &wifi_pkg->package.elements[i + 1];
1253 if ((entry->type != ACPI_TYPE_INTEGER) ||
1254 (entry->integer.value > U8_MAX))
1255 return -EINVAL;
1256
1257 geo_table->values[i] = entry->integer.value;
1258 }
1259 ret = 0;
1260out_free:
1261 kfree(wgds.pointer);
1262 return ret;
1263}
1264
Luca Coelho42ce76d2017-01-11 23:36:30 +02001265int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b)
Luca Coelhoda2830a2016-05-30 13:00:44 +03001266{
Luca Coelhoda2830a2016-05-30 13:00:44 +03001267 struct iwl_dev_tx_power_cmd cmd = {
Luca Coelho4b87e5a2016-09-12 16:03:30 +03001268 .v3.set_mode = cpu_to_le32(IWL_TX_POWER_MODE_SET_CHAINS),
Luca Coelhoda2830a2016-05-30 13:00:44 +03001269 };
Luca Coelho42ce76d2017-01-11 23:36:30 +02001270 int i, j, idx;
1271 int profs[IWL_NUM_CHAIN_LIMITS] = { prof_a, prof_b };
Luca Coelho55bfa4b2016-06-29 00:38:40 +03001272 int len = sizeof(cmd);
Luca Coelhoda2830a2016-05-30 13:00:44 +03001273
Luca Coelho42ce76d2017-01-11 23:36:30 +02001274 BUILD_BUG_ON(IWL_NUM_CHAIN_LIMITS < 2);
1275 BUILD_BUG_ON(IWL_NUM_CHAIN_LIMITS * IWL_NUM_SUB_BANDS !=
1276 IWL_MVM_SAR_TABLE_SIZE);
1277
Luca Coelho55bfa4b2016-06-29 00:38:40 +03001278 if (!fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_TX_POWER_ACK))
1279 len = sizeof(cmd.v3);
1280
Luca Coelho42ce76d2017-01-11 23:36:30 +02001281 for (i = 0; i < IWL_NUM_CHAIN_LIMITS; i++) {
1282 struct iwl_mvm_sar_profile *prof;
1283
1284 /* don't allow SAR to be disabled (profile 0 means disable) */
1285 if (profs[i] == 0)
1286 return -EPERM;
1287
1288 /* we are off by one, so allow up to IWL_MVM_SAR_PROFILE_NUM */
1289 if (profs[i] > IWL_MVM_SAR_PROFILE_NUM)
1290 return -EINVAL;
1291
1292 /* profiles go from 1 to 4, so decrement to access the array */
1293 prof = &mvm->sar_profiles[profs[i] - 1];
1294
1295 /* if the profile is disabled, do nothing */
1296 if (!prof->enabled) {
1297 IWL_DEBUG_RADIO(mvm, "SAR profile %d is disabled.\n",
1298 profs[i]);
1299 /* if one of the profiles is disabled, we fail all */
1300 return -ENOENT;
1301 }
1302
1303 IWL_DEBUG_RADIO(mvm, " Chain[%d]:\n", i);
1304 for (j = 0; j < IWL_NUM_SUB_BANDS; j++) {
1305 idx = (i * IWL_NUM_SUB_BANDS) + j;
1306 cmd.v3.per_chain_restriction[i][j] =
1307 cpu_to_le16(prof->table[idx]);
1308 IWL_DEBUG_RADIO(mvm, " Band[%d] = %d * .125dBm\n",
1309 j, prof->table[idx]);
1310 }
1311 }
1312
1313 IWL_DEBUG_RADIO(mvm, "Sending REDUCE_TX_POWER_CMD per chain\n");
1314
1315 return iwl_mvm_send_cmd_pdu(mvm, REDUCE_TX_POWER_CMD, 0, len, &cmd);
1316}
1317
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001318static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm)
1319{
1320 struct iwl_mvm_geo_table geo_table;
1321 struct iwl_geo_tx_power_profiles_cmd cmd = {
1322 .ops = cpu_to_le32(IWL_PER_CHAIN_OFFSET_SET_TABLES),
1323 };
1324 int ret, i, j, idx;
1325 u16 cmd_wide_id = WIDE_ID(PHY_OPS_GROUP, GEO_TX_POWER_LIMIT);
1326
1327 ret = iwl_mvm_sar_get_wgds_table(mvm, &geo_table);
1328 if (ret < 0) {
1329 IWL_DEBUG_RADIO(mvm,
1330 "Geo SAR BIOS table invalid or unavailable. (%d)\n",
1331 ret);
1332 /* we don't fail if the table is not available */
1333 return 0;
1334 }
1335
1336 IWL_DEBUG_RADIO(mvm, "Sending GEO_TX_POWER_LIMIT\n");
1337
1338 BUILD_BUG_ON(IWL_NUM_GEO_PROFILES * ACPI_WGDS_NUM_BANDS *
1339 ACPI_WGDS_TABLE_SIZE != ACPI_WGDS_WIFI_DATA_SIZE);
1340
1341 for (i = 0; i < IWL_NUM_GEO_PROFILES; i++) {
1342 struct iwl_per_chain_offset *chain =
1343 (struct iwl_per_chain_offset *)&cmd.table[i];
1344
1345 for (j = 0; j < ACPI_WGDS_NUM_BANDS; j++) {
1346 u8 *value;
1347
1348 idx = i * ACPI_WGDS_NUM_BANDS * ACPI_WGDS_TABLE_SIZE +
1349 j * ACPI_WGDS_TABLE_SIZE;
1350 value = &geo_table.values[idx];
1351 chain[j].max_tx_power = cpu_to_le16(value[0]);
1352 chain[j].chain_a = value[1];
1353 chain[j].chain_b = value[2];
1354 IWL_DEBUG_RADIO(mvm,
1355 "SAR geographic profile[%d] Band[%d]: chain A = %d chain B = %d max_tx_power = %d\n",
1356 i, j, value[1], value[2], value[0]);
1357 }
1358 }
1359 return iwl_mvm_send_cmd_pdu(mvm, cmd_wide_id, 0, sizeof(cmd), &cmd);
1360}
1361
Luca Coelho69964902017-01-12 12:43:12 +02001362#else /* CONFIG_ACPI */
1363static int iwl_mvm_sar_get_wrds_table(struct iwl_mvm *mvm)
1364{
1365 return -ENOENT;
1366}
1367
1368static int iwl_mvm_sar_get_ewrd_table(struct iwl_mvm *mvm)
1369{
1370 return -ENOENT;
1371}
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001372
1373static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm)
1374{
1375 return 0;
1376}
Luca Coelho69964902017-01-12 12:43:12 +02001377#endif /* CONFIG_ACPI */
1378
Luca Coelho42ce76d2017-01-11 23:36:30 +02001379static int iwl_mvm_sar_init(struct iwl_mvm *mvm)
1380{
1381 int ret;
1382
Haim Dreyfussc386dac2016-12-28 15:58:22 +02001383 ret = iwl_mvm_sar_get_wrds_table(mvm);
Luca Coelhoda2830a2016-05-30 13:00:44 +03001384 if (ret < 0) {
1385 IWL_DEBUG_RADIO(mvm,
Luca Coelho69964902017-01-12 12:43:12 +02001386 "WRDS SAR BIOS table invalid or unavailable. (%d)\n",
Luca Coelhoda2830a2016-05-30 13:00:44 +03001387 ret);
Luca Coelho69964902017-01-12 12:43:12 +02001388 /* if not available, don't fail and don't bother with EWRD */
Luca Coelhoda2830a2016-05-30 13:00:44 +03001389 return 0;
1390 }
1391
Luca Coelho69964902017-01-12 12:43:12 +02001392 ret = iwl_mvm_sar_get_ewrd_table(mvm);
1393 /* if EWRD is not available, we can still use WRDS, so don't fail */
1394 if (ret < 0)
1395 IWL_DEBUG_RADIO(mvm,
1396 "EWRD SAR BIOS table invalid or unavailable. (%d)\n",
1397 ret);
1398
Luca Coelho42ce76d2017-01-11 23:36:30 +02001399 /* choose profile 1 (WRDS) as default for both chains */
1400 ret = iwl_mvm_sar_select_profile(mvm, 1, 1);
1401
1402 /* if we don't have profile 0 from BIOS, just skip it */
1403 if (ret == -ENOENT)
Luca Coelhoda2830a2016-05-30 13:00:44 +03001404 return 0;
1405
Luca Coelhoda2830a2016-05-30 13:00:44 +03001406 return ret;
1407}
1408
Sara Sharon1f370652016-08-31 18:13:57 +03001409static int iwl_mvm_load_rt_fw(struct iwl_mvm *mvm)
1410{
1411 int ret;
1412
1413 if (iwl_mvm_has_new_tx_api(mvm))
1414 return iwl_run_unified_mvm_ucode(mvm, false);
1415
1416 ret = iwl_run_init_mvm_ucode(mvm, false);
1417
1418 if (iwlmvm_mod_params.init_dbg)
1419 return 0;
1420
1421 if (ret) {
1422 IWL_ERR(mvm, "Failed to run INIT ucode: %d\n", ret);
1423 /* this can't happen */
1424 if (WARN_ON(ret > 0))
1425 ret = -ERFKILL;
1426 return ret;
1427 }
1428
1429 /*
1430 * Stop and start the transport without entering low power
1431 * mode. This will save the state of other components on the
1432 * device that are triggered by the INIT firwmare (MFUART).
1433 */
1434 _iwl_trans_stop_device(mvm->trans, false);
1435 ret = _iwl_trans_start_hw(mvm->trans, false);
1436 if (ret)
1437 return ret;
1438
1439 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_REGULAR);
1440 if (ret)
1441 return ret;
1442
1443 return iwl_mvm_init_paging(mvm);
1444}
1445
Johannes Berg8ca151b2013-01-24 14:25:36 +01001446int iwl_mvm_up(struct iwl_mvm *mvm)
1447{
1448 int ret, i;
Ilan Peer53a9d612013-04-28 11:55:08 +03001449 struct ieee80211_channel *chan;
1450 struct cfg80211_chan_def chandef;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001451
1452 lockdep_assert_held(&mvm->mutex);
1453
1454 ret = iwl_trans_start_hw(mvm->trans);
1455 if (ret)
1456 return ret;
1457
Sara Sharon1f370652016-08-31 18:13:57 +03001458 ret = iwl_mvm_load_rt_fw(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001459 if (ret) {
1460 IWL_ERR(mvm, "Failed to start RT ucode: %d\n", ret);
1461 goto error;
1462 }
1463
Sara Sharon6c7d32c2015-06-07 09:34:57 +03001464 iwl_mvm_get_shared_mem_conf(mvm);
Liad Kaufman04fd2c22014-12-15 17:54:16 +02001465
Lilach Edelstein1f3b0ff2013-10-06 13:03:32 +02001466 ret = iwl_mvm_sf_update(mvm, NULL, false);
1467 if (ret)
1468 IWL_ERR(mvm, "Failed to initialize Smart Fifo\n");
1469
Liad Kaufman6a951262014-11-17 11:36:21 +02001470 mvm->fw_dbg_conf = FW_DBG_INVALID;
Emmanuel Grumbach945d4202015-02-15 17:16:16 +02001471 /* if we have a destination, assume EARLY START */
1472 if (mvm->fw->dbg_dest_tlv)
1473 mvm->fw_dbg_conf = FW_DBG_START_FROM_ALIVE;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001474 iwl_mvm_start_fw_dbg_conf(mvm, FW_DBG_START_FROM_ALIVE);
Liad Kaufman6a951262014-11-17 11:36:21 +02001475
Moshe Harela0544272014-12-08 21:13:14 +02001476 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001477 if (ret)
1478 goto error;
1479
Emmanuel Grumbach931d4162013-01-17 09:42:25 +02001480 ret = iwl_send_bt_init_conf(mvm);
1481 if (ret)
1482 goto error;
1483
Johannes Berg8ca151b2013-01-24 14:25:36 +01001484 /* Send phy db control command and then phy db calibration*/
Sara Sharon1f370652016-08-31 18:13:57 +03001485 if (!iwl_mvm_has_new_tx_api(mvm)) {
1486 ret = iwl_send_phy_db_data(mvm->phy_db);
1487 if (ret)
1488 goto error;
Johannes Berg8ca151b2013-01-24 14:25:36 +01001489
Sara Sharon1f370652016-08-31 18:13:57 +03001490 ret = iwl_send_phy_cfg_cmd(mvm);
1491 if (ret)
1492 goto error;
1493 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001494
Sara Sharon43413a92015-12-31 11:49:18 +02001495 /* Init RSS configuration */
Sara Sharon09a2e252016-12-19 14:10:35 +02001496 /* TODO - remove a000 disablement when we have RXQ config API */
1497 if (iwl_mvm_has_new_rx_api(mvm) && !iwl_mvm_has_new_tx_api(mvm)) {
Sara Sharon43413a92015-12-31 11:49:18 +02001498 ret = iwl_send_rss_cfg_cmd(mvm);
1499 if (ret) {
1500 IWL_ERR(mvm, "Failed to configure RSS queues: %d\n",
1501 ret);
1502 goto error;
1503 }
1504 }
1505
Johannes Berg8ca151b2013-01-24 14:25:36 +01001506 /* init the fw <-> mac80211 STA mapping */
Sara Sharon0ae98812017-01-04 14:53:58 +02001507 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001508 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
1509
Sara Sharon0ae98812017-01-04 14:53:58 +02001510 mvm->tdls_cs.peer.sta_id = IWL_MVM_INVALID_STA;
Arik Nemtsov1d3c3f62014-10-23 18:03:10 +03001511
Johannes Bergb2b78752014-09-08 16:42:54 +02001512 /* reset quota debouncing buffer - 0xff will yield invalid data */
1513 memset(&mvm->last_quota_cmd, 0xff, sizeof(mvm->last_quota_cmd));
1514
Liad Kaufman97d5be72015-08-31 14:33:23 +03001515 /* Enable DQA-mode if required */
1516 if (iwl_mvm_is_dqa_supported(mvm)) {
1517 ret = iwl_mvm_send_dqa_cmd(mvm);
1518 if (ret)
1519 goto error;
1520 } else {
1521 IWL_DEBUG_FW(mvm, "Working in non-DQA mode\n");
1522 }
1523
Johannes Berg8ca151b2013-01-24 14:25:36 +01001524 /* Add auxiliary station for scanning */
1525 ret = iwl_mvm_add_aux_sta(mvm);
1526 if (ret)
1527 goto error;
1528
Ilan Peer53a9d612013-04-28 11:55:08 +03001529 /* Add all the PHY contexts */
Johannes Berg57fbcce2016-04-12 15:56:15 +02001530 chan = &mvm->hw->wiphy->bands[NL80211_BAND_2GHZ]->channels[0];
Ilan Peer53a9d612013-04-28 11:55:08 +03001531 cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_NO_HT);
1532 for (i = 0; i < NUM_PHY_CTX; i++) {
1533 /*
1534 * The channel used here isn't relevant as it's
1535 * going to be overwritten in the other flows.
1536 * For now use the first channel we have.
1537 */
1538 ret = iwl_mvm_phy_ctxt_add(mvm, &mvm->phy_ctxts[i],
1539 &chandef, 1, 1);
1540 if (ret)
1541 goto error;
1542 }
Johannes Berg8ca151b2013-01-24 14:25:36 +01001543
Chaya Rachel Ivgic221daf2015-12-29 09:54:49 +02001544#ifdef CONFIG_THERMAL
1545 if (iwl_mvm_is_tt_in_fw(mvm)) {
1546 /* in order to give the responsibility of ct-kill and
1547 * TX backoff to FW we need to send empty temperature reporting
1548 * cmd during init time
1549 */
1550 iwl_mvm_send_temp_report_ths_cmd(mvm);
1551 } else {
1552 /* Initialize tx backoffs to the minimal possible */
1553 iwl_mvm_tt_tx_backoff(mvm, 0);
1554 }
Chaya Rachel Ivgi5c89e7b2016-01-05 10:34:47 +02001555
1556 /* TODO: read the budget from BIOS / Platform NVM */
Luca Coelho75cfe332016-09-14 11:54:36 +03001557 if (iwl_mvm_is_ctdp_supported(mvm) && mvm->cooling_dev.cur_state > 0) {
Chaya Rachel Ivgi5c89e7b2016-01-05 10:34:47 +02001558 ret = iwl_mvm_ctdp_command(mvm, CTDP_CMD_OPERATION_START,
1559 mvm->cooling_dev.cur_state);
Luca Coelho75cfe332016-09-14 11:54:36 +03001560 if (ret)
1561 goto error;
1562 }
Chaya Rachel Ivgic221daf2015-12-29 09:54:49 +02001563#else
Ido Yariv0c0e2c72014-01-16 21:12:02 -05001564 /* Initialize tx backoffs to the minimal possible */
1565 iwl_mvm_tt_tx_backoff(mvm, 0);
Chaya Rachel Ivgic221daf2015-12-29 09:54:49 +02001566#endif
Ido Yariv0c0e2c72014-01-16 21:12:02 -05001567
Emmanuel Grumbach84bfffa2015-01-13 10:16:30 +02001568 WARN_ON(iwl_mvm_config_ltr(mvm));
Emmanuel Grumbach9180ac52014-09-23 23:02:41 +03001569
Emmanuel Grumbachc1cb92f2014-01-28 10:17:18 +02001570 ret = iwl_mvm_power_update_device(mvm);
Alexander Bondar64b928c2013-09-03 14:18:03 +03001571 if (ret)
1572 goto error;
1573
Arik Nemtsov35af15d2015-03-04 15:08:00 +02001574 /*
1575 * RTNL is not taken during Ct-kill, but we don't need to scan/Tx
1576 * anyway, so don't init MCC.
1577 */
1578 if (!test_bit(IWL_MVM_STATUS_HW_CTKILL, &mvm->status)) {
1579 ret = iwl_mvm_init_mcc(mvm);
1580 if (ret)
1581 goto error;
1582 }
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +02001583
Johannes Berg859d9142015-06-01 17:11:11 +02001584 if (fw_has_capa(&mvm->fw->ucode_capa, IWL_UCODE_TLV_CAPA_UMAC_SCAN)) {
Emmanuel Grumbach4ca87a52016-01-03 22:23:40 +02001585 mvm->scan_type = IWL_SCAN_TYPE_NOT_SET;
David Spinadeld2496222014-05-20 12:46:37 +03001586 ret = iwl_mvm_config_scan(mvm);
1587 if (ret)
1588 goto error;
1589 }
1590
Eliad Peller7498cf42014-01-16 17:10:44 +02001591 /* allow FW/transport low power modes if not during restart */
1592 if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
1593 iwl_mvm_unref(mvm, IWL_MVM_REF_UCODE_DOWN);
1594
Luca Coelhoda2830a2016-05-30 13:00:44 +03001595 ret = iwl_mvm_sar_init(mvm);
1596 if (ret)
1597 goto error;
1598
Haim Dreyfussa6bff3c2017-01-19 12:00:46 +02001599 ret = iwl_mvm_sar_geo_init(mvm);
1600 if (ret)
1601 goto error;
1602
Ilan Peer53a9d612013-04-28 11:55:08 +03001603 IWL_DEBUG_INFO(mvm, "RT uCode started.\n");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001604 return 0;
1605 error:
Chaya Rachel Ivgifcb6b922016-02-22 10:21:41 +02001606 iwl_mvm_stop_device(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001607 return ret;
1608}
1609
1610int iwl_mvm_load_d3_fw(struct iwl_mvm *mvm)
1611{
1612 int ret, i;
1613
1614 lockdep_assert_held(&mvm->mutex);
1615
1616 ret = iwl_trans_start_hw(mvm->trans);
1617 if (ret)
1618 return ret;
1619
1620 ret = iwl_mvm_load_ucode_wait_alive(mvm, IWL_UCODE_WOWLAN);
1621 if (ret) {
1622 IWL_ERR(mvm, "Failed to start WoWLAN firmware: %d\n", ret);
1623 goto error;
1624 }
1625
Moshe Harela0544272014-12-08 21:13:14 +02001626 ret = iwl_send_tx_ant_cfg(mvm, iwl_mvm_get_valid_tx_ant(mvm));
Johannes Berg8ca151b2013-01-24 14:25:36 +01001627 if (ret)
1628 goto error;
1629
1630 /* Send phy db control command and then phy db calibration*/
1631 ret = iwl_send_phy_db_data(mvm->phy_db);
1632 if (ret)
1633 goto error;
1634
1635 ret = iwl_send_phy_cfg_cmd(mvm);
1636 if (ret)
1637 goto error;
1638
1639 /* init the fw <-> mac80211 STA mapping */
Sara Sharon0ae98812017-01-04 14:53:58 +02001640 for (i = 0; i < ARRAY_SIZE(mvm->fw_id_to_mac_id); i++)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001641 RCU_INIT_POINTER(mvm->fw_id_to_mac_id[i], NULL);
1642
1643 /* Add auxiliary station for scanning */
1644 ret = iwl_mvm_add_aux_sta(mvm);
1645 if (ret)
1646 goto error;
1647
1648 return 0;
1649 error:
Chaya Rachel Ivgifcb6b922016-02-22 10:21:41 +02001650 iwl_mvm_stop_device(mvm);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001651 return ret;
1652}
1653
Johannes Berg04168412015-06-23 21:22:09 +02001654void iwl_mvm_rx_card_state_notif(struct iwl_mvm *mvm,
1655 struct iwl_rx_cmd_buffer *rxb)
Johannes Berg8ca151b2013-01-24 14:25:36 +01001656{
1657 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1658 struct iwl_card_state_notif *card_state_notif = (void *)pkt->data;
1659 u32 flags = le32_to_cpu(card_state_notif->flags);
1660
1661 IWL_DEBUG_RF_KILL(mvm, "Card state received: HW:%s SW:%s CT:%s\n",
1662 (flags & HW_CARD_DISABLED) ? "Kill" : "On",
1663 (flags & SW_CARD_DISABLED) ? "Kill" : "On",
1664 (flags & CT_KILL_CARD_DISABLED) ?
1665 "Reached" : "Not reached");
Johannes Berg8ca151b2013-01-24 14:25:36 +01001666}
1667
Johannes Berg04168412015-06-23 21:22:09 +02001668void iwl_mvm_rx_mfuart_notif(struct iwl_mvm *mvm,
1669 struct iwl_rx_cmd_buffer *rxb)
Chaya Rachel Ivgy30269c12014-11-15 21:08:29 +02001670{
1671 struct iwl_rx_packet *pkt = rxb_addr(rxb);
1672 struct iwl_mfuart_load_notif *mfuart_notif = (void *)pkt->data;
1673
Golan Ben-Ami0c8d0a42017-01-25 15:11:30 +02001674 IWL_DEBUG_INFO(mvm,
1675 "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
1676 le32_to_cpu(mfuart_notif->installed_ver),
1677 le32_to_cpu(mfuart_notif->external_ver),
1678 le32_to_cpu(mfuart_notif->status),
1679 le32_to_cpu(mfuart_notif->duration));
1680
Golan Ben-Ami19f63c52016-11-07 17:40:43 +02001681 if (iwl_rx_packet_payload_len(pkt) == sizeof(*mfuart_notif))
1682 IWL_DEBUG_INFO(mvm,
Golan Ben-Ami0c8d0a42017-01-25 15:11:30 +02001683 "MFUART: image size: 0x%08x\n",
Golan Ben-Ami19f63c52016-11-07 17:40:43 +02001684 le32_to_cpu(mfuart_notif->image_size));
Chaya Rachel Ivgy30269c12014-11-15 21:08:29 +02001685}