Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 1 | /****************************************************************************** |
| 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 Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 8 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8b4139d | 2014-07-24 14:05:26 +0200 | [diff] [blame] | 9 | * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 10 | * |
| 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 Grumbach | 410dc5a | 2013-02-18 09:22:28 +0200 | [diff] [blame] | 26 | * in the file called COPYING. |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 27 | * |
| 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 Grumbach | 51368bf | 2013-12-30 13:15:54 +0200 | [diff] [blame] | 34 | * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. |
Johannes Berg | 8b4139d | 2014-07-24 14:05:26 +0200 | [diff] [blame] | 35 | * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 36 | * 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 Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 65 | #include <linux/firmware.h> |
Arik Nemtsov | 90d4f7d | 2014-03-04 19:58:46 +0200 | [diff] [blame^] | 66 | #include <linux/rtnetlink.h> |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 67 | #include "iwl-trans.h" |
Liad Kaufman | c2a2b28 | 2014-09-07 11:41:05 +0300 | [diff] [blame] | 68 | #include "iwl-csr.h" |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 69 | #include "mvm.h" |
| 70 | #include "iwl-eeprom-parse.h" |
| 71 | #include "iwl-eeprom-read.h" |
| 72 | #include "iwl-nvm-parse.h" |
| 73 | |
Dor Shaish | 1fd4afe | 2013-02-27 10:18:07 +0200 | [diff] [blame] | 74 | /* Default NVM size to read */ |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 75 | #define IWL_NVM_DEFAULT_CHUNK_SIZE (2*1024) |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 76 | #define IWL_MAX_NVM_SECTION_SIZE 0x1b58 |
| 77 | #define IWL_MAX_NVM_8000A_SECTION_SIZE 0xffc |
| 78 | #define IWL_MAX_NVM_8000B_SECTION_SIZE 0x1ffc |
Dor Shaish | 1fd4afe | 2013-02-27 10:18:07 +0200 | [diff] [blame] | 79 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 80 | #define NVM_WRITE_OPCODE 1 |
| 81 | #define NVM_READ_OPCODE 0 |
| 82 | |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 83 | /* load nvm chunk response */ |
| 84 | enum { |
| 85 | READ_NVM_CHUNK_SUCCEED = 0, |
| 86 | READ_NVM_CHUNK_NOT_VALID_ADDRESS = 1 |
| 87 | }; |
| 88 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 89 | /* |
| 90 | * prepare the NVM host command w/ the pointers to the nvm buffer |
| 91 | * and send it to fw |
| 92 | */ |
| 93 | static int iwl_nvm_write_chunk(struct iwl_mvm *mvm, u16 section, |
| 94 | u16 offset, u16 length, const u8 *data) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 95 | { |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 96 | struct iwl_nvm_access_cmd nvm_access_cmd = { |
| 97 | .offset = cpu_to_le16(offset), |
| 98 | .length = cpu_to_le16(length), |
| 99 | .type = cpu_to_le16(section), |
| 100 | .op_code = NVM_WRITE_OPCODE, |
| 101 | }; |
| 102 | struct iwl_host_cmd cmd = { |
| 103 | .id = NVM_ACCESS_CMD, |
| 104 | .len = { sizeof(struct iwl_nvm_access_cmd), length }, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 105 | .flags = CMD_SEND_IN_RFKILL, |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 106 | .data = { &nvm_access_cmd, data }, |
| 107 | /* data may come from vmalloc, so use _DUP */ |
| 108 | .dataflags = { 0, IWL_HCMD_DFL_DUP }, |
| 109 | }; |
| 110 | |
| 111 | return iwl_mvm_send_cmd(mvm, &cmd); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static int iwl_nvm_read_chunk(struct iwl_mvm *mvm, u16 section, |
| 115 | u16 offset, u16 length, u8 *data) |
| 116 | { |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 117 | struct iwl_nvm_access_cmd nvm_access_cmd = { |
| 118 | .offset = cpu_to_le16(offset), |
| 119 | .length = cpu_to_le16(length), |
| 120 | .type = cpu_to_le16(section), |
| 121 | .op_code = NVM_READ_OPCODE, |
| 122 | }; |
Emmanuel Grumbach | b9545b4 | 2013-03-06 11:34:44 +0200 | [diff] [blame] | 123 | struct iwl_nvm_access_resp *nvm_resp; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 124 | struct iwl_rx_packet *pkt; |
| 125 | struct iwl_host_cmd cmd = { |
| 126 | .id = NVM_ACCESS_CMD, |
Emmanuel Grumbach | a102292 | 2014-05-12 11:36:41 +0300 | [diff] [blame] | 127 | .flags = CMD_WANT_SKB | CMD_SEND_IN_RFKILL, |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 128 | .data = { &nvm_access_cmd, }, |
| 129 | }; |
| 130 | int ret, bytes_read, offset_read; |
| 131 | u8 *resp_data; |
| 132 | |
Emmanuel Grumbach | b9545b4 | 2013-03-06 11:34:44 +0200 | [diff] [blame] | 133 | cmd.len[0] = sizeof(struct iwl_nvm_access_cmd); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 134 | |
| 135 | ret = iwl_mvm_send_cmd(mvm, &cmd); |
| 136 | if (ret) |
| 137 | return ret; |
| 138 | |
| 139 | pkt = cmd.resp_pkt; |
| 140 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 141 | IWL_ERR(mvm, "Bad return from NVM_ACCES_COMMAND (0x%08X)\n", |
| 142 | pkt->hdr.flags); |
| 143 | ret = -EIO; |
| 144 | goto exit; |
| 145 | } |
| 146 | |
| 147 | /* Extract NVM response */ |
| 148 | nvm_resp = (void *)pkt->data; |
Emmanuel Grumbach | b9545b4 | 2013-03-06 11:34:44 +0200 | [diff] [blame] | 149 | ret = le16_to_cpu(nvm_resp->status); |
| 150 | bytes_read = le16_to_cpu(nvm_resp->length); |
| 151 | offset_read = le16_to_cpu(nvm_resp->offset); |
| 152 | resp_data = nvm_resp->data; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 153 | if (ret) { |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 154 | if ((offset != 0) && |
| 155 | (ret == READ_NVM_CHUNK_NOT_VALID_ADDRESS)) { |
| 156 | /* |
| 157 | * meaning of NOT_VALID_ADDRESS: |
| 158 | * driver try to read chunk from address that is |
| 159 | * multiple of 2K and got an error since addr is empty. |
| 160 | * meaning of (offset != 0): driver already |
| 161 | * read valid data from another chunk so this case |
| 162 | * is not an error. |
| 163 | */ |
| 164 | IWL_DEBUG_EEPROM(mvm->trans->dev, |
| 165 | "NVM access command failed on offset 0x%x since that section size is multiple 2K\n", |
| 166 | offset); |
| 167 | ret = 0; |
| 168 | } else { |
| 169 | IWL_DEBUG_EEPROM(mvm->trans->dev, |
| 170 | "NVM access command failed with status %d (device: %s)\n", |
| 171 | ret, mvm->cfg->name); |
| 172 | ret = -EIO; |
| 173 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 174 | goto exit; |
| 175 | } |
| 176 | |
| 177 | if (offset_read != offset) { |
| 178 | IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n", |
| 179 | offset_read); |
| 180 | ret = -EINVAL; |
| 181 | goto exit; |
| 182 | } |
| 183 | |
| 184 | /* Write data to NVM */ |
| 185 | memcpy(data + offset, resp_data, bytes_read); |
| 186 | ret = bytes_read; |
| 187 | |
| 188 | exit: |
| 189 | iwl_free_resp(&cmd); |
| 190 | return ret; |
| 191 | } |
| 192 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 193 | static int iwl_nvm_write_section(struct iwl_mvm *mvm, u16 section, |
| 194 | const u8 *data, u16 length) |
| 195 | { |
| 196 | int offset = 0; |
| 197 | |
| 198 | /* copy data in chunks of 2k (and remainder if any) */ |
| 199 | |
| 200 | while (offset < length) { |
| 201 | int chunk_size, ret; |
| 202 | |
| 203 | chunk_size = min(IWL_NVM_DEFAULT_CHUNK_SIZE, |
| 204 | length - offset); |
| 205 | |
| 206 | ret = iwl_nvm_write_chunk(mvm, section, offset, |
| 207 | chunk_size, data + offset); |
| 208 | if (ret < 0) |
| 209 | return ret; |
| 210 | |
| 211 | offset += chunk_size; |
| 212 | } |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 217 | /* |
| 218 | * Reads an NVM section completely. |
| 219 | * NICs prior to 7000 family doesn't have a real NVM, but just read |
| 220 | * section 0 which is the EEPROM. Because the EEPROM reading is unlimited |
| 221 | * by uCode, we need to manually check in this case that we don't |
| 222 | * overflow and try to read more than the EEPROM size. |
| 223 | * For 7000 family NICs, we supply the maximal size we can read, and |
| 224 | * the uCode fills the response with as much data as we can, |
| 225 | * without overflowing, so no check is needed. |
| 226 | */ |
| 227 | static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section, |
Liad Kaufman | 5daddc9 | 2014-05-21 14:37:00 +0300 | [diff] [blame] | 228 | u8 *data, u32 size_read) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 229 | { |
| 230 | u16 length, offset = 0; |
| 231 | int ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 232 | |
Dor Shaish | 1fd4afe | 2013-02-27 10:18:07 +0200 | [diff] [blame] | 233 | /* Set nvm section read length */ |
| 234 | length = IWL_NVM_DEFAULT_CHUNK_SIZE; |
| 235 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 236 | ret = length; |
| 237 | |
| 238 | /* Read the NVM until exhausted (reading less than requested) */ |
| 239 | while (ret == length) { |
Liad Kaufman | 5daddc9 | 2014-05-21 14:37:00 +0300 | [diff] [blame] | 240 | /* Check no memory assumptions fail and cause an overflow */ |
| 241 | if ((size_read + offset + length) > |
| 242 | mvm->cfg->base_params->eeprom_size) { |
| 243 | IWL_ERR(mvm, "EEPROM size is too small for NVM\n"); |
| 244 | return -ENOBUFS; |
| 245 | } |
| 246 | |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 247 | ret = iwl_nvm_read_chunk(mvm, section, offset, length, data); |
| 248 | if (ret < 0) { |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 249 | IWL_DEBUG_EEPROM(mvm->trans->dev, |
| 250 | "Cannot read NVM from section %d offset %d, length %d\n", |
| 251 | section, offset, length); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 252 | return ret; |
| 253 | } |
| 254 | offset += ret; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 255 | } |
| 256 | |
Johannes Berg | 07fd7d2 | 2013-05-15 14:38:25 +0200 | [diff] [blame] | 257 | IWL_DEBUG_EEPROM(mvm->trans->dev, |
| 258 | "NVM section %d read completed\n", section); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 259 | return offset; |
| 260 | } |
| 261 | |
| 262 | static struct iwl_nvm_data * |
| 263 | iwl_parse_nvm_sections(struct iwl_mvm *mvm) |
| 264 | { |
| 265 | struct iwl_nvm_section *sections = mvm->nvm_sections; |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 266 | const __le16 *hw, *sw, *calib, *regulatory, *mac_override; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 267 | |
| 268 | /* Checking for required sections */ |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 269 | if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) { |
| 270 | if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data || |
| 271 | !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) { |
Eran Harary | abf09c5 | 2014-07-01 17:33:29 +0300 | [diff] [blame] | 272 | IWL_ERR(mvm, "Can't parse empty OTP/NVM sections\n"); |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 273 | return NULL; |
| 274 | } |
| 275 | } else { |
Eran Harary | 9f32e01 | 2014-04-28 15:22:40 +0300 | [diff] [blame] | 276 | /* SW and REGULATORY sections are mandatory */ |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 277 | if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data || |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 278 | !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) { |
| 279 | IWL_ERR(mvm, |
Eran Harary | abf09c5 | 2014-07-01 17:33:29 +0300 | [diff] [blame] | 280 | "Can't parse empty family 8000 OTP/NVM sections\n"); |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 281 | return NULL; |
| 282 | } |
Eran Harary | 9f32e01 | 2014-04-28 15:22:40 +0300 | [diff] [blame] | 283 | /* MAC_OVERRIDE or at least HW section must exist */ |
Eran Harary | bb92692 | 2014-04-30 15:31:59 +0300 | [diff] [blame] | 284 | if (!mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data && |
Eran Harary | 9f32e01 | 2014-04-28 15:22:40 +0300 | [diff] [blame] | 285 | !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data) { |
| 286 | IWL_ERR(mvm, |
| 287 | "Can't parse mac_address, empty sections\n"); |
| 288 | return NULL; |
| 289 | } |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | if (WARN_ON(!mvm->cfg)) |
| 293 | return NULL; |
| 294 | |
Eran Harary | ae2b21b | 2014-01-09 08:08:24 +0200 | [diff] [blame] | 295 | hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 296 | sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data; |
| 297 | calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data; |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 298 | regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data; |
| 299 | mac_override = |
| 300 | (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data; |
| 301 | |
Emmanuel Grumbach | 9ce4fa7 | 2013-05-22 13:16:23 +0300 | [diff] [blame] | 302 | return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib, |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 303 | regulatory, mac_override, |
Johannes Berg | 4ed735e | 2014-02-12 21:47:44 +0100 | [diff] [blame] | 304 | mvm->fw->valid_tx_ant, |
| 305 | mvm->fw->valid_rx_ant); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 306 | } |
| 307 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 308 | #define MAX_NVM_FILE_LEN 16384 |
| 309 | |
| 310 | /* |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 311 | * Reads external NVM from a file into mvm->nvm_sections |
| 312 | * |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 313 | * HOW TO CREATE THE NVM FILE FORMAT: |
| 314 | * ------------------------------ |
| 315 | * 1. create hex file, format: |
| 316 | * 3800 -> header |
| 317 | * 0000 -> header |
| 318 | * 5a40 -> data |
| 319 | * |
| 320 | * rev - 6 bit (word1) |
| 321 | * len - 10 bit (word1) |
| 322 | * id - 4 bit (word2) |
| 323 | * rsv - 12 bit (word2) |
| 324 | * |
| 325 | * 2. flip 8bits with 8 bits per line to get the right NVM file format |
| 326 | * |
| 327 | * 3. create binary file from the hex file |
| 328 | * |
| 329 | * 4. save as "iNVM_xxx.bin" under /lib/firmware |
| 330 | */ |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 331 | static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm) |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 332 | { |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 333 | int ret, section_size; |
| 334 | u16 section_id; |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 335 | const struct firmware *fw_entry; |
| 336 | const struct { |
| 337 | __le16 word1; |
| 338 | __le16 word2; |
| 339 | u8 data[]; |
| 340 | } *file_sec; |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 341 | const u8 *eof, *temp; |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 342 | int max_section_size; |
Idan Kahlon | a4e5df2 | 2014-11-13 15:47:20 +0200 | [diff] [blame] | 343 | const __le32 *dword_buff; |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 344 | |
| 345 | #define NVM_WORD1_LEN(x) (8 * (x & 0x03FF)) |
| 346 | #define NVM_WORD2_ID(x) (x >> 12) |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 347 | #define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8)) |
| 348 | #define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4) |
Idan Kahlon | a4e5df2 | 2014-11-13 15:47:20 +0200 | [diff] [blame] | 349 | #define NVM_HEADER_0 (0x2A504C54) |
| 350 | #define NVM_HEADER_1 (0x4E564D2A) |
| 351 | #define NVM_HEADER_SIZE (4 * sizeof(u32)) |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 352 | |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 353 | IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n"); |
| 354 | |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 355 | /* Maximal size depends on HW family and step */ |
| 356 | if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) |
| 357 | max_section_size = IWL_MAX_NVM_SECTION_SIZE; |
Liad Kaufman | c2a2b28 | 2014-09-07 11:41:05 +0300 | [diff] [blame] | 358 | else if (CSR_HW_REV_STEP(mvm->trans->hw_rev) == SILICON_A_STEP) |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 359 | max_section_size = IWL_MAX_NVM_8000A_SECTION_SIZE; |
Eran Harary | 716e48a | 2015-01-12 10:43:58 +0200 | [diff] [blame] | 360 | else /* Family 8000 B-step or C-step */ |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 361 | max_section_size = IWL_MAX_NVM_8000B_SECTION_SIZE; |
| 362 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 363 | /* |
| 364 | * Obtain NVM image via request_firmware. Since we already used |
| 365 | * request_firmware_nowait() for the firmware binary load and only |
| 366 | * get here after that we assume the NVM request can be satisfied |
| 367 | * synchronously. |
| 368 | */ |
Eran Harary | e02a9d6 | 2014-05-07 12:27:10 +0300 | [diff] [blame] | 369 | ret = request_firmware(&fw_entry, mvm->nvm_file_name, |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 370 | mvm->trans->dev); |
| 371 | if (ret) { |
| 372 | IWL_ERR(mvm, "ERROR: %s isn't available %d\n", |
Eran Harary | e02a9d6 | 2014-05-07 12:27:10 +0300 | [diff] [blame] | 373 | mvm->nvm_file_name, ret); |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 374 | return ret; |
| 375 | } |
| 376 | |
| 377 | IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n", |
Eran Harary | e02a9d6 | 2014-05-07 12:27:10 +0300 | [diff] [blame] | 378 | mvm->nvm_file_name, fw_entry->size); |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 379 | |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 380 | if (fw_entry->size > MAX_NVM_FILE_LEN) { |
| 381 | IWL_ERR(mvm, "NVM file too large\n"); |
| 382 | ret = -EINVAL; |
| 383 | goto out; |
| 384 | } |
| 385 | |
| 386 | eof = fw_entry->data + fw_entry->size; |
Idan Kahlon | a4e5df2 | 2014-11-13 15:47:20 +0200 | [diff] [blame] | 387 | dword_buff = (__le32 *)fw_entry->data; |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 388 | |
Idan Kahlon | a4e5df2 | 2014-11-13 15:47:20 +0200 | [diff] [blame] | 389 | /* some NVM file will contain a header. |
| 390 | * The header is identified by 2 dwords header as follow: |
| 391 | * dword[0] = 0x2A504C54 |
| 392 | * dword[1] = 0x4E564D2A |
| 393 | * |
| 394 | * This header must be skipped when providing the NVM data to the FW. |
| 395 | */ |
| 396 | if (fw_entry->size > NVM_HEADER_SIZE && |
| 397 | dword_buff[0] == cpu_to_le32(NVM_HEADER_0) && |
| 398 | dword_buff[1] == cpu_to_le32(NVM_HEADER_1)) { |
| 399 | file_sec = (void *)(fw_entry->data + NVM_HEADER_SIZE); |
| 400 | IWL_INFO(mvm, "NVM Version %08X\n", le32_to_cpu(dword_buff[2])); |
| 401 | IWL_INFO(mvm, "NVM Manufacturing date %08X\n", |
| 402 | le32_to_cpu(dword_buff[3])); |
| 403 | } else { |
| 404 | file_sec = (void *)fw_entry->data; |
| 405 | } |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 406 | |
| 407 | while (true) { |
| 408 | if (file_sec->data > eof) { |
| 409 | IWL_ERR(mvm, |
| 410 | "ERROR - NVM file too short for section header\n"); |
| 411 | ret = -EINVAL; |
| 412 | break; |
| 413 | } |
| 414 | |
| 415 | /* check for EOF marker */ |
| 416 | if (!file_sec->word1 && !file_sec->word2) { |
| 417 | ret = 0; |
| 418 | break; |
| 419 | } |
| 420 | |
Eran Harary | 77db0a3 | 2014-02-04 14:21:38 +0200 | [diff] [blame] | 421 | if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) { |
| 422 | section_size = |
| 423 | 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1)); |
| 424 | section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2)); |
| 425 | } else { |
| 426 | section_size = 2 * NVM_WORD2_LEN_FAMILY_8000( |
| 427 | le16_to_cpu(file_sec->word2)); |
| 428 | section_id = NVM_WORD1_ID_FAMILY_8000( |
| 429 | le16_to_cpu(file_sec->word1)); |
| 430 | } |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 431 | |
Liad Kaufman | f251c07 | 2014-04-28 14:42:04 +0300 | [diff] [blame] | 432 | if (section_size > max_section_size) { |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 433 | IWL_ERR(mvm, "ERROR - section too large (%d)\n", |
| 434 | section_size); |
| 435 | ret = -EINVAL; |
| 436 | break; |
| 437 | } |
| 438 | |
| 439 | if (!section_size) { |
| 440 | IWL_ERR(mvm, "ERROR - section empty\n"); |
| 441 | ret = -EINVAL; |
| 442 | break; |
| 443 | } |
| 444 | |
| 445 | if (file_sec->data + section_size > eof) { |
| 446 | IWL_ERR(mvm, |
| 447 | "ERROR - NVM file too short for section (%d bytes)\n", |
| 448 | section_size); |
| 449 | ret = -EINVAL; |
| 450 | break; |
| 451 | } |
| 452 | |
Eran Harary | ae2b21b | 2014-01-09 08:08:24 +0200 | [diff] [blame] | 453 | if (WARN(section_id >= NVM_MAX_NUM_SECTIONS, |
Eytan Lifshitz | a4a1247 | 2013-12-18 23:05:06 +0200 | [diff] [blame] | 454 | "Invalid NVM section ID %d\n", section_id)) { |
| 455 | ret = -EINVAL; |
| 456 | break; |
| 457 | } |
| 458 | |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 459 | temp = kmemdup(file_sec->data, section_size, GFP_KERNEL); |
| 460 | if (!temp) { |
| 461 | ret = -ENOMEM; |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 462 | break; |
| 463 | } |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 464 | mvm->nvm_sections[section_id].data = temp; |
| 465 | mvm->nvm_sections[section_id].length = section_size; |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 466 | |
| 467 | /* advance to the next section */ |
| 468 | file_sec = (void *)(file_sec->data + section_size); |
| 469 | } |
| 470 | out: |
| 471 | release_firmware(fw_entry); |
| 472 | return ret; |
| 473 | } |
| 474 | |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 475 | /* Loads the NVM data stored in mvm->nvm_sections into the NIC */ |
| 476 | int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm) |
| 477 | { |
Eytan Lifshitz | 05159fc | 2014-01-07 12:50:45 +0200 | [diff] [blame] | 478 | int i, ret = 0; |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 479 | struct iwl_nvm_section *sections = mvm->nvm_sections; |
| 480 | |
| 481 | IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n"); |
| 482 | |
Emmanuel Grumbach | 099d8f2 | 2014-01-05 15:09:44 +0200 | [diff] [blame] | 483 | for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) { |
| 484 | if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length) |
| 485 | continue; |
| 486 | ret = iwl_nvm_write_section(mvm, i, sections[i].data, |
| 487 | sections[i].length); |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 488 | if (ret < 0) { |
| 489 | IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret); |
| 490 | break; |
| 491 | } |
| 492 | } |
| 493 | return ret; |
| 494 | } |
| 495 | |
Eran Harary | 14b485f | 2014-04-23 10:46:09 +0300 | [diff] [blame] | 496 | int iwl_nvm_init(struct iwl_mvm *mvm, bool read_nvm_from_nic) |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 497 | { |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 498 | int ret, section; |
Liad Kaufman | 5daddc9 | 2014-05-21 14:37:00 +0300 | [diff] [blame] | 499 | u32 size_read = 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 500 | u8 *nvm_buffer, *temp; |
| 501 | |
Eran Harary | ae2b21b | 2014-01-09 08:08:24 +0200 | [diff] [blame] | 502 | if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS)) |
| 503 | return -EINVAL; |
| 504 | |
Eran Harary | 26481bf | 2014-03-25 14:14:44 +0200 | [diff] [blame] | 505 | /* load NVM values from nic */ |
Eran Harary | 14b485f | 2014-04-23 10:46:09 +0300 | [diff] [blame] | 506 | if (read_nvm_from_nic) { |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 507 | /* Read From FW NVM */ |
| 508 | IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n"); |
Eran Harary | 1214755 | 2013-05-09 08:07:59 +0300 | [diff] [blame] | 509 | |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 510 | nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size, |
| 511 | GFP_KERNEL); |
| 512 | if (!nvm_buffer) |
| 513 | return -ENOMEM; |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 514 | for (section = 0; section < NVM_MAX_NUM_SECTIONS; section++) { |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 515 | /* we override the constness for initial read */ |
Liad Kaufman | 5daddc9 | 2014-05-21 14:37:00 +0300 | [diff] [blame] | 516 | ret = iwl_nvm_read_section(mvm, section, nvm_buffer, |
| 517 | size_read); |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 518 | if (ret < 0) |
Eran Harary | d6aeb35 | 2014-05-11 09:44:17 +0300 | [diff] [blame] | 519 | continue; |
Liad Kaufman | 5daddc9 | 2014-05-21 14:37:00 +0300 | [diff] [blame] | 520 | size_read += ret; |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 521 | temp = kmemdup(nvm_buffer, ret, GFP_KERNEL); |
| 522 | if (!temp) { |
| 523 | ret = -ENOMEM; |
| 524 | break; |
| 525 | } |
| 526 | mvm->nvm_sections[section].data = temp; |
| 527 | mvm->nvm_sections[section].length = ret; |
Emmanuel Grumbach | 086f736 | 2013-11-18 17:00:03 +0200 | [diff] [blame] | 528 | |
| 529 | #ifdef CONFIG_IWLWIFI_DEBUGFS |
| 530 | switch (section) { |
Emmanuel Grumbach | 086f736 | 2013-11-18 17:00:03 +0200 | [diff] [blame] | 531 | case NVM_SECTION_TYPE_SW: |
| 532 | mvm->nvm_sw_blob.data = temp; |
| 533 | mvm->nvm_sw_blob.size = ret; |
| 534 | break; |
| 535 | case NVM_SECTION_TYPE_CALIBRATION: |
| 536 | mvm->nvm_calib_blob.data = temp; |
| 537 | mvm->nvm_calib_blob.size = ret; |
| 538 | break; |
| 539 | case NVM_SECTION_TYPE_PRODUCTION: |
| 540 | mvm->nvm_prod_blob.data = temp; |
| 541 | mvm->nvm_prod_blob.size = ret; |
| 542 | break; |
| 543 | default: |
Eran Harary | ae2b21b | 2014-01-09 08:08:24 +0200 | [diff] [blame] | 544 | if (section == mvm->cfg->nvm_hw_section_num) { |
| 545 | mvm->nvm_hw_blob.data = temp; |
| 546 | mvm->nvm_hw_blob.size = ret; |
| 547 | break; |
| 548 | } |
Emmanuel Grumbach | 086f736 | 2013-11-18 17:00:03 +0200 | [diff] [blame] | 549 | } |
| 550 | #endif |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 551 | } |
Eran Harary | bdce40f | 2014-07-01 17:31:38 +0300 | [diff] [blame] | 552 | if (!size_read) |
| 553 | IWL_ERR(mvm, "OTP is blank\n"); |
Eytan Lifshitz | 81a67e3 | 2013-09-11 12:39:18 +0200 | [diff] [blame] | 554 | kfree(nvm_buffer); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 555 | } |
| 556 | |
Eran Harary | 26481bf | 2014-03-25 14:14:44 +0200 | [diff] [blame] | 557 | /* load external NVM if configured */ |
Eran Harary | e02a9d6 | 2014-05-07 12:27:10 +0300 | [diff] [blame] | 558 | if (mvm->nvm_file_name) { |
Eran Harary | 26481bf | 2014-03-25 14:14:44 +0200 | [diff] [blame] | 559 | /* move to External NVM flow */ |
| 560 | ret = iwl_mvm_read_external_nvm(mvm); |
| 561 | if (ret) |
| 562 | return ret; |
| 563 | } |
| 564 | |
| 565 | /* parse the relevant nvm sections */ |
Emmanuel Grumbach | b9545b4 | 2013-03-06 11:34:44 +0200 | [diff] [blame] | 566 | mvm->nvm_data = iwl_parse_nvm_sections(mvm); |
Johannes Berg | 82598b4 | 2013-05-13 21:44:42 +0200 | [diff] [blame] | 567 | if (!mvm->nvm_data) |
| 568 | return -ENODATA; |
Eran Harary | 2a831e0 | 2014-12-29 13:02:13 +0200 | [diff] [blame] | 569 | IWL_DEBUG_EEPROM(mvm->trans->dev, "nvm version = %x\n", |
| 570 | mvm->nvm_data->nvm_version); |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 571 | |
Johannes Berg | 82598b4 | 2013-05-13 21:44:42 +0200 | [diff] [blame] | 572 | return 0; |
Johannes Berg | 8ca151b | 2013-01-24 14:25:36 +0100 | [diff] [blame] | 573 | } |
Arik Nemtsov | dcaf9f5 | 2014-03-04 19:54:12 +0200 | [diff] [blame] | 574 | |
| 575 | struct iwl_mcc_update_resp * |
| 576 | iwl_mvm_update_mcc(struct iwl_mvm *mvm, const char *alpha2) |
| 577 | { |
| 578 | struct iwl_mcc_update_cmd mcc_update_cmd = { |
| 579 | .mcc = cpu_to_le16(alpha2[0] << 8 | alpha2[1]), |
| 580 | }; |
| 581 | struct iwl_mcc_update_resp *mcc_resp, *resp_cp = NULL; |
| 582 | struct iwl_rx_packet *pkt; |
| 583 | struct iwl_host_cmd cmd = { |
| 584 | .id = MCC_UPDATE_CMD, |
| 585 | .flags = CMD_WANT_SKB, |
| 586 | .data = { &mcc_update_cmd }, |
| 587 | }; |
| 588 | |
| 589 | int ret; |
| 590 | u32 status; |
| 591 | int resp_len, n_channels; |
| 592 | u16 mcc; |
| 593 | |
| 594 | if (WARN_ON_ONCE(!iwl_mvm_is_lar_supported(mvm))) |
| 595 | return ERR_PTR(-EOPNOTSUPP); |
| 596 | |
| 597 | cmd.len[0] = sizeof(struct iwl_mcc_update_cmd); |
| 598 | |
| 599 | IWL_DEBUG_LAR(mvm, "send MCC update to FW with '%c%c'\n", |
| 600 | alpha2[0], alpha2[1]); |
| 601 | |
| 602 | ret = iwl_mvm_send_cmd(mvm, &cmd); |
| 603 | if (ret) |
| 604 | return ERR_PTR(ret); |
| 605 | |
| 606 | pkt = cmd.resp_pkt; |
| 607 | if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) { |
| 608 | IWL_ERR(mvm, "Bad return from MCC_UPDATE_COMMAND (0x%08X)\n", |
| 609 | pkt->hdr.flags); |
| 610 | ret = -EIO; |
| 611 | goto exit; |
| 612 | } |
| 613 | |
| 614 | /* Extract MCC response */ |
| 615 | mcc_resp = (void *)pkt->data; |
| 616 | status = le32_to_cpu(mcc_resp->status); |
| 617 | |
| 618 | if (status == MCC_RESP_INVALID) { |
| 619 | IWL_ERR(mvm, |
| 620 | "FW ERROR: MCC update with invalid parameter '%c%c'\n", |
| 621 | alpha2[0], alpha2[1]); |
| 622 | ret = -EINVAL; |
| 623 | goto exit; |
| 624 | } else if (status == MCC_RESP_NVM_DISABLED) { |
| 625 | ret = 0; |
| 626 | /* resp_cp will be NULL */ |
| 627 | goto exit; |
| 628 | } |
| 629 | |
| 630 | mcc = le16_to_cpu(mcc_resp->mcc); |
| 631 | |
| 632 | /* W/A for a FW/NVM issue - returns 0x00 for the world domain */ |
| 633 | if (mcc == 0) { |
| 634 | mcc = 0x3030; /* "00" - world */ |
| 635 | mcc_resp->mcc = cpu_to_le16(mcc); |
| 636 | } |
| 637 | |
| 638 | n_channels = __le32_to_cpu(mcc_resp->n_channels); |
| 639 | IWL_DEBUG_LAR(mvm, |
| 640 | "MCC response status: 0x%x. new MCC: 0x%x ('%c%c') change: %d n_chans: %d\n", |
| 641 | status, mcc, mcc >> 8, mcc & 0xff, |
| 642 | !!(status == MCC_RESP_SAME_CHAN_PROFILE), n_channels); |
| 643 | |
| 644 | resp_len = sizeof(*mcc_resp) + n_channels * sizeof(__le32); |
| 645 | resp_cp = kmemdup(mcc_resp, resp_len, GFP_KERNEL); |
| 646 | if (!resp_cp) { |
| 647 | ret = -ENOMEM; |
| 648 | goto exit; |
| 649 | } |
| 650 | |
| 651 | ret = 0; |
| 652 | exit: |
| 653 | iwl_free_resp(&cmd); |
| 654 | if (ret) |
| 655 | return ERR_PTR(ret); |
| 656 | return resp_cp; |
| 657 | } |
Arik Nemtsov | 90d4f7d | 2014-03-04 19:58:46 +0200 | [diff] [blame^] | 658 | |
| 659 | int iwl_mvm_init_mcc(struct iwl_mvm *mvm) |
| 660 | { |
| 661 | if (!iwl_mvm_is_lar_supported(mvm)) |
| 662 | return 0; |
| 663 | |
| 664 | /* |
| 665 | * During HW restart, only replay the last set MCC to FW. Otherwise, |
| 666 | * queue an update to cfg80211 to retrieve the default alpha2 from FW. |
| 667 | */ |
| 668 | if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { |
| 669 | /* This should only be called during vif up and hold RTNL */ |
| 670 | const struct ieee80211_regdomain *r = |
| 671 | rtnl_dereference(mvm->hw->wiphy->regd); |
| 672 | |
| 673 | if (r) { |
| 674 | struct iwl_mcc_update_resp *resp; |
| 675 | |
| 676 | resp = iwl_mvm_update_mcc(mvm, r->alpha2); |
| 677 | if (IS_ERR_OR_NULL(resp)) |
| 678 | return -EIO; |
| 679 | |
| 680 | kfree(resp); |
| 681 | } |
| 682 | |
| 683 | return 0; |
| 684 | } |
| 685 | |
| 686 | /* |
| 687 | * Driver regulatory hint for initial update - use the special |
| 688 | * unknown-country "99" code. This will also clear the "custom reg" |
| 689 | * flag and allow regdomain changes. It will happen after init since |
| 690 | * RTNL is required. |
| 691 | */ |
| 692 | return regulatory_hint(mvm->hw->wiphy, "99"); |
| 693 | } |