blob: 2ee0f6fe56a1f58071247ca872479f587516668d [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
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.
Eran Harary4fb06282015-04-19 10:05:18 +030035 * Copyright(c) 2013 - 2015 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;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100142
143 /* Extract NVM response */
144 nvm_resp = (void *)pkt->data;
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200145 ret = le16_to_cpu(nvm_resp->status);
146 bytes_read = le16_to_cpu(nvm_resp->length);
147 offset_read = le16_to_cpu(nvm_resp->offset);
148 resp_data = nvm_resp->data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100149 if (ret) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300150 if ((offset != 0) &&
151 (ret == READ_NVM_CHUNK_NOT_VALID_ADDRESS)) {
152 /*
153 * meaning of NOT_VALID_ADDRESS:
154 * driver try to read chunk from address that is
155 * multiple of 2K and got an error since addr is empty.
156 * meaning of (offset != 0): driver already
157 * read valid data from another chunk so this case
158 * is not an error.
159 */
160 IWL_DEBUG_EEPROM(mvm->trans->dev,
161 "NVM access command failed on offset 0x%x since that section size is multiple 2K\n",
162 offset);
163 ret = 0;
164 } else {
165 IWL_DEBUG_EEPROM(mvm->trans->dev,
166 "NVM access command failed with status %d (device: %s)\n",
167 ret, mvm->cfg->name);
168 ret = -EIO;
169 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100170 goto exit;
171 }
172
173 if (offset_read != offset) {
174 IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n",
175 offset_read);
176 ret = -EINVAL;
177 goto exit;
178 }
179
180 /* Write data to NVM */
181 memcpy(data + offset, resp_data, bytes_read);
182 ret = bytes_read;
183
184exit:
185 iwl_free_resp(&cmd);
186 return ret;
187}
188
Eran Harary12147552013-05-09 08:07:59 +0300189static int iwl_nvm_write_section(struct iwl_mvm *mvm, u16 section,
190 const u8 *data, u16 length)
191{
192 int offset = 0;
193
194 /* copy data in chunks of 2k (and remainder if any) */
195
196 while (offset < length) {
197 int chunk_size, ret;
198
199 chunk_size = min(IWL_NVM_DEFAULT_CHUNK_SIZE,
200 length - offset);
201
202 ret = iwl_nvm_write_chunk(mvm, section, offset,
203 chunk_size, data + offset);
204 if (ret < 0)
205 return ret;
206
207 offset += chunk_size;
208 }
209
210 return 0;
211}
212
Johannes Berg8ca151b2013-01-24 14:25:36 +0100213/*
214 * Reads an NVM section completely.
215 * NICs prior to 7000 family doesn't have a real NVM, but just read
216 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
217 * by uCode, we need to manually check in this case that we don't
218 * overflow and try to read more than the EEPROM size.
219 * For 7000 family NICs, we supply the maximal size we can read, and
220 * the uCode fills the response with as much data as we can,
221 * without overflowing, so no check is needed.
222 */
223static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
Liad Kaufman5daddc92014-05-21 14:37:00 +0300224 u8 *data, u32 size_read)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100225{
226 u16 length, offset = 0;
227 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100228
Dor Shaish1fd4afe2013-02-27 10:18:07 +0200229 /* Set nvm section read length */
230 length = IWL_NVM_DEFAULT_CHUNK_SIZE;
231
Johannes Berg8ca151b2013-01-24 14:25:36 +0100232 ret = length;
233
234 /* Read the NVM until exhausted (reading less than requested) */
235 while (ret == length) {
Liad Kaufman5daddc92014-05-21 14:37:00 +0300236 /* Check no memory assumptions fail and cause an overflow */
237 if ((size_read + offset + length) >
238 mvm->cfg->base_params->eeprom_size) {
239 IWL_ERR(mvm, "EEPROM size is too small for NVM\n");
240 return -ENOBUFS;
241 }
242
Johannes Berg8ca151b2013-01-24 14:25:36 +0100243 ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
244 if (ret < 0) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300245 IWL_DEBUG_EEPROM(mvm->trans->dev,
246 "Cannot read NVM from section %d offset %d, length %d\n",
247 section, offset, length);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100248 return ret;
249 }
250 offset += ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100251 }
252
Johannes Berg07fd7d22013-05-15 14:38:25 +0200253 IWL_DEBUG_EEPROM(mvm->trans->dev,
254 "NVM section %d read completed\n", section);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100255 return offset;
256}
257
258static struct iwl_nvm_data *
259iwl_parse_nvm_sections(struct iwl_mvm *mvm)
260{
261 struct iwl_nvm_section *sections = mvm->nvm_sections;
Eran Hararyce500072014-12-01 17:53:53 +0200262 const __le16 *hw, *sw, *calib, *regulatory, *mac_override, *phy_sku;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200263 bool lar_enabled;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200264 u32 mac_addr0, mac_addr1;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100265
266 /* Checking for required sections */
Eran Harary77db0a32014-02-04 14:21:38 +0200267 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
268 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
269 !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) {
Eran Hararyabf09c52014-07-01 17:33:29 +0300270 IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200271 return NULL;
272 }
273 } else {
Eran Harary9f32e012014-04-28 15:22:40 +0300274 /* SW and REGULATORY sections are mandatory */
Eran Harary77db0a32014-02-04 14:21:38 +0200275 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
Eran Harary77db0a32014-02-04 14:21:38 +0200276 !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) {
277 IWL_ERR(mvm,
Eran Hararyabf09c52014-07-01 17:33:29 +0300278 "Can't parse empty family 8000 OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200279 return NULL;
280 }
Eran Harary9f32e012014-04-28 15:22:40 +0300281 /* MAC_OVERRIDE or at least HW section must exist */
Eran Hararybb926922014-04-30 15:31:59 +0300282 if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data &&
Eran Harary9f32e012014-04-28 15:22:40 +0300283 !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
284 IWL_ERR(mvm,
285 "Can't parse mac_address, empty sections\n");
286 return NULL;
287 }
Eran Hararyce500072014-12-01 17:53:53 +0200288
Eran Hararyce500072014-12-01 17:53:53 +0200289 /* PHY_SKU section is mandatory in B0 */
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200290 if (!mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) {
Eran Hararyce500072014-12-01 17:53:53 +0200291 IWL_ERR(mvm,
292 "Can't parse phy_sku in B0, empty sections\n");
293 return NULL;
294 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100295 }
296
297 if (WARN_ON(!mvm->cfg))
298 return NULL;
299
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200300 /* read the mac address from WFMP registers */
301 mac_addr0 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_0);
302 mac_addr1 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_1);
303
Eran Hararyae2b21b2014-01-09 08:08:24 +0200304 hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100305 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
306 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200307 regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data;
308 mac_override =
309 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data;
Eran Hararyce500072014-12-01 17:53:53 +0200310 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200311
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200312 lar_enabled = !iwlwifi_mod_params.lar_disable &&
Johannes Berg859d9142015-06-01 17:11:11 +0200313 fw_has_capa(&mvm->fw->ucode_capa,
314 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200315
Emmanuel Grumbach9ce4fa72013-05-22 13:16:23 +0300316 return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib,
Eran Hararyce500072014-12-01 17:53:53 +0200317 regulatory, mac_override, phy_sku,
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200318 mvm->fw->valid_tx_ant, mvm->fw->valid_rx_ant,
Moshe Harelbb35dc12015-09-06 16:50:33 +0300319 lar_enabled, mac_addr0, mac_addr1,
320 mvm->trans->hw_id);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100321}
322
Eran Harary12147552013-05-09 08:07:59 +0300323#define MAX_NVM_FILE_LEN 16384
324
325/*
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200326 * Reads external NVM from a file into mvm->nvm_sections
327 *
Eran Harary12147552013-05-09 08:07:59 +0300328 * HOW TO CREATE THE NVM FILE FORMAT:
329 * ------------------------------
330 * 1. create hex file, format:
331 * 3800 -> header
332 * 0000 -> header
333 * 5a40 -> data
334 *
335 * rev - 6 bit (word1)
336 * len - 10 bit (word1)
337 * id - 4 bit (word2)
338 * rsv - 12 bit (word2)
339 *
340 * 2. flip 8bits with 8 bits per line to get the right NVM file format
341 *
342 * 3. create binary file from the hex file
343 *
344 * 4. save as "iNVM_xxx.bin" under /lib/firmware
345 */
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200346static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
Eran Harary12147552013-05-09 08:07:59 +0300347{
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200348 int ret, section_size;
349 u16 section_id;
Eran Harary12147552013-05-09 08:07:59 +0300350 const struct firmware *fw_entry;
351 const struct {
352 __le16 word1;
353 __le16 word2;
354 u8 data[];
355 } *file_sec;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200356 const u8 *eof, *temp;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300357 int max_section_size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200358 const __le32 *dword_buff;
Eran Harary12147552013-05-09 08:07:59 +0300359
360#define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
361#define NVM_WORD2_ID(x) (x >> 12)
Eran Harary77db0a32014-02-04 14:21:38 +0200362#define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
363#define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
Idan Kahlona4e5df22014-11-13 15:47:20 +0200364#define NVM_HEADER_0 (0x2A504C54)
365#define NVM_HEADER_1 (0x4E564D2A)
366#define NVM_HEADER_SIZE (4 * sizeof(u32))
Eran Harary12147552013-05-09 08:07:59 +0300367
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200368 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n");
369
Liad Kaufmanf251c072014-04-28 14:42:04 +0300370 /* Maximal size depends on HW family and step */
371 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
372 max_section_size = IWL_MAX_NVM_SECTION_SIZE;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200373 else
374 max_section_size = IWL_MAX_NVM_8000_SECTION_SIZE;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300375
Eran Harary12147552013-05-09 08:07:59 +0300376 /*
377 * Obtain NVM image via request_firmware. Since we already used
378 * request_firmware_nowait() for the firmware binary load and only
379 * get here after that we assume the NVM request can be satisfied
380 * synchronously.
381 */
Eran Hararye02a9d62014-05-07 12:27:10 +0300382 ret = request_firmware(&fw_entry, mvm->nvm_file_name,
Eran Harary12147552013-05-09 08:07:59 +0300383 mvm->trans->dev);
384 if (ret) {
385 IWL_ERR(mvm, "ERROR: %s isn't available %d\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300386 mvm->nvm_file_name, ret);
Eran Harary12147552013-05-09 08:07:59 +0300387 return ret;
388 }
389
390 IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300391 mvm->nvm_file_name, fw_entry->size);
Eran Harary12147552013-05-09 08:07:59 +0300392
Eran Harary12147552013-05-09 08:07:59 +0300393 if (fw_entry->size > MAX_NVM_FILE_LEN) {
394 IWL_ERR(mvm, "NVM file too large\n");
395 ret = -EINVAL;
396 goto out;
397 }
398
399 eof = fw_entry->data + fw_entry->size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200400 dword_buff = (__le32 *)fw_entry->data;
Eran Harary12147552013-05-09 08:07:59 +0300401
Idan Kahlona4e5df22014-11-13 15:47:20 +0200402 /* some NVM file will contain a header.
403 * The header is identified by 2 dwords header as follow:
404 * dword[0] = 0x2A504C54
405 * dword[1] = 0x4E564D2A
406 *
407 * This header must be skipped when providing the NVM data to the FW.
408 */
409 if (fw_entry->size > NVM_HEADER_SIZE &&
410 dword_buff[0] == cpu_to_le32(NVM_HEADER_0) &&
411 dword_buff[1] == cpu_to_le32(NVM_HEADER_1)) {
412 file_sec = (void *)(fw_entry->data + NVM_HEADER_SIZE);
413 IWL_INFO(mvm, "NVM Version %08X\n", le32_to_cpu(dword_buff[2]));
414 IWL_INFO(mvm, "NVM Manufacturing date %08X\n",
415 le32_to_cpu(dword_buff[3]));
Eran Hararyd383c742015-03-24 10:59:46 +0200416
417 /* nvm file validation, dword_buff[2] holds the file version */
418 if ((CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_C_STEP &&
419 le32_to_cpu(dword_buff[2]) < 0xE4A) ||
420 (CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_B_STEP &&
421 le32_to_cpu(dword_buff[2]) >= 0xE4A)) {
422 ret = -EFAULT;
423 goto out;
424 }
Idan Kahlona4e5df22014-11-13 15:47:20 +0200425 } else {
426 file_sec = (void *)fw_entry->data;
427 }
Eran Harary12147552013-05-09 08:07:59 +0300428
429 while (true) {
430 if (file_sec->data > eof) {
431 IWL_ERR(mvm,
432 "ERROR - NVM file too short for section header\n");
433 ret = -EINVAL;
434 break;
435 }
436
437 /* check for EOF marker */
438 if (!file_sec->word1 && !file_sec->word2) {
439 ret = 0;
440 break;
441 }
442
Eran Harary77db0a32014-02-04 14:21:38 +0200443 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
444 section_size =
445 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1));
446 section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2));
447 } else {
448 section_size = 2 * NVM_WORD2_LEN_FAMILY_8000(
449 le16_to_cpu(file_sec->word2));
450 section_id = NVM_WORD1_ID_FAMILY_8000(
451 le16_to_cpu(file_sec->word1));
452 }
Eran Harary12147552013-05-09 08:07:59 +0300453
Liad Kaufmanf251c072014-04-28 14:42:04 +0300454 if (section_size > max_section_size) {
Eran Harary12147552013-05-09 08:07:59 +0300455 IWL_ERR(mvm, "ERROR - section too large (%d)\n",
456 section_size);
457 ret = -EINVAL;
458 break;
459 }
460
461 if (!section_size) {
462 IWL_ERR(mvm, "ERROR - section empty\n");
463 ret = -EINVAL;
464 break;
465 }
466
467 if (file_sec->data + section_size > eof) {
468 IWL_ERR(mvm,
469 "ERROR - NVM file too short for section (%d bytes)\n",
470 section_size);
471 ret = -EINVAL;
472 break;
473 }
474
Eran Hararyae2b21b2014-01-09 08:08:24 +0200475 if (WARN(section_id >= NVM_MAX_NUM_SECTIONS,
Eytan Lifshitza4a12472013-12-18 23:05:06 +0200476 "Invalid NVM section ID %d\n", section_id)) {
477 ret = -EINVAL;
478 break;
479 }
480
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200481 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL);
482 if (!temp) {
483 ret = -ENOMEM;
Eran Harary12147552013-05-09 08:07:59 +0300484 break;
485 }
Moshe Harel2edb7a32015-09-10 15:29:09 +0300486 kfree(mvm->nvm_sections[section_id].data);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200487 mvm->nvm_sections[section_id].data = temp;
488 mvm->nvm_sections[section_id].length = section_size;
Eran Harary12147552013-05-09 08:07:59 +0300489
490 /* advance to the next section */
491 file_sec = (void *)(file_sec->data + section_size);
492 }
493out:
494 release_firmware(fw_entry);
495 return ret;
496}
497
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200498/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
499int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
500{
Eytan Lifshitz05159fc2014-01-07 12:50:45 +0200501 int i, ret = 0;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200502 struct iwl_nvm_section *sections = mvm->nvm_sections;
503
504 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
505
Emmanuel Grumbach099d8f22014-01-05 15:09:44 +0200506 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
507 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
508 continue;
509 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
510 sections[i].length);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200511 if (ret < 0) {
512 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
513 break;
514 }
515 }
516 return ret;
517}
518
Eran Harary14b485f2014-04-23 10:46:09 +0300519int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100520{
Eran Hararyd6aeb352014-05-11 09:44:17 +0300521 int ret, section;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300522 u32 size_read = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100523 u8 *nvm_buffer, *temp;
Eran Hararyd383c742015-03-24 10:59:46 +0200524 const char *nvm_file_B = mvm->cfg->default_nvm_file_B_step;
525 const char *nvm_file_C = mvm->cfg->default_nvm_file_C_step;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100526
Eran Hararyae2b21b2014-01-09 08:08:24 +0200527 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
528 return -EINVAL;
529
Eran Harary26481bf2014-03-25 14:14:44 +0200530 /* load NVM values from nic */
Eran Harary14b485f2014-04-23 10:46:09 +0300531 if (read_nvm_from_nic) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200532 /* Read From FW NVM */
533 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
Eran Harary12147552013-05-09 08:07:59 +0300534
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200535 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
536 GFP_KERNEL);
537 if (!nvm_buffer)
538 return -ENOMEM;
Eran Hararyd6aeb352014-05-11 09:44:17 +0300539 for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200540 /* we override the constness for initial read */
Liad Kaufman5daddc92014-05-21 14:37:00 +0300541 ret = iwl_nvm_read_section(mvm, section, nvm_buffer,
542 size_read);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200543 if (ret < 0)
Eran Hararyd6aeb352014-05-11 09:44:17 +0300544 continue;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300545 size_read += ret;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200546 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
547 if (!temp) {
548 ret = -ENOMEM;
549 break;
550 }
551 mvm->nvm_sections[section].data = temp;
552 mvm->nvm_sections[section].length = ret;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200553
554#ifdef CONFIG_IWLWIFI_DEBUGFS
555 switch (section) {
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200556 case NVM_SECTION_TYPE_SW:
557 mvm->nvm_sw_blob.data = temp;
558 mvm->nvm_sw_blob.size = ret;
559 break;
560 case NVM_SECTION_TYPE_CALIBRATION:
561 mvm->nvm_calib_blob.data = temp;
562 mvm->nvm_calib_blob.size = ret;
563 break;
564 case NVM_SECTION_TYPE_PRODUCTION:
565 mvm->nvm_prod_blob.data = temp;
566 mvm->nvm_prod_blob.size = ret;
567 break;
Moshe Harel91fac942015-09-02 12:45:12 +0300568 case NVM_SECTION_TYPE_PHY_SKU:
569 mvm->nvm_phy_sku_blob.data = temp;
570 mvm->nvm_phy_sku_blob.size = ret;
571 break;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200572 default:
Eran Hararyae2b21b2014-01-09 08:08:24 +0200573 if (section == mvm->cfg->nvm_hw_section_num) {
574 mvm->nvm_hw_blob.data = temp;
575 mvm->nvm_hw_blob.size = ret;
576 break;
577 }
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200578 }
579#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100580 }
Eran Hararybdce40f2014-07-01 17:31:38 +0300581 if (!size_read)
582 IWL_ERR(mvm, "OTP is blank\n");
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200583 kfree(nvm_buffer);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100584 }
585
Eran Harary4fb06282015-04-19 10:05:18 +0300586 /* Only if PNVM selected in the mod param - load external NVM */
Eran Hararye02a9d62014-05-07 12:27:10 +0300587 if (mvm->nvm_file_name) {
Eran Harary4fb06282015-04-19 10:05:18 +0300588 /* read External NVM file from the mod param */
Eran Harary26481bf2014-03-25 14:14:44 +0200589 ret = iwl_mvm_read_external_nvm(mvm);
Eran Hararyd383c742015-03-24 10:59:46 +0200590 if (ret) {
591 /* choose the nvm_file name according to the
592 * HW step
593 */
594 if (CSR_HW_REV_STEP(mvm->trans->hw_rev) ==
595 SILICON_B_STEP)
596 mvm->nvm_file_name = nvm_file_B;
597 else
598 mvm->nvm_file_name = nvm_file_C;
599
600 if (ret == -EFAULT && mvm->nvm_file_name) {
601 /* in case nvm file was failed try again */
602 ret = iwl_mvm_read_external_nvm(mvm);
603 if (ret)
604 return ret;
605 } else {
606 return ret;
607 }
608 }
Eran Harary26481bf2014-03-25 14:14:44 +0200609 }
610
611 /* parse the relevant nvm sections */
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200612 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
Johannes Berg82598b42013-05-13 21:44:42 +0200613 if (!mvm->nvm_data)
614 return -ENODATA;
Eran Harary2a831e02014-12-29 13:02:13 +0200615 IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n",
616 mvm->nvm_data->nvm_version);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100617
Johannes Berg82598b42013-05-13 21:44:42 +0200618 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100619}
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200620
621struct iwl_mcc_update_resp *
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200622iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2,
623 enum iwl_mcc_source src_id)
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200624{
625 struct iwl_mcc_update_cmd mcc_update_cmd = {
626 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200627 .source_id = (u8)src_id,
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200628 };
629 struct iwl_mcc_update_resp *mcc_resp, *resp_cp = NULL;
630 struct iwl_rx_packet *pkt;
631 struct iwl_host_cmd cmd = {
632 .id = MCC_UPDATE_CMD,
633 .flags = CMD_WANT_SKB,
634 .data = { &mcc_update_cmd },
635 };
636
637 int ret;
638 u32 status;
639 int resp_len, n_channels;
640 u16 mcc;
641
642 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
643 return ERR_PTR(-EOPNOTSUPP);
644
645 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd);
646
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200647 IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c' src = %d\n",
648 alpha2[0], alpha2[1], src_id);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200649
650 ret = iwl_mvm_send_cmd(mvm, &cmd);
651 if (ret)
652 return ERR_PTR(ret);
653
654 pkt = cmd.resp_pkt;
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200655
656 /* Extract MCC response */
657 mcc_resp = (void *)pkt->data;
658 status = le32_to_cpu(mcc_resp->status);
659
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200660 mcc = le16_to_cpu(mcc_resp->mcc);
661
662 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
663 if (mcc == 0) {
664 mcc = 0x3030; /* "00" - world */
665 mcc_resp->mcc = cpu_to_le16(mcc);
666 }
667
668 n_channels = __le32_to_cpu(mcc_resp->n_channels);
669 IWL_DEBUG_LAR(mvm,
670 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
671 status, mcc, mcc >> 8, mcc & 0xff,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200672 !!(status == MCC_RESP_NEW_CHAN_PROFILE), n_channels);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200673
674 resp_len = sizeof(*mcc_resp) + n_channels * sizeof(__le32);
675 resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL);
676 if (!resp_cp) {
677 ret = -ENOMEM;
678 goto exit;
679 }
680
681 ret = 0;
682exit:
683 iwl_free_resp(&cmd);
684 if (ret)
685 return ERR_PTR(ret);
686 return resp_cp;
687}
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200688
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200689#ifdef CONFIG_ACPI
690#define WRD_METHOD "WRDD"
691#define WRDD_WIFI (0x07)
692#define WRDD_WIGIG (0x10)
693
694static u32 iwl_mvm_wrdd_get_mcc(struct iwl_mvm *mvm, union acpi_object *wrdd)
695{
696 union acpi_object *mcc_pkg, *domain_type, *mcc_value;
697 u32 i;
698
699 if (wrdd->type != ACPI_TYPE_PACKAGE ||
700 wrdd->package.count < 2 ||
701 wrdd->package.elements[0].type != ACPI_TYPE_INTEGER ||
702 wrdd->package.elements[0].integer.value != 0) {
703 IWL_DEBUG_LAR(mvm, "Unsupported wrdd structure\n");
704 return 0;
705 }
706
707 for (i = 1 ; i < wrdd->package.count ; ++i) {
708 mcc_pkg = &wrdd->package.elements[i];
709
710 if (mcc_pkg->type != ACPI_TYPE_PACKAGE ||
711 mcc_pkg->package.count < 2 ||
712 mcc_pkg->package.elements[0].type != ACPI_TYPE_INTEGER ||
713 mcc_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) {
714 mcc_pkg = NULL;
715 continue;
716 }
717
718 domain_type = &mcc_pkg->package.elements[0];
719 if (domain_type->integer.value == WRDD_WIFI)
720 break;
721
722 mcc_pkg = NULL;
723 }
724
725 if (mcc_pkg) {
726 mcc_value = &mcc_pkg->package.elements[1];
727 return mcc_value->integer.value;
728 }
729
730 return 0;
731}
732
733static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
734{
735 acpi_handle root_handle;
736 acpi_handle handle;
737 struct acpi_buffer wrdd = {ACPI_ALLOCATE_BUFFER, NULL};
738 acpi_status status;
739 u32 mcc_val;
740 struct pci_dev *pdev = to_pci_dev(mvm->dev);
741
742 root_handle = ACPI_HANDLE(&pdev->dev);
743 if (!root_handle) {
744 IWL_DEBUG_LAR(mvm,
745 "Could not retrieve root port ACPI handle\n");
746 return -ENOENT;
747 }
748
749 /* Get the method's handle */
750 status = acpi_get_handle(root_handle, (acpi_string)WRD_METHOD, &handle);
751 if (ACPI_FAILURE(status)) {
752 IWL_DEBUG_LAR(mvm, "WRD method not found\n");
753 return -ENOENT;
754 }
755
756 /* Call WRDD with no arguments */
757 status = acpi_evaluate_object(handle, NULL, NULL, &wrdd);
758 if (ACPI_FAILURE(status)) {
759 IWL_DEBUG_LAR(mvm, "WRDC invocation failed (0x%x)\n", status);
760 return -ENOENT;
761 }
762
763 mcc_val = iwl_mvm_wrdd_get_mcc(mvm, wrdd.pointer);
764 kfree(wrdd.pointer);
765 if (!mcc_val)
766 return -ENOENT;
767
768 mcc[0] = (mcc_val >> 8) & 0xff;
769 mcc[1] = mcc_val & 0xff;
770 mcc[2] = '\0';
771 return 0;
772}
773#else /* CONFIG_ACPI */
774static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
775{
776 return -ENOENT;
777}
778#endif
779
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200780int iwl_mvm_init_mcc(struct iwl_mvm *mvm)
781{
Matti Gottliebd0d15192014-07-31 09:16:25 +0300782 bool tlv_lar;
783 bool nvm_lar;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200784 int retval;
785 struct ieee80211_regdomain *regd;
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200786 char mcc[3];
Matti Gottliebd0d15192014-07-31 09:16:25 +0300787
788 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000) {
Johannes Berg859d9142015-06-01 17:11:11 +0200789 tlv_lar = fw_has_capa(&mvm->fw->ucode_capa,
790 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Matti Gottliebd0d15192014-07-31 09:16:25 +0300791 nvm_lar = mvm->nvm_data->lar_enabled;
792 if (tlv_lar != nvm_lar)
793 IWL_INFO(mvm,
794 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
795 tlv_lar ? "enabled" : "disabled",
796 nvm_lar ? "enabled" : "disabled");
797 }
798
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200799 if (!iwl_mvm_is_lar_supported(mvm))
800 return 0;
801
802 /*
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200803 * try to replay the last set MCC to FW. If it doesn't exist,
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200804 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
805 */
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200806 retval = iwl_mvm_init_fw_regd(mvm);
807 if (retval != -ENOENT)
808 return retval;
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200809
810 /*
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200811 * Driver regulatory hint for initial update, this also informs the
812 * firmware we support wifi location updates.
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200813 * Disallow scans that might crash the FW while the LAR regdomain
814 * is not set.
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200815 */
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200816 mvm->lar_regdom_set = false;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200817
Jonathan Doron47c8b152014-11-27 16:55:25 +0200818 regd = iwl_mvm_get_current_regdomain(mvm, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200819 if (IS_ERR_OR_NULL(regd))
820 return -EIO;
821
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200822 if (iwl_mvm_is_wifi_mcc_supported(mvm) &&
823 !iwl_mvm_get_bios_mcc(mvm, mcc)) {
824 kfree(regd);
825 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200826 MCC_SOURCE_BIOS, NULL);
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200827 if (IS_ERR_OR_NULL(regd))
828 return -EIO;
829 }
830
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200831 retval = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
832 kfree(regd);
833 return retval;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200834}
835
Johannes Berg04168412015-06-23 21:22:09 +0200836void iwl_mvm_rx_chub_update_mcc(struct iwl_mvm *mvm,
837 struct iwl_rx_cmd_buffer *rxb)
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200838{
839 struct iwl_rx_packet *pkt = rxb_addr(rxb);
840 struct iwl_mcc_chub_notif *notif = (void *)pkt->data;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200841 enum iwl_mcc_source src;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200842 char mcc[3];
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200843 struct ieee80211_regdomain *regd;
844
845 lockdep_assert_held(&mvm->mutex);
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200846
847 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
Johannes Berg04168412015-06-23 21:22:09 +0200848 return;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200849
850 mcc[0] = notif->mcc >> 8;
851 mcc[1] = notif->mcc & 0xff;
852 mcc[2] = '\0';
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200853 src = notif->source_id;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200854
855 IWL_DEBUG_LAR(mvm,
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200856 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
857 mcc, src);
Jonathan Doron47c8b152014-11-27 16:55:25 +0200858 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200859 if (IS_ERR_OR_NULL(regd))
Johannes Berg04168412015-06-23 21:22:09 +0200860 return;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200861
862 regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
863 kfree(regd);
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200864}