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