blob: 0b3ffd5e0f3bf3977d14041229593c021c810666 [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 }
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200486 mvm->nvm_sections[section_id].data = temp;
487 mvm->nvm_sections[section_id].length = section_size;
Eran Harary12147552013-05-09 08:07:59 +0300488
489 /* advance to the next section */
490 file_sec = (void *)(file_sec->data + section_size);
491 }
492out:
493 release_firmware(fw_entry);
494 return ret;
495}
496
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200497/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
498int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
499{
Eytan Lifshitz05159fc2014-01-07 12:50:45 +0200500 int i, ret = 0;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200501 struct iwl_nvm_section *sections = mvm->nvm_sections;
502
503 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
504
Emmanuel Grumbach099d8f22014-01-05 15:09:44 +0200505 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
506 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
507 continue;
508 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
509 sections[i].length);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200510 if (ret < 0) {
511 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
512 break;
513 }
514 }
515 return ret;
516}
517
Eran Harary14b485f2014-04-23 10:46:09 +0300518int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100519{
Eran Hararyd6aeb352014-05-11 09:44:17 +0300520 int ret, section;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300521 u32 size_read = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100522 u8 *nvm_buffer, *temp;
Eran Hararyd383c742015-03-24 10:59:46 +0200523 const char *nvm_file_B = mvm->cfg->default_nvm_file_B_step;
524 const char *nvm_file_C = mvm->cfg->default_nvm_file_C_step;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100525
Eran Hararyae2b21b2014-01-09 08:08:24 +0200526 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
527 return -EINVAL;
528
Eran Harary26481bf2014-03-25 14:14:44 +0200529 /* load NVM values from nic */
Eran Harary14b485f2014-04-23 10:46:09 +0300530 if (read_nvm_from_nic) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200531 /* Read From FW NVM */
532 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
Eran Harary12147552013-05-09 08:07:59 +0300533
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200534 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
535 GFP_KERNEL);
536 if (!nvm_buffer)
537 return -ENOMEM;
Eran Hararyd6aeb352014-05-11 09:44:17 +0300538 for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200539 /* we override the constness for initial read */
Liad Kaufman5daddc92014-05-21 14:37:00 +0300540 ret = iwl_nvm_read_section(mvm, section, nvm_buffer,
541 size_read);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200542 if (ret < 0)
Eran Hararyd6aeb352014-05-11 09:44:17 +0300543 continue;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300544 size_read += ret;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200545 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
546 if (!temp) {
547 ret = -ENOMEM;
548 break;
549 }
550 mvm->nvm_sections[section].data = temp;
551 mvm->nvm_sections[section].length = ret;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200552
553#ifdef CONFIG_IWLWIFI_DEBUGFS
554 switch (section) {
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200555 case NVM_SECTION_TYPE_SW:
556 mvm->nvm_sw_blob.data = temp;
557 mvm->nvm_sw_blob.size = ret;
558 break;
559 case NVM_SECTION_TYPE_CALIBRATION:
560 mvm->nvm_calib_blob.data = temp;
561 mvm->nvm_calib_blob.size = ret;
562 break;
563 case NVM_SECTION_TYPE_PRODUCTION:
564 mvm->nvm_prod_blob.data = temp;
565 mvm->nvm_prod_blob.size = ret;
566 break;
567 default:
Eran Hararyae2b21b2014-01-09 08:08:24 +0200568 if (section == mvm->cfg->nvm_hw_section_num) {
569 mvm->nvm_hw_blob.data = temp;
570 mvm->nvm_hw_blob.size = ret;
571 break;
572 }
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200573 }
574#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100575 }
Eran Hararybdce40f2014-07-01 17:31:38 +0300576 if (!size_read)
577 IWL_ERR(mvm, "OTP is blank\n");
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200578 kfree(nvm_buffer);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100579 }
580
Eran Harary4fb06282015-04-19 10:05:18 +0300581 /* Only if PNVM selected in the mod param - load external NVM */
Eran Hararye02a9d62014-05-07 12:27:10 +0300582 if (mvm->nvm_file_name) {
Eran Harary4fb06282015-04-19 10:05:18 +0300583 /* read External NVM file from the mod param */
Eran Harary26481bf2014-03-25 14:14:44 +0200584 ret = iwl_mvm_read_external_nvm(mvm);
Eran Hararyd383c742015-03-24 10:59:46 +0200585 if (ret) {
586 /* choose the nvm_file name according to the
587 * HW step
588 */
589 if (CSR_HW_REV_STEP(mvm->trans->hw_rev) ==
590 SILICON_B_STEP)
591 mvm->nvm_file_name = nvm_file_B;
592 else
593 mvm->nvm_file_name = nvm_file_C;
594
595 if (ret == -EFAULT && mvm->nvm_file_name) {
596 /* in case nvm file was failed try again */
597 ret = iwl_mvm_read_external_nvm(mvm);
598 if (ret)
599 return ret;
600 } else {
601 return ret;
602 }
603 }
Eran Harary26481bf2014-03-25 14:14:44 +0200604 }
605
606 /* parse the relevant nvm sections */
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200607 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
Johannes Berg82598b42013-05-13 21:44:42 +0200608 if (!mvm->nvm_data)
609 return -ENODATA;
Eran Harary2a831e02014-12-29 13:02:13 +0200610 IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n",
611 mvm->nvm_data->nvm_version);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100612
Johannes Berg82598b42013-05-13 21:44:42 +0200613 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100614}
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200615
616struct iwl_mcc_update_resp *
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200617iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2,
618 enum iwl_mcc_source src_id)
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200619{
620 struct iwl_mcc_update_cmd mcc_update_cmd = {
621 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200622 .source_id = (u8)src_id,
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200623 };
624 struct iwl_mcc_update_resp *mcc_resp, *resp_cp = NULL;
625 struct iwl_rx_packet *pkt;
626 struct iwl_host_cmd cmd = {
627 .id = MCC_UPDATE_CMD,
628 .flags = CMD_WANT_SKB,
629 .data = { &mcc_update_cmd },
630 };
631
632 int ret;
633 u32 status;
634 int resp_len, n_channels;
635 u16 mcc;
636
637 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
638 return ERR_PTR(-EOPNOTSUPP);
639
640 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd);
641
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200642 IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c' src = %d\n",
643 alpha2[0], alpha2[1], src_id);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200644
645 ret = iwl_mvm_send_cmd(mvm, &cmd);
646 if (ret)
647 return ERR_PTR(ret);
648
649 pkt = cmd.resp_pkt;
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200650
651 /* Extract MCC response */
652 mcc_resp = (void *)pkt->data;
653 status = le32_to_cpu(mcc_resp->status);
654
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200655 mcc = le16_to_cpu(mcc_resp->mcc);
656
657 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
658 if (mcc == 0) {
659 mcc = 0x3030; /* "00" - world */
660 mcc_resp->mcc = cpu_to_le16(mcc);
661 }
662
663 n_channels = __le32_to_cpu(mcc_resp->n_channels);
664 IWL_DEBUG_LAR(mvm,
665 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
666 status, mcc, mcc >> 8, mcc & 0xff,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200667 !!(status == MCC_RESP_NEW_CHAN_PROFILE), n_channels);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200668
669 resp_len = sizeof(*mcc_resp) + n_channels * sizeof(__le32);
670 resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL);
671 if (!resp_cp) {
672 ret = -ENOMEM;
673 goto exit;
674 }
675
676 ret = 0;
677exit:
678 iwl_free_resp(&cmd);
679 if (ret)
680 return ERR_PTR(ret);
681 return resp_cp;
682}
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200683
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200684#ifdef CONFIG_ACPI
685#define WRD_METHOD "WRDD"
686#define WRDD_WIFI (0x07)
687#define WRDD_WIGIG (0x10)
688
689static u32 iwl_mvm_wrdd_get_mcc(struct iwl_mvm *mvm, union acpi_object *wrdd)
690{
691 union acpi_object *mcc_pkg, *domain_type, *mcc_value;
692 u32 i;
693
694 if (wrdd->type != ACPI_TYPE_PACKAGE ||
695 wrdd->package.count < 2 ||
696 wrdd->package.elements[0].type != ACPI_TYPE_INTEGER ||
697 wrdd->package.elements[0].integer.value != 0) {
698 IWL_DEBUG_LAR(mvm, "Unsupported wrdd structure\n");
699 return 0;
700 }
701
702 for (i = 1 ; i < wrdd->package.count ; ++i) {
703 mcc_pkg = &wrdd->package.elements[i];
704
705 if (mcc_pkg->type != ACPI_TYPE_PACKAGE ||
706 mcc_pkg->package.count < 2 ||
707 mcc_pkg->package.elements[0].type != ACPI_TYPE_INTEGER ||
708 mcc_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) {
709 mcc_pkg = NULL;
710 continue;
711 }
712
713 domain_type = &mcc_pkg->package.elements[0];
714 if (domain_type->integer.value == WRDD_WIFI)
715 break;
716
717 mcc_pkg = NULL;
718 }
719
720 if (mcc_pkg) {
721 mcc_value = &mcc_pkg->package.elements[1];
722 return mcc_value->integer.value;
723 }
724
725 return 0;
726}
727
728static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
729{
730 acpi_handle root_handle;
731 acpi_handle handle;
732 struct acpi_buffer wrdd = {ACPI_ALLOCATE_BUFFER, NULL};
733 acpi_status status;
734 u32 mcc_val;
735 struct pci_dev *pdev = to_pci_dev(mvm->dev);
736
737 root_handle = ACPI_HANDLE(&pdev->dev);
738 if (!root_handle) {
739 IWL_DEBUG_LAR(mvm,
740 "Could not retrieve root port ACPI handle\n");
741 return -ENOENT;
742 }
743
744 /* Get the method's handle */
745 status = acpi_get_handle(root_handle, (acpi_string)WRD_METHOD, &handle);
746 if (ACPI_FAILURE(status)) {
747 IWL_DEBUG_LAR(mvm, "WRD method not found\n");
748 return -ENOENT;
749 }
750
751 /* Call WRDD with no arguments */
752 status = acpi_evaluate_object(handle, NULL, NULL, &wrdd);
753 if (ACPI_FAILURE(status)) {
754 IWL_DEBUG_LAR(mvm, "WRDC invocation failed (0x%x)\n", status);
755 return -ENOENT;
756 }
757
758 mcc_val = iwl_mvm_wrdd_get_mcc(mvm, wrdd.pointer);
759 kfree(wrdd.pointer);
760 if (!mcc_val)
761 return -ENOENT;
762
763 mcc[0] = (mcc_val >> 8) & 0xff;
764 mcc[1] = mcc_val & 0xff;
765 mcc[2] = '\0';
766 return 0;
767}
768#else /* CONFIG_ACPI */
769static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
770{
771 return -ENOENT;
772}
773#endif
774
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200775int iwl_mvm_init_mcc(struct iwl_mvm *mvm)
776{
Matti Gottliebd0d15192014-07-31 09:16:25 +0300777 bool tlv_lar;
778 bool nvm_lar;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200779 int retval;
780 struct ieee80211_regdomain *regd;
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200781 char mcc[3];
Matti Gottliebd0d15192014-07-31 09:16:25 +0300782
783 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000) {
Johannes Berg859d9142015-06-01 17:11:11 +0200784 tlv_lar = fw_has_capa(&mvm->fw->ucode_capa,
785 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Matti Gottliebd0d15192014-07-31 09:16:25 +0300786 nvm_lar = mvm->nvm_data->lar_enabled;
787 if (tlv_lar != nvm_lar)
788 IWL_INFO(mvm,
789 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
790 tlv_lar ? "enabled" : "disabled",
791 nvm_lar ? "enabled" : "disabled");
792 }
793
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200794 if (!iwl_mvm_is_lar_supported(mvm))
795 return 0;
796
797 /*
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200798 * try to replay the last set MCC to FW. If it doesn't exist,
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200799 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
800 */
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200801 retval = iwl_mvm_init_fw_regd(mvm);
802 if (retval != -ENOENT)
803 return retval;
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200804
805 /*
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200806 * Driver regulatory hint for initial update, this also informs the
807 * firmware we support wifi location updates.
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200808 * Disallow scans that might crash the FW while the LAR regdomain
809 * is not set.
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200810 */
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200811 mvm->lar_regdom_set = false;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200812
Jonathan Doron47c8b152014-11-27 16:55:25 +0200813 regd = iwl_mvm_get_current_regdomain(mvm, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200814 if (IS_ERR_OR_NULL(regd))
815 return -EIO;
816
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200817 if (iwl_mvm_is_wifi_mcc_supported(mvm) &&
818 !iwl_mvm_get_bios_mcc(mvm, mcc)) {
819 kfree(regd);
820 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200821 MCC_SOURCE_BIOS, NULL);
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200822 if (IS_ERR_OR_NULL(regd))
823 return -EIO;
824 }
825
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200826 retval = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
827 kfree(regd);
828 return retval;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200829}
830
Johannes Berg04168412015-06-23 21:22:09 +0200831void iwl_mvm_rx_chub_update_mcc(struct iwl_mvm *mvm,
832 struct iwl_rx_cmd_buffer *rxb)
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200833{
834 struct iwl_rx_packet *pkt = rxb_addr(rxb);
835 struct iwl_mcc_chub_notif *notif = (void *)pkt->data;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200836 enum iwl_mcc_source src;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200837 char mcc[3];
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200838 struct ieee80211_regdomain *regd;
839
840 lockdep_assert_held(&mvm->mutex);
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200841
842 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
Johannes Berg04168412015-06-23 21:22:09 +0200843 return;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200844
845 mcc[0] = notif->mcc >> 8;
846 mcc[1] = notif->mcc & 0xff;
847 mcc[2] = '\0';
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200848 src = notif->source_id;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200849
850 IWL_DEBUG_LAR(mvm,
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200851 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
852 mcc, src);
Jonathan Doron47c8b152014-11-27 16:55:25 +0200853 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200854 if (IS_ERR_OR_NULL(regd))
Johannes Berg04168412015-06-23 21:22:09 +0200855 return;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200856
857 regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
858 kfree(regd);
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200859}