iwlwifi: store cipher scheme independent of mac80211
[deliverable/linux.git] / drivers / net / wireless / intel / iwlwifi / iwl-drv.c
CommitLineData
5c58edc6
EG
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) 2007 - 2014 Intel Corporation. All rights reserved.
4203263d 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
5ed47226 10 * Copyright(c) 2016 Intel Deutschland GmbH
5c58edc6
EG
11 *
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.
15 *
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.
20 *
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,
24 * USA
25 *
26 * The full GNU General Public License is included in this distribution
410dc5aa 27 * in the file called COPYING.
5c58edc6
EG
28 *
29 * Contact Information:
cb2f8277 30 * Intel Linux Wireless <linuxwifi@intel.com>
5c58edc6
EG
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
51368bf7 35 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
4203263d 36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
5ed47226 37 * Copyright(c) 2016 Intel Deutschland GmbH
5c58edc6
EG
38 * All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 *
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
49 * distribution.
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.
53 *
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.
65 *
66 *****************************************************************************/
67#include <linux/completion.h>
15854ef9
JB
68#include <linux/dma-mapping.h>
69#include <linux/firmware.h>
70#include <linux/module.h>
83f84d7b 71#include <linux/vmalloc.h>
5c58edc6
EG
72
73#include "iwl-drv.h"
2bf65081 74#include "iwl-csr.h"
c15797e6 75#include "iwl-debug.h"
5c58edc6 76#include "iwl-trans.h"
d0f76d68 77#include "iwl-op-mode.h"
0cedacc5 78#include "iwl-agn-hw.h"
6238b008
JB
79#include "iwl-fw.h"
80#include "iwl-config.h"
65de7e84 81#include "iwl-modparams.h"
5c58edc6 82
cc5f7e39
DF
83/******************************************************************************
84 *
85 * module boiler plate
86 *
87 ******************************************************************************/
88
cc5f7e39 89#define DRV_DESCRIPTION "Intel(R) Wireless WiFi driver for Linux"
cc5f7e39 90MODULE_DESCRIPTION(DRV_DESCRIPTION);
cc5f7e39
DF
91MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
92MODULE_LICENSE("GPL");
93
9da987ac
MV
94#ifdef CONFIG_IWLWIFI_DEBUGFS
95static struct dentry *iwl_dbgfs_root;
96#endif
97
965974a6
JB
98/**
99 * struct iwl_drv - drv common data
cc5f7e39 100 * @list: list of drv structures using this opmode
965974a6 101 * @fw: the iwl_fw structure
965974a6 102 * @op_mode: the running op_mode
68f360dc 103 * @trans: transport layer
4b9844f5 104 * @dev: for debug prints only
68f360dc 105 * @cfg: configuration struct
965974a6
JB
106 * @fw_index: firmware revision to try loading
107 * @firmware_name: composite filename of ucode file to load
108 * @request_firmware_complete: the firmware has been obtained from user space
109 */
110struct iwl_drv {
cc5f7e39 111 struct list_head list;
965974a6
JB
112 struct iwl_fw fw;
113
965974a6 114 struct iwl_op_mode *op_mode;
9130bab1 115 struct iwl_trans *trans;
4b9844f5 116 struct device *dev;
68f360dc 117 const struct iwl_cfg *cfg;
965974a6
JB
118
119 int fw_index; /* firmware we're trying to load */
0730ffb1 120 char firmware_name[64]; /* name of firmware file to load */
965974a6
JB
121
122 struct completion request_firmware_complete;
9da987ac
MV
123
124#ifdef CONFIG_IWLWIFI_DEBUGFS
125 struct dentry *dbgfs_drv;
126 struct dentry *dbgfs_trans;
127 struct dentry *dbgfs_op_mode;
128#endif
965974a6
JB
129};
130
8ca151b5 131enum {
6d48fcd9
JB
132 DVM_OP_MODE,
133 MVM_OP_MODE,
8ca151b5 134};
965974a6 135
ff1ffb85
JB
136/* Protects the table contents, i.e. the ops pointer & drv list */
137static struct mutex iwlwifi_opmode_table_mtx;
cc5f7e39
DF
138static struct iwlwifi_opmode_table {
139 const char *name; /* name: iwldvm, iwlmvm, etc */
140 const struct iwl_op_mode_ops *ops; /* pointer to op_mode ops */
141 struct list_head drv; /* list of devices using this op_mode */
142} iwlwifi_opmode_table[] = { /* ops set when driver is initialized */
8ca151b5
JB
143 [DVM_OP_MODE] = { .name = "iwldvm", .ops = NULL },
144 [MVM_OP_MODE] = { .name = "iwlmvm", .ops = NULL },
cc5f7e39 145};
965974a6 146
762533ba
DS
147#define IWL_DEFAULT_SCAN_CHANNELS 40
148
0cedacc5 149/*
0d365ae5 150 * struct fw_sec: Just for the image parsing process.
0cedacc5
DS
151 * For the fw storage we are using struct fw_desc.
152 */
153struct fw_sec {
154 const void *data; /* the sec data */
155 size_t size; /* section size */
156 u32 offset; /* offset of writing in the device */
157};
158
965974a6 159static void iwl_free_fw_desc(struct iwl_drv *drv, struct fw_desc *desc)
15854ef9 160{
83f84d7b
JB
161 vfree(desc->data);
162 desc->data = NULL;
15854ef9
JB
163 desc->len = 0;
164}
165
965974a6 166static void iwl_free_fw_img(struct iwl_drv *drv, struct fw_img *img)
15854ef9 167{
6dfa8d01
DS
168 int i;
169 for (i = 0; i < IWL_UCODE_SECTION_MAX; i++)
170 iwl_free_fw_desc(drv, &img->sec[i]);
15854ef9
JB
171}
172
965974a6 173static void iwl_dealloc_ucode(struct iwl_drv *drv)
15854ef9 174{
6dfa8d01 175 int i;
490fefeb
LK
176
177 kfree(drv->fw.dbg_dest_tlv);
178 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++)
179 kfree(drv->fw.dbg_conf_tlv[i]);
d2709ad7
EG
180 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++)
181 kfree(drv->fw.dbg_trigger_tlv[i]);
a6017b90
GBA
182 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_mem_tlv); i++)
183 kfree(drv->fw.dbg_mem_tlv[i]);
490fefeb 184
6dfa8d01
DS
185 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
186 iwl_free_fw_img(drv, drv->fw.img + i);
15854ef9
JB
187}
188
965974a6 189static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc,
83f84d7b 190 struct fw_sec *sec)
15854ef9 191{
83f84d7b
JB
192 void *data;
193
194 desc->data = NULL;
195
196 if (!sec || !sec->size)
15854ef9 197 return -EINVAL;
15854ef9 198
83f84d7b
JB
199 data = vmalloc(sec->size);
200 if (!data)
15854ef9
JB
201 return -ENOMEM;
202
0cedacc5
DS
203 desc->len = sec->size;
204 desc->offset = sec->offset;
83f84d7b
JB
205 memcpy(data, sec->data, desc->len);
206 desc->data = data;
207
15854ef9
JB
208 return 0;
209}
210
1c8e11e1
EG
211static void iwl_req_fw_callback(const struct firmware *ucode_raw,
212 void *context);
15854ef9 213
965974a6 214static int iwl_request_firmware(struct iwl_drv *drv, bool first)
15854ef9 215{
68f360dc 216 const char *name_pre = drv->cfg->fw_name_pre;
15854ef9
JB
217 char tag[8];
218
219 if (first) {
68f360dc 220 drv->fw_index = drv->cfg->ucode_api_max;
965974a6 221 sprintf(tag, "%d", drv->fw_index);
15854ef9 222 } else {
965974a6
JB
223 drv->fw_index--;
224 sprintf(tag, "%d", drv->fw_index);
15854ef9
JB
225 }
226
68f360dc 227 if (drv->fw_index < drv->cfg->ucode_api_min) {
965974a6 228 IWL_ERR(drv, "no suitable firmware found!\n");
15854ef9
JB
229 return -ENOENT;
230 }
231
84b0312e
LK
232 snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s%s.ucode",
233 name_pre, tag);
15854ef9 234
75094dc8 235 IWL_DEBUG_INFO(drv, "attempting to load firmware '%s'\n",
965974a6 236 drv->firmware_name);
15854ef9 237
965974a6 238 return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
93faaeea 239 drv->trans->dev,
1c8e11e1 240 GFP_KERNEL, drv, iwl_req_fw_callback);
15854ef9
JB
241}
242
0cedacc5 243struct fw_img_parsing {
6dfa8d01 244 struct fw_sec sec[IWL_UCODE_SECTION_MAX];
0cedacc5
DS
245 int sec_counter;
246};
247
ed8c8365
DS
248/*
249 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
250 */
251struct fw_sec_parsing {
252 __le32 offset;
253 const u8 data[];
254} __packed;
255
256/**
257 * struct iwl_tlv_calib_data - parse the default calib data from TLV
258 *
259 * @ucode_type: the uCode to which the following default calib relates.
260 * @calib: default calibrations.
261 */
262struct iwl_tlv_calib_data {
263 __le32 ucode_type;
aa2b1770 264 struct iwl_tlv_calib_ctrl calib;
ed8c8365
DS
265} __packed;
266
0cedacc5
DS
267struct iwl_firmware_pieces {
268 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
15854ef9
JB
269
270 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
271 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
490fefeb
LK
272
273 /* FW debug data parsed for driver usage */
274 struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
d2709ad7
EG
275 struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
276 size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
277 struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
278 size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
a6017b90 279 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv[FW_DBG_MEM_MAX];
15854ef9
JB
280};
281
0cedacc5
DS
282/*
283 * These functions are just to extract uCode section data from the pieces
284 * structure.
285 */
286static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
287 enum iwl_ucode_type type,
288 int sec)
289{
290 return &pieces->img[type].sec[sec];
291}
292
293static void set_sec_data(struct iwl_firmware_pieces *pieces,
294 enum iwl_ucode_type type,
295 int sec,
296 const void *data)
297{
298 pieces->img[type].sec[sec].data = data;
299}
300
301static void set_sec_size(struct iwl_firmware_pieces *pieces,
302 enum iwl_ucode_type type,
303 int sec,
304 size_t size)
305{
306 pieces->img[type].sec[sec].size = size;
307}
308
309static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
310 enum iwl_ucode_type type,
311 int sec)
312{
313 return pieces->img[type].sec[sec].size;
314}
315
316static void set_sec_offset(struct iwl_firmware_pieces *pieces,
317 enum iwl_ucode_type type,
318 int sec,
319 u32 offset)
320{
321 pieces->img[type].sec[sec].offset = offset;
322}
323
e36e5433
MS
324static int iwl_store_cscheme(struct iwl_fw *fw, const u8 *data, const u32 len)
325{
326 int i, j;
327 struct iwl_fw_cscheme_list *l = (struct iwl_fw_cscheme_list *)data;
328 struct iwl_fw_cipher_scheme *fwcs;
e36e5433
MS
329
330 if (len < sizeof(*l) ||
331 len < sizeof(l->size) + l->size * sizeof(l->cs[0]))
332 return -EINVAL;
333
334 for (i = 0, j = 0; i < IWL_UCODE_MAX_CS && i < l->size; i++) {
335 fwcs = &l->cs[j];
e36e5433
MS
336
337 /* we skip schemes with zero cipher suite selector */
24ddddf3 338 if (!fwcs->cipher)
e36e5433
MS
339 continue;
340
24ddddf3 341 fw->cs[j++] = *fwcs;
e36e5433
MS
342 }
343
344 return 0;
345}
346
5ed47226
AB
347static void iwl_store_gscan_capa(struct iwl_fw *fw, const u8 *data,
348 const u32 len)
17564dde
AS
349{
350 struct iwl_fw_gscan_capabilities *fw_capa = (void *)data;
351 struct iwl_gscan_capabilities *capa = &fw->gscan_capa;
352
17564dde
AS
353 capa->max_scan_cache_size = le32_to_cpu(fw_capa->max_scan_cache_size);
354 capa->max_scan_buckets = le32_to_cpu(fw_capa->max_scan_buckets);
355 capa->max_ap_cache_per_scan =
356 le32_to_cpu(fw_capa->max_ap_cache_per_scan);
357 capa->max_rssi_sample_size = le32_to_cpu(fw_capa->max_rssi_sample_size);
358 capa->max_scan_reporting_threshold =
359 le32_to_cpu(fw_capa->max_scan_reporting_threshold);
360 capa->max_hotlist_aps = le32_to_cpu(fw_capa->max_hotlist_aps);
361 capa->max_significant_change_aps =
362 le32_to_cpu(fw_capa->max_significant_change_aps);
363 capa->max_bssid_history_entries =
364 le32_to_cpu(fw_capa->max_bssid_history_entries);
5ed47226
AB
365 capa->max_hotlist_ssids = le32_to_cpu(fw_capa->max_hotlist_ssids);
366 capa->max_number_epno_networks =
367 le32_to_cpu(fw_capa->max_number_epno_networks);
368 capa->max_number_epno_networks_by_ssid =
369 le32_to_cpu(fw_capa->max_number_epno_networks_by_ssid);
370 capa->max_number_of_white_listed_ssid =
371 le32_to_cpu(fw_capa->max_number_of_white_listed_ssid);
372 capa->max_number_of_black_listed_ssid =
373 le32_to_cpu(fw_capa->max_number_of_black_listed_ssid);
17564dde
AS
374}
375
ed8c8365
DS
376/*
377 * Gets uCode section from tlv.
378 */
379static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
380 const void *data, enum iwl_ucode_type type,
381 int size)
382{
383 struct fw_img_parsing *img;
384 struct fw_sec *sec;
385 struct fw_sec_parsing *sec_parse;
386
387 if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
388 return -1;
389
390 sec_parse = (struct fw_sec_parsing *)data;
391
392 img = &pieces->img[type];
393 sec = &img->sec[img->sec_counter];
394
395 sec->offset = le32_to_cpu(sec_parse->offset);
396 sec->data = sec_parse->data;
1176f431 397 sec->size = size - sizeof(sec_parse->offset);
ed8c8365
DS
398
399 ++img->sec_counter;
400
401 return 0;
402}
403
404static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
405{
406 struct iwl_tlv_calib_data *def_calib =
407 (struct iwl_tlv_calib_data *)data;
408 u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
409 if (ucode_type >= IWL_UCODE_TYPE_MAX) {
410 IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
411 ucode_type);
412 return -EINVAL;
413 }
aa2b1770
JB
414 drv->fw.default_calib[ucode_type].flow_trigger =
415 def_calib->calib.flow_trigger;
416 drv->fw.default_calib[ucode_type].event_trigger =
417 def_calib->calib.event_trigger;
418
ed8c8365
DS
419 return 0;
420}
421
a2978b11
EH
422static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
423 struct iwl_ucode_capabilities *capa)
424{
425 const struct iwl_ucode_api *ucode_api = (void *)data;
426 u32 api_index = le32_to_cpu(ucode_api->api_index);
859d914c
JB
427 u32 api_flags = le32_to_cpu(ucode_api->api_flags);
428 int i;
a2978b11 429
d3f555f4 430 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
20f4d39a
JB
431 IWL_ERR(drv,
432 "api flags index %d larger than supported by driver\n",
433 api_index);
859d914c
JB
434 /* don't return an error so we can load FW that has more bits */
435 return 0;
a2978b11
EH
436 }
437
859d914c
JB
438 for (i = 0; i < 32; i++) {
439 if (api_flags & BIT(i))
440 __set_bit(i + 32 * api_index, capa->_api);
441 }
a2978b11
EH
442
443 return 0;
444}
445
446static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
447 struct iwl_ucode_capabilities *capa)
448{
449 const struct iwl_ucode_capa *ucode_capa = (void *)data;
450 u32 api_index = le32_to_cpu(ucode_capa->api_index);
859d914c
JB
451 u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
452 int i;
a2978b11 453
d3f555f4 454 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
20f4d39a
JB
455 IWL_ERR(drv,
456 "capa flags index %d larger than supported by driver\n",
457 api_index);
859d914c
JB
458 /* don't return an error so we can load FW that has more bits */
459 return 0;
a2978b11
EH
460 }
461
859d914c
JB
462 for (i = 0; i < 32; i++) {
463 if (api_flags & BIT(i))
464 __set_bit(i + 32 * api_index, capa->_capa);
465 }
a2978b11
EH
466
467 return 0;
468}
469
965974a6 470static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
0cedacc5
DS
471 const struct firmware *ucode_raw,
472 struct iwl_firmware_pieces *pieces)
15854ef9
JB
473{
474 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
475 u32 api_ver, hdr_size, build;
476 char buildstr[25];
477 const u8 *src;
478
965974a6
JB
479 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
480 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
15854ef9
JB
481
482 switch (api_ver) {
483 default:
484 hdr_size = 28;
485 if (ucode_raw->size < hdr_size) {
965974a6 486 IWL_ERR(drv, "File size too small!\n");
15854ef9
JB
487 return -EINVAL;
488 }
489 build = le32_to_cpu(ucode->u.v2.build);
0cedacc5
DS
490 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
491 le32_to_cpu(ucode->u.v2.inst_size));
492 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
493 le32_to_cpu(ucode->u.v2.data_size));
494 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
495 le32_to_cpu(ucode->u.v2.init_size));
496 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
497 le32_to_cpu(ucode->u.v2.init_data_size));
15854ef9
JB
498 src = ucode->u.v2.data;
499 break;
500 case 0:
501 case 1:
502 case 2:
503 hdr_size = 24;
504 if (ucode_raw->size < hdr_size) {
965974a6 505 IWL_ERR(drv, "File size too small!\n");
15854ef9
JB
506 return -EINVAL;
507 }
508 build = 0;
0cedacc5
DS
509 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
510 le32_to_cpu(ucode->u.v1.inst_size));
511 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
512 le32_to_cpu(ucode->u.v1.data_size));
513 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
514 le32_to_cpu(ucode->u.v1.init_size));
515 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
516 le32_to_cpu(ucode->u.v1.init_data_size));
15854ef9
JB
517 src = ucode->u.v1.data;
518 break;
519 }
520
521 if (build)
75094dc8 522 sprintf(buildstr, " build %u", build);
15854ef9
JB
523 else
524 buildstr[0] = '\0';
525
965974a6
JB
526 snprintf(drv->fw.fw_version,
527 sizeof(drv->fw.fw_version),
15854ef9 528 "%u.%u.%u.%u%s",
965974a6
JB
529 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
530 IWL_UCODE_MINOR(drv->fw.ucode_ver),
531 IWL_UCODE_API(drv->fw.ucode_ver),
532 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
15854ef9
JB
533 buildstr);
534
535 /* Verify size of file vs. image size info in file's header */
0cedacc5
DS
536
537 if (ucode_raw->size != hdr_size +
538 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
539 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
540 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
541 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
15854ef9 542
965974a6 543 IWL_ERR(drv,
15854ef9
JB
544 "uCode file size %d does not match expected size\n",
545 (int)ucode_raw->size);
546 return -EINVAL;
547 }
548
15854ef9 549
0cedacc5
DS
550 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
551 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
552 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
553 IWLAGN_RTC_INST_LOWER_BOUND);
554 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
555 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
556 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
557 IWLAGN_RTC_DATA_LOWER_BOUND);
558 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
559 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
560 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
561 IWLAGN_RTC_INST_LOWER_BOUND);
562 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
563 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
564 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
565 IWLAGN_RTC_DATA_LOWER_BOUND);
15854ef9
JB
566 return 0;
567}
568
965974a6 569static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
15854ef9 570 const struct firmware *ucode_raw,
0cedacc5 571 struct iwl_firmware_pieces *pieces,
e6eb8ca9
GBA
572 struct iwl_ucode_capabilities *capa,
573 bool *usniffer_images)
15854ef9
JB
574{
575 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
576 struct iwl_ucode_tlv *tlv;
577 size_t len = ucode_raw->size;
578 const u8 *data;
15854ef9 579 u32 tlv_len;
a6c4fb44 580 u32 usniffer_img;
15854ef9
JB
581 enum iwl_ucode_tlv_type tlv_type;
582 const u8 *tlv_data;
583 char buildstr[25];
a6c4fb44 584 u32 build, paging_mem_size;
e2d6f4e7 585 int num_of_cpus;
61df750c 586 bool usniffer_req = false;
17564dde 587 bool gscan_capa = false;
15854ef9
JB
588
589 if (len < sizeof(*ucode)) {
965974a6 590 IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
15854ef9
JB
591 return -EINVAL;
592 }
593
594 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
965974a6 595 IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
15854ef9
JB
596 le32_to_cpu(ucode->magic));
597 return -EINVAL;
598 }
599
965974a6 600 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
06ddbf5a
EG
601 memcpy(drv->fw.human_readable, ucode->human_readable,
602 sizeof(drv->fw.human_readable));
15854ef9
JB
603 build = le32_to_cpu(ucode->build);
604
605 if (build)
75094dc8 606 sprintf(buildstr, " build %u", build);
15854ef9
JB
607 else
608 buildstr[0] = '\0';
609
965974a6
JB
610 snprintf(drv->fw.fw_version,
611 sizeof(drv->fw.fw_version),
15854ef9 612 "%u.%u.%u.%u%s",
965974a6
JB
613 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
614 IWL_UCODE_MINOR(drv->fw.ucode_ver),
615 IWL_UCODE_API(drv->fw.ucode_ver),
616 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
15854ef9
JB
617 buildstr);
618
619 data = ucode->data;
620
621 len -= sizeof(*ucode);
622
623 while (len >= sizeof(*tlv)) {
15854ef9
JB
624 len -= sizeof(*tlv);
625 tlv = (void *)data;
626
627 tlv_len = le32_to_cpu(tlv->length);
0479c19d 628 tlv_type = le32_to_cpu(tlv->type);
15854ef9
JB
629 tlv_data = tlv->data;
630
631 if (len < tlv_len) {
965974a6 632 IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
15854ef9
JB
633 len, tlv_len);
634 return -EINVAL;
635 }
636 len -= ALIGN(tlv_len, 4);
637 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
638
15854ef9
JB
639 switch (tlv_type) {
640 case IWL_UCODE_TLV_INST:
0cedacc5
DS
641 set_sec_data(pieces, IWL_UCODE_REGULAR,
642 IWL_UCODE_SECTION_INST, tlv_data);
643 set_sec_size(pieces, IWL_UCODE_REGULAR,
644 IWL_UCODE_SECTION_INST, tlv_len);
645 set_sec_offset(pieces, IWL_UCODE_REGULAR,
646 IWL_UCODE_SECTION_INST,
647 IWLAGN_RTC_INST_LOWER_BOUND);
15854ef9
JB
648 break;
649 case IWL_UCODE_TLV_DATA:
0cedacc5
DS
650 set_sec_data(pieces, IWL_UCODE_REGULAR,
651 IWL_UCODE_SECTION_DATA, tlv_data);
652 set_sec_size(pieces, IWL_UCODE_REGULAR,
653 IWL_UCODE_SECTION_DATA, tlv_len);
654 set_sec_offset(pieces, IWL_UCODE_REGULAR,
655 IWL_UCODE_SECTION_DATA,
656 IWLAGN_RTC_DATA_LOWER_BOUND);
15854ef9
JB
657 break;
658 case IWL_UCODE_TLV_INIT:
0cedacc5
DS
659 set_sec_data(pieces, IWL_UCODE_INIT,
660 IWL_UCODE_SECTION_INST, tlv_data);
661 set_sec_size(pieces, IWL_UCODE_INIT,
662 IWL_UCODE_SECTION_INST, tlv_len);
663 set_sec_offset(pieces, IWL_UCODE_INIT,
664 IWL_UCODE_SECTION_INST,
665 IWLAGN_RTC_INST_LOWER_BOUND);
15854ef9
JB
666 break;
667 case IWL_UCODE_TLV_INIT_DATA:
0cedacc5
DS
668 set_sec_data(pieces, IWL_UCODE_INIT,
669 IWL_UCODE_SECTION_DATA, tlv_data);
670 set_sec_size(pieces, IWL_UCODE_INIT,
671 IWL_UCODE_SECTION_DATA, tlv_len);
672 set_sec_offset(pieces, IWL_UCODE_INIT,
673 IWL_UCODE_SECTION_DATA,
674 IWLAGN_RTC_DATA_LOWER_BOUND);
15854ef9
JB
675 break;
676 case IWL_UCODE_TLV_BOOT:
965974a6 677 IWL_ERR(drv, "Found unexpected BOOT ucode\n");
15854ef9
JB
678 break;
679 case IWL_UCODE_TLV_PROBE_MAX_LEN:
680 if (tlv_len != sizeof(u32))
681 goto invalid_tlv_len;
682 capa->max_probe_length =
683 le32_to_cpup((__le32 *)tlv_data);
684 break;
685 case IWL_UCODE_TLV_PAN:
686 if (tlv_len)
687 goto invalid_tlv_len;
688 capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
689 break;
690 case IWL_UCODE_TLV_FLAGS:
691 /* must be at least one u32 */
692 if (tlv_len < sizeof(u32))
693 goto invalid_tlv_len;
694 /* and a proper number of u32s */
695 if (tlv_len % sizeof(u32))
696 goto invalid_tlv_len;
697 /*
698 * This driver only reads the first u32 as
699 * right now no more features are defined,
700 * if that changes then either the driver
701 * will not work with the new firmware, or
702 * it'll not take advantage of new features.
703 */
704 capa->flags = le32_to_cpup((__le32 *)tlv_data);
705 break;
a2978b11
EH
706 case IWL_UCODE_TLV_API_CHANGES_SET:
707 if (tlv_len != sizeof(struct iwl_ucode_api))
708 goto invalid_tlv_len;
709 if (iwl_set_ucode_api_flags(drv, tlv_data, capa))
710 goto tlv_error;
711 break;
712 case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
713 if (tlv_len != sizeof(struct iwl_ucode_capa))
714 goto invalid_tlv_len;
715 if (iwl_set_ucode_capabilities(drv, tlv_data, capa))
716 goto tlv_error;
717 break;
15854ef9
JB
718 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
719 if (tlv_len != sizeof(u32))
720 goto invalid_tlv_len;
721 pieces->init_evtlog_ptr =
722 le32_to_cpup((__le32 *)tlv_data);
723 break;
724 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
725 if (tlv_len != sizeof(u32))
726 goto invalid_tlv_len;
727 pieces->init_evtlog_size =
728 le32_to_cpup((__le32 *)tlv_data);
729 break;
730 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
731 if (tlv_len != sizeof(u32))
732 goto invalid_tlv_len;
733 pieces->init_errlog_ptr =
734 le32_to_cpup((__le32 *)tlv_data);
735 break;
736 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
737 if (tlv_len != sizeof(u32))
738 goto invalid_tlv_len;
739 pieces->inst_evtlog_ptr =
740 le32_to_cpup((__le32 *)tlv_data);
741 break;
742 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
743 if (tlv_len != sizeof(u32))
744 goto invalid_tlv_len;
745 pieces->inst_evtlog_size =
746 le32_to_cpup((__le32 *)tlv_data);
747 break;
748 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
749 if (tlv_len != sizeof(u32))
750 goto invalid_tlv_len;
751 pieces->inst_errlog_ptr =
752 le32_to_cpup((__le32 *)tlv_data);
753 break;
754 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
755 if (tlv_len)
756 goto invalid_tlv_len;
965974a6 757 drv->fw.enhance_sensitivity_table = true;
15854ef9
JB
758 break;
759 case IWL_UCODE_TLV_WOWLAN_INST:
0cedacc5
DS
760 set_sec_data(pieces, IWL_UCODE_WOWLAN,
761 IWL_UCODE_SECTION_INST, tlv_data);
762 set_sec_size(pieces, IWL_UCODE_WOWLAN,
763 IWL_UCODE_SECTION_INST, tlv_len);
764 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
765 IWL_UCODE_SECTION_INST,
766 IWLAGN_RTC_INST_LOWER_BOUND);
15854ef9
JB
767 break;
768 case IWL_UCODE_TLV_WOWLAN_DATA:
0cedacc5
DS
769 set_sec_data(pieces, IWL_UCODE_WOWLAN,
770 IWL_UCODE_SECTION_DATA, tlv_data);
771 set_sec_size(pieces, IWL_UCODE_WOWLAN,
772 IWL_UCODE_SECTION_DATA, tlv_len);
773 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
774 IWL_UCODE_SECTION_DATA,
775 IWLAGN_RTC_DATA_LOWER_BOUND);
15854ef9
JB
776 break;
777 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
778 if (tlv_len != sizeof(u32))
779 goto invalid_tlv_len;
780 capa->standard_phy_calibration_size =
781 le32_to_cpup((__le32 *)tlv_data);
782 break;
ed8c8365
DS
783 case IWL_UCODE_TLV_SEC_RT:
784 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
785 tlv_len);
ca221c9b 786 drv->fw.type = IWL_FW_MVM;
ed8c8365
DS
787 break;
788 case IWL_UCODE_TLV_SEC_INIT:
789 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
790 tlv_len);
ca221c9b 791 drv->fw.type = IWL_FW_MVM;
ed8c8365
DS
792 break;
793 case IWL_UCODE_TLV_SEC_WOWLAN:
794 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
795 tlv_len);
ca221c9b 796 drv->fw.type = IWL_FW_MVM;
ed8c8365
DS
797 break;
798 case IWL_UCODE_TLV_DEF_CALIB:
799 if (tlv_len != sizeof(struct iwl_tlv_calib_data))
800 goto invalid_tlv_len;
801 if (iwl_set_default_calib(drv, tlv_data))
802 goto tlv_error;
803 break;
804 case IWL_UCODE_TLV_PHY_SKU:
805 if (tlv_len != sizeof(u32))
806 goto invalid_tlv_len;
807 drv->fw.phy_config = le32_to_cpup((__le32 *)tlv_data);
77db0a3c
EH
808 drv->fw.valid_tx_ant = (drv->fw.phy_config &
809 FW_PHY_CFG_TX_CHAIN) >>
810 FW_PHY_CFG_TX_CHAIN_POS;
811 drv->fw.valid_rx_ant = (drv->fw.phy_config &
812 FW_PHY_CFG_RX_CHAIN) >>
813 FW_PHY_CFG_RX_CHAIN_POS;
ed8c8365 814 break;
e2d6f4e7
EH
815 case IWL_UCODE_TLV_SECURE_SEC_RT:
816 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
817 tlv_len);
ca221c9b 818 drv->fw.type = IWL_FW_MVM;
e2d6f4e7
EH
819 break;
820 case IWL_UCODE_TLV_SECURE_SEC_INIT:
821 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
822 tlv_len);
ca221c9b 823 drv->fw.type = IWL_FW_MVM;
e2d6f4e7
EH
824 break;
825 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
826 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
827 tlv_len);
ca221c9b 828 drv->fw.type = IWL_FW_MVM;
e2d6f4e7
EH
829 break;
830 case IWL_UCODE_TLV_NUM_OF_CPU:
831 if (tlv_len != sizeof(u32))
832 goto invalid_tlv_len;
833 num_of_cpus =
834 le32_to_cpup((__le32 *)tlv_data);
835
836 if (num_of_cpus == 2) {
837 drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
838 true;
839 drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
840 true;
841 drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
842 true;
843 } else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
844 IWL_ERR(drv, "Driver support upto 2 CPUs\n");
845 return -EINVAL;
846 }
847 break;
e36e5433
MS
848 case IWL_UCODE_TLV_CSCHEME:
849 if (iwl_store_cscheme(&drv->fw, tlv_data, tlv_len))
850 goto invalid_tlv_len;
851 break;
762533ba
DS
852 case IWL_UCODE_TLV_N_SCAN_CHANNELS:
853 if (tlv_len != sizeof(u32))
854 goto invalid_tlv_len;
855 capa->n_scan_channels =
856 le32_to_cpup((__le32 *)tlv_data);
857 break;
7e1223b5
EG
858 case IWL_UCODE_TLV_FW_VERSION: {
859 __le32 *ptr = (void *)tlv_data;
860 u32 major, minor;
861 u8 local_comp;
862
863 if (tlv_len != sizeof(u32) * 3)
864 goto invalid_tlv_len;
865
866 major = le32_to_cpup(ptr++);
867 minor = le32_to_cpup(ptr++);
868 local_comp = le32_to_cpup(ptr);
869
870 snprintf(drv->fw.fw_version,
871 sizeof(drv->fw.fw_version), "%u.%u.%u",
872 major, minor, local_comp);
873 break;
874 }
490fefeb
LK
875 case IWL_UCODE_TLV_FW_DBG_DEST: {
876 struct iwl_fw_dbg_dest_tlv *dest = (void *)tlv_data;
877
878 if (pieces->dbg_dest_tlv) {
879 IWL_ERR(drv,
880 "dbg destination ignored, already exists\n");
881 break;
882 }
883
884 pieces->dbg_dest_tlv = dest;
885 IWL_INFO(drv, "Found debug destination: %s\n",
886 get_fw_dbg_mode_string(dest->monitor_mode));
887
888 drv->fw.dbg_dest_reg_num =
889 tlv_len - offsetof(struct iwl_fw_dbg_dest_tlv,
890 reg_ops);
891 drv->fw.dbg_dest_reg_num /=
892 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]);
893
894 break;
895 }
896 case IWL_UCODE_TLV_FW_DBG_CONF: {
897 struct iwl_fw_dbg_conf_tlv *conf = (void *)tlv_data;
898
899 if (!pieces->dbg_dest_tlv) {
900 IWL_ERR(drv,
901 "Ignore dbg config %d - no destination configured\n",
902 conf->id);
903 break;
904 }
905
906 if (conf->id >= ARRAY_SIZE(drv->fw.dbg_conf_tlv)) {
907 IWL_ERR(drv,
908 "Skip unknown configuration: %d\n",
909 conf->id);
910 break;
911 }
912
913 if (pieces->dbg_conf_tlv[conf->id]) {
914 IWL_ERR(drv,
915 "Ignore duplicate dbg config %d\n",
916 conf->id);
917 break;
918 }
919
61df750c
EH
920 if (conf->usniffer)
921 usniffer_req = true;
922
490fefeb
LK
923 IWL_INFO(drv, "Found debug configuration: %d\n",
924 conf->id);
925
926 pieces->dbg_conf_tlv[conf->id] = conf;
927 pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
928 break;
929 }
d2709ad7
EG
930 case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
931 struct iwl_fw_dbg_trigger_tlv *trigger =
932 (void *)tlv_data;
933 u32 trigger_id = le32_to_cpu(trigger->id);
934
935 if (trigger_id >= ARRAY_SIZE(drv->fw.dbg_trigger_tlv)) {
936 IWL_ERR(drv,
937 "Skip unknown trigger: %u\n",
938 trigger->id);
939 break;
940 }
941
942 if (pieces->dbg_trigger_tlv[trigger_id]) {
943 IWL_ERR(drv,
944 "Ignore duplicate dbg trigger %u\n",
945 trigger->id);
946 break;
947 }
948
949 IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
950
951 pieces->dbg_trigger_tlv[trigger_id] = trigger;
952 pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
953 break;
954 }
61df750c 955 case IWL_UCODE_TLV_SEC_RT_USNIFFER:
e6eb8ca9 956 *usniffer_images = true;
61df750c
EH
957 iwl_store_ucode_sec(pieces, tlv_data,
958 IWL_UCODE_REGULAR_USNIFFER,
959 tlv_len);
960 break;
a6c4fb44
MG
961 case IWL_UCODE_TLV_PAGING:
962 if (tlv_len != sizeof(u32))
963 goto invalid_tlv_len;
964 paging_mem_size = le32_to_cpup((__le32 *)tlv_data);
965
966 IWL_DEBUG_FW(drv,
967 "Paging: paging enabled (size = %u bytes)\n",
968 paging_mem_size);
969
970 if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
971 IWL_ERR(drv,
972 "Paging: driver supports up to %lu bytes for paging image\n",
973 MAX_PAGING_IMAGE_SIZE);
974 return -EINVAL;
975 }
976
977 if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
978 IWL_ERR(drv,
979 "Paging: image isn't multiple %lu\n",
980 FW_PAGING_SIZE);
981 return -EINVAL;
982 }
983
984 drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
985 paging_mem_size;
986 usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
987 drv->fw.img[usniffer_img].paging_mem_size =
988 paging_mem_size;
989 break;
b4821767
LK
990 case IWL_UCODE_TLV_SDIO_ADMA_ADDR:
991 if (tlv_len != sizeof(u32))
992 goto invalid_tlv_len;
993 drv->fw.sdio_adma_addr =
994 le32_to_cpup((__le32 *)tlv_data);
995 break;
17564dde 996 case IWL_UCODE_TLV_FW_GSCAN_CAPA:
5ed47226
AB
997 /*
998 * Don't return an error in case of a shorter tlv_len
999 * to enable loading of FW that has an old format
1000 * of GSCAN capabilities TLV.
1001 */
1002 if (tlv_len < sizeof(struct iwl_fw_gscan_capabilities))
1003 break;
1004
1005 iwl_store_gscan_capa(&drv->fw, tlv_data, tlv_len);
17564dde
AS
1006 gscan_capa = true;
1007 break;
a6017b90
GBA
1008 case IWL_UCODE_TLV_FW_MEM_SEG: {
1009 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1010 (void *)tlv_data;
1011 u32 type;
1012
1013 if (tlv_len != (sizeof(*dbg_mem)))
1014 goto invalid_tlv_len;
1015
1016 type = le32_to_cpu(dbg_mem->data_type);
1017 drv->fw.dbg_dynamic_mem = true;
1018
1019 if (type >= ARRAY_SIZE(drv->fw.dbg_mem_tlv)) {
1020 IWL_ERR(drv,
1021 "Skip unknown dbg mem segment: %u\n",
1022 dbg_mem->data_type);
1023 break;
1024 }
1025
1026 if (pieces->dbg_mem_tlv[type]) {
1027 IWL_ERR(drv,
1028 "Ignore duplicate mem segment: %u\n",
1029 dbg_mem->data_type);
1030 break;
1031 }
1032
1033 IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1034 dbg_mem->data_type);
1035
1036 pieces->dbg_mem_tlv[type] = dbg_mem;
1037 break;
1038 }
15854ef9 1039 default:
965974a6 1040 IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
15854ef9
JB
1041 break;
1042 }
1043 }
1044
3d2d4422
GBA
1045 if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1046 usniffer_req && !*usniffer_images) {
61df750c
EH
1047 IWL_ERR(drv,
1048 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1049 return -EINVAL;
1050 }
1051
15854ef9 1052 if (len) {
965974a6
JB
1053 IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1054 iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
15854ef9
JB
1055 return -EINVAL;
1056 }
1057
a0b09f13
AB
1058 /*
1059 * If ucode advertises that it supports GSCAN but GSCAN
1060 * capabilities TLV is not present, or if it has an old format,
1061 * warn and continue without GSCAN.
1062 */
1063 if (fw_has_capa(capa, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT) &&
1064 !gscan_capa) {
1065 IWL_DEBUG_INFO(drv,
1066 "GSCAN is supported but capabilities TLV is unavailable\n");
17564dde
AS
1067 __clear_bit((__force long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT,
1068 capa->_capa);
a0b09f13 1069 }
17564dde 1070
15854ef9
JB
1071 return 0;
1072
1073 invalid_tlv_len:
965974a6 1074 IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
ed8c8365 1075 tlv_error:
965974a6 1076 iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
15854ef9
JB
1077
1078 return -EINVAL;
1079}
1080
75813bde
JB
1081static int iwl_alloc_ucode(struct iwl_drv *drv,
1082 struct iwl_firmware_pieces *pieces,
1083 enum iwl_ucode_type type)
6dfa8d01
DS
1084{
1085 int i;
1086 for (i = 0;
1087 i < IWL_UCODE_SECTION_MAX && get_sec_size(pieces, type, i);
1088 i++)
1089 if (iwl_alloc_fw_desc(drv, &(drv->fw.img[type].sec[i]),
75813bde
JB
1090 get_sec(pieces, type, i)))
1091 return -ENOMEM;
6dfa8d01
DS
1092 return 0;
1093}
1094
1095static int validate_sec_sizes(struct iwl_drv *drv,
1096 struct iwl_firmware_pieces *pieces,
1097 const struct iwl_cfg *cfg)
1098{
1099 IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %Zd\n",
1100 get_sec_size(pieces, IWL_UCODE_REGULAR,
1101 IWL_UCODE_SECTION_INST));
1102 IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %Zd\n",
1103 get_sec_size(pieces, IWL_UCODE_REGULAR,
1104 IWL_UCODE_SECTION_DATA));
1105 IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %Zd\n",
1106 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
1107 IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %Zd\n",
1108 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1109
1110 /* Verify that uCode images will fit in card's SRAM. */
1111 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
e70fe7eb 1112 cfg->max_inst_size) {
6dfa8d01
DS
1113 IWL_ERR(drv, "uCode instr len %Zd too large to fit in\n",
1114 get_sec_size(pieces, IWL_UCODE_REGULAR,
e70fe7eb 1115 IWL_UCODE_SECTION_INST));
6dfa8d01
DS
1116 return -1;
1117 }
1118
1119 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
e70fe7eb 1120 cfg->max_data_size) {
6dfa8d01
DS
1121 IWL_ERR(drv, "uCode data len %Zd too large to fit in\n",
1122 get_sec_size(pieces, IWL_UCODE_REGULAR,
e70fe7eb 1123 IWL_UCODE_SECTION_DATA));
6dfa8d01
DS
1124 return -1;
1125 }
1126
e70fe7eb
EG
1127 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1128 cfg->max_inst_size) {
6dfa8d01
DS
1129 IWL_ERR(drv, "uCode init instr len %Zd too large to fit in\n",
1130 get_sec_size(pieces, IWL_UCODE_INIT,
e70fe7eb 1131 IWL_UCODE_SECTION_INST));
6dfa8d01
DS
1132 return -1;
1133 }
1134
1135 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
e70fe7eb 1136 cfg->max_data_size) {
6dfa8d01
DS
1137 IWL_ERR(drv, "uCode init data len %Zd too large to fit in\n",
1138 get_sec_size(pieces, IWL_UCODE_REGULAR,
e70fe7eb 1139 IWL_UCODE_SECTION_DATA));
6dfa8d01
DS
1140 return -1;
1141 }
1142 return 0;
1143}
1144
9da987ac
MV
1145static struct iwl_op_mode *
1146_iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1147{
1148 const struct iwl_op_mode_ops *ops = op->ops;
1149 struct dentry *dbgfs_dir = NULL;
1150 struct iwl_op_mode *op_mode = NULL;
1151
1152#ifdef CONFIG_IWLWIFI_DEBUGFS
1153 drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1154 drv->dbgfs_drv);
1155 if (!drv->dbgfs_op_mode) {
1156 IWL_ERR(drv,
1157 "failed to create opmode debugfs directory\n");
1158 return op_mode;
1159 }
1160 dbgfs_dir = drv->dbgfs_op_mode;
1161#endif
1162
1163 op_mode = ops->start(drv->trans, drv->cfg, &drv->fw, dbgfs_dir);
1164
1165#ifdef CONFIG_IWLWIFI_DEBUGFS
1166 if (!op_mode) {
1167 debugfs_remove_recursive(drv->dbgfs_op_mode);
1168 drv->dbgfs_op_mode = NULL;
1169 }
1170#endif
1171
1172 return op_mode;
1173}
1174
1175static void _iwl_op_mode_stop(struct iwl_drv *drv)
1176{
1177 /* op_mode can be NULL if its start failed */
1178 if (drv->op_mode) {
1179 iwl_op_mode_stop(drv->op_mode);
1180 drv->op_mode = NULL;
1181
1182#ifdef CONFIG_IWLWIFI_DEBUGFS
1183 debugfs_remove_recursive(drv->dbgfs_op_mode);
1184 drv->dbgfs_op_mode = NULL;
1185#endif
1186 }
1187}
1188
15854ef9 1189/**
1c8e11e1 1190 * iwl_req_fw_callback - callback when firmware was loaded
15854ef9
JB
1191 *
1192 * If loaded successfully, copies the firmware into buffers
1193 * for the card to fetch (via DMA).
1194 */
1c8e11e1 1195static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
15854ef9 1196{
965974a6 1197 struct iwl_drv *drv = context;
965974a6 1198 struct iwl_fw *fw = &drv->fw;
15854ef9 1199 struct iwl_ucode_header *ucode;
cc5f7e39 1200 struct iwlwifi_opmode_table *op;
15854ef9 1201 int err;
490fefeb 1202 struct iwl_firmware_pieces *pieces;
68f360dc 1203 const unsigned int api_max = drv->cfg->ucode_api_max;
68f360dc 1204 const unsigned int api_min = drv->cfg->ucode_api_min;
2841a2d3 1205 size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
15854ef9 1206 u32 api_ver;
6dfa8d01 1207 int i;
d4b10483 1208 bool load_module = false;
e6eb8ca9 1209 bool usniffer_images = false;
15854ef9 1210
66140adc 1211 fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
15854ef9
JB
1212 fw->ucode_capa.standard_phy_calibration_size =
1213 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
762533ba 1214 fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
15854ef9 1215
490fefeb
LK
1216 pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1217 if (!pieces)
1218 return;
15854ef9 1219
9d9b21d1 1220 if (!ucode_raw)
15854ef9 1221 goto try_again;
15854ef9 1222
965974a6
JB
1223 IWL_DEBUG_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1224 drv->firmware_name, ucode_raw->size);
15854ef9
JB
1225
1226 /* Make sure that we got at least the API version number */
1227 if (ucode_raw->size < 4) {
965974a6 1228 IWL_ERR(drv, "File size way too small!\n");
15854ef9
JB
1229 goto try_again;
1230 }
1231
1232 /* Data from ucode file: header followed by uCode images */
1233 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1234
1235 if (ucode->ver)
490fefeb 1236 err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
15854ef9 1237 else
490fefeb 1238 err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
e6eb8ca9 1239 &fw->ucode_capa, &usniffer_images);
15854ef9
JB
1240
1241 if (err)
1242 goto try_again;
1243
97f95c93 1244 api_ver = drv->fw.ucode_ver;
15854ef9
JB
1245
1246 /*
1247 * api_ver should match the api version forming part of the
1248 * firmware filename ... but we don't check for that and only rely
1249 * on the API version read from firmware header from here on forward
1250 */
75094dc8
EG
1251 if (api_ver < api_min || api_ver > api_max) {
1252 IWL_ERR(drv,
1253 "Driver unable to support your firmware API. "
1254 "Driver supports v%u, firmware is v%u.\n",
1255 api_max, api_ver);
1256 goto try_again;
15854ef9
JB
1257 }
1258
4db2c9ae
DS
1259 /*
1260 * In mvm uCode there is no difference between data and instructions
1261 * sections.
1262 */
ca221c9b 1263 if (fw->type == IWL_FW_DVM && validate_sec_sizes(drv, pieces, drv->cfg))
15854ef9 1264 goto try_again;
15854ef9
JB
1265
1266 /* Allocate ucode buffers for card's bus-master loading ... */
1267
1268 /* Runtime instructions and 2 copies of data:
1269 * 1) unmodified from disk
1270 * 2) backup cache for save/restore during power-downs */
6dfa8d01 1271 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
490fefeb 1272 if (iwl_alloc_ucode(drv, pieces, i))
75813bde 1273 goto out_free_fw;
15854ef9 1274
490fefeb
LK
1275 if (pieces->dbg_dest_tlv) {
1276 drv->fw.dbg_dest_tlv =
1277 kmemdup(pieces->dbg_dest_tlv,
1278 sizeof(*pieces->dbg_dest_tlv) +
1279 sizeof(pieces->dbg_dest_tlv->reg_ops[0]) *
1280 drv->fw.dbg_dest_reg_num, GFP_KERNEL);
1281
1282 if (!drv->fw.dbg_dest_tlv)
1283 goto out_free_fw;
1284 }
1285
1286 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++) {
1287 if (pieces->dbg_conf_tlv[i]) {
1288 drv->fw.dbg_conf_tlv_len[i] =
1289 pieces->dbg_conf_tlv_len[i];
1290 drv->fw.dbg_conf_tlv[i] =
1291 kmemdup(pieces->dbg_conf_tlv[i],
1292 drv->fw.dbg_conf_tlv_len[i],
1293 GFP_KERNEL);
1294 if (!drv->fw.dbg_conf_tlv[i])
1295 goto out_free_fw;
1296 }
1297 }
1298
2841a2d3
EG
1299 memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1300
1301 trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1302 sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1303 trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1304 trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1305 sizeof(struct iwl_fw_dbg_trigger_cmd);
1306 trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1307 sizeof(struct iwl_fw_dbg_trigger_mlme);
1308 trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1309 sizeof(struct iwl_fw_dbg_trigger_stats);
1310 trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1311 sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1312 trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1313 sizeof(struct iwl_fw_dbg_trigger_txq_timer);
874c174e
EG
1314 trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1315 sizeof(struct iwl_fw_dbg_trigger_time_event);
4203263d
EG
1316 trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1317 sizeof(struct iwl_fw_dbg_trigger_ba);
1e8f1329
GBA
1318 trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1319 sizeof(struct iwl_fw_dbg_trigger_tdls);
2841a2d3 1320
d2709ad7
EG
1321 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++) {
1322 if (pieces->dbg_trigger_tlv[i]) {
2841a2d3
EG
1323 /*
1324 * If the trigger isn't long enough, WARN and exit.
1325 * Someone is trying to debug something and he won't
1326 * be able to catch the bug he is trying to chase.
1327 * We'd better be noisy to be sure he knows what's
1328 * going on.
1329 */
1330 if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1331 (trigger_tlv_sz[i] +
1332 sizeof(struct iwl_fw_dbg_trigger_tlv))))
1333 goto out_free_fw;
d2709ad7
EG
1334 drv->fw.dbg_trigger_tlv_len[i] =
1335 pieces->dbg_trigger_tlv_len[i];
1336 drv->fw.dbg_trigger_tlv[i] =
1337 kmemdup(pieces->dbg_trigger_tlv[i],
1338 drv->fw.dbg_trigger_tlv_len[i],
1339 GFP_KERNEL);
1340 if (!drv->fw.dbg_trigger_tlv[i])
a6017b90
GBA
1341 goto out_free_fw;
1342 }
1343 }
1344
1345 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_mem_tlv); i++) {
1346 if (pieces->dbg_mem_tlv[i]) {
1347 drv->fw.dbg_mem_tlv[i] =
1348 kmemdup(pieces->dbg_mem_tlv[i],
1349 sizeof(*drv->fw.dbg_mem_tlv[i]),
1350 GFP_KERNEL);
1351 if (!drv->fw.dbg_mem_tlv[i])
d2709ad7
EG
1352 goto out_free_fw;
1353 }
1354 }
1355
15854ef9
JB
1356 /* Now that we can no longer fail, copy information */
1357
1358 /*
1359 * The (size - 16) / 12 formula is based on the information recorded
1360 * for each event, which is of mode 1 (including timestamp) for all
1361 * new microcodes that include this information.
1362 */
490fefeb
LK
1363 fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1364 if (pieces->init_evtlog_size)
1365 fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
15854ef9 1366 else
0692fe41 1367 fw->init_evtlog_size =
68f360dc 1368 drv->cfg->base_params->max_event_log_size;
490fefeb
LK
1369 fw->init_errlog_ptr = pieces->init_errlog_ptr;
1370 fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1371 if (pieces->inst_evtlog_size)
1372 fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
15854ef9 1373 else
0692fe41 1374 fw->inst_evtlog_size =
68f360dc 1375 drv->cfg->base_params->max_event_log_size;
490fefeb 1376 fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
15854ef9
JB
1377
1378 /*
1379 * figure out the offset of chain noise reset and gain commands
1380 * base on the size of standard phy calibration commands table size
1381 */
1382 if (fw->ucode_capa.standard_phy_calibration_size >
1383 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1384 fw->ucode_capa.standard_phy_calibration_size =
1385 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1386
1387 /* We have our copies now, allow OS release its copies */
1388 release_firmware(ucode_raw);
15854ef9 1389
ff1ffb85 1390 mutex_lock(&iwlwifi_opmode_table_mtx);
ca221c9b
JB
1391 switch (fw->type) {
1392 case IWL_FW_DVM:
8ca151b5 1393 op = &iwlwifi_opmode_table[DVM_OP_MODE];
ca221c9b
JB
1394 break;
1395 default:
1396 WARN(1, "Invalid fw type %d\n", fw->type);
1397 case IWL_FW_MVM:
1398 op = &iwlwifi_opmode_table[MVM_OP_MODE];
1399 break;
1400 }
15854ef9 1401
2b2719c7
JB
1402 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1403 drv->fw.fw_version, op->name);
1404
cc5f7e39
DF
1405 /* add this device to the list of devices using this op_mode */
1406 list_add_tail(&drv->list, &op->drv);
1407
1408 if (op->ops) {
9da987ac 1409 drv->op_mode = _iwl_op_mode_start(drv, op);
7c9c46c1 1410
daf67ce8
DC
1411 if (!drv->op_mode) {
1412 mutex_unlock(&iwlwifi_opmode_table_mtx);
7c9c46c1 1413 goto out_unbind;
daf67ce8 1414 }
cc5f7e39 1415 } else {
d4b10483 1416 load_module = true;
cc5f7e39 1417 }
ff1ffb85 1418 mutex_unlock(&iwlwifi_opmode_table_mtx);
15854ef9 1419
f69a23b7
JB
1420 /*
1421 * Complete the firmware request last so that
1422 * a driver unbind (stop) doesn't run while we
1423 * are doing the start() above.
1424 */
1425 complete(&drv->request_firmware_complete);
d4b10483
JB
1426
1427 /*
1428 * Load the module last so we don't block anything
1429 * else from proceeding if the module fails to load
1430 * or hangs loading.
1431 */
1618b2b0
JB
1432 if (load_module) {
1433 err = request_module("%s", op->name);
8edf3fd6 1434#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
1618b2b0
JB
1435 if (err)
1436 IWL_ERR(drv,
1437 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1438 op->name, err);
8edf3fd6 1439#endif
1618b2b0 1440 }
a71aaf66 1441 kfree(pieces);
15854ef9
JB
1442 return;
1443
1444 try_again:
1445 /* try next, if any */
1446 release_firmware(ucode_raw);
965974a6 1447 if (iwl_request_firmware(drv, false))
15854ef9 1448 goto out_unbind;
31a5a09c 1449 kfree(pieces);
15854ef9
JB
1450 return;
1451
75813bde 1452 out_free_fw:
965974a6
JB
1453 IWL_ERR(drv, "failed to allocate pci memory\n");
1454 iwl_dealloc_ucode(drv);
15854ef9
JB
1455 release_firmware(ucode_raw);
1456 out_unbind:
490fefeb 1457 kfree(pieces);
965974a6 1458 complete(&drv->request_firmware_complete);
93faaeea 1459 device_release_driver(drv->trans->dev);
15854ef9
JB
1460}
1461
87ce05a2 1462struct iwl_drv *iwl_drv_start(struct iwl_trans *trans,
9130bab1 1463 const struct iwl_cfg *cfg)
5c58edc6 1464{
965974a6 1465 struct iwl_drv *drv;
5c58edc6
EG
1466 int ret;
1467
965974a6 1468 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
eafe25e0
LC
1469 if (!drv) {
1470 ret = -ENOMEM;
1471 goto err;
1472 }
c15797e6 1473
9130bab1 1474 drv->trans = trans;
4b9844f5 1475 drv->dev = trans->dev;
68f360dc 1476 drv->cfg = cfg;
5c58edc6 1477
965974a6 1478 init_completion(&drv->request_firmware_complete);
ff1ffb85 1479 INIT_LIST_HEAD(&drv->list);
5c58edc6 1480
9da987ac
MV
1481#ifdef CONFIG_IWLWIFI_DEBUGFS
1482 /* Create the device debugfs entries. */
1483 drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1484 iwl_dbgfs_root);
1485
1486 if (!drv->dbgfs_drv) {
1487 IWL_ERR(drv, "failed to create debugfs directory\n");
59f547ac 1488 ret = -ENOMEM;
9da987ac
MV
1489 goto err_free_drv;
1490 }
1491
1492 /* Create transport layer debugfs dir */
1493 drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1494
1495 if (!drv->trans->dbgfs_dir) {
1496 IWL_ERR(drv, "failed to create transport debugfs directory\n");
59f547ac 1497 ret = -ENOMEM;
9da987ac
MV
1498 goto err_free_dbgfs;
1499 }
1500#endif
1501
965974a6 1502 ret = iwl_request_firmware(drv, true);
5c58edc6 1503 if (ret) {
c15797e6 1504 IWL_ERR(trans, "Couldn't request the fw\n");
9da987ac 1505 goto err_fw;
5c58edc6
EG
1506 }
1507
9da987ac
MV
1508 return drv;
1509
1510err_fw:
1511#ifdef CONFIG_IWLWIFI_DEBUGFS
1512err_free_dbgfs:
1513 debugfs_remove_recursive(drv->dbgfs_drv);
1514err_free_drv:
1515#endif
1516 kfree(drv);
eafe25e0 1517err:
59f547ac 1518 return ERR_PTR(ret);
5c58edc6
EG
1519}
1520
9130bab1 1521void iwl_drv_stop(struct iwl_drv *drv)
07590f08 1522{
965974a6 1523 wait_for_completion(&drv->request_firmware_complete);
2e7eb117 1524
9da987ac 1525 _iwl_op_mode_stop(drv);
07590f08 1526
965974a6 1527 iwl_dealloc_ucode(drv);
7db5b989 1528
ff1ffb85
JB
1529 mutex_lock(&iwlwifi_opmode_table_mtx);
1530 /*
1531 * List is empty (this item wasn't added)
1532 * when firmware loading failed -- in that
1533 * case we can't remove it from any list.
1534 */
1535 if (!list_empty(&drv->list))
1536 list_del(&drv->list);
1537 mutex_unlock(&iwlwifi_opmode_table_mtx);
1538
9da987ac
MV
1539#ifdef CONFIG_IWLWIFI_DEBUGFS
1540 debugfs_remove_recursive(drv->dbgfs_drv);
1541#endif
1542
965974a6 1543 kfree(drv);
07590f08 1544}
65de7e84
JB
1545
1546
1547/* shared module parameters */
1548struct iwl_mod_params iwlwifi_mod_params = {
490953ac 1549 .restart_fw = true,
65de7e84
JB
1550 .bt_coex_active = true,
1551 .power_level = IWL_POWER_INDEX_1,
7616f334 1552 .d0i3_disable = true,
b2c5d3a8 1553 .d0i3_entry_delay = 1000,
11dee0b4 1554 .uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
65de7e84
JB
1555 /* the rest are 0 by default */
1556};
48e29340 1557IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
cc5f7e39
DF
1558
1559int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1560{
1561 int i;
1562 struct iwl_drv *drv;
9da987ac 1563 struct iwlwifi_opmode_table *op;
cc5f7e39 1564
ff1ffb85 1565 mutex_lock(&iwlwifi_opmode_table_mtx);
cc5f7e39 1566 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
9da987ac
MV
1567 op = &iwlwifi_opmode_table[i];
1568 if (strcmp(op->name, name))
cc5f7e39 1569 continue;
9da987ac
MV
1570 op->ops = ops;
1571 /* TODO: need to handle exceptional case */
1572 list_for_each_entry(drv, &op->drv, list)
1573 drv->op_mode = _iwl_op_mode_start(drv, op);
1574
ff1ffb85 1575 mutex_unlock(&iwlwifi_opmode_table_mtx);
cc5f7e39
DF
1576 return 0;
1577 }
ff1ffb85 1578 mutex_unlock(&iwlwifi_opmode_table_mtx);
cc5f7e39
DF
1579 return -EIO;
1580}
48e29340 1581IWL_EXPORT_SYMBOL(iwl_opmode_register);
cc5f7e39
DF
1582
1583void iwl_opmode_deregister(const char *name)
1584{
1585 int i;
1586 struct iwl_drv *drv;
1587
ff1ffb85 1588 mutex_lock(&iwlwifi_opmode_table_mtx);
cc5f7e39
DF
1589 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1590 if (strcmp(iwlwifi_opmode_table[i].name, name))
1591 continue;
1592 iwlwifi_opmode_table[i].ops = NULL;
1593
1594 /* call the stop routine for all devices */
9da987ac
MV
1595 list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1596 _iwl_op_mode_stop(drv);
1597
ff1ffb85 1598 mutex_unlock(&iwlwifi_opmode_table_mtx);
cc5f7e39
DF
1599 return;
1600 }
ff1ffb85 1601 mutex_unlock(&iwlwifi_opmode_table_mtx);
cc5f7e39 1602}
48e29340 1603IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
cc5f7e39
DF
1604
1605static int __init iwl_drv_init(void)
1606{
1607 int i;
1608
ff1ffb85
JB
1609 mutex_init(&iwlwifi_opmode_table_mtx);
1610
cc5f7e39
DF
1611 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1612 INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1613
e32ec12f 1614 pr_info(DRV_DESCRIPTION "\n");
cc5f7e39
DF
1615 pr_info(DRV_COPYRIGHT "\n");
1616
9da987ac
MV
1617#ifdef CONFIG_IWLWIFI_DEBUGFS
1618 /* Create the root of iwlwifi debugfs subsystem. */
1619 iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1620
1621 if (!iwl_dbgfs_root)
1622 return -EFAULT;
1623#endif
1624
cc5f7e39
DF
1625 return iwl_pci_register_driver();
1626}
1627module_init(iwl_drv_init);
1628
1629static void __exit iwl_drv_exit(void)
1630{
1631 iwl_pci_unregister_driver();
9da987ac
MV
1632
1633#ifdef CONFIG_IWLWIFI_DEBUGFS
1634 debugfs_remove_recursive(iwl_dbgfs_root);
1635#endif
cc5f7e39
DF
1636}
1637module_exit(iwl_drv_exit);
65de7e84
JB
1638
1639#ifdef CONFIG_IWLWIFI_DEBUG
1640module_param_named(debug, iwlwifi_mod_params.debug_level, uint,
1641 S_IRUGO | S_IWUSR);
1642MODULE_PARM_DESC(debug, "debug output mask");
1643#endif
1644
1645module_param_named(swcrypto, iwlwifi_mod_params.sw_crypto, int, S_IRUGO);
1646MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
1647module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, S_IRUGO);
1648MODULE_PARM_DESC(11n_disable,
205e2210 1649 "disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX");
6c4fbcbc 1650module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size,
65de7e84 1651 int, S_IRUGO);
4bdd4dfe
EG
1652MODULE_PARM_DESC(amsdu_size,
1653 "amsdu size 0: 12K for multi Rx queue devices, 4K for other devices 1:4K 2:8K 3:12K (default 0)");
490953ac
EG
1654module_param_named(fw_restart, iwlwifi_mod_params.restart_fw, bool, S_IRUGO);
1655MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
65de7e84
JB
1656
1657module_param_named(antenna_coupling, iwlwifi_mod_params.ant_coupling,
1658 int, S_IRUGO);
1659MODULE_PARM_DESC(antenna_coupling,
ad25c1ee 1660 "specify antenna coupling in dB (default: 0 dB)");
65de7e84 1661
1214755c
EH
1662module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, S_IRUGO);
1663MODULE_PARM_DESC(nvm_file, "NVM file name");
1664
7616f334
EP
1665module_param_named(d0i3_disable, iwlwifi_mod_params.d0i3_disable,
1666 bool, S_IRUGO);
1667MODULE_PARM_DESC(d0i3_disable, "disable d0i3 functionality (default: Y)");
1668
5711cac4
AN
1669module_param_named(lar_disable, iwlwifi_mod_params.lar_disable,
1670 bool, S_IRUGO);
1671MODULE_PARM_DESC(lar_disable, "disable LAR functionality (default: N)");
1672
1504f48d 1673module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable,
11dee0b4 1674 uint, S_IRUGO | S_IWUSR);
11dee0b4
EG
1675MODULE_PARM_DESC(uapsd_disable,
1676 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
1504f48d 1677
65de7e84
JB
1678/*
1679 * set bt_coex_active to true, uCode will do kill/defer
1680 * every time the priority line is asserted (BT is sending signals on the
1681 * priority line in the PCIx).
1682 * set bt_coex_active to false, uCode will ignore the BT activity and
1683 * perform the normal operation
1684 *
1685 * User might experience transmit issue on some platform due to WiFi/BT
1686 * co-exist problem. The possible behaviors are:
1687 * Able to scan and finding all the available AP
1688 * Not able to associate with any AP
1689 * On those platforms, WiFi communication can be restored by set
1690 * "bt_coex_active" module parameter to "false"
1691 *
1692 * default: bt_coex_active = true (BT_COEX_ENABLE)
1693 */
1694module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
1695 bool, S_IRUGO);
1696MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1697
1698module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, S_IRUGO);
1699MODULE_PARM_DESC(led_mode, "0=system default, "
1700 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1701
1702module_param_named(power_save, iwlwifi_mod_params.power_save,
1703 bool, S_IRUGO);
1704MODULE_PARM_DESC(power_save,
1705 "enable WiFi power management (default: disable)");
1706
1707module_param_named(power_level, iwlwifi_mod_params.power_level,
1708 int, S_IRUGO);
1709MODULE_PARM_DESC(power_level,
1710 "default power save level (range from 1 - 5, default: 1)");
c2d20201
EG
1711
1712module_param_named(fw_monitor, iwlwifi_mod_params.fw_monitor, bool, S_IRUGO);
6d6a4751 1713MODULE_PARM_DESC(fw_monitor,
c2d20201 1714 "firmware monitor - to debug FW (default: false - needs lots of memory)");
b2c5d3a8
LC
1715
1716module_param_named(d0i3_timeout, iwlwifi_mod_params.d0i3_entry_delay,
1717 uint, S_IRUGO);
1718MODULE_PARM_DESC(d0i3_timeout, "Timeout to D0i3 entry when idle (ms)");
0d0985ad
AO
1719
1720module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool,
1721 S_IRUGO);
5c887759 1722MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities (default: false)");
This page took 0.322219 seconds and 5 git commands to generate.