1 /****************************************************************************** 2 * 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * GPL LICENSE SUMMARY 7 * 8 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved. 9 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH 10 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 11 * Copyright(c) 2018 Intel Corporation 12 * 13 * This program is free software; you can redistribute it and/or modify 14 * it under the terms of version 2 of the GNU General Public License as 15 * published by the Free Software Foundation. 16 * 17 * This program is distributed in the hope that it will be useful, but 18 * WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * General Public License for more details. 21 * 22 * You should have received a copy of the GNU General Public License 23 * along with this program; if not, write to the Free Software 24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, 25 * USA 26 * 27 * The full GNU General Public License is included in this distribution 28 * in the file called COPYING. 29 * 30 * Contact Information: 31 * Intel Linux Wireless <linuxwifi@intel.com> 32 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 33 * 34 * BSD LICENSE 35 * 36 * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 37 * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH 38 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 39 * Copyright(c) 2018 Intel Corporation 40 * All rights reserved. 41 * 42 * Redistribution and use in source and binary forms, with or without 43 * modification, are permitted provided that the following conditions 44 * are met: 45 * 46 * * Redistributions of source code must retain the above copyright 47 * notice, this list of conditions and the following disclaimer. 48 * * Redistributions in binary form must reproduce the above copyright 49 * notice, this list of conditions and the following disclaimer in 50 * the documentation and/or other materials provided with the 51 * distribution. 52 * * Neither the name Intel Corporation nor the names of its 53 * contributors may be used to endorse or promote products derived 54 * from this software without specific prior written permission. 55 * 56 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 57 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 58 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 59 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 60 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 61 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 62 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 63 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 64 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 65 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 66 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 67 *****************************************************************************/ 68 69 #ifndef __iwl_fw_file_h__ 70 #define __iwl_fw_file_h__ 71 72 #include <linux/netdevice.h> 73 #include <linux/nl80211.h> 74 75 /* v1/v2 uCode file layout */ 76 struct iwl_ucode_header { 77 __le32 ver; /* major/minor/API/serial */ 78 union { 79 struct { 80 __le32 inst_size; /* bytes of runtime code */ 81 __le32 data_size; /* bytes of runtime data */ 82 __le32 init_size; /* bytes of init code */ 83 __le32 init_data_size; /* bytes of init data */ 84 __le32 boot_size; /* bytes of bootstrap code */ 85 u8 data[0]; /* in same order as sizes */ 86 } v1; 87 struct { 88 __le32 build; /* build number */ 89 __le32 inst_size; /* bytes of runtime code */ 90 __le32 data_size; /* bytes of runtime data */ 91 __le32 init_size; /* bytes of init code */ 92 __le32 init_data_size; /* bytes of init data */ 93 __le32 boot_size; /* bytes of bootstrap code */ 94 u8 data[0]; /* in same order as sizes */ 95 } v2; 96 } u; 97 }; 98 99 /* 100 * new TLV uCode file layout 101 * 102 * The new TLV file format contains TLVs, that each specify 103 * some piece of data. 104 */ 105 106 enum iwl_ucode_tlv_type { 107 IWL_UCODE_TLV_INVALID = 0, /* unused */ 108 IWL_UCODE_TLV_INST = 1, 109 IWL_UCODE_TLV_DATA = 2, 110 IWL_UCODE_TLV_INIT = 3, 111 IWL_UCODE_TLV_INIT_DATA = 4, 112 IWL_UCODE_TLV_BOOT = 5, 113 IWL_UCODE_TLV_PROBE_MAX_LEN = 6, /* a u32 value */ 114 IWL_UCODE_TLV_PAN = 7, 115 IWL_UCODE_TLV_RUNT_EVTLOG_PTR = 8, 116 IWL_UCODE_TLV_RUNT_EVTLOG_SIZE = 9, 117 IWL_UCODE_TLV_RUNT_ERRLOG_PTR = 10, 118 IWL_UCODE_TLV_INIT_EVTLOG_PTR = 11, 119 IWL_UCODE_TLV_INIT_EVTLOG_SIZE = 12, 120 IWL_UCODE_TLV_INIT_ERRLOG_PTR = 13, 121 IWL_UCODE_TLV_ENHANCE_SENS_TBL = 14, 122 IWL_UCODE_TLV_PHY_CALIBRATION_SIZE = 15, 123 IWL_UCODE_TLV_WOWLAN_INST = 16, 124 IWL_UCODE_TLV_WOWLAN_DATA = 17, 125 IWL_UCODE_TLV_FLAGS = 18, 126 IWL_UCODE_TLV_SEC_RT = 19, 127 IWL_UCODE_TLV_SEC_INIT = 20, 128 IWL_UCODE_TLV_SEC_WOWLAN = 21, 129 IWL_UCODE_TLV_DEF_CALIB = 22, 130 IWL_UCODE_TLV_PHY_SKU = 23, 131 IWL_UCODE_TLV_SECURE_SEC_RT = 24, 132 IWL_UCODE_TLV_SECURE_SEC_INIT = 25, 133 IWL_UCODE_TLV_SECURE_SEC_WOWLAN = 26, 134 IWL_UCODE_TLV_NUM_OF_CPU = 27, 135 IWL_UCODE_TLV_CSCHEME = 28, 136 IWL_UCODE_TLV_API_CHANGES_SET = 29, 137 IWL_UCODE_TLV_ENABLED_CAPABILITIES = 30, 138 IWL_UCODE_TLV_N_SCAN_CHANNELS = 31, 139 IWL_UCODE_TLV_PAGING = 32, 140 IWL_UCODE_TLV_SEC_RT_USNIFFER = 34, 141 /* 35 is unused */ 142 IWL_UCODE_TLV_FW_VERSION = 36, 143 IWL_UCODE_TLV_FW_DBG_DEST = 38, 144 IWL_UCODE_TLV_FW_DBG_CONF = 39, 145 IWL_UCODE_TLV_FW_DBG_TRIGGER = 40, 146 IWL_UCODE_TLV_FW_GSCAN_CAPA = 50, 147 IWL_UCODE_TLV_FW_MEM_SEG = 51, 148 IWL_UCODE_TLV_IML = 52, 149 }; 150 151 struct iwl_ucode_tlv { 152 __le32 type; /* see above */ 153 __le32 length; /* not including type/length fields */ 154 u8 data[0]; 155 }; 156 157 #define IWL_TLV_UCODE_MAGIC 0x0a4c5749 158 #define FW_VER_HUMAN_READABLE_SZ 64 159 160 struct iwl_tlv_ucode_header { 161 /* 162 * The TLV style ucode header is distinguished from 163 * the v1/v2 style header by first four bytes being 164 * zero, as such is an invalid combination of 165 * major/minor/API/serial versions. 166 */ 167 __le32 zero; 168 __le32 magic; 169 u8 human_readable[FW_VER_HUMAN_READABLE_SZ]; 170 /* major/minor/API/serial or major in new format */ 171 __le32 ver; 172 __le32 build; 173 __le64 ignore; 174 /* 175 * The data contained herein has a TLV layout, 176 * see above for the TLV header and types. 177 * Note that each TLV is padded to a length 178 * that is a multiple of 4 for alignment. 179 */ 180 u8 data[0]; 181 }; 182 183 /* 184 * ucode TLVs 185 * 186 * ability to get extension for: flags & capabilities from ucode binaries files 187 */ 188 struct iwl_ucode_api { 189 __le32 api_index; 190 __le32 api_flags; 191 } __packed; 192 193 struct iwl_ucode_capa { 194 __le32 api_index; 195 __le32 api_capa; 196 } __packed; 197 198 /** 199 * enum iwl_ucode_tlv_flag - ucode API flags 200 * @IWL_UCODE_TLV_FLAGS_PAN: This is PAN capable microcode; this previously 201 * was a separate TLV but moved here to save space. 202 * @IWL_UCODE_TLV_FLAGS_NEWSCAN: new uCode scan behavior on hidden SSID, 203 * treats good CRC threshold as a boolean 204 * @IWL_UCODE_TLV_FLAGS_MFP: This uCode image supports MFP (802.11w). 205 * @IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT: This uCode image supports uAPSD 206 * @IWL_UCODE_TLV_FLAGS_SHORT_BL: 16 entries of black list instead of 64 in scan 207 * offload profile config command. 208 * @IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS: D3 image supports up to six 209 * (rather than two) IPv6 addresses 210 * @IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID: not sending a probe with the SSID element 211 * from the probe request template. 212 * @IWL_UCODE_TLV_FLAGS_NEW_NSOFFL_SMALL: new NS offload (small version) 213 * @IWL_UCODE_TLV_FLAGS_NEW_NSOFFL_LARGE: new NS offload (large version) 214 * @IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT: General support for uAPSD 215 * @IWL_UCODE_TLV_FLAGS_P2P_PS_UAPSD: P2P client supports uAPSD power save 216 * @IWL_UCODE_TLV_FLAGS_BCAST_FILTERING: uCode supports broadcast filtering. 217 * @IWL_UCODE_TLV_FLAGS_EBS_SUPPORT: this uCode image supports EBS. 218 */ 219 enum iwl_ucode_tlv_flag { 220 IWL_UCODE_TLV_FLAGS_PAN = BIT(0), 221 IWL_UCODE_TLV_FLAGS_NEWSCAN = BIT(1), 222 IWL_UCODE_TLV_FLAGS_MFP = BIT(2), 223 IWL_UCODE_TLV_FLAGS_SHORT_BL = BIT(7), 224 IWL_UCODE_TLV_FLAGS_D3_6_IPV6_ADDRS = BIT(10), 225 IWL_UCODE_TLV_FLAGS_NO_BASIC_SSID = BIT(12), 226 IWL_UCODE_TLV_FLAGS_NEW_NSOFFL_SMALL = BIT(15), 227 IWL_UCODE_TLV_FLAGS_NEW_NSOFFL_LARGE = BIT(16), 228 IWL_UCODE_TLV_FLAGS_UAPSD_SUPPORT = BIT(24), 229 IWL_UCODE_TLV_FLAGS_EBS_SUPPORT = BIT(25), 230 IWL_UCODE_TLV_FLAGS_P2P_PS_UAPSD = BIT(26), 231 IWL_UCODE_TLV_FLAGS_BCAST_FILTERING = BIT(29), 232 }; 233 234 typedef unsigned int __bitwise iwl_ucode_tlv_api_t; 235 236 /** 237 * enum iwl_ucode_tlv_api - ucode api 238 * @IWL_UCODE_TLV_API_FRAGMENTED_SCAN: This ucode supports active dwell time 239 * longer than the passive one, which is essential for fragmented scan. 240 * @IWL_UCODE_TLV_API_WIFI_MCC_UPDATE: ucode supports MCC updates with source. 241 * @IWL_UCODE_TLV_API_LQ_SS_PARAMS: Configure STBC/BFER via LQ CMD ss_params 242 * @IWL_UCODE_TLV_API_NEW_VERSION: new versioning format 243 * @IWL_UCODE_TLV_API_SCAN_TSF_REPORT: Scan start time reported in scan 244 * iteration complete notification, and the timestamp reported for RX 245 * received during scan, are reported in TSF of the mac specified in the 246 * scan request. 247 * @IWL_UCODE_TLV_API_TKIP_MIC_KEYS: This ucode supports version 2 of 248 * ADD_MODIFY_STA_KEY_API_S_VER_2. 249 * @IWL_UCODE_TLV_API_STA_TYPE: This ucode supports station type assignement. 250 * @IWL_UCODE_TLV_API_NAN2_VER2: This ucode supports NAN API version 2 251 * @IWL_UCODE_TLV_API_NEW_RX_STATS: should new RX STATISTICS API be used 252 * @IWL_UCODE_TLV_API_QUOTA_LOW_LATENCY: Quota command includes a field 253 * indicating low latency direction. 254 * @IWL_UCODE_TLV_API_DEPRECATE_TTAK: RX status flag TTAK ok (bit 7) is 255 * deprecated. 256 * @IWL_UCODE_TLV_API_ADAPTIVE_DWELL_V2: This ucode supports version 8 257 * of scan request: SCAN_REQUEST_CMD_UMAC_API_S_VER_8 258 * 259 * @NUM_IWL_UCODE_TLV_API: number of bits used 260 */ 261 enum iwl_ucode_tlv_api { 262 /* API Set 0 */ 263 IWL_UCODE_TLV_API_FRAGMENTED_SCAN = (__force iwl_ucode_tlv_api_t)8, 264 IWL_UCODE_TLV_API_WIFI_MCC_UPDATE = (__force iwl_ucode_tlv_api_t)9, 265 IWL_UCODE_TLV_API_LQ_SS_PARAMS = (__force iwl_ucode_tlv_api_t)18, 266 IWL_UCODE_TLV_API_NEW_VERSION = (__force iwl_ucode_tlv_api_t)20, 267 IWL_UCODE_TLV_API_SCAN_TSF_REPORT = (__force iwl_ucode_tlv_api_t)28, 268 IWL_UCODE_TLV_API_TKIP_MIC_KEYS = (__force iwl_ucode_tlv_api_t)29, 269 IWL_UCODE_TLV_API_STA_TYPE = (__force iwl_ucode_tlv_api_t)30, 270 IWL_UCODE_TLV_API_NAN2_VER2 = (__force iwl_ucode_tlv_api_t)31, 271 /* API Set 1 */ 272 IWL_UCODE_TLV_API_ADAPTIVE_DWELL = (__force iwl_ucode_tlv_api_t)32, 273 IWL_UCODE_TLV_API_OCE = (__force iwl_ucode_tlv_api_t)33, 274 IWL_UCODE_TLV_API_NEW_BEACON_TEMPLATE = (__force iwl_ucode_tlv_api_t)34, 275 IWL_UCODE_TLV_API_NEW_RX_STATS = (__force iwl_ucode_tlv_api_t)35, 276 IWL_UCODE_TLV_API_QUOTA_LOW_LATENCY = (__force iwl_ucode_tlv_api_t)38, 277 IWL_UCODE_TLV_API_DEPRECATE_TTAK = (__force iwl_ucode_tlv_api_t)41, 278 IWL_UCODE_TLV_API_ADAPTIVE_DWELL_V2 = (__force iwl_ucode_tlv_api_t)42, 279 280 NUM_IWL_UCODE_TLV_API 281 #ifdef __CHECKER__ 282 /* sparse says it cannot increment the previous enum member */ 283 = 128 284 #endif 285 }; 286 287 typedef unsigned int __bitwise iwl_ucode_tlv_capa_t; 288 289 /** 290 * enum iwl_ucode_tlv_capa - ucode capabilities 291 * @IWL_UCODE_TLV_CAPA_D0I3_SUPPORT: supports D0i3 292 * @IWL_UCODE_TLV_CAPA_LAR_SUPPORT: supports Location Aware Regulatory 293 * @IWL_UCODE_TLV_CAPA_UMAC_SCAN: supports UMAC scan. 294 * @IWL_UCODE_TLV_CAPA_BEAMFORMER: supports Beamformer 295 * @IWL_UCODE_TLV_CAPA_TOF_SUPPORT: supports Time of Flight (802.11mc FTM) 296 * @IWL_UCODE_TLV_CAPA_TDLS_SUPPORT: support basic TDLS functionality 297 * @IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT: supports insertion of current 298 * tx power value into TPC Report action frame and Link Measurement Report 299 * action frame 300 * @IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT: supports updating current 301 * channel in DS parameter set element in probe requests. 302 * @IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT: supports adding TPC Report IE in 303 * probe requests. 304 * @IWL_UCODE_TLV_CAPA_QUIET_PERIOD_SUPPORT: supports Quiet Period requests 305 * @IWL_UCODE_TLV_CAPA_DQA_SUPPORT: supports dynamic queue allocation (DQA), 306 * which also implies support for the scheduler configuration command 307 * @IWL_UCODE_TLV_CAPA_TDLS_CHANNEL_SWITCH: supports TDLS channel switching 308 * @IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG: Consolidated D3-D0 image 309 * @IWL_UCODE_TLV_CAPA_HOTSPOT_SUPPORT: supports Hot Spot Command 310 * @IWL_UCODE_TLV_CAPA_DC2DC_SUPPORT: supports DC2DC Command 311 * @IWL_UCODE_TLV_CAPA_CSUM_SUPPORT: supports TCP Checksum Offload 312 * @IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS: support radio and beacon statistics 313 * @IWL_UCODE_TLV_CAPA_P2P_SCM_UAPSD: supports U-APSD on p2p interface when it 314 * is standalone or with a BSS station interface in the same binding. 315 * @IWL_UCODE_TLV_CAPA_BT_COEX_PLCR: enabled BT Coex packet level co-running 316 * @IWL_UCODE_TLV_CAPA_LAR_MULTI_MCC: ucode supports LAR updates with different 317 * sources for the MCC. This TLV bit is a future replacement to 318 * IWL_UCODE_TLV_API_WIFI_MCC_UPDATE. When either is set, multi-source LAR 319 * is supported. 320 * @IWL_UCODE_TLV_CAPA_BT_COEX_RRC: supports BT Coex RRC 321 * @IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT: supports gscan 322 * @IWL_UCODE_TLV_CAPA_STA_PM_NOTIF: firmware will send STA PM notification 323 * @IWL_UCODE_TLV_CAPA_TLC_OFFLOAD: firmware implements rate scaling algorithm 324 * @IWL_UCODE_TLV_CAPA_DYNAMIC_QUOTA: firmware implements quota related 325 * @IWL_UCODE_TLV_CAPA_EXTENDED_DTS_MEASURE: extended DTS measurement 326 * @IWL_UCODE_TLV_CAPA_SHORT_PM_TIMEOUTS: supports short PM timeouts 327 * @IWL_UCODE_TLV_CAPA_BT_MPLUT_SUPPORT: supports bt-coex Multi-priority LUT 328 * @IWL_UCODE_TLV_CAPA_CSA_AND_TBTT_OFFLOAD: the firmware supports CSA 329 * countdown offloading. Beacon notifications are not sent to the host. 330 * The fw also offloads TBTT alignment. 331 * @IWL_UCODE_TLV_CAPA_BEACON_ANT_SELECTION: firmware will decide on what 332 * antenna the beacon should be transmitted 333 * @IWL_UCODE_TLV_CAPA_BEACON_STORING: firmware will store the latest beacon 334 * from AP and will send it upon d0i3 exit. 335 * @IWL_UCODE_TLV_CAPA_LAR_SUPPORT_V2: support LAR API V2 336 * @IWL_UCODE_TLV_CAPA_CT_KILL_BY_FW: firmware responsible for CT-kill 337 * @IWL_UCODE_TLV_CAPA_TEMP_THS_REPORT_SUPPORT: supports temperature 338 * thresholds reporting 339 * @IWL_UCODE_TLV_CAPA_CTDP_SUPPORT: supports cTDP command 340 * @IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED: supports usniffer enabled in 341 * regular image. 342 * @IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG: support getting more shared 343 * memory addresses from the firmware. 344 * @IWL_UCODE_TLV_CAPA_LQM_SUPPORT: supports Link Quality Measurement 345 * @IWL_UCODE_TLV_CAPA_TX_POWER_ACK: reduced TX power API has larger 346 * command size (command version 4) that supports toggling ACK TX 347 * power reduction. 348 * @IWL_UCODE_TLV_CAPA_MLME_OFFLOAD: supports MLME offload 349 * 350 * @NUM_IWL_UCODE_TLV_CAPA: number of bits used 351 */ 352 enum iwl_ucode_tlv_capa { 353 IWL_UCODE_TLV_CAPA_D0I3_SUPPORT = (__force iwl_ucode_tlv_capa_t)0, 354 IWL_UCODE_TLV_CAPA_LAR_SUPPORT = (__force iwl_ucode_tlv_capa_t)1, 355 IWL_UCODE_TLV_CAPA_UMAC_SCAN = (__force iwl_ucode_tlv_capa_t)2, 356 IWL_UCODE_TLV_CAPA_BEAMFORMER = (__force iwl_ucode_tlv_capa_t)3, 357 IWL_UCODE_TLV_CAPA_TOF_SUPPORT = (__force iwl_ucode_tlv_capa_t)5, 358 IWL_UCODE_TLV_CAPA_TDLS_SUPPORT = (__force iwl_ucode_tlv_capa_t)6, 359 IWL_UCODE_TLV_CAPA_TXPOWER_INSERTION_SUPPORT = (__force iwl_ucode_tlv_capa_t)8, 360 IWL_UCODE_TLV_CAPA_DS_PARAM_SET_IE_SUPPORT = (__force iwl_ucode_tlv_capa_t)9, 361 IWL_UCODE_TLV_CAPA_WFA_TPC_REP_IE_SUPPORT = (__force iwl_ucode_tlv_capa_t)10, 362 IWL_UCODE_TLV_CAPA_QUIET_PERIOD_SUPPORT = (__force iwl_ucode_tlv_capa_t)11, 363 IWL_UCODE_TLV_CAPA_DQA_SUPPORT = (__force iwl_ucode_tlv_capa_t)12, 364 IWL_UCODE_TLV_CAPA_TDLS_CHANNEL_SWITCH = (__force iwl_ucode_tlv_capa_t)13, 365 IWL_UCODE_TLV_CAPA_CNSLDTD_D3_D0_IMG = (__force iwl_ucode_tlv_capa_t)17, 366 IWL_UCODE_TLV_CAPA_HOTSPOT_SUPPORT = (__force iwl_ucode_tlv_capa_t)18, 367 IWL_UCODE_TLV_CAPA_DC2DC_CONFIG_SUPPORT = (__force iwl_ucode_tlv_capa_t)19, 368 IWL_UCODE_TLV_CAPA_CSUM_SUPPORT = (__force iwl_ucode_tlv_capa_t)21, 369 IWL_UCODE_TLV_CAPA_RADIO_BEACON_STATS = (__force iwl_ucode_tlv_capa_t)22, 370 IWL_UCODE_TLV_CAPA_P2P_SCM_UAPSD = (__force iwl_ucode_tlv_capa_t)26, 371 IWL_UCODE_TLV_CAPA_BT_COEX_PLCR = (__force iwl_ucode_tlv_capa_t)28, 372 IWL_UCODE_TLV_CAPA_LAR_MULTI_MCC = (__force iwl_ucode_tlv_capa_t)29, 373 IWL_UCODE_TLV_CAPA_BT_COEX_RRC = (__force iwl_ucode_tlv_capa_t)30, 374 IWL_UCODE_TLV_CAPA_GSCAN_SUPPORT = (__force iwl_ucode_tlv_capa_t)31, 375 IWL_UCODE_TLV_CAPA_STA_PM_NOTIF = (__force iwl_ucode_tlv_capa_t)38, 376 IWL_UCODE_TLV_CAPA_BINDING_CDB_SUPPORT = (__force iwl_ucode_tlv_capa_t)39, 377 IWL_UCODE_TLV_CAPA_CDB_SUPPORT = (__force iwl_ucode_tlv_capa_t)40, 378 IWL_UCODE_TLV_CAPA_D0I3_END_FIRST = (__force iwl_ucode_tlv_capa_t)41, 379 IWL_UCODE_TLV_CAPA_TLC_OFFLOAD = (__force iwl_ucode_tlv_capa_t)43, 380 IWL_UCODE_TLV_CAPA_DYNAMIC_QUOTA = (__force iwl_ucode_tlv_capa_t)44, 381 IWL_UCODE_TLV_CAPA_EXTENDED_DTS_MEASURE = (__force iwl_ucode_tlv_capa_t)64, 382 IWL_UCODE_TLV_CAPA_SHORT_PM_TIMEOUTS = (__force iwl_ucode_tlv_capa_t)65, 383 IWL_UCODE_TLV_CAPA_BT_MPLUT_SUPPORT = (__force iwl_ucode_tlv_capa_t)67, 384 IWL_UCODE_TLV_CAPA_MULTI_QUEUE_RX_SUPPORT = (__force iwl_ucode_tlv_capa_t)68, 385 IWL_UCODE_TLV_CAPA_CSA_AND_TBTT_OFFLOAD = (__force iwl_ucode_tlv_capa_t)70, 386 IWL_UCODE_TLV_CAPA_BEACON_ANT_SELECTION = (__force iwl_ucode_tlv_capa_t)71, 387 IWL_UCODE_TLV_CAPA_BEACON_STORING = (__force iwl_ucode_tlv_capa_t)72, 388 IWL_UCODE_TLV_CAPA_LAR_SUPPORT_V2 = (__force iwl_ucode_tlv_capa_t)73, 389 IWL_UCODE_TLV_CAPA_CT_KILL_BY_FW = (__force iwl_ucode_tlv_capa_t)74, 390 IWL_UCODE_TLV_CAPA_TEMP_THS_REPORT_SUPPORT = (__force iwl_ucode_tlv_capa_t)75, 391 IWL_UCODE_TLV_CAPA_CTDP_SUPPORT = (__force iwl_ucode_tlv_capa_t)76, 392 IWL_UCODE_TLV_CAPA_USNIFFER_UNIFIED = (__force iwl_ucode_tlv_capa_t)77, 393 IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG = (__force iwl_ucode_tlv_capa_t)80, 394 IWL_UCODE_TLV_CAPA_LQM_SUPPORT = (__force iwl_ucode_tlv_capa_t)81, 395 IWL_UCODE_TLV_CAPA_TX_POWER_ACK = (__force iwl_ucode_tlv_capa_t)84, 396 IWL_UCODE_TLV_CAPA_LED_CMD_SUPPORT = (__force iwl_ucode_tlv_capa_t)86, 397 IWL_UCODE_TLV_CAPA_MLME_OFFLOAD = (__force iwl_ucode_tlv_capa_t)96, 398 399 NUM_IWL_UCODE_TLV_CAPA 400 #ifdef __CHECKER__ 401 /* sparse says it cannot increment the previous enum member */ 402 = 128 403 #endif 404 }; 405 406 /* The default calibrate table size if not specified by firmware file */ 407 #define IWL_DEFAULT_STANDARD_PHY_CALIBRATE_TBL_SIZE 18 408 #define IWL_MAX_STANDARD_PHY_CALIBRATE_TBL_SIZE 19 409 #define IWL_MAX_PHY_CALIBRATE_TBL_SIZE 253 410 411 /* The default max probe length if not specified by the firmware file */ 412 #define IWL_DEFAULT_MAX_PROBE_LENGTH 200 413 414 /* 415 * For 16.0 uCode and above, there is no differentiation between sections, 416 * just an offset to the HW address. 417 */ 418 #define CPU1_CPU2_SEPARATOR_SECTION 0xFFFFCCCC 419 #define PAGING_SEPARATOR_SECTION 0xAAAABBBB 420 421 /* uCode version contains 4 values: Major/Minor/API/Serial */ 422 #define IWL_UCODE_MAJOR(ver) (((ver) & 0xFF000000) >> 24) 423 #define IWL_UCODE_MINOR(ver) (((ver) & 0x00FF0000) >> 16) 424 #define IWL_UCODE_API(ver) (((ver) & 0x0000FF00) >> 8) 425 #define IWL_UCODE_SERIAL(ver) ((ver) & 0x000000FF) 426 427 /** 428 * struct iwl_tlv_calib_ctrl - Calibration control struct. 429 * Sent as part of the phy configuration command. 430 * @flow_trigger: bitmap for which calibrations to perform according to 431 * flow triggers. 432 * @event_trigger: bitmap for which calibrations to perform according to 433 * event triggers. 434 */ 435 struct iwl_tlv_calib_ctrl { 436 __le32 flow_trigger; 437 __le32 event_trigger; 438 } __packed; 439 440 enum iwl_fw_phy_cfg { 441 FW_PHY_CFG_RADIO_TYPE_POS = 0, 442 FW_PHY_CFG_RADIO_TYPE = 0x3 << FW_PHY_CFG_RADIO_TYPE_POS, 443 FW_PHY_CFG_RADIO_STEP_POS = 2, 444 FW_PHY_CFG_RADIO_STEP = 0x3 << FW_PHY_CFG_RADIO_STEP_POS, 445 FW_PHY_CFG_RADIO_DASH_POS = 4, 446 FW_PHY_CFG_RADIO_DASH = 0x3 << FW_PHY_CFG_RADIO_DASH_POS, 447 FW_PHY_CFG_TX_CHAIN_POS = 16, 448 FW_PHY_CFG_TX_CHAIN = 0xf << FW_PHY_CFG_TX_CHAIN_POS, 449 FW_PHY_CFG_RX_CHAIN_POS = 20, 450 FW_PHY_CFG_RX_CHAIN = 0xf << FW_PHY_CFG_RX_CHAIN_POS, 451 FW_PHY_CFG_SHARED_CLK = BIT(31), 452 }; 453 454 #define IWL_UCODE_MAX_CS 1 455 456 /** 457 * struct iwl_fw_cipher_scheme - a cipher scheme supported by FW. 458 * @cipher: a cipher suite selector 459 * @flags: cipher scheme flags (currently reserved for a future use) 460 * @hdr_len: a size of MPDU security header 461 * @pn_len: a size of PN 462 * @pn_off: an offset of pn from the beginning of the security header 463 * @key_idx_off: an offset of key index byte in the security header 464 * @key_idx_mask: a bit mask of key_idx bits 465 * @key_idx_shift: bit shift needed to get key_idx 466 * @mic_len: mic length in bytes 467 * @hw_cipher: a HW cipher index used in host commands 468 */ 469 struct iwl_fw_cipher_scheme { 470 __le32 cipher; 471 u8 flags; 472 u8 hdr_len; 473 u8 pn_len; 474 u8 pn_off; 475 u8 key_idx_off; 476 u8 key_idx_mask; 477 u8 key_idx_shift; 478 u8 mic_len; 479 u8 hw_cipher; 480 } __packed; 481 482 enum iwl_fw_dbg_reg_operator { 483 CSR_ASSIGN, 484 CSR_SETBIT, 485 CSR_CLEARBIT, 486 487 PRPH_ASSIGN, 488 PRPH_SETBIT, 489 PRPH_CLEARBIT, 490 491 INDIRECT_ASSIGN, 492 INDIRECT_SETBIT, 493 INDIRECT_CLEARBIT, 494 495 PRPH_BLOCKBIT, 496 }; 497 498 /** 499 * struct iwl_fw_dbg_reg_op - an operation on a register 500 * 501 * @op: &enum iwl_fw_dbg_reg_operator 502 * @addr: offset of the register 503 * @val: value 504 */ 505 struct iwl_fw_dbg_reg_op { 506 u8 op; 507 u8 reserved[3]; 508 __le32 addr; 509 __le32 val; 510 } __packed; 511 512 /** 513 * enum iwl_fw_dbg_monitor_mode - available monitor recording modes 514 * 515 * @SMEM_MODE: monitor stores the data in SMEM 516 * @EXTERNAL_MODE: monitor stores the data in allocated DRAM 517 * @MARBH_MODE: monitor stores the data in MARBH buffer 518 * @MIPI_MODE: monitor outputs the data through the MIPI interface 519 */ 520 enum iwl_fw_dbg_monitor_mode { 521 SMEM_MODE = 0, 522 EXTERNAL_MODE = 1, 523 MARBH_MODE = 2, 524 MIPI_MODE = 3, 525 }; 526 527 /** 528 * enum iwl_fw_mem_seg_type - memory segment type 529 * @FW_DBG_MEM_TYPE_MASK: mask for the type indication 530 * @FW_DBG_MEM_TYPE_REGULAR: regular memory 531 * @FW_DBG_MEM_TYPE_PRPH: periphery memory (requires special reading) 532 */ 533 enum iwl_fw_mem_seg_type { 534 FW_DBG_MEM_TYPE_MASK = 0xff000000, 535 FW_DBG_MEM_TYPE_REGULAR = 0x00000000, 536 FW_DBG_MEM_TYPE_PRPH = 0x01000000, 537 }; 538 539 /** 540 * struct iwl_fw_dbg_mem_seg_tlv - configures the debug data memory segments 541 * 542 * @data_type: the memory segment type to record, see &enum iwl_fw_mem_seg_type 543 * for what we care about 544 * @ofs: the memory segment offset 545 * @len: the memory segment length, in bytes 546 * 547 * This parses IWL_UCODE_TLV_FW_MEM_SEG 548 */ 549 struct iwl_fw_dbg_mem_seg_tlv { 550 __le32 data_type; 551 __le32 ofs; 552 __le32 len; 553 } __packed; 554 555 /** 556 * struct iwl_fw_dbg_dest_tlv_v1 - configures the destination of the debug data 557 * 558 * @version: version of the TLV - currently 0 559 * @monitor_mode: &enum iwl_fw_dbg_monitor_mode 560 * @size_power: buffer size will be 2^(size_power + 11) 561 * @base_reg: addr of the base addr register (PRPH) 562 * @end_reg: addr of the end addr register (PRPH) 563 * @write_ptr_reg: the addr of the reg of the write pointer 564 * @wrap_count: the addr of the reg of the wrap_count 565 * @base_shift: shift right of the base addr reg 566 * @end_shift: shift right of the end addr reg 567 * @reg_ops: array of registers operations 568 * 569 * This parses IWL_UCODE_TLV_FW_DBG_DEST 570 */ 571 struct iwl_fw_dbg_dest_tlv_v1 { 572 u8 version; 573 u8 monitor_mode; 574 u8 size_power; 575 u8 reserved; 576 __le32 base_reg; 577 __le32 end_reg; 578 __le32 write_ptr_reg; 579 __le32 wrap_count; 580 u8 base_shift; 581 u8 end_shift; 582 struct iwl_fw_dbg_reg_op reg_ops[0]; 583 } __packed; 584 585 /* Mask of the register for defining the LDBG MAC2SMEM buffer SMEM size */ 586 #define IWL_LDBG_M2S_BUF_SIZE_MSK 0x0fff0000 587 /* Mask of the register for defining the LDBG MAC2SMEM SMEM base address */ 588 #define IWL_LDBG_M2S_BUF_BA_MSK 0x00000fff 589 /* The smem buffer chunks are in units of 256 bits */ 590 #define IWL_M2S_UNIT_SIZE 0x100 591 592 struct iwl_fw_dbg_dest_tlv { 593 u8 version; 594 u8 monitor_mode; 595 u8 size_power; 596 u8 reserved; 597 __le32 cfg_reg; 598 __le32 write_ptr_reg; 599 __le32 wrap_count; 600 u8 base_shift; 601 u8 size_shift; 602 struct iwl_fw_dbg_reg_op reg_ops[0]; 603 } __packed; 604 605 struct iwl_fw_dbg_conf_hcmd { 606 u8 id; 607 u8 reserved; 608 __le16 len; 609 u8 data[0]; 610 } __packed; 611 612 /** 613 * enum iwl_fw_dbg_trigger_mode - triggers functionalities 614 * 615 * @IWL_FW_DBG_TRIGGER_START: when trigger occurs re-conf the dbg mechanism 616 * @IWL_FW_DBG_TRIGGER_STOP: when trigger occurs pull the dbg data 617 * @IWL_FW_DBG_TRIGGER_MONITOR_ONLY: when trigger occurs trigger is set to 618 * collect only monitor data 619 */ 620 enum iwl_fw_dbg_trigger_mode { 621 IWL_FW_DBG_TRIGGER_START = BIT(0), 622 IWL_FW_DBG_TRIGGER_STOP = BIT(1), 623 IWL_FW_DBG_TRIGGER_MONITOR_ONLY = BIT(2), 624 }; 625 626 /** 627 * enum iwl_fw_dbg_trigger_flags - the flags supported by wrt triggers 628 * @IWL_FW_DBG_FORCE_RESTART: force a firmware restart 629 */ 630 enum iwl_fw_dbg_trigger_flags { 631 IWL_FW_DBG_FORCE_RESTART = BIT(0), 632 }; 633 634 /** 635 * enum iwl_fw_dbg_trigger_vif_type - define the VIF type for a trigger 636 * @IWL_FW_DBG_CONF_VIF_ANY: any vif type 637 * @IWL_FW_DBG_CONF_VIF_IBSS: IBSS mode 638 * @IWL_FW_DBG_CONF_VIF_STATION: BSS mode 639 * @IWL_FW_DBG_CONF_VIF_AP: AP mode 640 * @IWL_FW_DBG_CONF_VIF_P2P_CLIENT: P2P Client mode 641 * @IWL_FW_DBG_CONF_VIF_P2P_GO: P2P GO mode 642 * @IWL_FW_DBG_CONF_VIF_P2P_DEVICE: P2P device 643 */ 644 enum iwl_fw_dbg_trigger_vif_type { 645 IWL_FW_DBG_CONF_VIF_ANY = NL80211_IFTYPE_UNSPECIFIED, 646 IWL_FW_DBG_CONF_VIF_IBSS = NL80211_IFTYPE_ADHOC, 647 IWL_FW_DBG_CONF_VIF_STATION = NL80211_IFTYPE_STATION, 648 IWL_FW_DBG_CONF_VIF_AP = NL80211_IFTYPE_AP, 649 IWL_FW_DBG_CONF_VIF_P2P_CLIENT = NL80211_IFTYPE_P2P_CLIENT, 650 IWL_FW_DBG_CONF_VIF_P2P_GO = NL80211_IFTYPE_P2P_GO, 651 IWL_FW_DBG_CONF_VIF_P2P_DEVICE = NL80211_IFTYPE_P2P_DEVICE, 652 }; 653 654 /** 655 * struct iwl_fw_dbg_trigger_tlv - a TLV that describes the trigger 656 * @id: &enum iwl_fw_dbg_trigger 657 * @vif_type: &enum iwl_fw_dbg_trigger_vif_type 658 * @stop_conf_ids: bitmap of configurations this trigger relates to. 659 * if the mode is %IWL_FW_DBG_TRIGGER_STOP, then if the bit corresponding 660 * to the currently running configuration is set, the data should be 661 * collected. 662 * @stop_delay: how many milliseconds to wait before collecting the data 663 * after the STOP trigger fires. 664 * @mode: &enum iwl_fw_dbg_trigger_mode - can be stop / start of both 665 * @start_conf_id: if mode is %IWL_FW_DBG_TRIGGER_START, this defines what 666 * configuration should be applied when the triggers kicks in. 667 * @occurrences: number of occurrences. 0 means the trigger will never fire. 668 * @trig_dis_ms: the time, in milliseconds, after an occurrence of this 669 * trigger in which another occurrence should be ignored. 670 * @flags: &enum iwl_fw_dbg_trigger_flags 671 */ 672 struct iwl_fw_dbg_trigger_tlv { 673 __le32 id; 674 __le32 vif_type; 675 __le32 stop_conf_ids; 676 __le32 stop_delay; 677 u8 mode; 678 u8 start_conf_id; 679 __le16 occurrences; 680 __le16 trig_dis_ms; 681 u8 flags; 682 u8 reserved[5]; 683 684 u8 data[0]; 685 } __packed; 686 687 #define FW_DBG_START_FROM_ALIVE 0 688 #define FW_DBG_CONF_MAX 32 689 #define FW_DBG_INVALID 0xff 690 691 /** 692 * struct iwl_fw_dbg_trigger_missed_bcon - configures trigger for missed beacons 693 * @stop_consec_missed_bcon: stop recording if threshold is crossed. 694 * @stop_consec_missed_bcon_since_rx: stop recording if threshold is crossed. 695 * @start_consec_missed_bcon: start recording if threshold is crossed. 696 * @start_consec_missed_bcon_since_rx: start recording if threshold is crossed. 697 * @reserved1: reserved 698 * @reserved2: reserved 699 */ 700 struct iwl_fw_dbg_trigger_missed_bcon { 701 __le32 stop_consec_missed_bcon; 702 __le32 stop_consec_missed_bcon_since_rx; 703 __le32 reserved2[2]; 704 __le32 start_consec_missed_bcon; 705 __le32 start_consec_missed_bcon_since_rx; 706 __le32 reserved1[2]; 707 } __packed; 708 709 /** 710 * struct iwl_fw_dbg_trigger_cmd - configures trigger for messages from FW. 711 * cmds: the list of commands to trigger the collection on 712 */ 713 struct iwl_fw_dbg_trigger_cmd { 714 struct cmd { 715 u8 cmd_id; 716 u8 group_id; 717 } __packed cmds[16]; 718 } __packed; 719 720 /** 721 * iwl_fw_dbg_trigger_stats - configures trigger for statistics 722 * @stop_offset: the offset of the value to be monitored 723 * @stop_threshold: the threshold above which to collect 724 * @start_offset: the offset of the value to be monitored 725 * @start_threshold: the threshold above which to start recording 726 */ 727 struct iwl_fw_dbg_trigger_stats { 728 __le32 stop_offset; 729 __le32 stop_threshold; 730 __le32 start_offset; 731 __le32 start_threshold; 732 } __packed; 733 734 /** 735 * struct iwl_fw_dbg_trigger_low_rssi - trigger for low beacon RSSI 736 * @rssi: RSSI value to trigger at 737 */ 738 struct iwl_fw_dbg_trigger_low_rssi { 739 __le32 rssi; 740 } __packed; 741 742 /** 743 * struct iwl_fw_dbg_trigger_mlme - configures trigger for mlme events 744 * @stop_auth_denied: number of denied authentication to collect 745 * @stop_auth_timeout: number of authentication timeout to collect 746 * @stop_rx_deauth: number of Rx deauth before to collect 747 * @stop_tx_deauth: number of Tx deauth before to collect 748 * @stop_assoc_denied: number of denied association to collect 749 * @stop_assoc_timeout: number of association timeout to collect 750 * @stop_connection_loss: number of connection loss to collect 751 * @start_auth_denied: number of denied authentication to start recording 752 * @start_auth_timeout: number of authentication timeout to start recording 753 * @start_rx_deauth: number of Rx deauth to start recording 754 * @start_tx_deauth: number of Tx deauth to start recording 755 * @start_assoc_denied: number of denied association to start recording 756 * @start_assoc_timeout: number of association timeout to start recording 757 * @start_connection_loss: number of connection loss to start recording 758 */ 759 struct iwl_fw_dbg_trigger_mlme { 760 u8 stop_auth_denied; 761 u8 stop_auth_timeout; 762 u8 stop_rx_deauth; 763 u8 stop_tx_deauth; 764 765 u8 stop_assoc_denied; 766 u8 stop_assoc_timeout; 767 u8 stop_connection_loss; 768 u8 reserved; 769 770 u8 start_auth_denied; 771 u8 start_auth_timeout; 772 u8 start_rx_deauth; 773 u8 start_tx_deauth; 774 775 u8 start_assoc_denied; 776 u8 start_assoc_timeout; 777 u8 start_connection_loss; 778 u8 reserved2; 779 } __packed; 780 781 /** 782 * struct iwl_fw_dbg_trigger_txq_timer - configures the Tx queue's timer 783 * @command_queue: timeout for the command queue in ms 784 * @bss: timeout for the queues of a BSS (except for TDLS queues) in ms 785 * @softap: timeout for the queues of a softAP in ms 786 * @p2p_go: timeout for the queues of a P2P GO in ms 787 * @p2p_client: timeout for the queues of a P2P client in ms 788 * @p2p_device: timeout for the queues of a P2P device in ms 789 * @ibss: timeout for the queues of an IBSS in ms 790 * @tdls: timeout for the queues of a TDLS station in ms 791 */ 792 struct iwl_fw_dbg_trigger_txq_timer { 793 __le32 command_queue; 794 __le32 bss; 795 __le32 softap; 796 __le32 p2p_go; 797 __le32 p2p_client; 798 __le32 p2p_device; 799 __le32 ibss; 800 __le32 tdls; 801 __le32 reserved[4]; 802 } __packed; 803 804 /** 805 * struct iwl_fw_dbg_trigger_time_event - configures a time event trigger 806 * time_Events: a list of tuples <id, action_bitmap>. The driver will issue a 807 * trigger each time a time event notification that relates to time event 808 * id with one of the actions in the bitmap is received and 809 * BIT(notif->status) is set in status_bitmap. 810 * 811 */ 812 struct iwl_fw_dbg_trigger_time_event { 813 struct { 814 __le32 id; 815 __le32 action_bitmap; 816 __le32 status_bitmap; 817 } __packed time_events[16]; 818 } __packed; 819 820 /** 821 * struct iwl_fw_dbg_trigger_ba - configures BlockAck related trigger 822 * rx_ba_start: tid bitmap to configure on what tid the trigger should occur 823 * when an Rx BlockAck session is started. 824 * rx_ba_stop: tid bitmap to configure on what tid the trigger should occur 825 * when an Rx BlockAck session is stopped. 826 * tx_ba_start: tid bitmap to configure on what tid the trigger should occur 827 * when a Tx BlockAck session is started. 828 * tx_ba_stop: tid bitmap to configure on what tid the trigger should occur 829 * when a Tx BlockAck session is stopped. 830 * rx_bar: tid bitmap to configure on what tid the trigger should occur 831 * when a BAR is received (for a Tx BlockAck session). 832 * tx_bar: tid bitmap to configure on what tid the trigger should occur 833 * when a BAR is send (for an Rx BlocAck session). 834 * frame_timeout: tid bitmap to configure on what tid the trigger should occur 835 * when a frame times out in the reodering buffer. 836 */ 837 struct iwl_fw_dbg_trigger_ba { 838 __le16 rx_ba_start; 839 __le16 rx_ba_stop; 840 __le16 tx_ba_start; 841 __le16 tx_ba_stop; 842 __le16 rx_bar; 843 __le16 tx_bar; 844 __le16 frame_timeout; 845 } __packed; 846 847 /** 848 * struct iwl_fw_dbg_trigger_tdls - configures trigger for TDLS events. 849 * @action_bitmap: the TDLS action to trigger the collection upon 850 * @peer_mode: trigger on specific peer or all 851 * @peer: the TDLS peer to trigger the collection on 852 */ 853 struct iwl_fw_dbg_trigger_tdls { 854 u8 action_bitmap; 855 u8 peer_mode; 856 u8 peer[ETH_ALEN]; 857 u8 reserved[4]; 858 } __packed; 859 860 /** 861 * struct iwl_fw_dbg_trigger_tx_status - configures trigger for tx response 862 * status. 863 * @statuses: the list of statuses to trigger the collection on 864 */ 865 struct iwl_fw_dbg_trigger_tx_status { 866 struct tx_status { 867 u8 status; 868 u8 reserved[3]; 869 } __packed statuses[16]; 870 __le32 reserved[2]; 871 } __packed; 872 873 /** 874 * struct iwl_fw_dbg_conf_tlv - a TLV that describes a debug configuration. 875 * @id: conf id 876 * @usniffer: should the uSniffer image be used 877 * @num_of_hcmds: how many HCMDs to send are present here 878 * @hcmd: a variable length host command to be sent to apply the configuration. 879 * If there is more than one HCMD to send, they will appear one after the 880 * other and be sent in the order that they appear in. 881 * This parses IWL_UCODE_TLV_FW_DBG_CONF. The user can add up-to 882 * %FW_DBG_CONF_MAX configuration per run. 883 */ 884 struct iwl_fw_dbg_conf_tlv { 885 u8 id; 886 u8 usniffer; 887 u8 reserved; 888 u8 num_of_hcmds; 889 struct iwl_fw_dbg_conf_hcmd hcmd; 890 } __packed; 891 892 /** 893 * struct iwl_fw_gscan_capabilities - gscan capabilities supported by FW 894 * @max_scan_cache_size: total space allocated for scan results (in bytes). 895 * @max_scan_buckets: maximum number of channel buckets. 896 * @max_ap_cache_per_scan: maximum number of APs that can be stored per scan. 897 * @max_rssi_sample_size: number of RSSI samples used for averaging RSSI. 898 * @max_scan_reporting_threshold: max possible report threshold. in percentage. 899 * @max_hotlist_aps: maximum number of entries for hotlist APs. 900 * @max_significant_change_aps: maximum number of entries for significant 901 * change APs. 902 * @max_bssid_history_entries: number of BSSID/RSSI entries that the device can 903 * hold. 904 * @max_hotlist_ssids: maximum number of entries for hotlist SSIDs. 905 * @max_number_epno_networks: max number of epno entries. 906 * @max_number_epno_networks_by_ssid: max number of epno entries if ssid is 907 * specified. 908 * @max_number_of_white_listed_ssid: max number of white listed SSIDs. 909 * @max_number_of_black_listed_ssid: max number of black listed SSIDs. 910 */ 911 struct iwl_fw_gscan_capabilities { 912 __le32 max_scan_cache_size; 913 __le32 max_scan_buckets; 914 __le32 max_ap_cache_per_scan; 915 __le32 max_rssi_sample_size; 916 __le32 max_scan_reporting_threshold; 917 __le32 max_hotlist_aps; 918 __le32 max_significant_change_aps; 919 __le32 max_bssid_history_entries; 920 __le32 max_hotlist_ssids; 921 __le32 max_number_epno_networks; 922 __le32 max_number_epno_networks_by_ssid; 923 __le32 max_number_of_white_listed_ssid; 924 __le32 max_number_of_black_listed_ssid; 925 } __packed; 926 927 #endif /* __iwl_fw_file_h__ */ 928