blob: eade099b6dbf43c7378acb60057952549a6ba39f [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 Harary4fb06282015-04-19 10:05:18 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Matti Gottlieb6fa52432016-01-04 13:38:41 +020010 * Copyright(c) 2016 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 Harary4fb06282015-04-19 10:05:18 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Matti Gottlieb6fa52432016-01-04 13:38:41 +020037 * Copyright(c) 2016 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 *****************************************************************************/
Eran Harary12147552013-05-09 08:07:59 +030067#include <linux/firmware.h>
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +020068#include <linux/rtnetlink.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 },
Matti Gottlieb9a57f652015-11-02 13:01:54 +0200107 .flags = CMD_WANT_SKB | 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 };
Matti Gottlieb9a57f652015-11-02 13:01:54 +0200112 struct iwl_rx_packet *pkt;
113 struct iwl_nvm_access_resp *nvm_resp;
114 int ret;
Eran Harary12147552013-05-09 08:07:59 +0300115
Matti Gottlieb9a57f652015-11-02 13:01:54 +0200116 ret = iwl_mvm_send_cmd(mvm, &cmd);
117 if (ret)
118 return ret;
119
120 pkt = cmd.resp_pkt;
121 if (!pkt) {
122 IWL_ERR(mvm, "Error in NVM_ACCESS response\n");
123 return -EINVAL;
124 }
125 /* Extract & check NVM write response */
126 nvm_resp = (void *)pkt->data;
127 if (le16_to_cpu(nvm_resp->status) != READ_NVM_CHUNK_SUCCEED) {
128 IWL_ERR(mvm,
129 "NVM access write command failed for section %u (status = 0x%x)\n",
130 section, le16_to_cpu(nvm_resp->status));
131 ret = -EIO;
132 }
133
134 iwl_free_resp(&cmd);
135 return ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100136}
137
138static int iwl_nvm_read_chunk(struct iwl_mvm *mvm, u16 section,
139 u16 offset, u16 length, u8 *data)
140{
Eran Harary12147552013-05-09 08:07:59 +0300141 struct iwl_nvm_access_cmd nvm_access_cmd = {
142 .offset = cpu_to_le16(offset),
143 .length = cpu_to_le16(length),
144 .type = cpu_to_le16(section),
145 .op_code = NVM_READ_OPCODE,
146 };
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200147 struct iwl_nvm_access_resp *nvm_resp;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100148 struct iwl_rx_packet *pkt;
149 struct iwl_host_cmd cmd = {
150 .id = NVM_ACCESS_CMD,
Emmanuel Grumbacha1022922014-05-12 11:36:41 +0300151 .flags = CMD_WANT_SKB | CMD_SEND_IN_RFKILL,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100152 .data = { &nvm_access_cmd, },
153 };
154 int ret, bytes_read, offset_read;
155 u8 *resp_data;
156
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200157 cmd.len[0] = sizeof(struct iwl_nvm_access_cmd);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100158
159 ret = iwl_mvm_send_cmd(mvm, &cmd);
160 if (ret)
161 return ret;
162
163 pkt = cmd.resp_pkt;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100164
165 /* Extract NVM response */
166 nvm_resp = (void *)pkt->data;
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200167 ret = le16_to_cpu(nvm_resp->status);
168 bytes_read = le16_to_cpu(nvm_resp->length);
169 offset_read = le16_to_cpu(nvm_resp->offset);
170 resp_data = nvm_resp->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100171 if (ret) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300172 if ((offset != 0) &&
173 (ret == READ_NVM_CHUNK_NOT_VALID_ADDRESS)) {
174 /*
175 * meaning of NOT_VALID_ADDRESS:
176 * driver try to read chunk from address that is
177 * multiple of 2K and got an error since addr is empty.
178 * meaning of (offset != 0): driver already
179 * read valid data from another chunk so this case
180 * is not an error.
181 */
182 IWL_DEBUG_EEPROM(mvm->trans->dev,
183 "NVM access command failed on offset 0x%x since that section size is multiple 2K\n",
184 offset);
185 ret = 0;
186 } else {
187 IWL_DEBUG_EEPROM(mvm->trans->dev,
188 "NVM access command failed with status %d (device: %s)\n",
189 ret, mvm->cfg->name);
190 ret = -EIO;
191 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100192 goto exit;
193 }
194
195 if (offset_read != offset) {
196 IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n",
197 offset_read);
198 ret = -EINVAL;
199 goto exit;
200 }
201
202 /* Write data to NVM */
203 memcpy(data + offset, resp_data, bytes_read);
204 ret = bytes_read;
205
206exit:
207 iwl_free_resp(&cmd);
208 return ret;
209}
210
Eran Harary12147552013-05-09 08:07:59 +0300211static int iwl_nvm_write_section(struct iwl_mvm *mvm, u16 section,
212 const u8 *data, u16 length)
213{
214 int offset = 0;
215
216 /* copy data in chunks of 2k (and remainder if any) */
217
218 while (offset < length) {
219 int chunk_size, ret;
220
221 chunk_size = min(IWL_NVM_DEFAULT_CHUNK_SIZE,
222 length - offset);
223
224 ret = iwl_nvm_write_chunk(mvm, section, offset,
225 chunk_size, data + offset);
226 if (ret < 0)
227 return ret;
228
229 offset += chunk_size;
230 }
231
232 return 0;
233}
234
Johannes Berg7d162042015-09-17 15:54:47 +0200235static void iwl_mvm_nvm_fixups(struct iwl_mvm *mvm, unsigned int section,
236 u8 *data, unsigned int len)
237{
238#define IWL_4165_DEVICE_ID 0x5501
239#define NVM_SKU_CAP_MIMO_DISABLE BIT(5)
240
241 if (section == NVM_SECTION_TYPE_PHY_SKU &&
242 mvm->trans->hw_id == IWL_4165_DEVICE_ID && data && len >= 5 &&
243 (data[4] & NVM_SKU_CAP_MIMO_DISABLE))
244 /* OTP 0x52 bug work around: it's a 1x1 device */
245 data[3] = ANT_B | (ANT_B << 4);
246}
247
Johannes Berg8ca151b2013-01-24 14:25:36 +0100248/*
249 * Reads an NVM section completely.
250 * NICs prior to 7000 family doesn't have a real NVM, but just read
251 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
252 * by uCode, we need to manually check in this case that we don't
253 * overflow and try to read more than the EEPROM size.
254 * For 7000 family NICs, we supply the maximal size we can read, and
255 * the uCode fills the response with as much data as we can,
256 * without overflowing, so no check is needed.
257 */
258static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
Liad Kaufman5daddc92014-05-21 14:37:00 +0300259 u8 *data, u32 size_read)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100260{
261 u16 length, offset = 0;
262 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100263
Dor Shaish1fd4afe2013-02-27 10:18:07 +0200264 /* Set nvm section read length */
265 length = IWL_NVM_DEFAULT_CHUNK_SIZE;
266
Johannes Berg8ca151b2013-01-24 14:25:36 +0100267 ret = length;
268
269 /* Read the NVM until exhausted (reading less than requested) */
270 while (ret == length) {
Liad Kaufman5daddc92014-05-21 14:37:00 +0300271 /* Check no memory assumptions fail and cause an overflow */
272 if ((size_read + offset + length) >
273 mvm->cfg->base_params->eeprom_size) {
274 IWL_ERR(mvm, "EEPROM size is too small for NVM\n");
275 return -ENOBUFS;
276 }
277
Johannes Berg8ca151b2013-01-24 14:25:36 +0100278 ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
279 if (ret < 0) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300280 IWL_DEBUG_EEPROM(mvm->trans->dev,
281 "Cannot read NVM from section %d offset %d, length %d\n",
282 section, offset, length);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100283 return ret;
284 }
285 offset += ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100286 }
287
Johannes Berg7d162042015-09-17 15:54:47 +0200288 iwl_mvm_nvm_fixups(mvm, section, data, offset);
289
Johannes Berg07fd7d22013-05-15 14:38:25 +0200290 IWL_DEBUG_EEPROM(mvm->trans->dev,
291 "NVM section %d read completed\n", section);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100292 return offset;
293}
294
295static struct iwl_nvm_data *
296iwl_parse_nvm_sections(struct iwl_mvm *mvm)
297{
298 struct iwl_nvm_section *sections = mvm->nvm_sections;
Eran Hararyce500072014-12-01 17:53:53 +0200299 const __le16 *hw, *sw, *calib, *regulatory, *mac_override, *phy_sku;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200300 bool lar_enabled;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100301
302 /* Checking for required sections */
Eran Harary77db0a32014-02-04 14:21:38 +0200303 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
304 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
305 !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) {
Eran Hararyabf09c52014-07-01 17:33:29 +0300306 IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200307 return NULL;
308 }
309 } else {
Eran Harary9f32e012014-04-28 15:22:40 +0300310 /* SW and REGULATORY sections are mandatory */
Eran Harary77db0a32014-02-04 14:21:38 +0200311 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
Eran Harary77db0a32014-02-04 14:21:38 +0200312 !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) {
313 IWL_ERR(mvm,
Eran Hararyabf09c52014-07-01 17:33:29 +0300314 "Can't parse empty family 8000 OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200315 return NULL;
316 }
Eran Harary9f32e012014-04-28 15:22:40 +0300317 /* MAC_OVERRIDE or at least HW section must exist */
Eran Hararybb926922014-04-30 15:31:59 +0300318 if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data &&
Eran Harary9f32e012014-04-28 15:22:40 +0300319 !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
320 IWL_ERR(mvm,
321 "Can't parse mac_address, empty sections\n");
322 return NULL;
323 }
Eran Hararyce500072014-12-01 17:53:53 +0200324
Eran Hararyce500072014-12-01 17:53:53 +0200325 /* PHY_SKU section is mandatory in B0 */
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200326 if (!mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) {
Eran Hararyce500072014-12-01 17:53:53 +0200327 IWL_ERR(mvm,
328 "Can't parse phy_sku in B0, empty sections\n");
329 return NULL;
330 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100331 }
332
333 if (WARN_ON(!mvm->cfg))
334 return NULL;
335
Eran Hararyae2b21b2014-01-09 08:08:24 +0200336 hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100337 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
338 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200339 regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data;
340 mac_override =
341 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data;
Eran Hararyce500072014-12-01 17:53:53 +0200342 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200343
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200344 lar_enabled = !iwlwifi_mod_params.lar_disable &&
Johannes Berg859d9142015-06-01 17:11:11 +0200345 fw_has_capa(&mvm->fw->ucode_capa,
346 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200347
Sara Sharonafd5b172016-03-01 12:18:22 +0200348 return iwl_parse_nvm_data(mvm->trans, mvm->cfg, hw, sw, calib,
Eran Hararyce500072014-12-01 17:53:53 +0200349 regulatory, mac_override, phy_sku,
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200350 mvm->fw->valid_tx_ant, mvm->fw->valid_rx_ant,
Sara Sharonafd5b172016-03-01 12:18:22 +0200351 lar_enabled);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100352}
353
Eran Harary12147552013-05-09 08:07:59 +0300354#define MAX_NVM_FILE_LEN 16384
355
356/*
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200357 * Reads external NVM from a file into mvm->nvm_sections
358 *
Eran Harary12147552013-05-09 08:07:59 +0300359 * HOW TO CREATE THE NVM FILE FORMAT:
360 * ------------------------------
361 * 1. create hex file, format:
362 * 3800 -> header
363 * 0000 -> header
364 * 5a40 -> data
365 *
366 * rev - 6 bit (word1)
367 * len - 10 bit (word1)
368 * id - 4 bit (word2)
369 * rsv - 12 bit (word2)
370 *
371 * 2. flip 8bits with 8 bits per line to get the right NVM file format
372 *
373 * 3. create binary file from the hex file
374 *
375 * 4. save as "iNVM_xxx.bin" under /lib/firmware
376 */
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200377static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
Eran Harary12147552013-05-09 08:07:59 +0300378{
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200379 int ret, section_size;
380 u16 section_id;
Eran Harary12147552013-05-09 08:07:59 +0300381 const struct firmware *fw_entry;
382 const struct {
383 __le16 word1;
384 __le16 word2;
385 u8 data[];
386 } *file_sec;
Johannes Berg7d162042015-09-17 15:54:47 +0200387 const u8 *eof;
388 u8 *temp;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300389 int max_section_size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200390 const __le32 *dword_buff;
Eran Harary12147552013-05-09 08:07:59 +0300391
392#define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
393#define NVM_WORD2_ID(x) (x >> 12)
Eran Harary77db0a32014-02-04 14:21:38 +0200394#define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
395#define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
Idan Kahlona4e5df22014-11-13 15:47:20 +0200396#define NVM_HEADER_0 (0x2A504C54)
397#define NVM_HEADER_1 (0x4E564D2A)
398#define NVM_HEADER_SIZE (4 * sizeof(u32))
Eran Harary12147552013-05-09 08:07:59 +0300399
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200400 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n");
401
Liad Kaufmanf251c072014-04-28 14:42:04 +0300402 /* Maximal size depends on HW family and step */
403 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
404 max_section_size = IWL_MAX_NVM_SECTION_SIZE;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200405 else
406 max_section_size = IWL_MAX_NVM_8000_SECTION_SIZE;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300407
Eran Harary12147552013-05-09 08:07:59 +0300408 /*
409 * Obtain NVM image via request_firmware. Since we already used
410 * request_firmware_nowait() for the firmware binary load and only
411 * get here after that we assume the NVM request can be satisfied
412 * synchronously.
413 */
Eran Hararye02a9d62014-05-07 12:27:10 +0300414 ret = request_firmware(&fw_entry, mvm->nvm_file_name,
Eran Harary12147552013-05-09 08:07:59 +0300415 mvm->trans->dev);
416 if (ret) {
417 IWL_ERR(mvm, "ERROR: %s isn't available %d\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300418 mvm->nvm_file_name, ret);
Eran Harary12147552013-05-09 08:07:59 +0300419 return ret;
420 }
421
422 IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300423 mvm->nvm_file_name, fw_entry->size);
Eran Harary12147552013-05-09 08:07:59 +0300424
Eran Harary12147552013-05-09 08:07:59 +0300425 if (fw_entry->size > MAX_NVM_FILE_LEN) {
426 IWL_ERR(mvm, "NVM file too large\n");
427 ret = -EINVAL;
428 goto out;
429 }
430
431 eof = fw_entry->data + fw_entry->size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200432 dword_buff = (__le32 *)fw_entry->data;
Eran Harary12147552013-05-09 08:07:59 +0300433
Idan Kahlona4e5df22014-11-13 15:47:20 +0200434 /* some NVM file will contain a header.
435 * The header is identified by 2 dwords header as follow:
436 * dword[0] = 0x2A504C54
437 * dword[1] = 0x4E564D2A
438 *
439 * This header must be skipped when providing the NVM data to the FW.
440 */
441 if (fw_entry->size > NVM_HEADER_SIZE &&
442 dword_buff[0] == cpu_to_le32(NVM_HEADER_0) &&
443 dword_buff[1] == cpu_to_le32(NVM_HEADER_1)) {
444 file_sec = (void *)(fw_entry->data + NVM_HEADER_SIZE);
445 IWL_INFO(mvm, "NVM Version %08X\n", le32_to_cpu(dword_buff[2]));
446 IWL_INFO(mvm, "NVM Manufacturing date %08X\n",
447 le32_to_cpu(dword_buff[3]));
Eran Hararyd383c742015-03-24 10:59:46 +0200448
449 /* nvm file validation, dword_buff[2] holds the file version */
450 if ((CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_C_STEP &&
451 le32_to_cpu(dword_buff[2]) < 0xE4A) ||
452 (CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_B_STEP &&
453 le32_to_cpu(dword_buff[2]) >= 0xE4A)) {
454 ret = -EFAULT;
455 goto out;
456 }
Idan Kahlona4e5df22014-11-13 15:47:20 +0200457 } else {
458 file_sec = (void *)fw_entry->data;
459 }
Eran Harary12147552013-05-09 08:07:59 +0300460
461 while (true) {
462 if (file_sec->data > eof) {
463 IWL_ERR(mvm,
464 "ERROR - NVM file too short for section header\n");
465 ret = -EINVAL;
466 break;
467 }
468
469 /* check for EOF marker */
470 if (!file_sec->word1 && !file_sec->word2) {
471 ret = 0;
472 break;
473 }
474
Eran Harary77db0a32014-02-04 14:21:38 +0200475 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
476 section_size =
477 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1));
478 section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2));
479 } else {
480 section_size = 2 * NVM_WORD2_LEN_FAMILY_8000(
481 le16_to_cpu(file_sec->word2));
482 section_id = NVM_WORD1_ID_FAMILY_8000(
483 le16_to_cpu(file_sec->word1));
484 }
Eran Harary12147552013-05-09 08:07:59 +0300485
Liad Kaufmanf251c072014-04-28 14:42:04 +0300486 if (section_size > max_section_size) {
Eran Harary12147552013-05-09 08:07:59 +0300487 IWL_ERR(mvm, "ERROR - section too large (%d)\n",
488 section_size);
489 ret = -EINVAL;
490 break;
491 }
492
493 if (!section_size) {
494 IWL_ERR(mvm, "ERROR - section empty\n");
495 ret = -EINVAL;
496 break;
497 }
498
499 if (file_sec->data + section_size > eof) {
500 IWL_ERR(mvm,
501 "ERROR - NVM file too short for section (%d bytes)\n",
502 section_size);
503 ret = -EINVAL;
504 break;
505 }
506
Eran Hararyae2b21b2014-01-09 08:08:24 +0200507 if (WARN(section_id >= NVM_MAX_NUM_SECTIONS,
Eytan Lifshitza4a12472013-12-18 23:05:06 +0200508 "Invalid NVM section ID %d\n", section_id)) {
509 ret = -EINVAL;
510 break;
511 }
512
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200513 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL);
514 if (!temp) {
515 ret = -ENOMEM;
Eran Harary12147552013-05-09 08:07:59 +0300516 break;
517 }
Johannes Berg7d162042015-09-17 15:54:47 +0200518
519 iwl_mvm_nvm_fixups(mvm, section_id, temp, section_size);
520
Moshe Harel2edb7a32015-09-10 15:29:09 +0300521 kfree(mvm->nvm_sections[section_id].data);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200522 mvm->nvm_sections[section_id].data = temp;
523 mvm->nvm_sections[section_id].length = section_size;
Eran Harary12147552013-05-09 08:07:59 +0300524
525 /* advance to the next section */
526 file_sec = (void *)(file_sec->data + section_size);
527 }
528out:
529 release_firmware(fw_entry);
530 return ret;
531}
532
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200533/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
534int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
535{
Eytan Lifshitz05159fc2014-01-07 12:50:45 +0200536 int i, ret = 0;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200537 struct iwl_nvm_section *sections = mvm->nvm_sections;
538
539 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
540
Emmanuel Grumbach099d8f22014-01-05 15:09:44 +0200541 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
542 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
543 continue;
544 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
545 sections[i].length);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200546 if (ret < 0) {
547 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
548 break;
549 }
550 }
551 return ret;
552}
553
Eran Harary14b485f2014-04-23 10:46:09 +0300554int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100555{
Eran Hararyd6aeb352014-05-11 09:44:17 +0300556 int ret, section;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300557 u32 size_read = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100558 u8 *nvm_buffer, *temp;
Eran Hararyd383c742015-03-24 10:59:46 +0200559 const char *nvm_file_B = mvm->cfg->default_nvm_file_B_step;
560 const char *nvm_file_C = mvm->cfg->default_nvm_file_C_step;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100561
Eran Hararyae2b21b2014-01-09 08:08:24 +0200562 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
563 return -EINVAL;
564
Eran Harary26481bf2014-03-25 14:14:44 +0200565 /* load NVM values from nic */
Eran Harary14b485f2014-04-23 10:46:09 +0300566 if (read_nvm_from_nic) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200567 /* Read From FW NVM */
568 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
Eran Harary12147552013-05-09 08:07:59 +0300569
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200570 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
571 GFP_KERNEL);
572 if (!nvm_buffer)
573 return -ENOMEM;
Eran Hararyd6aeb352014-05-11 09:44:17 +0300574 for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200575 /* we override the constness for initial read */
Liad Kaufman5daddc92014-05-21 14:37:00 +0300576 ret = iwl_nvm_read_section(mvm, section, nvm_buffer,
577 size_read);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200578 if (ret < 0)
Eran Hararyd6aeb352014-05-11 09:44:17 +0300579 continue;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300580 size_read += ret;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200581 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
582 if (!temp) {
583 ret = -ENOMEM;
584 break;
585 }
Johannes Berg7d162042015-09-17 15:54:47 +0200586
587 iwl_mvm_nvm_fixups(mvm, section, temp, ret);
588
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200589 mvm->nvm_sections[section].data = temp;
590 mvm->nvm_sections[section].length = ret;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200591
592#ifdef CONFIG_IWLWIFI_DEBUGFS
593 switch (section) {
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200594 case NVM_SECTION_TYPE_SW:
595 mvm->nvm_sw_blob.data = temp;
596 mvm->nvm_sw_blob.size = ret;
597 break;
598 case NVM_SECTION_TYPE_CALIBRATION:
599 mvm->nvm_calib_blob.data = temp;
600 mvm->nvm_calib_blob.size = ret;
601 break;
602 case NVM_SECTION_TYPE_PRODUCTION:
603 mvm->nvm_prod_blob.data = temp;
604 mvm->nvm_prod_blob.size = ret;
605 break;
Moshe Harel91fac942015-09-02 12:45:12 +0300606 case NVM_SECTION_TYPE_PHY_SKU:
607 mvm->nvm_phy_sku_blob.data = temp;
608 mvm->nvm_phy_sku_blob.size = ret;
609 break;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200610 default:
Eran Hararyae2b21b2014-01-09 08:08:24 +0200611 if (section == mvm->cfg->nvm_hw_section_num) {
612 mvm->nvm_hw_blob.data = temp;
613 mvm->nvm_hw_blob.size = ret;
614 break;
615 }
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200616 }
617#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100618 }
Eran Hararybdce40f2014-07-01 17:31:38 +0300619 if (!size_read)
620 IWL_ERR(mvm, "OTP is blank\n");
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200621 kfree(nvm_buffer);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100622 }
623
Eran Harary4fb06282015-04-19 10:05:18 +0300624 /* Only if PNVM selected in the mod param - load external NVM */
Eran Hararye02a9d62014-05-07 12:27:10 +0300625 if (mvm->nvm_file_name) {
Eran Harary4fb06282015-04-19 10:05:18 +0300626 /* read External NVM file from the mod param */
Eran Harary26481bf2014-03-25 14:14:44 +0200627 ret = iwl_mvm_read_external_nvm(mvm);
Eran Hararyd383c742015-03-24 10:59:46 +0200628 if (ret) {
629 /* choose the nvm_file name according to the
630 * HW step
631 */
632 if (CSR_HW_REV_STEP(mvm->trans->hw_rev) ==
633 SILICON_B_STEP)
634 mvm->nvm_file_name = nvm_file_B;
635 else
636 mvm->nvm_file_name = nvm_file_C;
637
Oren Givon488c28e2015-11-25 11:17:41 +0200638 if ((ret == -EFAULT || ret == -ENOENT) &&
639 mvm->nvm_file_name) {
Eran Hararyd383c742015-03-24 10:59:46 +0200640 /* in case nvm file was failed try again */
641 ret = iwl_mvm_read_external_nvm(mvm);
642 if (ret)
643 return ret;
644 } else {
645 return ret;
646 }
647 }
Eran Harary26481bf2014-03-25 14:14:44 +0200648 }
649
650 /* parse the relevant nvm sections */
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200651 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
Johannes Berg82598b42013-05-13 21:44:42 +0200652 if (!mvm->nvm_data)
653 return -ENODATA;
Eran Harary2a831e02014-12-29 13:02:13 +0200654 IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n",
655 mvm->nvm_data->nvm_version);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100656
Johannes Berg82598b42013-05-13 21:44:42 +0200657 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100658}
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200659
660struct iwl_mcc_update_resp *
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200661iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2,
662 enum iwl_mcc_source src_id)
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200663{
664 struct iwl_mcc_update_cmd mcc_update_cmd = {
665 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200666 .source_id = (u8)src_id,
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200667 };
Arnd Bergmann5a7d87d2016-05-27 15:07:03 +0200668 struct iwl_mcc_update_resp *resp_cp;
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200669 struct iwl_rx_packet *pkt;
670 struct iwl_host_cmd cmd = {
671 .id = MCC_UPDATE_CMD,
672 .flags = CMD_WANT_SKB,
673 .data = { &mcc_update_cmd },
674 };
675
676 int ret;
677 u32 status;
678 int resp_len, n_channels;
679 u16 mcc;
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200680 bool resp_v2 = fw_has_capa(&mvm->fw->ucode_capa,
681 IWL_UCODE_TLV_CAPA_LAR_SUPPORT_V2);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200682
683 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
684 return ERR_PTR(-EOPNOTSUPP);
685
686 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd);
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200687 if (!resp_v2)
688 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd_v1);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200689
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200690 IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c' src = %d\n",
691 alpha2[0], alpha2[1], src_id);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200692
693 ret = iwl_mvm_send_cmd(mvm, &cmd);
694 if (ret)
695 return ERR_PTR(ret);
696
697 pkt = cmd.resp_pkt;
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200698
699 /* Extract MCC response */
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200700 if (resp_v2) {
Arnd Bergmann5a7d87d2016-05-27 15:07:03 +0200701 struct iwl_mcc_update_resp *mcc_resp = (void *)pkt->data;
702
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200703 n_channels = __le32_to_cpu(mcc_resp->n_channels);
Arnd Bergmann5a7d87d2016-05-27 15:07:03 +0200704 resp_len = sizeof(struct iwl_mcc_update_resp) +
705 n_channels * sizeof(__le32);
706 resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL);
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200707 } else {
Arnd Bergmann5a7d87d2016-05-27 15:07:03 +0200708 struct iwl_mcc_update_resp_v1 *mcc_resp_v1 = (void *)pkt->data;
709
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200710 n_channels = __le32_to_cpu(mcc_resp_v1->n_channels);
Arnd Bergmann5a7d87d2016-05-27 15:07:03 +0200711 resp_len = sizeof(struct iwl_mcc_update_resp) +
712 n_channels * sizeof(__le32);
713 resp_cp = kzalloc(resp_len, GFP_KERNEL);
714
715 if (resp_cp) {
716 resp_cp->status = mcc_resp_v1->status;
717 resp_cp->mcc = mcc_resp_v1->mcc;
718 resp_cp->cap = mcc_resp_v1->cap;
719 resp_cp->source_id = mcc_resp_v1->source_id;
720 resp_cp->n_channels = mcc_resp_v1->n_channels;
721 memcpy(resp_cp->channels, mcc_resp_v1->channels,
722 n_channels * sizeof(__le32));
723 }
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200724 }
725
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200726 if (!resp_cp) {
727 ret = -ENOMEM;
728 goto exit;
729 }
730
Matti Gottlieb6fa52432016-01-04 13:38:41 +0200731 status = le32_to_cpu(resp_cp->status);
732
733 mcc = le16_to_cpu(resp_cp->mcc);
734
735 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
736 if (mcc == 0) {
737 mcc = 0x3030; /* "00" - world */
738 resp_cp->mcc = cpu_to_le16(mcc);
739 }
740
741 IWL_DEBUG_LAR(mvm,
742 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
743 status, mcc, mcc >> 8, mcc & 0xff,
744 !!(status == MCC_RESP_NEW_CHAN_PROFILE), n_channels);
745
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200746exit:
747 iwl_free_resp(&cmd);
748 if (ret)
749 return ERR_PTR(ret);
750 return resp_cp;
751}
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200752
753int iwl_mvm_init_mcc(struct iwl_mvm *mvm)
754{
Matti Gottliebd0d15192014-07-31 09:16:25 +0300755 bool tlv_lar;
756 bool nvm_lar;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200757 int retval;
758 struct ieee80211_regdomain *regd;
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200759 char mcc[3];
Matti Gottliebd0d15192014-07-31 09:16:25 +0300760
761 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000) {
Johannes Berg859d9142015-06-01 17:11:11 +0200762 tlv_lar = fw_has_capa(&mvm->fw->ucode_capa,
763 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Matti Gottliebd0d15192014-07-31 09:16:25 +0300764 nvm_lar = mvm->nvm_data->lar_enabled;
765 if (tlv_lar != nvm_lar)
766 IWL_INFO(mvm,
767 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
768 tlv_lar ? "enabled" : "disabled",
769 nvm_lar ? "enabled" : "disabled");
770 }
771
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200772 if (!iwl_mvm_is_lar_supported(mvm))
773 return 0;
774
775 /*
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200776 * try to replay the last set MCC to FW. If it doesn't exist,
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200777 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
778 */
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200779 retval = iwl_mvm_init_fw_regd(mvm);
780 if (retval != -ENOENT)
781 return retval;
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200782
783 /*
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200784 * Driver regulatory hint for initial update, this also informs the
785 * firmware we support wifi location updates.
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200786 * Disallow scans that might crash the FW while the LAR regdomain
787 * is not set.
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200788 */
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200789 mvm->lar_regdom_set = false;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200790
Jonathan Doron47c8b152014-11-27 16:55:25 +0200791 regd = iwl_mvm_get_current_regdomain(mvm, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200792 if (IS_ERR_OR_NULL(regd))
793 return -EIO;
794
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200795 if (iwl_mvm_is_wifi_mcc_supported(mvm) &&
Arik Nemtsov671bed32016-08-07 18:58:29 +0300796 !iwl_get_bios_mcc(mvm->dev, mcc)) {
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200797 kfree(regd);
798 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200799 MCC_SOURCE_BIOS, NULL);
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200800 if (IS_ERR_OR_NULL(regd))
801 return -EIO;
802 }
803
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200804 retval = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
805 kfree(regd);
806 return retval;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200807}
808
Johannes Berg04168412015-06-23 21:22:09 +0200809void iwl_mvm_rx_chub_update_mcc(struct iwl_mvm *mvm,
810 struct iwl_rx_cmd_buffer *rxb)
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200811{
812 struct iwl_rx_packet *pkt = rxb_addr(rxb);
813 struct iwl_mcc_chub_notif *notif = (void *)pkt->data;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200814 enum iwl_mcc_source src;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200815 char mcc[3];
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200816 struct ieee80211_regdomain *regd;
817
818 lockdep_assert_held(&mvm->mutex);
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200819
820 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
Johannes Berg04168412015-06-23 21:22:09 +0200821 return;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200822
823 mcc[0] = notif->mcc >> 8;
824 mcc[1] = notif->mcc & 0xff;
825 mcc[2] = '\0';
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200826 src = notif->source_id;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200827
828 IWL_DEBUG_LAR(mvm,
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200829 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
830 mcc, src);
Jonathan Doron47c8b152014-11-27 16:55:25 +0200831 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200832 if (IS_ERR_OR_NULL(regd))
Johannes Berg04168412015-06-23 21:22:09 +0200833 return;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200834
835 regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
836 kfree(regd);
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200837}