1 /******************************************************************************
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.
8 * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
10 * Copyright(c) 2016 Intel Deutschland GmbH
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.
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.
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,
26 * The full GNU General Public License is included in this distribution
27 * in the file called COPYING.
29 * Contact Information:
30 * Intel Linux Wireless <linuxwifi@intel.com>
31 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
35 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
36 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
37 * Copyright(c) 2016 Intel Deutschland GmbH
38 * All rights reserved.
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
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
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.
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.
66 *****************************************************************************/
67 #include <linux/completion.h>
68 #include <linux/dma-mapping.h>
69 #include <linux/firmware.h>
70 #include <linux/module.h>
71 #include <linux/vmalloc.h>
75 #include "iwl-debug.h"
76 #include "iwl-trans.h"
77 #include "iwl-op-mode.h"
78 #include "iwl-agn-hw.h"
80 #include "iwl-config.h"
81 #include "iwl-modparams.h"
83 /******************************************************************************
87 ******************************************************************************/
89 #define DRV_DESCRIPTION "Intel(R) Wireless WiFi driver for Linux"
90 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
91 MODULE_AUTHOR(DRV_COPYRIGHT
" " DRV_AUTHOR
);
92 MODULE_LICENSE("GPL");
94 #ifdef CONFIG_IWLWIFI_DEBUGFS
95 static struct dentry
*iwl_dbgfs_root
;
99 * struct iwl_drv - drv common data
100 * @list: list of drv structures using this opmode
101 * @fw: the iwl_fw structure
102 * @op_mode: the running op_mode
103 * @trans: transport layer
104 * @dev: for debug prints only
105 * @cfg: configuration struct
106 * @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
111 struct list_head list
;
114 struct iwl_op_mode
*op_mode
;
115 struct iwl_trans
*trans
;
117 const struct iwl_cfg
*cfg
;
119 int fw_index
; /* firmware we're trying to load */
120 char firmware_name
[64]; /* name of firmware file to load */
122 struct completion request_firmware_complete
;
124 #ifdef CONFIG_IWLWIFI_DEBUGFS
125 struct dentry
*dbgfs_drv
;
126 struct dentry
*dbgfs_trans
;
127 struct dentry
*dbgfs_op_mode
;
136 /* Protects the table contents, i.e. the ops pointer & drv list */
137 static struct mutex iwlwifi_opmode_table_mtx
;
138 static 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 */
143 [DVM_OP_MODE
] = { .name
= "iwldvm", .ops
= NULL
},
144 [MVM_OP_MODE
] = { .name
= "iwlmvm", .ops
= NULL
},
147 #define IWL_DEFAULT_SCAN_CHANNELS 40
150 * struct fw_sec: Just for the image parsing process.
151 * For the fw storage we are using struct fw_desc.
154 const void *data
; /* the sec data */
155 size_t size
; /* section size */
156 u32 offset
; /* offset of writing in the device */
159 static void iwl_free_fw_desc(struct iwl_drv
*drv
, struct fw_desc
*desc
)
166 static void iwl_free_fw_img(struct iwl_drv
*drv
, struct fw_img
*img
)
169 for (i
= 0; i
< IWL_UCODE_SECTION_MAX
; i
++)
170 iwl_free_fw_desc(drv
, &img
->sec
[i
]);
173 static void iwl_dealloc_ucode(struct iwl_drv
*drv
)
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
]);
180 for (i
= 0; i
< ARRAY_SIZE(drv
->fw
.dbg_trigger_tlv
); i
++)
181 kfree(drv
->fw
.dbg_trigger_tlv
[i
]);
182 for (i
= 0; i
< ARRAY_SIZE(drv
->fw
.dbg_mem_tlv
); i
++)
183 kfree(drv
->fw
.dbg_mem_tlv
[i
]);
185 for (i
= 0; i
< IWL_UCODE_TYPE_MAX
; i
++)
186 iwl_free_fw_img(drv
, drv
->fw
.img
+ i
);
189 static int iwl_alloc_fw_desc(struct iwl_drv
*drv
, struct fw_desc
*desc
,
196 if (!sec
|| !sec
->size
)
199 data
= vmalloc(sec
->size
);
203 desc
->len
= sec
->size
;
204 desc
->offset
= sec
->offset
;
205 memcpy(data
, sec
->data
, desc
->len
);
211 static void iwl_req_fw_callback(const struct firmware
*ucode_raw
,
214 static int iwl_request_firmware(struct iwl_drv
*drv
, bool first
)
216 const char *name_pre
= drv
->cfg
->fw_name_pre
;
220 drv
->fw_index
= drv
->cfg
->ucode_api_max
;
221 sprintf(tag
, "%d", drv
->fw_index
);
224 sprintf(tag
, "%d", drv
->fw_index
);
227 if (drv
->fw_index
< drv
->cfg
->ucode_api_min
) {
228 IWL_ERR(drv
, "no suitable firmware found!\n");
232 snprintf(drv
->firmware_name
, sizeof(drv
->firmware_name
), "%s%s.ucode",
235 IWL_DEBUG_INFO(drv
, "attempting to load firmware '%s'\n",
238 return request_firmware_nowait(THIS_MODULE
, 1, drv
->firmware_name
,
240 GFP_KERNEL
, drv
, iwl_req_fw_callback
);
243 struct fw_img_parsing
{
244 struct fw_sec sec
[IWL_UCODE_SECTION_MAX
];
249 * struct fw_sec_parsing: to extract fw section and it's offset from tlv
251 struct fw_sec_parsing
{
257 * struct iwl_tlv_calib_data - parse the default calib data from TLV
259 * @ucode_type: the uCode to which the following default calib relates.
260 * @calib: default calibrations.
262 struct iwl_tlv_calib_data
{
264 struct iwl_tlv_calib_ctrl calib
;
267 struct iwl_firmware_pieces
{
268 struct fw_img_parsing img
[IWL_UCODE_TYPE_MAX
];
270 u32 init_evtlog_ptr
, init_evtlog_size
, init_errlog_ptr
;
271 u32 inst_evtlog_ptr
, inst_evtlog_size
, inst_errlog_ptr
;
273 /* FW debug data parsed for driver usage */
274 struct iwl_fw_dbg_dest_tlv
*dbg_dest_tlv
;
275 struct iwl_fw_dbg_conf_tlv
*dbg_conf_tlv
[FW_DBG_CONF_MAX
];
276 size_t dbg_conf_tlv_len
[FW_DBG_CONF_MAX
];
277 struct iwl_fw_dbg_trigger_tlv
*dbg_trigger_tlv
[FW_DBG_TRIGGER_MAX
];
278 size_t dbg_trigger_tlv_len
[FW_DBG_TRIGGER_MAX
];
279 struct iwl_fw_dbg_mem_seg_tlv
*dbg_mem_tlv
[FW_DBG_MEM_MAX
];
283 * These functions are just to extract uCode section data from the pieces
286 static struct fw_sec
*get_sec(struct iwl_firmware_pieces
*pieces
,
287 enum iwl_ucode_type type
,
290 return &pieces
->img
[type
].sec
[sec
];
293 static void set_sec_data(struct iwl_firmware_pieces
*pieces
,
294 enum iwl_ucode_type type
,
298 pieces
->img
[type
].sec
[sec
].data
= data
;
301 static void set_sec_size(struct iwl_firmware_pieces
*pieces
,
302 enum iwl_ucode_type type
,
306 pieces
->img
[type
].sec
[sec
].size
= size
;
309 static size_t get_sec_size(struct iwl_firmware_pieces
*pieces
,
310 enum iwl_ucode_type type
,
313 return pieces
->img
[type
].sec
[sec
].size
;
316 static void set_sec_offset(struct iwl_firmware_pieces
*pieces
,
317 enum iwl_ucode_type type
,
321 pieces
->img
[type
].sec
[sec
].offset
= offset
;
324 static int iwl_store_cscheme(struct iwl_fw
*fw
, const u8
*data
, const u32 len
)
327 struct iwl_fw_cscheme_list
*l
= (struct iwl_fw_cscheme_list
*)data
;
328 struct iwl_fw_cipher_scheme
*fwcs
;
329 struct ieee80211_cipher_scheme
*cs
;
332 if (len
< sizeof(*l
) ||
333 len
< sizeof(l
->size
) + l
->size
* sizeof(l
->cs
[0]))
336 for (i
= 0, j
= 0; i
< IWL_UCODE_MAX_CS
&& i
< l
->size
; i
++) {
338 cipher
= le32_to_cpu(fwcs
->cipher
);
340 /* we skip schemes with zero cipher suite selector */
346 cs
->iftype
= BIT(NL80211_IFTYPE_STATION
);
347 cs
->hdr_len
= fwcs
->hdr_len
;
348 cs
->pn_len
= fwcs
->pn_len
;
349 cs
->pn_off
= fwcs
->pn_off
;
350 cs
->key_idx_off
= fwcs
->key_idx_off
;
351 cs
->key_idx_mask
= fwcs
->key_idx_mask
;
352 cs
->key_idx_shift
= fwcs
->key_idx_shift
;
353 cs
->mic_len
= fwcs
->mic_len
;
359 static void iwl_store_gscan_capa(struct iwl_fw
*fw
, const u8
*data
,
362 struct iwl_fw_gscan_capabilities
*fw_capa
= (void *)data
;
363 struct iwl_gscan_capabilities
*capa
= &fw
->gscan_capa
;
365 capa
->max_scan_cache_size
= le32_to_cpu(fw_capa
->max_scan_cache_size
);
366 capa
->max_scan_buckets
= le32_to_cpu(fw_capa
->max_scan_buckets
);
367 capa
->max_ap_cache_per_scan
=
368 le32_to_cpu(fw_capa
->max_ap_cache_per_scan
);
369 capa
->max_rssi_sample_size
= le32_to_cpu(fw_capa
->max_rssi_sample_size
);
370 capa
->max_scan_reporting_threshold
=
371 le32_to_cpu(fw_capa
->max_scan_reporting_threshold
);
372 capa
->max_hotlist_aps
= le32_to_cpu(fw_capa
->max_hotlist_aps
);
373 capa
->max_significant_change_aps
=
374 le32_to_cpu(fw_capa
->max_significant_change_aps
);
375 capa
->max_bssid_history_entries
=
376 le32_to_cpu(fw_capa
->max_bssid_history_entries
);
377 capa
->max_hotlist_ssids
= le32_to_cpu(fw_capa
->max_hotlist_ssids
);
378 capa
->max_number_epno_networks
=
379 le32_to_cpu(fw_capa
->max_number_epno_networks
);
380 capa
->max_number_epno_networks_by_ssid
=
381 le32_to_cpu(fw_capa
->max_number_epno_networks_by_ssid
);
382 capa
->max_number_of_white_listed_ssid
=
383 le32_to_cpu(fw_capa
->max_number_of_white_listed_ssid
);
384 capa
->max_number_of_black_listed_ssid
=
385 le32_to_cpu(fw_capa
->max_number_of_black_listed_ssid
);
389 * Gets uCode section from tlv.
391 static int iwl_store_ucode_sec(struct iwl_firmware_pieces
*pieces
,
392 const void *data
, enum iwl_ucode_type type
,
395 struct fw_img_parsing
*img
;
397 struct fw_sec_parsing
*sec_parse
;
399 if (WARN_ON(!pieces
|| !data
|| type
>= IWL_UCODE_TYPE_MAX
))
402 sec_parse
= (struct fw_sec_parsing
*)data
;
404 img
= &pieces
->img
[type
];
405 sec
= &img
->sec
[img
->sec_counter
];
407 sec
->offset
= le32_to_cpu(sec_parse
->offset
);
408 sec
->data
= sec_parse
->data
;
409 sec
->size
= size
- sizeof(sec_parse
->offset
);
416 static int iwl_set_default_calib(struct iwl_drv
*drv
, const u8
*data
)
418 struct iwl_tlv_calib_data
*def_calib
=
419 (struct iwl_tlv_calib_data
*)data
;
420 u32 ucode_type
= le32_to_cpu(def_calib
->ucode_type
);
421 if (ucode_type
>= IWL_UCODE_TYPE_MAX
) {
422 IWL_ERR(drv
, "Wrong ucode_type %u for default calibration.\n",
426 drv
->fw
.default_calib
[ucode_type
].flow_trigger
=
427 def_calib
->calib
.flow_trigger
;
428 drv
->fw
.default_calib
[ucode_type
].event_trigger
=
429 def_calib
->calib
.event_trigger
;
434 static int iwl_set_ucode_api_flags(struct iwl_drv
*drv
, const u8
*data
,
435 struct iwl_ucode_capabilities
*capa
)
437 const struct iwl_ucode_api
*ucode_api
= (void *)data
;
438 u32 api_index
= le32_to_cpu(ucode_api
->api_index
);
439 u32 api_flags
= le32_to_cpu(ucode_api
->api_flags
);
442 if (api_index
>= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API
, 32)) {
444 "api flags index %d larger than supported by driver\n",
446 /* don't return an error so we can load FW that has more bits */
450 for (i
= 0; i
< 32; i
++) {
451 if (api_flags
& BIT(i
))
452 __set_bit(i
+ 32 * api_index
, capa
->_api
);
458 static int iwl_set_ucode_capabilities(struct iwl_drv
*drv
, const u8
*data
,
459 struct iwl_ucode_capabilities
*capa
)
461 const struct iwl_ucode_capa
*ucode_capa
= (void *)data
;
462 u32 api_index
= le32_to_cpu(ucode_capa
->api_index
);
463 u32 api_flags
= le32_to_cpu(ucode_capa
->api_capa
);
466 if (api_index
>= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA
, 32)) {
468 "capa flags index %d larger than supported by driver\n",
470 /* don't return an error so we can load FW that has more bits */
474 for (i
= 0; i
< 32; i
++) {
475 if (api_flags
& BIT(i
))
476 __set_bit(i
+ 32 * api_index
, capa
->_capa
);
482 static int iwl_parse_v1_v2_firmware(struct iwl_drv
*drv
,
483 const struct firmware
*ucode_raw
,
484 struct iwl_firmware_pieces
*pieces
)
486 struct iwl_ucode_header
*ucode
= (void *)ucode_raw
->data
;
487 u32 api_ver
, hdr_size
, build
;
491 drv
->fw
.ucode_ver
= le32_to_cpu(ucode
->ver
);
492 api_ver
= IWL_UCODE_API(drv
->fw
.ucode_ver
);
497 if (ucode_raw
->size
< hdr_size
) {
498 IWL_ERR(drv
, "File size too small!\n");
501 build
= le32_to_cpu(ucode
->u
.v2
.build
);
502 set_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
,
503 le32_to_cpu(ucode
->u
.v2
.inst_size
));
504 set_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
,
505 le32_to_cpu(ucode
->u
.v2
.data_size
));
506 set_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
,
507 le32_to_cpu(ucode
->u
.v2
.init_size
));
508 set_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
,
509 le32_to_cpu(ucode
->u
.v2
.init_data_size
));
510 src
= ucode
->u
.v2
.data
;
516 if (ucode_raw
->size
< hdr_size
) {
517 IWL_ERR(drv
, "File size too small!\n");
521 set_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
,
522 le32_to_cpu(ucode
->u
.v1
.inst_size
));
523 set_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
,
524 le32_to_cpu(ucode
->u
.v1
.data_size
));
525 set_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
,
526 le32_to_cpu(ucode
->u
.v1
.init_size
));
527 set_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
,
528 le32_to_cpu(ucode
->u
.v1
.init_data_size
));
529 src
= ucode
->u
.v1
.data
;
534 sprintf(buildstr
, " build %u", build
);
538 snprintf(drv
->fw
.fw_version
,
539 sizeof(drv
->fw
.fw_version
),
541 IWL_UCODE_MAJOR(drv
->fw
.ucode_ver
),
542 IWL_UCODE_MINOR(drv
->fw
.ucode_ver
),
543 IWL_UCODE_API(drv
->fw
.ucode_ver
),
544 IWL_UCODE_SERIAL(drv
->fw
.ucode_ver
),
547 /* Verify size of file vs. image size info in file's header */
549 if (ucode_raw
->size
!= hdr_size
+
550 get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
) +
551 get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
) +
552 get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
) +
553 get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
)) {
556 "uCode file size %d does not match expected size\n",
557 (int)ucode_raw
->size
);
562 set_sec_data(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
, src
);
563 src
+= get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
);
564 set_sec_offset(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
,
565 IWLAGN_RTC_INST_LOWER_BOUND
);
566 set_sec_data(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
, src
);
567 src
+= get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
);
568 set_sec_offset(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
,
569 IWLAGN_RTC_DATA_LOWER_BOUND
);
570 set_sec_data(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
, src
);
571 src
+= get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
);
572 set_sec_offset(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
,
573 IWLAGN_RTC_INST_LOWER_BOUND
);
574 set_sec_data(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
, src
);
575 src
+= get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
);
576 set_sec_offset(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
,
577 IWLAGN_RTC_DATA_LOWER_BOUND
);
581 static int iwl_parse_tlv_firmware(struct iwl_drv
*drv
,
582 const struct firmware
*ucode_raw
,
583 struct iwl_firmware_pieces
*pieces
,
584 struct iwl_ucode_capabilities
*capa
,
585 bool *usniffer_images
)
587 struct iwl_tlv_ucode_header
*ucode
= (void *)ucode_raw
->data
;
588 struct iwl_ucode_tlv
*tlv
;
589 size_t len
= ucode_raw
->size
;
593 enum iwl_ucode_tlv_type tlv_type
;
596 u32 build
, paging_mem_size
;
598 bool usniffer_req
= false;
599 bool gscan_capa
= false;
601 if (len
< sizeof(*ucode
)) {
602 IWL_ERR(drv
, "uCode has invalid length: %zd\n", len
);
606 if (ucode
->magic
!= cpu_to_le32(IWL_TLV_UCODE_MAGIC
)) {
607 IWL_ERR(drv
, "invalid uCode magic: 0X%x\n",
608 le32_to_cpu(ucode
->magic
));
612 drv
->fw
.ucode_ver
= le32_to_cpu(ucode
->ver
);
613 memcpy(drv
->fw
.human_readable
, ucode
->human_readable
,
614 sizeof(drv
->fw
.human_readable
));
615 build
= le32_to_cpu(ucode
->build
);
618 sprintf(buildstr
, " build %u", build
);
622 snprintf(drv
->fw
.fw_version
,
623 sizeof(drv
->fw
.fw_version
),
625 IWL_UCODE_MAJOR(drv
->fw
.ucode_ver
),
626 IWL_UCODE_MINOR(drv
->fw
.ucode_ver
),
627 IWL_UCODE_API(drv
->fw
.ucode_ver
),
628 IWL_UCODE_SERIAL(drv
->fw
.ucode_ver
),
633 len
-= sizeof(*ucode
);
635 while (len
>= sizeof(*tlv
)) {
639 tlv_len
= le32_to_cpu(tlv
->length
);
640 tlv_type
= le32_to_cpu(tlv
->type
);
641 tlv_data
= tlv
->data
;
644 IWL_ERR(drv
, "invalid TLV len: %zd/%u\n",
648 len
-= ALIGN(tlv_len
, 4);
649 data
+= sizeof(*tlv
) + ALIGN(tlv_len
, 4);
652 case IWL_UCODE_TLV_INST
:
653 set_sec_data(pieces
, IWL_UCODE_REGULAR
,
654 IWL_UCODE_SECTION_INST
, tlv_data
);
655 set_sec_size(pieces
, IWL_UCODE_REGULAR
,
656 IWL_UCODE_SECTION_INST
, tlv_len
);
657 set_sec_offset(pieces
, IWL_UCODE_REGULAR
,
658 IWL_UCODE_SECTION_INST
,
659 IWLAGN_RTC_INST_LOWER_BOUND
);
661 case IWL_UCODE_TLV_DATA
:
662 set_sec_data(pieces
, IWL_UCODE_REGULAR
,
663 IWL_UCODE_SECTION_DATA
, tlv_data
);
664 set_sec_size(pieces
, IWL_UCODE_REGULAR
,
665 IWL_UCODE_SECTION_DATA
, tlv_len
);
666 set_sec_offset(pieces
, IWL_UCODE_REGULAR
,
667 IWL_UCODE_SECTION_DATA
,
668 IWLAGN_RTC_DATA_LOWER_BOUND
);
670 case IWL_UCODE_TLV_INIT
:
671 set_sec_data(pieces
, IWL_UCODE_INIT
,
672 IWL_UCODE_SECTION_INST
, tlv_data
);
673 set_sec_size(pieces
, IWL_UCODE_INIT
,
674 IWL_UCODE_SECTION_INST
, tlv_len
);
675 set_sec_offset(pieces
, IWL_UCODE_INIT
,
676 IWL_UCODE_SECTION_INST
,
677 IWLAGN_RTC_INST_LOWER_BOUND
);
679 case IWL_UCODE_TLV_INIT_DATA
:
680 set_sec_data(pieces
, IWL_UCODE_INIT
,
681 IWL_UCODE_SECTION_DATA
, tlv_data
);
682 set_sec_size(pieces
, IWL_UCODE_INIT
,
683 IWL_UCODE_SECTION_DATA
, tlv_len
);
684 set_sec_offset(pieces
, IWL_UCODE_INIT
,
685 IWL_UCODE_SECTION_DATA
,
686 IWLAGN_RTC_DATA_LOWER_BOUND
);
688 case IWL_UCODE_TLV_BOOT
:
689 IWL_ERR(drv
, "Found unexpected BOOT ucode\n");
691 case IWL_UCODE_TLV_PROBE_MAX_LEN
:
692 if (tlv_len
!= sizeof(u32
))
693 goto invalid_tlv_len
;
694 capa
->max_probe_length
=
695 le32_to_cpup((__le32
*)tlv_data
);
697 case IWL_UCODE_TLV_PAN
:
699 goto invalid_tlv_len
;
700 capa
->flags
|= IWL_UCODE_TLV_FLAGS_PAN
;
702 case IWL_UCODE_TLV_FLAGS
:
703 /* must be at least one u32 */
704 if (tlv_len
< sizeof(u32
))
705 goto invalid_tlv_len
;
706 /* and a proper number of u32s */
707 if (tlv_len
% sizeof(u32
))
708 goto invalid_tlv_len
;
710 * This driver only reads the first u32 as
711 * right now no more features are defined,
712 * if that changes then either the driver
713 * will not work with the new firmware, or
714 * it'll not take advantage of new features.
716 capa
->flags
= le32_to_cpup((__le32
*)tlv_data
);
718 case IWL_UCODE_TLV_API_CHANGES_SET
:
719 if (tlv_len
!= sizeof(struct iwl_ucode_api
))
720 goto invalid_tlv_len
;
721 if (iwl_set_ucode_api_flags(drv
, tlv_data
, capa
))
724 case IWL_UCODE_TLV_ENABLED_CAPABILITIES
:
725 if (tlv_len
!= sizeof(struct iwl_ucode_capa
))
726 goto invalid_tlv_len
;
727 if (iwl_set_ucode_capabilities(drv
, tlv_data
, capa
))
730 case IWL_UCODE_TLV_INIT_EVTLOG_PTR
:
731 if (tlv_len
!= sizeof(u32
))
732 goto invalid_tlv_len
;
733 pieces
->init_evtlog_ptr
=
734 le32_to_cpup((__le32
*)tlv_data
);
736 case IWL_UCODE_TLV_INIT_EVTLOG_SIZE
:
737 if (tlv_len
!= sizeof(u32
))
738 goto invalid_tlv_len
;
739 pieces
->init_evtlog_size
=
740 le32_to_cpup((__le32
*)tlv_data
);
742 case IWL_UCODE_TLV_INIT_ERRLOG_PTR
:
743 if (tlv_len
!= sizeof(u32
))
744 goto invalid_tlv_len
;
745 pieces
->init_errlog_ptr
=
746 le32_to_cpup((__le32
*)tlv_data
);
748 case IWL_UCODE_TLV_RUNT_EVTLOG_PTR
:
749 if (tlv_len
!= sizeof(u32
))
750 goto invalid_tlv_len
;
751 pieces
->inst_evtlog_ptr
=
752 le32_to_cpup((__le32
*)tlv_data
);
754 case IWL_UCODE_TLV_RUNT_EVTLOG_SIZE
:
755 if (tlv_len
!= sizeof(u32
))
756 goto invalid_tlv_len
;
757 pieces
->inst_evtlog_size
=
758 le32_to_cpup((__le32
*)tlv_data
);
760 case IWL_UCODE_TLV_RUNT_ERRLOG_PTR
:
761 if (tlv_len
!= sizeof(u32
))
762 goto invalid_tlv_len
;
763 pieces
->inst_errlog_ptr
=
764 le32_to_cpup((__le32
*)tlv_data
);
766 case IWL_UCODE_TLV_ENHANCE_SENS_TBL
:
768 goto invalid_tlv_len
;
769 drv
->fw
.enhance_sensitivity_table
= true;
771 case IWL_UCODE_TLV_WOWLAN_INST
:
772 set_sec_data(pieces
, IWL_UCODE_WOWLAN
,
773 IWL_UCODE_SECTION_INST
, tlv_data
);
774 set_sec_size(pieces
, IWL_UCODE_WOWLAN
,
775 IWL_UCODE_SECTION_INST
, tlv_len
);
776 set_sec_offset(pieces
, IWL_UCODE_WOWLAN
,
777 IWL_UCODE_SECTION_INST
,
778 IWLAGN_RTC_INST_LOWER_BOUND
);
780 case IWL_UCODE_TLV_WOWLAN_DATA
:
781 set_sec_data(pieces
, IWL_UCODE_WOWLAN
,
782 IWL_UCODE_SECTION_DATA
, tlv_data
);
783 set_sec_size(pieces
, IWL_UCODE_WOWLAN
,
784 IWL_UCODE_SECTION_DATA
, tlv_len
);
785 set_sec_offset(pieces
, IWL_UCODE_WOWLAN
,
786 IWL_UCODE_SECTION_DATA
,
787 IWLAGN_RTC_DATA_LOWER_BOUND
);
789 case IWL_UCODE_TLV_PHY_CALIBRATION_SIZE
:
790 if (tlv_len
!= sizeof(u32
))
791 goto invalid_tlv_len
;
792 capa
->standard_phy_calibration_size
=
793 le32_to_cpup((__le32
*)tlv_data
);
795 case IWL_UCODE_TLV_SEC_RT
:
796 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_REGULAR
,
798 drv
->fw
.mvm_fw
= true;
800 case IWL_UCODE_TLV_SEC_INIT
:
801 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_INIT
,
803 drv
->fw
.mvm_fw
= true;
805 case IWL_UCODE_TLV_SEC_WOWLAN
:
806 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_WOWLAN
,
808 drv
->fw
.mvm_fw
= true;
810 case IWL_UCODE_TLV_DEF_CALIB
:
811 if (tlv_len
!= sizeof(struct iwl_tlv_calib_data
))
812 goto invalid_tlv_len
;
813 if (iwl_set_default_calib(drv
, tlv_data
))
816 case IWL_UCODE_TLV_PHY_SKU
:
817 if (tlv_len
!= sizeof(u32
))
818 goto invalid_tlv_len
;
819 drv
->fw
.phy_config
= le32_to_cpup((__le32
*)tlv_data
);
820 drv
->fw
.valid_tx_ant
= (drv
->fw
.phy_config
&
821 FW_PHY_CFG_TX_CHAIN
) >>
822 FW_PHY_CFG_TX_CHAIN_POS
;
823 drv
->fw
.valid_rx_ant
= (drv
->fw
.phy_config
&
824 FW_PHY_CFG_RX_CHAIN
) >>
825 FW_PHY_CFG_RX_CHAIN_POS
;
827 case IWL_UCODE_TLV_SECURE_SEC_RT
:
828 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_REGULAR
,
830 drv
->fw
.mvm_fw
= true;
832 case IWL_UCODE_TLV_SECURE_SEC_INIT
:
833 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_INIT
,
835 drv
->fw
.mvm_fw
= true;
837 case IWL_UCODE_TLV_SECURE_SEC_WOWLAN
:
838 iwl_store_ucode_sec(pieces
, tlv_data
, IWL_UCODE_WOWLAN
,
840 drv
->fw
.mvm_fw
= true;
842 case IWL_UCODE_TLV_NUM_OF_CPU
:
843 if (tlv_len
!= sizeof(u32
))
844 goto invalid_tlv_len
;
846 le32_to_cpup((__le32
*)tlv_data
);
848 if (num_of_cpus
== 2) {
849 drv
->fw
.img
[IWL_UCODE_REGULAR
].is_dual_cpus
=
851 drv
->fw
.img
[IWL_UCODE_INIT
].is_dual_cpus
=
853 drv
->fw
.img
[IWL_UCODE_WOWLAN
].is_dual_cpus
=
855 } else if ((num_of_cpus
> 2) || (num_of_cpus
< 1)) {
856 IWL_ERR(drv
, "Driver support upto 2 CPUs\n");
860 case IWL_UCODE_TLV_CSCHEME
:
861 if (iwl_store_cscheme(&drv
->fw
, tlv_data
, tlv_len
))
862 goto invalid_tlv_len
;
864 case IWL_UCODE_TLV_N_SCAN_CHANNELS
:
865 if (tlv_len
!= sizeof(u32
))
866 goto invalid_tlv_len
;
867 capa
->n_scan_channels
=
868 le32_to_cpup((__le32
*)tlv_data
);
870 case IWL_UCODE_TLV_FW_VERSION
: {
871 __le32
*ptr
= (void *)tlv_data
;
875 if (tlv_len
!= sizeof(u32
) * 3)
876 goto invalid_tlv_len
;
878 major
= le32_to_cpup(ptr
++);
879 minor
= le32_to_cpup(ptr
++);
880 local_comp
= le32_to_cpup(ptr
);
882 snprintf(drv
->fw
.fw_version
,
883 sizeof(drv
->fw
.fw_version
), "%u.%u.%u",
884 major
, minor
, local_comp
);
887 case IWL_UCODE_TLV_FW_DBG_DEST
: {
888 struct iwl_fw_dbg_dest_tlv
*dest
= (void *)tlv_data
;
890 if (pieces
->dbg_dest_tlv
) {
892 "dbg destination ignored, already exists\n");
896 pieces
->dbg_dest_tlv
= dest
;
897 IWL_INFO(drv
, "Found debug destination: %s\n",
898 get_fw_dbg_mode_string(dest
->monitor_mode
));
900 drv
->fw
.dbg_dest_reg_num
=
901 tlv_len
- offsetof(struct iwl_fw_dbg_dest_tlv
,
903 drv
->fw
.dbg_dest_reg_num
/=
904 sizeof(drv
->fw
.dbg_dest_tlv
->reg_ops
[0]);
908 case IWL_UCODE_TLV_FW_DBG_CONF
: {
909 struct iwl_fw_dbg_conf_tlv
*conf
= (void *)tlv_data
;
911 if (!pieces
->dbg_dest_tlv
) {
913 "Ignore dbg config %d - no destination configured\n",
918 if (conf
->id
>= ARRAY_SIZE(drv
->fw
.dbg_conf_tlv
)) {
920 "Skip unknown configuration: %d\n",
925 if (pieces
->dbg_conf_tlv
[conf
->id
]) {
927 "Ignore duplicate dbg config %d\n",
935 IWL_INFO(drv
, "Found debug configuration: %d\n",
938 pieces
->dbg_conf_tlv
[conf
->id
] = conf
;
939 pieces
->dbg_conf_tlv_len
[conf
->id
] = tlv_len
;
942 case IWL_UCODE_TLV_FW_DBG_TRIGGER
: {
943 struct iwl_fw_dbg_trigger_tlv
*trigger
=
945 u32 trigger_id
= le32_to_cpu(trigger
->id
);
947 if (trigger_id
>= ARRAY_SIZE(drv
->fw
.dbg_trigger_tlv
)) {
949 "Skip unknown trigger: %u\n",
954 if (pieces
->dbg_trigger_tlv
[trigger_id
]) {
956 "Ignore duplicate dbg trigger %u\n",
961 IWL_INFO(drv
, "Found debug trigger: %u\n", trigger
->id
);
963 pieces
->dbg_trigger_tlv
[trigger_id
] = trigger
;
964 pieces
->dbg_trigger_tlv_len
[trigger_id
] = tlv_len
;
967 case IWL_UCODE_TLV_SEC_RT_USNIFFER
:
968 *usniffer_images
= true;
969 iwl_store_ucode_sec(pieces
, tlv_data
,
970 IWL_UCODE_REGULAR_USNIFFER
,
973 case IWL_UCODE_TLV_PAGING
:
974 if (tlv_len
!= sizeof(u32
))
975 goto invalid_tlv_len
;
976 paging_mem_size
= le32_to_cpup((__le32
*)tlv_data
);
979 "Paging: paging enabled (size = %u bytes)\n",
982 if (paging_mem_size
> MAX_PAGING_IMAGE_SIZE
) {
984 "Paging: driver supports up to %lu bytes for paging image\n",
985 MAX_PAGING_IMAGE_SIZE
);
989 if (paging_mem_size
& (FW_PAGING_SIZE
- 1)) {
991 "Paging: image isn't multiple %lu\n",
996 drv
->fw
.img
[IWL_UCODE_REGULAR
].paging_mem_size
=
998 usniffer_img
= IWL_UCODE_REGULAR_USNIFFER
;
999 drv
->fw
.img
[usniffer_img
].paging_mem_size
=
1002 case IWL_UCODE_TLV_SDIO_ADMA_ADDR
:
1003 if (tlv_len
!= sizeof(u32
))
1004 goto invalid_tlv_len
;
1005 drv
->fw
.sdio_adma_addr
=
1006 le32_to_cpup((__le32
*)tlv_data
);
1008 case IWL_UCODE_TLV_FW_GSCAN_CAPA
:
1010 * Don't return an error in case of a shorter tlv_len
1011 * to enable loading of FW that has an old format
1012 * of GSCAN capabilities TLV.
1014 if (tlv_len
< sizeof(struct iwl_fw_gscan_capabilities
))
1017 iwl_store_gscan_capa(&drv
->fw
, tlv_data
, tlv_len
);
1020 case IWL_UCODE_TLV_FW_MEM_SEG
: {
1021 struct iwl_fw_dbg_mem_seg_tlv
*dbg_mem
=
1025 if (tlv_len
!= (sizeof(*dbg_mem
)))
1026 goto invalid_tlv_len
;
1028 type
= le32_to_cpu(dbg_mem
->data_type
);
1029 drv
->fw
.dbg_dynamic_mem
= true;
1031 if (type
>= ARRAY_SIZE(drv
->fw
.dbg_mem_tlv
)) {
1033 "Skip unknown dbg mem segment: %u\n",
1034 dbg_mem
->data_type
);
1038 if (pieces
->dbg_mem_tlv
[type
]) {
1040 "Ignore duplicate mem segment: %u\n",
1041 dbg_mem
->data_type
);
1045 IWL_DEBUG_INFO(drv
, "Found debug memory segment: %u\n",
1046 dbg_mem
->data_type
);
1048 pieces
->dbg_mem_tlv
[type
] = dbg_mem
;
1052 IWL_DEBUG_INFO(drv
, "unknown TLV: %d\n", tlv_type
);
1057 if (!fw_has_capa(capa
, IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED
) &&
1058 usniffer_req
&& !*usniffer_images
) {
1060 "user selected to work with usniffer but usniffer image isn't available in ucode package\n");
1065 IWL_ERR(drv
, "invalid TLV after parsing: %zd\n", len
);
1066 iwl_print_hex_dump(drv
, IWL_DL_FW
, (u8
*)data
, len
);
1071 * If ucode advertises that it supports GSCAN but GSCAN
1072 * capabilities TLV is not present, or if it has an old format,
1073 * warn and continue without GSCAN.
1075 if (fw_has_capa(capa
, IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT
) &&
1078 "GSCAN is supported but capabilities TLV is unavailable\n");
1079 __clear_bit((__force
long)IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT
,
1086 IWL_ERR(drv
, "TLV %d has invalid size: %u\n", tlv_type
, tlv_len
);
1088 iwl_print_hex_dump(drv
, IWL_DL_FW
, tlv_data
, tlv_len
);
1093 static int iwl_alloc_ucode(struct iwl_drv
*drv
,
1094 struct iwl_firmware_pieces
*pieces
,
1095 enum iwl_ucode_type type
)
1099 i
< IWL_UCODE_SECTION_MAX
&& get_sec_size(pieces
, type
, i
);
1101 if (iwl_alloc_fw_desc(drv
, &(drv
->fw
.img
[type
].sec
[i
]),
1102 get_sec(pieces
, type
, i
)))
1107 static int validate_sec_sizes(struct iwl_drv
*drv
,
1108 struct iwl_firmware_pieces
*pieces
,
1109 const struct iwl_cfg
*cfg
)
1111 IWL_DEBUG_INFO(drv
, "f/w package hdr runtime inst size = %Zd\n",
1112 get_sec_size(pieces
, IWL_UCODE_REGULAR
,
1113 IWL_UCODE_SECTION_INST
));
1114 IWL_DEBUG_INFO(drv
, "f/w package hdr runtime data size = %Zd\n",
1115 get_sec_size(pieces
, IWL_UCODE_REGULAR
,
1116 IWL_UCODE_SECTION_DATA
));
1117 IWL_DEBUG_INFO(drv
, "f/w package hdr init inst size = %Zd\n",
1118 get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
));
1119 IWL_DEBUG_INFO(drv
, "f/w package hdr init data size = %Zd\n",
1120 get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
));
1122 /* Verify that uCode images will fit in card's SRAM. */
1123 if (get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_INST
) >
1124 cfg
->max_inst_size
) {
1125 IWL_ERR(drv
, "uCode instr len %Zd too large to fit in\n",
1126 get_sec_size(pieces
, IWL_UCODE_REGULAR
,
1127 IWL_UCODE_SECTION_INST
));
1131 if (get_sec_size(pieces
, IWL_UCODE_REGULAR
, IWL_UCODE_SECTION_DATA
) >
1132 cfg
->max_data_size
) {
1133 IWL_ERR(drv
, "uCode data len %Zd too large to fit in\n",
1134 get_sec_size(pieces
, IWL_UCODE_REGULAR
,
1135 IWL_UCODE_SECTION_DATA
));
1139 if (get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_INST
) >
1140 cfg
->max_inst_size
) {
1141 IWL_ERR(drv
, "uCode init instr len %Zd too large to fit in\n",
1142 get_sec_size(pieces
, IWL_UCODE_INIT
,
1143 IWL_UCODE_SECTION_INST
));
1147 if (get_sec_size(pieces
, IWL_UCODE_INIT
, IWL_UCODE_SECTION_DATA
) >
1148 cfg
->max_data_size
) {
1149 IWL_ERR(drv
, "uCode init data len %Zd too large to fit in\n",
1150 get_sec_size(pieces
, IWL_UCODE_REGULAR
,
1151 IWL_UCODE_SECTION_DATA
));
1157 static struct iwl_op_mode
*
1158 _iwl_op_mode_start(struct iwl_drv
*drv
, struct iwlwifi_opmode_table
*op
)
1160 const struct iwl_op_mode_ops
*ops
= op
->ops
;
1161 struct dentry
*dbgfs_dir
= NULL
;
1162 struct iwl_op_mode
*op_mode
= NULL
;
1164 #ifdef CONFIG_IWLWIFI_DEBUGFS
1165 drv
->dbgfs_op_mode
= debugfs_create_dir(op
->name
,
1167 if (!drv
->dbgfs_op_mode
) {
1169 "failed to create opmode debugfs directory\n");
1172 dbgfs_dir
= drv
->dbgfs_op_mode
;
1175 op_mode
= ops
->start(drv
->trans
, drv
->cfg
, &drv
->fw
, dbgfs_dir
);
1177 #ifdef CONFIG_IWLWIFI_DEBUGFS
1179 debugfs_remove_recursive(drv
->dbgfs_op_mode
);
1180 drv
->dbgfs_op_mode
= NULL
;
1187 static void _iwl_op_mode_stop(struct iwl_drv
*drv
)
1189 /* op_mode can be NULL if its start failed */
1191 iwl_op_mode_stop(drv
->op_mode
);
1192 drv
->op_mode
= NULL
;
1194 #ifdef CONFIG_IWLWIFI_DEBUGFS
1195 debugfs_remove_recursive(drv
->dbgfs_op_mode
);
1196 drv
->dbgfs_op_mode
= NULL
;
1202 * iwl_req_fw_callback - callback when firmware was loaded
1204 * If loaded successfully, copies the firmware into buffers
1205 * for the card to fetch (via DMA).
1207 static void iwl_req_fw_callback(const struct firmware
*ucode_raw
, void *context
)
1209 struct iwl_drv
*drv
= context
;
1210 struct iwl_fw
*fw
= &drv
->fw
;
1211 struct iwl_ucode_header
*ucode
;
1212 struct iwlwifi_opmode_table
*op
;
1214 struct iwl_firmware_pieces
*pieces
;
1215 const unsigned int api_max
= drv
->cfg
->ucode_api_max
;
1216 const unsigned int api_min
= drv
->cfg
->ucode_api_min
;
1217 size_t trigger_tlv_sz
[FW_DBG_TRIGGER_MAX
];
1220 bool load_module
= false;
1221 bool usniffer_images
= false;
1223 fw
->ucode_capa
.max_probe_length
= IWL_DEFAULT_MAX_PROBE_LENGTH
;
1224 fw
->ucode_capa
.standard_phy_calibration_size
=
1225 IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE
;
1226 fw
->ucode_capa
.n_scan_channels
= IWL_DEFAULT_SCAN_CHANNELS
;
1228 pieces
= kzalloc(sizeof(*pieces
), GFP_KERNEL
);
1235 IWL_DEBUG_INFO(drv
, "Loaded firmware file '%s' (%zd bytes).\n",
1236 drv
->firmware_name
, ucode_raw
->size
);
1238 /* Make sure that we got at least the API version number */
1239 if (ucode_raw
->size
< 4) {
1240 IWL_ERR(drv
, "File size way too small!\n");
1244 /* Data from ucode file: header followed by uCode images */
1245 ucode
= (struct iwl_ucode_header
*)ucode_raw
->data
;
1248 err
= iwl_parse_v1_v2_firmware(drv
, ucode_raw
, pieces
);
1250 err
= iwl_parse_tlv_firmware(drv
, ucode_raw
, pieces
,
1251 &fw
->ucode_capa
, &usniffer_images
);
1256 if (fw_has_api(&drv
->fw
.ucode_capa
, IWL_UCODE_TLV_API_NEW_VERSION
))
1257 api_ver
= drv
->fw
.ucode_ver
;
1259 api_ver
= IWL_UCODE_API(drv
->fw
.ucode_ver
);
1262 * api_ver should match the api version forming part of the
1263 * firmware filename ... but we don't check for that and only rely
1264 * on the API version read from firmware header from here on forward
1266 if (api_ver
< api_min
|| api_ver
> api_max
) {
1268 "Driver unable to support your firmware API. "
1269 "Driver supports v%u, firmware is v%u.\n",
1275 * In mvm uCode there is no difference between data and instructions
1278 if (!fw
->mvm_fw
&& validate_sec_sizes(drv
, pieces
, drv
->cfg
))
1281 /* Allocate ucode buffers for card's bus-master loading ... */
1283 /* Runtime instructions and 2 copies of data:
1284 * 1) unmodified from disk
1285 * 2) backup cache for save/restore during power-downs */
1286 for (i
= 0; i
< IWL_UCODE_TYPE_MAX
; i
++)
1287 if (iwl_alloc_ucode(drv
, pieces
, i
))
1290 if (pieces
->dbg_dest_tlv
) {
1291 drv
->fw
.dbg_dest_tlv
=
1292 kmemdup(pieces
->dbg_dest_tlv
,
1293 sizeof(*pieces
->dbg_dest_tlv
) +
1294 sizeof(pieces
->dbg_dest_tlv
->reg_ops
[0]) *
1295 drv
->fw
.dbg_dest_reg_num
, GFP_KERNEL
);
1297 if (!drv
->fw
.dbg_dest_tlv
)
1301 for (i
= 0; i
< ARRAY_SIZE(drv
->fw
.dbg_conf_tlv
); i
++) {
1302 if (pieces
->dbg_conf_tlv
[i
]) {
1303 drv
->fw
.dbg_conf_tlv_len
[i
] =
1304 pieces
->dbg_conf_tlv_len
[i
];
1305 drv
->fw
.dbg_conf_tlv
[i
] =
1306 kmemdup(pieces
->dbg_conf_tlv
[i
],
1307 drv
->fw
.dbg_conf_tlv_len
[i
],
1309 if (!drv
->fw
.dbg_conf_tlv
[i
])
1314 memset(&trigger_tlv_sz
, 0xff, sizeof(trigger_tlv_sz
));
1316 trigger_tlv_sz
[FW_DBG_TRIGGER_MISSED_BEACONS
] =
1317 sizeof(struct iwl_fw_dbg_trigger_missed_bcon
);
1318 trigger_tlv_sz
[FW_DBG_TRIGGER_CHANNEL_SWITCH
] = 0;
1319 trigger_tlv_sz
[FW_DBG_TRIGGER_FW_NOTIF
] =
1320 sizeof(struct iwl_fw_dbg_trigger_cmd
);
1321 trigger_tlv_sz
[FW_DBG_TRIGGER_MLME
] =
1322 sizeof(struct iwl_fw_dbg_trigger_mlme
);
1323 trigger_tlv_sz
[FW_DBG_TRIGGER_STATS
] =
1324 sizeof(struct iwl_fw_dbg_trigger_stats
);
1325 trigger_tlv_sz
[FW_DBG_TRIGGER_RSSI
] =
1326 sizeof(struct iwl_fw_dbg_trigger_low_rssi
);
1327 trigger_tlv_sz
[FW_DBG_TRIGGER_TXQ_TIMERS
] =
1328 sizeof(struct iwl_fw_dbg_trigger_txq_timer
);
1329 trigger_tlv_sz
[FW_DBG_TRIGGER_TIME_EVENT
] =
1330 sizeof(struct iwl_fw_dbg_trigger_time_event
);
1331 trigger_tlv_sz
[FW_DBG_TRIGGER_BA
] =
1332 sizeof(struct iwl_fw_dbg_trigger_ba
);
1333 trigger_tlv_sz
[FW_DBG_TRIGGER_TDLS
] =
1334 sizeof(struct iwl_fw_dbg_trigger_tdls
);
1336 for (i
= 0; i
< ARRAY_SIZE(drv
->fw
.dbg_trigger_tlv
); i
++) {
1337 if (pieces
->dbg_trigger_tlv
[i
]) {
1339 * If the trigger isn't long enough, WARN and exit.
1340 * Someone is trying to debug something and he won't
1341 * be able to catch the bug he is trying to chase.
1342 * We'd better be noisy to be sure he knows what's
1345 if (WARN_ON(pieces
->dbg_trigger_tlv_len
[i
] <
1346 (trigger_tlv_sz
[i
] +
1347 sizeof(struct iwl_fw_dbg_trigger_tlv
))))
1349 drv
->fw
.dbg_trigger_tlv_len
[i
] =
1350 pieces
->dbg_trigger_tlv_len
[i
];
1351 drv
->fw
.dbg_trigger_tlv
[i
] =
1352 kmemdup(pieces
->dbg_trigger_tlv
[i
],
1353 drv
->fw
.dbg_trigger_tlv_len
[i
],
1355 if (!drv
->fw
.dbg_trigger_tlv
[i
])
1360 for (i
= 0; i
< ARRAY_SIZE(drv
->fw
.dbg_mem_tlv
); i
++) {
1361 if (pieces
->dbg_mem_tlv
[i
]) {
1362 drv
->fw
.dbg_mem_tlv
[i
] =
1363 kmemdup(pieces
->dbg_mem_tlv
[i
],
1364 sizeof(*drv
->fw
.dbg_mem_tlv
[i
]),
1366 if (!drv
->fw
.dbg_mem_tlv
[i
])
1371 /* Now that we can no longer fail, copy information */
1374 * The (size - 16) / 12 formula is based on the information recorded
1375 * for each event, which is of mode 1 (including timestamp) for all
1376 * new microcodes that include this information.
1378 fw
->init_evtlog_ptr
= pieces
->init_evtlog_ptr
;
1379 if (pieces
->init_evtlog_size
)
1380 fw
->init_evtlog_size
= (pieces
->init_evtlog_size
- 16)/12;
1382 fw
->init_evtlog_size
=
1383 drv
->cfg
->base_params
->max_event_log_size
;
1384 fw
->init_errlog_ptr
= pieces
->init_errlog_ptr
;
1385 fw
->inst_evtlog_ptr
= pieces
->inst_evtlog_ptr
;
1386 if (pieces
->inst_evtlog_size
)
1387 fw
->inst_evtlog_size
= (pieces
->inst_evtlog_size
- 16)/12;
1389 fw
->inst_evtlog_size
=
1390 drv
->cfg
->base_params
->max_event_log_size
;
1391 fw
->inst_errlog_ptr
= pieces
->inst_errlog_ptr
;
1394 * figure out the offset of chain noise reset and gain commands
1395 * base on the size of standard phy calibration commands table size
1397 if (fw
->ucode_capa
.standard_phy_calibration_size
>
1398 IWL_MAX_PHY_CALIBRATE_TBL_SIZE
)
1399 fw
->ucode_capa
.standard_phy_calibration_size
=
1400 IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE
;
1402 /* We have our copies now, allow OS release its copies */
1403 release_firmware(ucode_raw
);
1405 mutex_lock(&iwlwifi_opmode_table_mtx
);
1407 op
= &iwlwifi_opmode_table
[MVM_OP_MODE
];
1409 op
= &iwlwifi_opmode_table
[DVM_OP_MODE
];
1411 IWL_INFO(drv
, "loaded firmware version %s op_mode %s\n",
1412 drv
->fw
.fw_version
, op
->name
);
1414 /* add this device to the list of devices using this op_mode */
1415 list_add_tail(&drv
->list
, &op
->drv
);
1418 drv
->op_mode
= _iwl_op_mode_start(drv
, op
);
1420 if (!drv
->op_mode
) {
1421 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1427 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1430 * Complete the firmware request last so that
1431 * a driver unbind (stop) doesn't run while we
1432 * are doing the start() above.
1434 complete(&drv
->request_firmware_complete
);
1437 * Load the module last so we don't block anything
1438 * else from proceeding if the module fails to load
1442 err
= request_module("%s", op
->name
);
1443 #ifdef CONFIG_IWLWIFI_OPMODE_MODULAR
1446 "failed to load module %s (error %d), is dynamic loading enabled?\n",
1454 /* try next, if any */
1455 release_firmware(ucode_raw
);
1456 if (iwl_request_firmware(drv
, false))
1462 IWL_ERR(drv
, "failed to allocate pci memory\n");
1463 iwl_dealloc_ucode(drv
);
1464 release_firmware(ucode_raw
);
1467 complete(&drv
->request_firmware_complete
);
1468 device_release_driver(drv
->trans
->dev
);
1471 struct iwl_drv
*iwl_drv_start(struct iwl_trans
*trans
,
1472 const struct iwl_cfg
*cfg
)
1474 struct iwl_drv
*drv
;
1477 drv
= kzalloc(sizeof(*drv
), GFP_KERNEL
);
1484 drv
->dev
= trans
->dev
;
1487 init_completion(&drv
->request_firmware_complete
);
1488 INIT_LIST_HEAD(&drv
->list
);
1490 #ifdef CONFIG_IWLWIFI_DEBUGFS
1491 /* Create the device debugfs entries. */
1492 drv
->dbgfs_drv
= debugfs_create_dir(dev_name(trans
->dev
),
1495 if (!drv
->dbgfs_drv
) {
1496 IWL_ERR(drv
, "failed to create debugfs directory\n");
1501 /* Create transport layer debugfs dir */
1502 drv
->trans
->dbgfs_dir
= debugfs_create_dir("trans", drv
->dbgfs_drv
);
1504 if (!drv
->trans
->dbgfs_dir
) {
1505 IWL_ERR(drv
, "failed to create transport debugfs directory\n");
1507 goto err_free_dbgfs
;
1511 ret
= iwl_request_firmware(drv
, true);
1513 IWL_ERR(trans
, "Couldn't request the fw\n");
1520 #ifdef CONFIG_IWLWIFI_DEBUGFS
1522 debugfs_remove_recursive(drv
->dbgfs_drv
);
1527 return ERR_PTR(ret
);
1530 void iwl_drv_stop(struct iwl_drv
*drv
)
1532 wait_for_completion(&drv
->request_firmware_complete
);
1534 _iwl_op_mode_stop(drv
);
1536 iwl_dealloc_ucode(drv
);
1538 mutex_lock(&iwlwifi_opmode_table_mtx
);
1540 * List is empty (this item wasn't added)
1541 * when firmware loading failed -- in that
1542 * case we can't remove it from any list.
1544 if (!list_empty(&drv
->list
))
1545 list_del(&drv
->list
);
1546 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1548 #ifdef CONFIG_IWLWIFI_DEBUGFS
1549 debugfs_remove_recursive(drv
->dbgfs_drv
);
1556 /* shared module parameters */
1557 struct iwl_mod_params iwlwifi_mod_params
= {
1559 .bt_coex_active
= true,
1560 .power_level
= IWL_POWER_INDEX_1
,
1561 .d0i3_disable
= true,
1562 .d0i3_entry_delay
= 1000,
1563 .uapsd_disable
= IWL_DISABLE_UAPSD_BSS
| IWL_DISABLE_UAPSD_P2P_CLIENT
,
1564 /* the rest are 0 by default */
1566 IWL_EXPORT_SYMBOL(iwlwifi_mod_params
);
1568 int iwl_opmode_register(const char *name
, const struct iwl_op_mode_ops
*ops
)
1571 struct iwl_drv
*drv
;
1572 struct iwlwifi_opmode_table
*op
;
1574 mutex_lock(&iwlwifi_opmode_table_mtx
);
1575 for (i
= 0; i
< ARRAY_SIZE(iwlwifi_opmode_table
); i
++) {
1576 op
= &iwlwifi_opmode_table
[i
];
1577 if (strcmp(op
->name
, name
))
1580 /* TODO: need to handle exceptional case */
1581 list_for_each_entry(drv
, &op
->drv
, list
)
1582 drv
->op_mode
= _iwl_op_mode_start(drv
, op
);
1584 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1587 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1590 IWL_EXPORT_SYMBOL(iwl_opmode_register
);
1592 void iwl_opmode_deregister(const char *name
)
1595 struct iwl_drv
*drv
;
1597 mutex_lock(&iwlwifi_opmode_table_mtx
);
1598 for (i
= 0; i
< ARRAY_SIZE(iwlwifi_opmode_table
); i
++) {
1599 if (strcmp(iwlwifi_opmode_table
[i
].name
, name
))
1601 iwlwifi_opmode_table
[i
].ops
= NULL
;
1603 /* call the stop routine for all devices */
1604 list_for_each_entry(drv
, &iwlwifi_opmode_table
[i
].drv
, list
)
1605 _iwl_op_mode_stop(drv
);
1607 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1610 mutex_unlock(&iwlwifi_opmode_table_mtx
);
1612 IWL_EXPORT_SYMBOL(iwl_opmode_deregister
);
1614 static int __init
iwl_drv_init(void)
1618 mutex_init(&iwlwifi_opmode_table_mtx
);
1620 for (i
= 0; i
< ARRAY_SIZE(iwlwifi_opmode_table
); i
++)
1621 INIT_LIST_HEAD(&iwlwifi_opmode_table
[i
].drv
);
1623 pr_info(DRV_DESCRIPTION
"\n");
1624 pr_info(DRV_COPYRIGHT
"\n");
1626 #ifdef CONFIG_IWLWIFI_DEBUGFS
1627 /* Create the root of iwlwifi debugfs subsystem. */
1628 iwl_dbgfs_root
= debugfs_create_dir(DRV_NAME
, NULL
);
1630 if (!iwl_dbgfs_root
)
1634 return iwl_pci_register_driver();
1636 module_init(iwl_drv_init
);
1638 static void __exit
iwl_drv_exit(void)
1640 iwl_pci_unregister_driver();
1642 #ifdef CONFIG_IWLWIFI_DEBUGFS
1643 debugfs_remove_recursive(iwl_dbgfs_root
);
1646 module_exit(iwl_drv_exit
);
1648 #ifdef CONFIG_IWLWIFI_DEBUG
1649 module_param_named(debug
, iwlwifi_mod_params
.debug_level
, uint
,
1651 MODULE_PARM_DESC(debug
, "debug output mask");
1654 module_param_named(swcrypto
, iwlwifi_mod_params
.sw_crypto
, int, S_IRUGO
);
1655 MODULE_PARM_DESC(swcrypto
, "using crypto in software (default 0 [hardware])");
1656 module_param_named(11n_disable
, iwlwifi_mod_params
.disable_11n
, uint
, S_IRUGO
);
1657 MODULE_PARM_DESC(11n_disable
,
1658 "disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX");
1659 module_param_named(amsdu_size
, iwlwifi_mod_params
.amsdu_size
,
1661 MODULE_PARM_DESC(amsdu_size
, "amsdu size 0:4K 1:8K 2:12K (default 0)");
1662 module_param_named(fw_restart
, iwlwifi_mod_params
.restart_fw
, bool, S_IRUGO
);
1663 MODULE_PARM_DESC(fw_restart
, "restart firmware in case of error (default true)");
1665 module_param_named(antenna_coupling
, iwlwifi_mod_params
.ant_coupling
,
1667 MODULE_PARM_DESC(antenna_coupling
,
1668 "specify antenna coupling in dB (default: 0 dB)");
1670 module_param_named(nvm_file
, iwlwifi_mod_params
.nvm_file
, charp
, S_IRUGO
);
1671 MODULE_PARM_DESC(nvm_file
, "NVM file name");
1673 module_param_named(d0i3_disable
, iwlwifi_mod_params
.d0i3_disable
,
1675 MODULE_PARM_DESC(d0i3_disable
, "disable d0i3 functionality (default: Y)");
1677 module_param_named(lar_disable
, iwlwifi_mod_params
.lar_disable
,
1679 MODULE_PARM_DESC(lar_disable
, "disable LAR functionality (default: N)");
1681 module_param_named(uapsd_disable
, iwlwifi_mod_params
.uapsd_disable
,
1682 uint
, S_IRUGO
| S_IWUSR
);
1683 MODULE_PARM_DESC(uapsd_disable
,
1684 "disable U-APSD functionality bitmap 1: BSS 2: P2P Client (default: 3)");
1687 * set bt_coex_active to true, uCode will do kill/defer
1688 * every time the priority line is asserted (BT is sending signals on the
1689 * priority line in the PCIx).
1690 * set bt_coex_active to false, uCode will ignore the BT activity and
1691 * perform the normal operation
1693 * User might experience transmit issue on some platform due to WiFi/BT
1694 * co-exist problem. The possible behaviors are:
1695 * Able to scan and finding all the available AP
1696 * Not able to associate with any AP
1697 * On those platforms, WiFi communication can be restored by set
1698 * "bt_coex_active" module parameter to "false"
1700 * default: bt_coex_active = true (BT_COEX_ENABLE)
1702 module_param_named(bt_coex_active
, iwlwifi_mod_params
.bt_coex_active
,
1704 MODULE_PARM_DESC(bt_coex_active
, "enable wifi/bt co-exist (default: enable)");
1706 module_param_named(led_mode
, iwlwifi_mod_params
.led_mode
, int, S_IRUGO
);
1707 MODULE_PARM_DESC(led_mode
, "0=system default, "
1708 "1=On(RF On)/Off(RF Off), 2=blinking, 3=Off (default: 0)");
1710 module_param_named(power_save
, iwlwifi_mod_params
.power_save
,
1712 MODULE_PARM_DESC(power_save
,
1713 "enable WiFi power management (default: disable)");
1715 module_param_named(power_level
, iwlwifi_mod_params
.power_level
,
1717 MODULE_PARM_DESC(power_level
,
1718 "default power save level (range from 1 - 5, default: 1)");
1720 module_param_named(fw_monitor
, iwlwifi_mod_params
.fw_monitor
, bool, S_IRUGO
);
1721 MODULE_PARM_DESC(fw_monitor
,
1722 "firmware monitor - to debug FW (default: false - needs lots of memory)");
1724 module_param_named(d0i3_timeout
, iwlwifi_mod_params
.d0i3_entry_delay
,
1726 MODULE_PARM_DESC(d0i3_timeout
, "Timeout to D0i3 entry when idle (ms)");
1728 module_param_named(disable_11ac
, iwlwifi_mod_params
.disable_11ac
, bool,
1730 MODULE_PARM_DESC(disable_11ac
, "Disable VHT capabilities (default: false)");