blob: 675197d9f03eb6a56836a2ef87a86dfec3a3c2ed [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.
Johannes Berg8b4139d2014-07-24 14:05:26 +02009 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
24 *
25 * The full GNU General Public License is included in this distribution
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020026 * in the file called COPYING.
Johannes Berg8ca151b2013-01-24 14:25:36 +010027 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
32 * BSD LICENSE
33 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020034 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
Johannes Berg8b4139d2014-07-24 14:05:26 +020035 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
Johannes Berg8ca151b2013-01-24 14:25:36 +010036 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 *****************************************************************************/
Eran Harary12147552013-05-09 08:07:59 +030065#include <linux/firmware.h>
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +020066#include <linux/rtnetlink.h>
Jonathan Doron7f0344c2014-11-27 16:57:55 +020067#include <linux/pci.h>
68#include <linux/acpi.h>
Johannes Berg8ca151b2013-01-24 14:25:36 +010069#include "iwl-trans.h"
Liad Kaufmanc2a2b282014-09-07 11:41:05 +030070#include "iwl-csr.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010071#include "mvm.h"
72#include "iwl-eeprom-parse.h"
73#include "iwl-eeprom-read.h"
74#include "iwl-nvm-parse.h"
Eran Harary8ba2d7a2015-02-08 11:41:43 +020075#include "iwl-prph.h"
Johannes Berg8ca151b2013-01-24 14:25:36 +010076
Dor Shaish1fd4afe2013-02-27 10:18:07 +020077/* Default NVM size to read */
Eran Harary12147552013-05-09 08:07:59 +030078#define IWL_NVM_DEFAULT_CHUNK_SIZE (2*1024)
Liad Kaufmanf251c072014-04-28 14:42:04 +030079#define IWL_MAX_NVM_SECTION_SIZE 0x1b58
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +020080#define IWL_MAX_NVM_8000_SECTION_SIZE 0x1ffc
Dor Shaish1fd4afe2013-02-27 10:18:07 +020081
Eran Harary12147552013-05-09 08:07:59 +030082#define NVM_WRITE_OPCODE 1
83#define NVM_READ_OPCODE 0
84
Eran Hararyd6aeb352014-05-11 09:44:17 +030085/* load nvm chunk response */
86enum {
87 READ_NVM_CHUNK_SUCCEED = 0,
88 READ_NVM_CHUNK_NOT_VALID_ADDRESS = 1
89};
90
Eran Harary12147552013-05-09 08:07:59 +030091/*
92 * prepare the NVM host command w/ the pointers to the nvm buffer
93 * and send it to fw
94 */
95static int iwl_nvm_write_chunk(struct iwl_mvm *mvm, u16 section,
96 u16 offset, u16 length, const u8 *data)
Johannes Berg8ca151b2013-01-24 14:25:36 +010097{
Eran Harary12147552013-05-09 08:07:59 +030098 struct iwl_nvm_access_cmd nvm_access_cmd = {
99 .offset = cpu_to_le16(offset),
100 .length = cpu_to_le16(length),
101 .type = cpu_to_le16(section),
102 .op_code = NVM_WRITE_OPCODE,
103 };
104 struct iwl_host_cmd cmd = {
105 .id = NVM_ACCESS_CMD,
106 .len = { sizeof(struct iwl_nvm_access_cmd), length },
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300107 .flags = CMD_SEND_IN_RFKILL,
Eran Harary12147552013-05-09 08:07:59 +0300108 .data = { &nvm_access_cmd, data },
109 /* data may come from vmalloc, so use _DUP */
110 .dataflags = { 0, IWL_HCMD_DFL_DUP },
111 };
112
113 return iwl_mvm_send_cmd(mvm, &cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100114}
115
116static int iwl_nvm_read_chunk(struct iwl_mvm *mvm, u16 section,
117 u16 offset, u16 length, u8 *data)
118{
Eran Harary12147552013-05-09 08:07:59 +0300119 struct iwl_nvm_access_cmd nvm_access_cmd = {
120 .offset = cpu_to_le16(offset),
121 .length = cpu_to_le16(length),
122 .type = cpu_to_le16(section),
123 .op_code = NVM_READ_OPCODE,
124 };
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200125 struct iwl_nvm_access_resp *nvm_resp;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100126 struct iwl_rx_packet *pkt;
127 struct iwl_host_cmd cmd = {
128 .id = NVM_ACCESS_CMD,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300129 .flags = CMD_WANT_SKB | CMD_SEND_IN_RFKILL,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100130 .data = { &nvm_access_cmd, },
131 };
132 int ret, bytes_read, offset_read;
133 u8 *resp_data;
134
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200135 cmd.len[0] = sizeof(struct iwl_nvm_access_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136
137 ret = iwl_mvm_send_cmd(mvm, &cmd);
138 if (ret)
139 return ret;
140
141 pkt = cmd.resp_pkt;
142 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
143 IWL_ERR(mvm, "Bad return from NVM_ACCES_COMMAND (0x%08X)\n",
144 pkt->hdr.flags);
145 ret = -EIO;
146 goto exit;
147 }
148
149 /* Extract NVM response */
150 nvm_resp = (void *)pkt->data;
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200151 ret = le16_to_cpu(nvm_resp->status);
152 bytes_read = le16_to_cpu(nvm_resp->length);
153 offset_read = le16_to_cpu(nvm_resp->offset);
154 resp_data = nvm_resp->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100155 if (ret) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300156 if ((offset != 0) &&
157 (ret == READ_NVM_CHUNK_NOT_VALID_ADDRESS)) {
158 /*
159 * meaning of NOT_VALID_ADDRESS:
160 * driver try to read chunk from address that is
161 * multiple of 2K and got an error since addr is empty.
162 * meaning of (offset != 0): driver already
163 * read valid data from another chunk so this case
164 * is not an error.
165 */
166 IWL_DEBUG_EEPROM(mvm->trans->dev,
167 "NVM access command failed on offset 0x%x since that section size is multiple 2K\n",
168 offset);
169 ret = 0;
170 } else {
171 IWL_DEBUG_EEPROM(mvm->trans->dev,
172 "NVM access command failed with status %d (device: %s)\n",
173 ret, mvm->cfg->name);
174 ret = -EIO;
175 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100176 goto exit;
177 }
178
179 if (offset_read != offset) {
180 IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n",
181 offset_read);
182 ret = -EINVAL;
183 goto exit;
184 }
185
186 /* Write data to NVM */
187 memcpy(data + offset, resp_data, bytes_read);
188 ret = bytes_read;
189
190exit:
191 iwl_free_resp(&cmd);
192 return ret;
193}
194
Eran Harary12147552013-05-09 08:07:59 +0300195static int iwl_nvm_write_section(struct iwl_mvm *mvm, u16 section,
196 const u8 *data, u16 length)
197{
198 int offset = 0;
199
200 /* copy data in chunks of 2k (and remainder if any) */
201
202 while (offset < length) {
203 int chunk_size, ret;
204
205 chunk_size = min(IWL_NVM_DEFAULT_CHUNK_SIZE,
206 length - offset);
207
208 ret = iwl_nvm_write_chunk(mvm, section, offset,
209 chunk_size, data + offset);
210 if (ret < 0)
211 return ret;
212
213 offset += chunk_size;
214 }
215
216 return 0;
217}
218
Johannes Berg8ca151b2013-01-24 14:25:36 +0100219/*
220 * Reads an NVM section completely.
221 * NICs prior to 7000 family doesn't have a real NVM, but just read
222 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
223 * by uCode, we need to manually check in this case that we don't
224 * overflow and try to read more than the EEPROM size.
225 * For 7000 family NICs, we supply the maximal size we can read, and
226 * the uCode fills the response with as much data as we can,
227 * without overflowing, so no check is needed.
228 */
229static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
Liad Kaufman5daddc92014-05-21 14:37:00 +0300230 u8 *data, u32 size_read)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100231{
232 u16 length, offset = 0;
233 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100234
Dor Shaish1fd4afe2013-02-27 10:18:07 +0200235 /* Set nvm section read length */
236 length = IWL_NVM_DEFAULT_CHUNK_SIZE;
237
Johannes Berg8ca151b2013-01-24 14:25:36 +0100238 ret = length;
239
240 /* Read the NVM until exhausted (reading less than requested) */
241 while (ret == length) {
Liad Kaufman5daddc92014-05-21 14:37:00 +0300242 /* Check no memory assumptions fail and cause an overflow */
243 if ((size_read + offset + length) >
244 mvm->cfg->base_params->eeprom_size) {
245 IWL_ERR(mvm, "EEPROM size is too small for NVM\n");
246 return -ENOBUFS;
247 }
248
Johannes Berg8ca151b2013-01-24 14:25:36 +0100249 ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
250 if (ret < 0) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300251 IWL_DEBUG_EEPROM(mvm->trans->dev,
252 "Cannot read NVM from section %d offset %d, length %d\n",
253 section, offset, length);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100254 return ret;
255 }
256 offset += ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100257 }
258
Johannes Berg07fd7d22013-05-15 14:38:25 +0200259 IWL_DEBUG_EEPROM(mvm->trans->dev,
260 "NVM section %d read completed\n", section);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100261 return offset;
262}
263
264static struct iwl_nvm_data *
265iwl_parse_nvm_sections(struct iwl_mvm *mvm)
266{
267 struct iwl_nvm_section *sections = mvm->nvm_sections;
Eran Hararyce500072014-12-01 17:53:53 +0200268 const __le16 *hw, *sw, *calib, *regulatory, *mac_override, *phy_sku;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200269 bool lar_enabled;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200270 u32 mac_addr0, mac_addr1;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100271
272 /* Checking for required sections */
Eran Harary77db0a32014-02-04 14:21:38 +0200273 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
274 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
275 !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) {
Eran Hararyabf09c52014-07-01 17:33:29 +0300276 IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200277 return NULL;
278 }
279 } else {
Eran Harary9f32e012014-04-28 15:22:40 +0300280 /* SW and REGULATORY sections are mandatory */
Eran Harary77db0a32014-02-04 14:21:38 +0200281 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
Eran Harary77db0a32014-02-04 14:21:38 +0200282 !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) {
283 IWL_ERR(mvm,
Eran Hararyabf09c52014-07-01 17:33:29 +0300284 "Can't parse empty family 8000 OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200285 return NULL;
286 }
Eran Harary9f32e012014-04-28 15:22:40 +0300287 /* MAC_OVERRIDE or at least HW section must exist */
Eran Hararybb926922014-04-30 15:31:59 +0300288 if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data &&
Eran Harary9f32e012014-04-28 15:22:40 +0300289 !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
290 IWL_ERR(mvm,
291 "Can't parse mac_address, empty sections\n");
292 return NULL;
293 }
Eran Hararyce500072014-12-01 17:53:53 +0200294
Eran Hararyce500072014-12-01 17:53:53 +0200295 /* PHY_SKU section is mandatory in B0 */
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200296 if (!mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) {
Eran Hararyce500072014-12-01 17:53:53 +0200297 IWL_ERR(mvm,
298 "Can't parse phy_sku in B0, empty sections\n");
299 return NULL;
300 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301 }
302
303 if (WARN_ON(!mvm->cfg))
304 return NULL;
305
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200306 /* read the mac address from WFMP registers */
307 mac_addr0 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_0);
308 mac_addr1 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_1);
309
Eran Hararyae2b21b2014-01-09 08:08:24 +0200310 hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100311 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
312 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200313 regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data;
314 mac_override =
315 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data;
Eran Hararyce500072014-12-01 17:53:53 +0200316 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200317
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200318 lar_enabled = !iwlwifi_mod_params.lar_disable &&
319 (mvm->fw->ucode_capa.capa[0] &
320 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
321
Emmanuel Grumbach9ce4fa72013-05-22 13:16:23 +0300322 return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib,
Eran Hararyce500072014-12-01 17:53:53 +0200323 regulatory, mac_override, phy_sku,
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200324 mvm->fw->valid_tx_ant, mvm->fw->valid_rx_ant,
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200325 lar_enabled, mac_addr0, mac_addr1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100326}
327
Eran Harary12147552013-05-09 08:07:59 +0300328#define MAX_NVM_FILE_LEN 16384
329
330/*
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200331 * Reads external NVM from a file into mvm->nvm_sections
332 *
Eran Harary12147552013-05-09 08:07:59 +0300333 * HOW TO CREATE THE NVM FILE FORMAT:
334 * ------------------------------
335 * 1. create hex file, format:
336 * 3800 -> header
337 * 0000 -> header
338 * 5a40 -> data
339 *
340 * rev - 6 bit (word1)
341 * len - 10 bit (word1)
342 * id - 4 bit (word2)
343 * rsv - 12 bit (word2)
344 *
345 * 2. flip 8bits with 8 bits per line to get the right NVM file format
346 *
347 * 3. create binary file from the hex file
348 *
349 * 4. save as "iNVM_xxx.bin" under /lib/firmware
350 */
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200351static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
Eran Harary12147552013-05-09 08:07:59 +0300352{
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200353 int ret, section_size;
354 u16 section_id;
Eran Harary12147552013-05-09 08:07:59 +0300355 const struct firmware *fw_entry;
356 const struct {
357 __le16 word1;
358 __le16 word2;
359 u8 data[];
360 } *file_sec;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200361 const u8 *eof, *temp;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300362 int max_section_size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200363 const __le32 *dword_buff;
Eran Harary12147552013-05-09 08:07:59 +0300364
365#define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
366#define NVM_WORD2_ID(x) (x >> 12)
Eran Harary77db0a32014-02-04 14:21:38 +0200367#define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
368#define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
Idan Kahlona4e5df22014-11-13 15:47:20 +0200369#define NVM_HEADER_0 (0x2A504C54)
370#define NVM_HEADER_1 (0x4E564D2A)
371#define NVM_HEADER_SIZE (4 * sizeof(u32))
Eran Harary12147552013-05-09 08:07:59 +0300372
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200373 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n");
374
Liad Kaufmanf251c072014-04-28 14:42:04 +0300375 /* Maximal size depends on HW family and step */
376 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
377 max_section_size = IWL_MAX_NVM_SECTION_SIZE;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200378 else
379 max_section_size = IWL_MAX_NVM_8000_SECTION_SIZE;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300380
Eran Harary12147552013-05-09 08:07:59 +0300381 /*
382 * Obtain NVM image via request_firmware. Since we already used
383 * request_firmware_nowait() for the firmware binary load and only
384 * get here after that we assume the NVM request can be satisfied
385 * synchronously.
386 */
Eran Hararye02a9d62014-05-07 12:27:10 +0300387 ret = request_firmware(&fw_entry, mvm->nvm_file_name,
Eran Harary12147552013-05-09 08:07:59 +0300388 mvm->trans->dev);
389 if (ret) {
390 IWL_ERR(mvm, "ERROR: %s isn't available %d\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300391 mvm->nvm_file_name, ret);
Eran Harary12147552013-05-09 08:07:59 +0300392 return ret;
393 }
394
395 IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300396 mvm->nvm_file_name, fw_entry->size);
Eran Harary12147552013-05-09 08:07:59 +0300397
Eran Harary12147552013-05-09 08:07:59 +0300398 if (fw_entry->size > MAX_NVM_FILE_LEN) {
399 IWL_ERR(mvm, "NVM file too large\n");
400 ret = -EINVAL;
401 goto out;
402 }
403
404 eof = fw_entry->data + fw_entry->size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200405 dword_buff = (__le32 *)fw_entry->data;
Eran Harary12147552013-05-09 08:07:59 +0300406
Idan Kahlona4e5df22014-11-13 15:47:20 +0200407 /* some NVM file will contain a header.
408 * The header is identified by 2 dwords header as follow:
409 * dword[0] = 0x2A504C54
410 * dword[1] = 0x4E564D2A
411 *
412 * This header must be skipped when providing the NVM data to the FW.
413 */
414 if (fw_entry->size > NVM_HEADER_SIZE &&
415 dword_buff[0] == cpu_to_le32(NVM_HEADER_0) &&
416 dword_buff[1] == cpu_to_le32(NVM_HEADER_1)) {
417 file_sec = (void *)(fw_entry->data + NVM_HEADER_SIZE);
418 IWL_INFO(mvm, "NVM Version %08X\n", le32_to_cpu(dword_buff[2]));
419 IWL_INFO(mvm, "NVM Manufacturing date %08X\n",
420 le32_to_cpu(dword_buff[3]));
421 } else {
422 file_sec = (void *)fw_entry->data;
423 }
Eran Harary12147552013-05-09 08:07:59 +0300424
425 while (true) {
426 if (file_sec->data > eof) {
427 IWL_ERR(mvm,
428 "ERROR - NVM file too short for section header\n");
429 ret = -EINVAL;
430 break;
431 }
432
433 /* check for EOF marker */
434 if (!file_sec->word1 && !file_sec->word2) {
435 ret = 0;
436 break;
437 }
438
Eran Harary77db0a32014-02-04 14:21:38 +0200439 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
440 section_size =
441 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1));
442 section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2));
443 } else {
444 section_size = 2 * NVM_WORD2_LEN_FAMILY_8000(
445 le16_to_cpu(file_sec->word2));
446 section_id = NVM_WORD1_ID_FAMILY_8000(
447 le16_to_cpu(file_sec->word1));
448 }
Eran Harary12147552013-05-09 08:07:59 +0300449
Liad Kaufmanf251c072014-04-28 14:42:04 +0300450 if (section_size > max_section_size) {
Eran Harary12147552013-05-09 08:07:59 +0300451 IWL_ERR(mvm, "ERROR - section too large (%d)\n",
452 section_size);
453 ret = -EINVAL;
454 break;
455 }
456
457 if (!section_size) {
458 IWL_ERR(mvm, "ERROR - section empty\n");
459 ret = -EINVAL;
460 break;
461 }
462
463 if (file_sec->data + section_size > eof) {
464 IWL_ERR(mvm,
465 "ERROR - NVM file too short for section (%d bytes)\n",
466 section_size);
467 ret = -EINVAL;
468 break;
469 }
470
Eran Hararyae2b21b2014-01-09 08:08:24 +0200471 if (WARN(section_id >= NVM_MAX_NUM_SECTIONS,
Eytan Lifshitza4a12472013-12-18 23:05:06 +0200472 "Invalid NVM section ID %d\n", section_id)) {
473 ret = -EINVAL;
474 break;
475 }
476
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200477 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL);
478 if (!temp) {
479 ret = -ENOMEM;
Eran Harary12147552013-05-09 08:07:59 +0300480 break;
481 }
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200482 mvm->nvm_sections[section_id].data = temp;
483 mvm->nvm_sections[section_id].length = section_size;
Eran Harary12147552013-05-09 08:07:59 +0300484
485 /* advance to the next section */
486 file_sec = (void *)(file_sec->data + section_size);
487 }
488out:
489 release_firmware(fw_entry);
490 return ret;
491}
492
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200493/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
494int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
495{
Eytan Lifshitz05159fc2014-01-07 12:50:45 +0200496 int i, ret = 0;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200497 struct iwl_nvm_section *sections = mvm->nvm_sections;
498
499 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
500
Emmanuel Grumbach099d8f22014-01-05 15:09:44 +0200501 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
502 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
503 continue;
504 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
505 sections[i].length);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200506 if (ret < 0) {
507 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
508 break;
509 }
510 }
511 return ret;
512}
513
Eran Harary14b485f2014-04-23 10:46:09 +0300514int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100515{
Eran Hararyd6aeb352014-05-11 09:44:17 +0300516 int ret, section;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300517 u32 size_read = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100518 u8 *nvm_buffer, *temp;
519
Eran Hararyae2b21b2014-01-09 08:08:24 +0200520 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
521 return -EINVAL;
522
Eran Harary26481bf2014-03-25 14:14:44 +0200523 /* load NVM values from nic */
Eran Harary14b485f2014-04-23 10:46:09 +0300524 if (read_nvm_from_nic) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200525 /* Read From FW NVM */
526 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
Eran Harary12147552013-05-09 08:07:59 +0300527
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200528 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
529 GFP_KERNEL);
530 if (!nvm_buffer)
531 return -ENOMEM;
Eran Hararyd6aeb352014-05-11 09:44:17 +0300532 for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200533 /* we override the constness for initial read */
Liad Kaufman5daddc92014-05-21 14:37:00 +0300534 ret = iwl_nvm_read_section(mvm, section, nvm_buffer,
535 size_read);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200536 if (ret < 0)
Eran Hararyd6aeb352014-05-11 09:44:17 +0300537 continue;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300538 size_read += ret;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200539 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
540 if (!temp) {
541 ret = -ENOMEM;
542 break;
543 }
544 mvm->nvm_sections[section].data = temp;
545 mvm->nvm_sections[section].length = ret;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200546
547#ifdef CONFIG_IWLWIFI_DEBUGFS
548 switch (section) {
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200549 case NVM_SECTION_TYPE_SW:
550 mvm->nvm_sw_blob.data = temp;
551 mvm->nvm_sw_blob.size = ret;
552 break;
553 case NVM_SECTION_TYPE_CALIBRATION:
554 mvm->nvm_calib_blob.data = temp;
555 mvm->nvm_calib_blob.size = ret;
556 break;
557 case NVM_SECTION_TYPE_PRODUCTION:
558 mvm->nvm_prod_blob.data = temp;
559 mvm->nvm_prod_blob.size = ret;
560 break;
561 default:
Eran Hararyae2b21b2014-01-09 08:08:24 +0200562 if (section == mvm->cfg->nvm_hw_section_num) {
563 mvm->nvm_hw_blob.data = temp;
564 mvm->nvm_hw_blob.size = ret;
565 break;
566 }
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200567 }
568#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100569 }
Eran Hararybdce40f2014-07-01 17:31:38 +0300570 if (!size_read)
571 IWL_ERR(mvm, "OTP is blank\n");
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200572 kfree(nvm_buffer);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100573 }
574
Eran Harary26481bf2014-03-25 14:14:44 +0200575 /* load external NVM if configured */
Eran Hararye02a9d62014-05-07 12:27:10 +0300576 if (mvm->nvm_file_name) {
Eran Harary26481bf2014-03-25 14:14:44 +0200577 /* move to External NVM flow */
578 ret = iwl_mvm_read_external_nvm(mvm);
579 if (ret)
580 return ret;
581 }
582
583 /* parse the relevant nvm sections */
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200584 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
Johannes Berg82598b42013-05-13 21:44:42 +0200585 if (!mvm->nvm_data)
586 return -ENODATA;
Eran Harary2a831e02014-12-29 13:02:13 +0200587 IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n",
588 mvm->nvm_data->nvm_version);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100589
Johannes Berg82598b42013-05-13 21:44:42 +0200590 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100591}
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200592
593struct iwl_mcc_update_resp *
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200594iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2,
595 enum iwl_mcc_source src_id)
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200596{
597 struct iwl_mcc_update_cmd mcc_update_cmd = {
598 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200599 .source_id = (u8)src_id,
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200600 };
601 struct iwl_mcc_update_resp *mcc_resp, *resp_cp = NULL;
602 struct iwl_rx_packet *pkt;
603 struct iwl_host_cmd cmd = {
604 .id = MCC_UPDATE_CMD,
605 .flags = CMD_WANT_SKB,
606 .data = { &mcc_update_cmd },
607 };
608
609 int ret;
610 u32 status;
611 int resp_len, n_channels;
612 u16 mcc;
613
614 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
615 return ERR_PTR(-EOPNOTSUPP);
616
617 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd);
618
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200619 IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c' src = %d\n",
620 alpha2[0], alpha2[1], src_id);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200621
622 ret = iwl_mvm_send_cmd(mvm, &cmd);
623 if (ret)
624 return ERR_PTR(ret);
625
626 pkt = cmd.resp_pkt;
627 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
628 IWL_ERR(mvm, "Bad return from MCC_UPDATE_COMMAND (0x%08X)\n",
629 pkt->hdr.flags);
630 ret = -EIO;
631 goto exit;
632 }
633
634 /* Extract MCC response */
635 mcc_resp = (void *)pkt->data;
636 status = le32_to_cpu(mcc_resp->status);
637
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200638 mcc = le16_to_cpu(mcc_resp->mcc);
639
640 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
641 if (mcc == 0) {
642 mcc = 0x3030; /* "00" - world */
643 mcc_resp->mcc = cpu_to_le16(mcc);
644 }
645
646 n_channels = __le32_to_cpu(mcc_resp->n_channels);
647 IWL_DEBUG_LAR(mvm,
648 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
649 status, mcc, mcc >> 8, mcc & 0xff,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200650 !!(status == MCC_RESP_NEW_CHAN_PROFILE), n_channels);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200651
652 resp_len = sizeof(*mcc_resp) + n_channels * sizeof(__le32);
653 resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL);
654 if (!resp_cp) {
655 ret = -ENOMEM;
656 goto exit;
657 }
658
659 ret = 0;
660exit:
661 iwl_free_resp(&cmd);
662 if (ret)
663 return ERR_PTR(ret);
664 return resp_cp;
665}
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200666
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200667#ifdef CONFIG_ACPI
668#define WRD_METHOD "WRDD"
669#define WRDD_WIFI (0x07)
670#define WRDD_WIGIG (0x10)
671
672static u32 iwl_mvm_wrdd_get_mcc(struct iwl_mvm *mvm, union acpi_object *wrdd)
673{
674 union acpi_object *mcc_pkg, *domain_type, *mcc_value;
675 u32 i;
676
677 if (wrdd->type != ACPI_TYPE_PACKAGE ||
678 wrdd->package.count < 2 ||
679 wrdd->package.elements[0].type != ACPI_TYPE_INTEGER ||
680 wrdd->package.elements[0].integer.value != 0) {
681 IWL_DEBUG_LAR(mvm, "Unsupported wrdd structure\n");
682 return 0;
683 }
684
685 for (i = 1 ; i < wrdd->package.count ; ++i) {
686 mcc_pkg = &wrdd->package.elements[i];
687
688 if (mcc_pkg->type != ACPI_TYPE_PACKAGE ||
689 mcc_pkg->package.count < 2 ||
690 mcc_pkg->package.elements[0].type != ACPI_TYPE_INTEGER ||
691 mcc_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) {
692 mcc_pkg = NULL;
693 continue;
694 }
695
696 domain_type = &mcc_pkg->package.elements[0];
697 if (domain_type->integer.value == WRDD_WIFI)
698 break;
699
700 mcc_pkg = NULL;
701 }
702
703 if (mcc_pkg) {
704 mcc_value = &mcc_pkg->package.elements[1];
705 return mcc_value->integer.value;
706 }
707
708 return 0;
709}
710
711static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
712{
713 acpi_handle root_handle;
714 acpi_handle handle;
715 struct acpi_buffer wrdd = {ACPI_ALLOCATE_BUFFER, NULL};
716 acpi_status status;
717 u32 mcc_val;
718 struct pci_dev *pdev = to_pci_dev(mvm->dev);
719
720 root_handle = ACPI_HANDLE(&pdev->dev);
721 if (!root_handle) {
722 IWL_DEBUG_LAR(mvm,
723 "Could not retrieve root port ACPI handle\n");
724 return -ENOENT;
725 }
726
727 /* Get the method's handle */
728 status = acpi_get_handle(root_handle, (acpi_string)WRD_METHOD, &handle);
729 if (ACPI_FAILURE(status)) {
730 IWL_DEBUG_LAR(mvm, "WRD method not found\n");
731 return -ENOENT;
732 }
733
734 /* Call WRDD with no arguments */
735 status = acpi_evaluate_object(handle, NULL, NULL, &wrdd);
736 if (ACPI_FAILURE(status)) {
737 IWL_DEBUG_LAR(mvm, "WRDC invocation failed (0x%x)\n", status);
738 return -ENOENT;
739 }
740
741 mcc_val = iwl_mvm_wrdd_get_mcc(mvm, wrdd.pointer);
742 kfree(wrdd.pointer);
743 if (!mcc_val)
744 return -ENOENT;
745
746 mcc[0] = (mcc_val >> 8) & 0xff;
747 mcc[1] = mcc_val & 0xff;
748 mcc[2] = '\0';
749 return 0;
750}
751#else /* CONFIG_ACPI */
752static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
753{
754 return -ENOENT;
755}
756#endif
757
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200758int iwl_mvm_init_mcc(struct iwl_mvm *mvm)
759{
Matti Gottliebd0d15192014-07-31 09:16:25 +0300760 bool tlv_lar;
761 bool nvm_lar;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200762 int retval;
763 struct ieee80211_regdomain *regd;
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200764 char mcc[3];
Matti Gottliebd0d15192014-07-31 09:16:25 +0300765
766 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000) {
767 tlv_lar = mvm->fw->ucode_capa.capa[0] &
768 IWL_UCODE_TLV_CAPA_LAR_SUPPORT;
769 nvm_lar = mvm->nvm_data->lar_enabled;
770 if (tlv_lar != nvm_lar)
771 IWL_INFO(mvm,
772 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
773 tlv_lar ? "enabled" : "disabled",
774 nvm_lar ? "enabled" : "disabled");
775 }
776
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200777 if (!iwl_mvm_is_lar_supported(mvm))
778 return 0;
779
780 /*
781 * During HW restart, only replay the last set MCC to FW. Otherwise,
782 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
783 */
784 if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) {
785 /* This should only be called during vif up and hold RTNL */
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200786 return iwl_mvm_init_fw_regd(mvm);
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200787 }
788
789 /*
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200790 * Driver regulatory hint for initial update, this also informs the
791 * firmware we support wifi location updates.
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200792 * Disallow scans that might crash the FW while the LAR regdomain
793 * is not set.
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200794 */
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200795 mvm->lar_regdom_set = false;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200796
Jonathan Doron47c8b152014-11-27 16:55:25 +0200797 regd = iwl_mvm_get_current_regdomain(mvm, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200798 if (IS_ERR_OR_NULL(regd))
799 return -EIO;
800
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200801 if (iwl_mvm_is_wifi_mcc_supported(mvm) &&
802 !iwl_mvm_get_bios_mcc(mvm, mcc)) {
803 kfree(regd);
804 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200805 MCC_SOURCE_BIOS, NULL);
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200806 if (IS_ERR_OR_NULL(regd))
807 return -EIO;
808 }
809
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200810 retval = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
811 kfree(regd);
812 return retval;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200813}
814
815int iwl_mvm_rx_chub_update_mcc(struct iwl_mvm *mvm,
816 struct iwl_rx_cmd_buffer *rxb,
817 struct iwl_device_cmd *cmd)
818{
819 struct iwl_rx_packet *pkt = rxb_addr(rxb);
820 struct iwl_mcc_chub_notif *notif = (void *)pkt->data;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200821 enum iwl_mcc_source src;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200822 char mcc[3];
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200823 struct ieee80211_regdomain *regd;
824
825 lockdep_assert_held(&mvm->mutex);
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200826
827 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200828 return 0;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200829
830 mcc[0] = notif->mcc >> 8;
831 mcc[1] = notif->mcc & 0xff;
832 mcc[2] = '\0';
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200833 src = notif->source_id;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200834
835 IWL_DEBUG_LAR(mvm,
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200836 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
837 mcc, src);
Jonathan Doron47c8b152014-11-27 16:55:25 +0200838 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200839 if (IS_ERR_OR_NULL(regd))
840 return 0;
841
842 regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
843 kfree(regd);
844
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200845 return 0;
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200846}