blob: 1edcfcc459f42a4bae1035c2ccc466c3c54490c8 [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 Berg7d162042015-09-17 15:54:47 +0200213static void iwl_mvm_nvm_fixups(struct iwl_mvm *mvm, unsigned int section,
214 u8 *data, unsigned int len)
215{
216#define IWL_4165_DEVICE_ID 0x5501
217#define NVM_SKU_CAP_MIMO_DISABLE BIT(5)
218
219 if (section == NVM_SECTION_TYPE_PHY_SKU &&
220 mvm->trans->hw_id == IWL_4165_DEVICE_ID && data && len >= 5 &&
221 (data[4] & NVM_SKU_CAP_MIMO_DISABLE))
222 /* OTP 0x52 bug work around: it's a 1x1 device */
223 data[3] = ANT_B | (ANT_B << 4);
224}
225
Johannes Berg8ca151b2013-01-24 14:25:36 +0100226/*
227 * Reads an NVM section completely.
228 * NICs prior to 7000 family doesn't have a real NVM, but just read
229 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
230 * by uCode, we need to manually check in this case that we don't
231 * overflow and try to read more than the EEPROM size.
232 * For 7000 family NICs, we supply the maximal size we can read, and
233 * the uCode fills the response with as much data as we can,
234 * without overflowing, so no check is needed.
235 */
236static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
Liad Kaufman5daddc92014-05-21 14:37:00 +0300237 u8 *data, u32 size_read)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100238{
239 u16 length, offset = 0;
240 int ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100241
Dor Shaish1fd4afe2013-02-27 10:18:07 +0200242 /* Set nvm section read length */
243 length = IWL_NVM_DEFAULT_CHUNK_SIZE;
244
Johannes Berg8ca151b2013-01-24 14:25:36 +0100245 ret = length;
246
247 /* Read the NVM until exhausted (reading less than requested) */
248 while (ret == length) {
Liad Kaufman5daddc92014-05-21 14:37:00 +0300249 /* Check no memory assumptions fail and cause an overflow */
250 if ((size_read + offset + length) >
251 mvm->cfg->base_params->eeprom_size) {
252 IWL_ERR(mvm, "EEPROM size is too small for NVM\n");
253 return -ENOBUFS;
254 }
255
Johannes Berg8ca151b2013-01-24 14:25:36 +0100256 ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
257 if (ret < 0) {
Eran Hararyd6aeb352014-05-11 09:44:17 +0300258 IWL_DEBUG_EEPROM(mvm->trans->dev,
259 "Cannot read NVM from section %d offset %d, length %d\n",
260 section, offset, length);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100261 return ret;
262 }
263 offset += ret;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100264 }
265
Johannes Berg7d162042015-09-17 15:54:47 +0200266 iwl_mvm_nvm_fixups(mvm, section, data, offset);
267
Johannes Berg07fd7d22013-05-15 14:38:25 +0200268 IWL_DEBUG_EEPROM(mvm->trans->dev,
269 "NVM section %d read completed\n", section);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100270 return offset;
271}
272
273static struct iwl_nvm_data *
274iwl_parse_nvm_sections(struct iwl_mvm *mvm)
275{
276 struct iwl_nvm_section *sections = mvm->nvm_sections;
Eran Hararyce500072014-12-01 17:53:53 +0200277 const __le16 *hw, *sw, *calib, *regulatory, *mac_override, *phy_sku;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200278 bool lar_enabled;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200279 u32 mac_addr0, mac_addr1;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100280
281 /* Checking for required sections */
Eran Harary77db0a32014-02-04 14:21:38 +0200282 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
283 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
284 !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) {
Eran Hararyabf09c52014-07-01 17:33:29 +0300285 IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200286 return NULL;
287 }
288 } else {
Eran Harary9f32e012014-04-28 15:22:40 +0300289 /* SW and REGULATORY sections are mandatory */
Eran Harary77db0a32014-02-04 14:21:38 +0200290 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
Eran Harary77db0a32014-02-04 14:21:38 +0200291 !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) {
292 IWL_ERR(mvm,
Eran Hararyabf09c52014-07-01 17:33:29 +0300293 "Can't parse empty family 8000 OTP/NVM sections\n");
Eran Harary77db0a32014-02-04 14:21:38 +0200294 return NULL;
295 }
Eran Harary9f32e012014-04-28 15:22:40 +0300296 /* MAC_OVERRIDE or at least HW section must exist */
Eran Hararybb926922014-04-30 15:31:59 +0300297 if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data &&
Eran Harary9f32e012014-04-28 15:22:40 +0300298 !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) {
299 IWL_ERR(mvm,
300 "Can't parse mac_address, empty sections\n");
301 return NULL;
302 }
Eran Hararyce500072014-12-01 17:53:53 +0200303
Eran Hararyce500072014-12-01 17:53:53 +0200304 /* PHY_SKU section is mandatory in B0 */
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200305 if (!mvm->nvm_sections[NVM_SECTION_TYPE_PHY_SKU].data) {
Eran Hararyce500072014-12-01 17:53:53 +0200306 IWL_ERR(mvm,
307 "Can't parse phy_sku in B0, empty sections\n");
308 return NULL;
309 }
Johannes Berg8ca151b2013-01-24 14:25:36 +0100310 }
311
312 if (WARN_ON(!mvm->cfg))
313 return NULL;
314
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200315 /* read the mac address from WFMP registers */
316 mac_addr0 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_0);
317 mac_addr1 = iwl_trans_read_prph(mvm->trans, WFMP_MAC_ADDR_1);
318
Eran Hararyae2b21b2014-01-09 08:08:24 +0200319 hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100320 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
321 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200322 regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data;
323 mac_override =
324 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data;
Eran Hararyce500072014-12-01 17:53:53 +0200325 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data;
Eran Harary77db0a32014-02-04 14:21:38 +0200326
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200327 lar_enabled = !iwlwifi_mod_params.lar_disable &&
Johannes Berg859d9142015-06-01 17:11:11 +0200328 fw_has_capa(&mvm->fw->ucode_capa,
329 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200330
Emmanuel Grumbach9ce4fa72013-05-22 13:16:23 +0300331 return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib,
Eran Hararyce500072014-12-01 17:53:53 +0200332 regulatory, mac_override, phy_sku,
Arik Nemtsov5711cac2014-12-28 09:23:16 +0200333 mvm->fw->valid_tx_ant, mvm->fw->valid_rx_ant,
Johannes Berg7d162042015-09-17 15:54:47 +0200334 lar_enabled, mac_addr0, mac_addr1);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100335}
336
Eran Harary12147552013-05-09 08:07:59 +0300337#define MAX_NVM_FILE_LEN 16384
338
339/*
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200340 * Reads external NVM from a file into mvm->nvm_sections
341 *
Eran Harary12147552013-05-09 08:07:59 +0300342 * HOW TO CREATE THE NVM FILE FORMAT:
343 * ------------------------------
344 * 1. create hex file, format:
345 * 3800 -> header
346 * 0000 -> header
347 * 5a40 -> data
348 *
349 * rev - 6 bit (word1)
350 * len - 10 bit (word1)
351 * id - 4 bit (word2)
352 * rsv - 12 bit (word2)
353 *
354 * 2. flip 8bits with 8 bits per line to get the right NVM file format
355 *
356 * 3. create binary file from the hex file
357 *
358 * 4. save as "iNVM_xxx.bin" under /lib/firmware
359 */
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200360static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
Eran Harary12147552013-05-09 08:07:59 +0300361{
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200362 int ret, section_size;
363 u16 section_id;
Eran Harary12147552013-05-09 08:07:59 +0300364 const struct firmware *fw_entry;
365 const struct {
366 __le16 word1;
367 __le16 word2;
368 u8 data[];
369 } *file_sec;
Johannes Berg7d162042015-09-17 15:54:47 +0200370 const u8 *eof;
371 u8 *temp;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300372 int max_section_size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200373 const __le32 *dword_buff;
Eran Harary12147552013-05-09 08:07:59 +0300374
375#define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
376#define NVM_WORD2_ID(x) (x >> 12)
Eran Harary77db0a32014-02-04 14:21:38 +0200377#define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
378#define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
Idan Kahlona4e5df22014-11-13 15:47:20 +0200379#define NVM_HEADER_0 (0x2A504C54)
380#define NVM_HEADER_1 (0x4E564D2A)
381#define NVM_HEADER_SIZE (4 * sizeof(u32))
Eran Harary12147552013-05-09 08:07:59 +0300382
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200383 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n");
384
Liad Kaufmanf251c072014-04-28 14:42:04 +0300385 /* Maximal size depends on HW family and step */
386 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000)
387 max_section_size = IWL_MAX_NVM_SECTION_SIZE;
Emmanuel Grumbach5dd9c682015-03-05 13:06:13 +0200388 else
389 max_section_size = IWL_MAX_NVM_8000_SECTION_SIZE;
Liad Kaufmanf251c072014-04-28 14:42:04 +0300390
Eran Harary12147552013-05-09 08:07:59 +0300391 /*
392 * Obtain NVM image via request_firmware. Since we already used
393 * request_firmware_nowait() for the firmware binary load and only
394 * get here after that we assume the NVM request can be satisfied
395 * synchronously.
396 */
Eran Hararye02a9d62014-05-07 12:27:10 +0300397 ret = request_firmware(&fw_entry, mvm->nvm_file_name,
Eran Harary12147552013-05-09 08:07:59 +0300398 mvm->trans->dev);
399 if (ret) {
400 IWL_ERR(mvm, "ERROR: %s isn't available %d\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300401 mvm->nvm_file_name, ret);
Eran Harary12147552013-05-09 08:07:59 +0300402 return ret;
403 }
404
405 IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n",
Eran Hararye02a9d62014-05-07 12:27:10 +0300406 mvm->nvm_file_name, fw_entry->size);
Eran Harary12147552013-05-09 08:07:59 +0300407
Eran Harary12147552013-05-09 08:07:59 +0300408 if (fw_entry->size > MAX_NVM_FILE_LEN) {
409 IWL_ERR(mvm, "NVM file too large\n");
410 ret = -EINVAL;
411 goto out;
412 }
413
414 eof = fw_entry->data + fw_entry->size;
Idan Kahlona4e5df22014-11-13 15:47:20 +0200415 dword_buff = (__le32 *)fw_entry->data;
Eran Harary12147552013-05-09 08:07:59 +0300416
Idan Kahlona4e5df22014-11-13 15:47:20 +0200417 /* some NVM file will contain a header.
418 * The header is identified by 2 dwords header as follow:
419 * dword[0] = 0x2A504C54
420 * dword[1] = 0x4E564D2A
421 *
422 * This header must be skipped when providing the NVM data to the FW.
423 */
424 if (fw_entry->size > NVM_HEADER_SIZE &&
425 dword_buff[0] == cpu_to_le32(NVM_HEADER_0) &&
426 dword_buff[1] == cpu_to_le32(NVM_HEADER_1)) {
427 file_sec = (void *)(fw_entry->data + NVM_HEADER_SIZE);
428 IWL_INFO(mvm, "NVM Version %08X\n", le32_to_cpu(dword_buff[2]));
429 IWL_INFO(mvm, "NVM Manufacturing date %08X\n",
430 le32_to_cpu(dword_buff[3]));
Eran Hararyd383c742015-03-24 10:59:46 +0200431
432 /* nvm file validation, dword_buff[2] holds the file version */
433 if ((CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_C_STEP &&
434 le32_to_cpu(dword_buff[2]) < 0xE4A) ||
435 (CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_B_STEP &&
436 le32_to_cpu(dword_buff[2]) >= 0xE4A)) {
437 ret = -EFAULT;
438 goto out;
439 }
Idan Kahlona4e5df22014-11-13 15:47:20 +0200440 } else {
441 file_sec = (void *)fw_entry->data;
442 }
Eran Harary12147552013-05-09 08:07:59 +0300443
444 while (true) {
445 if (file_sec->data > eof) {
446 IWL_ERR(mvm,
447 "ERROR - NVM file too short for section header\n");
448 ret = -EINVAL;
449 break;
450 }
451
452 /* check for EOF marker */
453 if (!file_sec->word1 && !file_sec->word2) {
454 ret = 0;
455 break;
456 }
457
Eran Harary77db0a32014-02-04 14:21:38 +0200458 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
459 section_size =
460 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1));
461 section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2));
462 } else {
463 section_size = 2 * NVM_WORD2_LEN_FAMILY_8000(
464 le16_to_cpu(file_sec->word2));
465 section_id = NVM_WORD1_ID_FAMILY_8000(
466 le16_to_cpu(file_sec->word1));
467 }
Eran Harary12147552013-05-09 08:07:59 +0300468
Liad Kaufmanf251c072014-04-28 14:42:04 +0300469 if (section_size > max_section_size) {
Eran Harary12147552013-05-09 08:07:59 +0300470 IWL_ERR(mvm, "ERROR - section too large (%d)\n",
471 section_size);
472 ret = -EINVAL;
473 break;
474 }
475
476 if (!section_size) {
477 IWL_ERR(mvm, "ERROR - section empty\n");
478 ret = -EINVAL;
479 break;
480 }
481
482 if (file_sec->data + section_size > eof) {
483 IWL_ERR(mvm,
484 "ERROR - NVM file too short for section (%d bytes)\n",
485 section_size);
486 ret = -EINVAL;
487 break;
488 }
489
Eran Hararyae2b21b2014-01-09 08:08:24 +0200490 if (WARN(section_id >= NVM_MAX_NUM_SECTIONS,
Eytan Lifshitza4a12472013-12-18 23:05:06 +0200491 "Invalid NVM section ID %d\n", section_id)) {
492 ret = -EINVAL;
493 break;
494 }
495
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200496 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL);
497 if (!temp) {
498 ret = -ENOMEM;
Eran Harary12147552013-05-09 08:07:59 +0300499 break;
500 }
Johannes Berg7d162042015-09-17 15:54:47 +0200501
502 iwl_mvm_nvm_fixups(mvm, section_id, temp, section_size);
503
Moshe Harel2edb7a32015-09-10 15:29:09 +0300504 kfree(mvm->nvm_sections[section_id].data);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200505 mvm->nvm_sections[section_id].data = temp;
506 mvm->nvm_sections[section_id].length = section_size;
Eran Harary12147552013-05-09 08:07:59 +0300507
508 /* advance to the next section */
509 file_sec = (void *)(file_sec->data + section_size);
510 }
511out:
512 release_firmware(fw_entry);
513 return ret;
514}
515
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200516/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
517int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
518{
Eytan Lifshitz05159fc2014-01-07 12:50:45 +0200519 int i, ret = 0;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200520 struct iwl_nvm_section *sections = mvm->nvm_sections;
521
522 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
523
Emmanuel Grumbach099d8f22014-01-05 15:09:44 +0200524 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
525 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
526 continue;
527 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
528 sections[i].length);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200529 if (ret < 0) {
530 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
531 break;
532 }
533 }
534 return ret;
535}
536
Eran Harary14b485f2014-04-23 10:46:09 +0300537int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic)
Johannes Berg8ca151b2013-01-24 14:25:36 +0100538{
Eran Hararyd6aeb352014-05-11 09:44:17 +0300539 int ret, section;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300540 u32 size_read = 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100541 u8 *nvm_buffer, *temp;
Eran Hararyd383c742015-03-24 10:59:46 +0200542 const char *nvm_file_B = mvm->cfg->default_nvm_file_B_step;
543 const char *nvm_file_C = mvm->cfg->default_nvm_file_C_step;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100544
Eran Hararyae2b21b2014-01-09 08:08:24 +0200545 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
546 return -EINVAL;
547
Eran Harary26481bf2014-03-25 14:14:44 +0200548 /* load NVM values from nic */
Eran Harary14b485f2014-04-23 10:46:09 +0300549 if (read_nvm_from_nic) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200550 /* Read From FW NVM */
551 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
Eran Harary12147552013-05-09 08:07:59 +0300552
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200553 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
554 GFP_KERNEL);
555 if (!nvm_buffer)
556 return -ENOMEM;
Eran Hararyd6aeb352014-05-11 09:44:17 +0300557 for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) {
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200558 /* we override the constness for initial read */
Liad Kaufman5daddc92014-05-21 14:37:00 +0300559 ret = iwl_nvm_read_section(mvm, section, nvm_buffer,
560 size_read);
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200561 if (ret < 0)
Eran Hararyd6aeb352014-05-11 09:44:17 +0300562 continue;
Liad Kaufman5daddc92014-05-21 14:37:00 +0300563 size_read += ret;
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200564 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
565 if (!temp) {
566 ret = -ENOMEM;
567 break;
568 }
Johannes Berg7d162042015-09-17 15:54:47 +0200569
570 iwl_mvm_nvm_fixups(mvm, section, temp, ret);
571
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200572 mvm->nvm_sections[section].data = temp;
573 mvm->nvm_sections[section].length = ret;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200574
575#ifdef CONFIG_IWLWIFI_DEBUGFS
576 switch (section) {
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200577 case NVM_SECTION_TYPE_SW:
578 mvm->nvm_sw_blob.data = temp;
579 mvm->nvm_sw_blob.size = ret;
580 break;
581 case NVM_SECTION_TYPE_CALIBRATION:
582 mvm->nvm_calib_blob.data = temp;
583 mvm->nvm_calib_blob.size = ret;
584 break;
585 case NVM_SECTION_TYPE_PRODUCTION:
586 mvm->nvm_prod_blob.data = temp;
587 mvm->nvm_prod_blob.size = ret;
588 break;
Moshe Harel91fac942015-09-02 12:45:12 +0300589 case NVM_SECTION_TYPE_PHY_SKU:
590 mvm->nvm_phy_sku_blob.data = temp;
591 mvm->nvm_phy_sku_blob.size = ret;
592 break;
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200593 default:
Eran Hararyae2b21b2014-01-09 08:08:24 +0200594 if (section == mvm->cfg->nvm_hw_section_num) {
595 mvm->nvm_hw_blob.data = temp;
596 mvm->nvm_hw_blob.size = ret;
597 break;
598 }
Emmanuel Grumbach086f7362013-11-18 17:00:03 +0200599 }
600#endif
Johannes Berg8ca151b2013-01-24 14:25:36 +0100601 }
Eran Hararybdce40f2014-07-01 17:31:38 +0300602 if (!size_read)
603 IWL_ERR(mvm, "OTP is blank\n");
Eytan Lifshitz81a67e32013-09-11 12:39:18 +0200604 kfree(nvm_buffer);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100605 }
606
Eran Harary4fb06282015-04-19 10:05:18 +0300607 /* Only if PNVM selected in the mod param - load external NVM */
Eran Hararye02a9d62014-05-07 12:27:10 +0300608 if (mvm->nvm_file_name) {
Eran Harary4fb06282015-04-19 10:05:18 +0300609 /* read External NVM file from the mod param */
Eran Harary26481bf2014-03-25 14:14:44 +0200610 ret = iwl_mvm_read_external_nvm(mvm);
Eran Hararyd383c742015-03-24 10:59:46 +0200611 if (ret) {
612 /* choose the nvm_file name according to the
613 * HW step
614 */
615 if (CSR_HW_REV_STEP(mvm->trans->hw_rev) ==
616 SILICON_B_STEP)
617 mvm->nvm_file_name = nvm_file_B;
618 else
619 mvm->nvm_file_name = nvm_file_C;
620
621 if (ret == -EFAULT && mvm->nvm_file_name) {
622 /* in case nvm file was failed try again */
623 ret = iwl_mvm_read_external_nvm(mvm);
624 if (ret)
625 return ret;
626 } else {
627 return ret;
628 }
629 }
Eran Harary26481bf2014-03-25 14:14:44 +0200630 }
631
632 /* parse the relevant nvm sections */
Emmanuel Grumbachb9545b42013-03-06 11:34:44 +0200633 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
Johannes Berg82598b42013-05-13 21:44:42 +0200634 if (!mvm->nvm_data)
635 return -ENODATA;
Eran Harary2a831e02014-12-29 13:02:13 +0200636 IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n",
637 mvm->nvm_data->nvm_version);
Johannes Berg8ca151b2013-01-24 14:25:36 +0100638
Johannes Berg82598b42013-05-13 21:44:42 +0200639 return 0;
Johannes Berg8ca151b2013-01-24 14:25:36 +0100640}
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200641
642struct iwl_mcc_update_resp *
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200643iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2,
644 enum iwl_mcc_source src_id)
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200645{
646 struct iwl_mcc_update_cmd mcc_update_cmd = {
647 .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]),
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200648 .source_id = (u8)src_id,
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200649 };
650 struct iwl_mcc_update_resp *mcc_resp, *resp_cp = NULL;
651 struct iwl_rx_packet *pkt;
652 struct iwl_host_cmd cmd = {
653 .id = MCC_UPDATE_CMD,
654 .flags = CMD_WANT_SKB,
655 .data = { &mcc_update_cmd },
656 };
657
658 int ret;
659 u32 status;
660 int resp_len, n_channels;
661 u16 mcc;
662
663 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
664 return ERR_PTR(-EOPNOTSUPP);
665
666 cmd.len[0] = sizeof(struct iwl_mcc_update_cmd);
667
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200668 IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c' src = %d\n",
669 alpha2[0], alpha2[1], src_id);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200670
671 ret = iwl_mvm_send_cmd(mvm, &cmd);
672 if (ret)
673 return ERR_PTR(ret);
674
675 pkt = cmd.resp_pkt;
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200676
677 /* Extract MCC response */
678 mcc_resp = (void *)pkt->data;
679 status = le32_to_cpu(mcc_resp->status);
680
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200681 mcc = le16_to_cpu(mcc_resp->mcc);
682
683 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
684 if (mcc == 0) {
685 mcc = 0x3030; /* "00" - world */
686 mcc_resp->mcc = cpu_to_le16(mcc);
687 }
688
689 n_channels = __le32_to_cpu(mcc_resp->n_channels);
690 IWL_DEBUG_LAR(mvm,
691 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
692 status, mcc, mcc >> 8, mcc & 0xff,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200693 !!(status == MCC_RESP_NEW_CHAN_PROFILE), n_channels);
Arik Nemtsovdcaf9f52014-03-04 19:54:12 +0200694
695 resp_len = sizeof(*mcc_resp) + n_channels * sizeof(__le32);
696 resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL);
697 if (!resp_cp) {
698 ret = -ENOMEM;
699 goto exit;
700 }
701
702 ret = 0;
703exit:
704 iwl_free_resp(&cmd);
705 if (ret)
706 return ERR_PTR(ret);
707 return resp_cp;
708}
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200709
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200710#ifdef CONFIG_ACPI
711#define WRD_METHOD "WRDD"
712#define WRDD_WIFI (0x07)
713#define WRDD_WIGIG (0x10)
714
715static u32 iwl_mvm_wrdd_get_mcc(struct iwl_mvm *mvm, union acpi_object *wrdd)
716{
717 union acpi_object *mcc_pkg, *domain_type, *mcc_value;
718 u32 i;
719
720 if (wrdd->type != ACPI_TYPE_PACKAGE ||
721 wrdd->package.count < 2 ||
722 wrdd->package.elements[0].type != ACPI_TYPE_INTEGER ||
723 wrdd->package.elements[0].integer.value != 0) {
724 IWL_DEBUG_LAR(mvm, "Unsupported wrdd structure\n");
725 return 0;
726 }
727
728 for (i = 1 ; i < wrdd->package.count ; ++i) {
729 mcc_pkg = &wrdd->package.elements[i];
730
731 if (mcc_pkg->type != ACPI_TYPE_PACKAGE ||
732 mcc_pkg->package.count < 2 ||
733 mcc_pkg->package.elements[0].type != ACPI_TYPE_INTEGER ||
734 mcc_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) {
735 mcc_pkg = NULL;
736 continue;
737 }
738
739 domain_type = &mcc_pkg->package.elements[0];
740 if (domain_type->integer.value == WRDD_WIFI)
741 break;
742
743 mcc_pkg = NULL;
744 }
745
746 if (mcc_pkg) {
747 mcc_value = &mcc_pkg->package.elements[1];
748 return mcc_value->integer.value;
749 }
750
751 return 0;
752}
753
754static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
755{
756 acpi_handle root_handle;
757 acpi_handle handle;
758 struct acpi_buffer wrdd = {ACPI_ALLOCATE_BUFFER, NULL};
759 acpi_status status;
760 u32 mcc_val;
761 struct pci_dev *pdev = to_pci_dev(mvm->dev);
762
763 root_handle = ACPI_HANDLE(&pdev->dev);
764 if (!root_handle) {
765 IWL_DEBUG_LAR(mvm,
766 "Could not retrieve root port ACPI handle\n");
767 return -ENOENT;
768 }
769
770 /* Get the method's handle */
771 status = acpi_get_handle(root_handle, (acpi_string)WRD_METHOD, &handle);
772 if (ACPI_FAILURE(status)) {
773 IWL_DEBUG_LAR(mvm, "WRD method not found\n");
774 return -ENOENT;
775 }
776
777 /* Call WRDD with no arguments */
778 status = acpi_evaluate_object(handle, NULL, NULL, &wrdd);
779 if (ACPI_FAILURE(status)) {
780 IWL_DEBUG_LAR(mvm, "WRDC invocation failed (0x%x)\n", status);
781 return -ENOENT;
782 }
783
784 mcc_val = iwl_mvm_wrdd_get_mcc(mvm, wrdd.pointer);
785 kfree(wrdd.pointer);
786 if (!mcc_val)
787 return -ENOENT;
788
789 mcc[0] = (mcc_val >> 8) & 0xff;
790 mcc[1] = mcc_val & 0xff;
791 mcc[2] = '\0';
792 return 0;
793}
794#else /* CONFIG_ACPI */
795static int iwl_mvm_get_bios_mcc(struct iwl_mvm *mvm, char *mcc)
796{
797 return -ENOENT;
798}
799#endif
800
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200801int iwl_mvm_init_mcc(struct iwl_mvm *mvm)
802{
Matti Gottliebd0d15192014-07-31 09:16:25 +0300803 bool tlv_lar;
804 bool nvm_lar;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200805 int retval;
806 struct ieee80211_regdomain *regd;
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200807 char mcc[3];
Matti Gottliebd0d15192014-07-31 09:16:25 +0300808
809 if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_8000) {
Johannes Berg859d9142015-06-01 17:11:11 +0200810 tlv_lar = fw_has_capa(&mvm->fw->ucode_capa,
811 IWL_UCODE_TLV_CAPA_LAR_SUPPORT);
Matti Gottliebd0d15192014-07-31 09:16:25 +0300812 nvm_lar = mvm->nvm_data->lar_enabled;
813 if (tlv_lar != nvm_lar)
814 IWL_INFO(mvm,
815 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
816 tlv_lar ? "enabled" : "disabled",
817 nvm_lar ? "enabled" : "disabled");
818 }
819
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200820 if (!iwl_mvm_is_lar_supported(mvm))
821 return 0;
822
823 /*
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200824 * try to replay the last set MCC to FW. If it doesn't exist,
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200825 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
826 */
Arik Nemtsovb6e160a2015-03-23 14:32:53 +0200827 retval = iwl_mvm_init_fw_regd(mvm);
828 if (retval != -ENOENT)
829 return retval;
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200830
831 /*
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200832 * Driver regulatory hint for initial update, this also informs the
833 * firmware we support wifi location updates.
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200834 * Disallow scans that might crash the FW while the LAR regdomain
835 * is not set.
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200836 */
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200837 mvm->lar_regdom_set = false;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200838
Jonathan Doron47c8b152014-11-27 16:55:25 +0200839 regd = iwl_mvm_get_current_regdomain(mvm, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200840 if (IS_ERR_OR_NULL(regd))
841 return -EIO;
842
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200843 if (iwl_mvm_is_wifi_mcc_supported(mvm) &&
844 !iwl_mvm_get_bios_mcc(mvm, mcc)) {
845 kfree(regd);
846 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc,
Jonathan Doron47c8b152014-11-27 16:55:25 +0200847 MCC_SOURCE_BIOS, NULL);
Jonathan Doron7f0344c2014-11-27 16:57:55 +0200848 if (IS_ERR_OR_NULL(regd))
849 return -EIO;
850 }
851
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200852 retval = regulatory_set_wiphy_regd_sync_rtnl(mvm->hw->wiphy, regd);
853 kfree(regd);
854 return retval;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200855}
856
Johannes Berg04168412015-06-23 21:22:09 +0200857void iwl_mvm_rx_chub_update_mcc(struct iwl_mvm *mvm,
858 struct iwl_rx_cmd_buffer *rxb)
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200859{
860 struct iwl_rx_packet *pkt = rxb_addr(rxb);
861 struct iwl_mcc_chub_notif *notif = (void *)pkt->data;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200862 enum iwl_mcc_source src;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200863 char mcc[3];
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200864 struct ieee80211_regdomain *regd;
865
866 lockdep_assert_held(&mvm->mutex);
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200867
868 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm)))
Johannes Berg04168412015-06-23 21:22:09 +0200869 return;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200870
871 mcc[0] = notif->mcc >> 8;
872 mcc[1] = notif->mcc & 0xff;
873 mcc[2] = '\0';
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200874 src = notif->source_id;
Arik Nemtsov88931cc2014-03-05 12:26:15 +0200875
876 IWL_DEBUG_LAR(mvm,
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200877 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
878 mcc, src);
Jonathan Doron47c8b152014-11-27 16:55:25 +0200879 regd = iwl_mvm_get_regdomain(mvm->hw->wiphy, mcc, src, NULL);
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200880 if (IS_ERR_OR_NULL(regd))
Johannes Berg04168412015-06-23 21:22:09 +0200881 return;
Eran Harary8ba2d7a2015-02-08 11:41:43 +0200882
883 regulatory_set_wiphy_regd(mvm->hw->wiphy, regd);
884 kfree(regd);
Arik Nemtsov90d4f7d2014-03-04 19:58:46 +0200885}