Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec...
[linux-2.6-block.git] / drivers / net / wireless / iwlwifi / mvm / nvm.c
CommitLineData
8ca151b5
JB
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 *
51368bf7 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
8ca151b5
JB
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
410dc5aa 25 * in the file called COPYING.
8ca151b5
JB
26 *
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
51368bf7 33 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
8ca151b5
JB
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *
62 *****************************************************************************/
1214755c 63#include <linux/firmware.h>
8ca151b5
JB
64#include "iwl-trans.h"
65#include "mvm.h"
66#include "iwl-eeprom-parse.h"
67#include "iwl-eeprom-read.h"
68#include "iwl-nvm-parse.h"
69
1fd4afe2 70/* Default NVM size to read */
1214755c 71#define IWL_NVM_DEFAULT_CHUNK_SIZE (2*1024)
8a87bddd 72#define IWL_MAX_NVM_SECTION_SIZE 7000
1fd4afe2 73
1214755c
EH
74#define NVM_WRITE_OPCODE 1
75#define NVM_READ_OPCODE 0
76
77/*
78 * prepare the NVM host command w/ the pointers to the nvm buffer
79 * and send it to fw
80 */
81static int iwl_nvm_write_chunk(struct iwl_mvm *mvm, u16 section,
82 u16 offset, u16 length, const u8 *data)
8ca151b5 83{
1214755c
EH
84 struct iwl_nvm_access_cmd nvm_access_cmd = {
85 .offset = cpu_to_le16(offset),
86 .length = cpu_to_le16(length),
87 .type = cpu_to_le16(section),
88 .op_code = NVM_WRITE_OPCODE,
89 };
90 struct iwl_host_cmd cmd = {
91 .id = NVM_ACCESS_CMD,
92 .len = { sizeof(struct iwl_nvm_access_cmd), length },
4f59334b 93 .flags = CMD_SYNC | CMD_SEND_IN_RFKILL,
1214755c
EH
94 .data = { &nvm_access_cmd, data },
95 /* data may come from vmalloc, so use _DUP */
96 .dataflags = { 0, IWL_HCMD_DFL_DUP },
97 };
98
99 return iwl_mvm_send_cmd(mvm, &cmd);
8ca151b5
JB
100}
101
102static int iwl_nvm_read_chunk(struct iwl_mvm *mvm, u16 section,
103 u16 offset, u16 length, u8 *data)
104{
1214755c
EH
105 struct iwl_nvm_access_cmd nvm_access_cmd = {
106 .offset = cpu_to_le16(offset),
107 .length = cpu_to_le16(length),
108 .type = cpu_to_le16(section),
109 .op_code = NVM_READ_OPCODE,
110 };
b9545b48 111 struct iwl_nvm_access_resp *nvm_resp;
8ca151b5
JB
112 struct iwl_rx_packet *pkt;
113 struct iwl_host_cmd cmd = {
114 .id = NVM_ACCESS_CMD,
4f59334b 115 .flags = CMD_SYNC | CMD_WANT_SKB | CMD_SEND_IN_RFKILL,
8ca151b5
JB
116 .data = { &nvm_access_cmd, },
117 };
118 int ret, bytes_read, offset_read;
119 u8 *resp_data;
120
b9545b48 121 cmd.len[0] = sizeof(struct iwl_nvm_access_cmd);
8ca151b5
JB
122
123 ret = iwl_mvm_send_cmd(mvm, &cmd);
124 if (ret)
125 return ret;
126
127 pkt = cmd.resp_pkt;
128 if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
129 IWL_ERR(mvm, "Bad return from NVM_ACCES_COMMAND (0x%08X)\n",
130 pkt->hdr.flags);
131 ret = -EIO;
132 goto exit;
133 }
134
135 /* Extract NVM response */
136 nvm_resp = (void *)pkt->data;
b9545b48
EG
137 ret = le16_to_cpu(nvm_resp->status);
138 bytes_read = le16_to_cpu(nvm_resp->length);
139 offset_read = le16_to_cpu(nvm_resp->offset);
140 resp_data = nvm_resp->data;
8ca151b5
JB
141 if (ret) {
142 IWL_ERR(mvm,
143 "NVM access command failed with status %d (device: %s)\n",
144 ret, mvm->cfg->name);
145 ret = -EINVAL;
146 goto exit;
147 }
148
149 if (offset_read != offset) {
150 IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n",
151 offset_read);
152 ret = -EINVAL;
153 goto exit;
154 }
155
156 /* Write data to NVM */
157 memcpy(data + offset, resp_data, bytes_read);
158 ret = bytes_read;
159
160exit:
161 iwl_free_resp(&cmd);
162 return ret;
163}
164
1214755c
EH
165static int iwl_nvm_write_section(struct iwl_mvm *mvm, u16 section,
166 const u8 *data, u16 length)
167{
168 int offset = 0;
169
170 /* copy data in chunks of 2k (and remainder if any) */
171
172 while (offset < length) {
173 int chunk_size, ret;
174
175 chunk_size = min(IWL_NVM_DEFAULT_CHUNK_SIZE,
176 length - offset);
177
178 ret = iwl_nvm_write_chunk(mvm, section, offset,
179 chunk_size, data + offset);
180 if (ret < 0)
181 return ret;
182
183 offset += chunk_size;
184 }
185
186 return 0;
187}
188
8ca151b5
JB
189/*
190 * Reads an NVM section completely.
191 * NICs prior to 7000 family doesn't have a real NVM, but just read
192 * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
193 * by uCode, we need to manually check in this case that we don't
194 * overflow and try to read more than the EEPROM size.
195 * For 7000 family NICs, we supply the maximal size we can read, and
196 * the uCode fills the response with as much data as we can,
197 * without overflowing, so no check is needed.
198 */
199static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
200 u8 *data)
201{
202 u16 length, offset = 0;
203 int ret;
8ca151b5 204
1fd4afe2
DS
205 /* Set nvm section read length */
206 length = IWL_NVM_DEFAULT_CHUNK_SIZE;
207
8ca151b5
JB
208 ret = length;
209
210 /* Read the NVM until exhausted (reading less than requested) */
211 while (ret == length) {
212 ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
213 if (ret < 0) {
214 IWL_ERR(mvm,
215 "Cannot read NVM from section %d offset %d, length %d\n",
216 section, offset, length);
217 return ret;
218 }
219 offset += ret;
8ca151b5
JB
220 }
221
07fd7d28
JB
222 IWL_DEBUG_EEPROM(mvm->trans->dev,
223 "NVM section %d read completed\n", section);
8ca151b5
JB
224 return offset;
225}
226
227static struct iwl_nvm_data *
228iwl_parse_nvm_sections(struct iwl_mvm *mvm)
229{
230 struct iwl_nvm_section *sections = mvm->nvm_sections;
77db0a3c 231 const __le16 *hw, *sw, *calib, *regulatory, *mac_override;
8ca151b5
JB
232
233 /* Checking for required sections */
77db0a3c
EH
234 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
235 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
236 !mvm->nvm_sections[mvm->cfg->nvm_hw_section_num].data) {
237 IWL_ERR(mvm, "Can't parse empty NVM sections\n");
238 return NULL;
239 }
240 } else {
241 if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
242 !mvm->nvm_sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data ||
243 !mvm->nvm_sections[NVM_SECTION_TYPE_REGULATORY].data) {
244 IWL_ERR(mvm,
245 "Can't parse empty family 8000 NVM sections\n");
246 return NULL;
247 }
8ca151b5
JB
248 }
249
250 if (WARN_ON(!mvm->cfg))
251 return NULL;
252
ae2b21b0 253 hw = (const __le16 *)sections[mvm->cfg->nvm_hw_section_num].data;
8ca151b5
JB
254 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
255 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
77db0a3c
EH
256 regulatory = (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data;
257 mac_override =
258 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data;
259
9ce4fa72 260 return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib,
77db0a3c 261 regulatory, mac_override,
4ed735e7
JB
262 mvm->fw->valid_tx_ant,
263 mvm->fw->valid_rx_ant);
8ca151b5
JB
264}
265
1214755c
EH
266#define MAX_NVM_FILE_LEN 16384
267
268/*
81a67e32
EL
269 * Reads external NVM from a file into mvm->nvm_sections
270 *
1214755c
EH
271 * HOW TO CREATE THE NVM FILE FORMAT:
272 * ------------------------------
273 * 1. create hex file, format:
274 * 3800 -> header
275 * 0000 -> header
276 * 5a40 -> data
277 *
278 * rev - 6 bit (word1)
279 * len - 10 bit (word1)
280 * id - 4 bit (word2)
281 * rsv - 12 bit (word2)
282 *
283 * 2. flip 8bits with 8 bits per line to get the right NVM file format
284 *
285 * 3. create binary file from the hex file
286 *
287 * 4. save as "iNVM_xxx.bin" under /lib/firmware
288 */
81a67e32 289static int iwl_mvm_read_external_nvm(struct iwl_mvm *mvm)
1214755c 290{
81a67e32
EL
291 int ret, section_size;
292 u16 section_id;
1214755c
EH
293 const struct firmware *fw_entry;
294 const struct {
295 __le16 word1;
296 __le16 word2;
297 u8 data[];
298 } *file_sec;
81a67e32 299 const u8 *eof, *temp;
1214755c
EH
300
301#define NVM_WORD1_LEN(x) (8 * (x & 0x03FF))
302#define NVM_WORD2_ID(x) (x >> 12)
77db0a3c
EH
303#define NVM_WORD2_LEN_FAMILY_8000(x) (2 * ((x & 0xFF) << 8 | x >> 8))
304#define NVM_WORD1_ID_FAMILY_8000(x) (x >> 4)
1214755c 305
81a67e32
EL
306 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from external NVM\n");
307
1214755c
EH
308 /*
309 * Obtain NVM image via request_firmware. Since we already used
310 * request_firmware_nowait() for the firmware binary load and only
311 * get here after that we assume the NVM request can be satisfied
312 * synchronously.
313 */
314 ret = request_firmware(&fw_entry, iwlwifi_mod_params.nvm_file,
315 mvm->trans->dev);
316 if (ret) {
317 IWL_ERR(mvm, "ERROR: %s isn't available %d\n",
318 iwlwifi_mod_params.nvm_file, ret);
319 return ret;
320 }
321
322 IWL_INFO(mvm, "Loaded NVM file %s (%zu bytes)\n",
323 iwlwifi_mod_params.nvm_file, fw_entry->size);
324
325 if (fw_entry->size < sizeof(*file_sec)) {
326 IWL_ERR(mvm, "NVM file too small\n");
327 ret = -EINVAL;
328 goto out;
329 }
330
331 if (fw_entry->size > MAX_NVM_FILE_LEN) {
332 IWL_ERR(mvm, "NVM file too large\n");
333 ret = -EINVAL;
334 goto out;
335 }
336
337 eof = fw_entry->data + fw_entry->size;
338
339 file_sec = (void *)fw_entry->data;
340
341 while (true) {
342 if (file_sec->data > eof) {
343 IWL_ERR(mvm,
344 "ERROR - NVM file too short for section header\n");
345 ret = -EINVAL;
346 break;
347 }
348
349 /* check for EOF marker */
350 if (!file_sec->word1 && !file_sec->word2) {
351 ret = 0;
352 break;
353 }
354
77db0a3c
EH
355 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
356 section_size =
357 2 * NVM_WORD1_LEN(le16_to_cpu(file_sec->word1));
358 section_id = NVM_WORD2_ID(le16_to_cpu(file_sec->word2));
359 } else {
360 section_size = 2 * NVM_WORD2_LEN_FAMILY_8000(
361 le16_to_cpu(file_sec->word2));
362 section_id = NVM_WORD1_ID_FAMILY_8000(
363 le16_to_cpu(file_sec->word1));
364 }
1214755c
EH
365
366 if (section_size > IWL_MAX_NVM_SECTION_SIZE) {
367 IWL_ERR(mvm, "ERROR - section too large (%d)\n",
368 section_size);
369 ret = -EINVAL;
370 break;
371 }
372
373 if (!section_size) {
374 IWL_ERR(mvm, "ERROR - section empty\n");
375 ret = -EINVAL;
376 break;
377 }
378
379 if (file_sec->data + section_size > eof) {
380 IWL_ERR(mvm,
381 "ERROR - NVM file too short for section (%d bytes)\n",
382 section_size);
383 ret = -EINVAL;
384 break;
385 }
386
ae2b21b0 387 if (WARN(section_id >= NVM_MAX_NUM_SECTIONS,
a4a12478
EL
388 "Invalid NVM section ID %d\n", section_id)) {
389 ret = -EINVAL;
390 break;
391 }
392
81a67e32
EL
393 temp = kmemdup(file_sec->data, section_size, GFP_KERNEL);
394 if (!temp) {
395 ret = -ENOMEM;
396 break;
397 }
81a67e32
EL
398 mvm->nvm_sections[section_id].data = temp;
399 mvm->nvm_sections[section_id].length = section_size;
1214755c
EH
400
401 /* advance to the next section */
402 file_sec = (void *)(file_sec->data + section_size);
403 }
404out:
405 release_firmware(fw_entry);
406 return ret;
407}
408
81a67e32
EL
409/* Loads the NVM data stored in mvm->nvm_sections into the NIC */
410int iwl_mvm_load_nvm_to_nic(struct iwl_mvm *mvm)
411{
05159fcc 412 int i, ret = 0;
81a67e32
EL
413 struct iwl_nvm_section *sections = mvm->nvm_sections;
414
415 IWL_DEBUG_EEPROM(mvm->trans->dev, "'Write to NVM\n");
416
099d8f20
EG
417 for (i = 0; i < ARRAY_SIZE(mvm->nvm_sections); i++) {
418 if (!mvm->nvm_sections[i].data || !mvm->nvm_sections[i].length)
419 continue;
420 ret = iwl_nvm_write_section(mvm, i, sections[i].data,
421 sections[i].length);
81a67e32
EL
422 if (ret < 0) {
423 IWL_ERR(mvm, "iwl_mvm_send_cmd failed: %d\n", ret);
424 break;
425 }
426 }
427 return ret;
428}
429
8ca151b5
JB
430int iwl_nvm_init(struct iwl_mvm *mvm)
431{
432 int ret, i, section;
433 u8 *nvm_buffer, *temp;
77db0a3c
EH
434 int nvm_to_read[NVM_MAX_NUM_SECTIONS];
435 int num_of_sections_to_read;
8ca151b5 436
ae2b21b0
EH
437 if (WARN_ON_ONCE(mvm->cfg->nvm_hw_section_num >= NVM_MAX_NUM_SECTIONS))
438 return -EINVAL;
439
1214755c
EH
440 /* load external NVM if configured */
441 if (iwlwifi_mod_params.nvm_file) {
442 /* move to External NVM flow */
81a67e32 443 ret = iwl_mvm_read_external_nvm(mvm);
1214755c
EH
444 if (ret)
445 return ret;
81a67e32 446 } else {
ae2b21b0 447 /* list of NVM sections we are allowed/need to read */
77db0a3c
EH
448 if (mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_8000) {
449 nvm_to_read[0] = mvm->cfg->nvm_hw_section_num;
450 nvm_to_read[1] = NVM_SECTION_TYPE_SW;
451 nvm_to_read[2] = NVM_SECTION_TYPE_CALIBRATION;
452 nvm_to_read[3] = NVM_SECTION_TYPE_PRODUCTION;
453 num_of_sections_to_read = 4;
454 } else {
455 nvm_to_read[0] = NVM_SECTION_TYPE_SW;
456 nvm_to_read[1] = NVM_SECTION_TYPE_CALIBRATION;
457 nvm_to_read[2] = NVM_SECTION_TYPE_PRODUCTION;
458 nvm_to_read[3] = NVM_SECTION_TYPE_REGULATORY;
459 nvm_to_read[4] = NVM_SECTION_TYPE_MAC_OVERRIDE;
460 num_of_sections_to_read = 5;
461 }
ae2b21b0 462
81a67e32
EL
463 /* Read From FW NVM */
464 IWL_DEBUG_EEPROM(mvm->trans->dev, "Read from NVM\n");
465
466 /* TODO: find correct NVM max size for a section */
467 nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
468 GFP_KERNEL);
469 if (!nvm_buffer)
470 return -ENOMEM;
77db0a3c 471 for (i = 0; i < num_of_sections_to_read; i++) {
81a67e32
EL
472 section = nvm_to_read[i];
473 /* we override the constness for initial read */
474 ret = iwl_nvm_read_section(mvm, section, nvm_buffer);
475 if (ret < 0)
476 break;
477 temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
478 if (!temp) {
479 ret = -ENOMEM;
480 break;
481 }
482 mvm->nvm_sections[section].data = temp;
483 mvm->nvm_sections[section].length = ret;
086f7368
EG
484
485#ifdef CONFIG_IWLWIFI_DEBUGFS
486 switch (section) {
086f7368
EG
487 case NVM_SECTION_TYPE_SW:
488 mvm->nvm_sw_blob.data = temp;
489 mvm->nvm_sw_blob.size = ret;
490 break;
491 case NVM_SECTION_TYPE_CALIBRATION:
492 mvm->nvm_calib_blob.data = temp;
493 mvm->nvm_calib_blob.size = ret;
494 break;
495 case NVM_SECTION_TYPE_PRODUCTION:
496 mvm->nvm_prod_blob.data = temp;
497 mvm->nvm_prod_blob.size = ret;
498 break;
499 default:
ae2b21b0
EH
500 if (section == mvm->cfg->nvm_hw_section_num) {
501 mvm->nvm_hw_blob.data = temp;
502 mvm->nvm_hw_blob.size = ret;
503 break;
504 }
086f7368
EG
505 WARN(1, "section: %d", section);
506 }
507#endif
8ca151b5 508 }
81a67e32
EL
509 kfree(nvm_buffer);
510 if (ret < 0)
511 return ret;
8ca151b5
JB
512 }
513
b9545b48 514 mvm->nvm_data = iwl_parse_nvm_sections(mvm);
82598b4f
JB
515 if (!mvm->nvm_data)
516 return -ENODATA;
8ca151b5 517
82598b4f 518 return 0;
8ca151b5 519}