blob: c9f0e0b2767619f3039b97e911ab1c12ad3afd2e [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 */
Liad Kaufman84b03122014-01-27 16:34:23 +0200120 char firmware_name[32]; /* 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 {
132 DVM_OP_MODE = 0,
133 MVM_OP_MODE = 1,
134};
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;
169 for (i = 0; i < IWL_UCODE_SECTION_MAX; i++)
170 iwl_free_fw_desc(drv, &img->sec[i]);
Johannes Berg15854ef92012-03-05 11:24:50 -0800171}
172
Johannes Berg965974a62012-03-06 13:30:38 -0800173static void iwl_dealloc_ucode(struct iwl_drv *drv)
Johannes Berg15854ef92012-03-05 11:24:50 -0800174{
David Spinadel6dfa8d02012-03-10 13:00:14 -0800175 int i;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300176
177 kfree(drv->fw.dbg_dest_tlv);
178 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++)
179 kfree(drv->fw.dbg_conf_tlv[i]);
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200180 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++)
181 kfree(drv->fw.dbg_trigger_tlv[i]);
Golan Ben-Amia6017b92016-03-14 12:24:20 +0200182 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_mem_tlv); i++)
183 kfree(drv->fw.dbg_mem_tlv[i]);
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
214#define UCODE_EXPERIMENTAL_INDEX 100
215#define UCODE_EXPERIMENTAL_TAG "exp"
216
Johannes Berg965974a62012-03-06 13:30:38 -0800217static int iwl_request_firmware(struct iwl_drv *drv, bool first)
Johannes Berg15854ef92012-03-05 11:24:50 -0800218{
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200219 const char *name_pre = drv->cfg->fw_name_pre;
Johannes Berg15854ef92012-03-05 11:24:50 -0800220 char tag[8];
221
222 if (first) {
223#ifdef CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE
Johannes Berg965974a62012-03-06 13:30:38 -0800224 drv->fw_index = UCODE_EXPERIMENTAL_INDEX;
Johannes Berg15854ef92012-03-05 11:24:50 -0800225 strcpy(tag, UCODE_EXPERIMENTAL_TAG);
Johannes Berg965974a62012-03-06 13:30:38 -0800226 } else if (drv->fw_index == UCODE_EXPERIMENTAL_INDEX) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800227#endif
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200228 drv->fw_index = drv->cfg->ucode_api_max;
Johannes Berg965974a62012-03-06 13:30:38 -0800229 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800230 } else {
Johannes Berg965974a62012-03-06 13:30:38 -0800231 drv->fw_index--;
232 sprintf(tag, "%d", drv->fw_index);
Johannes Berg15854ef92012-03-05 11:24:50 -0800233 }
234
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +0200235 if (drv->fw_index < drv->cfg->ucode_api_min) {
Johannes Berg965974a62012-03-06 13:30:38 -0800236 IWL_ERR(drv, "no suitable firmware found!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800237 return -ENOENT;
238 }
239
Liad Kaufman84b03122014-01-27 16:34:23 +0200240 snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s%s.ucode",
241 name_pre, tag);
Johannes Berg15854ef92012-03-05 11:24:50 -0800242
Johannes Berg965974a62012-03-06 13:30:38 -0800243 IWL_DEBUG_INFO(drv, "attempting to load firmware %s'%s'\n",
244 (drv->fw_index == UCODE_EXPERIMENTAL_INDEX)
Johannes Berg15854ef92012-03-05 11:24:50 -0800245 ? "EXPERIMENTAL " : "",
Johannes Berg965974a62012-03-06 13:30:38 -0800246 drv->firmware_name);
Johannes Berg15854ef92012-03-05 11:24:50 -0800247
Johannes Berg965974a62012-03-06 13:30:38 -0800248 return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +0200249 drv->trans->dev,
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +0300250 GFP_KERNEL, drv, iwl_req_fw_callback);
Johannes Berg15854ef92012-03-05 11:24:50 -0800251}
252
David Spinadel0cedacc2012-03-10 13:00:12 -0800253struct fw_img_parsing {
David Spinadel6dfa8d02012-03-10 13:00:14 -0800254 struct fw_sec sec[IWL_UCODE_SECTION_MAX];
David Spinadel0cedacc2012-03-10 13:00:12 -0800255 int sec_counter;
256};
257
David Spinadeled8c8362012-03-10 13:00:13 -0800258/*
259 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
260 */
261struct fw_sec_parsing {
262 __le32 offset;
263 const u8 data[];
264} __packed;
265
266/**
267 * struct iwl_tlv_calib_data - parse the default calib data from TLV
268 *
269 * @ucode_type: the uCode to which the following default calib relates.
270 * @calib: default calibrations.
271 */
272struct iwl_tlv_calib_data {
273 __le32 ucode_type;
Johannes Bergaa2b1772013-01-24 14:12:07 +0100274 struct iwl_tlv_calib_ctrl calib;
David Spinadeled8c8362012-03-10 13:00:13 -0800275} __packed;
276
David Spinadel0cedacc2012-03-10 13:00:12 -0800277struct iwl_firmware_pieces {
278 struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -0800279
280 u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
281 u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
Liad Kaufman490fefe2014-09-16 15:06:54 +0300282
283 /* FW debug data parsed for driver usage */
284 struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200285 struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
286 size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
287 struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
288 size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
Golan Ben-Amia6017b92016-03-14 12:24:20 +0200289 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv[FW_DBG_MEM_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -0800290};
291
David Spinadel0cedacc2012-03-10 13:00:12 -0800292/*
293 * These functions are just to extract uCode section data from the pieces
294 * structure.
295 */
296static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
297 enum iwl_ucode_type type,
298 int sec)
299{
300 return &pieces->img[type].sec[sec];
301}
302
303static void set_sec_data(struct iwl_firmware_pieces *pieces,
304 enum iwl_ucode_type type,
305 int sec,
306 const void *data)
307{
308 pieces->img[type].sec[sec].data = data;
309}
310
311static void set_sec_size(struct iwl_firmware_pieces *pieces,
312 enum iwl_ucode_type type,
313 int sec,
314 size_t size)
315{
316 pieces->img[type].sec[sec].size = size;
317}
318
319static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
320 enum iwl_ucode_type type,
321 int sec)
322{
323 return pieces->img[type].sec[sec].size;
324}
325
326static void set_sec_offset(struct iwl_firmware_pieces *pieces,
327 enum iwl_ucode_type type,
328 int sec,
329 u32 offset)
330{
331 pieces->img[type].sec[sec].offset = offset;
332}
333
Max Stepanove36e5432013-08-27 19:56:13 +0300334static int iwl_store_cscheme(struct iwl_fw *fw, const u8 *data, const u32 len)
335{
336 int i, j;
337 struct iwl_fw_cscheme_list *l = (struct iwl_fw_cscheme_list *)data;
338 struct iwl_fw_cipher_scheme *fwcs;
339 struct ieee80211_cipher_scheme *cs;
340 u32 cipher;
341
342 if (len < sizeof(*l) ||
343 len < sizeof(l->size) + l->size * sizeof(l->cs[0]))
344 return -EINVAL;
345
346 for (i = 0, j = 0; i < IWL_UCODE_MAX_CS && i < l->size; i++) {
347 fwcs = &l->cs[j];
348 cipher = le32_to_cpu(fwcs->cipher);
349
350 /* we skip schemes with zero cipher suite selector */
351 if (!cipher)
352 continue;
353
354 cs = &fw->cs[j++];
355 cs->cipher = cipher;
356 cs->iftype = BIT(NL80211_IFTYPE_STATION);
357 cs->hdr_len = fwcs->hdr_len;
358 cs->pn_len = fwcs->pn_len;
359 cs->pn_off = fwcs->pn_off;
360 cs->key_idx_off = fwcs->key_idx_off;
361 cs->key_idx_mask = fwcs->key_idx_mask;
362 cs->key_idx_shift = fwcs->key_idx_shift;
363 cs->mic_len = fwcs->mic_len;
364 }
365
366 return 0;
367}
368
Ayala Beker5ed472262016-02-03 15:36:52 +0200369static void iwl_store_gscan_capa(struct iwl_fw *fw, const u8 *data,
370 const u32 len)
Avraham Stern17564dd2015-03-22 13:11:01 +0200371{
372 struct iwl_fw_gscan_capabilities *fw_capa = (void *)data;
373 struct iwl_gscan_capabilities *capa = &fw->gscan_capa;
374
Avraham Stern17564dd2015-03-22 13:11:01 +0200375 capa->max_scan_cache_size = le32_to_cpu(fw_capa->max_scan_cache_size);
376 capa->max_scan_buckets = le32_to_cpu(fw_capa->max_scan_buckets);
377 capa->max_ap_cache_per_scan =
378 le32_to_cpu(fw_capa->max_ap_cache_per_scan);
379 capa->max_rssi_sample_size = le32_to_cpu(fw_capa->max_rssi_sample_size);
380 capa->max_scan_reporting_threshold =
381 le32_to_cpu(fw_capa->max_scan_reporting_threshold);
382 capa->max_hotlist_aps = le32_to_cpu(fw_capa->max_hotlist_aps);
383 capa->max_significant_change_aps =
384 le32_to_cpu(fw_capa->max_significant_change_aps);
385 capa->max_bssid_history_entries =
386 le32_to_cpu(fw_capa->max_bssid_history_entries);
Ayala Beker5ed472262016-02-03 15:36:52 +0200387 capa->max_hotlist_ssids = le32_to_cpu(fw_capa->max_hotlist_ssids);
388 capa->max_number_epno_networks =
389 le32_to_cpu(fw_capa->max_number_epno_networks);
390 capa->max_number_epno_networks_by_ssid =
391 le32_to_cpu(fw_capa->max_number_epno_networks_by_ssid);
392 capa->max_number_of_white_listed_ssid =
393 le32_to_cpu(fw_capa->max_number_of_white_listed_ssid);
394 capa->max_number_of_black_listed_ssid =
395 le32_to_cpu(fw_capa->max_number_of_black_listed_ssid);
Avraham Stern17564dd2015-03-22 13:11:01 +0200396}
397
David Spinadeled8c8362012-03-10 13:00:13 -0800398/*
399 * Gets uCode section from tlv.
400 */
401static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
402 const void *data, enum iwl_ucode_type type,
403 int size)
404{
405 struct fw_img_parsing *img;
406 struct fw_sec *sec;
407 struct fw_sec_parsing *sec_parse;
408
409 if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
410 return -1;
411
412 sec_parse = (struct fw_sec_parsing *)data;
413
414 img = &pieces->img[type];
415 sec = &img->sec[img->sec_counter];
416
417 sec->offset = le32_to_cpu(sec_parse->offset);
418 sec->data = sec_parse->data;
David Spinadel1176f432012-03-13 14:32:48 +0200419 sec->size = size - sizeof(sec_parse->offset);
David Spinadeled8c8362012-03-10 13:00:13 -0800420
421 ++img->sec_counter;
422
423 return 0;
424}
425
426static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
427{
428 struct iwl_tlv_calib_data *def_calib =
429 (struct iwl_tlv_calib_data *)data;
430 u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
431 if (ucode_type >= IWL_UCODE_TYPE_MAX) {
432 IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
433 ucode_type);
434 return -EINVAL;
435 }
Johannes Bergaa2b1772013-01-24 14:12:07 +0100436 drv->fw.default_calib[ucode_type].flow_trigger =
437 def_calib->calib.flow_trigger;
438 drv->fw.default_calib[ucode_type].event_trigger =
439 def_calib->calib.event_trigger;
440
David Spinadeled8c8362012-03-10 13:00:13 -0800441 return 0;
442}
443
Eran Hararya2978b12014-02-20 11:00:01 +0200444static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
445 struct iwl_ucode_capabilities *capa)
446{
447 const struct iwl_ucode_api *ucode_api = (void *)data;
448 u32 api_index = le32_to_cpu(ucode_api->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200449 u32 api_flags = le32_to_cpu(ucode_api->api_flags);
450 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200451
Johannes Bergd3f555f42015-09-16 12:21:32 +0200452 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100453 IWL_ERR(drv,
454 "api flags index %d larger than supported by driver\n",
455 api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200456 /* don't return an error so we can load FW that has more bits */
457 return 0;
Eran Hararya2978b12014-02-20 11:00:01 +0200458 }
459
Johannes Berg859d9142015-06-01 17:11:11 +0200460 for (i = 0; i < 32; i++) {
461 if (api_flags & BIT(i))
462 __set_bit(i + 32 * api_index, capa->_api);
463 }
Eran Hararya2978b12014-02-20 11:00:01 +0200464
465 return 0;
466}
467
468static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
469 struct iwl_ucode_capabilities *capa)
470{
471 const struct iwl_ucode_capa *ucode_capa = (void *)data;
472 u32 api_index = le32_to_cpu(ucode_capa->api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200473 u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
474 int i;
Eran Hararya2978b12014-02-20 11:00:01 +0200475
Johannes Bergd3f555f42015-09-16 12:21:32 +0200476 if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
Johannes Berg20f4d392015-11-21 21:57:52 +0100477 IWL_ERR(drv,
478 "capa flags index %d larger than supported by driver\n",
479 api_index);
Johannes Berg859d9142015-06-01 17:11:11 +0200480 /* don't return an error so we can load FW that has more bits */
481 return 0;
Eran Hararya2978b12014-02-20 11:00:01 +0200482 }
483
Johannes Berg859d9142015-06-01 17:11:11 +0200484 for (i = 0; i < 32; i++) {
485 if (api_flags & BIT(i))
486 __set_bit(i + 32 * api_index, capa->_capa);
487 }
Eran Hararya2978b12014-02-20 11:00:01 +0200488
489 return 0;
490}
491
Johannes Berg965974a62012-03-06 13:30:38 -0800492static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
David Spinadel0cedacc2012-03-10 13:00:12 -0800493 const struct firmware *ucode_raw,
494 struct iwl_firmware_pieces *pieces)
Johannes Berg15854ef92012-03-05 11:24:50 -0800495{
496 struct iwl_ucode_header *ucode = (void *)ucode_raw->data;
497 u32 api_ver, hdr_size, build;
498 char buildstr[25];
499 const u8 *src;
500
Johannes Berg965974a62012-03-06 13:30:38 -0800501 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
502 api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
Johannes Berg15854ef92012-03-05 11:24:50 -0800503
504 switch (api_ver) {
505 default:
506 hdr_size = 28;
507 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800508 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800509 return -EINVAL;
510 }
511 build = le32_to_cpu(ucode->u.v2.build);
David Spinadel0cedacc2012-03-10 13:00:12 -0800512 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
513 le32_to_cpu(ucode->u.v2.inst_size));
514 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
515 le32_to_cpu(ucode->u.v2.data_size));
516 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
517 le32_to_cpu(ucode->u.v2.init_size));
518 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
519 le32_to_cpu(ucode->u.v2.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800520 src = ucode->u.v2.data;
521 break;
522 case 0:
523 case 1:
524 case 2:
525 hdr_size = 24;
526 if (ucode_raw->size < hdr_size) {
Johannes Berg965974a62012-03-06 13:30:38 -0800527 IWL_ERR(drv, "File size too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800528 return -EINVAL;
529 }
530 build = 0;
David Spinadel0cedacc2012-03-10 13:00:12 -0800531 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
532 le32_to_cpu(ucode->u.v1.inst_size));
533 set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
534 le32_to_cpu(ucode->u.v1.data_size));
535 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
536 le32_to_cpu(ucode->u.v1.init_size));
537 set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
538 le32_to_cpu(ucode->u.v1.init_data_size));
Johannes Berg15854ef92012-03-05 11:24:50 -0800539 src = ucode->u.v1.data;
540 break;
541 }
542
543 if (build)
544 sprintf(buildstr, " build %u%s", build,
Johannes Berg965974a62012-03-06 13:30:38 -0800545 (drv->fw_index == UCODE_EXPERIMENTAL_INDEX)
Johannes Berg15854ef92012-03-05 11:24:50 -0800546 ? " (EXP)" : "");
547 else
548 buildstr[0] = '\0';
549
Johannes Berg965974a62012-03-06 13:30:38 -0800550 snprintf(drv->fw.fw_version,
551 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800552 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800553 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
554 IWL_UCODE_MINOR(drv->fw.ucode_ver),
555 IWL_UCODE_API(drv->fw.ucode_ver),
556 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800557 buildstr);
558
559 /* Verify size of file vs. image size info in file's header */
David Spinadel0cedacc2012-03-10 13:00:12 -0800560
561 if (ucode_raw->size != hdr_size +
562 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
563 get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
564 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
565 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800566
Johannes Berg965974a62012-03-06 13:30:38 -0800567 IWL_ERR(drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800568 "uCode file size %d does not match expected size\n",
569 (int)ucode_raw->size);
570 return -EINVAL;
571 }
572
Johannes Berg15854ef92012-03-05 11:24:50 -0800573
David Spinadel0cedacc2012-03-10 13:00:12 -0800574 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
575 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
576 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
577 IWLAGN_RTC_INST_LOWER_BOUND);
578 set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
579 src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
580 set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
581 IWLAGN_RTC_DATA_LOWER_BOUND);
582 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
583 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
584 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
585 IWLAGN_RTC_INST_LOWER_BOUND);
586 set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
587 src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
588 set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
589 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800590 return 0;
591}
592
Johannes Berg965974a62012-03-06 13:30:38 -0800593static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
Johannes Berg15854ef92012-03-05 11:24:50 -0800594 const struct firmware *ucode_raw,
David Spinadel0cedacc2012-03-10 13:00:12 -0800595 struct iwl_firmware_pieces *pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300596 struct iwl_ucode_capabilities *capa,
597 bool *usniffer_images)
Johannes Berg15854ef92012-03-05 11:24:50 -0800598{
599 struct iwl_tlv_ucode_header *ucode = (void *)ucode_raw->data;
600 struct iwl_ucode_tlv *tlv;
601 size_t len = ucode_raw->size;
602 const u8 *data;
Johannes Berg15854ef92012-03-05 11:24:50 -0800603 u32 tlv_len;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300604 u32 usniffer_img;
Johannes Berg15854ef92012-03-05 11:24:50 -0800605 enum iwl_ucode_tlv_type tlv_type;
606 const u8 *tlv_data;
607 char buildstr[25];
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300608 u32 build, paging_mem_size;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300609 int num_of_cpus;
Eran Harary61df7502014-12-01 17:40:37 +0200610 bool usniffer_req = false;
Avraham Stern17564dd2015-03-22 13:11:01 +0200611 bool gscan_capa = false;
Johannes Berg15854ef92012-03-05 11:24:50 -0800612
613 if (len < sizeof(*ucode)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800614 IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
Johannes Berg15854ef92012-03-05 11:24:50 -0800615 return -EINVAL;
616 }
617
618 if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
Johannes Berg965974a62012-03-06 13:30:38 -0800619 IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800620 le32_to_cpu(ucode->magic));
621 return -EINVAL;
622 }
623
Johannes Berg965974a62012-03-06 13:30:38 -0800624 drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
Emmanuel Grumbach06ddbf52014-06-02 08:34:53 +0300625 memcpy(drv->fw.human_readable, ucode->human_readable,
626 sizeof(drv->fw.human_readable));
Johannes Berg15854ef92012-03-05 11:24:50 -0800627 build = le32_to_cpu(ucode->build);
628
629 if (build)
630 sprintf(buildstr, " build %u%s", build,
Johannes Berg965974a62012-03-06 13:30:38 -0800631 (drv->fw_index == UCODE_EXPERIMENTAL_INDEX)
Johannes Berg15854ef92012-03-05 11:24:50 -0800632 ? " (EXP)" : "");
633 else
634 buildstr[0] = '\0';
635
Johannes Berg965974a62012-03-06 13:30:38 -0800636 snprintf(drv->fw.fw_version,
637 sizeof(drv->fw.fw_version),
Johannes Berg15854ef92012-03-05 11:24:50 -0800638 "%u.%u.%u.%u%s",
Johannes Berg965974a62012-03-06 13:30:38 -0800639 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
640 IWL_UCODE_MINOR(drv->fw.ucode_ver),
641 IWL_UCODE_API(drv->fw.ucode_ver),
642 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
Johannes Berg15854ef92012-03-05 11:24:50 -0800643 buildstr);
644
645 data = ucode->data;
646
647 len -= sizeof(*ucode);
648
649 while (len >= sizeof(*tlv)) {
Johannes Berg15854ef92012-03-05 11:24:50 -0800650 len -= sizeof(*tlv);
651 tlv = (void *)data;
652
653 tlv_len = le32_to_cpu(tlv->length);
Johannes Berg0479c192012-03-09 09:16:35 +0100654 tlv_type = le32_to_cpu(tlv->type);
Johannes Berg15854ef92012-03-05 11:24:50 -0800655 tlv_data = tlv->data;
656
657 if (len < tlv_len) {
Johannes Berg965974a62012-03-06 13:30:38 -0800658 IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
Johannes Berg15854ef92012-03-05 11:24:50 -0800659 len, tlv_len);
660 return -EINVAL;
661 }
662 len -= ALIGN(tlv_len, 4);
663 data += sizeof(*tlv) + ALIGN(tlv_len, 4);
664
Johannes Berg15854ef92012-03-05 11:24:50 -0800665 switch (tlv_type) {
666 case IWL_UCODE_TLV_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800667 set_sec_data(pieces, IWL_UCODE_REGULAR,
668 IWL_UCODE_SECTION_INST, tlv_data);
669 set_sec_size(pieces, IWL_UCODE_REGULAR,
670 IWL_UCODE_SECTION_INST, tlv_len);
671 set_sec_offset(pieces, IWL_UCODE_REGULAR,
672 IWL_UCODE_SECTION_INST,
673 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800674 break;
675 case IWL_UCODE_TLV_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800676 set_sec_data(pieces, IWL_UCODE_REGULAR,
677 IWL_UCODE_SECTION_DATA, tlv_data);
678 set_sec_size(pieces, IWL_UCODE_REGULAR,
679 IWL_UCODE_SECTION_DATA, tlv_len);
680 set_sec_offset(pieces, IWL_UCODE_REGULAR,
681 IWL_UCODE_SECTION_DATA,
682 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800683 break;
684 case IWL_UCODE_TLV_INIT:
David Spinadel0cedacc2012-03-10 13:00:12 -0800685 set_sec_data(pieces, IWL_UCODE_INIT,
686 IWL_UCODE_SECTION_INST, tlv_data);
687 set_sec_size(pieces, IWL_UCODE_INIT,
688 IWL_UCODE_SECTION_INST, tlv_len);
689 set_sec_offset(pieces, IWL_UCODE_INIT,
690 IWL_UCODE_SECTION_INST,
691 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800692 break;
693 case IWL_UCODE_TLV_INIT_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800694 set_sec_data(pieces, IWL_UCODE_INIT,
695 IWL_UCODE_SECTION_DATA, tlv_data);
696 set_sec_size(pieces, IWL_UCODE_INIT,
697 IWL_UCODE_SECTION_DATA, tlv_len);
698 set_sec_offset(pieces, IWL_UCODE_INIT,
699 IWL_UCODE_SECTION_DATA,
700 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800701 break;
702 case IWL_UCODE_TLV_BOOT:
Johannes Berg965974a62012-03-06 13:30:38 -0800703 IWL_ERR(drv, "Found unexpected BOOT ucode\n");
Johannes Berg15854ef92012-03-05 11:24:50 -0800704 break;
705 case IWL_UCODE_TLV_PROBE_MAX_LEN:
706 if (tlv_len != sizeof(u32))
707 goto invalid_tlv_len;
708 capa->max_probe_length =
709 le32_to_cpup((__le32 *)tlv_data);
710 break;
711 case IWL_UCODE_TLV_PAN:
712 if (tlv_len)
713 goto invalid_tlv_len;
714 capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
715 break;
716 case IWL_UCODE_TLV_FLAGS:
717 /* must be at least one u32 */
718 if (tlv_len < sizeof(u32))
719 goto invalid_tlv_len;
720 /* and a proper number of u32s */
721 if (tlv_len % sizeof(u32))
722 goto invalid_tlv_len;
723 /*
724 * This driver only reads the first u32 as
725 * right now no more features are defined,
726 * if that changes then either the driver
727 * will not work with the new firmware, or
728 * it'll not take advantage of new features.
729 */
730 capa->flags = le32_to_cpup((__le32 *)tlv_data);
731 break;
Eran Hararya2978b12014-02-20 11:00:01 +0200732 case IWL_UCODE_TLV_API_CHANGES_SET:
733 if (tlv_len != sizeof(struct iwl_ucode_api))
734 goto invalid_tlv_len;
735 if (iwl_set_ucode_api_flags(drv, tlv_data, capa))
736 goto tlv_error;
737 break;
738 case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
739 if (tlv_len != sizeof(struct iwl_ucode_capa))
740 goto invalid_tlv_len;
741 if (iwl_set_ucode_capabilities(drv, tlv_data, capa))
742 goto tlv_error;
743 break;
Johannes Berg15854ef92012-03-05 11:24:50 -0800744 case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
745 if (tlv_len != sizeof(u32))
746 goto invalid_tlv_len;
747 pieces->init_evtlog_ptr =
748 le32_to_cpup((__le32 *)tlv_data);
749 break;
750 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
751 if (tlv_len != sizeof(u32))
752 goto invalid_tlv_len;
753 pieces->init_evtlog_size =
754 le32_to_cpup((__le32 *)tlv_data);
755 break;
756 case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
757 if (tlv_len != sizeof(u32))
758 goto invalid_tlv_len;
759 pieces->init_errlog_ptr =
760 le32_to_cpup((__le32 *)tlv_data);
761 break;
762 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
763 if (tlv_len != sizeof(u32))
764 goto invalid_tlv_len;
765 pieces->inst_evtlog_ptr =
766 le32_to_cpup((__le32 *)tlv_data);
767 break;
768 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
769 if (tlv_len != sizeof(u32))
770 goto invalid_tlv_len;
771 pieces->inst_evtlog_size =
772 le32_to_cpup((__le32 *)tlv_data);
773 break;
774 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
775 if (tlv_len != sizeof(u32))
776 goto invalid_tlv_len;
777 pieces->inst_errlog_ptr =
778 le32_to_cpup((__le32 *)tlv_data);
779 break;
780 case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
781 if (tlv_len)
782 goto invalid_tlv_len;
Johannes Berg965974a62012-03-06 13:30:38 -0800783 drv->fw.enhance_sensitivity_table = true;
Johannes Berg15854ef92012-03-05 11:24:50 -0800784 break;
785 case IWL_UCODE_TLV_WOWLAN_INST:
David Spinadel0cedacc2012-03-10 13:00:12 -0800786 set_sec_data(pieces, IWL_UCODE_WOWLAN,
787 IWL_UCODE_SECTION_INST, tlv_data);
788 set_sec_size(pieces, IWL_UCODE_WOWLAN,
789 IWL_UCODE_SECTION_INST, tlv_len);
790 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
791 IWL_UCODE_SECTION_INST,
792 IWLAGN_RTC_INST_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800793 break;
794 case IWL_UCODE_TLV_WOWLAN_DATA:
David Spinadel0cedacc2012-03-10 13:00:12 -0800795 set_sec_data(pieces, IWL_UCODE_WOWLAN,
796 IWL_UCODE_SECTION_DATA, tlv_data);
797 set_sec_size(pieces, IWL_UCODE_WOWLAN,
798 IWL_UCODE_SECTION_DATA, tlv_len);
799 set_sec_offset(pieces, IWL_UCODE_WOWLAN,
800 IWL_UCODE_SECTION_DATA,
801 IWLAGN_RTC_DATA_LOWER_BOUND);
Johannes Berg15854ef92012-03-05 11:24:50 -0800802 break;
803 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
804 if (tlv_len != sizeof(u32))
805 goto invalid_tlv_len;
806 capa->standard_phy_calibration_size =
807 le32_to_cpup((__le32 *)tlv_data);
808 break;
David Spinadeled8c8362012-03-10 13:00:13 -0800809 case IWL_UCODE_TLV_SEC_RT:
810 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
811 tlv_len);
David Spinadel4db2c9a2012-03-10 13:00:15 -0800812 drv->fw.mvm_fw = true;
David Spinadeled8c8362012-03-10 13:00:13 -0800813 break;
814 case IWL_UCODE_TLV_SEC_INIT:
815 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
816 tlv_len);
David Spinadel4db2c9a2012-03-10 13:00:15 -0800817 drv->fw.mvm_fw = true;
David Spinadeled8c8362012-03-10 13:00:13 -0800818 break;
819 case IWL_UCODE_TLV_SEC_WOWLAN:
820 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
821 tlv_len);
David Spinadel4db2c9a2012-03-10 13:00:15 -0800822 drv->fw.mvm_fw = true;
David Spinadeled8c8362012-03-10 13:00:13 -0800823 break;
824 case IWL_UCODE_TLV_DEF_CALIB:
825 if (tlv_len != sizeof(struct iwl_tlv_calib_data))
826 goto invalid_tlv_len;
827 if (iwl_set_default_calib(drv, tlv_data))
828 goto tlv_error;
829 break;
830 case IWL_UCODE_TLV_PHY_SKU:
831 if (tlv_len != sizeof(u32))
832 goto invalid_tlv_len;
833 drv->fw.phy_config = le32_to_cpup((__le32 *)tlv_data);
Eran Harary77db0a32014-02-04 14:21:38 +0200834 drv->fw.valid_tx_ant = (drv->fw.phy_config &
835 FW_PHY_CFG_TX_CHAIN) >>
836 FW_PHY_CFG_TX_CHAIN_POS;
837 drv->fw.valid_rx_ant = (drv->fw.phy_config &
838 FW_PHY_CFG_RX_CHAIN) >>
839 FW_PHY_CFG_RX_CHAIN_POS;
David Spinadeled8c8362012-03-10 13:00:13 -0800840 break;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300841 case IWL_UCODE_TLV_SECURE_SEC_RT:
842 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
843 tlv_len);
844 drv->fw.mvm_fw = true;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300845 break;
846 case IWL_UCODE_TLV_SECURE_SEC_INIT:
847 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
848 tlv_len);
849 drv->fw.mvm_fw = true;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300850 break;
851 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
852 iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
853 tlv_len);
854 drv->fw.mvm_fw = true;
Eran Hararye2d6f4e2013-10-02 13:53:40 +0300855 break;
856 case IWL_UCODE_TLV_NUM_OF_CPU:
857 if (tlv_len != sizeof(u32))
858 goto invalid_tlv_len;
859 num_of_cpus =
860 le32_to_cpup((__le32 *)tlv_data);
861
862 if (num_of_cpus == 2) {
863 drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
864 true;
865 drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
866 true;
867 drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
868 true;
869 } else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
870 IWL_ERR(drv, "Driver support upto 2 CPUs\n");
871 return -EINVAL;
872 }
873 break;
Max Stepanove36e5432013-08-27 19:56:13 +0300874 case IWL_UCODE_TLV_CSCHEME:
875 if (iwl_store_cscheme(&drv->fw, tlv_data, tlv_len))
876 goto invalid_tlv_len;
877 break;
David Spinadel762533b2014-06-05 11:20:43 +0300878 case IWL_UCODE_TLV_N_SCAN_CHANNELS:
879 if (tlv_len != sizeof(u32))
880 goto invalid_tlv_len;
881 capa->n_scan_channels =
882 le32_to_cpup((__le32 *)tlv_data);
883 break;
Emmanuel Grumbach7e1223b2015-02-03 20:11:48 +0200884 case IWL_UCODE_TLV_FW_VERSION: {
885 __le32 *ptr = (void *)tlv_data;
886 u32 major, minor;
887 u8 local_comp;
888
889 if (tlv_len != sizeof(u32) * 3)
890 goto invalid_tlv_len;
891
892 major = le32_to_cpup(ptr++);
893 minor = le32_to_cpup(ptr++);
894 local_comp = le32_to_cpup(ptr);
895
896 snprintf(drv->fw.fw_version,
897 sizeof(drv->fw.fw_version), "%u.%u.%u",
898 major, minor, local_comp);
899 break;
900 }
Liad Kaufman490fefe2014-09-16 15:06:54 +0300901 case IWL_UCODE_TLV_FW_DBG_DEST: {
902 struct iwl_fw_dbg_dest_tlv *dest = (void *)tlv_data;
903
904 if (pieces->dbg_dest_tlv) {
905 IWL_ERR(drv,
906 "dbg destination ignored, already exists\n");
907 break;
908 }
909
910 pieces->dbg_dest_tlv = dest;
911 IWL_INFO(drv, "Found debug destination: %s\n",
912 get_fw_dbg_mode_string(dest->monitor_mode));
913
914 drv->fw.dbg_dest_reg_num =
915 tlv_len - offsetof(struct iwl_fw_dbg_dest_tlv,
916 reg_ops);
917 drv->fw.dbg_dest_reg_num /=
918 sizeof(drv->fw.dbg_dest_tlv->reg_ops[0]);
919
920 break;
921 }
922 case IWL_UCODE_TLV_FW_DBG_CONF: {
923 struct iwl_fw_dbg_conf_tlv *conf = (void *)tlv_data;
924
925 if (!pieces->dbg_dest_tlv) {
926 IWL_ERR(drv,
927 "Ignore dbg config %d - no destination configured\n",
928 conf->id);
929 break;
930 }
931
932 if (conf->id >= ARRAY_SIZE(drv->fw.dbg_conf_tlv)) {
933 IWL_ERR(drv,
934 "Skip unknown configuration: %d\n",
935 conf->id);
936 break;
937 }
938
939 if (pieces->dbg_conf_tlv[conf->id]) {
940 IWL_ERR(drv,
941 "Ignore duplicate dbg config %d\n",
942 conf->id);
943 break;
944 }
945
Eran Harary61df7502014-12-01 17:40:37 +0200946 if (conf->usniffer)
947 usniffer_req = true;
948
Liad Kaufman490fefe2014-09-16 15:06:54 +0300949 IWL_INFO(drv, "Found debug configuration: %d\n",
950 conf->id);
951
952 pieces->dbg_conf_tlv[conf->id] = conf;
953 pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
954 break;
955 }
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +0200956 case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
957 struct iwl_fw_dbg_trigger_tlv *trigger =
958 (void *)tlv_data;
959 u32 trigger_id = le32_to_cpu(trigger->id);
960
961 if (trigger_id >= ARRAY_SIZE(drv->fw.dbg_trigger_tlv)) {
962 IWL_ERR(drv,
963 "Skip unknown trigger: %u\n",
964 trigger->id);
965 break;
966 }
967
968 if (pieces->dbg_trigger_tlv[trigger_id]) {
969 IWL_ERR(drv,
970 "Ignore duplicate dbg trigger %u\n",
971 trigger->id);
972 break;
973 }
974
975 IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
976
977 pieces->dbg_trigger_tlv[trigger_id] = trigger;
978 pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
979 break;
980 }
Eran Harary61df7502014-12-01 17:40:37 +0200981 case IWL_UCODE_TLV_SEC_RT_USNIFFER:
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +0300982 *usniffer_images = true;
Eran Harary61df7502014-12-01 17:40:37 +0200983 iwl_store_ucode_sec(pieces, tlv_data,
984 IWL_UCODE_REGULAR_USNIFFER,
985 tlv_len);
986 break;
Matti Gottlieba6c4fb42015-07-15 16:19:29 +0300987 case IWL_UCODE_TLV_PAGING:
988 if (tlv_len != sizeof(u32))
989 goto invalid_tlv_len;
990 paging_mem_size = le32_to_cpup((__le32 *)tlv_data);
991
992 IWL_DEBUG_FW(drv,
993 "Paging: paging enabled (size = %u bytes)\n",
994 paging_mem_size);
995
996 if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
997 IWL_ERR(drv,
998 "Paging: driver supports up to %lu bytes for paging image\n",
999 MAX_PAGING_IMAGE_SIZE);
1000 return -EINVAL;
1001 }
1002
1003 if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
1004 IWL_ERR(drv,
1005 "Paging: image isn't multiple %lu\n",
1006 FW_PAGING_SIZE);
1007 return -EINVAL;
1008 }
1009
1010 drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
1011 paging_mem_size;
1012 usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
1013 drv->fw.img[usniffer_img].paging_mem_size =
1014 paging_mem_size;
1015 break;
Liad Kaufmanb4821762014-10-19 16:58:15 +02001016 case IWL_UCODE_TLV_SDIO_ADMA_ADDR:
1017 if (tlv_len != sizeof(u32))
1018 goto invalid_tlv_len;
1019 drv->fw.sdio_adma_addr =
1020 le32_to_cpup((__le32 *)tlv_data);
1021 break;
Avraham Stern17564dd2015-03-22 13:11:01 +02001022 case IWL_UCODE_TLV_FW_GSCAN_CAPA:
Ayala Beker5ed472262016-02-03 15:36:52 +02001023 /*
1024 * Don't return an error in case of a shorter tlv_len
1025 * to enable loading of FW that has an old format
1026 * of GSCAN capabilities TLV.
1027 */
1028 if (tlv_len < sizeof(struct iwl_fw_gscan_capabilities))
1029 break;
1030
1031 iwl_store_gscan_capa(&drv->fw, tlv_data, tlv_len);
Avraham Stern17564dd2015-03-22 13:11:01 +02001032 gscan_capa = true;
1033 break;
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001034 case IWL_UCODE_TLV_FW_MEM_SEG: {
1035 struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1036 (void *)tlv_data;
1037 u32 type;
1038
1039 if (tlv_len != (sizeof(*dbg_mem)))
1040 goto invalid_tlv_len;
1041
1042 type = le32_to_cpu(dbg_mem->data_type);
1043 drv->fw.dbg_dynamic_mem = true;
1044
1045 if (type >= ARRAY_SIZE(drv->fw.dbg_mem_tlv)) {
1046 IWL_ERR(drv,
1047 "Skip unknown dbg mem segment: %u\n",
1048 dbg_mem->data_type);
1049 break;
1050 }
1051
1052 if (pieces->dbg_mem_tlv[type]) {
1053 IWL_ERR(drv,
1054 "Ignore duplicate mem segment: %u\n",
1055 dbg_mem->data_type);
1056 break;
1057 }
1058
1059 IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1060 dbg_mem->data_type);
1061
1062 pieces->dbg_mem_tlv[type] = dbg_mem;
1063 break;
1064 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001065 default:
Johannes Berg965974a62012-03-06 13:30:38 -08001066 IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
Johannes Berg15854ef92012-03-05 11:24:50 -08001067 break;
1068 }
1069 }
1070
Golan Ben-Ami3d2d4422016-02-23 10:34:48 +02001071 if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1072 usniffer_req && !*usniffer_images) {
Eran Harary61df7502014-12-01 17:40:37 +02001073 IWL_ERR(drv,
1074 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1075 return -EINVAL;
1076 }
1077
Johannes Berg15854ef92012-03-05 11:24:50 -08001078 if (len) {
Johannes Berg965974a62012-03-06 13:30:38 -08001079 IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1080 iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001081 return -EINVAL;
1082 }
1083
Ayala Bekera0b09f12016-02-03 15:36:52 +02001084 /*
1085 * If ucode advertises that it supports GSCAN but GSCAN
1086 * capabilities TLV is not present, or if it has an old format,
1087 * warn and continue without GSCAN.
1088 */
1089 if (fw_has_capa(capa, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT) &&
1090 !gscan_capa) {
1091 IWL_DEBUG_INFO(drv,
1092 "GSCAN is supported but capabilities TLV is unavailable\n");
Avraham Stern17564dd2015-03-22 13:11:01 +02001093 __clear_bit((__force long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT,
1094 capa->_capa);
Ayala Bekera0b09f12016-02-03 15:36:52 +02001095 }
Avraham Stern17564dd2015-03-22 13:11:01 +02001096
Johannes Berg15854ef92012-03-05 11:24:50 -08001097 return 0;
1098
1099 invalid_tlv_len:
Johannes Berg965974a62012-03-06 13:30:38 -08001100 IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
David Spinadeled8c8362012-03-10 13:00:13 -08001101 tlv_error:
Johannes Berg965974a62012-03-06 13:30:38 -08001102 iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
Johannes Berg15854ef92012-03-05 11:24:50 -08001103
1104 return -EINVAL;
1105}
1106
Johannes Berg75813bd2012-05-16 22:49:49 +02001107static int iwl_alloc_ucode(struct iwl_drv *drv,
1108 struct iwl_firmware_pieces *pieces,
1109 enum iwl_ucode_type type)
David Spinadel6dfa8d02012-03-10 13:00:14 -08001110{
1111 int i;
1112 for (i = 0;
1113 i < IWL_UCODE_SECTION_MAX && get_sec_size(pieces, type, i);
1114 i++)
1115 if (iwl_alloc_fw_desc(drv, &(drv->fw.img[type].sec[i]),
Johannes Berg75813bd2012-05-16 22:49:49 +02001116 get_sec(pieces, type, i)))
1117 return -ENOMEM;
David Spinadel6dfa8d02012-03-10 13:00:14 -08001118 return 0;
1119}
1120
1121static int validate_sec_sizes(struct iwl_drv *drv,
1122 struct iwl_firmware_pieces *pieces,
1123 const struct iwl_cfg *cfg)
1124{
1125 IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %Zd\n",
1126 get_sec_size(pieces, IWL_UCODE_REGULAR,
1127 IWL_UCODE_SECTION_INST));
1128 IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %Zd\n",
1129 get_sec_size(pieces, IWL_UCODE_REGULAR,
1130 IWL_UCODE_SECTION_DATA));
1131 IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %Zd\n",
1132 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
1133 IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %Zd\n",
1134 get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1135
1136 /* Verify that uCode images will fit in card's SRAM. */
1137 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001138 cfg->max_inst_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001139 IWL_ERR(drv, "uCode instr len %Zd too large to fit in\n",
1140 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001141 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001142 return -1;
1143 }
1144
1145 if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001146 cfg->max_data_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001147 IWL_ERR(drv, "uCode data len %Zd too large to fit in\n",
1148 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001149 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001150 return -1;
1151 }
1152
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001153 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1154 cfg->max_inst_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001155 IWL_ERR(drv, "uCode init instr len %Zd too large to fit in\n",
1156 get_sec_size(pieces, IWL_UCODE_INIT,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001157 IWL_UCODE_SECTION_INST));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001158 return -1;
1159 }
1160
1161 if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001162 cfg->max_data_size) {
David Spinadel6dfa8d02012-03-10 13:00:14 -08001163 IWL_ERR(drv, "uCode init data len %Zd too large to fit in\n",
1164 get_sec_size(pieces, IWL_UCODE_REGULAR,
Emmanuel Grumbache70fe7e2015-03-01 17:18:00 +02001165 IWL_UCODE_SECTION_DATA));
David Spinadel6dfa8d02012-03-10 13:00:14 -08001166 return -1;
1167 }
1168 return 0;
1169}
1170
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001171static struct iwl_op_mode *
1172_iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1173{
1174 const struct iwl_op_mode_ops *ops = op->ops;
1175 struct dentry *dbgfs_dir = NULL;
1176 struct iwl_op_mode *op_mode = NULL;
1177
1178#ifdef CONFIG_IWLWIFI_DEBUGFS
1179 drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1180 drv->dbgfs_drv);
1181 if (!drv->dbgfs_op_mode) {
1182 IWL_ERR(drv,
1183 "failed to create opmode debugfs directory\n");
1184 return op_mode;
1185 }
1186 dbgfs_dir = drv->dbgfs_op_mode;
1187#endif
1188
1189 op_mode = ops->start(drv->trans, drv->cfg, &drv->fw, dbgfs_dir);
1190
1191#ifdef CONFIG_IWLWIFI_DEBUGFS
1192 if (!op_mode) {
1193 debugfs_remove_recursive(drv->dbgfs_op_mode);
1194 drv->dbgfs_op_mode = NULL;
1195 }
1196#endif
1197
1198 return op_mode;
1199}
1200
1201static void _iwl_op_mode_stop(struct iwl_drv *drv)
1202{
1203 /* op_mode can be NULL if its start failed */
1204 if (drv->op_mode) {
1205 iwl_op_mode_stop(drv->op_mode);
1206 drv->op_mode = NULL;
1207
1208#ifdef CONFIG_IWLWIFI_DEBUGFS
1209 debugfs_remove_recursive(drv->dbgfs_op_mode);
1210 drv->dbgfs_op_mode = NULL;
1211#endif
1212 }
1213}
1214
Johannes Berg15854ef92012-03-05 11:24:50 -08001215/**
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001216 * iwl_req_fw_callback - callback when firmware was loaded
Johannes Berg15854ef92012-03-05 11:24:50 -08001217 *
1218 * If loaded successfully, copies the firmware into buffers
1219 * for the card to fetch (via DMA).
1220 */
Emmanuel Grumbach1c8e11e2012-07-16 12:31:28 +03001221static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
Johannes Berg15854ef92012-03-05 11:24:50 -08001222{
Johannes Berg965974a62012-03-06 13:30:38 -08001223 struct iwl_drv *drv = context;
Johannes Berg965974a62012-03-06 13:30:38 -08001224 struct iwl_fw *fw = &drv->fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001225 struct iwl_ucode_header *ucode;
Don Frycc5f7e32012-05-16 22:54:27 +02001226 struct iwlwifi_opmode_table *op;
Johannes Berg15854ef92012-03-05 11:24:50 -08001227 int err;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001228 struct iwl_firmware_pieces *pieces;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001229 const unsigned int api_max = drv->cfg->ucode_api_max;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001230 const unsigned int api_min = drv->cfg->ucode_api_min;
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001231 size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
Johannes Berg15854ef92012-03-05 11:24:50 -08001232 u32 api_ver;
David Spinadel6dfa8d02012-03-10 13:00:14 -08001233 int i;
Johannes Bergd4b10482012-06-12 19:50:43 +02001234 bool load_module = false;
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001235 bool usniffer_images = false;
Johannes Berg15854ef92012-03-05 11:24:50 -08001236
Luciano Coelho66140ad2013-08-12 19:30:21 +03001237 fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
Johannes Berg15854ef92012-03-05 11:24:50 -08001238 fw->ucode_capa.standard_phy_calibration_size =
1239 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
David Spinadel762533b2014-06-05 11:20:43 +03001240 fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
Johannes Berg15854ef92012-03-05 11:24:50 -08001241
Liad Kaufman490fefe2014-09-16 15:06:54 +03001242 pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1243 if (!pieces)
1244 return;
Johannes Berg15854ef92012-03-05 11:24:50 -08001245
Emmanuel Grumbach9d9b21d2016-03-24 08:44:57 +02001246 if (!ucode_raw)
Johannes Berg15854ef92012-03-05 11:24:50 -08001247 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001248
Johannes Berg965974a62012-03-06 13:30:38 -08001249 IWL_DEBUG_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1250 drv->firmware_name, ucode_raw->size);
Johannes Berg15854ef92012-03-05 11:24:50 -08001251
1252 /* Make sure that we got at least the API version number */
1253 if (ucode_raw->size < 4) {
Johannes Berg965974a62012-03-06 13:30:38 -08001254 IWL_ERR(drv, "File size way too small!\n");
Johannes Berg15854ef92012-03-05 11:24:50 -08001255 goto try_again;
1256 }
1257
1258 /* Data from ucode file: header followed by uCode images */
1259 ucode = (struct iwl_ucode_header *)ucode_raw->data;
1260
1261 if (ucode->ver)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001262 err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001263 else
Liad Kaufman490fefe2014-09-16 15:06:54 +03001264 err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
Golan Ben-Amie6eb8ca2015-08-30 17:41:36 +03001265 &fw->ucode_capa, &usniffer_images);
Johannes Berg15854ef92012-03-05 11:24:50 -08001266
1267 if (err)
1268 goto try_again;
1269
Sara Sharon97f95c92016-03-07 16:55:20 +02001270 api_ver = drv->fw.ucode_ver;
Johannes Berg15854ef92012-03-05 11:24:50 -08001271
1272 /*
1273 * api_ver should match the api version forming part of the
1274 * firmware filename ... but we don't check for that and only rely
1275 * on the API version read from firmware header from here on forward
1276 */
1277 /* no api version check required for experimental uCode */
Johannes Berg965974a62012-03-06 13:30:38 -08001278 if (drv->fw_index != UCODE_EXPERIMENTAL_INDEX) {
Johannes Berg15854ef92012-03-05 11:24:50 -08001279 if (api_ver < api_min || api_ver > api_max) {
Johannes Berg965974a62012-03-06 13:30:38 -08001280 IWL_ERR(drv,
Johannes Berg15854ef92012-03-05 11:24:50 -08001281 "Driver unable to support your firmware API. "
1282 "Driver supports v%u, firmware is v%u.\n",
1283 api_max, api_ver);
1284 goto try_again;
1285 }
Johannes Berg15854ef92012-03-05 11:24:50 -08001286 }
1287
Johannes Berg15854ef92012-03-05 11:24:50 -08001288 /*
David Spinadel4db2c9a2012-03-10 13:00:15 -08001289 * In mvm uCode there is no difference between data and instructions
1290 * sections.
1291 */
Liad Kaufman490fefe2014-09-16 15:06:54 +03001292 if (!fw->mvm_fw && validate_sec_sizes(drv, pieces, drv->cfg))
Johannes Berg15854ef92012-03-05 11:24:50 -08001293 goto try_again;
Johannes Berg15854ef92012-03-05 11:24:50 -08001294
1295 /* Allocate ucode buffers for card's bus-master loading ... */
1296
1297 /* Runtime instructions and 2 copies of data:
1298 * 1) unmodified from disk
1299 * 2) backup cache for save/restore during power-downs */
David Spinadel6dfa8d02012-03-10 13:00:14 -08001300 for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
Liad Kaufman490fefe2014-09-16 15:06:54 +03001301 if (iwl_alloc_ucode(drv, pieces, i))
Johannes Berg75813bd2012-05-16 22:49:49 +02001302 goto out_free_fw;
Johannes Berg15854ef92012-03-05 11:24:50 -08001303
Liad Kaufman490fefe2014-09-16 15:06:54 +03001304 if (pieces->dbg_dest_tlv) {
1305 drv->fw.dbg_dest_tlv =
1306 kmemdup(pieces->dbg_dest_tlv,
1307 sizeof(*pieces->dbg_dest_tlv) +
1308 sizeof(pieces->dbg_dest_tlv->reg_ops[0]) *
1309 drv->fw.dbg_dest_reg_num, GFP_KERNEL);
1310
1311 if (!drv->fw.dbg_dest_tlv)
1312 goto out_free_fw;
1313 }
1314
1315 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_conf_tlv); i++) {
1316 if (pieces->dbg_conf_tlv[i]) {
1317 drv->fw.dbg_conf_tlv_len[i] =
1318 pieces->dbg_conf_tlv_len[i];
1319 drv->fw.dbg_conf_tlv[i] =
1320 kmemdup(pieces->dbg_conf_tlv[i],
1321 drv->fw.dbg_conf_tlv_len[i],
1322 GFP_KERNEL);
1323 if (!drv->fw.dbg_conf_tlv[i])
1324 goto out_free_fw;
1325 }
1326 }
1327
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001328 memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1329
1330 trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1331 sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1332 trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1333 trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1334 sizeof(struct iwl_fw_dbg_trigger_cmd);
1335 trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1336 sizeof(struct iwl_fw_dbg_trigger_mlme);
1337 trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1338 sizeof(struct iwl_fw_dbg_trigger_stats);
1339 trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1340 sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1341 trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1342 sizeof(struct iwl_fw_dbg_trigger_txq_timer);
Emmanuel Grumbach874c1742015-03-25 22:40:47 +02001343 trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1344 sizeof(struct iwl_fw_dbg_trigger_time_event);
Emmanuel Grumbach42032632015-04-15 12:43:46 +03001345 trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1346 sizeof(struct iwl_fw_dbg_trigger_ba);
Golan Ben-Ami1e8f1322015-08-23 17:57:33 +03001347 trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1348 sizeof(struct iwl_fw_dbg_trigger_tdls);
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001349
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001350 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_trigger_tlv); i++) {
1351 if (pieces->dbg_trigger_tlv[i]) {
Emmanuel Grumbach2841a2d2015-03-19 23:14:06 +02001352 /*
1353 * If the trigger isn't long enough, WARN and exit.
1354 * Someone is trying to debug something and he won't
1355 * be able to catch the bug he is trying to chase.
1356 * We'd better be noisy to be sure he knows what's
1357 * going on.
1358 */
1359 if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1360 (trigger_tlv_sz[i] +
1361 sizeof(struct iwl_fw_dbg_trigger_tlv))))
1362 goto out_free_fw;
Emmanuel Grumbachd2709ad2015-01-29 14:58:06 +02001363 drv->fw.dbg_trigger_tlv_len[i] =
1364 pieces->dbg_trigger_tlv_len[i];
1365 drv->fw.dbg_trigger_tlv[i] =
1366 kmemdup(pieces->dbg_trigger_tlv[i],
1367 drv->fw.dbg_trigger_tlv_len[i],
1368 GFP_KERNEL);
1369 if (!drv->fw.dbg_trigger_tlv[i])
1370 goto out_free_fw;
1371 }
1372 }
1373
Golan Ben-Amia6017b92016-03-14 12:24:20 +02001374 for (i = 0; i < ARRAY_SIZE(drv->fw.dbg_mem_tlv); i++) {
1375 if (pieces->dbg_mem_tlv[i]) {
1376 drv->fw.dbg_mem_tlv[i] =
1377 kmemdup(pieces->dbg_mem_tlv[i],
1378 sizeof(*drv->fw.dbg_mem_tlv[i]),
1379 GFP_KERNEL);
1380 if (!drv->fw.dbg_mem_tlv[i])
1381 goto out_free_fw;
1382 }
1383 }
1384
Johannes Berg15854ef92012-03-05 11:24:50 -08001385 /* Now that we can no longer fail, copy information */
1386
1387 /*
1388 * The (size - 16) / 12 formula is based on the information recorded
1389 * for each event, which is of mode 1 (including timestamp) for all
1390 * new microcodes that include this information.
1391 */
Liad Kaufman490fefe2014-09-16 15:06:54 +03001392 fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1393 if (pieces->init_evtlog_size)
1394 fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001395 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001396 fw->init_evtlog_size =
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001397 drv->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001398 fw->init_errlog_ptr = pieces->init_errlog_ptr;
1399 fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1400 if (pieces->inst_evtlog_size)
1401 fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
Johannes Berg15854ef92012-03-05 11:24:50 -08001402 else
Johannes Berg0692fe42012-03-06 13:30:37 -08001403 fw->inst_evtlog_size =
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001404 drv->cfg->base_params->max_event_log_size;
Liad Kaufman490fefe2014-09-16 15:06:54 +03001405 fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
Johannes Berg15854ef92012-03-05 11:24:50 -08001406
1407 /*
1408 * figure out the offset of chain noise reset and gain commands
1409 * base on the size of standard phy calibration commands table size
1410 */
1411 if (fw->ucode_capa.standard_phy_calibration_size >
1412 IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1413 fw->ucode_capa.standard_phy_calibration_size =
1414 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1415
1416 /* We have our copies now, allow OS release its copies */
1417 release_firmware(ucode_raw);
Johannes Berg15854ef92012-03-05 11:24:50 -08001418
Johannes Bergff1ffb82012-06-06 09:42:57 +02001419 mutex_lock(&iwlwifi_opmode_table_mtx);
Johannes Berg8ca151b2013-01-24 14:25:36 +01001420 if (fw->mvm_fw)
1421 op = &iwlwifi_opmode_table[MVM_OP_MODE];
1422 else
1423 op = &iwlwifi_opmode_table[DVM_OP_MODE];
Johannes Berg15854ef92012-03-05 11:24:50 -08001424
Johannes Berg2b2719c2013-03-26 11:41:51 +01001425 IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1426 drv->fw.fw_version, op->name);
1427
Don Frycc5f7e32012-05-16 22:54:27 +02001428 /* add this device to the list of devices using this op_mode */
1429 list_add_tail(&drv->list, &op->drv);
1430
1431 if (op->ops) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001432 drv->op_mode = _iwl_op_mode_start(drv, op);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001433
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001434 if (!drv->op_mode) {
1435 mutex_unlock(&iwlwifi_opmode_table_mtx);
John W. Linville7c9c46c2012-06-06 14:40:06 -04001436 goto out_unbind;
Dan Carpenterdaf67ce2012-06-14 21:35:26 +03001437 }
Don Frycc5f7e32012-05-16 22:54:27 +02001438 } else {
Johannes Bergd4b10482012-06-12 19:50:43 +02001439 load_module = true;
Don Frycc5f7e32012-05-16 22:54:27 +02001440 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001441 mutex_unlock(&iwlwifi_opmode_table_mtx);
Johannes Berg15854ef92012-03-05 11:24:50 -08001442
Johannes Bergf69a23b2012-06-05 19:56:06 +02001443 /*
1444 * Complete the firmware request last so that
1445 * a driver unbind (stop) doesn't run while we
1446 * are doing the start() above.
1447 */
1448 complete(&drv->request_firmware_complete);
Johannes Bergd4b10482012-06-12 19:50:43 +02001449
1450 /*
1451 * Load the module last so we don't block anything
1452 * else from proceeding if the module fails to load
1453 * or hangs loading.
1454 */
Johannes Berg1618b2b2013-04-04 10:35:23 +02001455 if (load_module) {
1456 err = request_module("%s", op->name);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001457#ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
Johannes Berg1618b2b2013-04-04 10:35:23 +02001458 if (err)
1459 IWL_ERR(drv,
1460 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1461 op->name, err);
Johannes Berg8edf3fd2013-05-28 21:32:47 +02001462#endif
Johannes Berg1618b2b2013-04-04 10:35:23 +02001463 }
Larry Fingera71aaf62015-03-23 14:07:57 -05001464 kfree(pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001465 return;
1466
1467 try_again:
1468 /* try next, if any */
1469 release_firmware(ucode_raw);
Johannes Berg965974a62012-03-06 13:30:38 -08001470 if (iwl_request_firmware(drv, false))
Johannes Berg15854ef92012-03-05 11:24:50 -08001471 goto out_unbind;
Emmanuel Grumbach31a5a092014-12-03 08:25:44 +02001472 kfree(pieces);
Johannes Berg15854ef92012-03-05 11:24:50 -08001473 return;
1474
Johannes Berg75813bd2012-05-16 22:49:49 +02001475 out_free_fw:
Johannes Berg965974a62012-03-06 13:30:38 -08001476 IWL_ERR(drv, "failed to allocate pci memory\n");
1477 iwl_dealloc_ucode(drv);
Johannes Berg15854ef92012-03-05 11:24:50 -08001478 release_firmware(ucode_raw);
1479 out_unbind:
Liad Kaufman490fefe2014-09-16 15:06:54 +03001480 kfree(pieces);
Johannes Berg965974a62012-03-06 13:30:38 -08001481 complete(&drv->request_firmware_complete);
Emmanuel Grumbach93faaee2012-03-22 17:51:44 +02001482 device_release_driver(drv->trans->dev);
Johannes Berg15854ef92012-03-05 11:24:50 -08001483}
1484
Emmanuel Grumbach87ce05a2012-03-26 09:03:18 -07001485struct iwl_drv *iwl_drv_start(struct iwl_trans *trans,
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001486 const struct iwl_cfg *cfg)
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001487{
Johannes Berg965974a62012-03-06 13:30:38 -08001488 struct iwl_drv *drv;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001489 int ret;
1490
Johannes Berg965974a62012-03-06 13:30:38 -08001491 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001492 if (!drv) {
1493 ret = -ENOMEM;
1494 goto err;
1495 }
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001496
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001497 drv->trans = trans;
Emmanuel Grumbach4b9844f2012-03-22 23:59:52 +02001498 drv->dev = trans->dev;
Emmanuel Grumbach68f360d2012-03-22 17:51:44 +02001499 drv->cfg = cfg;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001500
Johannes Berg965974a62012-03-06 13:30:38 -08001501 init_completion(&drv->request_firmware_complete);
Johannes Bergff1ffb82012-06-06 09:42:57 +02001502 INIT_LIST_HEAD(&drv->list);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001503
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001504#ifdef CONFIG_IWLWIFI_DEBUGFS
1505 /* Create the device debugfs entries. */
1506 drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1507 iwl_dbgfs_root);
1508
1509 if (!drv->dbgfs_drv) {
1510 IWL_ERR(drv, "failed to create debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001511 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001512 goto err_free_drv;
1513 }
1514
1515 /* Create transport layer debugfs dir */
1516 drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1517
1518 if (!drv->trans->dbgfs_dir) {
1519 IWL_ERR(drv, "failed to create transport debugfs directory\n");
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001520 ret = -ENOMEM;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001521 goto err_free_dbgfs;
1522 }
1523#endif
1524
Johannes Berg965974a62012-03-06 13:30:38 -08001525 ret = iwl_request_firmware(drv, true);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001526 if (ret) {
Emmanuel Grumbachc15797e2012-04-19 10:29:58 +03001527 IWL_ERR(trans, "Couldn't request the fw\n");
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001528 goto err_fw;
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001529 }
1530
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001531 return drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001532
1533err_fw:
1534#ifdef CONFIG_IWLWIFI_DEBUGFS
1535err_free_dbgfs:
1536 debugfs_remove_recursive(drv->dbgfs_drv);
1537err_free_drv:
1538#endif
1539 kfree(drv);
Luciano Coelhoeafe25e2013-08-13 10:34:55 +03001540err:
Emmanuel Grumbach59f547a2012-11-28 16:42:09 +02001541 return ERR_PTR(ret);
Emmanuel Grumbach5c58edc2012-02-07 14:18:40 +02001542}
1543
Emmanuel Grumbach9130bab2012-03-26 08:51:09 -07001544void iwl_drv_stop(struct iwl_drv *drv)
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001545{
Johannes Berg965974a62012-03-06 13:30:38 -08001546 wait_for_completion(&drv->request_firmware_complete);
Johannes Berg2e7eb112012-03-05 11:24:51 -08001547
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001548 _iwl_op_mode_stop(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001549
Johannes Berg965974a62012-03-06 13:30:38 -08001550 iwl_dealloc_ucode(drv);
Johannes Berg7db5b982012-03-05 11:24:48 -08001551
Johannes Bergff1ffb82012-06-06 09:42:57 +02001552 mutex_lock(&iwlwifi_opmode_table_mtx);
1553 /*
1554 * List is empty (this item wasn't added)
1555 * when firmware loading failed -- in that
1556 * case we can't remove it from any list.
1557 */
1558 if (!list_empty(&drv->list))
1559 list_del(&drv->list);
1560 mutex_unlock(&iwlwifi_opmode_table_mtx);
1561
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001562#ifdef CONFIG_IWLWIFI_DEBUGFS
1563 debugfs_remove_recursive(drv->dbgfs_drv);
1564#endif
1565
Johannes Berg965974a62012-03-06 13:30:38 -08001566 kfree(drv);
Emmanuel Grumbach07590f02012-02-07 14:27:31 +02001567}
Johannes Berg65de7e82012-04-17 07:36:30 -07001568
1569
1570/* shared module parameters */
1571struct iwl_mod_params iwlwifi_mod_params = {
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001572 .restart_fw = true,
Johannes Berg65de7e82012-04-17 07:36:30 -07001573 .bt_coex_active = true,
1574 .power_level = IWL_POWER_INDEX_1,
Eliad Peller7616f332014-11-20 17:33:43 +02001575 .d0i3_disable = true,
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001576 .d0i3_entry_delay = 1000,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001577 .uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
Johannes Berg65de7e82012-04-17 07:36:30 -07001578 /* the rest are 0 by default */
1579};
Johannes Berg48e29342013-03-01 00:13:33 +01001580IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
Don Frycc5f7e32012-05-16 22:54:27 +02001581
1582int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1583{
1584 int i;
1585 struct iwl_drv *drv;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001586 struct iwlwifi_opmode_table *op;
Don Frycc5f7e32012-05-16 22:54:27 +02001587
Johannes Bergff1ffb82012-06-06 09:42:57 +02001588 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001589 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001590 op = &iwlwifi_opmode_table[i];
1591 if (strcmp(op->name, name))
Don Frycc5f7e32012-05-16 22:54:27 +02001592 continue;
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001593 op->ops = ops;
1594 /* TODO: need to handle exceptional case */
1595 list_for_each_entry(drv, &op->drv, list)
1596 drv->op_mode = _iwl_op_mode_start(drv, op);
1597
Johannes Bergff1ffb82012-06-06 09:42:57 +02001598 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001599 return 0;
1600 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001601 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001602 return -EIO;
1603}
Johannes Berg48e29342013-03-01 00:13:33 +01001604IWL_EXPORT_SYMBOL(iwl_opmode_register);
Don Frycc5f7e32012-05-16 22:54:27 +02001605
1606void iwl_opmode_deregister(const char *name)
1607{
1608 int i;
1609 struct iwl_drv *drv;
1610
Johannes Bergff1ffb82012-06-06 09:42:57 +02001611 mutex_lock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001612 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1613 if (strcmp(iwlwifi_opmode_table[i].name, name))
1614 continue;
1615 iwlwifi_opmode_table[i].ops = NULL;
1616
1617 /* call the stop routine for all devices */
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001618 list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1619 _iwl_op_mode_stop(drv);
1620
Johannes Bergff1ffb82012-06-06 09:42:57 +02001621 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001622 return;
1623 }
Johannes Bergff1ffb82012-06-06 09:42:57 +02001624 mutex_unlock(&iwlwifi_opmode_table_mtx);
Don Frycc5f7e32012-05-16 22:54:27 +02001625}
Johannes Berg48e29342013-03-01 00:13:33 +01001626IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
Don Frycc5f7e32012-05-16 22:54:27 +02001627
1628static int __init iwl_drv_init(void)
1629{
1630 int i;
1631
Johannes Bergff1ffb82012-06-06 09:42:57 +02001632 mutex_init(&iwlwifi_opmode_table_mtx);
1633
Don Frycc5f7e32012-05-16 22:54:27 +02001634 for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1635 INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1636
Johannes Berge32ec122014-10-22 11:22:56 +02001637 pr_info(DRV_DESCRIPTION "\n");
Don Frycc5f7e32012-05-16 22:54:27 +02001638 pr_info(DRV_COPYRIGHT "\n");
1639
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001640#ifdef CONFIG_IWLWIFI_DEBUGFS
1641 /* Create the root of iwlwifi debugfs subsystem. */
1642 iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1643
1644 if (!iwl_dbgfs_root)
1645 return -EFAULT;
1646#endif
1647
Don Frycc5f7e32012-05-16 22:54:27 +02001648 return iwl_pci_register_driver();
1649}
1650module_init(iwl_drv_init);
1651
1652static void __exit iwl_drv_exit(void)
1653{
1654 iwl_pci_unregister_driver();
Meenakshi Venkataraman9da987a2012-07-16 18:43:56 -07001655
1656#ifdef CONFIG_IWLWIFI_DEBUGFS
1657 debugfs_remove_recursive(iwl_dbgfs_root);
1658#endif
Don Frycc5f7e32012-05-16 22:54:27 +02001659}
1660module_exit(iwl_drv_exit);
Johannes Berg65de7e82012-04-17 07:36:30 -07001661
1662#ifdef CONFIG_IWLWIFI_DEBUG
1663module_param_named(debug, iwlwifi_mod_params.debug_level, uint,
1664 S_IRUGO | S_IWUSR);
1665MODULE_PARM_DESC(debug, "debug output mask");
1666#endif
1667
1668module_param_named(swcrypto, iwlwifi_mod_params.sw_crypto, int, S_IRUGO);
1669MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
1670module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, S_IRUGO);
1671MODULE_PARM_DESC(11n_disable,
Emmanuel Grumbach205e2212014-02-12 15:15:05 +02001672 "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 +02001673module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size,
Johannes Berg65de7e82012-04-17 07:36:30 -07001674 int, S_IRUGO);
Emmanuel Grumbach6c4fbcb2015-11-10 11:57:41 +02001675MODULE_PARM_DESC(amsdu_size, "amsdu size 0:4K 1:8K 2:12K (default 0)");
Emmanuel Grumbach490953a2013-03-04 08:53:07 +02001676module_param_named(fw_restart, iwlwifi_mod_params.restart_fw, bool, S_IRUGO);
1677MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001678
1679module_param_named(antenna_coupling, iwlwifi_mod_params.ant_coupling,
1680 int, S_IRUGO);
1681MODULE_PARM_DESC(antenna_coupling,
Toralf Försterad25c1e2014-09-09 20:08:53 +02001682 "specify antenna coupling in dB (default: 0 dB)");
Johannes Berg65de7e82012-04-17 07:36:30 -07001683
Eran Harary12147552013-05-09 08:07:59 +03001684module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, S_IRUGO);
1685MODULE_PARM_DESC(nvm_file, "NVM file name");
1686
Eliad Peller7616f332014-11-20 17:33:43 +02001687module_param_named(d0i3_disable, iwlwifi_mod_params.d0i3_disable,
1688 bool, S_IRUGO);
1689MODULE_PARM_DESC(d0i3_disable, "disable d0i3 functionality (default: Y)");
1690
Arik Nemtsov5711cac2014-12-28 09:23:16 +02001691module_param_named(lar_disable, iwlwifi_mod_params.lar_disable,
1692 bool, S_IRUGO);
1693MODULE_PARM_DESC(lar_disable, "disable LAR functionality (default: N)");
1694
Matt Chen1504f482014-04-24 18:43:18 +08001695module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable,
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001696 uint, S_IRUGO | S_IWUSR);
Emmanuel Grumbach11dee0b2016-03-15 11:04:29 +02001697MODULE_PARM_DESC(uapsd_disable,
1698 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
Matt Chen1504f482014-04-24 18:43:18 +08001699
Johannes Berg65de7e82012-04-17 07:36:30 -07001700/*
1701 * set bt_coex_active to true, uCode will do kill/defer
1702 * every time the priority line is asserted (BT is sending signals on the
1703 * priority line in the PCIx).
1704 * set bt_coex_active to false, uCode will ignore the BT activity and
1705 * perform the normal operation
1706 *
1707 * User might experience transmit issue on some platform due to WiFi/BT
1708 * co-exist problem. The possible behaviors are:
1709 * Able to scan and finding all the available AP
1710 * Not able to associate with any AP
1711 * On those platforms, WiFi communication can be restored by set
1712 * "bt_coex_active" module parameter to "false"
1713 *
1714 * default: bt_coex_active = true (BT_COEX_ENABLE)
1715 */
1716module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
1717 bool, S_IRUGO);
1718MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1719
1720module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, S_IRUGO);
1721MODULE_PARM_DESC(led_mode, "0=system default, "
1722 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1723
1724module_param_named(power_save, iwlwifi_mod_params.power_save,
1725 bool, S_IRUGO);
1726MODULE_PARM_DESC(power_save,
1727 "enable WiFi power management (default: disable)");
1728
1729module_param_named(power_level, iwlwifi_mod_params.power_level,
1730 int, S_IRUGO);
1731MODULE_PARM_DESC(power_level,
1732 "default power save level (range from 1 - 5, default: 1)");
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001733
1734module_param_named(fw_monitor, iwlwifi_mod_params.fw_monitor, bool, S_IRUGO);
Emmanuel Grumbach6d6a4752014-06-26 09:13:26 +03001735MODULE_PARM_DESC(fw_monitor,
Emmanuel Grumbachc2d20202014-06-01 08:05:52 +03001736 "firmware monitor - to debug FW (default: false - needs lots of memory)");
Luca Coelhob2c5d3a2015-09-18 14:37:46 +03001737
1738module_param_named(d0i3_timeout, iwlwifi_mod_params.d0i3_entry_delay,
1739 uint, S_IRUGO);
1740MODULE_PARM_DESC(d0i3_timeout, "Timeout to D0i3 entry when idle (ms)");
Andrei Otcheretianski0d0985a2016-02-29 13:25:48 +02001741
1742module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool,
1743 S_IRUGO);
1744MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities");