xref: /linux/drivers/net/wireless/intel/iwlwifi/iwl-drv.c (revision ee8287e068a3995b0f8001dd6931e221dfb7c530)
1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3  * Copyright (C) 2005-2014, 2018-2024 Intel Corporation
4  * Copyright (C) 2013-2015 Intel Mobile Communications GmbH
5  * Copyright (C) 2016-2017 Intel Deutschland GmbH
6  */
7 #include <linux/completion.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/firmware.h>
10 #include <linux/module.h>
11 #include <linux/vmalloc.h>
12 
13 #include "iwl-drv.h"
14 #include "iwl-csr.h"
15 #include "iwl-debug.h"
16 #include "iwl-trans.h"
17 #include "iwl-op-mode.h"
18 #include "iwl-agn-hw.h"
19 #include "fw/img.h"
20 #include "iwl-dbg-tlv.h"
21 #include "iwl-config.h"
22 #include "iwl-modparams.h"
23 #include "fw/api/alive.h"
24 #include "fw/api/mac.h"
25 
26 /******************************************************************************
27  *
28  * module boiler plate
29  *
30  ******************************************************************************/
31 
32 #define DRV_DESCRIPTION	"Intel(R) Wireless WiFi driver for Linux"
33 MODULE_DESCRIPTION(DRV_DESCRIPTION);
34 MODULE_LICENSE("GPL");
35 
36 #ifdef CONFIG_IWLWIFI_DEBUGFS
37 static struct dentry *iwl_dbgfs_root;
38 #endif
39 
40 /**
41  * struct iwl_drv - drv common data
42  * @list: list of drv structures using this opmode
43  * @fw: the iwl_fw structure
44  * @op_mode: the running op_mode
45  * @trans: transport layer
46  * @dev: for debug prints only
47  * @fw_index: firmware revision to try loading
48  * @firmware_name: composite filename of ucode file to load
49  * @request_firmware_complete: the firmware has been obtained from user space
50  * @dbgfs_drv: debugfs root directory entry
51  * @dbgfs_trans: debugfs transport directory entry
52  * @dbgfs_op_mode: debugfs op_mode directory entry
53  */
54 struct iwl_drv {
55 	struct list_head list;
56 	struct iwl_fw fw;
57 
58 	struct iwl_op_mode *op_mode;
59 	struct iwl_trans *trans;
60 	struct device *dev;
61 
62 	int fw_index;                   /* firmware we're trying to load */
63 	char firmware_name[64];         /* name of firmware file to load */
64 
65 	struct completion request_firmware_complete;
66 
67 #ifdef CONFIG_IWLWIFI_DEBUGFS
68 	struct dentry *dbgfs_drv;
69 	struct dentry *dbgfs_trans;
70 	struct dentry *dbgfs_op_mode;
71 #endif
72 };
73 
74 enum {
75 	DVM_OP_MODE,
76 	MVM_OP_MODE,
77 };
78 
79 /* Protects the table contents, i.e. the ops pointer & drv list */
80 static DEFINE_MUTEX(iwlwifi_opmode_table_mtx);
81 static struct iwlwifi_opmode_table {
82 	const char *name;			/* name: iwldvm, iwlmvm, etc */
83 	const struct iwl_op_mode_ops *ops;	/* pointer to op_mode ops */
84 	struct list_head drv;		/* list of devices using this op_mode */
85 } iwlwifi_opmode_table[] = {		/* ops set when driver is initialized */
86 	[DVM_OP_MODE] = { .name = "iwldvm", .ops = NULL },
87 	[MVM_OP_MODE] = { .name = "iwlmvm", .ops = NULL },
88 };
89 
90 #define IWL_DEFAULT_SCAN_CHANNELS 40
91 
92 /*
93  * struct fw_sec: Just for the image parsing process.
94  * For the fw storage we are using struct fw_desc.
95  */
96 struct fw_sec {
97 	const void *data;		/* the sec data */
98 	size_t size;			/* section size */
99 	u32 offset;			/* offset of writing in the device */
100 };
101 
102 static void iwl_free_fw_desc(struct iwl_drv *drv, struct fw_desc *desc)
103 {
104 	vfree(desc->data);
105 	desc->data = NULL;
106 	desc->len = 0;
107 }
108 
109 static void iwl_free_fw_img(struct iwl_drv *drv, struct fw_img *img)
110 {
111 	int i;
112 	for (i = 0; i < img->num_sec; i++)
113 		iwl_free_fw_desc(drv, &img->sec[i]);
114 	kfree(img->sec);
115 }
116 
117 static void iwl_dealloc_ucode(struct iwl_drv *drv)
118 {
119 	int i;
120 
121 	kfree(drv->fw.dbg.dest_tlv);
122 	for (i = 0; i < ARRAY_SIZE(drv->fw.dbg.conf_tlv); i++)
123 		kfree(drv->fw.dbg.conf_tlv[i]);
124 	for (i = 0; i < ARRAY_SIZE(drv->fw.dbg.trigger_tlv); i++)
125 		kfree(drv->fw.dbg.trigger_tlv[i]);
126 	kfree(drv->fw.dbg.mem_tlv);
127 	kfree(drv->fw.iml);
128 	kfree(drv->fw.ucode_capa.cmd_versions);
129 	kfree(drv->fw.phy_integration_ver);
130 	kfree(drv->trans->dbg.pc_data);
131 	drv->trans->dbg.pc_data = NULL;
132 
133 	for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
134 		iwl_free_fw_img(drv, drv->fw.img + i);
135 
136 	/* clear the data for the aborted load case */
137 	memset(&drv->fw, 0, sizeof(drv->fw));
138 }
139 
140 static int iwl_alloc_fw_desc(struct iwl_drv *drv, struct fw_desc *desc,
141 			     struct fw_sec *sec)
142 {
143 	void *data;
144 
145 	desc->data = NULL;
146 
147 	if (!sec || !sec->size)
148 		return -EINVAL;
149 
150 	data = vmalloc(sec->size);
151 	if (!data)
152 		return -ENOMEM;
153 
154 	desc->len = sec->size;
155 	desc->offset = sec->offset;
156 	memcpy(data, sec->data, desc->len);
157 	desc->data = data;
158 
159 	return 0;
160 }
161 
162 static inline char iwl_drv_get_step(int step)
163 {
164 	if (step == SILICON_Z_STEP)
165 		return 'z';
166 	if (step == SILICON_TC_STEP)
167 		return 'a';
168 	return 'a' + step;
169 }
170 
171 const char *iwl_drv_get_fwname_pre(struct iwl_trans *trans, char *buf)
172 {
173 	char mac_step, rf_step;
174 	const char *rf, *cdb;
175 
176 	if (trans->cfg->fw_name_pre)
177 		return trans->cfg->fw_name_pre;
178 
179 	if (WARN_ON(!trans->cfg->fw_name_mac))
180 		return "unconfigured";
181 
182 	mac_step = iwl_drv_get_step(trans->hw_rev_step);
183 
184 	rf_step = iwl_drv_get_step(CSR_HW_RFID_STEP(trans->hw_rf_id));
185 
186 	switch (CSR_HW_RFID_TYPE(trans->hw_rf_id)) {
187 	case IWL_CFG_RF_TYPE_HR1:
188 	case IWL_CFG_RF_TYPE_HR2:
189 		rf = "hr";
190 		rf_step = 'b';
191 		break;
192 	case IWL_CFG_RF_TYPE_GF:
193 		rf = "gf";
194 		break;
195 	case IWL_CFG_RF_TYPE_FM:
196 		rf = "fm";
197 		break;
198 	case IWL_CFG_RF_TYPE_WH:
199 		if (SILICON_Z_STEP ==
200 		    CSR_HW_RFID_STEP(trans->hw_rf_id)) {
201 			rf = "whtc";
202 			rf_step = 'a';
203 		} else {
204 			rf = "wh";
205 		}
206 		break;
207 	default:
208 		return "unknown-rf";
209 	}
210 
211 	cdb = CSR_HW_RFID_IS_CDB(trans->hw_rf_id) ? "4" : "";
212 
213 	scnprintf(buf, FW_NAME_PRE_BUFSIZE,
214 		  "iwlwifi-%s-%c0-%s%s-%c0",
215 		  trans->cfg->fw_name_mac, mac_step,
216 		  rf, cdb, rf_step);
217 
218 	return buf;
219 }
220 IWL_EXPORT_SYMBOL(iwl_drv_get_fwname_pre);
221 
222 static void iwl_req_fw_callback(const struct firmware *ucode_raw,
223 				void *context);
224 
225 static int iwl_request_firmware(struct iwl_drv *drv, bool first)
226 {
227 	const struct iwl_cfg *cfg = drv->trans->cfg;
228 	char _fw_name_pre[FW_NAME_PRE_BUFSIZE];
229 	const char *fw_name_pre;
230 
231 	if (drv->trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_9000 &&
232 	    (drv->trans->hw_rev_step != SILICON_B_STEP &&
233 	     drv->trans->hw_rev_step != SILICON_C_STEP)) {
234 		IWL_ERR(drv,
235 			"Only HW steps B and C are currently supported (0x%0x)\n",
236 			drv->trans->hw_rev);
237 		return -EINVAL;
238 	}
239 
240 	fw_name_pre = iwl_drv_get_fwname_pre(drv->trans, _fw_name_pre);
241 
242 	if (first)
243 		drv->fw_index = cfg->ucode_api_max;
244 	else
245 		drv->fw_index--;
246 
247 	if (drv->fw_index < cfg->ucode_api_min) {
248 		IWL_ERR(drv, "no suitable firmware found!\n");
249 
250 		if (cfg->ucode_api_min == cfg->ucode_api_max) {
251 			IWL_ERR(drv, "%s-%d is required\n", fw_name_pre,
252 				cfg->ucode_api_max);
253 		} else {
254 			IWL_ERR(drv, "minimum version required: %s-%d\n",
255 				fw_name_pre, cfg->ucode_api_min);
256 			IWL_ERR(drv, "maximum version supported: %s-%d\n",
257 				fw_name_pre, cfg->ucode_api_max);
258 		}
259 
260 		IWL_ERR(drv,
261 			"check git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git\n");
262 		return -ENOENT;
263 	}
264 
265 	snprintf(drv->firmware_name, sizeof(drv->firmware_name), "%s-%d.ucode",
266 		 fw_name_pre, drv->fw_index);
267 
268 	IWL_DEBUG_FW_INFO(drv, "attempting to load firmware '%s'\n",
269 			  drv->firmware_name);
270 
271 	return request_firmware_nowait(THIS_MODULE, 1, drv->firmware_name,
272 				       drv->trans->dev,
273 				       GFP_KERNEL, drv, iwl_req_fw_callback);
274 }
275 
276 struct fw_img_parsing {
277 	struct fw_sec *sec;
278 	int sec_counter;
279 };
280 
281 /*
282  * struct fw_sec_parsing: to extract fw section and it's offset from tlv
283  */
284 struct fw_sec_parsing {
285 	__le32 offset;
286 	const u8 data[];
287 } __packed;
288 
289 /**
290  * struct iwl_tlv_calib_data - parse the default calib data from TLV
291  *
292  * @ucode_type: the uCode to which the following default calib relates.
293  * @calib: default calibrations.
294  */
295 struct iwl_tlv_calib_data {
296 	__le32 ucode_type;
297 	struct iwl_tlv_calib_ctrl calib;
298 } __packed;
299 
300 struct iwl_firmware_pieces {
301 	struct fw_img_parsing img[IWL_UCODE_TYPE_MAX];
302 
303 	u32 init_evtlog_ptr, init_evtlog_size, init_errlog_ptr;
304 	u32 inst_evtlog_ptr, inst_evtlog_size, inst_errlog_ptr;
305 
306 	/* FW debug data parsed for driver usage */
307 	bool dbg_dest_tlv_init;
308 	const u8 *dbg_dest_ver;
309 	union {
310 		const struct iwl_fw_dbg_dest_tlv *dbg_dest_tlv;
311 		const struct iwl_fw_dbg_dest_tlv_v1 *dbg_dest_tlv_v1;
312 	};
313 	const struct iwl_fw_dbg_conf_tlv *dbg_conf_tlv[FW_DBG_CONF_MAX];
314 	size_t dbg_conf_tlv_len[FW_DBG_CONF_MAX];
315 	const struct iwl_fw_dbg_trigger_tlv *dbg_trigger_tlv[FW_DBG_TRIGGER_MAX];
316 	size_t dbg_trigger_tlv_len[FW_DBG_TRIGGER_MAX];
317 	struct iwl_fw_dbg_mem_seg_tlv *dbg_mem_tlv;
318 	size_t n_mem_tlv;
319 };
320 
321 /*
322  * These functions are just to extract uCode section data from the pieces
323  * structure.
324  */
325 static struct fw_sec *get_sec(struct iwl_firmware_pieces *pieces,
326 			      enum iwl_ucode_type type,
327 			      int  sec)
328 {
329 	return &pieces->img[type].sec[sec];
330 }
331 
332 static void alloc_sec_data(struct iwl_firmware_pieces *pieces,
333 			   enum iwl_ucode_type type,
334 			   int sec)
335 {
336 	struct fw_img_parsing *img = &pieces->img[type];
337 	struct fw_sec *sec_memory;
338 	int size = sec + 1;
339 	size_t alloc_size = sizeof(*img->sec) * size;
340 
341 	if (img->sec && img->sec_counter >= size)
342 		return;
343 
344 	sec_memory = krealloc(img->sec, alloc_size, GFP_KERNEL);
345 	if (!sec_memory)
346 		return;
347 
348 	img->sec = sec_memory;
349 	img->sec_counter = size;
350 }
351 
352 static void set_sec_data(struct iwl_firmware_pieces *pieces,
353 			 enum iwl_ucode_type type,
354 			 int sec,
355 			 const void *data)
356 {
357 	alloc_sec_data(pieces, type, sec);
358 
359 	pieces->img[type].sec[sec].data = data;
360 }
361 
362 static void set_sec_size(struct iwl_firmware_pieces *pieces,
363 			 enum iwl_ucode_type type,
364 			 int sec,
365 			 size_t size)
366 {
367 	alloc_sec_data(pieces, type, sec);
368 
369 	pieces->img[type].sec[sec].size = size;
370 }
371 
372 static size_t get_sec_size(struct iwl_firmware_pieces *pieces,
373 			   enum iwl_ucode_type type,
374 			   int sec)
375 {
376 	return pieces->img[type].sec[sec].size;
377 }
378 
379 static void set_sec_offset(struct iwl_firmware_pieces *pieces,
380 			   enum iwl_ucode_type type,
381 			   int sec,
382 			   u32 offset)
383 {
384 	alloc_sec_data(pieces, type, sec);
385 
386 	pieces->img[type].sec[sec].offset = offset;
387 }
388 
389 /*
390  * Gets uCode section from tlv.
391  */
392 static int iwl_store_ucode_sec(struct iwl_firmware_pieces *pieces,
393 			       const void *data, enum iwl_ucode_type type,
394 			       int size)
395 {
396 	struct fw_img_parsing *img;
397 	struct fw_sec *sec;
398 	const struct fw_sec_parsing *sec_parse;
399 	size_t alloc_size;
400 
401 	if (WARN_ON(!pieces || !data || type >= IWL_UCODE_TYPE_MAX))
402 		return -1;
403 
404 	sec_parse = (const struct fw_sec_parsing *)data;
405 
406 	img = &pieces->img[type];
407 
408 	alloc_size = sizeof(*img->sec) * (img->sec_counter + 1);
409 	sec = krealloc(img->sec, alloc_size, GFP_KERNEL);
410 	if (!sec)
411 		return -ENOMEM;
412 	img->sec = sec;
413 
414 	sec = &img->sec[img->sec_counter];
415 
416 	sec->offset = le32_to_cpu(sec_parse->offset);
417 	sec->data = sec_parse->data;
418 	sec->size = size - sizeof(sec_parse->offset);
419 
420 	++img->sec_counter;
421 
422 	return 0;
423 }
424 
425 static int iwl_set_default_calib(struct iwl_drv *drv, const u8 *data)
426 {
427 	const struct iwl_tlv_calib_data *def_calib =
428 					(const struct iwl_tlv_calib_data *)data;
429 	u32 ucode_type = le32_to_cpu(def_calib->ucode_type);
430 	if (ucode_type >= IWL_UCODE_TYPE_MAX) {
431 		IWL_ERR(drv, "Wrong ucode_type %u for default calibration.\n",
432 			ucode_type);
433 		return -EINVAL;
434 	}
435 	drv->fw.default_calib[ucode_type].flow_trigger =
436 		def_calib->calib.flow_trigger;
437 	drv->fw.default_calib[ucode_type].event_trigger =
438 		def_calib->calib.event_trigger;
439 
440 	return 0;
441 }
442 
443 static void iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
444 				    struct iwl_ucode_capabilities *capa)
445 {
446 	const struct iwl_ucode_api *ucode_api = (const void *)data;
447 	u32 api_index = le32_to_cpu(ucode_api->api_index);
448 	u32 api_flags = le32_to_cpu(ucode_api->api_flags);
449 	int i;
450 
451 	if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
452 		IWL_WARN(drv,
453 			 "api flags index %d larger than supported by driver\n",
454 			 api_index);
455 		return;
456 	}
457 
458 	for (i = 0; i < 32; i++) {
459 		if (api_flags & BIT(i))
460 			__set_bit(i + 32 * api_index, capa->_api);
461 	}
462 }
463 
464 static void iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
465 				       struct iwl_ucode_capabilities *capa)
466 {
467 	const struct iwl_ucode_capa *ucode_capa = (const void *)data;
468 	u32 api_index = le32_to_cpu(ucode_capa->api_index);
469 	u32 api_flags = le32_to_cpu(ucode_capa->api_capa);
470 	int i;
471 
472 	if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
473 		IWL_WARN(drv,
474 			 "capa flags index %d larger than supported by driver\n",
475 			 api_index);
476 		return;
477 	}
478 
479 	for (i = 0; i < 32; i++) {
480 		if (api_flags & BIT(i))
481 			__set_bit(i + 32 * api_index, capa->_capa);
482 	}
483 }
484 
485 static const char *iwl_reduced_fw_name(struct iwl_drv *drv)
486 {
487 	const char *name = drv->firmware_name;
488 
489 	if (strncmp(name, "iwlwifi-", 8) == 0)
490 		name += 8;
491 
492 	return name;
493 }
494 
495 static int iwl_parse_v1_v2_firmware(struct iwl_drv *drv,
496 				    const struct firmware *ucode_raw,
497 				    struct iwl_firmware_pieces *pieces)
498 {
499 	const struct iwl_ucode_header *ucode = (const void *)ucode_raw->data;
500 	u32 api_ver, hdr_size, build;
501 	char buildstr[25];
502 	const u8 *src;
503 
504 	drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
505 	api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
506 
507 	switch (api_ver) {
508 	default:
509 		hdr_size = 28;
510 		if (ucode_raw->size < hdr_size) {
511 			IWL_ERR(drv, "File size too small!\n");
512 			return -EINVAL;
513 		}
514 		build = le32_to_cpu(ucode->u.v2.build);
515 		set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
516 			     le32_to_cpu(ucode->u.v2.inst_size));
517 		set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
518 			     le32_to_cpu(ucode->u.v2.data_size));
519 		set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
520 			     le32_to_cpu(ucode->u.v2.init_size));
521 		set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
522 			     le32_to_cpu(ucode->u.v2.init_data_size));
523 		src = ucode->u.v2.data;
524 		break;
525 	case 0:
526 	case 1:
527 	case 2:
528 		hdr_size = 24;
529 		if (ucode_raw->size < hdr_size) {
530 			IWL_ERR(drv, "File size too small!\n");
531 			return -EINVAL;
532 		}
533 		build = 0;
534 		set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
535 			     le32_to_cpu(ucode->u.v1.inst_size));
536 		set_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
537 			     le32_to_cpu(ucode->u.v1.data_size));
538 		set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
539 			     le32_to_cpu(ucode->u.v1.init_size));
540 		set_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
541 			     le32_to_cpu(ucode->u.v1.init_data_size));
542 		src = ucode->u.v1.data;
543 		break;
544 	}
545 
546 	if (build)
547 		sprintf(buildstr, " build %u", build);
548 	else
549 		buildstr[0] = '\0';
550 
551 	snprintf(drv->fw.fw_version,
552 		 sizeof(drv->fw.fw_version),
553 		 "%u.%u.%u.%u%s %s",
554 		 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
555 		 IWL_UCODE_MINOR(drv->fw.ucode_ver),
556 		 IWL_UCODE_API(drv->fw.ucode_ver),
557 		 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
558 		 buildstr, iwl_reduced_fw_name(drv));
559 
560 	/* Verify size of file vs. image size info in file's header */
561 
562 	if (ucode_raw->size != hdr_size +
563 	    get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) +
564 	    get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) +
565 	    get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) +
566 	    get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA)) {
567 
568 		IWL_ERR(drv,
569 			"uCode file size %d does not match expected size\n",
570 			(int)ucode_raw->size);
571 		return -EINVAL;
572 	}
573 
574 
575 	set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST, src);
576 	src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST);
577 	set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST,
578 		       IWLAGN_RTC_INST_LOWER_BOUND);
579 	set_sec_data(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA, src);
580 	src += get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA);
581 	set_sec_offset(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA,
582 		       IWLAGN_RTC_DATA_LOWER_BOUND);
583 	set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST, src);
584 	src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST);
585 	set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST,
586 		       IWLAGN_RTC_INST_LOWER_BOUND);
587 	set_sec_data(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA, src);
588 	src += get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA);
589 	set_sec_offset(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA,
590 		       IWLAGN_RTC_DATA_LOWER_BOUND);
591 	return 0;
592 }
593 
594 static void iwl_drv_set_dump_exclude(struct iwl_drv *drv,
595 				     enum iwl_ucode_tlv_type tlv_type,
596 				     const void *tlv_data, u32 tlv_len)
597 {
598 	const struct iwl_fw_dump_exclude *fw = tlv_data;
599 	struct iwl_dump_exclude *excl;
600 
601 	if (tlv_len < sizeof(*fw))
602 		return;
603 
604 	if (tlv_type == IWL_UCODE_TLV_SEC_TABLE_ADDR) {
605 		excl = &drv->fw.dump_excl[0];
606 
607 		/* second time we find this, it's for WoWLAN */
608 		if (excl->addr)
609 			excl = &drv->fw.dump_excl_wowlan[0];
610 	} else if (fw_has_capa(&drv->fw.ucode_capa,
611 			       IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG)) {
612 		/* IWL_UCODE_TLV_D3_KEK_KCK_ADDR is regular image */
613 		excl = &drv->fw.dump_excl[0];
614 	} else {
615 		/* IWL_UCODE_TLV_D3_KEK_KCK_ADDR is WoWLAN image */
616 		excl = &drv->fw.dump_excl_wowlan[0];
617 	}
618 
619 	if (excl->addr)
620 		excl++;
621 
622 	if (excl->addr) {
623 		IWL_DEBUG_FW_INFO(drv, "found too many excludes in fw file\n");
624 		return;
625 	}
626 
627 	excl->addr = le32_to_cpu(fw->addr) & ~FW_ADDR_CACHE_CONTROL;
628 	excl->size = le32_to_cpu(fw->size);
629 }
630 
631 static void iwl_parse_dbg_tlv_assert_tables(struct iwl_drv *drv,
632 					    const struct iwl_ucode_tlv *tlv)
633 {
634 	const struct iwl_fw_ini_region_tlv *region;
635 	u32 length = le32_to_cpu(tlv->length);
636 	u32 addr;
637 
638 	if (length < offsetof(typeof(*region), special_mem) +
639 		     sizeof(region->special_mem))
640 		return;
641 
642 	region = (const void *)tlv->data;
643 	addr = le32_to_cpu(region->special_mem.base_addr);
644 	addr += le32_to_cpu(region->special_mem.offset);
645 	addr &= ~FW_ADDR_CACHE_CONTROL;
646 
647 	if (region->type != IWL_FW_INI_REGION_SPECIAL_DEVICE_MEMORY)
648 		return;
649 
650 	switch (region->sub_type) {
651 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_UMAC_ERROR_TABLE:
652 		drv->trans->dbg.umac_error_event_table = addr;
653 		drv->trans->dbg.error_event_table_tlv_status |=
654 			IWL_ERROR_EVENT_TABLE_UMAC;
655 		break;
656 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_LMAC_1_ERROR_TABLE:
657 		drv->trans->dbg.lmac_error_event_table[0] = addr;
658 		drv->trans->dbg.error_event_table_tlv_status |=
659 			IWL_ERROR_EVENT_TABLE_LMAC1;
660 		break;
661 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_LMAC_2_ERROR_TABLE:
662 		drv->trans->dbg.lmac_error_event_table[1] = addr;
663 		drv->trans->dbg.error_event_table_tlv_status |=
664 			IWL_ERROR_EVENT_TABLE_LMAC2;
665 		break;
666 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_TCM_1_ERROR_TABLE:
667 		drv->trans->dbg.tcm_error_event_table[0] = addr;
668 		drv->trans->dbg.error_event_table_tlv_status |=
669 			IWL_ERROR_EVENT_TABLE_TCM1;
670 		break;
671 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_TCM_2_ERROR_TABLE:
672 		drv->trans->dbg.tcm_error_event_table[1] = addr;
673 		drv->trans->dbg.error_event_table_tlv_status |=
674 			IWL_ERROR_EVENT_TABLE_TCM2;
675 		break;
676 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_RCM_1_ERROR_TABLE:
677 		drv->trans->dbg.rcm_error_event_table[0] = addr;
678 		drv->trans->dbg.error_event_table_tlv_status |=
679 			IWL_ERROR_EVENT_TABLE_RCM1;
680 		break;
681 	case IWL_FW_INI_REGION_DEVICE_MEMORY_SUBTYPE_RCM_2_ERROR_TABLE:
682 		drv->trans->dbg.rcm_error_event_table[1] = addr;
683 		drv->trans->dbg.error_event_table_tlv_status |=
684 			IWL_ERROR_EVENT_TABLE_RCM2;
685 		break;
686 	default:
687 		break;
688 	}
689 }
690 
691 static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
692 				const struct firmware *ucode_raw,
693 				struct iwl_firmware_pieces *pieces,
694 				struct iwl_ucode_capabilities *capa,
695 				bool *usniffer_images)
696 {
697 	const struct iwl_tlv_ucode_header *ucode = (const void *)ucode_raw->data;
698 	const struct iwl_ucode_tlv *tlv;
699 	size_t len = ucode_raw->size;
700 	const u8 *data;
701 	u32 tlv_len;
702 	u32 usniffer_img;
703 	enum iwl_ucode_tlv_type tlv_type;
704 	const u8 *tlv_data;
705 	char buildstr[25];
706 	u32 build, paging_mem_size;
707 	int num_of_cpus;
708 	bool usniffer_req = false;
709 
710 	if (len < sizeof(*ucode)) {
711 		IWL_ERR(drv, "uCode has invalid length: %zd\n", len);
712 		return -EINVAL;
713 	}
714 
715 	if (ucode->magic != cpu_to_le32(IWL_TLV_UCODE_MAGIC)) {
716 		IWL_ERR(drv, "invalid uCode magic: 0X%x\n",
717 			le32_to_cpu(ucode->magic));
718 		return -EINVAL;
719 	}
720 
721 	drv->fw.ucode_ver = le32_to_cpu(ucode->ver);
722 	memcpy(drv->fw.human_readable, ucode->human_readable,
723 	       sizeof(drv->fw.human_readable));
724 	build = le32_to_cpu(ucode->build);
725 
726 	if (build)
727 		sprintf(buildstr, " build %u", build);
728 	else
729 		buildstr[0] = '\0';
730 
731 	snprintf(drv->fw.fw_version,
732 		 sizeof(drv->fw.fw_version),
733 		 "%u.%u.%u.%u%s %s",
734 		 IWL_UCODE_MAJOR(drv->fw.ucode_ver),
735 		 IWL_UCODE_MINOR(drv->fw.ucode_ver),
736 		 IWL_UCODE_API(drv->fw.ucode_ver),
737 		 IWL_UCODE_SERIAL(drv->fw.ucode_ver),
738 		 buildstr, iwl_reduced_fw_name(drv));
739 
740 	data = ucode->data;
741 
742 	len -= sizeof(*ucode);
743 
744 	while (len >= sizeof(*tlv)) {
745 		len -= sizeof(*tlv);
746 
747 		tlv = (const void *)data;
748 		tlv_len = le32_to_cpu(tlv->length);
749 		tlv_type = le32_to_cpu(tlv->type);
750 		tlv_data = tlv->data;
751 
752 		if (len < tlv_len) {
753 			IWL_ERR(drv, "invalid TLV len: %zd/%u\n",
754 				len, tlv_len);
755 			return -EINVAL;
756 		}
757 		len -= ALIGN(tlv_len, 4);
758 		data += sizeof(*tlv) + ALIGN(tlv_len, 4);
759 
760 		switch (tlv_type) {
761 		case IWL_UCODE_TLV_INST:
762 			set_sec_data(pieces, IWL_UCODE_REGULAR,
763 				     IWL_UCODE_SECTION_INST, tlv_data);
764 			set_sec_size(pieces, IWL_UCODE_REGULAR,
765 				     IWL_UCODE_SECTION_INST, tlv_len);
766 			set_sec_offset(pieces, IWL_UCODE_REGULAR,
767 				       IWL_UCODE_SECTION_INST,
768 				       IWLAGN_RTC_INST_LOWER_BOUND);
769 			break;
770 		case IWL_UCODE_TLV_DATA:
771 			set_sec_data(pieces, IWL_UCODE_REGULAR,
772 				     IWL_UCODE_SECTION_DATA, tlv_data);
773 			set_sec_size(pieces, IWL_UCODE_REGULAR,
774 				     IWL_UCODE_SECTION_DATA, tlv_len);
775 			set_sec_offset(pieces, IWL_UCODE_REGULAR,
776 				       IWL_UCODE_SECTION_DATA,
777 				       IWLAGN_RTC_DATA_LOWER_BOUND);
778 			break;
779 		case IWL_UCODE_TLV_INIT:
780 			set_sec_data(pieces, IWL_UCODE_INIT,
781 				     IWL_UCODE_SECTION_INST, tlv_data);
782 			set_sec_size(pieces, IWL_UCODE_INIT,
783 				     IWL_UCODE_SECTION_INST, tlv_len);
784 			set_sec_offset(pieces, IWL_UCODE_INIT,
785 				       IWL_UCODE_SECTION_INST,
786 				       IWLAGN_RTC_INST_LOWER_BOUND);
787 			break;
788 		case IWL_UCODE_TLV_INIT_DATA:
789 			set_sec_data(pieces, IWL_UCODE_INIT,
790 				     IWL_UCODE_SECTION_DATA, tlv_data);
791 			set_sec_size(pieces, IWL_UCODE_INIT,
792 				     IWL_UCODE_SECTION_DATA, tlv_len);
793 			set_sec_offset(pieces, IWL_UCODE_INIT,
794 				       IWL_UCODE_SECTION_DATA,
795 				       IWLAGN_RTC_DATA_LOWER_BOUND);
796 			break;
797 		case IWL_UCODE_TLV_BOOT:
798 			IWL_ERR(drv, "Found unexpected BOOT ucode\n");
799 			break;
800 		case IWL_UCODE_TLV_PROBE_MAX_LEN:
801 			if (tlv_len != sizeof(u32))
802 				goto invalid_tlv_len;
803 			capa->max_probe_length =
804 					le32_to_cpup((const __le32 *)tlv_data);
805 			break;
806 		case IWL_UCODE_TLV_PAN:
807 			if (tlv_len)
808 				goto invalid_tlv_len;
809 			capa->flags |= IWL_UCODE_TLV_FLAGS_PAN;
810 			break;
811 		case IWL_UCODE_TLV_FLAGS:
812 			/* must be at least one u32 */
813 			if (tlv_len < sizeof(u32))
814 				goto invalid_tlv_len;
815 			/* and a proper number of u32s */
816 			if (tlv_len % sizeof(u32))
817 				goto invalid_tlv_len;
818 			/*
819 			 * This driver only reads the first u32 as
820 			 * right now no more features are defined,
821 			 * if that changes then either the driver
822 			 * will not work with the new firmware, or
823 			 * it'll not take advantage of new features.
824 			 */
825 			capa->flags = le32_to_cpup((const __le32 *)tlv_data);
826 			break;
827 		case IWL_UCODE_TLV_API_CHANGES_SET:
828 			if (tlv_len != sizeof(struct iwl_ucode_api))
829 				goto invalid_tlv_len;
830 			iwl_set_ucode_api_flags(drv, tlv_data, capa);
831 			break;
832 		case IWL_UCODE_TLV_ENABLED_CAPABILITIES:
833 			if (tlv_len != sizeof(struct iwl_ucode_capa))
834 				goto invalid_tlv_len;
835 			iwl_set_ucode_capabilities(drv, tlv_data, capa);
836 			break;
837 		case IWL_UCODE_TLV_INIT_EVTLOG_PTR:
838 			if (tlv_len != sizeof(u32))
839 				goto invalid_tlv_len;
840 			pieces->init_evtlog_ptr =
841 					le32_to_cpup((const __le32 *)tlv_data);
842 			break;
843 		case IWL_UCODE_TLV_INIT_EVTLOG_SIZE:
844 			if (tlv_len != sizeof(u32))
845 				goto invalid_tlv_len;
846 			pieces->init_evtlog_size =
847 					le32_to_cpup((const __le32 *)tlv_data);
848 			break;
849 		case IWL_UCODE_TLV_INIT_ERRLOG_PTR:
850 			if (tlv_len != sizeof(u32))
851 				goto invalid_tlv_len;
852 			pieces->init_errlog_ptr =
853 					le32_to_cpup((const __le32 *)tlv_data);
854 			break;
855 		case IWL_UCODE_TLV_RUNT_EVTLOG_PTR:
856 			if (tlv_len != sizeof(u32))
857 				goto invalid_tlv_len;
858 			pieces->inst_evtlog_ptr =
859 					le32_to_cpup((const __le32 *)tlv_data);
860 			break;
861 		case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE:
862 			if (tlv_len != sizeof(u32))
863 				goto invalid_tlv_len;
864 			pieces->inst_evtlog_size =
865 					le32_to_cpup((const __le32 *)tlv_data);
866 			break;
867 		case IWL_UCODE_TLV_RUNT_ERRLOG_PTR:
868 			if (tlv_len != sizeof(u32))
869 				goto invalid_tlv_len;
870 			pieces->inst_errlog_ptr =
871 					le32_to_cpup((const __le32 *)tlv_data);
872 			break;
873 		case IWL_UCODE_TLV_ENHANCE_SENS_TBL:
874 			if (tlv_len)
875 				goto invalid_tlv_len;
876 			drv->fw.enhance_sensitivity_table = true;
877 			break;
878 		case IWL_UCODE_TLV_WOWLAN_INST:
879 			set_sec_data(pieces, IWL_UCODE_WOWLAN,
880 				     IWL_UCODE_SECTION_INST, tlv_data);
881 			set_sec_size(pieces, IWL_UCODE_WOWLAN,
882 				     IWL_UCODE_SECTION_INST, tlv_len);
883 			set_sec_offset(pieces, IWL_UCODE_WOWLAN,
884 				       IWL_UCODE_SECTION_INST,
885 				       IWLAGN_RTC_INST_LOWER_BOUND);
886 			break;
887 		case IWL_UCODE_TLV_WOWLAN_DATA:
888 			set_sec_data(pieces, IWL_UCODE_WOWLAN,
889 				     IWL_UCODE_SECTION_DATA, tlv_data);
890 			set_sec_size(pieces, IWL_UCODE_WOWLAN,
891 				     IWL_UCODE_SECTION_DATA, tlv_len);
892 			set_sec_offset(pieces, IWL_UCODE_WOWLAN,
893 				       IWL_UCODE_SECTION_DATA,
894 				       IWLAGN_RTC_DATA_LOWER_BOUND);
895 			break;
896 		case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE:
897 			if (tlv_len != sizeof(u32))
898 				goto invalid_tlv_len;
899 			capa->standard_phy_calibration_size =
900 					le32_to_cpup((const __le32 *)tlv_data);
901 			break;
902 		case IWL_UCODE_TLV_SEC_RT:
903 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
904 					    tlv_len);
905 			drv->fw.type = IWL_FW_MVM;
906 			break;
907 		case IWL_UCODE_TLV_SEC_INIT:
908 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
909 					    tlv_len);
910 			drv->fw.type = IWL_FW_MVM;
911 			break;
912 		case IWL_UCODE_TLV_SEC_WOWLAN:
913 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
914 					    tlv_len);
915 			drv->fw.type = IWL_FW_MVM;
916 			break;
917 		case IWL_UCODE_TLV_DEF_CALIB:
918 			if (tlv_len != sizeof(struct iwl_tlv_calib_data))
919 				goto invalid_tlv_len;
920 			if (iwl_set_default_calib(drv, tlv_data))
921 				goto tlv_error;
922 			break;
923 		case IWL_UCODE_TLV_PHY_SKU:
924 			if (tlv_len != sizeof(u32))
925 				goto invalid_tlv_len;
926 			drv->fw.phy_config = le32_to_cpup((const __le32 *)tlv_data);
927 			drv->fw.valid_tx_ant = (drv->fw.phy_config &
928 						FW_PHY_CFG_TX_CHAIN) >>
929 						FW_PHY_CFG_TX_CHAIN_POS;
930 			drv->fw.valid_rx_ant = (drv->fw.phy_config &
931 						FW_PHY_CFG_RX_CHAIN) >>
932 						FW_PHY_CFG_RX_CHAIN_POS;
933 			break;
934 		case IWL_UCODE_TLV_SECURE_SEC_RT:
935 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_REGULAR,
936 					    tlv_len);
937 			drv->fw.type = IWL_FW_MVM;
938 			break;
939 		case IWL_UCODE_TLV_SECURE_SEC_INIT:
940 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_INIT,
941 					    tlv_len);
942 			drv->fw.type = IWL_FW_MVM;
943 			break;
944 		case IWL_UCODE_TLV_SECURE_SEC_WOWLAN:
945 			iwl_store_ucode_sec(pieces, tlv_data, IWL_UCODE_WOWLAN,
946 					    tlv_len);
947 			drv->fw.type = IWL_FW_MVM;
948 			break;
949 		case IWL_UCODE_TLV_NUM_OF_CPU:
950 			if (tlv_len != sizeof(u32))
951 				goto invalid_tlv_len;
952 			num_of_cpus =
953 				le32_to_cpup((const __le32 *)tlv_data);
954 
955 			if (num_of_cpus == 2) {
956 				drv->fw.img[IWL_UCODE_REGULAR].is_dual_cpus =
957 					true;
958 				drv->fw.img[IWL_UCODE_INIT].is_dual_cpus =
959 					true;
960 				drv->fw.img[IWL_UCODE_WOWLAN].is_dual_cpus =
961 					true;
962 			} else if ((num_of_cpus > 2) || (num_of_cpus < 1)) {
963 				IWL_ERR(drv, "Driver support up to 2 CPUs\n");
964 				return -EINVAL;
965 			}
966 			break;
967 		case IWL_UCODE_TLV_N_SCAN_CHANNELS:
968 			if (tlv_len != sizeof(u32))
969 				goto invalid_tlv_len;
970 			capa->n_scan_channels =
971 				le32_to_cpup((const __le32 *)tlv_data);
972 			break;
973 		case IWL_UCODE_TLV_FW_VERSION: {
974 			const __le32 *ptr = (const void *)tlv_data;
975 			u32 major, minor;
976 			u8 local_comp;
977 
978 			if (tlv_len != sizeof(u32) * 3)
979 				goto invalid_tlv_len;
980 
981 			major = le32_to_cpup(ptr++);
982 			minor = le32_to_cpup(ptr++);
983 			local_comp = le32_to_cpup(ptr);
984 
985 			if (major >= 35)
986 				snprintf(drv->fw.fw_version,
987 					 sizeof(drv->fw.fw_version),
988 					"%u.%08x.%u %s", major, minor,
989 					local_comp, iwl_reduced_fw_name(drv));
990 			else
991 				snprintf(drv->fw.fw_version,
992 					 sizeof(drv->fw.fw_version),
993 					"%u.%u.%u %s", major, minor,
994 					local_comp, iwl_reduced_fw_name(drv));
995 			break;
996 			}
997 		case IWL_UCODE_TLV_FW_DBG_DEST: {
998 			const struct iwl_fw_dbg_dest_tlv *dest = NULL;
999 			const struct iwl_fw_dbg_dest_tlv_v1 *dest_v1 = NULL;
1000 			u8 mon_mode;
1001 
1002 			pieces->dbg_dest_ver = (const u8 *)tlv_data;
1003 			if (*pieces->dbg_dest_ver == 1) {
1004 				dest = (const void *)tlv_data;
1005 			} else if (*pieces->dbg_dest_ver == 0) {
1006 				dest_v1 = (const void *)tlv_data;
1007 			} else {
1008 				IWL_ERR(drv,
1009 					"The version is %d, and it is invalid\n",
1010 					*pieces->dbg_dest_ver);
1011 				break;
1012 			}
1013 
1014 			if (pieces->dbg_dest_tlv_init) {
1015 				IWL_ERR(drv,
1016 					"dbg destination ignored, already exists\n");
1017 				break;
1018 			}
1019 
1020 			pieces->dbg_dest_tlv_init = true;
1021 
1022 			if (dest_v1) {
1023 				pieces->dbg_dest_tlv_v1 = dest_v1;
1024 				mon_mode = dest_v1->monitor_mode;
1025 			} else {
1026 				pieces->dbg_dest_tlv = dest;
1027 				mon_mode = dest->monitor_mode;
1028 			}
1029 
1030 			IWL_INFO(drv, "Found debug destination: %s\n",
1031 				 get_fw_dbg_mode_string(mon_mode));
1032 
1033 			drv->fw.dbg.n_dest_reg = (dest_v1) ?
1034 				tlv_len -
1035 				offsetof(struct iwl_fw_dbg_dest_tlv_v1,
1036 					 reg_ops) :
1037 				tlv_len -
1038 				offsetof(struct iwl_fw_dbg_dest_tlv,
1039 					 reg_ops);
1040 
1041 			drv->fw.dbg.n_dest_reg /=
1042 				sizeof(drv->fw.dbg.dest_tlv->reg_ops[0]);
1043 
1044 			break;
1045 			}
1046 		case IWL_UCODE_TLV_FW_DBG_CONF: {
1047 			const struct iwl_fw_dbg_conf_tlv *conf =
1048 				(const void *)tlv_data;
1049 
1050 			if (!pieces->dbg_dest_tlv_init) {
1051 				IWL_ERR(drv,
1052 					"Ignore dbg config %d - no destination configured\n",
1053 					conf->id);
1054 				break;
1055 			}
1056 
1057 			if (conf->id >= ARRAY_SIZE(drv->fw.dbg.conf_tlv)) {
1058 				IWL_ERR(drv,
1059 					"Skip unknown configuration: %d\n",
1060 					conf->id);
1061 				break;
1062 			}
1063 
1064 			if (pieces->dbg_conf_tlv[conf->id]) {
1065 				IWL_ERR(drv,
1066 					"Ignore duplicate dbg config %d\n",
1067 					conf->id);
1068 				break;
1069 			}
1070 
1071 			if (conf->usniffer)
1072 				usniffer_req = true;
1073 
1074 			IWL_INFO(drv, "Found debug configuration: %d\n",
1075 				 conf->id);
1076 
1077 			pieces->dbg_conf_tlv[conf->id] = conf;
1078 			pieces->dbg_conf_tlv_len[conf->id] = tlv_len;
1079 			break;
1080 			}
1081 		case IWL_UCODE_TLV_FW_DBG_TRIGGER: {
1082 			const struct iwl_fw_dbg_trigger_tlv *trigger =
1083 				(const void *)tlv_data;
1084 			u32 trigger_id = le32_to_cpu(trigger->id);
1085 
1086 			if (trigger_id >= ARRAY_SIZE(drv->fw.dbg.trigger_tlv)) {
1087 				IWL_ERR(drv,
1088 					"Skip unknown trigger: %u\n",
1089 					trigger->id);
1090 				break;
1091 			}
1092 
1093 			if (pieces->dbg_trigger_tlv[trigger_id]) {
1094 				IWL_ERR(drv,
1095 					"Ignore duplicate dbg trigger %u\n",
1096 					trigger->id);
1097 				break;
1098 			}
1099 
1100 			IWL_INFO(drv, "Found debug trigger: %u\n", trigger->id);
1101 
1102 			pieces->dbg_trigger_tlv[trigger_id] = trigger;
1103 			pieces->dbg_trigger_tlv_len[trigger_id] = tlv_len;
1104 			break;
1105 			}
1106 		case IWL_UCODE_TLV_FW_DBG_DUMP_LST: {
1107 			if (tlv_len != sizeof(u32)) {
1108 				IWL_ERR(drv,
1109 					"dbg lst mask size incorrect, skip\n");
1110 				break;
1111 			}
1112 
1113 			drv->fw.dbg.dump_mask =
1114 				le32_to_cpup((const __le32 *)tlv_data);
1115 			break;
1116 			}
1117 		case IWL_UCODE_TLV_SEC_RT_USNIFFER:
1118 			*usniffer_images = true;
1119 			iwl_store_ucode_sec(pieces, tlv_data,
1120 					    IWL_UCODE_REGULAR_USNIFFER,
1121 					    tlv_len);
1122 			break;
1123 		case IWL_UCODE_TLV_PAGING:
1124 			if (tlv_len != sizeof(u32))
1125 				goto invalid_tlv_len;
1126 			paging_mem_size = le32_to_cpup((const __le32 *)tlv_data);
1127 
1128 			IWL_DEBUG_FW(drv,
1129 				     "Paging: paging enabled (size = %u bytes)\n",
1130 				     paging_mem_size);
1131 
1132 			if (paging_mem_size > MAX_PAGING_IMAGE_SIZE) {
1133 				IWL_ERR(drv,
1134 					"Paging: driver supports up to %lu bytes for paging image\n",
1135 					MAX_PAGING_IMAGE_SIZE);
1136 				return -EINVAL;
1137 			}
1138 
1139 			if (paging_mem_size & (FW_PAGING_SIZE - 1)) {
1140 				IWL_ERR(drv,
1141 					"Paging: image isn't multiple %lu\n",
1142 					FW_PAGING_SIZE);
1143 				return -EINVAL;
1144 			}
1145 
1146 			drv->fw.img[IWL_UCODE_REGULAR].paging_mem_size =
1147 				paging_mem_size;
1148 			usniffer_img = IWL_UCODE_REGULAR_USNIFFER;
1149 			drv->fw.img[usniffer_img].paging_mem_size =
1150 				paging_mem_size;
1151 			break;
1152 		case IWL_UCODE_TLV_FW_GSCAN_CAPA:
1153 			/* ignored */
1154 			break;
1155 		case IWL_UCODE_TLV_FW_MEM_SEG: {
1156 			const struct iwl_fw_dbg_mem_seg_tlv *dbg_mem =
1157 				(const void *)tlv_data;
1158 			size_t size;
1159 			struct iwl_fw_dbg_mem_seg_tlv *n;
1160 
1161 			if (tlv_len != (sizeof(*dbg_mem)))
1162 				goto invalid_tlv_len;
1163 
1164 			IWL_DEBUG_INFO(drv, "Found debug memory segment: %u\n",
1165 				       dbg_mem->data_type);
1166 
1167 			size = sizeof(*pieces->dbg_mem_tlv) *
1168 			       (pieces->n_mem_tlv + 1);
1169 			n = krealloc(pieces->dbg_mem_tlv, size, GFP_KERNEL);
1170 			if (!n)
1171 				return -ENOMEM;
1172 			pieces->dbg_mem_tlv = n;
1173 			pieces->dbg_mem_tlv[pieces->n_mem_tlv] = *dbg_mem;
1174 			pieces->n_mem_tlv++;
1175 			break;
1176 			}
1177 		case IWL_UCODE_TLV_IML: {
1178 			drv->fw.iml_len = tlv_len;
1179 			drv->fw.iml = kmemdup(tlv_data, tlv_len, GFP_KERNEL);
1180 			if (!drv->fw.iml)
1181 				return -ENOMEM;
1182 			break;
1183 			}
1184 		case IWL_UCODE_TLV_FW_RECOVERY_INFO: {
1185 			const struct {
1186 				__le32 buf_addr;
1187 				__le32 buf_size;
1188 			} *recov_info = (const void *)tlv_data;
1189 
1190 			if (tlv_len != sizeof(*recov_info))
1191 				goto invalid_tlv_len;
1192 			capa->error_log_addr =
1193 				le32_to_cpu(recov_info->buf_addr);
1194 			capa->error_log_size =
1195 				le32_to_cpu(recov_info->buf_size);
1196 			}
1197 			break;
1198 		case IWL_UCODE_TLV_FW_FSEQ_VERSION: {
1199 			const struct {
1200 				u8 version[32];
1201 				u8 sha1[20];
1202 			} *fseq_ver = (const void *)tlv_data;
1203 
1204 			if (tlv_len != sizeof(*fseq_ver))
1205 				goto invalid_tlv_len;
1206 			IWL_INFO(drv, "TLV_FW_FSEQ_VERSION: %s\n",
1207 				 fseq_ver->version);
1208 			}
1209 			break;
1210 		case IWL_UCODE_TLV_FW_NUM_STATIONS:
1211 			if (tlv_len != sizeof(u32))
1212 				goto invalid_tlv_len;
1213 			if (le32_to_cpup((const __le32 *)tlv_data) >
1214 			    IWL_MVM_STATION_COUNT_MAX) {
1215 				IWL_ERR(drv,
1216 					"%d is an invalid number of station\n",
1217 					le32_to_cpup((const __le32 *)tlv_data));
1218 				goto tlv_error;
1219 			}
1220 			capa->num_stations =
1221 				le32_to_cpup((const __le32 *)tlv_data);
1222 			break;
1223 		case IWL_UCODE_TLV_FW_NUM_BEACONS:
1224 			if (tlv_len != sizeof(u32))
1225 				goto invalid_tlv_len;
1226 			capa->num_beacons =
1227 				le32_to_cpup((const __le32 *)tlv_data);
1228 			break;
1229 		case IWL_UCODE_TLV_UMAC_DEBUG_ADDRS: {
1230 			const struct iwl_umac_debug_addrs *dbg_ptrs =
1231 				(const void *)tlv_data;
1232 
1233 			if (tlv_len != sizeof(*dbg_ptrs))
1234 				goto invalid_tlv_len;
1235 			if (drv->trans->trans_cfg->device_family <
1236 			    IWL_DEVICE_FAMILY_22000)
1237 				break;
1238 			drv->trans->dbg.umac_error_event_table =
1239 				le32_to_cpu(dbg_ptrs->error_info_addr) &
1240 				~FW_ADDR_CACHE_CONTROL;
1241 			drv->trans->dbg.error_event_table_tlv_status |=
1242 				IWL_ERROR_EVENT_TABLE_UMAC;
1243 			break;
1244 			}
1245 		case IWL_UCODE_TLV_LMAC_DEBUG_ADDRS: {
1246 			const struct iwl_lmac_debug_addrs *dbg_ptrs =
1247 				(const void *)tlv_data;
1248 
1249 			if (tlv_len != sizeof(*dbg_ptrs))
1250 				goto invalid_tlv_len;
1251 			if (drv->trans->trans_cfg->device_family <
1252 			    IWL_DEVICE_FAMILY_22000)
1253 				break;
1254 			drv->trans->dbg.lmac_error_event_table[0] =
1255 				le32_to_cpu(dbg_ptrs->error_event_table_ptr) &
1256 				~FW_ADDR_CACHE_CONTROL;
1257 			drv->trans->dbg.error_event_table_tlv_status |=
1258 				IWL_ERROR_EVENT_TABLE_LMAC1;
1259 			break;
1260 			}
1261 		case IWL_UCODE_TLV_TYPE_REGIONS:
1262 			iwl_parse_dbg_tlv_assert_tables(drv, tlv);
1263 			fallthrough;
1264 		case IWL_UCODE_TLV_TYPE_DEBUG_INFO:
1265 		case IWL_UCODE_TLV_TYPE_BUFFER_ALLOCATION:
1266 		case IWL_UCODE_TLV_TYPE_HCMD:
1267 		case IWL_UCODE_TLV_TYPE_TRIGGERS:
1268 		case IWL_UCODE_TLV_TYPE_CONF_SET:
1269 			if (iwlwifi_mod_params.enable_ini)
1270 				iwl_dbg_tlv_alloc(drv->trans, tlv, false);
1271 			break;
1272 		case IWL_UCODE_TLV_CMD_VERSIONS:
1273 			if (tlv_len % sizeof(struct iwl_fw_cmd_version)) {
1274 				IWL_ERR(drv,
1275 					"Invalid length for command versions: %u\n",
1276 					tlv_len);
1277 				tlv_len /= sizeof(struct iwl_fw_cmd_version);
1278 				tlv_len *= sizeof(struct iwl_fw_cmd_version);
1279 			}
1280 			if (WARN_ON(capa->cmd_versions))
1281 				return -EINVAL;
1282 			capa->cmd_versions = kmemdup(tlv_data, tlv_len,
1283 						     GFP_KERNEL);
1284 			if (!capa->cmd_versions)
1285 				return -ENOMEM;
1286 			capa->n_cmd_versions =
1287 				tlv_len / sizeof(struct iwl_fw_cmd_version);
1288 			break;
1289 		case IWL_UCODE_TLV_PHY_INTEGRATION_VERSION:
1290 			if (drv->fw.phy_integration_ver) {
1291 				IWL_ERR(drv,
1292 					"phy integration str ignored, already exists\n");
1293 				break;
1294 			}
1295 
1296 			drv->fw.phy_integration_ver =
1297 				kmemdup(tlv_data, tlv_len, GFP_KERNEL);
1298 			if (!drv->fw.phy_integration_ver)
1299 				return -ENOMEM;
1300 			drv->fw.phy_integration_ver_len = tlv_len;
1301 			break;
1302 		case IWL_UCODE_TLV_SEC_TABLE_ADDR:
1303 		case IWL_UCODE_TLV_D3_KEK_KCK_ADDR:
1304 			iwl_drv_set_dump_exclude(drv, tlv_type,
1305 						 tlv_data, tlv_len);
1306 			break;
1307 		case IWL_UCODE_TLV_CURRENT_PC:
1308 			if (tlv_len < sizeof(struct iwl_pc_data))
1309 				goto invalid_tlv_len;
1310 			drv->trans->dbg.pc_data =
1311 				kmemdup(tlv_data, tlv_len, GFP_KERNEL);
1312 			if (!drv->trans->dbg.pc_data)
1313 				return -ENOMEM;
1314 			drv->trans->dbg.num_pc =
1315 				tlv_len / sizeof(struct iwl_pc_data);
1316 			break;
1317 		default:
1318 			IWL_DEBUG_INFO(drv, "unknown TLV: %d\n", tlv_type);
1319 			break;
1320 		}
1321 	}
1322 
1323 	if (!fw_has_capa(capa, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED) &&
1324 	    usniffer_req && !*usniffer_images) {
1325 		IWL_ERR(drv,
1326 			"user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1327 		return -EINVAL;
1328 	}
1329 
1330 	if (len) {
1331 		IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
1332 		iwl_print_hex_dump(drv, IWL_DL_FW, data, len);
1333 		return -EINVAL;
1334 	}
1335 
1336 	return 0;
1337 
1338  invalid_tlv_len:
1339 	IWL_ERR(drv, "TLV %d has invalid size: %u\n", tlv_type, tlv_len);
1340  tlv_error:
1341 	iwl_print_hex_dump(drv, IWL_DL_FW, tlv_data, tlv_len);
1342 
1343 	return -EINVAL;
1344 }
1345 
1346 static int iwl_alloc_ucode(struct iwl_drv *drv,
1347 			   struct iwl_firmware_pieces *pieces,
1348 			   enum iwl_ucode_type type)
1349 {
1350 	int i;
1351 	struct fw_desc *sec;
1352 
1353 	sec = kcalloc(pieces->img[type].sec_counter, sizeof(*sec), GFP_KERNEL);
1354 	if (!sec)
1355 		return -ENOMEM;
1356 	drv->fw.img[type].sec = sec;
1357 	drv->fw.img[type].num_sec = pieces->img[type].sec_counter;
1358 
1359 	for (i = 0; i < pieces->img[type].sec_counter; i++)
1360 		if (iwl_alloc_fw_desc(drv, &sec[i], get_sec(pieces, type, i)))
1361 			return -ENOMEM;
1362 
1363 	return 0;
1364 }
1365 
1366 static int validate_sec_sizes(struct iwl_drv *drv,
1367 			      struct iwl_firmware_pieces *pieces,
1368 			      const struct iwl_cfg *cfg)
1369 {
1370 	IWL_DEBUG_INFO(drv, "f/w package hdr runtime inst size = %zd\n",
1371 		get_sec_size(pieces, IWL_UCODE_REGULAR,
1372 			     IWL_UCODE_SECTION_INST));
1373 	IWL_DEBUG_INFO(drv, "f/w package hdr runtime data size = %zd\n",
1374 		get_sec_size(pieces, IWL_UCODE_REGULAR,
1375 			     IWL_UCODE_SECTION_DATA));
1376 	IWL_DEBUG_INFO(drv, "f/w package hdr init inst size = %zd\n",
1377 		get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST));
1378 	IWL_DEBUG_INFO(drv, "f/w package hdr init data size = %zd\n",
1379 		get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA));
1380 
1381 	/* Verify that uCode images will fit in card's SRAM. */
1382 	if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_INST) >
1383 	    cfg->max_inst_size) {
1384 		IWL_ERR(drv, "uCode instr len %zd too large to fit in\n",
1385 			get_sec_size(pieces, IWL_UCODE_REGULAR,
1386 				     IWL_UCODE_SECTION_INST));
1387 		return -1;
1388 	}
1389 
1390 	if (get_sec_size(pieces, IWL_UCODE_REGULAR, IWL_UCODE_SECTION_DATA) >
1391 	    cfg->max_data_size) {
1392 		IWL_ERR(drv, "uCode data len %zd too large to fit in\n",
1393 			get_sec_size(pieces, IWL_UCODE_REGULAR,
1394 				     IWL_UCODE_SECTION_DATA));
1395 		return -1;
1396 	}
1397 
1398 	if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_INST) >
1399 	     cfg->max_inst_size) {
1400 		IWL_ERR(drv, "uCode init instr len %zd too large to fit in\n",
1401 			get_sec_size(pieces, IWL_UCODE_INIT,
1402 				     IWL_UCODE_SECTION_INST));
1403 		return -1;
1404 	}
1405 
1406 	if (get_sec_size(pieces, IWL_UCODE_INIT, IWL_UCODE_SECTION_DATA) >
1407 	    cfg->max_data_size) {
1408 		IWL_ERR(drv, "uCode init data len %zd too large to fit in\n",
1409 			get_sec_size(pieces, IWL_UCODE_REGULAR,
1410 				     IWL_UCODE_SECTION_DATA));
1411 		return -1;
1412 	}
1413 	return 0;
1414 }
1415 
1416 static struct iwl_op_mode *
1417 _iwl_op_mode_start(struct iwl_drv *drv, struct iwlwifi_opmode_table *op)
1418 {
1419 	const struct iwl_op_mode_ops *ops = op->ops;
1420 	struct dentry *dbgfs_dir = NULL;
1421 	struct iwl_op_mode *op_mode = NULL;
1422 
1423 	/* also protects start/stop from racing against each other */
1424 	lockdep_assert_held(&iwlwifi_opmode_table_mtx);
1425 
1426 #ifdef CONFIG_IWLWIFI_DEBUGFS
1427 	drv->dbgfs_op_mode = debugfs_create_dir(op->name,
1428 						drv->dbgfs_drv);
1429 	dbgfs_dir = drv->dbgfs_op_mode;
1430 #endif
1431 
1432 	op_mode = ops->start(drv->trans, drv->trans->cfg,
1433 			     &drv->fw, dbgfs_dir);
1434 	if (op_mode)
1435 		return op_mode;
1436 
1437 #ifdef CONFIG_IWLWIFI_DEBUGFS
1438 	debugfs_remove_recursive(drv->dbgfs_op_mode);
1439 	drv->dbgfs_op_mode = NULL;
1440 #endif
1441 
1442 	return NULL;
1443 }
1444 
1445 static void _iwl_op_mode_stop(struct iwl_drv *drv)
1446 {
1447 	/* also protects start/stop from racing against each other */
1448 	lockdep_assert_held(&iwlwifi_opmode_table_mtx);
1449 
1450 	/* op_mode can be NULL if its start failed */
1451 	if (drv->op_mode) {
1452 		iwl_op_mode_stop(drv->op_mode);
1453 		drv->op_mode = NULL;
1454 
1455 #ifdef CONFIG_IWLWIFI_DEBUGFS
1456 		debugfs_remove_recursive(drv->dbgfs_op_mode);
1457 		drv->dbgfs_op_mode = NULL;
1458 #endif
1459 	}
1460 }
1461 
1462 /*
1463  * iwl_req_fw_callback - callback when firmware was loaded
1464  *
1465  * If loaded successfully, copies the firmware into buffers
1466  * for the card to fetch (via DMA).
1467  */
1468 static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
1469 {
1470 	struct iwl_drv *drv = context;
1471 	struct iwl_fw *fw = &drv->fw;
1472 	const struct iwl_ucode_header *ucode;
1473 	struct iwlwifi_opmode_table *op;
1474 	int err;
1475 	struct iwl_firmware_pieces *pieces;
1476 	const unsigned int api_max = drv->trans->cfg->ucode_api_max;
1477 	const unsigned int api_min = drv->trans->cfg->ucode_api_min;
1478 	size_t trigger_tlv_sz[FW_DBG_TRIGGER_MAX];
1479 	u32 api_ver;
1480 	int i;
1481 	bool usniffer_images = false;
1482 	bool failure = true;
1483 
1484 	fw->ucode_capa.max_probe_length = IWL_DEFAULT_MAX_PROBE_LENGTH;
1485 	fw->ucode_capa.standard_phy_calibration_size =
1486 			IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1487 	fw->ucode_capa.n_scan_channels = IWL_DEFAULT_SCAN_CHANNELS;
1488 	fw->ucode_capa.num_stations = IWL_MVM_STATION_COUNT_MAX;
1489 	fw->ucode_capa.num_beacons = 1;
1490 	/* dump all fw memory areas by default */
1491 	fw->dbg.dump_mask = 0xffffffff;
1492 
1493 	pieces = kzalloc(sizeof(*pieces), GFP_KERNEL);
1494 	if (!pieces)
1495 		goto out_free_fw;
1496 
1497 	if (!ucode_raw)
1498 		goto try_again;
1499 
1500 	IWL_DEBUG_FW_INFO(drv, "Loaded firmware file '%s' (%zd bytes).\n",
1501 			  drv->firmware_name, ucode_raw->size);
1502 
1503 	/* Make sure that we got at least the API version number */
1504 	if (ucode_raw->size < 4) {
1505 		IWL_ERR(drv, "File size way too small!\n");
1506 		goto try_again;
1507 	}
1508 
1509 	/* Data from ucode file:  header followed by uCode images */
1510 	ucode = (const struct iwl_ucode_header *)ucode_raw->data;
1511 
1512 	if (ucode->ver)
1513 		err = iwl_parse_v1_v2_firmware(drv, ucode_raw, pieces);
1514 	else
1515 		err = iwl_parse_tlv_firmware(drv, ucode_raw, pieces,
1516 					     &fw->ucode_capa, &usniffer_images);
1517 
1518 	if (err)
1519 		goto try_again;
1520 
1521 	if (fw_has_api(&drv->fw.ucode_capa, IWL_UCODE_TLV_API_NEW_VERSION))
1522 		api_ver = drv->fw.ucode_ver;
1523 	else
1524 		api_ver = IWL_UCODE_API(drv->fw.ucode_ver);
1525 
1526 	/*
1527 	 * api_ver should match the api version forming part of the
1528 	 * firmware filename ... but we don't check for that and only rely
1529 	 * on the API version read from firmware header from here on forward
1530 	 */
1531 	if (api_ver < api_min || api_ver > api_max) {
1532 		IWL_ERR(drv,
1533 			"Driver unable to support your firmware API. "
1534 			"Driver supports v%u, firmware is v%u.\n",
1535 			api_max, api_ver);
1536 		goto try_again;
1537 	}
1538 
1539 	/*
1540 	 * In mvm uCode there is no difference between data and instructions
1541 	 * sections.
1542 	 */
1543 	if (fw->type == IWL_FW_DVM && validate_sec_sizes(drv, pieces,
1544 							 drv->trans->cfg))
1545 		goto try_again;
1546 
1547 	/* Allocate ucode buffers for card's bus-master loading ... */
1548 
1549 	/* Runtime instructions and 2 copies of data:
1550 	 * 1) unmodified from disk
1551 	 * 2) backup cache for save/restore during power-downs
1552 	 */
1553 	for (i = 0; i < IWL_UCODE_TYPE_MAX; i++)
1554 		if (iwl_alloc_ucode(drv, pieces, i))
1555 			goto out_free_fw;
1556 
1557 	if (pieces->dbg_dest_tlv_init) {
1558 		size_t dbg_dest_size = sizeof(*drv->fw.dbg.dest_tlv) +
1559 			sizeof(drv->fw.dbg.dest_tlv->reg_ops[0]) *
1560 			drv->fw.dbg.n_dest_reg;
1561 
1562 		drv->fw.dbg.dest_tlv = kmalloc(dbg_dest_size, GFP_KERNEL);
1563 
1564 		if (!drv->fw.dbg.dest_tlv)
1565 			goto out_free_fw;
1566 
1567 		if (*pieces->dbg_dest_ver == 0) {
1568 			memcpy(drv->fw.dbg.dest_tlv, pieces->dbg_dest_tlv_v1,
1569 			       dbg_dest_size);
1570 		} else {
1571 			struct iwl_fw_dbg_dest_tlv_v1 *dest_tlv =
1572 				drv->fw.dbg.dest_tlv;
1573 
1574 			dest_tlv->version = pieces->dbg_dest_tlv->version;
1575 			dest_tlv->monitor_mode =
1576 				pieces->dbg_dest_tlv->monitor_mode;
1577 			dest_tlv->size_power =
1578 				pieces->dbg_dest_tlv->size_power;
1579 			dest_tlv->wrap_count =
1580 				pieces->dbg_dest_tlv->wrap_count;
1581 			dest_tlv->write_ptr_reg =
1582 				pieces->dbg_dest_tlv->write_ptr_reg;
1583 			dest_tlv->base_shift =
1584 				pieces->dbg_dest_tlv->base_shift;
1585 			memcpy(dest_tlv->reg_ops,
1586 			       pieces->dbg_dest_tlv->reg_ops,
1587 			       sizeof(drv->fw.dbg.dest_tlv->reg_ops[0]) *
1588 			       drv->fw.dbg.n_dest_reg);
1589 
1590 			/* In version 1 of the destination tlv, which is
1591 			 * relevant for internal buffer exclusively,
1592 			 * the base address is part of given with the length
1593 			 * of the buffer, and the size shift is give instead of
1594 			 * end shift. We now store these values in base_reg,
1595 			 * and end shift, and when dumping the data we'll
1596 			 * manipulate it for extracting both the length and
1597 			 * base address */
1598 			dest_tlv->base_reg = pieces->dbg_dest_tlv->cfg_reg;
1599 			dest_tlv->end_shift =
1600 				pieces->dbg_dest_tlv->size_shift;
1601 		}
1602 	}
1603 
1604 	for (i = 0; i < ARRAY_SIZE(drv->fw.dbg.conf_tlv); i++) {
1605 		if (pieces->dbg_conf_tlv[i]) {
1606 			drv->fw.dbg.conf_tlv[i] =
1607 				kmemdup(pieces->dbg_conf_tlv[i],
1608 					pieces->dbg_conf_tlv_len[i],
1609 					GFP_KERNEL);
1610 			if (!drv->fw.dbg.conf_tlv[i])
1611 				goto out_free_fw;
1612 		}
1613 	}
1614 
1615 	memset(&trigger_tlv_sz, 0xff, sizeof(trigger_tlv_sz));
1616 
1617 	trigger_tlv_sz[FW_DBG_TRIGGER_MISSED_BEACONS] =
1618 		sizeof(struct iwl_fw_dbg_trigger_missed_bcon);
1619 	trigger_tlv_sz[FW_DBG_TRIGGER_CHANNEL_SWITCH] = 0;
1620 	trigger_tlv_sz[FW_DBG_TRIGGER_FW_NOTIF] =
1621 		sizeof(struct iwl_fw_dbg_trigger_cmd);
1622 	trigger_tlv_sz[FW_DBG_TRIGGER_MLME] =
1623 		sizeof(struct iwl_fw_dbg_trigger_mlme);
1624 	trigger_tlv_sz[FW_DBG_TRIGGER_STATS] =
1625 		sizeof(struct iwl_fw_dbg_trigger_stats);
1626 	trigger_tlv_sz[FW_DBG_TRIGGER_RSSI] =
1627 		sizeof(struct iwl_fw_dbg_trigger_low_rssi);
1628 	trigger_tlv_sz[FW_DBG_TRIGGER_TXQ_TIMERS] =
1629 		sizeof(struct iwl_fw_dbg_trigger_txq_timer);
1630 	trigger_tlv_sz[FW_DBG_TRIGGER_TIME_EVENT] =
1631 		sizeof(struct iwl_fw_dbg_trigger_time_event);
1632 	trigger_tlv_sz[FW_DBG_TRIGGER_BA] =
1633 		sizeof(struct iwl_fw_dbg_trigger_ba);
1634 	trigger_tlv_sz[FW_DBG_TRIGGER_TDLS] =
1635 		sizeof(struct iwl_fw_dbg_trigger_tdls);
1636 
1637 	for (i = 0; i < ARRAY_SIZE(drv->fw.dbg.trigger_tlv); i++) {
1638 		if (pieces->dbg_trigger_tlv[i]) {
1639 			/*
1640 			 * If the trigger isn't long enough, WARN and exit.
1641 			 * Someone is trying to debug something and he won't
1642 			 * be able to catch the bug he is trying to chase.
1643 			 * We'd better be noisy to be sure he knows what's
1644 			 * going on.
1645 			 */
1646 			if (WARN_ON(pieces->dbg_trigger_tlv_len[i] <
1647 				    (trigger_tlv_sz[i] +
1648 				     sizeof(struct iwl_fw_dbg_trigger_tlv))))
1649 				goto out_free_fw;
1650 			drv->fw.dbg.trigger_tlv_len[i] =
1651 				pieces->dbg_trigger_tlv_len[i];
1652 			drv->fw.dbg.trigger_tlv[i] =
1653 				kmemdup(pieces->dbg_trigger_tlv[i],
1654 					drv->fw.dbg.trigger_tlv_len[i],
1655 					GFP_KERNEL);
1656 			if (!drv->fw.dbg.trigger_tlv[i])
1657 				goto out_free_fw;
1658 		}
1659 	}
1660 
1661 	/* Now that we can no longer fail, copy information */
1662 
1663 	drv->fw.dbg.mem_tlv = pieces->dbg_mem_tlv;
1664 	pieces->dbg_mem_tlv = NULL;
1665 	drv->fw.dbg.n_mem_tlv = pieces->n_mem_tlv;
1666 
1667 	/*
1668 	 * The (size - 16) / 12 formula is based on the information recorded
1669 	 * for each event, which is of mode 1 (including timestamp) for all
1670 	 * new microcodes that include this information.
1671 	 */
1672 	fw->init_evtlog_ptr = pieces->init_evtlog_ptr;
1673 	if (pieces->init_evtlog_size)
1674 		fw->init_evtlog_size = (pieces->init_evtlog_size - 16)/12;
1675 	else
1676 		fw->init_evtlog_size =
1677 			drv->trans->trans_cfg->base_params->max_event_log_size;
1678 	fw->init_errlog_ptr = pieces->init_errlog_ptr;
1679 	fw->inst_evtlog_ptr = pieces->inst_evtlog_ptr;
1680 	if (pieces->inst_evtlog_size)
1681 		fw->inst_evtlog_size = (pieces->inst_evtlog_size - 16)/12;
1682 	else
1683 		fw->inst_evtlog_size =
1684 			drv->trans->trans_cfg->base_params->max_event_log_size;
1685 	fw->inst_errlog_ptr = pieces->inst_errlog_ptr;
1686 
1687 	/*
1688 	 * figure out the offset of chain noise reset and gain commands
1689 	 * base on the size of standard phy calibration commands table size
1690 	 */
1691 	if (fw->ucode_capa.standard_phy_calibration_size >
1692 	    IWL_MAX_PHY_CALIBRATE_TBL_SIZE)
1693 		fw->ucode_capa.standard_phy_calibration_size =
1694 			IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE;
1695 
1696 	/* We have our copies now, allow OS release its copies */
1697 	release_firmware(ucode_raw);
1698 
1699 	iwl_dbg_tlv_load_bin(drv->trans->dev, drv->trans);
1700 
1701 	mutex_lock(&iwlwifi_opmode_table_mtx);
1702 	switch (fw->type) {
1703 	case IWL_FW_DVM:
1704 		op = &iwlwifi_opmode_table[DVM_OP_MODE];
1705 		break;
1706 	default:
1707 		WARN(1, "Invalid fw type %d\n", fw->type);
1708 		fallthrough;
1709 	case IWL_FW_MVM:
1710 		op = &iwlwifi_opmode_table[MVM_OP_MODE];
1711 		break;
1712 	}
1713 
1714 	IWL_INFO(drv, "loaded firmware version %s op_mode %s\n",
1715 		 drv->fw.fw_version, op->name);
1716 
1717 	/* add this device to the list of devices using this op_mode */
1718 	list_add_tail(&drv->list, &op->drv);
1719 
1720 	if (op->ops) {
1721 		drv->op_mode = _iwl_op_mode_start(drv, op);
1722 
1723 		if (!drv->op_mode) {
1724 			mutex_unlock(&iwlwifi_opmode_table_mtx);
1725 			goto out_unbind;
1726 		}
1727 	} else {
1728 		request_module_nowait("%s", op->name);
1729 	}
1730 	mutex_unlock(&iwlwifi_opmode_table_mtx);
1731 
1732 	complete(&drv->request_firmware_complete);
1733 
1734 	failure = false;
1735 	goto free;
1736 
1737  try_again:
1738 	/* try next, if any */
1739 	release_firmware(ucode_raw);
1740 	if (iwl_request_firmware(drv, false))
1741 		goto out_unbind;
1742 	goto free;
1743 
1744  out_free_fw:
1745 	release_firmware(ucode_raw);
1746  out_unbind:
1747 	complete(&drv->request_firmware_complete);
1748 	device_release_driver(drv->trans->dev);
1749 	/* drv has just been freed by the release */
1750 	failure = false;
1751  free:
1752 	if (failure)
1753 		iwl_dealloc_ucode(drv);
1754 
1755 	if (pieces) {
1756 		for (i = 0; i < ARRAY_SIZE(pieces->img); i++)
1757 			kfree(pieces->img[i].sec);
1758 		kfree(pieces->dbg_mem_tlv);
1759 		kfree(pieces);
1760 	}
1761 }
1762 
1763 struct iwl_drv *iwl_drv_start(struct iwl_trans *trans)
1764 {
1765 	struct iwl_drv *drv;
1766 	int ret;
1767 
1768 	drv = kzalloc(sizeof(*drv), GFP_KERNEL);
1769 	if (!drv) {
1770 		ret = -ENOMEM;
1771 		goto err;
1772 	}
1773 
1774 	drv->trans = trans;
1775 	drv->dev = trans->dev;
1776 
1777 	init_completion(&drv->request_firmware_complete);
1778 	INIT_LIST_HEAD(&drv->list);
1779 
1780 #ifdef CONFIG_IWLWIFI_DEBUGFS
1781 	/* Create the device debugfs entries. */
1782 	drv->dbgfs_drv = debugfs_create_dir(dev_name(trans->dev),
1783 					    iwl_dbgfs_root);
1784 
1785 	/* Create transport layer debugfs dir */
1786 	drv->trans->dbgfs_dir = debugfs_create_dir("trans", drv->dbgfs_drv);
1787 #endif
1788 
1789 	drv->trans->dbg.domains_bitmap = IWL_TRANS_FW_DBG_DOMAIN(drv->trans);
1790 	if (iwlwifi_mod_params.enable_ini != ENABLE_INI) {
1791 		/* We have a non-default value in the module parameter,
1792 		 * take its value
1793 		 */
1794 		drv->trans->dbg.domains_bitmap &= 0xffff;
1795 		if (iwlwifi_mod_params.enable_ini != IWL_FW_INI_PRESET_DISABLE) {
1796 			if (iwlwifi_mod_params.enable_ini > ENABLE_INI) {
1797 				IWL_ERR(trans,
1798 					"invalid enable_ini module parameter value: max = %d, using 0 instead\n",
1799 					ENABLE_INI);
1800 				iwlwifi_mod_params.enable_ini = 0;
1801 			}
1802 			drv->trans->dbg.domains_bitmap =
1803 				BIT(IWL_FW_DBG_DOMAIN_POS + iwlwifi_mod_params.enable_ini);
1804 		}
1805 	}
1806 
1807 	ret = iwl_request_firmware(drv, true);
1808 	if (ret) {
1809 		IWL_ERR(trans, "Couldn't request the fw\n");
1810 		goto err_fw;
1811 	}
1812 
1813 	return drv;
1814 
1815 err_fw:
1816 #ifdef CONFIG_IWLWIFI_DEBUGFS
1817 	debugfs_remove_recursive(drv->dbgfs_drv);
1818 #endif
1819 	iwl_dbg_tlv_free(drv->trans);
1820 	kfree(drv);
1821 err:
1822 	return ERR_PTR(ret);
1823 }
1824 
1825 void iwl_drv_stop(struct iwl_drv *drv)
1826 {
1827 	wait_for_completion(&drv->request_firmware_complete);
1828 
1829 	mutex_lock(&iwlwifi_opmode_table_mtx);
1830 
1831 	_iwl_op_mode_stop(drv);
1832 
1833 	iwl_dealloc_ucode(drv);
1834 
1835 	/*
1836 	 * List is empty (this item wasn't added)
1837 	 * when firmware loading failed -- in that
1838 	 * case we can't remove it from any list.
1839 	 */
1840 	if (!list_empty(&drv->list))
1841 		list_del(&drv->list);
1842 	mutex_unlock(&iwlwifi_opmode_table_mtx);
1843 
1844 #ifdef CONFIG_IWLWIFI_DEBUGFS
1845 	drv->trans->ops->debugfs_cleanup(drv->trans);
1846 
1847 	debugfs_remove_recursive(drv->dbgfs_drv);
1848 #endif
1849 
1850 	iwl_dbg_tlv_free(drv->trans);
1851 
1852 	kfree(drv);
1853 }
1854 
1855 /* shared module parameters */
1856 struct iwl_mod_params iwlwifi_mod_params = {
1857 	.fw_restart = true,
1858 	.bt_coex_active = true,
1859 	.power_level = IWL_POWER_INDEX_1,
1860 	.uapsd_disable = IWL_DISABLE_UAPSD_BSS | IWL_DISABLE_UAPSD_P2P_CLIENT,
1861 	.enable_ini = ENABLE_INI,
1862 	/* the rest are 0 by default */
1863 };
1864 IWL_EXPORT_SYMBOL(iwlwifi_mod_params);
1865 
1866 int iwl_opmode_register(const char *name, const struct iwl_op_mode_ops *ops)
1867 {
1868 	int i;
1869 	struct iwl_drv *drv;
1870 	struct iwlwifi_opmode_table *op;
1871 
1872 	mutex_lock(&iwlwifi_opmode_table_mtx);
1873 	for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1874 		op = &iwlwifi_opmode_table[i];
1875 		if (strcmp(op->name, name))
1876 			continue;
1877 		op->ops = ops;
1878 		/* TODO: need to handle exceptional case */
1879 		list_for_each_entry(drv, &op->drv, list)
1880 			drv->op_mode = _iwl_op_mode_start(drv, op);
1881 
1882 		mutex_unlock(&iwlwifi_opmode_table_mtx);
1883 		return 0;
1884 	}
1885 	mutex_unlock(&iwlwifi_opmode_table_mtx);
1886 	return -EIO;
1887 }
1888 IWL_EXPORT_SYMBOL(iwl_opmode_register);
1889 
1890 void iwl_opmode_deregister(const char *name)
1891 {
1892 	int i;
1893 	struct iwl_drv *drv;
1894 
1895 	mutex_lock(&iwlwifi_opmode_table_mtx);
1896 	for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++) {
1897 		if (strcmp(iwlwifi_opmode_table[i].name, name))
1898 			continue;
1899 		iwlwifi_opmode_table[i].ops = NULL;
1900 
1901 		/* call the stop routine for all devices */
1902 		list_for_each_entry(drv, &iwlwifi_opmode_table[i].drv, list)
1903 			_iwl_op_mode_stop(drv);
1904 
1905 		mutex_unlock(&iwlwifi_opmode_table_mtx);
1906 		return;
1907 	}
1908 	mutex_unlock(&iwlwifi_opmode_table_mtx);
1909 }
1910 IWL_EXPORT_SYMBOL(iwl_opmode_deregister);
1911 
1912 static int __init iwl_drv_init(void)
1913 {
1914 	int i, err;
1915 
1916 	for (i = 0; i < ARRAY_SIZE(iwlwifi_opmode_table); i++)
1917 		INIT_LIST_HEAD(&iwlwifi_opmode_table[i].drv);
1918 
1919 	pr_info(DRV_DESCRIPTION "\n");
1920 
1921 #ifdef CONFIG_IWLWIFI_DEBUGFS
1922 	/* Create the root of iwlwifi debugfs subsystem. */
1923 	iwl_dbgfs_root = debugfs_create_dir(DRV_NAME, NULL);
1924 #endif
1925 
1926 	err = iwl_pci_register_driver();
1927 	if (err)
1928 		goto cleanup_debugfs;
1929 
1930 	return 0;
1931 
1932 cleanup_debugfs:
1933 #ifdef CONFIG_IWLWIFI_DEBUGFS
1934 	debugfs_remove_recursive(iwl_dbgfs_root);
1935 #endif
1936 	return err;
1937 }
1938 module_init(iwl_drv_init);
1939 
1940 static void __exit iwl_drv_exit(void)
1941 {
1942 	iwl_pci_unregister_driver();
1943 
1944 #ifdef CONFIG_IWLWIFI_DEBUGFS
1945 	debugfs_remove_recursive(iwl_dbgfs_root);
1946 #endif
1947 }
1948 module_exit(iwl_drv_exit);
1949 
1950 #ifdef CONFIG_IWLWIFI_DEBUG
1951 module_param_named(debug, iwlwifi_mod_params.debug_level, uint, 0644);
1952 MODULE_PARM_DESC(debug, "debug output mask");
1953 #endif
1954 
1955 module_param_named(swcrypto, iwlwifi_mod_params.swcrypto, int, 0444);
1956 MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])");
1957 module_param_named(11n_disable, iwlwifi_mod_params.disable_11n, uint, 0444);
1958 MODULE_PARM_DESC(11n_disable,
1959 	"disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX");
1960 module_param_named(amsdu_size, iwlwifi_mod_params.amsdu_size, int, 0444);
1961 MODULE_PARM_DESC(amsdu_size,
1962 		 "amsdu size 0: 12K for multi Rx queue devices, 2K for AX210 devices, "
1963 		 "4K for other devices 1:4K 2:8K 3:12K (16K buffers) 4: 2K (default 0)");
1964 module_param_named(fw_restart, iwlwifi_mod_params.fw_restart, bool, 0444);
1965 MODULE_PARM_DESC(fw_restart, "restart firmware in case of error (default true)");
1966 
1967 module_param_named(nvm_file, iwlwifi_mod_params.nvm_file, charp, 0444);
1968 MODULE_PARM_DESC(nvm_file, "NVM file name");
1969 
1970 module_param_named(uapsd_disable, iwlwifi_mod_params.uapsd_disable, uint, 0644);
1971 MODULE_PARM_DESC(uapsd_disable,
1972 		 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
1973 
1974 module_param_named(enable_ini, iwlwifi_mod_params.enable_ini, uint, 0444);
1975 MODULE_PARM_DESC(enable_ini,
1976 		 "0:disable, 1-15:FW_DBG_PRESET Values, 16:enabled without preset value defined,"
1977 		 "Debug INI TLV FW debug infrastructure (default: 16)");
1978 
1979 /*
1980  * set bt_coex_active to true, uCode will do kill/defer
1981  * every time the priority line is asserted (BT is sending signals on the
1982  * priority line in the PCIx).
1983  * set bt_coex_active to false, uCode will ignore the BT activity and
1984  * perform the normal operation
1985  *
1986  * User might experience transmit issue on some platform due to WiFi/BT
1987  * co-exist problem. The possible behaviors are:
1988  *   Able to scan and finding all the available AP
1989  *   Not able to associate with any AP
1990  * On those platforms, WiFi communication can be restored by set
1991  * "bt_coex_active" module parameter to "false"
1992  *
1993  * default: bt_coex_active = true (BT_COEX_ENABLE)
1994  */
1995 module_param_named(bt_coex_active, iwlwifi_mod_params.bt_coex_active,
1996 		   bool, 0444);
1997 MODULE_PARM_DESC(bt_coex_active, "enable wifi/bt co-exist (default: enable)");
1998 
1999 module_param_named(led_mode, iwlwifi_mod_params.led_mode, int, 0444);
2000 MODULE_PARM_DESC(led_mode, "0=system default, "
2001 		"1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
2002 
2003 module_param_named(power_save, iwlwifi_mod_params.power_save, bool, 0444);
2004 MODULE_PARM_DESC(power_save,
2005 		 "enable WiFi power management (default: disable)");
2006 
2007 module_param_named(power_level, iwlwifi_mod_params.power_level, int, 0444);
2008 MODULE_PARM_DESC(power_level,
2009 		 "default power save level (range from 1 - 5, default: 1)");
2010 
2011 module_param_named(disable_11ac, iwlwifi_mod_params.disable_11ac, bool, 0444);
2012 MODULE_PARM_DESC(disable_11ac, "Disable VHT capabilities (default: false)");
2013 
2014 module_param_named(remove_when_gone,
2015 		   iwlwifi_mod_params.remove_when_gone, bool,
2016 		   0444);
2017 MODULE_PARM_DESC(remove_when_gone,
2018 		 "Remove dev from PCIe bus if it is deemed inaccessible (default: false)");
2019 
2020 module_param_named(disable_11ax, iwlwifi_mod_params.disable_11ax, bool,
2021 		   S_IRUGO);
2022 MODULE_PARM_DESC(disable_11ax, "Disable HE capabilities (default: false)");
2023 
2024 module_param_named(disable_11be, iwlwifi_mod_params.disable_11be, bool, 0444);
2025 MODULE_PARM_DESC(disable_11be, "Disable EHT capabilities (default: false)");
2026