blob: aa2d5c14e202d6a72f04ca17725a3de47f1699de [file] [log] [blame]
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +02008 * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +03009 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Liad Kaufman5da083d2017-01-08 16:52:59 +020010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020011 *
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
Emmanuel Grumbach410dc5a2013-02-18 09:22:28 +020027 * in the file called COPYING.
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020028 *
29 * Contact Information:
Emmanuel Grumbachcb2f8272015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020031 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
32 *
33 * BSD LICENSE
34 *
Emmanuel Grumbach51368bf2013-12-30 13:15:54 +020035 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
Emmanuel Grumbach42032632015-04-15 12:43:46 +030036 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
Liad Kaufman5da083d2017-01-08 16:52:59 +020037 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020038 * 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>
Johannes Berg15854ef92012-03-05 11:24:50 -080068#include <linux/dma-mapping.h>
69#include <linux/firmware.h>
70#include <linux/module.h>
Johannes Berg83f84d72012-09-10 11:50:18 +020071#include <linux/vmalloc.h>
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020072
73#include "iwl-drv.h"
Liad Kaufman2bf65082014-09-18 17:22:58 +030074#include "iwl-csr.h"
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +030075#include "iwl-debug.h"
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020076#include "iwl-trans.h"
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +020077#include "iwl-op-mode.h"
David Spinadel0cedacc2012-03-10 13:00:12 -080078#include "iwl-agn-hw.h"
Johannes Bergd962f9b2017-06-01 10:22:09 +020079#include "fw/img.h"
Johannes Berg6238b002012-04-02 15:04:33 +020080#include "iwl-config.h"
Johannes Berg65de7e82012-04-17 07:36:30 -070081#include "iwl-modparams.h"
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +020082
Don Frycc5f7e32012-05-16 22:54:27 +020083/******************************************************************************
84 *
85 * module boiler plate
86 *
87 ******************************************************************************/
88
Don Frycc5f7e32012-05-16 22:54:27 +020089#define DRV_DESCRIPTION "Intel(R) Wireless WiFi driver for Linux"
Don Frycc5f7e32012-05-16 22:54:27 +020090MODULE_DESCRIPTION(DRV_DESCRIPTION);
Don Frycc5f7e32012-05-16 22:54:27 +020091MODULE_AUTHOR(DRV_COPYRIGHT " " DRV_AUTHOR);
92MODULE_LICENSE("GPL");
93
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -070094#ifdef CONFIG_IWLWIFI_DEBUGFS
95static struct dentry *iwl_dbgfs_root;
96#endif
97
Johannes Berg965974a62012-03-06 13:30:38 -080098/**
99 * struct iwl_drv - drv common data
Don Frycc5f7e32012-05-16 22:54:27 +0200100 * @list: list of drv structures using this opmode
Johannes Berg965974a62012-03-06 13:30:38 -0800101 * @fw: the iwl_fw structure
Johannes Berg965974a62012-03-06 13:30:38 -0800102 * @op_mode: the running op_mode
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200103 * @trans: transport layer
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +0200104 * @dev: for debug prints only
Johannes Berg965974a62012-03-06 13:30:38 -0800105 * @fw_index: firmware revision to try loading
106 * @firmware_name: composite filename of ucode file to load
107 * @request_firmware_complete: the firmware has been obtained from user space
108 */
109struct iwl_drv {
Don Frycc5f7e32012-05-16 22:54:27 +0200110 struct list_head list;
Johannes Berg965974a62012-03-06 13:30:38 -0800111 struct iwl_fw fw;
112
Johannes Berg965974a62012-03-06 13:30:38 -0800113 struct iwl_op_mode *op_mode;
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -0700114 struct iwl_trans *trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +0200115 struct device *dev;
Johannes Berg965974a62012-03-06 13:30:38 -0800116
117 int fw_index; /* firmware we're trying to load */
Haim Dreyfuss0730ffb2016-04-06 10:45:05 +0300118 char firmware_name[64]; /* name of firmware file to load */
Johannes Berg965974a62012-03-06 13:30:38 -0800119
120 struct completion request_firmware_complete;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -0700121
122#ifdef CONFIG_IWLWIFI_DEBUGFS
123 struct dentry *dbgfs_drv;
124 struct dentry *dbgfs_trans;
125 struct dentry *dbgfs_op_mode;
126#endif
Johannes Berg965974a62012-03-06 13:30:38 -0800127};
128
Johannes Berg8ca151b2013-01-24 14:25:36 +0100129enum {
Johannes Berg6d48fcd2016-04-28 14:39:22 +0200130 DVM_OP_MODE,
131 MVM_OP_MODE,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100132};
Johannes Berg965974a62012-03-06 13:30:38 -0800133
Johannes Bergff1ffb82012-06-06 09:42:57 +0200134/* Protects the table contents, i.e. the ops pointer & drv list */
135static struct mutex iwlwifi_opmode_table_mtx;
Don Frycc5f7e32012-05-16 22:54:27 +0200136static struct iwlwifi_opmode_table {
137 const char *name; /* name: iwldvm, iwlmvm, etc */
138 const struct iwl_op_mode_ops *ops; /* pointer to op_mode ops */
139 struct list_head drv; /* list of devices using this op_mode */
140} iwlwifi_opmode_table[] = { /* ops set when driver is initialized */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100141 [DVM_OP_MODE] = { .name = "iwldvm", .ops = NULL },
142 [MVM_OP_MODE] = { .name = "iwlmvm", .ops = NULL },
Don Frycc5f7e32012-05-16 22:54:27 +0200143};
Johannes Berg965974a62012-03-06 13:30:38 -0800144
David Spinadel762533b2014-06-05 11:20:43 +0300145#define IWL_DEFAULT_SCAN_CHANNELS 40
146
David Spinadel0cedacc2012-03-10 13:00:12 -0800147/*
Sara Sharon0d365ae2015-03-31 12:24:05 +0300148 * struct fw_sec: Just for the image parsing process.
David Spinadel0cedacc2012-03-10 13:00:12 -0800149 * For the fw storage we are using struct fw_desc.
150 */
151struct fw_sec {
152 const void *data; /* the sec data */
153 size_t size; /* section size */
154 u32 offset; /* offset of writing in the device */
155};
156
Johannes Berg965974a62012-03-06 13:30:38 -0800157static void iwl_free_fw_desc(struct iwl_drv *drv, struct fw_desc *desc)
Johannes Berg15854ef92012-03-05 11:24:50 -0800158{
Johannes Berg83f84d72012-09-10 11:50:18 +0200159 vfree(desc->data);
160 desc->data = NULL;
Johannes Berg15854ef92012-03-05 11:24:50 -0800161 desc->len = 0;
162}
163
Johannes Berg965974a62012-03-06 13:30:38 -0800164static void iwl_free_fw_img(struct iwl_drv *drv, struct fw_img *img)
Johannes Berg15854ef92012-03-05 11:24:50 -0800165{
David Spinadel6dfa8d02012-03-10 13:00:14 -0800166 int i;
Sara Sharoneef187a2016-10-25 11:38:31 +0300167 for (i = 0; i < img->num_sec; i++)
David Spinadel6dfa8d02012-03-10 13:00:14 -0800168 iwl_free_fw_desc(drv, &img->sec[i]);
Sara Sharoneef187a2016-10-25 11:38:31 +0300169 kfree(img->sec);
Johannes Berg15854ef92012-03-05 11:24:50 -0800170}
171
Johannes Berg965974a62012-03-06 13:30:38 -0800172static void iwl_dealloc_ucode(struct iwl_drv *drv)
Johannes Berg15854ef92012-03-05 11:24:50 -0800173{
David Spinadel6dfa8d02012-03-10 13:00:14 -0800174 int i;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300175
176 kfree(drv->fw.dbg_dest_tlv);
177 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++)
178 kfree(drv->fw.dbg_conf_tlv[i]);
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200179 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++)
180 kfree(drv->fw.dbg_trigger_tlv[i]);
Johannes Berg2ed1e012016-10-20 09:41:14 +0200181 kfree(drv->fw.dbg_mem_tlv);
Liad Kaufman490fefe2014-09-16 15:06:54 +0300182
David Spinadel6dfa8d02012-03-10 13:00:14 -0800183 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
184 iwl_free_fw_img(drv, drv->fw.img + i);
Johannes Berg15854ef92012-03-05 11:24:50 -0800185}
186
Johannes Berg965974a62012-03-06 13:30:38 -0800187static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc,
Johannes Berg83f84d72012-09-10 11:50:18 +0200188 struct fw_sec *sec)
Johannes Berg15854ef92012-03-05 11:24:50 -0800189{
Johannes Berg83f84d72012-09-10 11:50:18 +0200190 void *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800191
Johannes Berg83f84d72012-09-10 11:50:18 +0200192 desc->data = NULL;
193
194 if (!sec || !sec->size)
195 return -EINVAL;
196
197 data = vmalloc(sec->size);
198 if (!data)
Johannes Berg15854ef92012-03-05 11:24:50 -0800199 return -ENOMEM;
200
David Spinadel0cedacc2012-03-10 13:00:12 -0800201 desc->len = sec->size;
202 desc->offset = sec->offset;
Johannes Berg83f84d72012-09-10 11:50:18 +0200203 memcpy(data, sec->data, desc->len);
204 desc->data = data;
205
Johannes Berg15854ef92012-03-05 11:24:50 -0800206 return 0;
207}
208
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300209static void iwl_req_fw_callback(const struct firmware *ucode_raw,
210 void *context);
Johannes Berg15854ef92012-03-05 11:24:50 -0800211
Johannes Berg965974a62012-03-06 13:30:38 -0800212static int iwl_request_firmware(struct iwl_drv *drv, bool first)
Johannes Berg15854ef92012-03-05 11:24:50 -0800213{
Luca Coelho6ffff632016-12-28 10:46:20 +0200214 const struct iwl_cfg *cfg = drv->trans->cfg;
Johannes Berg15854ef92012-03-05 11:24:50 -0800215 char tag[8];
Liad Kaufman5da083d2017-01-08 16:52:59 +0200216 const char *fw_pre_name;
217
Sara Sharon6e584872017-03-22 14:07:50 +0200218 if (drv->trans->cfg->device_family == IWL_DEVICE_FAMILY_9000 &&
Haim Dreyfusse9fb92e2017-07-09 15:51:44 +0300219 (CSR_HW_REV_STEP(drv->trans->hw_rev) == SILICON_B_STEP ||
220 CSR_HW_REV_STEP(drv->trans->hw_rev) == SILICON_C_STEP))
221 fw_pre_name = cfg->fw_name_pre_b_or_c_step;
Haim Dreyfuss0705b952017-03-09 15:18:58 +0200222 else if (drv->trans->cfg->integrated &&
223 CSR_HW_RFID_STEP(drv->trans->hw_rf_id) == SILICON_B_STEP &&
224 cfg->fw_name_pre_rf_next_step)
225 fw_pre_name = cfg->fw_name_pre_rf_next_step;
Liad Kaufman5da083d2017-01-08 16:52:59 +0200226 else
227 fw_pre_name = cfg->fw_name_pre;
Johannes Berg15854ef92012-03-05 11:24:50 -0800228
229 if (first) {
Luca Coelho6ffff632016-12-28 10:46:20 +0200230 drv->fw_index = cfg->ucode_api_max;
Johannes Berg965974a62012-03-06 13:30:38 -0800231 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800232 } else {
Johannes Berg965974a62012-03-06 13:30:38 -0800233 drv->fw_index--;
234 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800235 }
236
Luca Coelho6ffff632016-12-28 10:46:20 +0200237 if (drv->fw_index < cfg->ucode_api_min) {
Johannes Berg965974a62012-03-06 13:30:38 -0800238 IWL_ERR(drv, "no suitable firmware found!\n");
Luca Coelho6ffff632016-12-28 10:46:20 +0200239
240 if (cfg->ucode_api_min == cfg->ucode_api_max) {
Liad Kaufman5da083d2017-01-08 16:52:59 +0200241 IWL_ERR(drv, "%s%d is required\n", fw_pre_name,
Luca Coelho6ffff632016-12-28 10:46:20 +0200242 cfg->ucode_api_max);
243 } else {
244 IWL_ERR(drv, "minimum version required: %s%d\n",
Liad Kaufman5da083d2017-01-08 16:52:59 +0200245 fw_pre_name,
Luca Coelho6ffff632016-12-28 10:46:20 +0200246 cfg->ucode_api_min);
247 IWL_ERR(drv, "maximum version supported: %s%d\n",
Liad Kaufman5da083d2017-01-08 16:52:59 +0200248 fw_pre_name,
Luca Coelho6ffff632016-12-28 10:46:20 +0200249 cfg->ucode_api_max);
250 }
251
252 IWL_ERR(drv,
253 "check git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800254 return -ENOENT;
255 }
256
Liad Kaufman84b03122014-01-27 16:34:23 +0200257 snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s%s.ucode",
Liad Kaufman5da083d2017-01-08 16:52:59 +0200258 fw_pre_name, tag);
Johannes Berg15854ef92012-03-05 11:24:50 -0800259
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300260 IWL_DEBUG_INFO(drv, "attempting to load firmware '%s'\n",
Johannes Berg965974a62012-03-06 13:30:38 -0800261 drv->firmware_name);
Johannes Berg15854ef92012-03-05 11:24:50 -0800262
Johannes Berg965974a62012-03-06 13:30:38 -0800263 return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +0200264 drv->trans->dev,
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300265 GFP_KERNEL, drv, iwl_req_fw_callback);
Johannes Berg15854ef92012-03-05 11:24:50 -0800266}
267
David Spinadel0cedacc2012-03-10 13:00:12 -0800268struct fw_img_parsing {
Sara Sharoneef187a2016-10-25 11:38:31 +0300269 struct fw_sec *sec;
David Spinadel0cedacc2012-03-10 13:00:12 -0800270 int sec_counter;
271};
272
David Spinadeled8c8362012-03-10 13:00:13 -0800273/*
274 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
275 */
276struct fw_sec_parsing {
277 __le32 offset;
278 const u8 data[];
279} __packed;
280
281/**
282 * struct iwl_tlv_calib_data - parse the default calib data from TLV
283 *
284 * @ucode_type: the uCode to which the following default calib relates.
285 * @calib: default calibrations.
286 */
287struct iwl_tlv_calib_data {
288 __le32 ucode_type;
Johannes Bergaa2b1772013-01-24 14:12:07 +0100289 struct iwl_tlv_calib_ctrl calib;
David Spinadeled8c8362012-03-10 13:00:13 -0800290} __packed;
291
David Spinadel0cedacc2012-03-10 13:00:12 -0800292struct iwl_firmware_pieces {
293 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -0800294
295 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
296 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300297
298 /* FW debug data parsed for driver usage */
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300299 bool dbg_dest_tlv_init;
300 u8 *dbg_dest_ver;
301 union {
302 struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
303 struct iwl_fw_dbg_dest_tlv_v1 *dbg_dest_tlv_v1;
304 };
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200305 struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
306 size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
307 struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
308 size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
Johannes Berg2ed1e012016-10-20 09:41:14 +0200309 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv;
310 size_t n_dbg_mem_tlv;
Johannes Berg15854ef92012-03-05 11:24:50 -0800311};
312
David Spinadel0cedacc2012-03-10 13:00:12 -0800313/*
314 * These functions are just to extract uCode section data from the pieces
315 * structure.
316 */
317static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
318 enum iwl_ucode_type type,
319 int sec)
320{
321 return &pieces->img[type].sec[sec];
322}
323
Sara Sharond5465302017-01-30 12:34:32 +0200324static void alloc_sec_data(struct iwl_firmware_pieces *pieces,
325 enum iwl_ucode_type type,
326 int sec)
327{
328 struct fw_img_parsing *img = &pieces->img[type];
329 struct fw_sec *sec_memory;
330 int size = sec + 1;
331 size_t alloc_size = sizeof(*img->sec) * size;
332
333 if (img->sec && img->sec_counter >= size)
334 return;
335
336 sec_memory = krealloc(img->sec, alloc_size, GFP_KERNEL);
337 if (!sec_memory)
338 return;
339
340 img->sec = sec_memory;
341 img->sec_counter = size;
342}
343
David Spinadel0cedacc2012-03-10 13:00:12 -0800344static void set_sec_data(struct iwl_firmware_pieces *pieces,
345 enum iwl_ucode_type type,
346 int sec,
347 const void *data)
348{
Sara Sharond5465302017-01-30 12:34:32 +0200349 alloc_sec_data(pieces, type, sec);
350
David Spinadel0cedacc2012-03-10 13:00:12 -0800351 pieces->img[type].sec[sec].data = data;
352}
353
354static void set_sec_size(struct iwl_firmware_pieces *pieces,
355 enum iwl_ucode_type type,
356 int sec,
357 size_t size)
358{
Sara Sharond5465302017-01-30 12:34:32 +0200359 alloc_sec_data(pieces, type, sec);
360
David Spinadel0cedacc2012-03-10 13:00:12 -0800361 pieces->img[type].sec[sec].size = size;
362}
363
364static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
365 enum iwl_ucode_type type,
366 int sec)
367{
368 return pieces->img[type].sec[sec].size;
369}
370
371static void set_sec_offset(struct iwl_firmware_pieces *pieces,
372 enum iwl_ucode_type type,
373 int sec,
374 u32 offset)
375{
Sara Sharond5465302017-01-30 12:34:32 +0200376 alloc_sec_data(pieces, type, sec);
377
David Spinadel0cedacc2012-03-10 13:00:12 -0800378 pieces->img[type].sec[sec].offset = offset;
379}
380
Max Stepanove36e5432013-08-27 19:56:13 +0300381static int iwl_store_cscheme(struct iwl_fw *fw, const u8 *data, const u32 len)
382{
383 int i, j;
384 struct iwl_fw_cscheme_list *l = (struct iwl_fw_cscheme_list *)data;
385 struct iwl_fw_cipher_scheme *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300386
387 if (len < sizeof(*l) ||
388 len < sizeof(l->size) + l->size * sizeof(l->cs[0]))
389 return -EINVAL;
390
391 for (i = 0, j = 0; i < IWL_UCODE_MAX_CS && i < l->size; i++) {
392 fwcs = &l->cs[j];
Max Stepanove36e5432013-08-27 19:56:13 +0300393
394 /* we skip schemes with zero cipher suite selector */
Johannes Berg24ddddf2016-06-21 12:34:36 +0200395 if (!fwcs->cipher)
Max Stepanove36e5432013-08-27 19:56:13 +0300396 continue;
397
Johannes Berg24ddddf2016-06-21 12:34:36 +0200398 fw->cs[j++] = *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300399 }
400
401 return 0;
402}
403
Ayala Beker5ed472262016-02-03 15:36:52 +0200404static void iwl_store_gscan_capa(struct iwl_fw *fw, const u8 *data,
405 const u32 len)
Avraham Stern17564dd2015-03-22 13:11:01 +0200406{
407 struct iwl_fw_gscan_capabilities *fw_capa = (void *)data;
408 struct iwl_gscan_capabilities *capa = &fw->gscan_capa;
409
Avraham Stern17564dd2015-03-22 13:11:01 +0200410 capa->max_scan_cache_size = le32_to_cpu(fw_capa->max_scan_cache_size);
411 capa->max_scan_buckets = le32_to_cpu(fw_capa->max_scan_buckets);
412 capa->max_ap_cache_per_scan =
413 le32_to_cpu(fw_capa->max_ap_cache_per_scan);
414 capa->max_rssi_sample_size = le32_to_cpu(fw_capa->max_rssi_sample_size);
415 capa->max_scan_reporting_threshold =
416 le32_to_cpu(fw_capa->max_scan_reporting_threshold);
417 capa->max_hotlist_aps = le32_to_cpu(fw_capa->max_hotlist_aps);
418 capa->max_significant_change_aps =
419 le32_to_cpu(fw_capa->max_significant_change_aps);
420 capa->max_bssid_history_entries =
421 le32_to_cpu(fw_capa->max_bssid_history_entries);
Ayala Beker5ed472262016-02-03 15:36:52 +0200422 capa->max_hotlist_ssids = le32_to_cpu(fw_capa->max_hotlist_ssids);
423 capa->max_number_epno_networks =
424 le32_to_cpu(fw_capa->max_number_epno_networks);
425 capa->max_number_epno_networks_by_ssid =
426 le32_to_cpu(fw_capa->max_number_epno_networks_by_ssid);
427 capa->max_number_of_white_listed_ssid =
428 le32_to_cpu(fw_capa->max_number_of_white_listed_ssid);
429 capa->max_number_of_black_listed_ssid =
430 le32_to_cpu(fw_capa->max_number_of_black_listed_ssid);
Avraham Stern17564dd2015-03-22 13:11:01 +0200431}
432
David Spinadeled8c8362012-03-10 13:00:13 -0800433/*
434 * Gets uCode section from tlv.
435 */
436static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
437 const void *data, enum iwl_ucode_type type,
438 int size)
439{
440 struct fw_img_parsing *img;
441 struct fw_sec *sec;
442 struct fw_sec_parsing *sec_parse;
Sara Sharoneef187a2016-10-25 11:38:31 +0300443 size_t alloc_size;
David Spinadeled8c8362012-03-10 13:00:13 -0800444
445 if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
446 return -1;
447
448 sec_parse = (struct fw_sec_parsing *)data;
449
450 img = &pieces->img[type];
Sara Sharoneef187a2016-10-25 11:38:31 +0300451
452 alloc_size = sizeof(*img->sec) * (img->sec_counter + 1);
453 sec = krealloc(img->sec, alloc_size, GFP_KERNEL);
454 if (!sec)
455 return -ENOMEM;
456 img->sec = sec;
457
David Spinadeled8c8362012-03-10 13:00:13 -0800458 sec = &img->sec[img->sec_counter];
459
460 sec->offset = le32_to_cpu(sec_parse->offset);
461 sec->data = sec_parse->data;
David Spinadel1176f432012-03-13 14:32:48 +0200462 sec->size = size - sizeof(sec_parse->offset);
David Spinadeled8c8362012-03-10 13:00:13 -0800463
464 ++img->sec_counter;
465
466 return 0;
467}
468
469static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
470{
471 struct iwl_tlv_calib_data *def_calib =
472 (struct iwl_tlv_calib_data *)data;
473 u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
474 if (ucode_type >= IWL_UCODE_TYPE_MAX) {
475 IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
476 ucode_type);
477 return -EINVAL;
478 }
Johannes Bergaa2b1772013-01-24 14:12:07 +0100479 drv->fw.default_calib[ucode_type].flow_trigger =
480 def_calib->calib.flow_trigger;
481 drv->fw.default_calib[ucode_type].event_trigger =
482 def_calib->calib.event_trigger;
483
David Spinadeled8c8362012-03-10 13:00:13 -0800484 return 0;
485}
486
Sharon Dvira4380b42017-06-12 11:28:21 +0300487static void iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
488 struct iwl_ucode_capabilities *capa)
Eran Hararya2978b12014-02-20 11:00:01 +0200489{
490 const struct iwl_ucode_api *ucode_api = (void *)data;
491 u32 api_index = le32_to_cpu(ucode_api->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200492 u32 api_flags = le32_to_cpu(ucode_api->api_flags);
493 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200494
Johannes Bergd3f555f42015-09-16 12:21:32 +0200495 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
JoĂŁo Paulo Rechi Vita5f5537a2017-08-03 07:47:28 -0700496 IWL_WARN(drv,
497 "api flags index %d larger than supported by driver\n",
498 api_index);
Sharon Dvira4380b42017-06-12 11:28:21 +0300499 return;
Eran Hararya2978b12014-02-20 11:00:01 +0200500 }
501
Johannes Berg859d9142015-06-01 17:11:11 +0200502 for (i = 0; i < 32; i++) {
503 if (api_flags & BIT(i))
504 __set_bit(i + 32 * api_index, capa->_api);
505 }
Eran Hararya2978b12014-02-20 11:00:01 +0200506}
507
Sharon Dvira4380b42017-06-12 11:28:21 +0300508static void iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
509 struct iwl_ucode_capabilities *capa)
Eran Hararya2978b12014-02-20 11:00:01 +0200510{
511 const struct iwl_ucode_capa *ucode_capa = (void *)data;
512 u32 api_index = le32_to_cpu(ucode_capa->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200513 u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
514 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200515
Johannes Bergd3f555f42015-09-16 12:21:32 +0200516 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
JoĂŁo Paulo Rechi Vita5f5537a2017-08-03 07:47:28 -0700517 IWL_WARN(drv,
518 "capa flags index %d larger than supported by driver\n",
519 api_index);
Sharon Dvira4380b42017-06-12 11:28:21 +0300520 return;
Eran Hararya2978b12014-02-20 11:00:01 +0200521 }
522
Johannes Berg859d9142015-06-01 17:11:11 +0200523 for (i = 0; i < 32; i++) {
524 if (api_flags & BIT(i))
525 __set_bit(i + 32 * api_index, capa->_capa);
526 }
Eran Hararya2978b12014-02-20 11:00:01 +0200527}
528
Johannes Berg965974a62012-03-06 13:30:38 -0800529static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
David Spinadel0cedacc2012-03-10 13:00:12 -0800530 const struct firmware *ucode_raw,
531 struct iwl_firmware_pieces *pieces)
Johannes Berg15854ef92012-03-05 11:24:50 -0800532{
533 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
534 u32 api_ver, hdr_size, build;
535 char buildstr[25];
536 const u8 *src;
537
Johannes Berg965974a62012-03-06 13:30:38 -0800538 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
539 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -0800540
541 switch (api_ver) {
542 default:
543 hdr_size = 28;
544 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800545 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800546 return -EINVAL;
547 }
548 build = le32_to_cpu(ucode->u.v2.build);
David Spinadel0cedacc2012-03-10 13:00:12 -0800549 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
550 le32_to_cpu(ucode->u.v2.inst_size));
551 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
552 le32_to_cpu(ucode->u.v2.data_size));
553 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
554 le32_to_cpu(ucode->u.v2.init_size));
555 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
556 le32_to_cpu(ucode->u.v2.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800557 src = ucode->u.v2.data;
558 break;
559 case 0:
560 case 1:
561 case 2:
562 hdr_size = 24;
563 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800564 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800565 return -EINVAL;
566 }
567 build = 0;
David Spinadel0cedacc2012-03-10 13:00:12 -0800568 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
569 le32_to_cpu(ucode->u.v1.inst_size));
570 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
571 le32_to_cpu(ucode->u.v1.data_size));
572 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
573 le32_to_cpu(ucode->u.v1.init_size));
574 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
575 le32_to_cpu(ucode->u.v1.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800576 src = ucode->u.v1.data;
577 break;
578 }
579
580 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300581 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800582 else
583 buildstr[0] = '\0';
584
Johannes Berg965974a62012-03-06 13:30:38 -0800585 snprintf(drv->fw.fw_version,
586 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800587 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800588 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
589 IWL_UCODE_MINOR(drv->fw.ucode_ver),
590 IWL_UCODE_API(drv->fw.ucode_ver),
591 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800592 buildstr);
593
594 /* Verify size of file vs. image size info in file's header */
David Spinadel0cedacc2012-03-10 13:00:12 -0800595
596 if (ucode_raw->size != hdr_size +
597 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
598 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
599 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
600 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800601
Johannes Berg965974a62012-03-06 13:30:38 -0800602 IWL_ERR(drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800603 "uCode file size %d does not match expected size\n",
604 (int)ucode_raw->size);
605 return -EINVAL;
606 }
607
Johannes Berg15854ef92012-03-05 11:24:50 -0800608
David Spinadel0cedacc2012-03-10 13:00:12 -0800609 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
610 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
611 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
612 IWLAGN_RTC_INST_LOWER_BOUND);
613 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
614 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
615 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
616 IWLAGN_RTC_DATA_LOWER_BOUND);
617 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
618 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
619 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
620 IWLAGN_RTC_INST_LOWER_BOUND);
621 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
622 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
623 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
624 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800625 return 0;
626}
627
Johannes Berg965974a62012-03-06 13:30:38 -0800628static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800629 const struct firmware *ucode_raw,
David Spinadel0cedacc2012-03-10 13:00:12 -0800630 struct iwl_firmware_pieces *pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300631 struct iwl_ucode_capabilities *capa,
632 bool *usniffer_images)
Johannes Berg15854ef92012-03-05 11:24:50 -0800633{
634 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
635 struct iwl_ucode_tlv *tlv;
636 size_t len = ucode_raw->size;
637 const u8 *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800638 u32 tlv_len;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300639 u32 usniffer_img;
Johannes Berg15854ef92012-03-05 11:24:50 -0800640 enum iwl_ucode_tlv_type tlv_type;
641 const u8 *tlv_data;
642 char buildstr[25];
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300643 u32 build, paging_mem_size;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300644 int num_of_cpus;
Eran Harary61df7502014-12-01 17:40:37 +0200645 bool usniffer_req = false;
Avraham Stern17564dd2015-03-22 13:11:01 +0200646 bool gscan_capa = false;
Johannes Berg15854ef92012-03-05 11:24:50 -0800647
648 if (len < sizeof(*ucode)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800649 IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
Johannes Berg15854ef92012-03-05 11:24:50 -0800650 return -EINVAL;
651 }
652
653 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800654 IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800655 le32_to_cpu(ucode->magic));
656 return -EINVAL;
657 }
658
Johannes Berg965974a62012-03-06 13:30:38 -0800659 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
Emmanuel Grumbach06ddbf52014-06-02 08:34:53 +0300660 memcpy(drv->fw.human_readable, ucode->human_readable,
661 sizeof(drv->fw.human_readable));
Johannes Berg15854ef92012-03-05 11:24:50 -0800662 build = le32_to_cpu(ucode->build);
663
664 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300665 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800666 else
667 buildstr[0] = '\0';
668
Johannes Berg965974a62012-03-06 13:30:38 -0800669 snprintf(drv->fw.fw_version,
670 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800671 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800672 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
673 IWL_UCODE_MINOR(drv->fw.ucode_ver),
674 IWL_UCODE_API(drv->fw.ucode_ver),
675 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800676 buildstr);
677
678 data = ucode->data;
679
680 len -= sizeof(*ucode);
681
682 while (len >= sizeof(*tlv)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800683 len -= sizeof(*tlv);
684 tlv = (void *)data;
685
686 tlv_len = le32_to_cpu(tlv->length);
Johannes Berg0479c192012-03-09 09:16:35 +0100687 tlv_type = le32_to_cpu(tlv->type);
Johannes Berg15854ef92012-03-05 11:24:50 -0800688 tlv_data = tlv->data;
689
690 if (len < tlv_len) {
Johannes Berg965974a62012-03-06 13:30:38 -0800691 IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800692 len, tlv_len);
693 return -EINVAL;
694 }
695 len -= ALIGN(tlv_len, 4);
696 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
697
Johannes Berg15854ef92012-03-05 11:24:50 -0800698 switch (tlv_type) {
699 case IWL_UCODE_TLV_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800700 set_sec_data(pieces, IWL_UCODE_REGULAR,
701 IWL_UCODE_SECTION_INST, tlv_data);
702 set_sec_size(pieces, IWL_UCODE_REGULAR,
703 IWL_UCODE_SECTION_INST, tlv_len);
704 set_sec_offset(pieces, IWL_UCODE_REGULAR,
705 IWL_UCODE_SECTION_INST,
706 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800707 break;
708 case IWL_UCODE_TLV_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800709 set_sec_data(pieces, IWL_UCODE_REGULAR,
710 IWL_UCODE_SECTION_DATA, tlv_data);
711 set_sec_size(pieces, IWL_UCODE_REGULAR,
712 IWL_UCODE_SECTION_DATA, tlv_len);
713 set_sec_offset(pieces, IWL_UCODE_REGULAR,
714 IWL_UCODE_SECTION_DATA,
715 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800716 break;
717 case IWL_UCODE_TLV_INIT:
David Spinadel0cedacc2012-03-10 13:00:12 -0800718 set_sec_data(pieces, IWL_UCODE_INIT,
719 IWL_UCODE_SECTION_INST, tlv_data);
720 set_sec_size(pieces, IWL_UCODE_INIT,
721 IWL_UCODE_SECTION_INST, tlv_len);
722 set_sec_offset(pieces, IWL_UCODE_INIT,
723 IWL_UCODE_SECTION_INST,
724 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800725 break;
726 case IWL_UCODE_TLV_INIT_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800727 set_sec_data(pieces, IWL_UCODE_INIT,
728 IWL_UCODE_SECTION_DATA, tlv_data);
729 set_sec_size(pieces, IWL_UCODE_INIT,
730 IWL_UCODE_SECTION_DATA, tlv_len);
731 set_sec_offset(pieces, IWL_UCODE_INIT,
732 IWL_UCODE_SECTION_DATA,
733 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800734 break;
735 case IWL_UCODE_TLV_BOOT:
Johannes Berg965974a62012-03-06 13:30:38 -0800736 IWL_ERR(drv, "Found unexpected BOOT ucode\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800737 break;
738 case IWL_UCODE_TLV_PROBE_MAX_LEN:
739 if (tlv_len != sizeof(u32))
740 goto invalid_tlv_len;
741 capa->max_probe_length =
742 le32_to_cpup((__le32 *)tlv_data);
743 break;
744 case IWL_UCODE_TLV_PAN:
745 if (tlv_len)
746 goto invalid_tlv_len;
747 capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
748 break;
749 case IWL_UCODE_TLV_FLAGS:
750 /* must be at least one u32 */
751 if (tlv_len < sizeof(u32))
752 goto invalid_tlv_len;
753 /* and a proper number of u32s */
754 if (tlv_len % sizeof(u32))
755 goto invalid_tlv_len;
756 /*
757 * This driver only reads the first u32 as
758 * right now no more features are defined,
759 * if that changes then either the driver
760 * will not work with the new firmware, or
761 * it'll not take advantage of new features.
762 */
763 capa->flags = le32_to_cpup((__le32 *)tlv_data);
764 break;
Eran Hararya2978b12014-02-20 11:00:01 +0200765 case IWL_UCODE_TLV_API_CHANGES_SET:
766 if (tlv_len != sizeof(struct iwl_ucode_api))
767 goto invalid_tlv_len;
Sharon Dvira4380b42017-06-12 11:28:21 +0300768 iwl_set_ucode_api_flags(drv, tlv_data, capa);
Eran Hararya2978b12014-02-20 11:00:01 +0200769 break;
770 case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
771 if (tlv_len != sizeof(struct iwl_ucode_capa))
772 goto invalid_tlv_len;
Sharon Dvira4380b42017-06-12 11:28:21 +0300773 iwl_set_ucode_capabilities(drv, tlv_data, capa);
Eran Hararya2978b12014-02-20 11:00:01 +0200774 break;
Johannes Berg15854ef92012-03-05 11:24:50 -0800775 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
776 if (tlv_len != sizeof(u32))
777 goto invalid_tlv_len;
778 pieces->init_evtlog_ptr =
779 le32_to_cpup((__le32 *)tlv_data);
780 break;
781 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
782 if (tlv_len != sizeof(u32))
783 goto invalid_tlv_len;
784 pieces->init_evtlog_size =
785 le32_to_cpup((__le32 *)tlv_data);
786 break;
787 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
788 if (tlv_len != sizeof(u32))
789 goto invalid_tlv_len;
790 pieces->init_errlog_ptr =
791 le32_to_cpup((__le32 *)tlv_data);
792 break;
793 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
794 if (tlv_len != sizeof(u32))
795 goto invalid_tlv_len;
796 pieces->inst_evtlog_ptr =
797 le32_to_cpup((__le32 *)tlv_data);
798 break;
799 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
800 if (tlv_len != sizeof(u32))
801 goto invalid_tlv_len;
802 pieces->inst_evtlog_size =
803 le32_to_cpup((__le32 *)tlv_data);
804 break;
805 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
806 if (tlv_len != sizeof(u32))
807 goto invalid_tlv_len;
808 pieces->inst_errlog_ptr =
809 le32_to_cpup((__le32 *)tlv_data);
810 break;
811 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
812 if (tlv_len)
813 goto invalid_tlv_len;
Johannes Berg965974a62012-03-06 13:30:38 -0800814 drv->fw.enhance_sensitivity_table = true;
Johannes Berg15854ef92012-03-05 11:24:50 -0800815 break;
816 case IWL_UCODE_TLV_WOWLAN_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800817 set_sec_data(pieces, IWL_UCODE_WOWLAN,
818 IWL_UCODE_SECTION_INST, tlv_data);
819 set_sec_size(pieces, IWL_UCODE_WOWLAN,
820 IWL_UCODE_SECTION_INST, tlv_len);
821 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
822 IWL_UCODE_SECTION_INST,
823 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800824 break;
825 case IWL_UCODE_TLV_WOWLAN_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800826 set_sec_data(pieces, IWL_UCODE_WOWLAN,
827 IWL_UCODE_SECTION_DATA, tlv_data);
828 set_sec_size(pieces, IWL_UCODE_WOWLAN,
829 IWL_UCODE_SECTION_DATA, tlv_len);
830 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
831 IWL_UCODE_SECTION_DATA,
832 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800833 break;
834 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
835 if (tlv_len != sizeof(u32))
836 goto invalid_tlv_len;
837 capa->standard_phy_calibration_size =
838 le32_to_cpup((__le32 *)tlv_data);
839 break;
Christoph Böhmwalder1e37f792017-09-23 12:31:12 +0200840 case IWL_UCODE_TLV_SEC_RT:
David Spinadeled8c8362012-03-10 13:00:13 -0800841 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
842 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200843 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800844 break;
845 case IWL_UCODE_TLV_SEC_INIT:
846 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
847 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200848 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800849 break;
850 case IWL_UCODE_TLV_SEC_WOWLAN:
851 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
852 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200853 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800854 break;
855 case IWL_UCODE_TLV_DEF_CALIB:
856 if (tlv_len != sizeof(struct iwl_tlv_calib_data))
857 goto invalid_tlv_len;
858 if (iwl_set_default_calib(drv, tlv_data))
859 goto tlv_error;
860 break;
861 case IWL_UCODE_TLV_PHY_SKU:
862 if (tlv_len != sizeof(u32))
863 goto invalid_tlv_len;
864 drv->fw.phy_config = le32_to_cpup((__le32 *)tlv_data);
Eran Harary77db0a32014-02-04 14:21:38 +0200865 drv->fw.valid_tx_ant = (drv->fw.phy_config &
866 FW_PHY_CFG_TX_CHAIN) >>
867 FW_PHY_CFG_TX_CHAIN_POS;
868 drv->fw.valid_rx_ant = (drv->fw.phy_config &
869 FW_PHY_CFG_RX_CHAIN) >>
870 FW_PHY_CFG_RX_CHAIN_POS;
David Spinadeled8c8362012-03-10 13:00:13 -0800871 break;
Christoph Böhmwalder1e37f792017-09-23 12:31:12 +0200872 case IWL_UCODE_TLV_SECURE_SEC_RT:
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300873 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
874 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200875 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300876 break;
877 case IWL_UCODE_TLV_SECURE_SEC_INIT:
878 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
879 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200880 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300881 break;
882 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
883 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
884 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200885 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300886 break;
887 case IWL_UCODE_TLV_NUM_OF_CPU:
888 if (tlv_len != sizeof(u32))
889 goto invalid_tlv_len;
890 num_of_cpus =
891 le32_to_cpup((__le32 *)tlv_data);
892
893 if (num_of_cpus == 2) {
894 drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
895 true;
896 drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
897 true;
898 drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
899 true;
900 } else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
901 IWL_ERR(drv, "Driver support upto 2 CPUs\n");
902 return -EINVAL;
903 }
904 break;
Max Stepanove36e5432013-08-27 19:56:13 +0300905 case IWL_UCODE_TLV_CSCHEME:
906 if (iwl_store_cscheme(&drv->fw, tlv_data, tlv_len))
907 goto invalid_tlv_len;
908 break;
David Spinadel762533b2014-06-05 11:20:43 +0300909 case IWL_UCODE_TLV_N_SCAN_CHANNELS:
910 if (tlv_len != sizeof(u32))
911 goto invalid_tlv_len;
912 capa->n_scan_channels =
913 le32_to_cpup((__le32 *)tlv_data);
914 break;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200915 case IWL_UCODE_TLV_FW_VERSION: {
916 __le32 *ptr = (void *)tlv_data;
917 u32 major, minor;
918 u8 local_comp;
919
920 if (tlv_len != sizeof(u32) * 3)
921 goto invalid_tlv_len;
922
923 major = le32_to_cpup(ptr++);
924 minor = le32_to_cpup(ptr++);
925 local_comp = le32_to_cpup(ptr);
926
Emmanuel Grumbach76c5bcb2017-11-02 10:02:04 +0200927 if (major >= 35)
928 snprintf(drv->fw.fw_version,
929 sizeof(drv->fw.fw_version),
930 "%u.%08x.%u", major, minor, local_comp);
931 else
932 snprintf(drv->fw.fw_version,
933 sizeof(drv->fw.fw_version),
934 "%u.%u.%u", major, minor, local_comp);
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200935 break;
936 }
Liad Kaufman490fefe2014-09-16 15:06:54 +0300937 case IWL_UCODE_TLV_FW_DBG_DEST: {
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300938 struct iwl_fw_dbg_dest_tlv *dest = NULL;
939 struct iwl_fw_dbg_dest_tlv_v1 *dest_v1 = NULL;
940 u8 mon_mode;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300941
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300942 pieces->dbg_dest_ver = (u8 *)tlv_data;
943 if (*pieces->dbg_dest_ver == 1) {
944 dest = (void *)tlv_data;
945 } else if (*pieces->dbg_dest_ver == 0) {
946 dest_v1 = (void *)tlv_data;
947 } else {
948 IWL_ERR(drv,
949 "The version is %d, and it is invalid\n",
950 *pieces->dbg_dest_ver);
951 break;
952 }
953
954 if (pieces->dbg_dest_tlv_init) {
Liad Kaufman490fefe2014-09-16 15:06:54 +0300955 IWL_ERR(drv,
956 "dbg destination ignored, already exists\n");
957 break;
958 }
959
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300960 pieces->dbg_dest_tlv_init = true;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300961
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300962 if (dest_v1) {
963 pieces->dbg_dest_tlv_v1 = dest_v1;
964 mon_mode = dest_v1->monitor_mode;
965 } else {
966 pieces->dbg_dest_tlv = dest;
967 mon_mode = dest->monitor_mode;
968 }
969
970 IWL_INFO(drv, "Found debug destination: %s\n",
971 get_fw_dbg_mode_string(mon_mode));
972
973 drv->fw.dbg_dest_reg_num = (dest_v1) ?
974 tlv_len -
975 offsetof(struct iwl_fw_dbg_dest_tlv_v1,
976 reg_ops) :
977 tlv_len -
978 offsetof(struct iwl_fw_dbg_dest_tlv,
979 reg_ops);
980
Liad Kaufman490fefe2014-09-16 15:06:54 +0300981 drv->fw.dbg_dest_reg_num /=
982 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]);
983
984 break;
985 }
986 case IWL_UCODE_TLV_FW_DBG_CONF: {
987 struct iwl_fw_dbg_conf_tlv *conf = (void *)tlv_data;
988
Golan Ben Amifd527eb2017-08-16 12:14:56 +0300989 if (!pieces->dbg_dest_tlv_init) {
Liad Kaufman490fefe2014-09-16 15:06:54 +0300990 IWL_ERR(drv,
991 "Ignore dbg config %d - no destination configured\n",
992 conf->id);
993 break;
994 }
995
996 if (conf->id >= ARRAY_SIZE(drv->fw.dbg_conf_tlv)) {
997 IWL_ERR(drv,
998 "Skip unknown configuration: %d\n",
999 conf->id);
1000 break;
1001 }
1002
1003 if (pieces->dbg_conf_tlv[conf->id]) {
1004 IWL_ERR(drv,
1005 "Ignore duplicate dbg config %d\n",
1006 conf->id);
1007 break;
1008 }
1009
Eran Harary61df7502014-12-01 17:40:37 +02001010 if (conf->usniffer)
1011 usniffer_req = true;
1012
Liad Kaufman490fefe2014-09-16 15:06:54 +03001013 IWL_INFO(drv, "Found debug configuration: %d\n",
1014 conf->id);
1015
1016 pieces->dbg_conf_tlv[conf->id] = conf;
1017 pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
1018 break;
1019 }
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001020 case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
1021 struct iwl_fw_dbg_trigger_tlv *trigger =
1022 (void *)tlv_data;
1023 u32 trigger_id = le32_to_cpu(trigger->id);
1024
1025 if (trigger_id >= ARRAY_SIZE(drv->fw.dbg_trigger_tlv)) {
1026 IWL_ERR(drv,
1027 "Skip unknown trigger: %u\n",
1028 trigger->id);
1029 break;
1030 }
1031
1032 if (pieces->dbg_trigger_tlv[trigger_id]) {
1033 IWL_ERR(drv,
1034 "Ignore duplicate dbg trigger %u\n",
1035 trigger->id);
1036 break;
1037 }
1038
1039 IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
1040
1041 pieces->dbg_trigger_tlv[trigger_id] = trigger;
1042 pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
1043 break;
1044 }
Eran Harary61df7502014-12-01 17:40:37 +02001045 case IWL_UCODE_TLV_SEC_RT_USNIFFER:
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001046 *usniffer_images = true;
Eran Harary61df7502014-12-01 17:40:37 +02001047 iwl_store_ucode_sec(pieces, tlv_data,
1048 IWL_UCODE_REGULAR_USNIFFER,
1049 tlv_len);
1050 break;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +03001051 case IWL_UCODE_TLV_PAGING:
1052 if (tlv_len != sizeof(u32))
1053 goto invalid_tlv_len;
1054 paging_mem_size = le32_to_cpup((__le32 *)tlv_data);
1055
1056 IWL_DEBUG_FW(drv,
1057 "Paging: paging enabled (size = %u bytes)\n",
1058 paging_mem_size);
1059
1060 if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
1061 IWL_ERR(drv,
1062 "Paging: driver supports up to %lu bytes for paging image\n",
1063 MAX_PAGING_IMAGE_SIZE);
1064 return -EINVAL;
1065 }
1066
1067 if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
1068 IWL_ERR(drv,
1069 "Paging: image isn't multiple %lu\n",
1070 FW_PAGING_SIZE);
1071 return -EINVAL;
1072 }
1073
1074 drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
1075 paging_mem_size;
1076 usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
1077 drv->fw.img[usniffer_img].paging_mem_size =
1078 paging_mem_size;
1079 break;
Avraham Stern17564dd2015-03-22 13:11:01 +02001080 case IWL_UCODE_TLV_FW_GSCAN_CAPA:
Ayala Beker5ed472262016-02-03 15:36:52 +02001081 /*
1082 * Don't return an error in case of a shorter tlv_len
1083 * to enable loading of FW that has an old format
1084 * of GSCAN capabilities TLV.
1085 */
1086 if (tlv_len < sizeof(struct iwl_fw_gscan_capabilities))
1087 break;
1088
1089 iwl_store_gscan_capa(&drv->fw, tlv_data, tlv_len);
Avraham Stern17564dd2015-03-22 13:11:01 +02001090 gscan_capa = true;
1091 break;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001092 case IWL_UCODE_TLV_FW_MEM_SEG: {
1093 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1094 (void *)tlv_data;
1095 u32 type;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001096 size_t size;
1097 struct iwl_fw_dbg_mem_seg_tlv *n;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001098
1099 if (tlv_len != (sizeof(*dbg_mem)))
1100 goto invalid_tlv_len;
1101
1102 type = le32_to_cpu(dbg_mem->data_type);
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001103
1104 IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1105 dbg_mem->data_type);
1106
Johannes Berg5bdaa0e2016-10-20 10:01:43 +02001107 switch (type & FW_DBG_MEM_TYPE_MASK) {
1108 case FW_DBG_MEM_TYPE_REGULAR:
1109 case FW_DBG_MEM_TYPE_PRPH:
1110 /* we know how to handle these */
1111 break;
1112 default:
1113 IWL_ERR(drv,
1114 "Found debug memory segment with invalid type: 0x%x\n",
1115 type);
1116 return -EINVAL;
1117 }
1118
Johannes Berg2ed1e012016-10-20 09:41:14 +02001119 size = sizeof(*pieces->dbg_mem_tlv) *
1120 (pieces->n_dbg_mem_tlv + 1);
1121 n = krealloc(pieces->dbg_mem_tlv, size, GFP_KERNEL);
1122 if (!n)
1123 return -ENOMEM;
1124 pieces->dbg_mem_tlv = n;
1125 pieces->dbg_mem_tlv[pieces->n_dbg_mem_tlv] = *dbg_mem;
1126 pieces->n_dbg_mem_tlv++;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001127 break;
1128 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001129 default:
Johannes Berg965974a62012-03-06 13:30:38 -08001130 IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
Johannes Berg15854ef92012-03-05 11:24:50 -08001131 break;
1132 }
1133 }
1134
Golan Ben-Ami3d2d4422016-02-23 10:34:48 +02001135 if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1136 usniffer_req && !*usniffer_images) {
Eran Harary61df7502014-12-01 17:40:37 +02001137 IWL_ERR(drv,
1138 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1139 return -EINVAL;
1140 }
1141
Johannes Berg15854ef92012-03-05 11:24:50 -08001142 if (len) {
Johannes Berg965974a62012-03-06 13:30:38 -08001143 IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1144 iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001145 return -EINVAL;
1146 }
1147
Ayala Bekera0b09f12016-02-03 15:36:52 +02001148 /*
1149 * If ucode advertises that it supports GSCAN but GSCAN
1150 * capabilities TLV is not present, or if it has an old format,
1151 * warn and continue without GSCAN.
1152 */
1153 if (fw_has_capa(capa, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT) &&
1154 !gscan_capa) {
1155 IWL_DEBUG_INFO(drv,
1156 "GSCAN is supported but capabilities TLV is unavailable\n");
Avraham Stern17564dd2015-03-22 13:11:01 +02001157 __clear_bit((__force long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT,
1158 capa->_capa);
Ayala Bekera0b09f12016-02-03 15:36:52 +02001159 }
Avraham Stern17564dd2015-03-22 13:11:01 +02001160
Johannes Berg15854ef92012-03-05 11:24:50 -08001161 return 0;
1162
1163 invalid_tlv_len:
Johannes Berg965974a62012-03-06 13:30:38 -08001164 IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
David Spinadeled8c8362012-03-10 13:00:13 -08001165 tlv_error:
Johannes Berg965974a62012-03-06 13:30:38 -08001166 iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001167
1168 return -EINVAL;
1169}
1170
Johannes Berg75813bd2012-05-16 22:49:49 +02001171static int iwl_alloc_ucode(struct iwl_drv *drv,
1172 struct iwl_firmware_pieces *pieces,
1173 enum iwl_ucode_type type)
David Spinadel6dfa8d02012-03-10 13:00:14 -08001174{
1175 int i;
Sara Sharoneef187a2016-10-25 11:38:31 +03001176 struct fw_desc *sec;
1177
1178 sec = kcalloc(pieces->img[type].sec_counter, sizeof(*sec), GFP_KERNEL);
1179 if (!sec)
1180 return -ENOMEM;
1181 drv->fw.img[type].sec = sec;
1182 drv->fw.img[type].num_sec = pieces->img[type].sec_counter;
1183
1184 for (i = 0; i < pieces->img[type].sec_counter; i++)
1185 if (iwl_alloc_fw_desc(drv, &sec[i], get_sec(pieces, type, i)))
Johannes Berg75813bd2012-05-16 22:49:49 +02001186 return -ENOMEM;
Sara Sharoneef187a2016-10-25 11:38:31 +03001187
David Spinadel6dfa8d02012-03-10 13:00:14 -08001188 return 0;
1189}
1190
1191static int validate_sec_sizes(struct iwl_drv *drv,
1192 struct iwl_firmware_pieces *pieces,
1193 const struct iwl_cfg *cfg)
1194{
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001195 IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001196 get_sec_size(pieces, IWL_UCODE_REGULAR,
1197 IWL_UCODE_SECTION_INST));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001198 IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001199 get_sec_size(pieces, IWL_UCODE_REGULAR,
1200 IWL_UCODE_SECTION_DATA));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001201 IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001202 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001203 IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001204 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1205
1206 /* Verify that uCode images will fit in card's SRAM. */
1207 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001208 cfg->max_inst_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001209 IWL_ERR(drv, "uCode instr len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001210 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001211 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001212 return -1;
1213 }
1214
1215 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001216 cfg->max_data_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001217 IWL_ERR(drv, "uCode data len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001218 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001219 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001220 return -1;
1221 }
1222
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001223 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1224 cfg->max_inst_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001225 IWL_ERR(drv, "uCode init instr len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001226 get_sec_size(pieces, IWL_UCODE_INIT,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001227 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001228 return -1;
1229 }
1230
1231 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001232 cfg->max_data_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001233 IWL_ERR(drv, "uCode init data len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001234 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001235 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001236 return -1;
1237 }
1238 return 0;
1239}
1240
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001241static struct iwl_op_mode *
1242_iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1243{
1244 const struct iwl_op_mode_ops *ops = op->ops;
1245 struct dentry *dbgfs_dir = NULL;
1246 struct iwl_op_mode *op_mode = NULL;
1247
1248#ifdef CONFIG_IWLWIFI_DEBUGFS
1249 drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1250 drv->dbgfs_drv);
1251 if (!drv->dbgfs_op_mode) {
1252 IWL_ERR(drv,
1253 "failed to create opmode debugfs directory\n");
1254 return op_mode;
1255 }
1256 dbgfs_dir = drv->dbgfs_op_mode;
1257#endif
1258
Luca Coelho0c4881c2016-12-13 09:56:07 +02001259 op_mode = ops->start(drv->trans, drv->trans->cfg, &drv->fw, dbgfs_dir);
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001260
1261#ifdef CONFIG_IWLWIFI_DEBUGFS
1262 if (!op_mode) {
1263 debugfs_remove_recursive(drv->dbgfs_op_mode);
1264 drv->dbgfs_op_mode = NULL;
1265 }
1266#endif
1267
1268 return op_mode;
1269}
1270
1271static void _iwl_op_mode_stop(struct iwl_drv *drv)
1272{
1273 /* op_mode can be NULL if its start failed */
1274 if (drv->op_mode) {
1275 iwl_op_mode_stop(drv->op_mode);
1276 drv->op_mode = NULL;
1277
1278#ifdef CONFIG_IWLWIFI_DEBUGFS
1279 debugfs_remove_recursive(drv->dbgfs_op_mode);
1280 drv->dbgfs_op_mode = NULL;
1281#endif
1282 }
1283}
1284
Johannes Berg15854ef92012-03-05 11:24:50 -08001285/**
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001286 * iwl_req_fw_callback - callback when firmware was loaded
Johannes Berg15854ef92012-03-05 11:24:50 -08001287 *
1288 * If loaded successfully, copies the firmware into buffers
1289 * for the card to fetch (via DMA).
1290 */
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001291static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
Johannes Berg15854ef92012-03-05 11:24:50 -08001292{
Johannes Berg965974a62012-03-06 13:30:38 -08001293 struct iwl_drv *drv = context;
Johannes Berg965974a62012-03-06 13:30:38 -08001294 struct iwl_fw *fw = &drv->fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001295 struct iwl_ucode_header *ucode;
Don Frycc5f7e32012-05-16 22:54:27 +02001296 struct iwlwifi_opmode_table *op;
Johannes Berg15854ef92012-03-05 11:24:50 -08001297 int err;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001298 struct iwl_firmware_pieces *pieces;
Luca Coelho0c4881c2016-12-13 09:56:07 +02001299 const unsigned int api_max = drv->trans->cfg->ucode_api_max;
1300 const unsigned int api_min = drv->trans->cfg->ucode_api_min;
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001301 size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -08001302 u32 api_ver;
David Spinadel6dfa8d02012-03-10 13:00:14 -08001303 int i;
Johannes Bergd4b10482012-06-12 19:50:43 +02001304 bool load_module = false;
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001305 bool usniffer_images = false;
Johannes Berg15854ef92012-03-05 11:24:50 -08001306
Luciano Coelho66140ad2013-08-12 19:30:21 +03001307 fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
Johannes Berg15854ef92012-03-05 11:24:50 -08001308 fw->ucode_capa.standard_phy_calibration_size =
1309 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
David Spinadel762533b2014-06-05 11:20:43 +03001310 fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
Johannes Berg15854ef92012-03-05 11:24:50 -08001311
Liad Kaufman490fefe2014-09-16 15:06:54 +03001312 pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1313 if (!pieces)
Johannes Berg53d515e2017-02-28 16:44:16 +01001314 goto out_free_fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001315
Emmanuel Grumbach9d9b21d2016-03-24 08:44:57 +02001316 if (!ucode_raw)
Johannes Berg15854ef92012-03-05 11:24:50 -08001317 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001318
Johannes Berg965974a62012-03-06 13:30:38 -08001319 IWL_DEBUG_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1320 drv->firmware_name, ucode_raw->size);
Johannes Berg15854ef92012-03-05 11:24:50 -08001321
1322 /* Make sure that we got at least the API version number */
1323 if (ucode_raw->size < 4) {
Johannes Berg965974a62012-03-06 13:30:38 -08001324 IWL_ERR(drv, "File size way too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -08001325 goto try_again;
1326 }
1327
1328 /* Data from ucode file: header followed by uCode images */
1329 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1330
1331 if (ucode->ver)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001332 err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001333 else
Liad Kaufman490fefe2014-09-16 15:06:54 +03001334 err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001335 &fw->ucode_capa, &usniffer_images);
Johannes Berg15854ef92012-03-05 11:24:50 -08001336
1337 if (err)
1338 goto try_again;
1339
Luca Coelhof0d8f382016-04-25 20:02:09 +03001340 if (fw_has_api(&drv->fw.ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION))
1341 api_ver = drv->fw.ucode_ver;
1342 else
1343 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -08001344
1345 /*
1346 * api_ver should match the api version forming part of the
1347 * firmware filename ... but we don't check for that and only rely
1348 * on the API version read from firmware header from here on forward
1349 */
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +03001350 if (api_ver < api_min || api_ver > api_max) {
1351 IWL_ERR(drv,
1352 "Driver unable to support your firmware API. "
1353 "Driver supports v%u, firmware is v%u.\n",
1354 api_max, api_ver);
1355 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001356 }
1357
Johannes Berg15854ef92012-03-05 11:24:50 -08001358 /*
David Spinadel4db2c9a2012-03-10 13:00:15 -08001359 * In mvm uCode there is no difference between data and instructions
1360 * sections.
1361 */
Luca Coelho0c4881c2016-12-13 09:56:07 +02001362 if (fw->type == IWL_FW_DVM && validate_sec_sizes(drv, pieces,
1363 drv->trans->cfg))
Johannes Berg15854ef92012-03-05 11:24:50 -08001364 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001365
1366 /* Allocate ucode buffers for card's bus-master loading ... */
1367
1368 /* Runtime instructions and 2 copies of data:
1369 * 1) unmodified from disk
Christoph Böhmwalder1e37f792017-09-23 12:31:12 +02001370 * 2) backup cache for save/restore during power-downs
1371 */
David Spinadel6dfa8d02012-03-10 13:00:14 -08001372 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001373 if (iwl_alloc_ucode(drv, pieces, i))
Johannes Berg75813bd2012-05-16 22:49:49 +02001374 goto out_free_fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001375
Golan Ben Amifd527eb2017-08-16 12:14:56 +03001376 if (pieces->dbg_dest_tlv_init) {
1377 size_t dbg_dest_size = sizeof(*drv->fw.dbg_dest_tlv) +
1378 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]) *
1379 drv->fw.dbg_dest_reg_num;
1380
1381 drv->fw.dbg_dest_tlv = kmalloc(dbg_dest_size, GFP_KERNEL);
Liad Kaufman490fefe2014-09-16 15:06:54 +03001382
1383 if (!drv->fw.dbg_dest_tlv)
1384 goto out_free_fw;
Golan Ben Amifd527eb2017-08-16 12:14:56 +03001385
1386 if (*pieces->dbg_dest_ver == 0) {
1387 memcpy(drv->fw.dbg_dest_tlv, pieces->dbg_dest_tlv_v1,
1388 dbg_dest_size);
1389 } else {
1390 struct iwl_fw_dbg_dest_tlv_v1 *dest_tlv =
1391 drv->fw.dbg_dest_tlv;
1392
1393 dest_tlv->version = pieces->dbg_dest_tlv->version;
1394 dest_tlv->monitor_mode =
1395 pieces->dbg_dest_tlv->monitor_mode;
1396 dest_tlv->size_power =
1397 pieces->dbg_dest_tlv->size_power;
1398 dest_tlv->wrap_count =
1399 pieces->dbg_dest_tlv->wrap_count;
1400 dest_tlv->write_ptr_reg =
1401 pieces->dbg_dest_tlv->write_ptr_reg;
1402 dest_tlv->base_shift =
1403 pieces->dbg_dest_tlv->base_shift;
1404 memcpy(dest_tlv->reg_ops,
1405 pieces->dbg_dest_tlv->reg_ops,
1406 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]) *
1407 drv->fw.dbg_dest_reg_num);
1408
1409 /* In version 1 of the destination tlv, which is
1410 * relevant for internal buffer exclusively,
1411 * the base address is part of given with the length
1412 * of the buffer, and the size shift is give instead of
1413 * end shift. We now store these values in base_reg,
1414 * and end shift, and when dumping the data we'll
1415 * manipulate it for extracting both the length and
1416 * base address */
1417 dest_tlv->base_reg = pieces->dbg_dest_tlv->cfg_reg;
1418 dest_tlv->end_shift =
1419 pieces->dbg_dest_tlv->size_shift;
1420 }
Liad Kaufman490fefe2014-09-16 15:06:54 +03001421 }
1422
1423 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++) {
1424 if (pieces->dbg_conf_tlv[i]) {
1425 drv->fw.dbg_conf_tlv_len[i] =
1426 pieces->dbg_conf_tlv_len[i];
1427 drv->fw.dbg_conf_tlv[i] =
1428 kmemdup(pieces->dbg_conf_tlv[i],
1429 drv->fw.dbg_conf_tlv_len[i],
1430 GFP_KERNEL);
1431 if (!drv->fw.dbg_conf_tlv[i])
1432 goto out_free_fw;
1433 }
1434 }
1435
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001436 memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1437
1438 trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1439 sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1440 trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1441 trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1442 sizeof(struct iwl_fw_dbg_trigger_cmd);
1443 trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1444 sizeof(struct iwl_fw_dbg_trigger_mlme);
1445 trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1446 sizeof(struct iwl_fw_dbg_trigger_stats);
1447 trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1448 sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1449 trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1450 sizeof(struct iwl_fw_dbg_trigger_txq_timer);
Emmanuel Grumbach874c1742015-03-25 22:40:47 +02001451 trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1452 sizeof(struct iwl_fw_dbg_trigger_time_event);
Emmanuel Grumbach42032632015-04-15 12:43:46 +03001453 trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1454 sizeof(struct iwl_fw_dbg_trigger_ba);
Golan Ben-Ami1e8f1322015-08-23 17:57:33 +03001455 trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1456 sizeof(struct iwl_fw_dbg_trigger_tdls);
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001457
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001458 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++) {
1459 if (pieces->dbg_trigger_tlv[i]) {
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001460 /*
1461 * If the trigger isn't long enough, WARN and exit.
1462 * Someone is trying to debug something and he won't
1463 * be able to catch the bug he is trying to chase.
1464 * We'd better be noisy to be sure he knows what's
1465 * going on.
1466 */
1467 if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1468 (trigger_tlv_sz[i] +
1469 sizeof(struct iwl_fw_dbg_trigger_tlv))))
1470 goto out_free_fw;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001471 drv->fw.dbg_trigger_tlv_len[i] =
1472 pieces->dbg_trigger_tlv_len[i];
1473 drv->fw.dbg_trigger_tlv[i] =
1474 kmemdup(pieces->dbg_trigger_tlv[i],
1475 drv->fw.dbg_trigger_tlv_len[i],
1476 GFP_KERNEL);
1477 if (!drv->fw.dbg_trigger_tlv[i])
1478 goto out_free_fw;
1479 }
1480 }
1481
Johannes Berg15854ef92012-03-05 11:24:50 -08001482 /* Now that we can no longer fail, copy information */
1483
Johannes Berg2ed1e012016-10-20 09:41:14 +02001484 drv->fw.dbg_mem_tlv = pieces->dbg_mem_tlv;
1485 pieces->dbg_mem_tlv = NULL;
1486 drv->fw.n_dbg_mem_tlv = pieces->n_dbg_mem_tlv;
1487
Johannes Berg15854ef92012-03-05 11:24:50 -08001488 /*
1489 * The (size - 16) / 12 formula is based on the information recorded
1490 * for each event, which is of mode 1 (including timestamp) for all
1491 * new microcodes that include this information.
1492 */
Liad Kaufman490fefe2014-09-16 15:06:54 +03001493 fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1494 if (pieces->init_evtlog_size)
1495 fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001496 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001497 fw->init_evtlog_size =
Luca Coelho0c4881c2016-12-13 09:56:07 +02001498 drv->trans->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001499 fw->init_errlog_ptr = pieces->init_errlog_ptr;
1500 fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1501 if (pieces->inst_evtlog_size)
1502 fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001503 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001504 fw->inst_evtlog_size =
Luca Coelho0c4881c2016-12-13 09:56:07 +02001505 drv->trans->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001506 fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
Johannes Berg15854ef92012-03-05 11:24:50 -08001507
1508 /*
1509 * figure out the offset of chain noise reset and gain commands
1510 * base on the size of standard phy calibration commands table size
1511 */
1512 if (fw->ucode_capa.standard_phy_calibration_size >
1513 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1514 fw->ucode_capa.standard_phy_calibration_size =
1515 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1516
1517 /* We have our copies now, allow OS release its copies */
1518 release_firmware(ucode_raw);
Johannes Berg15854ef92012-03-05 11:24:50 -08001519
Johannes Bergff1ffb82012-06-06 09:42:57 +02001520 mutex_lock(&iwlwifi_opmode_table_mtx);
Johannes Bergca221c92016-04-28 14:40:59 +02001521 switch (fw->type) {
1522 case IWL_FW_DVM:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001523 op = &iwlwifi_opmode_table[DVM_OP_MODE];
Johannes Bergca221c92016-04-28 14:40:59 +02001524 break;
1525 default:
1526 WARN(1, "Invalid fw type %d\n", fw->type);
1527 case IWL_FW_MVM:
1528 op = &iwlwifi_opmode_table[MVM_OP_MODE];
1529 break;
1530 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001531
Johannes Berg2b2719c2013-03-26 11:41:51 +01001532 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1533 drv->fw.fw_version, op->name);
1534
Don Frycc5f7e32012-05-16 22:54:27 +02001535 /* add this device to the list of devices using this op_mode */
1536 list_add_tail(&drv->list, &op->drv);
1537
1538 if (op->ops) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001539 drv->op_mode = _iwl_op_mode_start(drv, op);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001540
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001541 if (!drv->op_mode) {
1542 mutex_unlock(&iwlwifi_opmode_table_mtx);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001543 goto out_unbind;
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001544 }
Don Frycc5f7e32012-05-16 22:54:27 +02001545 } else {
Johannes Bergd4b10482012-06-12 19:50:43 +02001546 load_module = true;
Don Frycc5f7e32012-05-16 22:54:27 +02001547 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001548 mutex_unlock(&iwlwifi_opmode_table_mtx);
Johannes Berg15854ef92012-03-05 11:24:50 -08001549
Johannes Bergf69a23b2012-06-05 19:56:06 +02001550 /*
1551 * Complete the firmware request last so that
1552 * a driver unbind (stop) doesn't run while we
1553 * are doing the start() above.
1554 */
1555 complete(&drv->request_firmware_complete);
Johannes Bergd4b10482012-06-12 19:50:43 +02001556
1557 /*
1558 * Load the module last so we don't block anything
1559 * else from proceeding if the module fails to load
1560 * or hangs loading.
1561 */
Johannes Berg1618b2b2013-04-04 10:35:23 +02001562 if (load_module) {
Johannes Berg06a1e852017-02-28 22:45:25 +01001563 request_module("%s", op->name);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001564#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
Johannes Berg1618b2b2013-04-04 10:35:23 +02001565 if (err)
1566 IWL_ERR(drv,
1567 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1568 op->name, err);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001569#endif
Johannes Berg1618b2b2013-04-04 10:35:23 +02001570 }
Johannes Berg2ed1e012016-10-20 09:41:14 +02001571 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001572
1573 try_again:
1574 /* try next, if any */
1575 release_firmware(ucode_raw);
Johannes Berg965974a62012-03-06 13:30:38 -08001576 if (iwl_request_firmware(drv, false))
Johannes Berg15854ef92012-03-05 11:24:50 -08001577 goto out_unbind;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001578 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001579
Johannes Berg75813bd2012-05-16 22:49:49 +02001580 out_free_fw:
Johannes Berg965974a62012-03-06 13:30:38 -08001581 iwl_dealloc_ucode(drv);
Johannes Berg15854ef92012-03-05 11:24:50 -08001582 release_firmware(ucode_raw);
1583 out_unbind:
Johannes Berg965974a62012-03-06 13:30:38 -08001584 complete(&drv->request_firmware_complete);
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +02001585 device_release_driver(drv->trans->dev);
Johannes Berg2ed1e012016-10-20 09:41:14 +02001586 free:
Johannes Berg53d515e2017-02-28 16:44:16 +01001587 if (pieces) {
1588 for (i = 0; i < ARRAY_SIZE(pieces->img); i++)
1589 kfree(pieces->img[i].sec);
1590 kfree(pieces->dbg_mem_tlv);
1591 kfree(pieces);
1592 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001593}
1594
Luca Coelho49060382016-12-13 09:48:57 +02001595struct iwl_drv *iwl_drv_start(struct iwl_trans *trans)
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001596{
Johannes Berg965974a62012-03-06 13:30:38 -08001597 struct iwl_drv *drv;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001598 int ret;
1599
Johannes Berg965974a62012-03-06 13:30:38 -08001600 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001601 if (!drv) {
1602 ret = -ENOMEM;
1603 goto err;
1604 }
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001605
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001606 drv->trans = trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +02001607 drv->dev = trans->dev;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001608
Johannes Berg965974a62012-03-06 13:30:38 -08001609 init_completion(&drv->request_firmware_complete);
Johannes Bergff1ffb82012-06-06 09:42:57 +02001610 INIT_LIST_HEAD(&drv->list);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001611
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001612#ifdef CONFIG_IWLWIFI_DEBUGFS
1613 /* Create the device debugfs entries. */
1614 drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1615 iwl_dbgfs_root);
1616
1617 if (!drv->dbgfs_drv) {
1618 IWL_ERR(drv, "failed to create debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001619 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001620 goto err_free_drv;
1621 }
1622
1623 /* Create transport layer debugfs dir */
1624 drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1625
1626 if (!drv->trans->dbgfs_dir) {
1627 IWL_ERR(drv, "failed to create transport debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001628 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001629 goto err_free_dbgfs;
1630 }
1631#endif
1632
Johannes Berg965974a62012-03-06 13:30:38 -08001633 ret = iwl_request_firmware(drv, true);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001634 if (ret) {
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001635 IWL_ERR(trans, "Couldn't request the fw\n");
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001636 goto err_fw;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001637 }
1638
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001639 return drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001640
1641err_fw:
1642#ifdef CONFIG_IWLWIFI_DEBUGFS
1643err_free_dbgfs:
1644 debugfs_remove_recursive(drv->dbgfs_drv);
1645err_free_drv:
1646#endif
1647 kfree(drv);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001648err:
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001649 return ERR_PTR(ret);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001650}
1651
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001652void iwl_drv_stop(struct iwl_drv *drv)
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001653{
Johannes Berg965974a62012-03-06 13:30:38 -08001654 wait_for_completion(&drv->request_firmware_complete);
Johannes Berg2e7eb112012-03-05 11:24:51 -08001655
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001656 _iwl_op_mode_stop(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001657
Johannes Berg965974a62012-03-06 13:30:38 -08001658 iwl_dealloc_ucode(drv);
Johannes Berg7db5b982012-03-05 11:24:48 -08001659
Johannes Bergff1ffb82012-06-06 09:42:57 +02001660 mutex_lock(&iwlwifi_opmode_table_mtx);
1661 /*
1662 * List is empty (this item wasn't added)
1663 * when firmware loading failed -- in that
1664 * case we can't remove it from any list.
1665 */
1666 if (!list_empty(&drv->list))
1667 list_del(&drv->list);
1668 mutex_unlock(&iwlwifi_opmode_table_mtx);
1669
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001670#ifdef CONFIG_IWLWIFI_DEBUGFS
1671 debugfs_remove_recursive(drv->dbgfs_drv);
1672#endif
1673
Johannes Berg965974a62012-03-06 13:30:38 -08001674 kfree(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001675}
Johannes Berg65de7e82012-04-17 07:36:30 -07001676
1677
1678/* shared module parameters */
1679struct iwl_mod_params iwlwifi_mod_params = {
Johannes Berg3b37f4c2017-05-30 16:45:31 +02001680 .fw_restart = true,
Johannes Berg65de7e82012-04-17 07:36:30 -07001681 .bt_coex_active = true,
1682 .power_level = IWL_POWER_INDEX_1,
Eliad Peller7616f332014-11-20 17:33:43 +02001683 .d0i3_disable = true,
Johannes Berg3b37f4c2017-05-30 16:45:31 +02001684 .d0i3_timeout = 1000,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001685 .uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
Johannes Berg65de7e82012-04-17 07:36:30 -07001686 /* the rest are 0 by default */
1687};
Johannes Berg48e29342013-03-01 00:13:33 +01001688IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
Don Frycc5f7e32012-05-16 22:54:27 +02001689
1690int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1691{
1692 int i;
1693 struct iwl_drv *drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001694 struct iwlwifi_opmode_table *op;
Don Frycc5f7e32012-05-16 22:54:27 +02001695
Johannes Bergff1ffb82012-06-06 09:42:57 +02001696 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001697 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001698 op = &iwlwifi_opmode_table[i];
1699 if (strcmp(op->name, name))
Don Frycc5f7e32012-05-16 22:54:27 +02001700 continue;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001701 op->ops = ops;
1702 /* TODO: need to handle exceptional case */
1703 list_for_each_entry(drv, &op->drv, list)
1704 drv->op_mode = _iwl_op_mode_start(drv, op);
1705
Johannes Bergff1ffb82012-06-06 09:42:57 +02001706 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001707 return 0;
1708 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001709 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001710 return -EIO;
1711}
Johannes Berg48e29342013-03-01 00:13:33 +01001712IWL_EXPORT_SYMBOL(iwl_opmode_register);
Don Frycc5f7e32012-05-16 22:54:27 +02001713
1714void iwl_opmode_deregister(const char *name)
1715{
1716 int i;
1717 struct iwl_drv *drv;
1718
Johannes Bergff1ffb82012-06-06 09:42:57 +02001719 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001720 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1721 if (strcmp(iwlwifi_opmode_table[i].name, name))
1722 continue;
1723 iwlwifi_opmode_table[i].ops = NULL;
1724
1725 /* call the stop routine for all devices */
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001726 list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1727 _iwl_op_mode_stop(drv);
1728
Johannes Bergff1ffb82012-06-06 09:42:57 +02001729 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001730 return;
1731 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001732 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001733}
Johannes Berg48e29342013-03-01 00:13:33 +01001734IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
Don Frycc5f7e32012-05-16 22:54:27 +02001735
1736static int __init iwl_drv_init(void)
1737{
1738 int i;
1739
Johannes Bergff1ffb82012-06-06 09:42:57 +02001740 mutex_init(&iwlwifi_opmode_table_mtx);
1741
Don Frycc5f7e32012-05-16 22:54:27 +02001742 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1743 INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1744
Johannes Berge32ec122014-10-22 11:22:56 +02001745 pr_info(DRV_DESCRIPTION "\n");
Don Frycc5f7e32012-05-16 22:54:27 +02001746 pr_info(DRV_COPYRIGHT "\n");
1747
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001748#ifdef CONFIG_IWLWIFI_DEBUGFS
1749 /* Create the root of iwlwifi debugfs subsystem. */
1750 iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1751
1752 if (!iwl_dbgfs_root)
1753 return -EFAULT;
1754#endif
1755
Don Frycc5f7e32012-05-16 22:54:27 +02001756 return iwl_pci_register_driver();
1757}
1758module_init(iwl_drv_init);
1759
1760static void __exit iwl_drv_exit(void)
1761{
1762 iwl_pci_unregister_driver();
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001763
1764#ifdef CONFIG_IWLWIFI_DEBUGFS
1765 debugfs_remove_recursive(iwl_dbgfs_root);
1766#endif
Don Frycc5f7e32012-05-16 22:54:27 +02001767}
1768module_exit(iwl_drv_exit);
Johannes Berg65de7e82012-04-17 07:36:30 -07001769
1770#ifdef CONFIG_IWLWIFI_DEBUG
Joe Perches2ef00c52018-03-23 15:54:37 -07001771module_param_named(debug, iwlwifi_mod_params.debug_level, uint, 0644);
Johannes Berg65de7e82012-04-17 07:36:30 -07001772MODULE_PARM_DESC(debug, "debug output mask");
1773#endif
1774
Joe Perches2ef00c52018-03-23 15:54:37 -07001775module_param_named(swcrypto, iwlwifi_mod_params.swcrypto, int, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001776MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
Joe Perches2ef00c52018-03-23 15:54:37 -07001777module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001778MODULE_PARM_DESC(11n_disable,
Emmanuel Grumbach205e2212014-02-12 15:15:05 +02001779 "disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX");
Joe Perches2ef00c52018-03-23 15:54:37 -07001780module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size, int, 0444);
Emmanuel Grumbach4bdd4df2016-04-07 16:44:42 +03001781MODULE_PARM_DESC(amsdu_size,
1782 "amsdu size 0: 12K for multi Rx queue devices, 4K for other devices 1:4K 2:8K 3:12K (default 0)");
Joe Perches2ef00c52018-03-23 15:54:37 -07001783module_param_named(fw_restart, iwlwifi_mod_params.fw_restart, bool, 0444);
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001784MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001785
Johannes Berg3b37f4c2017-05-30 16:45:31 +02001786module_param_named(antenna_coupling, iwlwifi_mod_params.antenna_coupling,
Joe Perches2ef00c52018-03-23 15:54:37 -07001787 int, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001788MODULE_PARM_DESC(antenna_coupling,
Toralf Försterad25c1e2014-09-09 20:08:53 +02001789 "specify antenna coupling in dB (default: 0 dB)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001790
Joe Perches2ef00c52018-03-23 15:54:37 -07001791module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, 0444);
Eran Harary12147552013-05-09 08:07:59 +03001792MODULE_PARM_DESC(nvm_file, "NVM file name");
1793
Joe Perches2ef00c52018-03-23 15:54:37 -07001794module_param_named(d0i3_disable, iwlwifi_mod_params.d0i3_disable, bool, 0444);
Eliad Peller7616f332014-11-20 17:33:43 +02001795MODULE_PARM_DESC(d0i3_disable, "disable d0i3 functionality (default: Y)");
1796
Joe Perches2ef00c52018-03-23 15:54:37 -07001797module_param_named(lar_disable, iwlwifi_mod_params.lar_disable, bool, 0444);
Arik Nemtsov5711cac2014-12-28 09:23:16 +02001798MODULE_PARM_DESC(lar_disable, "disable LAR functionality (default: N)");
1799
Joe Perches2ef00c52018-03-23 15:54:37 -07001800module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable, uint, 0644);
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001801MODULE_PARM_DESC(uapsd_disable,
1802 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
Matt Chen1504f482014-04-24 18:43:18 +08001803
Johannes Berg65de7e82012-04-17 07:36:30 -07001804/*
1805 * set bt_coex_active to true, uCode will do kill/defer
1806 * every time the priority line is asserted (BT is sending signals on the
1807 * priority line in the PCIx).
1808 * set bt_coex_active to false, uCode will ignore the BT activity and
1809 * perform the normal operation
1810 *
1811 * User might experience transmit issue on some platform due to WiFi/BT
1812 * co-exist problem. The possible behaviors are:
1813 * Able to scan and finding all the available AP
1814 * Not able to associate with any AP
1815 * On those platforms, WiFi communication can be restored by set
1816 * "bt_coex_active" module parameter to "false"
1817 *
1818 * default: bt_coex_active = true (BT_COEX_ENABLE)
1819 */
1820module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
Joe Perches2ef00c52018-03-23 15:54:37 -07001821 bool, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001822MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1823
Joe Perches2ef00c52018-03-23 15:54:37 -07001824module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001825MODULE_PARM_DESC(led_mode, "0=system default, "
1826 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1827
Joe Perches2ef00c52018-03-23 15:54:37 -07001828module_param_named(power_save, iwlwifi_mod_params.power_save, bool, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001829MODULE_PARM_DESC(power_save,
1830 "enable WiFi power management (default: disable)");
1831
Joe Perches2ef00c52018-03-23 15:54:37 -07001832module_param_named(power_level, iwlwifi_mod_params.power_level, int, 0444);
Johannes Berg65de7e82012-04-17 07:36:30 -07001833MODULE_PARM_DESC(power_level,
1834 "default power save level (range from 1 - 5, default: 1)");
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001835
Joe Perches2ef00c52018-03-23 15:54:37 -07001836module_param_named(fw_monitor, iwlwifi_mod_params.fw_monitor, bool, 0444);
Emmanuel Grumbach6d6a4752014-06-26 09:13:26 +03001837MODULE_PARM_DESC(fw_monitor,
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001838 "firmware monitor - to debug FW (default: false - needs lots of memory)");
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001839
Joe Perches2ef00c52018-03-23 15:54:37 -07001840module_param_named(d0i3_timeout, iwlwifi_mod_params.d0i3_timeout, uint, 0444);
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001841MODULE_PARM_DESC(d0i3_timeout, "Timeout to D0i3 entry when idle (ms)");
Andrei Otcheretianski0d0985a2016-02-29 13:25:48 +02001842
Joe Perches2ef00c52018-03-23 15:54:37 -07001843module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool, 0444);
Emmanuel Grumbach5c887752016-03-14 15:21:06 +02001844MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities (default: false)");