blob: 1d1af4bc1530482780d5655a911df02d9908f767 [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
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200105 * @cfg: configuration struct
Johannes Berg965974a62012-03-06 13:30:38 -0800106 * @fw_index: firmware revision to try loading
107 * @firmware_name: composite filename of ucode file to load
108 * @request_firmware_complete: the firmware has been obtained from user space
109 */
110struct iwl_drv {
Don Frycc5f7e32012-05-16 22:54:27 +0200111 struct list_head list;
Johannes Berg965974a62012-03-06 13:30:38 -0800112 struct iwl_fw fw;
113
Johannes Berg965974a62012-03-06 13:30:38 -0800114 struct iwl_op_mode *op_mode;
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -0700115 struct iwl_trans *trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +0200116 struct device *dev;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200117 const struct iwl_cfg *cfg;
Johannes Berg965974a62012-03-06 13:30:38 -0800118
119 int fw_index; /* firmware we're trying to load */
Haim Dreyfuss0730ffb2016-04-06 10:45:05 +0300120 char firmware_name[64]; /* name of firmware file to load */
Johannes Berg965974a62012-03-06 13:30:38 -0800121
122 struct completion request_firmware_complete;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -0700123
124#ifdef CONFIG_IWLWIFI_DEBUGFS
125 struct dentry *dbgfs_drv;
126 struct dentry *dbgfs_trans;
127 struct dentry *dbgfs_op_mode;
128#endif
Johannes Berg965974a62012-03-06 13:30:38 -0800129};
130
Johannes Berg8ca151b2013-01-24 14:25:36 +0100131enum {
Johannes Berg6d48fcd2016-04-28 14:39:22 +0200132 DVM_OP_MODE,
133 MVM_OP_MODE,
Johannes Berg8ca151b2013-01-24 14:25:36 +0100134};
Johannes Berg965974a62012-03-06 13:30:38 -0800135
Johannes Bergff1ffb82012-06-06 09:42:57 +0200136/* Protects the table contents, i.e. the ops pointer & drv list */
137static struct mutex iwlwifi_opmode_table_mtx;
Don Frycc5f7e32012-05-16 22:54:27 +0200138static struct iwlwifi_opmode_table {
139 const char *name; /* name: iwldvm, iwlmvm, etc */
140 const struct iwl_op_mode_ops *ops; /* pointer to op_mode ops */
141 struct list_head drv; /* list of devices using this op_mode */
142} iwlwifi_opmode_table[] = { /* ops set when driver is initialized */
Johannes Berg8ca151b2013-01-24 14:25:36 +0100143 [DVM_OP_MODE] = { .name = "iwldvm", .ops = NULL },
144 [MVM_OP_MODE] = { .name = "iwlmvm", .ops = NULL },
Don Frycc5f7e32012-05-16 22:54:27 +0200145};
Johannes Berg965974a62012-03-06 13:30:38 -0800146
David Spinadel762533b2014-06-05 11:20:43 +0300147#define IWL_DEFAULT_SCAN_CHANNELS 40
148
David Spinadel0cedacc2012-03-10 13:00:12 -0800149/*
Sara Sharon0d365ae2015-03-31 12:24:05 +0300150 * struct fw_sec: Just for the image parsing process.
David Spinadel0cedacc2012-03-10 13:00:12 -0800151 * For the fw storage we are using struct fw_desc.
152 */
153struct fw_sec {
154 const void *data; /* the sec data */
155 size_t size; /* section size */
156 u32 offset; /* offset of writing in the device */
157};
158
Johannes Berg965974a62012-03-06 13:30:38 -0800159static void iwl_free_fw_desc(struct iwl_drv *drv, struct fw_desc *desc)
Johannes Berg15854ef92012-03-05 11:24:50 -0800160{
Johannes Berg83f84d72012-09-10 11:50:18 +0200161 vfree(desc->data);
162 desc->data = NULL;
Johannes Berg15854ef92012-03-05 11:24:50 -0800163 desc->len = 0;
164}
165
Johannes Berg965974a62012-03-06 13:30:38 -0800166static void iwl_free_fw_img(struct iwl_drv *drv, struct fw_img *img)
Johannes Berg15854ef92012-03-05 11:24:50 -0800167{
David Spinadel6dfa8d02012-03-10 13:00:14 -0800168 int i;
Sara Sharoneef187a2016-10-25 11:38:31 +0300169 for (i = 0; i < img->num_sec; i++)
David Spinadel6dfa8d02012-03-10 13:00:14 -0800170 iwl_free_fw_desc(drv, &img->sec[i]);
Sara Sharoneef187a2016-10-25 11:38:31 +0300171 kfree(img->sec);
Johannes Berg15854ef92012-03-05 11:24:50 -0800172}
173
Johannes Berg965974a62012-03-06 13:30:38 -0800174static void iwl_dealloc_ucode(struct iwl_drv *drv)
Johannes Berg15854ef92012-03-05 11:24:50 -0800175{
David Spinadel6dfa8d02012-03-10 13:00:14 -0800176 int i;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300177
178 kfree(drv->fw.dbg_dest_tlv);
179 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++)
180 kfree(drv->fw.dbg_conf_tlv[i]);
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200181 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++)
182 kfree(drv->fw.dbg_trigger_tlv[i]);
Johannes Berg2ed1e012016-10-20 09:41:14 +0200183 kfree(drv->fw.dbg_mem_tlv);
Liad Kaufman490fefe2014-09-16 15:06:54 +0300184
David Spinadel6dfa8d02012-03-10 13:00:14 -0800185 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
186 iwl_free_fw_img(drv, drv->fw.img + i);
Johannes Berg15854ef92012-03-05 11:24:50 -0800187}
188
Johannes Berg965974a62012-03-06 13:30:38 -0800189static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc,
Johannes Berg83f84d72012-09-10 11:50:18 +0200190 struct fw_sec *sec)
Johannes Berg15854ef92012-03-05 11:24:50 -0800191{
Johannes Berg83f84d72012-09-10 11:50:18 +0200192 void *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800193
Johannes Berg83f84d72012-09-10 11:50:18 +0200194 desc->data = NULL;
195
196 if (!sec || !sec->size)
197 return -EINVAL;
198
199 data = vmalloc(sec->size);
200 if (!data)
Johannes Berg15854ef92012-03-05 11:24:50 -0800201 return -ENOMEM;
202
David Spinadel0cedacc2012-03-10 13:00:12 -0800203 desc->len = sec->size;
204 desc->offset = sec->offset;
Johannes Berg83f84d72012-09-10 11:50:18 +0200205 memcpy(data, sec->data, desc->len);
206 desc->data = data;
207
Johannes Berg15854ef92012-03-05 11:24:50 -0800208 return 0;
209}
210
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300211static void iwl_req_fw_callback(const struct firmware *ucode_raw,
212 void *context);
Johannes Berg15854ef92012-03-05 11:24:50 -0800213
Johannes Berg965974a62012-03-06 13:30:38 -0800214static int iwl_request_firmware(struct iwl_drv *drv, bool first)
Johannes Berg15854ef92012-03-05 11:24:50 -0800215{
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200216 const char *name_pre = drv->cfg->fw_name_pre;
Johannes Berg15854ef92012-03-05 11:24:50 -0800217 char tag[8];
218
219 if (first) {
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200220 drv->fw_index = drv->cfg->ucode_api_max;
Johannes Berg965974a62012-03-06 13:30:38 -0800221 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800222 } else {
Johannes Berg965974a62012-03-06 13:30:38 -0800223 drv->fw_index--;
224 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800225 }
226
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200227 if (drv->fw_index < drv->cfg->ucode_api_min) {
Johannes Berg965974a62012-03-06 13:30:38 -0800228 IWL_ERR(drv, "no suitable firmware found!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800229 return -ENOENT;
230 }
231
Liad Kaufman84b03122014-01-27 16:34:23 +0200232 snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s%s.ucode",
233 name_pre, tag);
Johannes Berg15854ef92012-03-05 11:24:50 -0800234
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300235 IWL_DEBUG_INFO(drv, "attempting to load firmware '%s'\n",
Johannes Berg965974a62012-03-06 13:30:38 -0800236 drv->firmware_name);
Johannes Berg15854ef92012-03-05 11:24:50 -0800237
Johannes Berg965974a62012-03-06 13:30:38 -0800238 return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +0200239 drv->trans->dev,
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300240 GFP_KERNEL, drv, iwl_req_fw_callback);
Johannes Berg15854ef92012-03-05 11:24:50 -0800241}
242
David Spinadel0cedacc2012-03-10 13:00:12 -0800243struct fw_img_parsing {
Sara Sharoneef187a2016-10-25 11:38:31 +0300244 struct fw_sec *sec;
David Spinadel0cedacc2012-03-10 13:00:12 -0800245 int sec_counter;
246};
247
David Spinadeled8c8362012-03-10 13:00:13 -0800248/*
249 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
250 */
251struct fw_sec_parsing {
252 __le32 offset;
253 const u8 data[];
254} __packed;
255
256/**
257 * struct iwl_tlv_calib_data - parse the default calib data from TLV
258 *
259 * @ucode_type: the uCode to which the following default calib relates.
260 * @calib: default calibrations.
261 */
262struct iwl_tlv_calib_data {
263 __le32 ucode_type;
Johannes Bergaa2b1772013-01-24 14:12:07 +0100264 struct iwl_tlv_calib_ctrl calib;
David Spinadeled8c8362012-03-10 13:00:13 -0800265} __packed;
266
David Spinadel0cedacc2012-03-10 13:00:12 -0800267struct iwl_firmware_pieces {
268 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -0800269
270 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
271 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300272
273 /* FW debug data parsed for driver usage */
274 struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200275 struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
276 size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
277 struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
278 size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
Johannes Berg2ed1e012016-10-20 09:41:14 +0200279 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv;
280 size_t n_dbg_mem_tlv;
Johannes Berg15854ef92012-03-05 11:24:50 -0800281};
282
David Spinadel0cedacc2012-03-10 13:00:12 -0800283/*
284 * These functions are just to extract uCode section data from the pieces
285 * structure.
286 */
287static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
288 enum iwl_ucode_type type,
289 int sec)
290{
291 return &pieces->img[type].sec[sec];
292}
293
294static void set_sec_data(struct iwl_firmware_pieces *pieces,
295 enum iwl_ucode_type type,
296 int sec,
297 const void *data)
298{
299 pieces->img[type].sec[sec].data = data;
300}
301
302static void set_sec_size(struct iwl_firmware_pieces *pieces,
303 enum iwl_ucode_type type,
304 int sec,
305 size_t size)
306{
307 pieces->img[type].sec[sec].size = size;
308}
309
310static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
311 enum iwl_ucode_type type,
312 int sec)
313{
314 return pieces->img[type].sec[sec].size;
315}
316
317static void set_sec_offset(struct iwl_firmware_pieces *pieces,
318 enum iwl_ucode_type type,
319 int sec,
320 u32 offset)
321{
322 pieces->img[type].sec[sec].offset = offset;
323}
324
Max Stepanove36e5432013-08-27 19:56:13 +0300325static int iwl_store_cscheme(struct iwl_fw *fw, const u8 *data, const u32 len)
326{
327 int i, j;
328 struct iwl_fw_cscheme_list *l = (struct iwl_fw_cscheme_list *)data;
329 struct iwl_fw_cipher_scheme *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300330
331 if (len < sizeof(*l) ||
332 len < sizeof(l->size) + l->size * sizeof(l->cs[0]))
333 return -EINVAL;
334
335 for (i = 0, j = 0; i < IWL_UCODE_MAX_CS && i < l->size; i++) {
336 fwcs = &l->cs[j];
Max Stepanove36e5432013-08-27 19:56:13 +0300337
338 /* we skip schemes with zero cipher suite selector */
Johannes Berg24ddddf2016-06-21 12:34:36 +0200339 if (!fwcs->cipher)
Max Stepanove36e5432013-08-27 19:56:13 +0300340 continue;
341
Johannes Berg24ddddf2016-06-21 12:34:36 +0200342 fw->cs[j++] = *fwcs;
Max Stepanove36e5432013-08-27 19:56:13 +0300343 }
344
345 return 0;
346}
347
Ayala Beker5ed472262016-02-03 15:36:52 +0200348static void iwl_store_gscan_capa(struct iwl_fw *fw, const u8 *data,
349 const u32 len)
Avraham Stern17564dd2015-03-22 13:11:01 +0200350{
351 struct iwl_fw_gscan_capabilities *fw_capa = (void *)data;
352 struct iwl_gscan_capabilities *capa = &fw->gscan_capa;
353
Avraham Stern17564dd2015-03-22 13:11:01 +0200354 capa->max_scan_cache_size = le32_to_cpu(fw_capa->max_scan_cache_size);
355 capa->max_scan_buckets = le32_to_cpu(fw_capa->max_scan_buckets);
356 capa->max_ap_cache_per_scan =
357 le32_to_cpu(fw_capa->max_ap_cache_per_scan);
358 capa->max_rssi_sample_size = le32_to_cpu(fw_capa->max_rssi_sample_size);
359 capa->max_scan_reporting_threshold =
360 le32_to_cpu(fw_capa->max_scan_reporting_threshold);
361 capa->max_hotlist_aps = le32_to_cpu(fw_capa->max_hotlist_aps);
362 capa->max_significant_change_aps =
363 le32_to_cpu(fw_capa->max_significant_change_aps);
364 capa->max_bssid_history_entries =
365 le32_to_cpu(fw_capa->max_bssid_history_entries);
Ayala Beker5ed472262016-02-03 15:36:52 +0200366 capa->max_hotlist_ssids = le32_to_cpu(fw_capa->max_hotlist_ssids);
367 capa->max_number_epno_networks =
368 le32_to_cpu(fw_capa->max_number_epno_networks);
369 capa->max_number_epno_networks_by_ssid =
370 le32_to_cpu(fw_capa->max_number_epno_networks_by_ssid);
371 capa->max_number_of_white_listed_ssid =
372 le32_to_cpu(fw_capa->max_number_of_white_listed_ssid);
373 capa->max_number_of_black_listed_ssid =
374 le32_to_cpu(fw_capa->max_number_of_black_listed_ssid);
Avraham Stern17564dd2015-03-22 13:11:01 +0200375}
376
David Spinadeled8c8362012-03-10 13:00:13 -0800377/*
378 * Gets uCode section from tlv.
379 */
380static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
381 const void *data, enum iwl_ucode_type type,
382 int size)
383{
384 struct fw_img_parsing *img;
385 struct fw_sec *sec;
386 struct fw_sec_parsing *sec_parse;
Sara Sharoneef187a2016-10-25 11:38:31 +0300387 size_t alloc_size;
David Spinadeled8c8362012-03-10 13:00:13 -0800388
389 if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
390 return -1;
391
392 sec_parse = (struct fw_sec_parsing *)data;
393
394 img = &pieces->img[type];
Sara Sharoneef187a2016-10-25 11:38:31 +0300395
396 alloc_size = sizeof(*img->sec) * (img->sec_counter + 1);
397 sec = krealloc(img->sec, alloc_size, GFP_KERNEL);
398 if (!sec)
399 return -ENOMEM;
400 img->sec = sec;
401
David Spinadeled8c8362012-03-10 13:00:13 -0800402 sec = &img->sec[img->sec_counter];
403
404 sec->offset = le32_to_cpu(sec_parse->offset);
405 sec->data = sec_parse->data;
David Spinadel1176f432012-03-13 14:32:48 +0200406 sec->size = size - sizeof(sec_parse->offset);
David Spinadeled8c8362012-03-10 13:00:13 -0800407
408 ++img->sec_counter;
409
410 return 0;
411}
412
413static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
414{
415 struct iwl_tlv_calib_data *def_calib =
416 (struct iwl_tlv_calib_data *)data;
417 u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
418 if (ucode_type >= IWL_UCODE_TYPE_MAX) {
419 IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
420 ucode_type);
421 return -EINVAL;
422 }
Johannes Bergaa2b1772013-01-24 14:12:07 +0100423 drv->fw.default_calib[ucode_type].flow_trigger =
424 def_calib->calib.flow_trigger;
425 drv->fw.default_calib[ucode_type].event_trigger =
426 def_calib->calib.event_trigger;
427
David Spinadeled8c8362012-03-10 13:00:13 -0800428 return 0;
429}
430
Eran Hararya2978b12014-02-20 11:00:01 +0200431static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
432 struct iwl_ucode_capabilities *capa)
433{
434 const struct iwl_ucode_api *ucode_api = (void *)data;
435 u32 api_index = le32_to_cpu(ucode_api->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200436 u32 api_flags = le32_to_cpu(ucode_api->api_flags);
437 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200438
Johannes Bergd3f555f42015-09-16 12:21:32 +0200439 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100440 IWL_ERR(drv,
441 "api flags index %d larger than supported by driver\n",
442 api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200443 /* don't return an error so we can load FW that has more bits */
444 return 0;
Eran Hararya2978b12014-02-20 11:00:01 +0200445 }
446
Johannes Berg859d9142015-06-01 17:11:11 +0200447 for (i = 0; i < 32; i++) {
448 if (api_flags & BIT(i))
449 __set_bit(i + 32 * api_index, capa->_api);
450 }
Eran Hararya2978b12014-02-20 11:00:01 +0200451
452 return 0;
453}
454
455static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
456 struct iwl_ucode_capabilities *capa)
457{
458 const struct iwl_ucode_capa *ucode_capa = (void *)data;
459 u32 api_index = le32_to_cpu(ucode_capa->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200460 u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
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_CAPA, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100464 IWL_ERR(drv,
465 "capa 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->_capa);
474 }
Eran Hararya2978b12014-02-20 11:00:01 +0200475
476 return 0;
477}
478
Johannes Berg965974a62012-03-06 13:30:38 -0800479static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
David Spinadel0cedacc2012-03-10 13:00:12 -0800480 const struct firmware *ucode_raw,
481 struct iwl_firmware_pieces *pieces)
Johannes Berg15854ef92012-03-05 11:24:50 -0800482{
483 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
484 u32 api_ver, hdr_size, build;
485 char buildstr[25];
486 const u8 *src;
487
Johannes Berg965974a62012-03-06 13:30:38 -0800488 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
489 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -0800490
491 switch (api_ver) {
492 default:
493 hdr_size = 28;
494 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800495 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800496 return -EINVAL;
497 }
498 build = le32_to_cpu(ucode->u.v2.build);
David Spinadel0cedacc2012-03-10 13:00:12 -0800499 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
500 le32_to_cpu(ucode->u.v2.inst_size));
501 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
502 le32_to_cpu(ucode->u.v2.data_size));
503 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
504 le32_to_cpu(ucode->u.v2.init_size));
505 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
506 le32_to_cpu(ucode->u.v2.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800507 src = ucode->u.v2.data;
508 break;
509 case 0:
510 case 1:
511 case 2:
512 hdr_size = 24;
513 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800514 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800515 return -EINVAL;
516 }
517 build = 0;
David Spinadel0cedacc2012-03-10 13:00:12 -0800518 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
519 le32_to_cpu(ucode->u.v1.inst_size));
520 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
521 le32_to_cpu(ucode->u.v1.data_size));
522 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
523 le32_to_cpu(ucode->u.v1.init_size));
524 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
525 le32_to_cpu(ucode->u.v1.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800526 src = ucode->u.v1.data;
527 break;
528 }
529
530 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300531 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800532 else
533 buildstr[0] = '\0';
534
Johannes Berg965974a62012-03-06 13:30:38 -0800535 snprintf(drv->fw.fw_version,
536 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800537 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800538 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
539 IWL_UCODE_MINOR(drv->fw.ucode_ver),
540 IWL_UCODE_API(drv->fw.ucode_ver),
541 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800542 buildstr);
543
544 /* Verify size of file vs. image size info in file's header */
David Spinadel0cedacc2012-03-10 13:00:12 -0800545
546 if (ucode_raw->size != hdr_size +
547 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
548 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
549 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
550 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800551
Johannes Berg965974a62012-03-06 13:30:38 -0800552 IWL_ERR(drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800553 "uCode file size %d does not match expected size\n",
554 (int)ucode_raw->size);
555 return -EINVAL;
556 }
557
Johannes Berg15854ef92012-03-05 11:24:50 -0800558
David Spinadel0cedacc2012-03-10 13:00:12 -0800559 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
560 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
561 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
562 IWLAGN_RTC_INST_LOWER_BOUND);
563 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
564 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
565 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
566 IWLAGN_RTC_DATA_LOWER_BOUND);
567 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
568 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
569 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
570 IWLAGN_RTC_INST_LOWER_BOUND);
571 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
572 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
573 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
574 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800575 return 0;
576}
577
Johannes Berg965974a62012-03-06 13:30:38 -0800578static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800579 const struct firmware *ucode_raw,
David Spinadel0cedacc2012-03-10 13:00:12 -0800580 struct iwl_firmware_pieces *pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300581 struct iwl_ucode_capabilities *capa,
582 bool *usniffer_images)
Johannes Berg15854ef92012-03-05 11:24:50 -0800583{
584 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
585 struct iwl_ucode_tlv *tlv;
586 size_t len = ucode_raw->size;
587 const u8 *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800588 u32 tlv_len;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300589 u32 usniffer_img;
Johannes Berg15854ef92012-03-05 11:24:50 -0800590 enum iwl_ucode_tlv_type tlv_type;
591 const u8 *tlv_data;
592 char buildstr[25];
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300593 u32 build, paging_mem_size;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300594 int num_of_cpus;
Eran Harary61df7502014-12-01 17:40:37 +0200595 bool usniffer_req = false;
Avraham Stern17564dd2015-03-22 13:11:01 +0200596 bool gscan_capa = false;
Johannes Berg15854ef92012-03-05 11:24:50 -0800597
598 if (len < sizeof(*ucode)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800599 IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
Johannes Berg15854ef92012-03-05 11:24:50 -0800600 return -EINVAL;
601 }
602
603 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800604 IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800605 le32_to_cpu(ucode->magic));
606 return -EINVAL;
607 }
608
Johannes Berg965974a62012-03-06 13:30:38 -0800609 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
Emmanuel Grumbach06ddbf52014-06-02 08:34:53 +0300610 memcpy(drv->fw.human_readable, ucode->human_readable,
611 sizeof(drv->fw.human_readable));
Johannes Berg15854ef92012-03-05 11:24:50 -0800612 build = le32_to_cpu(ucode->build);
613
614 if (build)
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +0300615 sprintf(buildstr, " build %u", build);
Johannes Berg15854ef92012-03-05 11:24:50 -0800616 else
617 buildstr[0] = '\0';
618
Johannes Berg965974a62012-03-06 13:30:38 -0800619 snprintf(drv->fw.fw_version,
620 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800621 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800622 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
623 IWL_UCODE_MINOR(drv->fw.ucode_ver),
624 IWL_UCODE_API(drv->fw.ucode_ver),
625 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800626 buildstr);
627
628 data = ucode->data;
629
630 len -= sizeof(*ucode);
631
632 while (len >= sizeof(*tlv)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800633 len -= sizeof(*tlv);
634 tlv = (void *)data;
635
636 tlv_len = le32_to_cpu(tlv->length);
Johannes Berg0479c192012-03-09 09:16:35 +0100637 tlv_type = le32_to_cpu(tlv->type);
Johannes Berg15854ef92012-03-05 11:24:50 -0800638 tlv_data = tlv->data;
639
640 if (len < tlv_len) {
Johannes Berg965974a62012-03-06 13:30:38 -0800641 IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800642 len, tlv_len);
643 return -EINVAL;
644 }
645 len -= ALIGN(tlv_len, 4);
646 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
647
Johannes Berg15854ef92012-03-05 11:24:50 -0800648 switch (tlv_type) {
649 case IWL_UCODE_TLV_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800650 set_sec_data(pieces, IWL_UCODE_REGULAR,
651 IWL_UCODE_SECTION_INST, tlv_data);
652 set_sec_size(pieces, IWL_UCODE_REGULAR,
653 IWL_UCODE_SECTION_INST, tlv_len);
654 set_sec_offset(pieces, IWL_UCODE_REGULAR,
655 IWL_UCODE_SECTION_INST,
656 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800657 break;
658 case IWL_UCODE_TLV_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800659 set_sec_data(pieces, IWL_UCODE_REGULAR,
660 IWL_UCODE_SECTION_DATA, tlv_data);
661 set_sec_size(pieces, IWL_UCODE_REGULAR,
662 IWL_UCODE_SECTION_DATA, tlv_len);
663 set_sec_offset(pieces, IWL_UCODE_REGULAR,
664 IWL_UCODE_SECTION_DATA,
665 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800666 break;
667 case IWL_UCODE_TLV_INIT:
David Spinadel0cedacc2012-03-10 13:00:12 -0800668 set_sec_data(pieces, IWL_UCODE_INIT,
669 IWL_UCODE_SECTION_INST, tlv_data);
670 set_sec_size(pieces, IWL_UCODE_INIT,
671 IWL_UCODE_SECTION_INST, tlv_len);
672 set_sec_offset(pieces, IWL_UCODE_INIT,
673 IWL_UCODE_SECTION_INST,
674 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800675 break;
676 case IWL_UCODE_TLV_INIT_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800677 set_sec_data(pieces, IWL_UCODE_INIT,
678 IWL_UCODE_SECTION_DATA, tlv_data);
679 set_sec_size(pieces, IWL_UCODE_INIT,
680 IWL_UCODE_SECTION_DATA, tlv_len);
681 set_sec_offset(pieces, IWL_UCODE_INIT,
682 IWL_UCODE_SECTION_DATA,
683 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800684 break;
685 case IWL_UCODE_TLV_BOOT:
Johannes Berg965974a62012-03-06 13:30:38 -0800686 IWL_ERR(drv, "Found unexpected BOOT ucode\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800687 break;
688 case IWL_UCODE_TLV_PROBE_MAX_LEN:
689 if (tlv_len != sizeof(u32))
690 goto invalid_tlv_len;
691 capa->max_probe_length =
692 le32_to_cpup((__le32 *)tlv_data);
693 break;
694 case IWL_UCODE_TLV_PAN:
695 if (tlv_len)
696 goto invalid_tlv_len;
697 capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
698 break;
699 case IWL_UCODE_TLV_FLAGS:
700 /* must be at least one u32 */
701 if (tlv_len < sizeof(u32))
702 goto invalid_tlv_len;
703 /* and a proper number of u32s */
704 if (tlv_len % sizeof(u32))
705 goto invalid_tlv_len;
706 /*
707 * This driver only reads the first u32 as
708 * right now no more features are defined,
709 * if that changes then either the driver
710 * will not work with the new firmware, or
711 * it'll not take advantage of new features.
712 */
713 capa->flags = le32_to_cpup((__le32 *)tlv_data);
714 break;
Eran Hararya2978b12014-02-20 11:00:01 +0200715 case IWL_UCODE_TLV_API_CHANGES_SET:
716 if (tlv_len != sizeof(struct iwl_ucode_api))
717 goto invalid_tlv_len;
718 if (iwl_set_ucode_api_flags(drv, tlv_data, capa))
719 goto tlv_error;
720 break;
721 case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
722 if (tlv_len != sizeof(struct iwl_ucode_capa))
723 goto invalid_tlv_len;
724 if (iwl_set_ucode_capabilities(drv, tlv_data, capa))
725 goto tlv_error;
726 break;
Johannes Berg15854ef92012-03-05 11:24:50 -0800727 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
728 if (tlv_len != sizeof(u32))
729 goto invalid_tlv_len;
730 pieces->init_evtlog_ptr =
731 le32_to_cpup((__le32 *)tlv_data);
732 break;
733 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
734 if (tlv_len != sizeof(u32))
735 goto invalid_tlv_len;
736 pieces->init_evtlog_size =
737 le32_to_cpup((__le32 *)tlv_data);
738 break;
739 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
740 if (tlv_len != sizeof(u32))
741 goto invalid_tlv_len;
742 pieces->init_errlog_ptr =
743 le32_to_cpup((__le32 *)tlv_data);
744 break;
745 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
746 if (tlv_len != sizeof(u32))
747 goto invalid_tlv_len;
748 pieces->inst_evtlog_ptr =
749 le32_to_cpup((__le32 *)tlv_data);
750 break;
751 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
752 if (tlv_len != sizeof(u32))
753 goto invalid_tlv_len;
754 pieces->inst_evtlog_size =
755 le32_to_cpup((__le32 *)tlv_data);
756 break;
757 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
758 if (tlv_len != sizeof(u32))
759 goto invalid_tlv_len;
760 pieces->inst_errlog_ptr =
761 le32_to_cpup((__le32 *)tlv_data);
762 break;
763 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
764 if (tlv_len)
765 goto invalid_tlv_len;
Johannes Berg965974a62012-03-06 13:30:38 -0800766 drv->fw.enhance_sensitivity_table = true;
Johannes Berg15854ef92012-03-05 11:24:50 -0800767 break;
768 case IWL_UCODE_TLV_WOWLAN_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800769 set_sec_data(pieces, IWL_UCODE_WOWLAN,
770 IWL_UCODE_SECTION_INST, tlv_data);
771 set_sec_size(pieces, IWL_UCODE_WOWLAN,
772 IWL_UCODE_SECTION_INST, tlv_len);
773 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
774 IWL_UCODE_SECTION_INST,
775 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800776 break;
777 case IWL_UCODE_TLV_WOWLAN_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800778 set_sec_data(pieces, IWL_UCODE_WOWLAN,
779 IWL_UCODE_SECTION_DATA, tlv_data);
780 set_sec_size(pieces, IWL_UCODE_WOWLAN,
781 IWL_UCODE_SECTION_DATA, tlv_len);
782 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
783 IWL_UCODE_SECTION_DATA,
784 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800785 break;
786 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
787 if (tlv_len != sizeof(u32))
788 goto invalid_tlv_len;
789 capa->standard_phy_calibration_size =
790 le32_to_cpup((__le32 *)tlv_data);
791 break;
David Spinadeled8c8362012-03-10 13:00:13 -0800792 case IWL_UCODE_TLV_SEC_RT:
793 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
794 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200795 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800796 break;
797 case IWL_UCODE_TLV_SEC_INIT:
798 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
799 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200800 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800801 break;
802 case IWL_UCODE_TLV_SEC_WOWLAN:
803 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
804 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200805 drv->fw.type = IWL_FW_MVM;
David Spinadeled8c8362012-03-10 13:00:13 -0800806 break;
807 case IWL_UCODE_TLV_DEF_CALIB:
808 if (tlv_len != sizeof(struct iwl_tlv_calib_data))
809 goto invalid_tlv_len;
810 if (iwl_set_default_calib(drv, tlv_data))
811 goto tlv_error;
812 break;
813 case IWL_UCODE_TLV_PHY_SKU:
814 if (tlv_len != sizeof(u32))
815 goto invalid_tlv_len;
816 drv->fw.phy_config = le32_to_cpup((__le32 *)tlv_data);
Eran Harary77db0a32014-02-04 14:21:38 +0200817 drv->fw.valid_tx_ant = (drv->fw.phy_config &
818 FW_PHY_CFG_TX_CHAIN) >>
819 FW_PHY_CFG_TX_CHAIN_POS;
820 drv->fw.valid_rx_ant = (drv->fw.phy_config &
821 FW_PHY_CFG_RX_CHAIN) >>
822 FW_PHY_CFG_RX_CHAIN_POS;
David Spinadeled8c8362012-03-10 13:00:13 -0800823 break;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300824 case IWL_UCODE_TLV_SECURE_SEC_RT:
825 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
826 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200827 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300828 break;
829 case IWL_UCODE_TLV_SECURE_SEC_INIT:
830 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
831 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200832 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300833 break;
834 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
835 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
836 tlv_len);
Johannes Bergca221c92016-04-28 14:40:59 +0200837 drv->fw.type = IWL_FW_MVM;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300838 break;
839 case IWL_UCODE_TLV_NUM_OF_CPU:
840 if (tlv_len != sizeof(u32))
841 goto invalid_tlv_len;
842 num_of_cpus =
843 le32_to_cpup((__le32 *)tlv_data);
844
845 if (num_of_cpus == 2) {
846 drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
847 true;
848 drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
849 true;
850 drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
851 true;
852 } else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
853 IWL_ERR(drv, "Driver support upto 2 CPUs\n");
854 return -EINVAL;
855 }
856 break;
Max Stepanove36e5432013-08-27 19:56:13 +0300857 case IWL_UCODE_TLV_CSCHEME:
858 if (iwl_store_cscheme(&drv->fw, tlv_data, tlv_len))
859 goto invalid_tlv_len;
860 break;
David Spinadel762533b2014-06-05 11:20:43 +0300861 case IWL_UCODE_TLV_N_SCAN_CHANNELS:
862 if (tlv_len != sizeof(u32))
863 goto invalid_tlv_len;
864 capa->n_scan_channels =
865 le32_to_cpup((__le32 *)tlv_data);
866 break;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200867 case IWL_UCODE_TLV_FW_VERSION: {
868 __le32 *ptr = (void *)tlv_data;
869 u32 major, minor;
870 u8 local_comp;
871
872 if (tlv_len != sizeof(u32) * 3)
873 goto invalid_tlv_len;
874
875 major = le32_to_cpup(ptr++);
876 minor = le32_to_cpup(ptr++);
877 local_comp = le32_to_cpup(ptr);
878
879 snprintf(drv->fw.fw_version,
880 sizeof(drv->fw.fw_version), "%u.%u.%u",
881 major, minor, local_comp);
882 break;
883 }
Liad Kaufman490fefe2014-09-16 15:06:54 +0300884 case IWL_UCODE_TLV_FW_DBG_DEST: {
885 struct iwl_fw_dbg_dest_tlv *dest = (void *)tlv_data;
886
887 if (pieces->dbg_dest_tlv) {
888 IWL_ERR(drv,
889 "dbg destination ignored, already exists\n");
890 break;
891 }
892
893 pieces->dbg_dest_tlv = dest;
894 IWL_INFO(drv, "Found debug destination: %s\n",
895 get_fw_dbg_mode_string(dest->monitor_mode));
896
897 drv->fw.dbg_dest_reg_num =
898 tlv_len - offsetof(struct iwl_fw_dbg_dest_tlv,
899 reg_ops);
900 drv->fw.dbg_dest_reg_num /=
901 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]);
902
903 break;
904 }
905 case IWL_UCODE_TLV_FW_DBG_CONF: {
906 struct iwl_fw_dbg_conf_tlv *conf = (void *)tlv_data;
907
908 if (!pieces->dbg_dest_tlv) {
909 IWL_ERR(drv,
910 "Ignore dbg config %d - no destination configured\n",
911 conf->id);
912 break;
913 }
914
915 if (conf->id >= ARRAY_SIZE(drv->fw.dbg_conf_tlv)) {
916 IWL_ERR(drv,
917 "Skip unknown configuration: %d\n",
918 conf->id);
919 break;
920 }
921
922 if (pieces->dbg_conf_tlv[conf->id]) {
923 IWL_ERR(drv,
924 "Ignore duplicate dbg config %d\n",
925 conf->id);
926 break;
927 }
928
Eran Harary61df7502014-12-01 17:40:37 +0200929 if (conf->usniffer)
930 usniffer_req = true;
931
Liad Kaufman490fefe2014-09-16 15:06:54 +0300932 IWL_INFO(drv, "Found debug configuration: %d\n",
933 conf->id);
934
935 pieces->dbg_conf_tlv[conf->id] = conf;
936 pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
937 break;
938 }
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200939 case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
940 struct iwl_fw_dbg_trigger_tlv *trigger =
941 (void *)tlv_data;
942 u32 trigger_id = le32_to_cpu(trigger->id);
943
944 if (trigger_id >= ARRAY_SIZE(drv->fw.dbg_trigger_tlv)) {
945 IWL_ERR(drv,
946 "Skip unknown trigger: %u\n",
947 trigger->id);
948 break;
949 }
950
951 if (pieces->dbg_trigger_tlv[trigger_id]) {
952 IWL_ERR(drv,
953 "Ignore duplicate dbg trigger %u\n",
954 trigger->id);
955 break;
956 }
957
958 IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
959
960 pieces->dbg_trigger_tlv[trigger_id] = trigger;
961 pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
962 break;
963 }
Eran Harary61df7502014-12-01 17:40:37 +0200964 case IWL_UCODE_TLV_SEC_RT_USNIFFER:
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300965 *usniffer_images = true;
Eran Harary61df7502014-12-01 17:40:37 +0200966 iwl_store_ucode_sec(pieces, tlv_data,
967 IWL_UCODE_REGULAR_USNIFFER,
968 tlv_len);
969 break;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300970 case IWL_UCODE_TLV_PAGING:
971 if (tlv_len != sizeof(u32))
972 goto invalid_tlv_len;
973 paging_mem_size = le32_to_cpup((__le32 *)tlv_data);
974
975 IWL_DEBUG_FW(drv,
976 "Paging: paging enabled (size = %u bytes)\n",
977 paging_mem_size);
978
979 if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
980 IWL_ERR(drv,
981 "Paging: driver supports up to %lu bytes for paging image\n",
982 MAX_PAGING_IMAGE_SIZE);
983 return -EINVAL;
984 }
985
986 if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
987 IWL_ERR(drv,
988 "Paging: image isn't multiple %lu\n",
989 FW_PAGING_SIZE);
990 return -EINVAL;
991 }
992
993 drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
994 paging_mem_size;
995 usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
996 drv->fw.img[usniffer_img].paging_mem_size =
997 paging_mem_size;
998 break;
Liad Kaufmanb4821762014-10-19 16:58:15 +0200999 case IWL_UCODE_TLV_SDIO_ADMA_ADDR:
1000 if (tlv_len != sizeof(u32))
1001 goto invalid_tlv_len;
1002 drv->fw.sdio_adma_addr =
1003 le32_to_cpup((__le32 *)tlv_data);
1004 break;
Avraham Stern17564dd2015-03-22 13:11:01 +02001005 case IWL_UCODE_TLV_FW_GSCAN_CAPA:
Ayala Beker5ed472262016-02-03 15:36:52 +02001006 /*
1007 * Don't return an error in case of a shorter tlv_len
1008 * to enable loading of FW that has an old format
1009 * of GSCAN capabilities TLV.
1010 */
1011 if (tlv_len < sizeof(struct iwl_fw_gscan_capabilities))
1012 break;
1013
1014 iwl_store_gscan_capa(&drv->fw, tlv_data, tlv_len);
Avraham Stern17564dd2015-03-22 13:11:01 +02001015 gscan_capa = true;
1016 break;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001017 case IWL_UCODE_TLV_FW_MEM_SEG: {
1018 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1019 (void *)tlv_data;
1020 u32 type;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001021 size_t size;
1022 struct iwl_fw_dbg_mem_seg_tlv *n;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001023
1024 if (tlv_len != (sizeof(*dbg_mem)))
1025 goto invalid_tlv_len;
1026
1027 type = le32_to_cpu(dbg_mem->data_type);
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001028
1029 IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1030 dbg_mem->data_type);
1031
Johannes Berg5bdaa0e2016-10-20 10:01:43 +02001032 switch (type & FW_DBG_MEM_TYPE_MASK) {
1033 case FW_DBG_MEM_TYPE_REGULAR:
1034 case FW_DBG_MEM_TYPE_PRPH:
1035 /* we know how to handle these */
1036 break;
1037 default:
1038 IWL_ERR(drv,
1039 "Found debug memory segment with invalid type: 0x%x\n",
1040 type);
1041 return -EINVAL;
1042 }
1043
Johannes Berg2ed1e012016-10-20 09:41:14 +02001044 size = sizeof(*pieces->dbg_mem_tlv) *
1045 (pieces->n_dbg_mem_tlv + 1);
1046 n = krealloc(pieces->dbg_mem_tlv, size, GFP_KERNEL);
1047 if (!n)
1048 return -ENOMEM;
1049 pieces->dbg_mem_tlv = n;
1050 pieces->dbg_mem_tlv[pieces->n_dbg_mem_tlv] = *dbg_mem;
1051 pieces->n_dbg_mem_tlv++;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001052 break;
1053 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001054 default:
Johannes Berg965974a62012-03-06 13:30:38 -08001055 IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
Johannes Berg15854ef92012-03-05 11:24:50 -08001056 break;
1057 }
1058 }
1059
Golan Ben-Ami3d2d4422016-02-23 10:34:48 +02001060 if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1061 usniffer_req && !*usniffer_images) {
Eran Harary61df7502014-12-01 17:40:37 +02001062 IWL_ERR(drv,
1063 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1064 return -EINVAL;
1065 }
1066
Johannes Berg15854ef92012-03-05 11:24:50 -08001067 if (len) {
Johannes Berg965974a62012-03-06 13:30:38 -08001068 IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1069 iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001070 return -EINVAL;
1071 }
1072
Ayala Bekera0b09f12016-02-03 15:36:52 +02001073 /*
1074 * If ucode advertises that it supports GSCAN but GSCAN
1075 * capabilities TLV is not present, or if it has an old format,
1076 * warn and continue without GSCAN.
1077 */
1078 if (fw_has_capa(capa, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT) &&
1079 !gscan_capa) {
1080 IWL_DEBUG_INFO(drv,
1081 "GSCAN is supported but capabilities TLV is unavailable\n");
Avraham Stern17564dd2015-03-22 13:11:01 +02001082 __clear_bit((__force long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT,
1083 capa->_capa);
Ayala Bekera0b09f12016-02-03 15:36:52 +02001084 }
Avraham Stern17564dd2015-03-22 13:11:01 +02001085
Johannes Berg15854ef92012-03-05 11:24:50 -08001086 return 0;
1087
1088 invalid_tlv_len:
Johannes Berg965974a62012-03-06 13:30:38 -08001089 IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
David Spinadeled8c8362012-03-10 13:00:13 -08001090 tlv_error:
Johannes Berg965974a62012-03-06 13:30:38 -08001091 iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001092
1093 return -EINVAL;
1094}
1095
Johannes Berg75813bd2012-05-16 22:49:49 +02001096static int iwl_alloc_ucode(struct iwl_drv *drv,
1097 struct iwl_firmware_pieces *pieces,
1098 enum iwl_ucode_type type)
David Spinadel6dfa8d02012-03-10 13:00:14 -08001099{
1100 int i;
Sara Sharoneef187a2016-10-25 11:38:31 +03001101 struct fw_desc *sec;
1102
1103 sec = kcalloc(pieces->img[type].sec_counter, sizeof(*sec), GFP_KERNEL);
1104 if (!sec)
1105 return -ENOMEM;
1106 drv->fw.img[type].sec = sec;
1107 drv->fw.img[type].num_sec = pieces->img[type].sec_counter;
1108
1109 for (i = 0; i < pieces->img[type].sec_counter; i++)
1110 if (iwl_alloc_fw_desc(drv, &sec[i], get_sec(pieces, type, i)))
Johannes Berg75813bd2012-05-16 22:49:49 +02001111 return -ENOMEM;
Sara Sharoneef187a2016-10-25 11:38:31 +03001112
David Spinadel6dfa8d02012-03-10 13:00:14 -08001113 return 0;
1114}
1115
1116static int validate_sec_sizes(struct iwl_drv *drv,
1117 struct iwl_firmware_pieces *pieces,
1118 const struct iwl_cfg *cfg)
1119{
1120 IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %Zd\n",
1121 get_sec_size(pieces, IWL_UCODE_REGULAR,
1122 IWL_UCODE_SECTION_INST));
1123 IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %Zd\n",
1124 get_sec_size(pieces, IWL_UCODE_REGULAR,
1125 IWL_UCODE_SECTION_DATA));
1126 IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %Zd\n",
1127 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
1128 IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %Zd\n",
1129 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1130
1131 /* Verify that uCode images will fit in card's SRAM. */
1132 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001133 cfg->max_inst_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001134 IWL_ERR(drv, "uCode instr len %Zd too large to fit in\n",
1135 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001136 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001137 return -1;
1138 }
1139
1140 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001141 cfg->max_data_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001142 IWL_ERR(drv, "uCode data len %Zd too large to fit in\n",
1143 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001144 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001145 return -1;
1146 }
1147
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001148 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1149 cfg->max_inst_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001150 IWL_ERR(drv, "uCode init instr len %Zd too large to fit in\n",
1151 get_sec_size(pieces, IWL_UCODE_INIT,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001152 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001153 return -1;
1154 }
1155
1156 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001157 cfg->max_data_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001158 IWL_ERR(drv, "uCode init data len %Zd too large to fit in\n",
1159 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001160 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001161 return -1;
1162 }
1163 return 0;
1164}
1165
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001166static struct iwl_op_mode *
1167_iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1168{
1169 const struct iwl_op_mode_ops *ops = op->ops;
1170 struct dentry *dbgfs_dir = NULL;
1171 struct iwl_op_mode *op_mode = NULL;
1172
1173#ifdef CONFIG_IWLWIFI_DEBUGFS
1174 drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1175 drv->dbgfs_drv);
1176 if (!drv->dbgfs_op_mode) {
1177 IWL_ERR(drv,
1178 "failed to create opmode debugfs directory\n");
1179 return op_mode;
1180 }
1181 dbgfs_dir = drv->dbgfs_op_mode;
1182#endif
1183
1184 op_mode = ops->start(drv->trans, drv->cfg, &drv->fw, dbgfs_dir);
1185
1186#ifdef CONFIG_IWLWIFI_DEBUGFS
1187 if (!op_mode) {
1188 debugfs_remove_recursive(drv->dbgfs_op_mode);
1189 drv->dbgfs_op_mode = NULL;
1190 }
1191#endif
1192
1193 return op_mode;
1194}
1195
1196static void _iwl_op_mode_stop(struct iwl_drv *drv)
1197{
1198 /* op_mode can be NULL if its start failed */
1199 if (drv->op_mode) {
1200 iwl_op_mode_stop(drv->op_mode);
1201 drv->op_mode = NULL;
1202
1203#ifdef CONFIG_IWLWIFI_DEBUGFS
1204 debugfs_remove_recursive(drv->dbgfs_op_mode);
1205 drv->dbgfs_op_mode = NULL;
1206#endif
1207 }
1208}
1209
Johannes Berg15854ef92012-03-05 11:24:50 -08001210/**
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001211 * iwl_req_fw_callback - callback when firmware was loaded
Johannes Berg15854ef92012-03-05 11:24:50 -08001212 *
1213 * If loaded successfully, copies the firmware into buffers
1214 * for the card to fetch (via DMA).
1215 */
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001216static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
Johannes Berg15854ef92012-03-05 11:24:50 -08001217{
Johannes Berg965974a62012-03-06 13:30:38 -08001218 struct iwl_drv *drv = context;
Johannes Berg965974a62012-03-06 13:30:38 -08001219 struct iwl_fw *fw = &drv->fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001220 struct iwl_ucode_header *ucode;
Don Frycc5f7e32012-05-16 22:54:27 +02001221 struct iwlwifi_opmode_table *op;
Johannes Berg15854ef92012-03-05 11:24:50 -08001222 int err;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001223 struct iwl_firmware_pieces *pieces;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001224 const unsigned int api_max = drv->cfg->ucode_api_max;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001225 const unsigned int api_min = drv->cfg->ucode_api_min;
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001226 size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -08001227 u32 api_ver;
David Spinadel6dfa8d02012-03-10 13:00:14 -08001228 int i;
Johannes Bergd4b10482012-06-12 19:50:43 +02001229 bool load_module = false;
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001230 bool usniffer_images = false;
Johannes Berg15854ef92012-03-05 11:24:50 -08001231
Luciano Coelho66140ad2013-08-12 19:30:21 +03001232 fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
Johannes Berg15854ef92012-03-05 11:24:50 -08001233 fw->ucode_capa.standard_phy_calibration_size =
1234 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
David Spinadel762533b2014-06-05 11:20:43 +03001235 fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
Johannes Berg15854ef92012-03-05 11:24:50 -08001236
Liad Kaufman490fefe2014-09-16 15:06:54 +03001237 pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1238 if (!pieces)
1239 return;
Johannes Berg15854ef92012-03-05 11:24:50 -08001240
Emmanuel Grumbach9d9b21d2016-03-24 08:44:57 +02001241 if (!ucode_raw)
Johannes Berg15854ef92012-03-05 11:24:50 -08001242 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001243
Johannes Berg965974a62012-03-06 13:30:38 -08001244 IWL_DEBUG_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1245 drv->firmware_name, ucode_raw->size);
Johannes Berg15854ef92012-03-05 11:24:50 -08001246
1247 /* Make sure that we got at least the API version number */
1248 if (ucode_raw->size < 4) {
Johannes Berg965974a62012-03-06 13:30:38 -08001249 IWL_ERR(drv, "File size way too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -08001250 goto try_again;
1251 }
1252
1253 /* Data from ucode file: header followed by uCode images */
1254 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1255
1256 if (ucode->ver)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001257 err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001258 else
Liad Kaufman490fefe2014-09-16 15:06:54 +03001259 err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001260 &fw->ucode_capa, &usniffer_images);
Johannes Berg15854ef92012-03-05 11:24:50 -08001261
1262 if (err)
1263 goto try_again;
1264
Luca Coelhof0d8f382016-04-25 20:02:09 +03001265 if (fw_has_api(&drv->fw.ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION))
1266 api_ver = drv->fw.ucode_ver;
1267 else
1268 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -08001269
1270 /*
1271 * api_ver should match the api version forming part of the
1272 * firmware filename ... but we don't check for that and only rely
1273 * on the API version read from firmware header from here on forward
1274 */
Emmanuel Grumbach75094dc2016-04-10 08:48:46 +03001275 if (api_ver < api_min || api_ver > api_max) {
1276 IWL_ERR(drv,
1277 "Driver unable to support your firmware API. "
1278 "Driver supports v%u, firmware is v%u.\n",
1279 api_max, api_ver);
1280 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001281 }
1282
Johannes Berg15854ef92012-03-05 11:24:50 -08001283 /*
David Spinadel4db2c9a2012-03-10 13:00:15 -08001284 * In mvm uCode there is no difference between data and instructions
1285 * sections.
1286 */
Johannes Bergca221c92016-04-28 14:40:59 +02001287 if (fw->type == IWL_FW_DVM && validate_sec_sizes(drv, pieces, drv->cfg))
Johannes Berg15854ef92012-03-05 11:24:50 -08001288 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001289
1290 /* Allocate ucode buffers for card's bus-master loading ... */
1291
1292 /* Runtime instructions and 2 copies of data:
1293 * 1) unmodified from disk
1294 * 2) backup cache for save/restore during power-downs */
David Spinadel6dfa8d02012-03-10 13:00:14 -08001295 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001296 if (iwl_alloc_ucode(drv, pieces, i))
Johannes Berg75813bd2012-05-16 22:49:49 +02001297 goto out_free_fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001298
Liad Kaufman490fefe2014-09-16 15:06:54 +03001299 if (pieces->dbg_dest_tlv) {
1300 drv->fw.dbg_dest_tlv =
1301 kmemdup(pieces->dbg_dest_tlv,
1302 sizeof(*pieces->dbg_dest_tlv) +
1303 sizeof(pieces->dbg_dest_tlv->reg_ops[0]) *
1304 drv->fw.dbg_dest_reg_num, GFP_KERNEL);
1305
1306 if (!drv->fw.dbg_dest_tlv)
1307 goto out_free_fw;
1308 }
1309
1310 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++) {
1311 if (pieces->dbg_conf_tlv[i]) {
1312 drv->fw.dbg_conf_tlv_len[i] =
1313 pieces->dbg_conf_tlv_len[i];
1314 drv->fw.dbg_conf_tlv[i] =
1315 kmemdup(pieces->dbg_conf_tlv[i],
1316 drv->fw.dbg_conf_tlv_len[i],
1317 GFP_KERNEL);
1318 if (!drv->fw.dbg_conf_tlv[i])
1319 goto out_free_fw;
1320 }
1321 }
1322
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001323 memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1324
1325 trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1326 sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1327 trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1328 trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1329 sizeof(struct iwl_fw_dbg_trigger_cmd);
1330 trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1331 sizeof(struct iwl_fw_dbg_trigger_mlme);
1332 trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1333 sizeof(struct iwl_fw_dbg_trigger_stats);
1334 trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1335 sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1336 trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1337 sizeof(struct iwl_fw_dbg_trigger_txq_timer);
Emmanuel Grumbach874c1742015-03-25 22:40:47 +02001338 trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1339 sizeof(struct iwl_fw_dbg_trigger_time_event);
Emmanuel Grumbach42032632015-04-15 12:43:46 +03001340 trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1341 sizeof(struct iwl_fw_dbg_trigger_ba);
Golan Ben-Ami1e8f1322015-08-23 17:57:33 +03001342 trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1343 sizeof(struct iwl_fw_dbg_trigger_tdls);
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001344
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001345 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++) {
1346 if (pieces->dbg_trigger_tlv[i]) {
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001347 /*
1348 * If the trigger isn't long enough, WARN and exit.
1349 * Someone is trying to debug something and he won't
1350 * be able to catch the bug he is trying to chase.
1351 * We'd better be noisy to be sure he knows what's
1352 * going on.
1353 */
1354 if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1355 (trigger_tlv_sz[i] +
1356 sizeof(struct iwl_fw_dbg_trigger_tlv))))
1357 goto out_free_fw;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001358 drv->fw.dbg_trigger_tlv_len[i] =
1359 pieces->dbg_trigger_tlv_len[i];
1360 drv->fw.dbg_trigger_tlv[i] =
1361 kmemdup(pieces->dbg_trigger_tlv[i],
1362 drv->fw.dbg_trigger_tlv_len[i],
1363 GFP_KERNEL);
1364 if (!drv->fw.dbg_trigger_tlv[i])
1365 goto out_free_fw;
1366 }
1367 }
1368
Johannes Berg15854ef92012-03-05 11:24:50 -08001369 /* Now that we can no longer fail, copy information */
1370
Johannes Berg2ed1e012016-10-20 09:41:14 +02001371 drv->fw.dbg_mem_tlv = pieces->dbg_mem_tlv;
1372 pieces->dbg_mem_tlv = NULL;
1373 drv->fw.n_dbg_mem_tlv = pieces->n_dbg_mem_tlv;
1374
Johannes Berg15854ef92012-03-05 11:24:50 -08001375 /*
1376 * The (size - 16) / 12 formula is based on the information recorded
1377 * for each event, which is of mode 1 (including timestamp) for all
1378 * new microcodes that include this information.
1379 */
Liad Kaufman490fefe2014-09-16 15:06:54 +03001380 fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1381 if (pieces->init_evtlog_size)
1382 fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001383 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001384 fw->init_evtlog_size =
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001385 drv->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001386 fw->init_errlog_ptr = pieces->init_errlog_ptr;
1387 fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1388 if (pieces->inst_evtlog_size)
1389 fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001390 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001391 fw->inst_evtlog_size =
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001392 drv->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001393 fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
Johannes Berg15854ef92012-03-05 11:24:50 -08001394
1395 /*
1396 * figure out the offset of chain noise reset and gain commands
1397 * base on the size of standard phy calibration commands table size
1398 */
1399 if (fw->ucode_capa.standard_phy_calibration_size >
1400 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1401 fw->ucode_capa.standard_phy_calibration_size =
1402 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1403
1404 /* We have our copies now, allow OS release its copies */
1405 release_firmware(ucode_raw);
Johannes Berg15854ef92012-03-05 11:24:50 -08001406
Johannes Bergff1ffb82012-06-06 09:42:57 +02001407 mutex_lock(&iwlwifi_opmode_table_mtx);
Johannes Bergca221c92016-04-28 14:40:59 +02001408 switch (fw->type) {
1409 case IWL_FW_DVM:
Johannes Berg8ca151b2013-01-24 14:25:36 +01001410 op = &iwlwifi_opmode_table[DVM_OP_MODE];
Johannes Bergca221c92016-04-28 14:40:59 +02001411 break;
1412 default:
1413 WARN(1, "Invalid fw type %d\n", fw->type);
1414 case IWL_FW_MVM:
1415 op = &iwlwifi_opmode_table[MVM_OP_MODE];
1416 break;
1417 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001418
Johannes Berg2b2719c2013-03-26 11:41:51 +01001419 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1420 drv->fw.fw_version, op->name);
1421
Don Frycc5f7e32012-05-16 22:54:27 +02001422 /* add this device to the list of devices using this op_mode */
1423 list_add_tail(&drv->list, &op->drv);
1424
1425 if (op->ops) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001426 drv->op_mode = _iwl_op_mode_start(drv, op);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001427
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001428 if (!drv->op_mode) {
1429 mutex_unlock(&iwlwifi_opmode_table_mtx);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001430 goto out_unbind;
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001431 }
Don Frycc5f7e32012-05-16 22:54:27 +02001432 } else {
Johannes Bergd4b10482012-06-12 19:50:43 +02001433 load_module = true;
Don Frycc5f7e32012-05-16 22:54:27 +02001434 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001435 mutex_unlock(&iwlwifi_opmode_table_mtx);
Johannes Berg15854ef92012-03-05 11:24:50 -08001436
Johannes Bergf69a23b2012-06-05 19:56:06 +02001437 /*
1438 * Complete the firmware request last so that
1439 * a driver unbind (stop) doesn't run while we
1440 * are doing the start() above.
1441 */
1442 complete(&drv->request_firmware_complete);
Johannes Bergd4b10482012-06-12 19:50:43 +02001443
1444 /*
1445 * Load the module last so we don't block anything
1446 * else from proceeding if the module fails to load
1447 * or hangs loading.
1448 */
Johannes Berg1618b2b2013-04-04 10:35:23 +02001449 if (load_module) {
1450 err = request_module("%s", op->name);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001451#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
Johannes Berg1618b2b2013-04-04 10:35:23 +02001452 if (err)
1453 IWL_ERR(drv,
1454 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1455 op->name, err);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001456#endif
Johannes Berg1618b2b2013-04-04 10:35:23 +02001457 }
Johannes Berg2ed1e012016-10-20 09:41:14 +02001458 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001459
1460 try_again:
1461 /* try next, if any */
1462 release_firmware(ucode_raw);
Johannes Berg965974a62012-03-06 13:30:38 -08001463 if (iwl_request_firmware(drv, false))
Johannes Berg15854ef92012-03-05 11:24:50 -08001464 goto out_unbind;
Johannes Berg2ed1e012016-10-20 09:41:14 +02001465 goto free;
Johannes Berg15854ef92012-03-05 11:24:50 -08001466
Johannes Berg75813bd2012-05-16 22:49:49 +02001467 out_free_fw:
Johannes Berg965974a62012-03-06 13:30:38 -08001468 IWL_ERR(drv, "failed to allocate pci memory\n");
1469 iwl_dealloc_ucode(drv);
Johannes Berg15854ef92012-03-05 11:24:50 -08001470 release_firmware(ucode_raw);
1471 out_unbind:
Johannes Berg965974a62012-03-06 13:30:38 -08001472 complete(&drv->request_firmware_complete);
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +02001473 device_release_driver(drv->trans->dev);
Johannes Berg2ed1e012016-10-20 09:41:14 +02001474 free:
Sara Sharoneef187a2016-10-25 11:38:31 +03001475 for (i = 0; i < ARRAY_SIZE(pieces->img); i++)
1476 kfree(pieces->img[i].sec);
Johannes Berg2ed1e012016-10-20 09:41:14 +02001477 kfree(pieces->dbg_mem_tlv);
1478 kfree(pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001479}
1480
Emmanuel Grumbach87ce05a2012-03-26 09:03:18 -07001481struct iwl_drv *iwl_drv_start(struct iwl_trans *trans,
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001482 const struct iwl_cfg *cfg)
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001483{
Johannes Berg965974a62012-03-06 13:30:38 -08001484 struct iwl_drv *drv;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001485 int ret;
1486
Johannes Berg965974a62012-03-06 13:30:38 -08001487 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001488 if (!drv) {
1489 ret = -ENOMEM;
1490 goto err;
1491 }
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001492
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001493 drv->trans = trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +02001494 drv->dev = trans->dev;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001495 drv->cfg = cfg;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001496
Johannes Berg965974a62012-03-06 13:30:38 -08001497 init_completion(&drv->request_firmware_complete);
Johannes Bergff1ffb82012-06-06 09:42:57 +02001498 INIT_LIST_HEAD(&drv->list);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001499
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001500#ifdef CONFIG_IWLWIFI_DEBUGFS
1501 /* Create the device debugfs entries. */
1502 drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1503 iwl_dbgfs_root);
1504
1505 if (!drv->dbgfs_drv) {
1506 IWL_ERR(drv, "failed to create debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001507 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001508 goto err_free_drv;
1509 }
1510
1511 /* Create transport layer debugfs dir */
1512 drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1513
1514 if (!drv->trans->dbgfs_dir) {
1515 IWL_ERR(drv, "failed to create transport debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001516 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001517 goto err_free_dbgfs;
1518 }
1519#endif
1520
Johannes Berg965974a62012-03-06 13:30:38 -08001521 ret = iwl_request_firmware(drv, true);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001522 if (ret) {
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001523 IWL_ERR(trans, "Couldn't request the fw\n");
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001524 goto err_fw;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001525 }
1526
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001527 return drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001528
1529err_fw:
1530#ifdef CONFIG_IWLWIFI_DEBUGFS
1531err_free_dbgfs:
1532 debugfs_remove_recursive(drv->dbgfs_drv);
1533err_free_drv:
1534#endif
1535 kfree(drv);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001536err:
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001537 return ERR_PTR(ret);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001538}
1539
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001540void iwl_drv_stop(struct iwl_drv *drv)
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001541{
Johannes Berg965974a62012-03-06 13:30:38 -08001542 wait_for_completion(&drv->request_firmware_complete);
Johannes Berg2e7eb112012-03-05 11:24:51 -08001543
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001544 _iwl_op_mode_stop(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001545
Johannes Berg965974a62012-03-06 13:30:38 -08001546 iwl_dealloc_ucode(drv);
Johannes Berg7db5b982012-03-05 11:24:48 -08001547
Johannes Bergff1ffb82012-06-06 09:42:57 +02001548 mutex_lock(&iwlwifi_opmode_table_mtx);
1549 /*
1550 * List is empty (this item wasn't added)
1551 * when firmware loading failed -- in that
1552 * case we can't remove it from any list.
1553 */
1554 if (!list_empty(&drv->list))
1555 list_del(&drv->list);
1556 mutex_unlock(&iwlwifi_opmode_table_mtx);
1557
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001558#ifdef CONFIG_IWLWIFI_DEBUGFS
1559 debugfs_remove_recursive(drv->dbgfs_drv);
1560#endif
1561
Johannes Berg965974a62012-03-06 13:30:38 -08001562 kfree(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001563}
Johannes Berg65de7e82012-04-17 07:36:30 -07001564
1565
1566/* shared module parameters */
1567struct iwl_mod_params iwlwifi_mod_params = {
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001568 .restart_fw = true,
Johannes Berg65de7e82012-04-17 07:36:30 -07001569 .bt_coex_active = true,
1570 .power_level = IWL_POWER_INDEX_1,
Eliad Peller7616f332014-11-20 17:33:43 +02001571 .d0i3_disable = true,
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001572 .d0i3_entry_delay = 1000,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001573 .uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
Johannes Berg65de7e82012-04-17 07:36:30 -07001574 /* the rest are 0 by default */
1575};
Johannes Berg48e29342013-03-01 00:13:33 +01001576IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
Don Frycc5f7e32012-05-16 22:54:27 +02001577
1578int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1579{
1580 int i;
1581 struct iwl_drv *drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001582 struct iwlwifi_opmode_table *op;
Don Frycc5f7e32012-05-16 22:54:27 +02001583
Johannes Bergff1ffb82012-06-06 09:42:57 +02001584 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001585 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001586 op = &iwlwifi_opmode_table[i];
1587 if (strcmp(op->name, name))
Don Frycc5f7e32012-05-16 22:54:27 +02001588 continue;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001589 op->ops = ops;
1590 /* TODO: need to handle exceptional case */
1591 list_for_each_entry(drv, &op->drv, list)
1592 drv->op_mode = _iwl_op_mode_start(drv, op);
1593
Johannes Bergff1ffb82012-06-06 09:42:57 +02001594 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001595 return 0;
1596 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001597 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001598 return -EIO;
1599}
Johannes Berg48e29342013-03-01 00:13:33 +01001600IWL_EXPORT_SYMBOL(iwl_opmode_register);
Don Frycc5f7e32012-05-16 22:54:27 +02001601
1602void iwl_opmode_deregister(const char *name)
1603{
1604 int i;
1605 struct iwl_drv *drv;
1606
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++) {
1609 if (strcmp(iwlwifi_opmode_table[i].name, name))
1610 continue;
1611 iwlwifi_opmode_table[i].ops = NULL;
1612
1613 /* call the stop routine for all devices */
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001614 list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1615 _iwl_op_mode_stop(drv);
1616
Johannes Bergff1ffb82012-06-06 09:42:57 +02001617 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001618 return;
1619 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001620 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001621}
Johannes Berg48e29342013-03-01 00:13:33 +01001622IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
Don Frycc5f7e32012-05-16 22:54:27 +02001623
1624static int __init iwl_drv_init(void)
1625{
1626 int i;
1627
Johannes Bergff1ffb82012-06-06 09:42:57 +02001628 mutex_init(&iwlwifi_opmode_table_mtx);
1629
Don Frycc5f7e32012-05-16 22:54:27 +02001630 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1631 INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1632
Johannes Berge32ec122014-10-22 11:22:56 +02001633 pr_info(DRV_DESCRIPTION "\n");
Don Frycc5f7e32012-05-16 22:54:27 +02001634 pr_info(DRV_COPYRIGHT "\n");
1635
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001636#ifdef CONFIG_IWLWIFI_DEBUGFS
1637 /* Create the root of iwlwifi debugfs subsystem. */
1638 iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1639
1640 if (!iwl_dbgfs_root)
1641 return -EFAULT;
1642#endif
1643
Don Frycc5f7e32012-05-16 22:54:27 +02001644 return iwl_pci_register_driver();
1645}
1646module_init(iwl_drv_init);
1647
1648static void __exit iwl_drv_exit(void)
1649{
1650 iwl_pci_unregister_driver();
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001651
1652#ifdef CONFIG_IWLWIFI_DEBUGFS
1653 debugfs_remove_recursive(iwl_dbgfs_root);
1654#endif
Don Frycc5f7e32012-05-16 22:54:27 +02001655}
1656module_exit(iwl_drv_exit);
Johannes Berg65de7e82012-04-17 07:36:30 -07001657
1658#ifdef CONFIG_IWLWIFI_DEBUG
1659module_param_named(debug, iwlwifi_mod_params.debug_level, uint,
1660 S_IRUGO | S_IWUSR);
1661MODULE_PARM_DESC(debug, "debug output mask");
1662#endif
1663
1664module_param_named(swcrypto, iwlwifi_mod_params.sw_crypto, int, S_IRUGO);
1665MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
1666module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, S_IRUGO);
1667MODULE_PARM_DESC(11n_disable,
Emmanuel Grumbach205e2212014-02-12 15:15:05 +02001668 "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 +02001669module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size,
Johannes Berg65de7e82012-04-17 07:36:30 -07001670 int, S_IRUGO);
Emmanuel Grumbach4bdd4df2016-04-07 16:44:42 +03001671MODULE_PARM_DESC(amsdu_size,
1672 "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 +02001673module_param_named(fw_restart, iwlwifi_mod_params.restart_fw, bool, S_IRUGO);
1674MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001675
1676module_param_named(antenna_coupling, iwlwifi_mod_params.ant_coupling,
1677 int, S_IRUGO);
1678MODULE_PARM_DESC(antenna_coupling,
Toralf Försterad25c1e2014-09-09 20:08:53 +02001679 "specify antenna coupling in dB (default: 0 dB)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001680
Eran Harary12147552013-05-09 08:07:59 +03001681module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, S_IRUGO);
1682MODULE_PARM_DESC(nvm_file, "NVM file name");
1683
Eliad Peller7616f332014-11-20 17:33:43 +02001684module_param_named(d0i3_disable, iwlwifi_mod_params.d0i3_disable,
1685 bool, S_IRUGO);
1686MODULE_PARM_DESC(d0i3_disable, "disable d0i3 functionality (default: Y)");
1687
Arik Nemtsov5711cac2014-12-28 09:23:16 +02001688module_param_named(lar_disable, iwlwifi_mod_params.lar_disable,
1689 bool, S_IRUGO);
1690MODULE_PARM_DESC(lar_disable, "disable LAR functionality (default: N)");
1691
Matt Chen1504f482014-04-24 18:43:18 +08001692module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001693 uint, S_IRUGO | S_IWUSR);
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001694MODULE_PARM_DESC(uapsd_disable,
1695 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
Matt Chen1504f482014-04-24 18:43:18 +08001696
Johannes Berg65de7e82012-04-17 07:36:30 -07001697/*
1698 * set bt_coex_active to true, uCode will do kill/defer
1699 * every time the priority line is asserted (BT is sending signals on the
1700 * priority line in the PCIx).
1701 * set bt_coex_active to false, uCode will ignore the BT activity and
1702 * perform the normal operation
1703 *
1704 * User might experience transmit issue on some platform due to WiFi/BT
1705 * co-exist problem. The possible behaviors are:
1706 * Able to scan and finding all the available AP
1707 * Not able to associate with any AP
1708 * On those platforms, WiFi communication can be restored by set
1709 * "bt_coex_active" module parameter to "false"
1710 *
1711 * default: bt_coex_active = true (BT_COEX_ENABLE)
1712 */
1713module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
1714 bool, S_IRUGO);
1715MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1716
1717module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, S_IRUGO);
1718MODULE_PARM_DESC(led_mode, "0=system default, "
1719 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1720
1721module_param_named(power_save, iwlwifi_mod_params.power_save,
1722 bool, S_IRUGO);
1723MODULE_PARM_DESC(power_save,
1724 "enable WiFi power management (default: disable)");
1725
1726module_param_named(power_level, iwlwifi_mod_params.power_level,
1727 int, S_IRUGO);
1728MODULE_PARM_DESC(power_level,
1729 "default power save level (range from 1 - 5, default: 1)");
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001730
1731module_param_named(fw_monitor, iwlwifi_mod_params.fw_monitor, bool, S_IRUGO);
Emmanuel Grumbach6d6a4752014-06-26 09:13:26 +03001732MODULE_PARM_DESC(fw_monitor,
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001733 "firmware monitor - to debug FW (default: false - needs lots of memory)");
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001734
1735module_param_named(d0i3_timeout, iwlwifi_mod_params.d0i3_entry_delay,
1736 uint, S_IRUGO);
1737MODULE_PARM_DESC(d0i3_timeout, "Timeout to D0i3 entry when idle (ms)");
Andrei Otcheretianski0d0985a2016-02-29 13:25:48 +02001738
1739module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool,
1740 S_IRUGO);
Emmanuel Grumbach5c887752016-03-14 15:21:06 +02001741MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities (default: false)");