blob: be466a074c1df8ad351c2b1ce9142a13955fae47 [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
Ayala Beker5ed472262016-02-03 15:36:52 +020010 * Copyright(c) 2016 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
Ayala Beker5ed472262016-02-03 15:36:52 +020037 * Copyright(c) 2016 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 Berg6238b002012-04-02 15:04:33 +020079#include "iwl-fw.h"
80#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 Coelho0c4881c2016-12-13 09:56:07 +0200214 const char *name_pre = drv->trans->cfg->fw_name_pre;
Johannes Berg15854ef92012-03-05 11:24:50 -0800215 char tag[8];
216
217 if (first) {
Luca Coelho0c4881c2016-12-13 09:56:07 +0200218 drv->fw_index = drv->trans->cfg->ucode_api_max;
Johannes Berg965974a62012-03-06 13:30:38 -0800219 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800220 } else {
Johannes Berg965974a62012-03-06 13:30:38 -0800221 drv->fw_index--;
222 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800223 }
224
Luca Coelho0c4881c2016-12-13 09:56:07 +0200225 if (drv->fw_index < drv->trans->cfg->ucode_api_min) {
Johannes Berg965974a62012-03-06 13:30:38 -0800226 IWL_ERR(drv, "no suitable firmware found!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800227 return -ENOENT;
228 }
229
Liad Kaufman84b03122014-01-27 16:34:23 +0200230 snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s%s.ucode",
231 name_pre, tag);
Johannes Berg15854ef92012-03-05 11:24:50 -0800232
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300233 IWL_DEBUG_INFO(drv, "attempting to load firmware '%s'\n",
Johannes Berg965974a62012-03-06 13:30:38 -0800234 drv->firmware_name);
Johannes Berg15854ef92012-03-05 11:24:50 -0800235
Johannes Berg965974a62012-03-06 13:30:38 -0800236 return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +0200237 drv->trans->dev,
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300238 GFP_KERNEL, drv, iwl_req_fw_callback);
Johannes Berg15854ef92012-03-05 11:24:50 -0800239}
240
David Spinadel0cedacc2012-03-10 13:00:12 -0800241struct fw_img_parsing {
Sara Sharoneef187a2016-10-25 11:38:31 +0300242 struct fw_sec *sec;
David Spinadel0cedacc2012-03-10 13:00:12 -0800243 int sec_counter;
244};
245
David Spinadeled8c8362012-03-10 13:00:13 -0800246/*
247 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
248 */
249struct fw_sec_parsing {
250 __le32 offset;
251 const u8 data[];
252} __packed;
253
254/**
255 * struct iwl_tlv_calib_data - parse the default calib data from TLV
256 *
257 * @ucode_type: the uCode to which the following default calib relates.
258 * @calib: default calibrations.
259 */
260struct iwl_tlv_calib_data {
261 __le32 ucode_type;
Johannes Bergaa2b1772013-01-24 14:12:07 +0100262 struct iwl_tlv_calib_ctrl calib;
David Spinadeled8c8362012-03-10 13:00:13 -0800263} __packed;
264
David Spinadel0cedacc2012-03-10 13:00:12 -0800265struct iwl_firmware_pieces {
266 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -0800267
268 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
269 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300270
271 /* FW debug data parsed for driver usage */
272 struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200273 struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
274 size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
275 struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
276 size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
Johannes Berg2ed1e012016-10-20 09:41:14 +0200277 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv;
278 size_t n_dbg_mem_tlv;
Johannes Berg15854ef92012-03-05 11:24:50 -0800279};
280
David Spinadel0cedacc2012-03-10 13:00:12 -0800281/*
282 * These functions are just to extract uCode section data from the pieces
283 * structure.
284 */
285static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
286 enum iwl_ucode_type type,
287 int sec)
288{
289 return &pieces->img[type].sec[sec];
290}
291
Sara Sharond5465302017-01-30 12:34:32 +0200292static void alloc_sec_data(struct iwl_firmware_pieces *pieces,
293 enum iwl_ucode_type type,
294 int sec)
295{
296 struct fw_img_parsing *img = &pieces->img[type];
297 struct fw_sec *sec_memory;
298 int size = sec + 1;
299 size_t alloc_size = sizeof(*img->sec) * size;
300
301 if (img->sec && img->sec_counter >= size)
302 return;
303
304 sec_memory = krealloc(img->sec, alloc_size, GFP_KERNEL);
305 if (!sec_memory)
306 return;
307
308 img->sec = sec_memory;
309 img->sec_counter = size;
310}
311
David Spinadel0cedacc2012-03-10 13:00:12 -0800312static void set_sec_data(struct iwl_firmware_pieces *pieces,
313 enum iwl_ucode_type type,
314 int sec,
315 const void *data)
316{
Sara Sharond5465302017-01-30 12:34:32 +0200317 alloc_sec_data(pieces, type, sec);
318
David Spinadel0cedacc2012-03-10 13:00:12 -0800319 pieces->img[type].sec[sec].data = data;
320}
321
322static void set_sec_size(struct iwl_firmware_pieces *pieces,
323 enum iwl_ucode_type type,
324 int sec,
325 size_t size)
326{
Sara Sharond5465302017-01-30 12:34:32 +0200327 alloc_sec_data(pieces, type, sec);
328
David Spinadel0cedacc2012-03-10 13:00:12 -0800329 pieces->img[type].sec[sec].size = size;
330}
331
332static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
333 enum iwl_ucode_type type,
334 int sec)
335{
336 return pieces->img[type].sec[sec].size;
337}
338
339static void set_sec_offset(struct iwl_firmware_pieces *pieces,
340 enum iwl_ucode_type type,
341 int sec,
342 u32 offset)
343{
Sara Sharond5465302017-01-30 12:34:32 +0200344 alloc_sec_data(pieces, type, sec);
345
David Spinadel0cedacc2012-03-10 13:00:12 -0800346 pieces->img[type].sec[sec].offset = offset;
347}
348
Max Stepanove36e5432013-08-27 19:56:13 +0300349static int iwl_store_cscheme(struct iwl_fw *fw, const u8 *data, const u32 len)
350{
351 int i, j;
352 struct iwl_fw_cscheme_list *l = (struct iwl_fw_cscheme_list *)data;
353 struct iwl_fw_cipher_scheme *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300354
355 if (len < sizeof(*l) ||
356 len < sizeof(l->size) + l->size * sizeof(l->cs[0]))
357 return -EINVAL;
358
359 for (i = 0, j = 0; i < IWL_UCODE_MAX_CS && i < l->size; i++) {
360 fwcs = &l->cs[j];
Max Stepanove36e5432013-08-27 19:56:13 +0300361
362 /* we skip schemes with zero cipher suite selector */
Johannes Berg24ddddf2016-06-21 12:34:36 +0200363 if (!fwcs->cipher)
Max Stepanove36e5432013-08-27 19:56:13 +0300364 continue;
365
Johannes Berg24ddddf2016-06-21 12:34:36 +0200366 fw->cs[j++] = *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300367 }
368
369 return 0;
370}
371
Ayala Beker5ed472262016-02-03 15:36:52 +0200372static void iwl_store_gscan_capa(struct iwl_fw *fw, const u8 *data,
373 const u32 len)
Avraham Stern17564dd2015-03-22 13:11:01 +0200374{
375 struct iwl_fw_gscan_capabilities *fw_capa = (void *)data;
376 struct iwl_gscan_capabilities *capa = &fw->gscan_capa;
377
Avraham Stern17564dd2015-03-22 13:11:01 +0200378 capa->max_scan_cache_size = le32_to_cpu(fw_capa->max_scan_cache_size);
379 capa->max_scan_buckets = le32_to_cpu(fw_capa->max_scan_buckets);
380 capa->max_ap_cache_per_scan =
381 le32_to_cpu(fw_capa->max_ap_cache_per_scan);
382 capa->max_rssi_sample_size = le32_to_cpu(fw_capa->max_rssi_sample_size);
383 capa->max_scan_reporting_threshold =
384 le32_to_cpu(fw_capa->max_scan_reporting_threshold);
385 capa->max_hotlist_aps = le32_to_cpu(fw_capa->max_hotlist_aps);
386 capa->max_significant_change_aps =
387 le32_to_cpu(fw_capa->max_significant_change_aps);
388 capa->max_bssid_history_entries =
389 le32_to_cpu(fw_capa->max_bssid_history_entries);
Ayala Beker5ed472262016-02-03 15:36:52 +0200390 capa->max_hotlist_ssids = le32_to_cpu(fw_capa->max_hotlist_ssids);
391 capa->max_number_epno_networks =
392 le32_to_cpu(fw_capa->max_number_epno_networks);
393 capa->max_number_epno_networks_by_ssid =
394 le32_to_cpu(fw_capa->max_number_epno_networks_by_ssid);
395 capa->max_number_of_white_listed_ssid =
396 le32_to_cpu(fw_capa->max_number_of_white_listed_ssid);
397 capa->max_number_of_black_listed_ssid =
398 le32_to_cpu(fw_capa->max_number_of_black_listed_ssid);
Avraham Stern17564dd2015-03-22 13:11:01 +0200399}
400
David Spinadeled8c8362012-03-10 13:00:13 -0800401/*
402 * Gets uCode section from tlv.
403 */
404static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
405 const void *data, enum iwl_ucode_type type,
406 int size)
407{
408 struct fw_img_parsing *img;
409 struct fw_sec *sec;
410 struct fw_sec_parsing *sec_parse;
Sara Sharoneef187a2016-10-25 11:38:31 +0300411 size_t alloc_size;
David Spinadeled8c8362012-03-10 13:00:13 -0800412
413 if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
414 return -1;
415
416 sec_parse = (struct fw_sec_parsing *)data;
417
418 img = &pieces->img[type];
Sara Sharoneef187a2016-10-25 11:38:31 +0300419
420 alloc_size = sizeof(*img->sec) * (img->sec_counter + 1);
421 sec = krealloc(img->sec, alloc_size, GFP_KERNEL);
422 if (!sec)
423 return -ENOMEM;
424 img->sec = sec;
425
David Spinadeled8c8362012-03-10 13:00:13 -0800426 sec = &img->sec[img->sec_counter];
427
428 sec->offset = le32_to_cpu(sec_parse->offset);
429 sec->data = sec_parse->data;
David Spinadel1176f432012-03-13 14:32:48 +0200430 sec->size = size - sizeof(sec_parse->offset);
David Spinadeled8c8362012-03-10 13:00:13 -0800431
432 ++img->sec_counter;
433
434 return 0;
435}
436
437static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
438{
439 struct iwl_tlv_calib_data *def_calib =
440 (struct iwl_tlv_calib_data *)data;
441 u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
442 if (ucode_type >= IWL_UCODE_TYPE_MAX) {
443 IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
444 ucode_type);
445 return -EINVAL;
446 }
Johannes Bergaa2b1772013-01-24 14:12:07 +0100447 drv->fw.default_calib[ucode_type].flow_trigger =
448 def_calib->calib.flow_trigger;
449 drv->fw.default_calib[ucode_type].event_trigger =
450 def_calib->calib.event_trigger;
451
David Spinadeled8c8362012-03-10 13:00:13 -0800452 return 0;
453}
454
Eran Hararya2978b12014-02-20 11:00:01 +0200455static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
456 struct iwl_ucode_capabilities *capa)
457{
458 const struct iwl_ucode_api *ucode_api = (void *)data;
459 u32 api_index = le32_to_cpu(ucode_api->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200460 u32 api_flags = le32_to_cpu(ucode_api->api_flags);
461 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200462
Johannes Bergd3f555f42015-09-16 12:21:32 +0200463 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100464 IWL_ERR(drv,
465 "api flags index %d larger than supported by driver\n",
466 api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200467 /* don't return an error so we can load FW that has more bits */
468 return 0;
Eran Hararya2978b12014-02-20 11:00:01 +0200469 }
470
Johannes Berg859d9142015-06-01 17:11:11 +0200471 for (i = 0; i < 32; i++) {
472 if (api_flags & BIT(i))
473 __set_bit(i + 32 * api_index, capa->_api);
474 }
Eran Hararya2978b12014-02-20 11:00:01 +0200475
476 return 0;
477}
478
479static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
480 struct iwl_ucode_capabilities *capa)
481{
482 const struct iwl_ucode_capa *ucode_capa = (void *)data;
483 u32 api_index = le32_to_cpu(ucode_capa->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200484 u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
485 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200486
Johannes Bergd3f555f42015-09-16 12:21:32 +0200487 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100488 IWL_ERR(drv,
489 "capa flags index %d larger than supported by driver\n",
490 api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200491 /* don't return an error so we can load FW that has more bits */
492 return 0;
Eran Hararya2978b12014-02-20 11:00:01 +0200493 }
494
Johannes Berg859d9142015-06-01 17:11:11 +0200495 for (i = 0; i < 32; i++) {
496 if (api_flags & BIT(i))
497 __set_bit(i + 32 * api_index, capa->_capa);
498 }
Eran Hararya2978b12014-02-20 11:00:01 +0200499
500 return 0;
501}
502
Johannes Berg965974a62012-03-06 13:30:38 -0800503static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
David Spinadel0cedacc2012-03-10 13:00:12 -0800504 const struct firmware *ucode_raw,
505 struct iwl_firmware_pieces *pieces)
Johannes Berg15854ef92012-03-05 11:24:50 -0800506{
507 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
508 u32 api_ver, hdr_size, build;
509 char buildstr[25];
510 const u8 *src;
511
Johannes Berg965974a62012-03-06 13:30:38 -0800512 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
513 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -0800514
515 switch (api_ver) {
516 default:
517 hdr_size = 28;
518 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800519 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800520 return -EINVAL;
521 }
522 build = le32_to_cpu(ucode->u.v2.build);
David Spinadel0cedacc2012-03-10 13:00:12 -0800523 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
524 le32_to_cpu(ucode->u.v2.inst_size));
525 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
526 le32_to_cpu(ucode->u.v2.data_size));
527 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
528 le32_to_cpu(ucode->u.v2.init_size));
529 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
530 le32_to_cpu(ucode->u.v2.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800531 src = ucode->u.v2.data;
532 break;
533 case 0:
534 case 1:
535 case 2:
536 hdr_size = 24;
537 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800538 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800539 return -EINVAL;
540 }
541 build = 0;
David Spinadel0cedacc2012-03-10 13:00:12 -0800542 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
543 le32_to_cpu(ucode->u.v1.inst_size));
544 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
545 le32_to_cpu(ucode->u.v1.data_size));
546 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
547 le32_to_cpu(ucode->u.v1.init_size));
548 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
549 le32_to_cpu(ucode->u.v1.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800550 src = ucode->u.v1.data;
551 break;
552 }
553
554 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300555 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800556 else
557 buildstr[0] = '\0';
558
Johannes Berg965974a62012-03-06 13:30:38 -0800559 snprintf(drv->fw.fw_version,
560 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800561 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800562 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
563 IWL_UCODE_MINOR(drv->fw.ucode_ver),
564 IWL_UCODE_API(drv->fw.ucode_ver),
565 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800566 buildstr);
567
568 /* Verify size of file vs. image size info in file's header */
David Spinadel0cedacc2012-03-10 13:00:12 -0800569
570 if (ucode_raw->size != hdr_size +
571 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
572 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
573 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
574 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800575
Johannes Berg965974a62012-03-06 13:30:38 -0800576 IWL_ERR(drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800577 "uCode file size %d does not match expected size\n",
578 (int)ucode_raw->size);
579 return -EINVAL;
580 }
581
Johannes Berg15854ef92012-03-05 11:24:50 -0800582
David Spinadel0cedacc2012-03-10 13:00:12 -0800583 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
584 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
585 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
586 IWLAGN_RTC_INST_LOWER_BOUND);
587 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
588 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
589 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
590 IWLAGN_RTC_DATA_LOWER_BOUND);
591 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
592 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
593 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
594 IWLAGN_RTC_INST_LOWER_BOUND);
595 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
596 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
597 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
598 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800599 return 0;
600}
601
Johannes Berg965974a62012-03-06 13:30:38 -0800602static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800603 const struct firmware *ucode_raw,
David Spinadel0cedacc2012-03-10 13:00:12 -0800604 struct iwl_firmware_pieces *pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300605 struct iwl_ucode_capabilities *capa,
606 bool *usniffer_images)
Johannes Berg15854ef92012-03-05 11:24:50 -0800607{
608 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
609 struct iwl_ucode_tlv *tlv;
610 size_t len = ucode_raw->size;
611 const u8 *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800612 u32 tlv_len;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300613 u32 usniffer_img;
Johannes Berg15854ef92012-03-05 11:24:50 -0800614 enum iwl_ucode_tlv_type tlv_type;
615 const u8 *tlv_data;
616 char buildstr[25];
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300617 u32 build, paging_mem_size;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300618 int num_of_cpus;
Eran Harary61df7502014-12-01 17:40:37 +0200619 bool usniffer_req = false;
Avraham Stern17564dd2015-03-22 13:11:01 +0200620 bool gscan_capa = false;
Johannes Berg15854ef92012-03-05 11:24:50 -0800621
622 if (len < sizeof(*ucode)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800623 IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
Johannes Berg15854ef92012-03-05 11:24:50 -0800624 return -EINVAL;
625 }
626
627 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800628 IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800629 le32_to_cpu(ucode->magic));
630 return -EINVAL;
631 }
632
Johannes Berg965974a62012-03-06 13:30:38 -0800633 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
Emmanuel Grumbach06ddbf52014-06-02 08:34:53 +0300634 memcpy(drv->fw.human_readable, ucode->human_readable,
635 sizeof(drv->fw.human_readable));
Johannes Berg15854ef92012-03-05 11:24:50 -0800636 build = le32_to_cpu(ucode->build);
637
638 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300639 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800640 else
641 buildstr[0] = '\0';
642
Johannes Berg965974a62012-03-06 13:30:38 -0800643 snprintf(drv->fw.fw_version,
644 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800645 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800646 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
647 IWL_UCODE_MINOR(drv->fw.ucode_ver),
648 IWL_UCODE_API(drv->fw.ucode_ver),
649 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800650 buildstr);
651
652 data = ucode->data;
653
654 len -= sizeof(*ucode);
655
656 while (len >= sizeof(*tlv)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800657 len -= sizeof(*tlv);
658 tlv = (void *)data;
659
660 tlv_len = le32_to_cpu(tlv->length);
Johannes Berg0479c192012-03-09 09:16:35 +0100661 tlv_type = le32_to_cpu(tlv->type);
Johannes Berg15854ef92012-03-05 11:24:50 -0800662 tlv_data = tlv->data;
663
664 if (len < tlv_len) {
Johannes Berg965974a62012-03-06 13:30:38 -0800665 IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800666 len, tlv_len);
667 return -EINVAL;
668 }
669 len -= ALIGN(tlv_len, 4);
670 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
671
Johannes Berg15854ef92012-03-05 11:24:50 -0800672 switch (tlv_type) {
673 case IWL_UCODE_TLV_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800674 set_sec_data(pieces, IWL_UCODE_REGULAR,
675 IWL_UCODE_SECTION_INST, tlv_data);
676 set_sec_size(pieces, IWL_UCODE_REGULAR,
677 IWL_UCODE_SECTION_INST, tlv_len);
678 set_sec_offset(pieces, IWL_UCODE_REGULAR,
679 IWL_UCODE_SECTION_INST,
680 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800681 break;
682 case IWL_UCODE_TLV_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800683 set_sec_data(pieces, IWL_UCODE_REGULAR,
684 IWL_UCODE_SECTION_DATA, tlv_data);
685 set_sec_size(pieces, IWL_UCODE_REGULAR,
686 IWL_UCODE_SECTION_DATA, tlv_len);
687 set_sec_offset(pieces, IWL_UCODE_REGULAR,
688 IWL_UCODE_SECTION_DATA,
689 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800690 break;
691 case IWL_UCODE_TLV_INIT:
David Spinadel0cedacc2012-03-10 13:00:12 -0800692 set_sec_data(pieces, IWL_UCODE_INIT,
693 IWL_UCODE_SECTION_INST, tlv_data);
694 set_sec_size(pieces, IWL_UCODE_INIT,
695 IWL_UCODE_SECTION_INST, tlv_len);
696 set_sec_offset(pieces, IWL_UCODE_INIT,
697 IWL_UCODE_SECTION_INST,
698 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800699 break;
700 case IWL_UCODE_TLV_INIT_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800701 set_sec_data(pieces, IWL_UCODE_INIT,
702 IWL_UCODE_SECTION_DATA, tlv_data);
703 set_sec_size(pieces, IWL_UCODE_INIT,
704 IWL_UCODE_SECTION_DATA, tlv_len);
705 set_sec_offset(pieces, IWL_UCODE_INIT,
706 IWL_UCODE_SECTION_DATA,
707 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800708 break;
709 case IWL_UCODE_TLV_BOOT:
Johannes Berg965974a62012-03-06 13:30:38 -0800710 IWL_ERR(drv, "Found unexpected BOOT ucode\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800711 break;
712 case IWL_UCODE_TLV_PROBE_MAX_LEN:
713 if (tlv_len != sizeof(u32))
714 goto invalid_tlv_len;
715 capa->max_probe_length =
716 le32_to_cpup((__le32 *)tlv_data);
717 break;
718 case IWL_UCODE_TLV_PAN:
719 if (tlv_len)
720 goto invalid_tlv_len;
721 capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
722 break;
723 case IWL_UCODE_TLV_FLAGS:
724 /* must be at least one u32 */
725 if (tlv_len < sizeof(u32))
726 goto invalid_tlv_len;
727 /* and a proper number of u32s */
728 if (tlv_len % sizeof(u32))
729 goto invalid_tlv_len;
730 /*
731 * This driver only reads the first u32 as
732 * right now no more features are defined,
733 * if that changes then either the driver
734 * will not work with the new firmware, or
735 * it'll not take advantage of new features.
736 */
737 capa->flags = le32_to_cpup((__le32 *)tlv_data);
738 break;
Eran Hararya2978b12014-02-20 11:00:01 +0200739 case IWL_UCODE_TLV_API_CHANGES_SET:
740 if (tlv_len != sizeof(struct iwl_ucode_api))
741 goto invalid_tlv_len;
742 if (iwl_set_ucode_api_flags(drv, tlv_data, capa))
743 goto tlv_error;
744 break;
745 case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
746 if (tlv_len != sizeof(struct iwl_ucode_capa))
747 goto invalid_tlv_len;
748 if (iwl_set_ucode_capabilities(drv, tlv_data, capa))
749 goto tlv_error;
750 break;
Johannes Berg15854ef92012-03-05 11:24:50 -0800751 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
752 if (tlv_len != sizeof(u32))
753 goto invalid_tlv_len;
754 pieces->init_evtlog_ptr =
755 le32_to_cpup((__le32 *)tlv_data);
756 break;
757 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
758 if (tlv_len != sizeof(u32))
759 goto invalid_tlv_len;
760 pieces->init_evtlog_size =
761 le32_to_cpup((__le32 *)tlv_data);
762 break;
763 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
764 if (tlv_len != sizeof(u32))
765 goto invalid_tlv_len;
766 pieces->init_errlog_ptr =
767 le32_to_cpup((__le32 *)tlv_data);
768 break;
769 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
770 if (tlv_len != sizeof(u32))
771 goto invalid_tlv_len;
772 pieces->inst_evtlog_ptr =
773 le32_to_cpup((__le32 *)tlv_data);
774 break;
775 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
776 if (tlv_len != sizeof(u32))
777 goto invalid_tlv_len;
778 pieces->inst_evtlog_size =
779 le32_to_cpup((__le32 *)tlv_data);
780 break;
781 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
782 if (tlv_len != sizeof(u32))
783 goto invalid_tlv_len;
784 pieces->inst_errlog_ptr =
785 le32_to_cpup((__le32 *)tlv_data);
786 break;
787 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
788 if (tlv_len)
789 goto invalid_tlv_len;
Johannes Berg965974a62012-03-06 13:30:38 -0800790 drv->fw.enhance_sensitivity_table = true;
Johannes Berg15854ef92012-03-05 11:24:50 -0800791 break;
792 case IWL_UCODE_TLV_WOWLAN_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800793 set_sec_data(pieces, IWL_UCODE_WOWLAN,
794 IWL_UCODE_SECTION_INST, tlv_data);
795 set_sec_size(pieces, IWL_UCODE_WOWLAN,
796 IWL_UCODE_SECTION_INST, tlv_len);
797 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
798 IWL_UCODE_SECTION_INST,
799 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800800 break;
801 case IWL_UCODE_TLV_WOWLAN_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800802 set_sec_data(pieces, IWL_UCODE_WOWLAN,
803 IWL_UCODE_SECTION_DATA, tlv_data);
804 set_sec_size(pieces, IWL_UCODE_WOWLAN,
805 IWL_UCODE_SECTION_DATA, tlv_len);
806 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
807 IWL_UCODE_SECTION_DATA,
808 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800809 break;
810 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
811 if (tlv_len != sizeof(u32))
812 goto invalid_tlv_len;
813 capa->standard_phy_calibration_size =
814 le32_to_cpup((__le32 *)tlv_data);
815 break;
David Spinadeled8c8362012-03-10 13:00:13 -0800816 case IWL_UCODE_TLV_SEC_RT:
817 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
818 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200819 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800820 break;
821 case IWL_UCODE_TLV_SEC_INIT:
822 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
823 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200824 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800825 break;
826 case IWL_UCODE_TLV_SEC_WOWLAN:
827 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
828 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200829 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800830 break;
831 case IWL_UCODE_TLV_DEF_CALIB:
832 if (tlv_len != sizeof(struct iwl_tlv_calib_data))
833 goto invalid_tlv_len;
834 if (iwl_set_default_calib(drv, tlv_data))
835 goto tlv_error;
836 break;
837 case IWL_UCODE_TLV_PHY_SKU:
838 if (tlv_len != sizeof(u32))
839 goto invalid_tlv_len;
840 drv->fw.phy_config = le32_to_cpup((__le32 *)tlv_data);
Eran Harary77db0a32014-02-04 14:21:38 +0200841 drv->fw.valid_tx_ant = (drv->fw.phy_config &
842 FW_PHY_CFG_TX_CHAIN) >>
843 FW_PHY_CFG_TX_CHAIN_POS;
844 drv->fw.valid_rx_ant = (drv->fw.phy_config &
845 FW_PHY_CFG_RX_CHAIN) >>
846 FW_PHY_CFG_RX_CHAIN_POS;
David Spinadeled8c8362012-03-10 13:00:13 -0800847 break;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300848 case IWL_UCODE_TLV_SECURE_SEC_RT:
849 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
850 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200851 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300852 break;
853 case IWL_UCODE_TLV_SECURE_SEC_INIT:
854 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
855 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200856 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300857 break;
858 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
859 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
860 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200861 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300862 break;
863 case IWL_UCODE_TLV_NUM_OF_CPU:
864 if (tlv_len != sizeof(u32))
865 goto invalid_tlv_len;
866 num_of_cpus =
867 le32_to_cpup((__le32 *)tlv_data);
868
869 if (num_of_cpus == 2) {
870 drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
871 true;
872 drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
873 true;
874 drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
875 true;
876 } else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
877 IWL_ERR(drv, "Driver support upto 2 CPUs\n");
878 return -EINVAL;
879 }
880 break;
Max Stepanove36e5432013-08-27 19:56:13 +0300881 case IWL_UCODE_TLV_CSCHEME:
882 if (iwl_store_cscheme(&drv->fw, tlv_data, tlv_len))
883 goto invalid_tlv_len;
884 break;
David Spinadel762533b2014-06-05 11:20:43 +0300885 case IWL_UCODE_TLV_N_SCAN_CHANNELS:
886 if (tlv_len != sizeof(u32))
887 goto invalid_tlv_len;
888 capa->n_scan_channels =
889 le32_to_cpup((__le32 *)tlv_data);
890 break;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200891 case IWL_UCODE_TLV_FW_VERSION: {
892 __le32 *ptr = (void *)tlv_data;
893 u32 major, minor;
894 u8 local_comp;
895
896 if (tlv_len != sizeof(u32) * 3)
897 goto invalid_tlv_len;
898
899 major = le32_to_cpup(ptr++);
900 minor = le32_to_cpup(ptr++);
901 local_comp = le32_to_cpup(ptr);
902
903 snprintf(drv->fw.fw_version,
904 sizeof(drv->fw.fw_version), "%u.%u.%u",
905 major, minor, local_comp);
906 break;
907 }
Liad Kaufman490fefe2014-09-16 15:06:54 +0300908 case IWL_UCODE_TLV_FW_DBG_DEST: {
909 struct iwl_fw_dbg_dest_tlv *dest = (void *)tlv_data;
910
911 if (pieces->dbg_dest_tlv) {
912 IWL_ERR(drv,
913 "dbg destination ignored, already exists\n");
914 break;
915 }
916
917 pieces->dbg_dest_tlv = dest;
918 IWL_INFO(drv, "Found debug destination: %s\n",
919 get_fw_dbg_mode_string(dest->monitor_mode));
920
921 drv->fw.dbg_dest_reg_num =
922 tlv_len - offsetof(struct iwl_fw_dbg_dest_tlv,
923 reg_ops);
924 drv->fw.dbg_dest_reg_num /=
925 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]);
926
927 break;
928 }
929 case IWL_UCODE_TLV_FW_DBG_CONF: {
930 struct iwl_fw_dbg_conf_tlv *conf = (void *)tlv_data;
931
932 if (!pieces->dbg_dest_tlv) {
933 IWL_ERR(drv,
934 "Ignore dbg config %d - no destination configured\n",
935 conf->id);
936 break;
937 }
938
939 if (conf->id >= ARRAY_SIZE(drv->fw.dbg_conf_tlv)) {
940 IWL_ERR(drv,
941 "Skip unknown configuration: %d\n",
942 conf->id);
943 break;
944 }
945
946 if (pieces->dbg_conf_tlv[conf->id]) {
947 IWL_ERR(drv,
948 "Ignore duplicate dbg config %d\n",
949 conf->id);
950 break;
951 }
952
Eran Harary61df7502014-12-01 17:40:37 +0200953 if (conf->usniffer)
954 usniffer_req = true;
955
Liad Kaufman490fefe2014-09-16 15:06:54 +0300956 IWL_INFO(drv, "Found debug configuration: %d\n",
957 conf->id);
958
959 pieces->dbg_conf_tlv[conf->id] = conf;
960 pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
961 break;
962 }
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200963 case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
964 struct iwl_fw_dbg_trigger_tlv *trigger =
965 (void *)tlv_data;
966 u32 trigger_id = le32_to_cpu(trigger->id);
967
968 if (trigger_id >= ARRAY_SIZE(drv->fw.dbg_trigger_tlv)) {
969 IWL_ERR(drv,
970 "Skip unknown trigger: %u\n",
971 trigger->id);
972 break;
973 }
974
975 if (pieces->dbg_trigger_tlv[trigger_id]) {
976 IWL_ERR(drv,
977 "Ignore duplicate dbg trigger %u\n",
978 trigger->id);
979 break;
980 }
981
982 IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
983
984 pieces->dbg_trigger_tlv[trigger_id] = trigger;
985 pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
986 break;
987 }
Eran Harary61df7502014-12-01 17:40:37 +0200988 case IWL_UCODE_TLV_SEC_RT_USNIFFER:
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300989 *usniffer_images = true;
Eran Harary61df7502014-12-01 17:40:37 +0200990 iwl_store_ucode_sec(pieces, tlv_data,
991 IWL_UCODE_REGULAR_USNIFFER,
992 tlv_len);
993 break;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300994 case IWL_UCODE_TLV_PAGING:
995 if (tlv_len != sizeof(u32))
996 goto invalid_tlv_len;
997 paging_mem_size = le32_to_cpup((__le32 *)tlv_data);
998
999 IWL_DEBUG_FW(drv,
1000 "Paging: paging enabled (size = %u bytes)\n",
1001 paging_mem_size);
1002
1003 if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
1004 IWL_ERR(drv,
1005 "Paging: driver supports up to %lu bytes for paging image\n",
1006 MAX_PAGING_IMAGE_SIZE);
1007 return -EINVAL;
1008 }
1009
1010 if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
1011 IWL_ERR(drv,
1012 "Paging: image isn't multiple %lu\n",
1013 FW_PAGING_SIZE);
1014 return -EINVAL;
1015 }
1016
1017 drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
1018 paging_mem_size;
1019 usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
1020 drv->fw.img[usniffer_img].paging_mem_size =
1021 paging_mem_size;
1022 break;
Liad Kaufmanb4821762014-10-19 16:58:15 +02001023 case IWL_UCODE_TLV_SDIO_ADMA_ADDR:
1024 if (tlv_len != sizeof(u32))
1025 goto invalid_tlv_len;
1026 drv->fw.sdio_adma_addr =
1027 le32_to_cpup((__le32 *)tlv_data);
1028 break;
Avraham Stern17564dd2015-03-22 13:11:01 +02001029 case IWL_UCODE_TLV_FW_GSCAN_CAPA:
Ayala Beker5ed472262016-02-03 15:36:52 +02001030 /*
1031 * Don't return an error in case of a shorter tlv_len
1032 * to enable loading of FW that has an old format
1033 * of GSCAN capabilities TLV.
1034 */
1035 if (tlv_len < sizeof(struct iwl_fw_gscan_capabilities))
1036 break;
1037
1038 iwl_store_gscan_capa(&drv->fw, tlv_data, tlv_len);
Avraham Stern17564dd2015-03-22 13:11:01 +02001039 gscan_capa = true;
1040 break;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001041 case IWL_UCODE_TLV_FW_MEM_SEG: {
1042 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1043 (void *)tlv_data;
1044 u32 type;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001045 size_t size;
1046 struct iwl_fw_dbg_mem_seg_tlv *n;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001047
1048 if (tlv_len != (sizeof(*dbg_mem)))
1049 goto invalid_tlv_len;
1050
1051 type = le32_to_cpu(dbg_mem->data_type);
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001052
1053 IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1054 dbg_mem->data_type);
1055
Johannes Berg5bdaa0e2016-10-20 10:01:43 +02001056 switch (type & FW_DBG_MEM_TYPE_MASK) {
1057 case FW_DBG_MEM_TYPE_REGULAR:
1058 case FW_DBG_MEM_TYPE_PRPH:
1059 /* we know how to handle these */
1060 break;
1061 default:
1062 IWL_ERR(drv,
1063 "Found debug memory segment with invalid type: 0x%x\n",
1064 type);
1065 return -EINVAL;
1066 }
1067
Johannes Berg2ed1e012016-10-20 09:41:14 +02001068 size = sizeof(*pieces->dbg_mem_tlv) *
1069 (pieces->n_dbg_mem_tlv + 1);
1070 n = krealloc(pieces->dbg_mem_tlv, size, GFP_KERNEL);
1071 if (!n)
1072 return -ENOMEM;
1073 pieces->dbg_mem_tlv = n;
1074 pieces->dbg_mem_tlv[pieces->n_dbg_mem_tlv] = *dbg_mem;
1075 pieces->n_dbg_mem_tlv++;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001076 break;
1077 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001078 default:
Johannes Berg965974a62012-03-06 13:30:38 -08001079 IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
Johannes Berg15854ef92012-03-05 11:24:50 -08001080 break;
1081 }
1082 }
1083
Golan Ben-Ami3d2d4422016-02-23 10:34:48 +02001084 if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1085 usniffer_req && !*usniffer_images) {
Eran Harary61df7502014-12-01 17:40:37 +02001086 IWL_ERR(drv,
1087 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1088 return -EINVAL;
1089 }
1090
Johannes Berg15854ef92012-03-05 11:24:50 -08001091 if (len) {
Johannes Berg965974a62012-03-06 13:30:38 -08001092 IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1093 iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001094 return -EINVAL;
1095 }
1096
Ayala Bekera0b09f12016-02-03 15:36:52 +02001097 /*
1098 * If ucode advertises that it supports GSCAN but GSCAN
1099 * capabilities TLV is not present, or if it has an old format,
1100 * warn and continue without GSCAN.
1101 */
1102 if (fw_has_capa(capa, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT) &&
1103 !gscan_capa) {
1104 IWL_DEBUG_INFO(drv,
1105 "GSCAN is supported but capabilities TLV is unavailable\n");
Avraham Stern17564dd2015-03-22 13:11:01 +02001106 __clear_bit((__force long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT,
1107 capa->_capa);
Ayala Bekera0b09f12016-02-03 15:36:52 +02001108 }
Avraham Stern17564dd2015-03-22 13:11:01 +02001109
Johannes Berg15854ef92012-03-05 11:24:50 -08001110 return 0;
1111
1112 invalid_tlv_len:
Johannes Berg965974a62012-03-06 13:30:38 -08001113 IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
David Spinadeled8c8362012-03-10 13:00:13 -08001114 tlv_error:
Johannes Berg965974a62012-03-06 13:30:38 -08001115 iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001116
1117 return -EINVAL;
1118}
1119
Johannes Berg75813bd2012-05-16 22:49:49 +02001120static int iwl_alloc_ucode(struct iwl_drv *drv,
1121 struct iwl_firmware_pieces *pieces,
1122 enum iwl_ucode_type type)
David Spinadel6dfa8d02012-03-10 13:00:14 -08001123{
1124 int i;
Sara Sharoneef187a2016-10-25 11:38:31 +03001125 struct fw_desc *sec;
1126
1127 sec = kcalloc(pieces->img[type].sec_counter, sizeof(*sec), GFP_KERNEL);
1128 if (!sec)
1129 return -ENOMEM;
1130 drv->fw.img[type].sec = sec;
1131 drv->fw.img[type].num_sec = pieces->img[type].sec_counter;
1132
1133 for (i = 0; i < pieces->img[type].sec_counter; i++)
1134 if (iwl_alloc_fw_desc(drv, &sec[i], get_sec(pieces, type, i)))
Johannes Berg75813bd2012-05-16 22:49:49 +02001135 return -ENOMEM;
Sara Sharoneef187a2016-10-25 11:38:31 +03001136
David Spinadel6dfa8d02012-03-10 13:00:14 -08001137 return 0;
1138}
1139
1140static int validate_sec_sizes(struct iwl_drv *drv,
1141 struct iwl_firmware_pieces *pieces,
1142 const struct iwl_cfg *cfg)
1143{
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001144 IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001145 get_sec_size(pieces, IWL_UCODE_REGULAR,
1146 IWL_UCODE_SECTION_INST));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001147 IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001148 get_sec_size(pieces, IWL_UCODE_REGULAR,
1149 IWL_UCODE_SECTION_DATA));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001150 IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001151 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001152 IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %zd\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001153 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1154
1155 /* Verify that uCode images will fit in card's SRAM. */
1156 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001157 cfg->max_inst_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001158 IWL_ERR(drv, "uCode instr len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001159 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001160 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001161 return -1;
1162 }
1163
1164 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001165 cfg->max_data_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001166 IWL_ERR(drv, "uCode data len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001167 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001168 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001169 return -1;
1170 }
1171
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001172 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1173 cfg->max_inst_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001174 IWL_ERR(drv, "uCode init instr len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001175 get_sec_size(pieces, IWL_UCODE_INIT,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001176 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001177 return -1;
1178 }
1179
1180 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001181 cfg->max_data_size) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001182 IWL_ERR(drv, "uCode init data len %zd too large to fit in\n",
David Spinadel6dfa8d02012-03-10 13:00:14 -08001183 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001184 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001185 return -1;
1186 }
1187 return 0;
1188}
1189
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001190static struct iwl_op_mode *
1191_iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1192{
1193 const struct iwl_op_mode_ops *ops = op->ops;
1194 struct dentry *dbgfs_dir = NULL;
1195 struct iwl_op_mode *op_mode = NULL;
1196
1197#ifdef CONFIG_IWLWIFI_DEBUGFS
1198 drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1199 drv->dbgfs_drv);
1200 if (!drv->dbgfs_op_mode) {
1201 IWL_ERR(drv,
1202 "failed to create opmode debugfs directory\n");
1203 return op_mode;
1204 }
1205 dbgfs_dir = drv->dbgfs_op_mode;
1206#endif
1207
Luca Coelho0c4881c2016-12-13 09:56:07 +02001208 op_mode = ops->start(drv->trans, drv->trans->cfg, &drv->fw, dbgfs_dir);
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001209
1210#ifdef CONFIG_IWLWIFI_DEBUGFS
1211 if (!op_mode) {
1212 debugfs_remove_recursive(drv->dbgfs_op_mode);
1213 drv->dbgfs_op_mode = NULL;
1214 }
1215#endif
1216
1217 return op_mode;
1218}
1219
1220static void _iwl_op_mode_stop(struct iwl_drv *drv)
1221{
1222 /* op_mode can be NULL if its start failed */
1223 if (drv->op_mode) {
1224 iwl_op_mode_stop(drv->op_mode);
1225 drv->op_mode = NULL;
1226
1227#ifdef CONFIG_IWLWIFI_DEBUGFS
1228 debugfs_remove_recursive(drv->dbgfs_op_mode);
1229 drv->dbgfs_op_mode = NULL;
1230#endif
1231 }
1232}
1233
Johannes Berg15854ef92012-03-05 11:24:50 -08001234/**
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001235 * iwl_req_fw_callback - callback when firmware was loaded
Johannes Berg15854ef92012-03-05 11:24:50 -08001236 *
1237 * If loaded successfully, copies the firmware into buffers
1238 * for the card to fetch (via DMA).
1239 */
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001240static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
Johannes Berg15854ef92012-03-05 11:24:50 -08001241{
Johannes Berg965974a62012-03-06 13:30:38 -08001242 struct iwl_drv *drv = context;
Johannes Berg965974a62012-03-06 13:30:38 -08001243 struct iwl_fw *fw = &drv->fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001244 struct iwl_ucode_header *ucode;
Don Frycc5f7e32012-05-16 22:54:27 +02001245 struct iwlwifi_opmode_table *op;
Johannes Berg15854ef92012-03-05 11:24:50 -08001246 int err;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001247 struct iwl_firmware_pieces *pieces;
Luca Coelho0c4881c2016-12-13 09:56:07 +02001248 const unsigned int api_max = drv->trans->cfg->ucode_api_max;
1249 const unsigned int api_min = drv->trans->cfg->ucode_api_min;
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001250 size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -08001251 u32 api_ver;
David Spinadel6dfa8d02012-03-10 13:00:14 -08001252 int i;
Johannes Bergd4b10482012-06-12 19:50:43 +02001253 bool load_module = false;
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001254 bool usniffer_images = false;
Johannes Berg15854ef92012-03-05 11:24:50 -08001255
Luciano Coelho66140ad2013-08-12 19:30:21 +03001256 fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
Johannes Berg15854ef92012-03-05 11:24:50 -08001257 fw->ucode_capa.standard_phy_calibration_size =
1258 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
David Spinadel762533b2014-06-05 11:20:43 +03001259 fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
Johannes Berg15854ef92012-03-05 11:24:50 -08001260
Liad Kaufman490fefe2014-09-16 15:06:54 +03001261 pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1262 if (!pieces)
1263 return;
Johannes Berg15854ef92012-03-05 11:24:50 -08001264
Emmanuel Grumbach9d9b21d2016-03-24 08:44:57 +02001265 if (!ucode_raw)
Johannes Berg15854ef92012-03-05 11:24:50 -08001266 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001267
Johannes Berg965974a62012-03-06 13:30:38 -08001268 IWL_DEBUG_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1269 drv->firmware_name, ucode_raw->size);
Johannes Berg15854ef92012-03-05 11:24:50 -08001270
1271 /* Make sure that we got at least the API version number */
1272 if (ucode_raw->size < 4) {
Johannes Berg965974a62012-03-06 13:30:38 -08001273 IWL_ERR(drv, "File size way too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -08001274 goto try_again;
1275 }
1276
1277 /* Data from ucode file: header followed by uCode images */
1278 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1279
1280 if (ucode->ver)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001281 err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001282 else
Liad Kaufman490fefe2014-09-16 15:06:54 +03001283 err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001284 &fw->ucode_capa, &usniffer_images);
Johannes Berg15854ef92012-03-05 11:24:50 -08001285
1286 if (err)
1287 goto try_again;
1288
Luca Coelhof0d8f382016-04-25 20:02:09 +03001289 if (fw_has_api(&drv->fw.ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION))
1290 api_ver = drv->fw.ucode_ver;
1291 else
1292 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -08001293
1294 /*
1295 * api_ver should match the api version forming part of the
1296 * firmware filename ... but we don't check for that and only rely
1297 * on the API version read from firmware header from here on forward
1298 */
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +03001299 if (api_ver < api_min || api_ver > api_max) {
1300 IWL_ERR(drv,
1301 "Driver unable to support your firmware API. "
1302 "Driver supports v%u, firmware is v%u.\n",
1303 api_max, api_ver);
1304 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001305 }
1306
Johannes Berg15854ef92012-03-05 11:24:50 -08001307 /*
David Spinadel4db2c9a2012-03-10 13:00:15 -08001308 * In mvm uCode there is no difference between data and instructions
1309 * sections.
1310 */
Luca Coelho0c4881c2016-12-13 09:56:07 +02001311 if (fw->type == IWL_FW_DVM && validate_sec_sizes(drv, pieces,
1312 drv->trans->cfg))
Johannes Berg15854ef92012-03-05 11:24:50 -08001313 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001314
1315 /* Allocate ucode buffers for card's bus-master loading ... */
1316
1317 /* Runtime instructions and 2 copies of data:
1318 * 1) unmodified from disk
1319 * 2) backup cache for save/restore during power-downs */
David Spinadel6dfa8d02012-03-10 13:00:14 -08001320 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001321 if (iwl_alloc_ucode(drv, pieces, i))
Johannes Berg75813bd2012-05-16 22:49:49 +02001322 goto out_free_fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001323
Liad Kaufman490fefe2014-09-16 15:06:54 +03001324 if (pieces->dbg_dest_tlv) {
1325 drv->fw.dbg_dest_tlv =
1326 kmemdup(pieces->dbg_dest_tlv,
1327 sizeof(*pieces->dbg_dest_tlv) +
1328 sizeof(pieces->dbg_dest_tlv->reg_ops[0]) *
1329 drv->fw.dbg_dest_reg_num, GFP_KERNEL);
1330
1331 if (!drv->fw.dbg_dest_tlv)
1332 goto out_free_fw;
1333 }
1334
1335 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++) {
1336 if (pieces->dbg_conf_tlv[i]) {
1337 drv->fw.dbg_conf_tlv_len[i] =
1338 pieces->dbg_conf_tlv_len[i];
1339 drv->fw.dbg_conf_tlv[i] =
1340 kmemdup(pieces->dbg_conf_tlv[i],
1341 drv->fw.dbg_conf_tlv_len[i],
1342 GFP_KERNEL);
1343 if (!drv->fw.dbg_conf_tlv[i])
1344 goto out_free_fw;
1345 }
1346 }
1347
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001348 memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1349
1350 trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1351 sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1352 trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1353 trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1354 sizeof(struct iwl_fw_dbg_trigger_cmd);
1355 trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1356 sizeof(struct iwl_fw_dbg_trigger_mlme);
1357 trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1358 sizeof(struct iwl_fw_dbg_trigger_stats);
1359 trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1360 sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1361 trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1362 sizeof(struct iwl_fw_dbg_trigger_txq_timer);
Emmanuel Grumbach874c1742015-03-25 22:40:47 +02001363 trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1364 sizeof(struct iwl_fw_dbg_trigger_time_event);
Emmanuel Grumbach42032632015-04-15 12:43:46 +03001365 trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1366 sizeof(struct iwl_fw_dbg_trigger_ba);
Golan Ben-Ami1e8f1322015-08-23 17:57:33 +03001367 trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1368 sizeof(struct iwl_fw_dbg_trigger_tdls);
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001369
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001370 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++) {
1371 if (pieces->dbg_trigger_tlv[i]) {
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001372 /*
1373 * If the trigger isn't long enough, WARN and exit.
1374 * Someone is trying to debug something and he won't
1375 * be able to catch the bug he is trying to chase.
1376 * We'd better be noisy to be sure he knows what's
1377 * going on.
1378 */
1379 if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1380 (trigger_tlv_sz[i] +
1381 sizeof(struct iwl_fw_dbg_trigger_tlv))))
1382 goto out_free_fw;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001383 drv->fw.dbg_trigger_tlv_len[i] =
1384 pieces->dbg_trigger_tlv_len[i];
1385 drv->fw.dbg_trigger_tlv[i] =
1386 kmemdup(pieces->dbg_trigger_tlv[i],
1387 drv->fw.dbg_trigger_tlv_len[i],
1388 GFP_KERNEL);
1389 if (!drv->fw.dbg_trigger_tlv[i])
1390 goto out_free_fw;
1391 }
1392 }
1393
Johannes Berg15854ef92012-03-05 11:24:50 -08001394 /* Now that we can no longer fail, copy information */
1395
Johannes Berg2ed1e012016-10-20 09:41:14 +02001396 drv->fw.dbg_mem_tlv = pieces->dbg_mem_tlv;
1397 pieces->dbg_mem_tlv = NULL;
1398 drv->fw.n_dbg_mem_tlv = pieces->n_dbg_mem_tlv;
1399
Johannes Berg15854ef92012-03-05 11:24:50 -08001400 /*
1401 * The (size - 16) / 12 formula is based on the information recorded
1402 * for each event, which is of mode 1 (including timestamp) for all
1403 * new microcodes that include this information.
1404 */
Liad Kaufman490fefe2014-09-16 15:06:54 +03001405 fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1406 if (pieces->init_evtlog_size)
1407 fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001408 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001409 fw->init_evtlog_size =
Luca Coelho0c4881c2016-12-13 09:56:07 +02001410 drv->trans->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001411 fw->init_errlog_ptr = pieces->init_errlog_ptr;
1412 fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1413 if (pieces->inst_evtlog_size)
1414 fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001415 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001416 fw->inst_evtlog_size =
Luca Coelho0c4881c2016-12-13 09:56:07 +02001417 drv->trans->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001418 fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
Johannes Berg15854ef92012-03-05 11:24:50 -08001419
1420 /*
1421 * figure out the offset of chain noise reset and gain commands
1422 * base on the size of standard phy calibration commands table size
1423 */
1424 if (fw->ucode_capa.standard_phy_calibration_size >
1425 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1426 fw->ucode_capa.standard_phy_calibration_size =
1427 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1428
1429 /* We have our copies now, allow OS release its copies */
1430 release_firmware(ucode_raw);
Johannes Berg15854ef92012-03-05 11:24:50 -08001431
Johannes Bergff1ffb82012-06-06 09:42:57 +02001432 mutex_lock(&iwlwifi_opmode_table_mtx);
Johannes Bergca221c92016-04-28 14:40:59 +02001433 switch (fw->type) {
1434 case IWL_FW_DVM:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001435 op = &iwlwifi_opmode_table[DVM_OP_MODE];
Johannes Bergca221c92016-04-28 14:40:59 +02001436 break;
1437 default:
1438 WARN(1, "Invalid fw type %d\n", fw->type);
1439 case IWL_FW_MVM:
1440 op = &iwlwifi_opmode_table[MVM_OP_MODE];
1441 break;
1442 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001443
Johannes Berg2b2719c2013-03-26 11:41:51 +01001444 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1445 drv->fw.fw_version, op->name);
1446
Don Frycc5f7e32012-05-16 22:54:27 +02001447 /* add this device to the list of devices using this op_mode */
1448 list_add_tail(&drv->list, &op->drv);
1449
1450 if (op->ops) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001451 drv->op_mode = _iwl_op_mode_start(drv, op);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001452
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001453 if (!drv->op_mode) {
1454 mutex_unlock(&iwlwifi_opmode_table_mtx);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001455 goto out_unbind;
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001456 }
Don Frycc5f7e32012-05-16 22:54:27 +02001457 } else {
Johannes Bergd4b10482012-06-12 19:50:43 +02001458 load_module = true;
Don Frycc5f7e32012-05-16 22:54:27 +02001459 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001460 mutex_unlock(&iwlwifi_opmode_table_mtx);
Johannes Berg15854ef92012-03-05 11:24:50 -08001461
Johannes Bergf69a23b2012-06-05 19:56:06 +02001462 /*
1463 * Complete the firmware request last so that
1464 * a driver unbind (stop) doesn't run while we
1465 * are doing the start() above.
1466 */
1467 complete(&drv->request_firmware_complete);
Johannes Bergd4b10482012-06-12 19:50:43 +02001468
1469 /*
1470 * Load the module last so we don't block anything
1471 * else from proceeding if the module fails to load
1472 * or hangs loading.
1473 */
Johannes Berg1618b2b2013-04-04 10:35:23 +02001474 if (load_module) {
1475 err = request_module("%s", op->name);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001476#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
Johannes Berg1618b2b2013-04-04 10:35:23 +02001477 if (err)
1478 IWL_ERR(drv,
1479 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1480 op->name, err);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001481#endif
Johannes Berg1618b2b2013-04-04 10:35:23 +02001482 }
Johannes Berg2ed1e012016-10-20 09:41:14 +02001483 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001484
1485 try_again:
1486 /* try next, if any */
1487 release_firmware(ucode_raw);
Johannes Berg965974a62012-03-06 13:30:38 -08001488 if (iwl_request_firmware(drv, false))
Johannes Berg15854ef92012-03-05 11:24:50 -08001489 goto out_unbind;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001490 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001491
Johannes Berg75813bd2012-05-16 22:49:49 +02001492 out_free_fw:
Johannes Berg965974a62012-03-06 13:30:38 -08001493 IWL_ERR(drv, "failed to allocate pci memory\n");
1494 iwl_dealloc_ucode(drv);
Johannes Berg15854ef92012-03-05 11:24:50 -08001495 release_firmware(ucode_raw);
1496 out_unbind:
Johannes Berg965974a62012-03-06 13:30:38 -08001497 complete(&drv->request_firmware_complete);
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +02001498 device_release_driver(drv->trans->dev);
Johannes Berg2ed1e012016-10-20 09:41:14 +02001499 free:
Sara Sharoneef187a2016-10-25 11:38:31 +03001500 for (i = 0; i < ARRAY_SIZE(pieces->img); i++)
1501 kfree(pieces->img[i].sec);
Johannes Berg2ed1e012016-10-20 09:41:14 +02001502 kfree(pieces->dbg_mem_tlv);
1503 kfree(pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001504}
1505
Luca Coelho49060382016-12-13 09:48:57 +02001506struct iwl_drv *iwl_drv_start(struct iwl_trans *trans)
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001507{
Johannes Berg965974a62012-03-06 13:30:38 -08001508 struct iwl_drv *drv;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001509 int ret;
1510
Johannes Berg965974a62012-03-06 13:30:38 -08001511 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001512 if (!drv) {
1513 ret = -ENOMEM;
1514 goto err;
1515 }
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001516
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001517 drv->trans = trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +02001518 drv->dev = trans->dev;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001519
Johannes Berg965974a62012-03-06 13:30:38 -08001520 init_completion(&drv->request_firmware_complete);
Johannes Bergff1ffb82012-06-06 09:42:57 +02001521 INIT_LIST_HEAD(&drv->list);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001522
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001523#ifdef CONFIG_IWLWIFI_DEBUGFS
1524 /* Create the device debugfs entries. */
1525 drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1526 iwl_dbgfs_root);
1527
1528 if (!drv->dbgfs_drv) {
1529 IWL_ERR(drv, "failed to create debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001530 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001531 goto err_free_drv;
1532 }
1533
1534 /* Create transport layer debugfs dir */
1535 drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1536
1537 if (!drv->trans->dbgfs_dir) {
1538 IWL_ERR(drv, "failed to create transport debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001539 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001540 goto err_free_dbgfs;
1541 }
1542#endif
1543
Johannes Berg965974a62012-03-06 13:30:38 -08001544 ret = iwl_request_firmware(drv, true);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001545 if (ret) {
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001546 IWL_ERR(trans, "Couldn't request the fw\n");
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001547 goto err_fw;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001548 }
1549
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001550 return drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001551
1552err_fw:
1553#ifdef CONFIG_IWLWIFI_DEBUGFS
1554err_free_dbgfs:
1555 debugfs_remove_recursive(drv->dbgfs_drv);
1556err_free_drv:
1557#endif
1558 kfree(drv);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001559err:
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001560 return ERR_PTR(ret);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001561}
1562
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001563void iwl_drv_stop(struct iwl_drv *drv)
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001564{
Johannes Berg965974a62012-03-06 13:30:38 -08001565 wait_for_completion(&drv->request_firmware_complete);
Johannes Berg2e7eb112012-03-05 11:24:51 -08001566
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001567 _iwl_op_mode_stop(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001568
Johannes Berg965974a62012-03-06 13:30:38 -08001569 iwl_dealloc_ucode(drv);
Johannes Berg7db5b982012-03-05 11:24:48 -08001570
Johannes Bergff1ffb82012-06-06 09:42:57 +02001571 mutex_lock(&iwlwifi_opmode_table_mtx);
1572 /*
1573 * List is empty (this item wasn't added)
1574 * when firmware loading failed -- in that
1575 * case we can't remove it from any list.
1576 */
1577 if (!list_empty(&drv->list))
1578 list_del(&drv->list);
1579 mutex_unlock(&iwlwifi_opmode_table_mtx);
1580
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001581#ifdef CONFIG_IWLWIFI_DEBUGFS
1582 debugfs_remove_recursive(drv->dbgfs_drv);
1583#endif
1584
Johannes Berg965974a62012-03-06 13:30:38 -08001585 kfree(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001586}
Johannes Berg65de7e82012-04-17 07:36:30 -07001587
1588
1589/* shared module parameters */
1590struct iwl_mod_params iwlwifi_mod_params = {
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001591 .restart_fw = true,
Johannes Berg65de7e82012-04-17 07:36:30 -07001592 .bt_coex_active = true,
1593 .power_level = IWL_POWER_INDEX_1,
Eliad Peller7616f332014-11-20 17:33:43 +02001594 .d0i3_disable = true,
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001595 .d0i3_entry_delay = 1000,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001596 .uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
Johannes Berg65de7e82012-04-17 07:36:30 -07001597 /* the rest are 0 by default */
1598};
Johannes Berg48e29342013-03-01 00:13:33 +01001599IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
Don Frycc5f7e32012-05-16 22:54:27 +02001600
1601int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1602{
1603 int i;
1604 struct iwl_drv *drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001605 struct iwlwifi_opmode_table *op;
Don Frycc5f7e32012-05-16 22:54:27 +02001606
Johannes Bergff1ffb82012-06-06 09:42:57 +02001607 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001608 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001609 op = &iwlwifi_opmode_table[i];
1610 if (strcmp(op->name, name))
Don Frycc5f7e32012-05-16 22:54:27 +02001611 continue;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001612 op->ops = ops;
1613 /* TODO: need to handle exceptional case */
1614 list_for_each_entry(drv, &op->drv, list)
1615 drv->op_mode = _iwl_op_mode_start(drv, op);
1616
Johannes Bergff1ffb82012-06-06 09:42:57 +02001617 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001618 return 0;
1619 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001620 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001621 return -EIO;
1622}
Johannes Berg48e29342013-03-01 00:13:33 +01001623IWL_EXPORT_SYMBOL(iwl_opmode_register);
Don Frycc5f7e32012-05-16 22:54:27 +02001624
1625void iwl_opmode_deregister(const char *name)
1626{
1627 int i;
1628 struct iwl_drv *drv;
1629
Johannes Bergff1ffb82012-06-06 09:42:57 +02001630 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001631 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1632 if (strcmp(iwlwifi_opmode_table[i].name, name))
1633 continue;
1634 iwlwifi_opmode_table[i].ops = NULL;
1635
1636 /* call the stop routine for all devices */
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001637 list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1638 _iwl_op_mode_stop(drv);
1639
Johannes Bergff1ffb82012-06-06 09:42:57 +02001640 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001641 return;
1642 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001643 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001644}
Johannes Berg48e29342013-03-01 00:13:33 +01001645IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
Don Frycc5f7e32012-05-16 22:54:27 +02001646
1647static int __init iwl_drv_init(void)
1648{
1649 int i;
1650
Johannes Bergff1ffb82012-06-06 09:42:57 +02001651 mutex_init(&iwlwifi_opmode_table_mtx);
1652
Don Frycc5f7e32012-05-16 22:54:27 +02001653 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1654 INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1655
Johannes Berge32ec122014-10-22 11:22:56 +02001656 pr_info(DRV_DESCRIPTION "\n");
Don Frycc5f7e32012-05-16 22:54:27 +02001657 pr_info(DRV_COPYRIGHT "\n");
1658
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001659#ifdef CONFIG_IWLWIFI_DEBUGFS
1660 /* Create the root of iwlwifi debugfs subsystem. */
1661 iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1662
1663 if (!iwl_dbgfs_root)
1664 return -EFAULT;
1665#endif
1666
Don Frycc5f7e32012-05-16 22:54:27 +02001667 return iwl_pci_register_driver();
1668}
1669module_init(iwl_drv_init);
1670
1671static void __exit iwl_drv_exit(void)
1672{
1673 iwl_pci_unregister_driver();
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001674
1675#ifdef CONFIG_IWLWIFI_DEBUGFS
1676 debugfs_remove_recursive(iwl_dbgfs_root);
1677#endif
Don Frycc5f7e32012-05-16 22:54:27 +02001678}
1679module_exit(iwl_drv_exit);
Johannes Berg65de7e82012-04-17 07:36:30 -07001680
1681#ifdef CONFIG_IWLWIFI_DEBUG
1682module_param_named(debug, iwlwifi_mod_params.debug_level, uint,
1683 S_IRUGO | S_IWUSR);
1684MODULE_PARM_DESC(debug, "debug output mask");
1685#endif
1686
1687module_param_named(swcrypto, iwlwifi_mod_params.sw_crypto, int, S_IRUGO);
1688MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
1689module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, S_IRUGO);
1690MODULE_PARM_DESC(11n_disable,
Emmanuel Grumbach205e2212014-02-12 15:15:05 +02001691 "disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX");
Emmanuel Grumbach6c4fbcb2015-11-10 11:57:41 +02001692module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size,
Johannes Berg65de7e82012-04-17 07:36:30 -07001693 int, S_IRUGO);
Emmanuel Grumbach4bdd4df2016-04-07 16:44:42 +03001694MODULE_PARM_DESC(amsdu_size,
1695 "amsdu size 0: 12K for multi Rx queue devices, 4K for other devices 1:4K 2:8K 3:12K (default 0)");
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001696module_param_named(fw_restart, iwlwifi_mod_params.restart_fw, bool, S_IRUGO);
1697MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001698
1699module_param_named(antenna_coupling, iwlwifi_mod_params.ant_coupling,
1700 int, S_IRUGO);
1701MODULE_PARM_DESC(antenna_coupling,
Toralf Försterad25c1e2014-09-09 20:08:53 +02001702 "specify antenna coupling in dB (default: 0 dB)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001703
Eran Harary12147552013-05-09 08:07:59 +03001704module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, S_IRUGO);
1705MODULE_PARM_DESC(nvm_file, "NVM file name");
1706
Eliad Peller7616f332014-11-20 17:33:43 +02001707module_param_named(d0i3_disable, iwlwifi_mod_params.d0i3_disable,
1708 bool, S_IRUGO);
1709MODULE_PARM_DESC(d0i3_disable, "disable d0i3 functionality (default: Y)");
1710
Arik Nemtsov5711cac2014-12-28 09:23:16 +02001711module_param_named(lar_disable, iwlwifi_mod_params.lar_disable,
1712 bool, S_IRUGO);
1713MODULE_PARM_DESC(lar_disable, "disable LAR functionality (default: N)");
1714
Matt Chen1504f482014-04-24 18:43:18 +08001715module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001716 uint, S_IRUGO | S_IWUSR);
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001717MODULE_PARM_DESC(uapsd_disable,
1718 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
Matt Chen1504f482014-04-24 18:43:18 +08001719
Johannes Berg65de7e82012-04-17 07:36:30 -07001720/*
1721 * set bt_coex_active to true, uCode will do kill/defer
1722 * every time the priority line is asserted (BT is sending signals on the
1723 * priority line in the PCIx).
1724 * set bt_coex_active to false, uCode will ignore the BT activity and
1725 * perform the normal operation
1726 *
1727 * User might experience transmit issue on some platform due to WiFi/BT
1728 * co-exist problem. The possible behaviors are:
1729 * Able to scan and finding all the available AP
1730 * Not able to associate with any AP
1731 * On those platforms, WiFi communication can be restored by set
1732 * "bt_coex_active" module parameter to "false"
1733 *
1734 * default: bt_coex_active = true (BT_COEX_ENABLE)
1735 */
1736module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
1737 bool, S_IRUGO);
1738MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1739
1740module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, S_IRUGO);
1741MODULE_PARM_DESC(led_mode, "0=system default, "
1742 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1743
1744module_param_named(power_save, iwlwifi_mod_params.power_save,
1745 bool, S_IRUGO);
1746MODULE_PARM_DESC(power_save,
1747 "enable WiFi power management (default: disable)");
1748
1749module_param_named(power_level, iwlwifi_mod_params.power_level,
1750 int, S_IRUGO);
1751MODULE_PARM_DESC(power_level,
1752 "default power save level (range from 1 - 5, default: 1)");
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001753
1754module_param_named(fw_monitor, iwlwifi_mod_params.fw_monitor, bool, S_IRUGO);
Emmanuel Grumbach6d6a4752014-06-26 09:13:26 +03001755MODULE_PARM_DESC(fw_monitor,
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001756 "firmware monitor - to debug FW (default: false - needs lots of memory)");
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001757
1758module_param_named(d0i3_timeout, iwlwifi_mod_params.d0i3_entry_delay,
1759 uint, S_IRUGO);
1760MODULE_PARM_DESC(d0i3_timeout, "Timeout to D0i3 entry when idle (ms)");
Andrei Otcheretianski0d0985a2016-02-29 13:25:48 +02001761
1762module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool,
1763 S_IRUGO);
Emmanuel Grumbach5c887752016-03-14 15:21:06 +02001764MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities (default: false)");