1 /******************************************************************************
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.
8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 Intel Deutschland GmbH
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
26 * The full GNU General Public License is included in this distribution
27 * in the file called COPYING.
29 * Contact Information:
30 * Intel Linux Wireless <linuxwifi@intel.com>
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
35 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
37 * Copyright(c) 2016 Intel Deutschland GmbH
38 * All rights reserved.
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
44 * * Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * * Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in
48 * the documentation and/or other materials provided with the
50 * * Neither the name Intel Corporation nor the names of its
51 * contributors may be used to endorse or promote products derived
52 * from this software without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
55 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
56 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
57 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
58 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
59 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
60 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
66 *****************************************************************************/
67 #include <linux/firmware.h>
68 #include <linux/rtnetlink.h>
69 #include <linux/pci.h>
70 #include <linux/acpi.h>
71 #include "iwl-trans.h"
74 #include "iwl-eeprom-parse.h"
75 #include "iwl-eeprom-read.h"
76 #include "iwl-nvm-parse.h"
79 /* Default NVM size to read */
80 #define IWL_NVM_DEFAULT_CHUNK_SIZE (2*1024)
81 #define IWL_MAX_NVM_SECTION_SIZE 0x1b58
82 #define IWL_MAX_NVM_8000_SECTION_SIZE 0x1ffc
84 #define NVM_WRITE_OPCODE 1
85 #define NVM_READ_OPCODE 0
87 /* load nvm chunk response */
89 READ_NVM_CHUNK_SUCCEED
= 0,
90 READ_NVM_CHUNK_NOT_VALID_ADDRESS
= 1
94 * prepare the NVM host command w/ the pointers to the nvm buffer
97 static int iwl_nvm_write_chunk(struct iwl_mvm
*mvm
, u16 section
,
98 u16 offset
, u16 length
, const u8
*data
)
100 struct iwl_nvm_access_cmd nvm_access_cmd
= {
101 .offset
= cpu_to_le16(offset
),
102 .length
= cpu_to_le16(length
),
103 .type
= cpu_to_le16(section
),
104 .op_code
= NVM_WRITE_OPCODE
,
106 struct iwl_host_cmd cmd
= {
107 .id
= NVM_ACCESS_CMD
,
108 .len
= { sizeof(struct iwl_nvm_access_cmd
), length
},
109 .flags
= CMD_WANT_SKB
| CMD_SEND_IN_RFKILL
,
110 .data
= { &nvm_access_cmd
, data
},
111 /* data may come from vmalloc, so use _DUP */
112 .dataflags
= { 0, IWL_HCMD_DFL_DUP
},
114 struct iwl_rx_packet
*pkt
;
115 struct iwl_nvm_access_resp
*nvm_resp
;
118 ret
= iwl_mvm_send_cmd(mvm
, &cmd
);
124 IWL_ERR(mvm
, "Error in NVM_ACCESS response\n");
127 /* Extract & check NVM write response */
128 nvm_resp
= (void *)pkt
->data
;
129 if (le16_to_cpu(nvm_resp
->status
) != READ_NVM_CHUNK_SUCCEED
) {
131 "NVM access write command failed for section %u (status = 0x%x)\n",
132 section
, le16_to_cpu(nvm_resp
->status
));
140 static int iwl_nvm_read_chunk(struct iwl_mvm
*mvm
, u16 section
,
141 u16 offset
, u16 length
, u8
*data
)
143 struct iwl_nvm_access_cmd nvm_access_cmd
= {
144 .offset
= cpu_to_le16(offset
),
145 .length
= cpu_to_le16(length
),
146 .type
= cpu_to_le16(section
),
147 .op_code
= NVM_READ_OPCODE
,
149 struct iwl_nvm_access_resp
*nvm_resp
;
150 struct iwl_rx_packet
*pkt
;
151 struct iwl_host_cmd cmd
= {
152 .id
= NVM_ACCESS_CMD
,
153 .flags
= CMD_WANT_SKB
| CMD_SEND_IN_RFKILL
,
154 .data
= { &nvm_access_cmd
, },
156 int ret
, bytes_read
, offset_read
;
159 cmd
.len
[0] = sizeof(struct iwl_nvm_access_cmd
);
161 ret
= iwl_mvm_send_cmd(mvm
, &cmd
);
167 /* Extract NVM response */
168 nvm_resp
= (void *)pkt
->data
;
169 ret
= le16_to_cpu(nvm_resp
->status
);
170 bytes_read
= le16_to_cpu(nvm_resp
->length
);
171 offset_read
= le16_to_cpu(nvm_resp
->offset
);
172 resp_data
= nvm_resp
->data
;
175 (ret
== READ_NVM_CHUNK_NOT_VALID_ADDRESS
)) {
177 * meaning of NOT_VALID_ADDRESS:
178 * driver try to read chunk from address that is
179 * multiple of 2K and got an error since addr is empty.
180 * meaning of (offset != 0): driver already
181 * read valid data from another chunk so this case
184 IWL_DEBUG_EEPROM(mvm
->trans
->dev
,
185 "NVM access command failed on offset 0x%x since that section size is multiple 2K\n",
189 IWL_DEBUG_EEPROM(mvm
->trans
->dev
,
190 "NVM access command failed with status %d (device: %s)\n",
191 ret
, mvm
->cfg
->name
);
197 if (offset_read
!= offset
) {
198 IWL_ERR(mvm
, "NVM ACCESS response with invalid offset %d\n",
204 /* Write data to NVM */
205 memcpy(data
+ offset
, resp_data
, bytes_read
);
213 static int iwl_nvm_write_section(struct iwl_mvm
*mvm
, u16 section
,
214 const u8
*data
, u16 length
)
218 /* copy data in chunks of 2k (and remainder if any) */
220 while (offset
< length
) {
223 chunk_size
= min(IWL_NVM_DEFAULT_CHUNK_SIZE
,
226 ret
= iwl_nvm_write_chunk(mvm
, section
, offset
,
227 chunk_size
, data
+ offset
);
231 offset
+= chunk_size
;
237 static void iwl_mvm_nvm_fixups(struct iwl_mvm
*mvm
, unsigned int section
,
238 u8
*data
, unsigned int len
)
240 #define IWL_4165_DEVICE_ID 0x5501
241 #define NVM_SKU_CAP_MIMO_DISABLE BIT(5)
243 if (section
== NVM_SECTION_TYPE_PHY_SKU
&&
244 mvm
->trans
->hw_id
== IWL_4165_DEVICE_ID
&& data
&& len
>= 5 &&
245 (data
[4] & NVM_SKU_CAP_MIMO_DISABLE
))
246 /* OTP 0x52 bug work around: it's a 1x1 device */
247 data
[3] = ANT_B
| (ANT_B
<< 4);
251 * Reads an NVM section completely.
252 * NICs prior to 7000 family doesn't have a real NVM, but just read
253 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
254 * by uCode, we need to manually check in this case that we don't
255 * overflow and try to read more than the EEPROM size.
256 * For 7000 family NICs, we supply the maximal size we can read, and
257 * the uCode fills the response with as much data as we can,
258 * without overflowing, so no check is needed.
260 static int iwl_nvm_read_section(struct iwl_mvm
*mvm
, u16 section
,
261 u8
*data
, u32 size_read
)
263 u16 length
, offset
= 0;
266 /* Set nvm section read length */
267 length
= IWL_NVM_DEFAULT_CHUNK_SIZE
;
271 /* Read the NVM until exhausted (reading less than requested) */
272 while (ret
== length
) {
273 /* Check no memory assumptions fail and cause an overflow */
274 if ((size_read
+ offset
+ length
) >
275 mvm
->cfg
->base_params
->eeprom_size
) {
276 IWL_ERR(mvm
, "EEPROM size is too small for NVM\n");
280 ret
= iwl_nvm_read_chunk(mvm
, section
, offset
, length
, data
);
282 IWL_DEBUG_EEPROM(mvm
->trans
->dev
,
283 "Cannot read NVM from section %d offset %d, length %d\n",
284 section
, offset
, length
);
290 iwl_mvm_nvm_fixups(mvm
, section
, data
, offset
);
292 IWL_DEBUG_EEPROM(mvm
->trans
->dev
,
293 "NVM section %d read completed\n", section
);
297 static struct iwl_nvm_data
*
298 iwl_parse_nvm_sections(struct iwl_mvm
*mvm
)
300 struct iwl_nvm_section
*sections
= mvm
->nvm_sections
;
301 const __le16
*hw
, *sw
, *calib
, *regulatory
, *mac_override
, *phy_sku
;
304 /* Checking for required sections */
305 if (mvm
->trans
->cfg
->device_family
!= IWL_DEVICE_FAMILY_8000
) {
306 if (!mvm
->nvm_sections
[NVM_SECTION_TYPE_SW
].data
||
307 !mvm
->nvm_sections
[mvm
->cfg
->nvm_hw_section_num
].data
) {
308 IWL_ERR(mvm
, "Can't parse empty OTP/NVM sections\n");
312 /* SW and REGULATORY sections are mandatory */
313 if (!mvm
->nvm_sections
[NVM_SECTION_TYPE_SW
].data
||
314 !mvm
->nvm_sections
[NVM_SECTION_TYPE_REGULATORY
].data
) {
316 "Can't parse empty family 8000 OTP/NVM sections\n");
319 /* MAC_OVERRIDE or at least HW section must exist */
320 if (!mvm
->nvm_sections
[mvm
->cfg
->nvm_hw_section_num
].data
&&
321 !mvm
->nvm_sections
[NVM_SECTION_TYPE_MAC_OVERRIDE
].data
) {
323 "Can't parse mac_address, empty sections\n");
327 /* PHY_SKU section is mandatory in B0 */
328 if (!mvm
->nvm_sections
[NVM_SECTION_TYPE_PHY_SKU
].data
) {
330 "Can't parse phy_sku in B0, empty sections\n");
335 if (WARN_ON(!mvm
->cfg
))
338 hw
= (const __le16
*)sections
[mvm
->cfg
->nvm_hw_section_num
].data
;
339 sw
= (const __le16
*)sections
[NVM_SECTION_TYPE_SW
].data
;
340 calib
= (const __le16
*)sections
[NVM_SECTION_TYPE_CALIBRATION
].data
;
341 regulatory
= (const __le16
*)sections
[NVM_SECTION_TYPE_REGULATORY
].data
;
343 (const __le16
*)sections
[NVM_SECTION_TYPE_MAC_OVERRIDE
].data
;
344 phy_sku
= (const __le16
*)sections
[NVM_SECTION_TYPE_PHY_SKU
].data
;
346 lar_enabled
= !iwlwifi_mod_params
.lar_disable
&&
347 fw_has_capa(&mvm
->fw
->ucode_capa
,
348 IWL_UCODE_TLV_CAPA_LAR_SUPPORT
);
350 return iwl_parse_nvm_data(mvm
->trans
, mvm
->cfg
, hw
, sw
, calib
,
351 regulatory
, mac_override
, phy_sku
,
352 mvm
->fw
->valid_tx_ant
, mvm
->fw
->valid_rx_ant
,
356 #define MAX_NVM_FILE_LEN 16384
359 * Reads external NVM from a file into mvm->nvm_sections
361 * HOW TO CREATE THE NVM FILE FORMAT:
362 * ------------------------------
363 * 1. create hex file, format:
368 * rev - 6 bit (word1)
369 * len - 10 bit (word1)
371 * rsv - 12 bit (word2)
373 * 2. flip 8bits with 8 bits per line to get the right NVM file format
375 * 3. create binary file from the hex file
377 * 4. save as "iNVM_xxx.bin" under /lib/firmware
379 static int iwl_mvm_read_external_nvm(struct iwl_mvm
*mvm
)
381 int ret
, section_size
;
383 const struct firmware
*fw_entry
;
391 int max_section_size
;
392 const __le32
*dword_buff
;
394 #define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
395 #define NVM_WORD2_ID(x) (x >> 12)
396 #define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
397 #define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
398 #define NVM_HEADER_0 (0x2A504C54)
399 #define NVM_HEADER_1 (0x4E564D2A)
400 #define NVM_HEADER_SIZE (4 * sizeof(u32))
402 IWL_DEBUG_EEPROM(mvm
->trans
->dev
, "Read from external NVM\n");
404 /* Maximal size depends on HW family and step */
405 if (mvm
->trans
->cfg
->device_family
!= IWL_DEVICE_FAMILY_8000
)
406 max_section_size
= IWL_MAX_NVM_SECTION_SIZE
;
408 max_section_size
= IWL_MAX_NVM_8000_SECTION_SIZE
;
411 * Obtain NVM image via request_firmware. Since we already used
412 * request_firmware_nowait() for the firmware binary load and only
413 * get here after that we assume the NVM request can be satisfied
416 ret
= request_firmware(&fw_entry
, mvm
->nvm_file_name
,
419 IWL_ERR(mvm
, "ERROR: %s isn't available %d\n",
420 mvm
->nvm_file_name
, ret
);
424 IWL_INFO(mvm
, "Loaded NVM file %s (%zu bytes)\n",
425 mvm
->nvm_file_name
, fw_entry
->size
);
427 if (fw_entry
->size
> MAX_NVM_FILE_LEN
) {
428 IWL_ERR(mvm
, "NVM file too large\n");
433 eof
= fw_entry
->data
+ fw_entry
->size
;
434 dword_buff
= (__le32
*)fw_entry
->data
;
436 /* some NVM file will contain a header.
437 * The header is identified by 2 dwords header as follow:
438 * dword[0] = 0x2A504C54
439 * dword[1] = 0x4E564D2A
441 * This header must be skipped when providing the NVM data to the FW.
443 if (fw_entry
->size
> NVM_HEADER_SIZE
&&
444 dword_buff
[0] == cpu_to_le32(NVM_HEADER_0
) &&
445 dword_buff
[1] == cpu_to_le32(NVM_HEADER_1
)) {
446 file_sec
= (void *)(fw_entry
->data
+ NVM_HEADER_SIZE
);
447 IWL_INFO(mvm
, "NVM Version %08X\n", le32_to_cpu(dword_buff
[2]));
448 IWL_INFO(mvm
, "NVM Manufacturing date %08X\n",
449 le32_to_cpu(dword_buff
[3]));
451 /* nvm file validation, dword_buff[2] holds the file version */
452 if ((CSR_HW_REV_STEP(mvm
->trans
->hw_rev
) == SILICON_C_STEP
&&
453 le32_to_cpu(dword_buff
[2]) < 0xE4A) ||
454 (CSR_HW_REV_STEP(mvm
->trans
->hw_rev
) == SILICON_B_STEP
&&
455 le32_to_cpu(dword_buff
[2]) >= 0xE4A)) {
460 file_sec
= (void *)fw_entry
->data
;
464 if (file_sec
->data
> eof
) {
466 "ERROR - NVM file too short for section header\n");
471 /* check for EOF marker */
472 if (!file_sec
->word1
&& !file_sec
->word2
) {
477 if (mvm
->trans
->cfg
->device_family
!= IWL_DEVICE_FAMILY_8000
) {
479 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec
->word1
));
480 section_id
= NVM_WORD2_ID(le16_to_cpu(file_sec
->word2
));
482 section_size
= 2 * NVM_WORD2_LEN_FAMILY_8000(
483 le16_to_cpu(file_sec
->word2
));
484 section_id
= NVM_WORD1_ID_FAMILY_8000(
485 le16_to_cpu(file_sec
->word1
));
488 if (section_size
> max_section_size
) {
489 IWL_ERR(mvm
, "ERROR - section too large (%d)\n",
496 IWL_ERR(mvm
, "ERROR - section empty\n");
501 if (file_sec
->data
+ section_size
> eof
) {
503 "ERROR - NVM file too short for section (%d bytes)\n",
509 if (WARN(section_id
>= NVM_MAX_NUM_SECTIONS
,
510 "Invalid NVM section ID %d\n", section_id
)) {
515 temp
= kmemdup(file_sec
->data
, section_size
, GFP_KERNEL
);
521 iwl_mvm_nvm_fixups(mvm
, section_id
, temp
, section_size
);
523 kfree(mvm
->nvm_sections
[section_id
].data
);
524 mvm
->nvm_sections
[section_id
].data
= temp
;
525 mvm
->nvm_sections
[section_id
].length
= section_size
;
527 /* advance to the next section */
528 file_sec
= (void *)(file_sec
->data
+ section_size
);
531 release_firmware(fw_entry
);
535 /* Loads the NVM data stored in mvm->nvm_sections into the NIC */
536 int iwl_mvm_load_nvm_to_nic(struct iwl_mvm
*mvm
)
539 struct iwl_nvm_section
*sections
= mvm
->nvm_sections
;
541 IWL_DEBUG_EEPROM(mvm
->trans
->dev
, "'Write to NVM\n");
543 for (i
= 0; i
< ARRAY_SIZE(mvm
->nvm_sections
); i
++) {
544 if (!mvm
->nvm_sections
[i
].data
|| !mvm
->nvm_sections
[i
].length
)
546 ret
= iwl_nvm_write_section(mvm
, i
, sections
[i
].data
,
549 IWL_ERR(mvm
, "iwl_mvm_send_cmd failed: %d\n", ret
);
556 int iwl_nvm_init(struct iwl_mvm
*mvm
, bool read_nvm_from_nic
)
560 u8
*nvm_buffer
, *temp
;
561 const char *nvm_file_B
= mvm
->cfg
->default_nvm_file_B_step
;
562 const char *nvm_file_C
= mvm
->cfg
->default_nvm_file_C_step
;
564 if (WARN_ON_ONCE(mvm
->cfg
->nvm_hw_section_num
>= NVM_MAX_NUM_SECTIONS
))
567 /* load NVM values from nic */
568 if (read_nvm_from_nic
) {
569 /* Read From FW NVM */
570 IWL_DEBUG_EEPROM(mvm
->trans
->dev
, "Read from NVM\n");
572 nvm_buffer
= kmalloc(mvm
->cfg
->base_params
->eeprom_size
,
576 for (section
= 0; section
< NVM_MAX_NUM_SECTIONS
; section
++) {
577 /* we override the constness for initial read */
578 ret
= iwl_nvm_read_section(mvm
, section
, nvm_buffer
,
583 temp
= kmemdup(nvm_buffer
, ret
, GFP_KERNEL
);
589 iwl_mvm_nvm_fixups(mvm
, section
, temp
, ret
);
591 mvm
->nvm_sections
[section
].data
= temp
;
592 mvm
->nvm_sections
[section
].length
= ret
;
594 #ifdef CONFIG_IWLWIFI_DEBUGFS
596 case NVM_SECTION_TYPE_SW
:
597 mvm
->nvm_sw_blob
.data
= temp
;
598 mvm
->nvm_sw_blob
.size
= ret
;
600 case NVM_SECTION_TYPE_CALIBRATION
:
601 mvm
->nvm_calib_blob
.data
= temp
;
602 mvm
->nvm_calib_blob
.size
= ret
;
604 case NVM_SECTION_TYPE_PRODUCTION
:
605 mvm
->nvm_prod_blob
.data
= temp
;
606 mvm
->nvm_prod_blob
.size
= ret
;
608 case NVM_SECTION_TYPE_PHY_SKU
:
609 mvm
->nvm_phy_sku_blob
.data
= temp
;
610 mvm
->nvm_phy_sku_blob
.size
= ret
;
613 if (section
== mvm
->cfg
->nvm_hw_section_num
) {
614 mvm
->nvm_hw_blob
.data
= temp
;
615 mvm
->nvm_hw_blob
.size
= ret
;
622 IWL_ERR(mvm
, "OTP is blank\n");
626 /* Only if PNVM selected in the mod param - load external NVM */
627 if (mvm
->nvm_file_name
) {
628 /* read External NVM file from the mod param */
629 ret
= iwl_mvm_read_external_nvm(mvm
);
631 /* choose the nvm_file name according to the
634 if (CSR_HW_REV_STEP(mvm
->trans
->hw_rev
) ==
636 mvm
->nvm_file_name
= nvm_file_B
;
638 mvm
->nvm_file_name
= nvm_file_C
;
640 if ((ret
== -EFAULT
|| ret
== -ENOENT
) &&
641 mvm
->nvm_file_name
) {
642 /* in case nvm file was failed try again */
643 ret
= iwl_mvm_read_external_nvm(mvm
);
652 /* parse the relevant nvm sections */
653 mvm
->nvm_data
= iwl_parse_nvm_sections(mvm
);
656 IWL_DEBUG_EEPROM(mvm
->trans
->dev
, "nvm version = %x\n",
657 mvm
->nvm_data
->nvm_version
);
662 struct iwl_mcc_update_resp
*
663 iwl_mvm_update_mcc(struct iwl_mvm
*mvm
, const char *alpha2
,
664 enum iwl_mcc_source src_id
)
666 struct iwl_mcc_update_cmd mcc_update_cmd
= {
667 .mcc
= cpu_to_le16(alpha2
[0] << 8 | alpha2
[1]),
668 .source_id
= (u8
)src_id
,
670 struct iwl_mcc_update_resp
*mcc_resp
, *resp_cp
= NULL
;
671 struct iwl_mcc_update_resp_v1
*mcc_resp_v1
= NULL
;
672 struct iwl_rx_packet
*pkt
;
673 struct iwl_host_cmd cmd
= {
674 .id
= MCC_UPDATE_CMD
,
675 .flags
= CMD_WANT_SKB
,
676 .data
= { &mcc_update_cmd
},
681 int resp_len
, n_channels
;
683 bool resp_v2
= fw_has_capa(&mvm
->fw
->ucode_capa
,
684 IWL_UCODE_TLV_CAPA_LAR_SUPPORT_V2
);
686 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm
)))
687 return ERR_PTR(-EOPNOTSUPP
);
689 cmd
.len
[0] = sizeof(struct iwl_mcc_update_cmd
);
691 cmd
.len
[0] = sizeof(struct iwl_mcc_update_cmd_v1
);
693 IWL_DEBUG_LAR(mvm
, "send MCC update to FW with '%c%c' src = %d\n",
694 alpha2
[0], alpha2
[1], src_id
);
696 ret
= iwl_mvm_send_cmd(mvm
, &cmd
);
702 /* Extract MCC response */
704 mcc_resp
= (void *)pkt
->data
;
705 n_channels
= __le32_to_cpu(mcc_resp
->n_channels
);
707 mcc_resp_v1
= (void *)pkt
->data
;
708 n_channels
= __le32_to_cpu(mcc_resp_v1
->n_channels
);
711 resp_len
= sizeof(struct iwl_mcc_update_resp
) + n_channels
*
714 resp_cp
= kzalloc(resp_len
, GFP_KERNEL
);
721 memcpy(resp_cp
, mcc_resp
, resp_len
);
723 resp_cp
->status
= mcc_resp_v1
->status
;
724 resp_cp
->mcc
= mcc_resp_v1
->mcc
;
725 resp_cp
->cap
= mcc_resp_v1
->cap
;
726 resp_cp
->source_id
= mcc_resp_v1
->source_id
;
727 resp_cp
->n_channels
= mcc_resp_v1
->n_channels
;
728 memcpy(resp_cp
->channels
, mcc_resp_v1
->channels
,
729 n_channels
* sizeof(__le32
));
732 status
= le32_to_cpu(resp_cp
->status
);
734 mcc
= le16_to_cpu(resp_cp
->mcc
);
736 /* W/A for a FW/NVM issue - returns 0x00 for the world domain */
738 mcc
= 0x3030; /* "00" - world */
739 resp_cp
->mcc
= cpu_to_le16(mcc
);
743 "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n",
744 status
, mcc
, mcc
>> 8, mcc
& 0xff,
745 !!(status
== MCC_RESP_NEW_CHAN_PROFILE
), n_channels
);
755 #define WRD_METHOD "WRDD"
756 #define WRDD_WIFI (0x07)
757 #define WRDD_WIGIG (0x10)
759 static u32
iwl_mvm_wrdd_get_mcc(struct iwl_mvm
*mvm
, union acpi_object
*wrdd
)
761 union acpi_object
*mcc_pkg
, *domain_type
, *mcc_value
;
764 if (wrdd
->type
!= ACPI_TYPE_PACKAGE
||
765 wrdd
->package
.count
< 2 ||
766 wrdd
->package
.elements
[0].type
!= ACPI_TYPE_INTEGER
||
767 wrdd
->package
.elements
[0].integer
.value
!= 0) {
768 IWL_DEBUG_LAR(mvm
, "Unsupported wrdd structure\n");
772 for (i
= 1 ; i
< wrdd
->package
.count
; ++i
) {
773 mcc_pkg
= &wrdd
->package
.elements
[i
];
775 if (mcc_pkg
->type
!= ACPI_TYPE_PACKAGE
||
776 mcc_pkg
->package
.count
< 2 ||
777 mcc_pkg
->package
.elements
[0].type
!= ACPI_TYPE_INTEGER
||
778 mcc_pkg
->package
.elements
[1].type
!= ACPI_TYPE_INTEGER
) {
783 domain_type
= &mcc_pkg
->package
.elements
[0];
784 if (domain_type
->integer
.value
== WRDD_WIFI
)
791 mcc_value
= &mcc_pkg
->package
.elements
[1];
792 return mcc_value
->integer
.value
;
798 static int iwl_mvm_get_bios_mcc(struct iwl_mvm
*mvm
, char *mcc
)
800 acpi_handle root_handle
;
802 struct acpi_buffer wrdd
= {ACPI_ALLOCATE_BUFFER
, NULL
};
805 struct pci_dev
*pdev
= to_pci_dev(mvm
->dev
);
807 root_handle
= ACPI_HANDLE(&pdev
->dev
);
810 "Could not retrieve root port ACPI handle\n");
814 /* Get the method's handle */
815 status
= acpi_get_handle(root_handle
, (acpi_string
)WRD_METHOD
, &handle
);
816 if (ACPI_FAILURE(status
)) {
817 IWL_DEBUG_LAR(mvm
, "WRD method not found\n");
821 /* Call WRDD with no arguments */
822 status
= acpi_evaluate_object(handle
, NULL
, NULL
, &wrdd
);
823 if (ACPI_FAILURE(status
)) {
824 IWL_DEBUG_LAR(mvm
, "WRDC invocation failed (0x%x)\n", status
);
828 mcc_val
= iwl_mvm_wrdd_get_mcc(mvm
, wrdd
.pointer
);
833 mcc
[0] = (mcc_val
>> 8) & 0xff;
834 mcc
[1] = mcc_val
& 0xff;
838 #else /* CONFIG_ACPI */
839 static int iwl_mvm_get_bios_mcc(struct iwl_mvm
*mvm
, char *mcc
)
845 int iwl_mvm_init_mcc(struct iwl_mvm
*mvm
)
850 struct ieee80211_regdomain
*regd
;
853 if (mvm
->cfg
->device_family
== IWL_DEVICE_FAMILY_8000
) {
854 tlv_lar
= fw_has_capa(&mvm
->fw
->ucode_capa
,
855 IWL_UCODE_TLV_CAPA_LAR_SUPPORT
);
856 nvm_lar
= mvm
->nvm_data
->lar_enabled
;
857 if (tlv_lar
!= nvm_lar
)
859 "Conflict between TLV & NVM regarding enabling LAR (TLV = %s NVM =%s)\n",
860 tlv_lar
? "enabled" : "disabled",
861 nvm_lar
? "enabled" : "disabled");
864 if (!iwl_mvm_is_lar_supported(mvm
))
868 * try to replay the last set MCC to FW. If it doesn't exist,
869 * queue an update to cfg80211 to retrieve the default alpha2 from FW.
871 retval
= iwl_mvm_init_fw_regd(mvm
);
872 if (retval
!= -ENOENT
)
876 * Driver regulatory hint for initial update, this also informs the
877 * firmware we support wifi location updates.
878 * Disallow scans that might crash the FW while the LAR regdomain
881 mvm
->lar_regdom_set
= false;
883 regd
= iwl_mvm_get_current_regdomain(mvm
, NULL
);
884 if (IS_ERR_OR_NULL(regd
))
887 if (iwl_mvm_is_wifi_mcc_supported(mvm
) &&
888 !iwl_mvm_get_bios_mcc(mvm
, mcc
)) {
890 regd
= iwl_mvm_get_regdomain(mvm
->hw
->wiphy
, mcc
,
891 MCC_SOURCE_BIOS
, NULL
);
892 if (IS_ERR_OR_NULL(regd
))
896 retval
= regulatory_set_wiphy_regd_sync_rtnl(mvm
->hw
->wiphy
, regd
);
901 void iwl_mvm_rx_chub_update_mcc(struct iwl_mvm
*mvm
,
902 struct iwl_rx_cmd_buffer
*rxb
)
904 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
905 struct iwl_mcc_chub_notif
*notif
= (void *)pkt
->data
;
906 enum iwl_mcc_source src
;
908 struct ieee80211_regdomain
*regd
;
910 lockdep_assert_held(&mvm
->mutex
);
912 if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm
)))
915 mcc
[0] = notif
->mcc
>> 8;
916 mcc
[1] = notif
->mcc
& 0xff;
918 src
= notif
->source_id
;
921 "RX: received chub update mcc cmd (mcc '%s' src %d)\n",
923 regd
= iwl_mvm_get_regdomain(mvm
->hw
->wiphy
, mcc
, src
, NULL
);
924 if (IS_ERR_OR_NULL(regd
))
927 regulatory_set_wiphy_regd(mvm
->hw
->wiphy
, regd
);