1 /* 2 * NXP Wireless LAN device driver: Firmware specific macros & structures 3 * 4 * Copyright 2011-2020 NXP 5 * 6 * This software file (the "File") is distributed by NXP 7 * under the terms of the GNU General Public License Version 2, June 1991 8 * (the "License"). You may use, redistribute and/or modify this File in 9 * accordance with the terms and conditions of the License, a copy of which 10 * is available by writing to the Free Software Foundation, Inc., 11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the 12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. 13 * 14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE 15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE 16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about 17 * this warranty disclaimer. 18 */ 19 20 #ifndef _MWIFIEX_FW_H_ 21 #define _MWIFIEX_FW_H_ 22 23 #include <linux/if_ether.h> 24 25 26 #define INTF_HEADER_LEN 4 27 28 struct rfc_1042_hdr { 29 u8 llc_dsap; 30 u8 llc_ssap; 31 u8 llc_ctrl; 32 u8 snap_oui[3]; 33 __be16 snap_type; 34 } __packed; 35 36 struct rx_packet_hdr { 37 struct ethhdr eth803_hdr; 38 struct rfc_1042_hdr rfc1042_hdr; 39 } __packed; 40 41 struct tx_packet_hdr { 42 struct ethhdr eth803_hdr; 43 struct rfc_1042_hdr rfc1042_hdr; 44 } __packed; 45 46 struct mwifiex_fw_header { 47 __le32 dnld_cmd; 48 __le32 base_addr; 49 __le32 data_length; 50 __le32 crc; 51 } __packed; 52 53 struct mwifiex_fw_data { 54 struct mwifiex_fw_header header; 55 __le32 seq_num; 56 u8 data[1]; 57 } __packed; 58 59 struct mwifiex_fw_dump_header { 60 __le16 seq_num; 61 __le16 reserved; 62 __le16 type; 63 __le16 len; 64 } __packed; 65 66 #define FW_DUMP_INFO_ENDED 0x0002 67 68 #define MWIFIEX_FW_DNLD_CMD_1 0x1 69 #define MWIFIEX_FW_DNLD_CMD_5 0x5 70 #define MWIFIEX_FW_DNLD_CMD_6 0x6 71 #define MWIFIEX_FW_DNLD_CMD_7 0x7 72 73 #define B_SUPPORTED_RATES 5 74 #define G_SUPPORTED_RATES 9 75 #define BG_SUPPORTED_RATES 13 76 #define A_SUPPORTED_RATES 9 77 #define HOSTCMD_SUPPORTED_RATES 14 78 #define N_SUPPORTED_RATES 3 79 #define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN | \ 80 BAND_AN | BAND_AAC) 81 82 #define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11) | \ 83 BIT(13)) 84 #define IS_SUPPORT_MULTI_BANDS(adapter) \ 85 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT) 86 87 /* bit 13: 11ac BAND_AAC 88 * bit 12: reserved for lab testing, will be reused for BAND_AN 89 * bit 11: 11n BAND_GN 90 * bit 10: 11a BAND_A 91 * bit 9: 11g BAND_G 92 * bit 8: 11b BAND_B 93 * Map these bits to band capability by right shifting 8 bits. 94 */ 95 #define GET_FW_DEFAULT_BANDS(adapter) \ 96 (((adapter->fw_cap_info & 0x2f00) >> 8) & \ 97 ALL_802_11_BANDS) 98 99 #define HostCmd_WEP_KEY_INDEX_MASK 0x3fff 100 101 #define KEY_INFO_ENABLED 0x01 102 enum KEY_TYPE_ID { 103 KEY_TYPE_ID_WEP = 0, 104 KEY_TYPE_ID_TKIP, 105 KEY_TYPE_ID_AES, 106 KEY_TYPE_ID_WAPI, 107 KEY_TYPE_ID_AES_CMAC, 108 KEY_TYPE_ID_AES_CMAC_DEF, 109 }; 110 111 #define WPA_PN_SIZE 8 112 #define KEY_PARAMS_FIXED_LEN 10 113 #define KEY_INDEX_MASK 0xf 114 #define KEY_API_VER_MAJOR_V2 2 115 116 #define KEY_MCAST BIT(0) 117 #define KEY_UNICAST BIT(1) 118 #define KEY_ENABLED BIT(2) 119 #define KEY_DEFAULT BIT(3) 120 #define KEY_TX_KEY BIT(4) 121 #define KEY_RX_KEY BIT(5) 122 #define KEY_IGTK BIT(10) 123 124 #define WAPI_KEY_LEN (WLAN_KEY_LEN_SMS4 + PN_LEN + 2) 125 126 #define MAX_POLL_TRIES 100 127 #define MAX_FIRMWARE_POLL_TRIES 150 128 129 #define FIRMWARE_READY_SDIO 0xfedc 130 #define FIRMWARE_READY_PCIE 0xfedcba00 131 132 #define MWIFIEX_COEX_MODE_TIMESHARE 0x01 133 #define MWIFIEX_COEX_MODE_SPATIAL 0x82 134 135 enum mwifiex_usb_ep { 136 MWIFIEX_USB_EP_CMD_EVENT = 1, 137 MWIFIEX_USB_EP_DATA = 2, 138 MWIFIEX_USB_EP_DATA_CH2 = 3, 139 }; 140 141 enum MWIFIEX_802_11_PRIVACY_FILTER { 142 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL, 143 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP 144 }; 145 146 #define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF))) 147 #define CAL_RSSI(SNR, NF) ((s16)((s16)(SNR)+(s16)(NF))) 148 149 #define UAP_BSS_PARAMS_I 0 150 #define UAP_CUSTOM_IE_I 1 151 #define MWIFIEX_AUTO_IDX_MASK 0xffff 152 #define MWIFIEX_DELETE_MASK 0x0000 153 #define MGMT_MASK_ASSOC_REQ 0x01 154 #define MGMT_MASK_REASSOC_REQ 0x04 155 #define MGMT_MASK_ASSOC_RESP 0x02 156 #define MGMT_MASK_REASSOC_RESP 0x08 157 #define MGMT_MASK_PROBE_REQ 0x10 158 #define MGMT_MASK_PROBE_RESP 0x20 159 #define MGMT_MASK_BEACON 0x100 160 161 #define TLV_TYPE_UAP_SSID 0x0000 162 #define TLV_TYPE_UAP_RATES 0x0001 163 #define TLV_TYPE_PWR_CONSTRAINT 0x0020 164 165 #define PROPRIETARY_TLV_BASE_ID 0x0100 166 #define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0) 167 #define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1) 168 #define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2) 169 #define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4) 170 #define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10) 171 #define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16) 172 #define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18) 173 #define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19) 174 #define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22) 175 #define TLV_TYPE_BGSCAN_START_LATER (PROPRIETARY_TLV_BASE_ID + 30) 176 #define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31) 177 #define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32) 178 #define TLV_TYPE_BSSID (PROPRIETARY_TLV_BASE_ID + 35) 179 #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42) 180 #define TLV_TYPE_UAP_MAC_ADDRESS (PROPRIETARY_TLV_BASE_ID + 43) 181 #define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44) 182 #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45) 183 #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48) 184 #define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51) 185 #define TLV_TYPE_UAP_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 57) 186 #define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59) 187 #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60) 188 #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64) 189 #define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65) 190 #define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70) 191 #define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82) 192 #define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83) 193 #define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84) 194 #define TLV_TYPE_BSS_SCAN_RSP (PROPRIETARY_TLV_BASE_ID + 86) 195 #define TLV_TYPE_BSS_SCAN_INFO (PROPRIETARY_TLV_BASE_ID + 87) 196 #define TLV_TYPE_CHANRPT_11H_BASIC (PROPRIETARY_TLV_BASE_ID + 91) 197 #define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93) 198 #define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94) 199 #define TLV_TYPE_ROBUST_COEX (PROPRIETARY_TLV_BASE_ID + 96) 200 #define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104) 201 #define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105) 202 #define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113) 203 #define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114) 204 #define TLV_TYPE_UAP_PS_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 123) 205 #define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145) 206 #define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146) 207 #define TLV_TYPE_TX_PAUSE (PROPRIETARY_TLV_BASE_ID + 148) 208 #define TLV_TYPE_RXBA_SYNC (PROPRIETARY_TLV_BASE_ID + 153) 209 #define TLV_TYPE_COALESCE_RULE (PROPRIETARY_TLV_BASE_ID + 154) 210 #define TLV_TYPE_KEY_PARAM_V2 (PROPRIETARY_TLV_BASE_ID + 156) 211 #define TLV_TYPE_REPEAT_COUNT (PROPRIETARY_TLV_BASE_ID + 176) 212 #define TLV_TYPE_PS_PARAMS_IN_HS (PROPRIETARY_TLV_BASE_ID + 181) 213 #define TLV_TYPE_MULTI_CHAN_INFO (PROPRIETARY_TLV_BASE_ID + 183) 214 #define TLV_TYPE_MC_GROUP_INFO (PROPRIETARY_TLV_BASE_ID + 184) 215 #define TLV_TYPE_TDLS_IDLE_TIMEOUT (PROPRIETARY_TLV_BASE_ID + 194) 216 #define TLV_TYPE_SCAN_CHANNEL_GAP (PROPRIETARY_TLV_BASE_ID + 197) 217 #define TLV_TYPE_API_REV (PROPRIETARY_TLV_BASE_ID + 199) 218 #define TLV_TYPE_CHANNEL_STATS (PROPRIETARY_TLV_BASE_ID + 198) 219 #define TLV_BTCOEX_WL_AGGR_WINSIZE (PROPRIETARY_TLV_BASE_ID + 202) 220 #define TLV_BTCOEX_WL_SCANTIME (PROPRIETARY_TLV_BASE_ID + 203) 221 #define TLV_TYPE_BSS_MODE (PROPRIETARY_TLV_BASE_ID + 206) 222 #define TLV_TYPE_RANDOM_MAC (PROPRIETARY_TLV_BASE_ID + 236) 223 #define TLV_TYPE_CHAN_ATTR_CFG (PROPRIETARY_TLV_BASE_ID + 237) 224 #define TLV_TYPE_MAX_CONN (PROPRIETARY_TLV_BASE_ID + 279) 225 226 #define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048 227 228 #define SSN_MASK 0xfff0 229 230 #define BA_RESULT_SUCCESS 0x0 231 #define BA_RESULT_TIMEOUT 0x2 232 233 #define IS_BASTREAM_SETUP(ptr) (ptr->ba_status) 234 235 #define BA_STREAM_NOT_ALLOWED 0xff 236 237 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \ 238 priv->adapter->config_bands & BAND_AN) && \ 239 priv->curr_bss_params.bss_descriptor.bcn_ht_cap && \ 240 !priv->curr_bss_params.bss_descriptor.disable_11n) 241 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\ 242 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS) 243 244 #define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096 245 #define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192 246 #define MWIFIEX_TX_DATA_BUF_SIZE_12K 12288 247 248 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11)) 249 #define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14)) 250 #define ISSUPP_DRCS_ENABLED(FwCapInfo) (FwCapInfo & BIT(15)) 251 #define ISSUPP_SDIO_SPA_ENABLED(FwCapInfo) (FwCapInfo & BIT(16)) 252 #define ISSUPP_ADHOC_ENABLED(FwCapInfo) (FwCapInfo & BIT(25)) 253 #define ISSUPP_RANDOM_MAC(FwCapInfo) (FwCapInfo & BIT(27)) 254 #define ISSUPP_FIRMWARE_SUPPLICANT(FwCapInfo) (FwCapInfo & BIT(21)) 255 256 #define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \ 257 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \ 258 IEEE80211_HT_CAP_SM_PS) 259 260 #define MWIFIEX_DEF_11N_TX_BF_CAP 0x09E1E008 261 262 #define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR 263 264 /* dev_cap bitmap 265 * BIT 266 * 0-16 reserved 267 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40 268 * 18-22 reserved 269 * 23 IEEE80211_HT_CAP_SGI_20 270 * 24 IEEE80211_HT_CAP_SGI_40 271 * 25 IEEE80211_HT_CAP_TX_STBC 272 * 26 IEEE80211_HT_CAP_RX_STBC 273 * 27-28 reserved 274 * 29 IEEE80211_HT_CAP_GRN_FLD 275 * 30-31 reserved 276 */ 277 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17)) 278 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23)) 279 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24)) 280 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25)) 281 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26)) 282 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29)) 283 #define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8)) 284 #define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22)) 285 #define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30)) 286 #define ISALLOWED_CHANWIDTH40(ht_param) (ht_param & BIT(2)) 287 #define GETSUPP_TXBASTREAMS(Dot11nDevCap) ((Dot11nDevCap >> 18) & 0xF) 288 289 /* httxcfg bitmap 290 * 0 reserved 291 * 1 20/40 Mhz enable(1)/disable(0) 292 * 2-3 reserved 293 * 4 green field enable(1)/disable(0) 294 * 5 short GI in 20 Mhz enable(1)/disable(0) 295 * 6 short GI in 40 Mhz enable(1)/disable(0) 296 * 7-15 reserved 297 */ 298 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6)) 299 300 /* 11AC Tx and Rx MCS map for 1x1 mode: 301 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 302 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams 303 */ 304 #define MWIFIEX_11AC_MCS_MAP_1X1 0xfffefffe 305 306 /* 11AC Tx and Rx MCS map for 2x2 mode: 307 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2 308 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams 309 */ 310 #define MWIFIEX_11AC_MCS_MAP_2X2 0xfffafffa 311 312 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f) 313 #define SETHT_MCS32(x) (x[4] |= 1) 314 #define HT_STREAM_1X1 0x11 315 #define HT_STREAM_2X2 0x22 316 317 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4)) 318 319 #define LLC_SNAP_LEN 8 320 321 /* HW_SPEC fw_cap_info */ 322 323 #define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13)) 324 325 #define GET_VHTCAP_CHWDSET(vht_cap_info) ((vht_cap_info >> 2) & 0x3) 326 #define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3) 327 #define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \ 328 (2 * (nss - 1))) 329 #define GET_DEVTXMCSMAP(dev_mcs_map) (dev_mcs_map >> 16) 330 #define GET_DEVRXMCSMAP(dev_mcs_map) (dev_mcs_map & 0xFFFF) 331 332 /* Clear SU Beanformer, MU beanformer, MU beanformee and 333 * sounding dimensions bits 334 */ 335 #define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \ 336 (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \ 337 IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \ 338 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \ 339 IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK) 340 341 #define MOD_CLASS_HR_DSSS 0x03 342 #define MOD_CLASS_OFDM 0x07 343 #define MOD_CLASS_HT 0x08 344 #define HT_BW_20 0 345 #define HT_BW_40 1 346 347 #define DFS_CHAN_MOVE_TIME 10000 348 349 #define HostCmd_CMD_GET_HW_SPEC 0x0003 350 #define HostCmd_CMD_802_11_SCAN 0x0006 351 #define HostCmd_CMD_802_11_GET_LOG 0x000b 352 #define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010 353 #define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059 354 #define HostCmd_CMD_802_11_ASSOCIATE 0x0012 355 #define HostCmd_CMD_802_11_SNMP_MIB 0x0016 356 #define HostCmd_CMD_MAC_REG_ACCESS 0x0019 357 #define HostCmd_CMD_BBP_REG_ACCESS 0x001a 358 #define HostCmd_CMD_RF_REG_ACCESS 0x001b 359 #define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad 360 #define HostCmd_CMD_RF_TX_PWR 0x001e 361 #define HostCmd_CMD_RF_ANTENNA 0x0020 362 #define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024 363 #define HostCmd_CMD_MAC_CONTROL 0x0028 364 #define HostCmd_CMD_802_11_AD_HOC_START 0x002b 365 #define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c 366 #define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040 367 #define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D 368 #define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b 369 #define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e 370 #define HostCmd_CMD_802_11_BG_SCAN_CONFIG 0x006b 371 #define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c 372 #define HostCmd_CMD_WMM_GET_STATUS 0x0071 373 #define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075 374 #define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f 375 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083 376 #define HostCmd_CMD_MEM_ACCESS 0x0086 377 #define HostCmd_CMD_CFG_DATA 0x008f 378 #define HostCmd_CMD_VERSION_EXT 0x0097 379 #define HostCmd_CMD_MEF_CFG 0x009a 380 #define HostCmd_CMD_RSSI_INFO 0x00a4 381 #define HostCmd_CMD_FUNC_INIT 0x00a9 382 #define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa 383 #define HOST_CMD_APCMD_SYS_RESET 0x00af 384 #define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0 385 #define HostCmd_CMD_UAP_BSS_START 0x00b1 386 #define HostCmd_CMD_UAP_BSS_STOP 0x00b2 387 #define HOST_CMD_APCMD_STA_LIST 0x00b3 388 #define HostCmd_CMD_UAP_STA_DEAUTH 0x00b5 389 #define HostCmd_CMD_11N_CFG 0x00cd 390 #define HostCmd_CMD_11N_ADDBA_REQ 0x00ce 391 #define HostCmd_CMD_11N_ADDBA_RSP 0x00cf 392 #define HostCmd_CMD_11N_DELBA 0x00d0 393 #define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9 394 #define HostCmd_CMD_CHAN_REPORT_REQUEST 0x00dd 395 #define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df 396 #define HostCmd_CMD_TXPWR_CFG 0x00d1 397 #define HostCmd_CMD_TX_RATE_CFG 0x00d6 398 #define HostCmd_CMD_ROBUST_COEX 0x00e0 399 #define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4 400 #define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5 401 #define HostCmd_CMD_P2P_MODE_CFG 0x00eb 402 #define HostCmd_CMD_CAU_REG_ACCESS 0x00ed 403 #define HostCmd_CMD_SET_BSS_MODE 0x00f7 404 #define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa 405 #define HostCmd_CMD_802_11_SCAN_EXT 0x0107 406 #define HostCmd_CMD_COALESCE_CFG 0x010a 407 #define HostCmd_CMD_MGMT_FRAME_REG 0x010c 408 #define HostCmd_CMD_REMAIN_ON_CHAN 0x010d 409 #define HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG 0x010f 410 #define HostCmd_CMD_11AC_CFG 0x0112 411 #define HostCmd_CMD_HS_WAKEUP_REASON 0x0116 412 #define HostCmd_CMD_TDLS_CONFIG 0x0100 413 #define HostCmd_CMD_MC_POLICY 0x0121 414 #define HostCmd_CMD_TDLS_OPER 0x0122 415 #define HostCmd_CMD_FW_DUMP_EVENT 0x0125 416 #define HostCmd_CMD_SDIO_SP_RX_AGGR_CFG 0x0223 417 #define HostCmd_CMD_STA_CONFIGURE 0x023f 418 #define HostCmd_CMD_CHAN_REGION_CFG 0x0242 419 #define HostCmd_CMD_PACKET_AGGR_CTRL 0x0251 420 421 #define PROTOCOL_NO_SECURITY 0x01 422 #define PROTOCOL_STATIC_WEP 0x02 423 #define PROTOCOL_WPA 0x08 424 #define PROTOCOL_WPA2 0x20 425 #define PROTOCOL_WPA2_MIXED 0x28 426 #define PROTOCOL_EAP 0x40 427 #define KEY_MGMT_NONE 0x04 428 #define KEY_MGMT_PSK 0x02 429 #define KEY_MGMT_EAP 0x01 430 #define CIPHER_TKIP 0x04 431 #define CIPHER_AES_CCMP 0x08 432 #define VALID_CIPHER_BITMAP 0x0c 433 434 enum ENH_PS_MODES { 435 EN_PS = 1, 436 DIS_PS = 2, 437 EN_AUTO_DS = 3, 438 DIS_AUTO_DS = 4, 439 SLEEP_CONFIRM = 5, 440 GET_PS = 0, 441 EN_AUTO_PS = 0xff, 442 DIS_AUTO_PS = 0xfe, 443 }; 444 445 enum P2P_MODES { 446 P2P_MODE_DISABLE = 0, 447 P2P_MODE_DEVICE = 1, 448 P2P_MODE_GO = 2, 449 P2P_MODE_CLIENT = 3, 450 }; 451 452 enum mwifiex_channel_flags { 453 MWIFIEX_CHANNEL_PASSIVE = BIT(0), 454 MWIFIEX_CHANNEL_DFS = BIT(1), 455 MWIFIEX_CHANNEL_NOHT40 = BIT(2), 456 MWIFIEX_CHANNEL_NOHT80 = BIT(3), 457 MWIFIEX_CHANNEL_DISABLED = BIT(7), 458 }; 459 460 #define HostCmd_RET_BIT 0x8000 461 #define HostCmd_ACT_GEN_GET 0x0000 462 #define HostCmd_ACT_GEN_SET 0x0001 463 #define HostCmd_ACT_GEN_REMOVE 0x0004 464 #define HostCmd_ACT_BITWISE_SET 0x0002 465 #define HostCmd_ACT_BITWISE_CLR 0x0003 466 #define HostCmd_RESULT_OK 0x0000 467 #define HostCmd_ACT_MAC_RX_ON BIT(0) 468 #define HostCmd_ACT_MAC_TX_ON BIT(1) 469 #define HostCmd_ACT_MAC_WEP_ENABLE BIT(3) 470 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE BIT(4) 471 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE BIT(7) 472 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE BIT(8) 473 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON BIT(13) 474 #define HostCmd_ACT_MAC_DYNAMIC_BW_ENABLE BIT(16) 475 476 #define HostCmd_BSS_MODE_IBSS 0x0002 477 #define HostCmd_BSS_MODE_ANY 0x0003 478 479 #define HostCmd_SCAN_RADIO_TYPE_BG 0 480 #define HostCmd_SCAN_RADIO_TYPE_A 1 481 482 #define HS_CFG_CANCEL 0xffffffff 483 #define HS_CFG_COND_DEF 0x00000000 484 #define HS_CFG_GPIO_DEF 0xff 485 #define HS_CFG_GAP_DEF 0xff 486 #define HS_CFG_COND_BROADCAST_DATA 0x00000001 487 #define HS_CFG_COND_UNICAST_DATA 0x00000002 488 #define HS_CFG_COND_MAC_EVENT 0x00000004 489 #define HS_CFG_COND_MULTICAST_DATA 0x00000008 490 491 #define CONNECT_ERR_AUTH_ERR_STA_FAILURE 0xFFFB 492 #define CONNECT_ERR_ASSOC_ERR_TIMEOUT 0xFFFC 493 #define CONNECT_ERR_ASSOC_ERR_AUTH_REFUSED 0xFFFD 494 #define CONNECT_ERR_AUTH_MSG_UNHANDLED 0xFFFE 495 #define CONNECT_ERR_STA_FAILURE 0xFFFF 496 497 498 #define CMD_F_HOSTCMD (1 << 0) 499 500 #define HostCmd_CMD_ID_MASK 0x0fff 501 502 #define HostCmd_SEQ_NUM_MASK 0x00ff 503 504 #define HostCmd_BSS_NUM_MASK 0x0f00 505 506 #define HostCmd_BSS_TYPE_MASK 0xf000 507 508 #define HostCmd_ACT_SET_RX 0x0001 509 #define HostCmd_ACT_SET_TX 0x0002 510 #define HostCmd_ACT_SET_BOTH 0x0003 511 #define HostCmd_ACT_GET_RX 0x0004 512 #define HostCmd_ACT_GET_TX 0x0008 513 #define HostCmd_ACT_GET_BOTH 0x000c 514 515 #define RF_ANTENNA_AUTO 0xFFFF 516 517 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) \ 518 ((((seq) & 0x00ff) | \ 519 (((num) & 0x000f) << 8)) | \ 520 (((type) & 0x000f) << 12)) 521 522 #define HostCmd_GET_SEQ_NO(seq) \ 523 ((seq) & HostCmd_SEQ_NUM_MASK) 524 525 #define HostCmd_GET_BSS_NO(seq) \ 526 (((seq) & HostCmd_BSS_NUM_MASK) >> 8) 527 528 #define HostCmd_GET_BSS_TYPE(seq) \ 529 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12) 530 531 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001 532 #define EVENT_LINK_LOST 0x00000003 533 #define EVENT_LINK_SENSED 0x00000004 534 #define EVENT_MIB_CHANGED 0x00000006 535 #define EVENT_INIT_DONE 0x00000007 536 #define EVENT_DEAUTHENTICATED 0x00000008 537 #define EVENT_DISASSOCIATED 0x00000009 538 #define EVENT_PS_AWAKE 0x0000000a 539 #define EVENT_PS_SLEEP 0x0000000b 540 #define EVENT_MIC_ERR_MULTICAST 0x0000000d 541 #define EVENT_MIC_ERR_UNICAST 0x0000000e 542 #define EVENT_DEEP_SLEEP_AWAKE 0x00000010 543 #define EVENT_ADHOC_BCN_LOST 0x00000011 544 545 #define EVENT_WMM_STATUS_CHANGE 0x00000017 546 #define EVENT_BG_SCAN_REPORT 0x00000018 547 #define EVENT_RSSI_LOW 0x00000019 548 #define EVENT_SNR_LOW 0x0000001a 549 #define EVENT_MAX_FAIL 0x0000001b 550 #define EVENT_RSSI_HIGH 0x0000001c 551 #define EVENT_SNR_HIGH 0x0000001d 552 #define EVENT_IBSS_COALESCED 0x0000001e 553 #define EVENT_IBSS_STA_CONNECT 0x00000020 554 #define EVENT_IBSS_STA_DISCONNECT 0x00000021 555 #define EVENT_DATA_RSSI_LOW 0x00000024 556 #define EVENT_DATA_SNR_LOW 0x00000025 557 #define EVENT_DATA_RSSI_HIGH 0x00000026 558 #define EVENT_DATA_SNR_HIGH 0x00000027 559 #define EVENT_LINK_QUALITY 0x00000028 560 #define EVENT_PORT_RELEASE 0x0000002b 561 #define EVENT_UAP_STA_DEAUTH 0x0000002c 562 #define EVENT_UAP_STA_ASSOC 0x0000002d 563 #define EVENT_UAP_BSS_START 0x0000002e 564 #define EVENT_PRE_BEACON_LOST 0x00000031 565 #define EVENT_ADDBA 0x00000033 566 #define EVENT_DELBA 0x00000034 567 #define EVENT_BA_STREAM_TIEMOUT 0x00000037 568 #define EVENT_AMSDU_AGGR_CTRL 0x00000042 569 #define EVENT_UAP_BSS_IDLE 0x00000043 570 #define EVENT_UAP_BSS_ACTIVE 0x00000044 571 #define EVENT_WEP_ICV_ERR 0x00000046 572 #define EVENT_HS_ACT_REQ 0x00000047 573 #define EVENT_BW_CHANGE 0x00000048 574 #define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c 575 #define EVENT_HOSTWAKE_STAIE 0x0000004d 576 #define EVENT_CHANNEL_SWITCH_ANN 0x00000050 577 #define EVENT_TDLS_GENERIC_EVENT 0x00000052 578 #define EVENT_RADAR_DETECTED 0x00000053 579 #define EVENT_CHANNEL_REPORT_RDY 0x00000054 580 #define EVENT_TX_DATA_PAUSE 0x00000055 581 #define EVENT_EXT_SCAN_REPORT 0x00000058 582 #define EVENT_RXBA_SYNC 0x00000059 583 #define EVENT_UNKNOWN_DEBUG 0x00000063 584 #define EVENT_BG_SCAN_STOPPED 0x00000065 585 #define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f 586 #define EVENT_MULTI_CHAN_INFO 0x0000006a 587 #define EVENT_FW_DUMP_INFO 0x00000073 588 #define EVENT_TX_STATUS_REPORT 0x00000074 589 #define EVENT_BT_COEX_WLAN_PARA_CHANGE 0X00000076 590 591 #define EVENT_ID_MASK 0xffff 592 #define BSS_NUM_MASK 0xf 593 594 #define EVENT_GET_BSS_NUM(event_cause) \ 595 (((event_cause) >> 16) & BSS_NUM_MASK) 596 597 #define EVENT_GET_BSS_TYPE(event_cause) \ 598 (((event_cause) >> 24) & 0x00ff) 599 600 #define MWIFIEX_MAX_PATTERN_LEN 40 601 #define MWIFIEX_MAX_OFFSET_LEN 100 602 #define MWIFIEX_MAX_ND_MATCH_SETS 10 603 604 #define STACK_NBYTES 100 605 #define TYPE_DNUM 1 606 #define TYPE_BYTESEQ 2 607 #define MAX_OPERAND 0x40 608 #define TYPE_EQ (MAX_OPERAND+1) 609 #define TYPE_EQ_DNUM (MAX_OPERAND+2) 610 #define TYPE_EQ_BIT (MAX_OPERAND+3) 611 #define TYPE_AND (MAX_OPERAND+4) 612 #define TYPE_OR (MAX_OPERAND+5) 613 #define MEF_MODE_HOST_SLEEP 1 614 #define MEF_ACTION_ALLOW_AND_WAKEUP_HOST 3 615 #define MEF_ACTION_AUTO_ARP 0x10 616 #define MWIFIEX_CRITERIA_BROADCAST BIT(0) 617 #define MWIFIEX_CRITERIA_UNICAST BIT(1) 618 #define MWIFIEX_CRITERIA_MULTICAST BIT(3) 619 #define MWIFIEX_MAX_SUPPORTED_IPADDR 4 620 621 #define ACT_TDLS_DELETE 0x00 622 #define ACT_TDLS_CREATE 0x01 623 #define ACT_TDLS_CONFIG 0x02 624 625 #define TDLS_EVENT_LINK_TEAR_DOWN 3 626 #define TDLS_EVENT_CHAN_SWITCH_RESULT 7 627 #define TDLS_EVENT_START_CHAN_SWITCH 8 628 #define TDLS_EVENT_CHAN_SWITCH_STOPPED 9 629 630 #define TDLS_BASE_CHANNEL 0 631 #define TDLS_OFF_CHANNEL 1 632 633 #define ACT_TDLS_CS_ENABLE_CONFIG 0x00 634 #define ACT_TDLS_CS_INIT 0x06 635 #define ACT_TDLS_CS_STOP 0x07 636 #define ACT_TDLS_CS_PARAMS 0x08 637 638 #define MWIFIEX_DEF_CS_UNIT_TIME 2 639 #define MWIFIEX_DEF_CS_THR_OTHERLINK 10 640 #define MWIFIEX_DEF_THR_DIRECTLINK 0 641 #define MWIFIEX_DEF_CS_TIME 10 642 #define MWIFIEX_DEF_CS_TIMEOUT 16 643 #define MWIFIEX_DEF_CS_REG_CLASS 12 644 #define MWIFIEX_DEF_CS_PERIODICITY 1 645 646 #define MWIFIEX_FW_V15 15 647 648 #define MWIFIEX_MASTER_RADAR_DET_MASK BIT(1) 649 650 struct mwifiex_ie_types_header { 651 __le16 type; 652 __le16 len; 653 } __packed; 654 655 struct mwifiex_ie_types_data { 656 struct mwifiex_ie_types_header header; 657 u8 data[1]; 658 } __packed; 659 660 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01 661 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08 662 #define MWIFIEX_TXPD_FLAGS_TDLS_PACKET 0x10 663 #define MWIFIEX_RXPD_FLAGS_TDLS_PACKET 0x01 664 #define MWIFIEX_TXPD_FLAGS_REQ_TX_STATUS 0x20 665 666 enum HS_WAKEUP_REASON { 667 NO_HSWAKEUP_REASON = 0, 668 BCAST_DATA_MATCHED, 669 MCAST_DATA_MATCHED, 670 UCAST_DATA_MATCHED, 671 MASKTABLE_EVENT_MATCHED, 672 NON_MASKABLE_EVENT_MATCHED, 673 NON_MASKABLE_CONDITION_MATCHED, 674 MAGIC_PATTERN_MATCHED, 675 CONTROL_FRAME_MATCHED, 676 MANAGEMENT_FRAME_MATCHED, 677 GTK_REKEY_FAILURE, 678 RESERVED 679 }; 680 681 struct txpd { 682 u8 bss_type; 683 u8 bss_num; 684 __le16 tx_pkt_length; 685 __le16 tx_pkt_offset; 686 __le16 tx_pkt_type; 687 __le32 tx_control; 688 u8 priority; 689 u8 flags; 690 u8 pkt_delay_2ms; 691 u8 reserved1[2]; 692 u8 tx_token_id; 693 u8 reserved[2]; 694 } __packed; 695 696 struct rxpd { 697 u8 bss_type; 698 u8 bss_num; 699 __le16 rx_pkt_length; 700 __le16 rx_pkt_offset; 701 __le16 rx_pkt_type; 702 __le16 seq_num; 703 u8 priority; 704 u8 rx_rate; 705 s8 snr; 706 s8 nf; 707 708 /* For: Non-802.11 AC cards 709 * 710 * Ht Info [Bit 0] RxRate format: LG=0, HT=1 711 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1 712 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 713 * 714 * For: 802.11 AC cards 715 * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10 716 * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01 717 * BW80 = 10 BW160 = 11 718 * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1 719 * [Bit 5] STBC support Enabled = 1 720 * [Bit 6] LDPC support Enabled = 1 721 * [Bit 7] Reserved 722 */ 723 u8 ht_info; 724 u8 reserved[3]; 725 u8 flags; 726 } __packed; 727 728 struct uap_txpd { 729 u8 bss_type; 730 u8 bss_num; 731 __le16 tx_pkt_length; 732 __le16 tx_pkt_offset; 733 __le16 tx_pkt_type; 734 __le32 tx_control; 735 u8 priority; 736 u8 flags; 737 u8 pkt_delay_2ms; 738 u8 reserved1[2]; 739 u8 tx_token_id; 740 u8 reserved[2]; 741 } __packed; 742 743 struct uap_rxpd { 744 u8 bss_type; 745 u8 bss_num; 746 __le16 rx_pkt_length; 747 __le16 rx_pkt_offset; 748 __le16 rx_pkt_type; 749 __le16 seq_num; 750 u8 priority; 751 u8 rx_rate; 752 s8 snr; 753 s8 nf; 754 u8 ht_info; 755 u8 reserved[3]; 756 u8 flags; 757 } __packed; 758 759 struct mwifiex_fw_chan_stats { 760 u8 chan_num; 761 u8 bandcfg; 762 u8 flags; 763 s8 noise; 764 __le16 total_bss; 765 __le16 cca_scan_dur; 766 __le16 cca_busy_dur; 767 } __packed; 768 769 enum mwifiex_chan_scan_mode_bitmasks { 770 MWIFIEX_PASSIVE_SCAN = BIT(0), 771 MWIFIEX_DISABLE_CHAN_FILT = BIT(1), 772 MWIFIEX_HIDDEN_SSID_REPORT = BIT(4), 773 }; 774 775 struct mwifiex_chan_scan_param_set { 776 u8 radio_type; 777 u8 chan_number; 778 u8 chan_scan_mode_bitmap; 779 __le16 min_scan_time; 780 __le16 max_scan_time; 781 } __packed; 782 783 struct mwifiex_ie_types_chan_list_param_set { 784 struct mwifiex_ie_types_header header; 785 struct mwifiex_chan_scan_param_set chan_scan_param[1]; 786 } __packed; 787 788 struct mwifiex_ie_types_rxba_sync { 789 struct mwifiex_ie_types_header header; 790 u8 mac[ETH_ALEN]; 791 u8 tid; 792 u8 reserved; 793 __le16 seq_num; 794 __le16 bitmap_len; 795 u8 bitmap[1]; 796 } __packed; 797 798 struct chan_band_param_set { 799 u8 radio_type; 800 u8 chan_number; 801 }; 802 803 struct mwifiex_ie_types_chan_band_list_param_set { 804 struct mwifiex_ie_types_header header; 805 struct chan_band_param_set chan_band_param[1]; 806 } __packed; 807 808 struct mwifiex_ie_types_rates_param_set { 809 struct mwifiex_ie_types_header header; 810 u8 rates[1]; 811 } __packed; 812 813 struct mwifiex_ie_types_ssid_param_set { 814 struct mwifiex_ie_types_header header; 815 u8 ssid[1]; 816 } __packed; 817 818 struct mwifiex_ie_types_num_probes { 819 struct mwifiex_ie_types_header header; 820 __le16 num_probes; 821 } __packed; 822 823 struct mwifiex_ie_types_repeat_count { 824 struct mwifiex_ie_types_header header; 825 __le16 repeat_count; 826 } __packed; 827 828 struct mwifiex_ie_types_min_rssi_threshold { 829 struct mwifiex_ie_types_header header; 830 __le16 rssi_threshold; 831 } __packed; 832 833 struct mwifiex_ie_types_bgscan_start_later { 834 struct mwifiex_ie_types_header header; 835 __le16 start_later; 836 } __packed; 837 838 struct mwifiex_ie_types_scan_chan_gap { 839 struct mwifiex_ie_types_header header; 840 /* time gap in TUs to be used between two consecutive channels scan */ 841 __le16 chan_gap; 842 } __packed; 843 844 struct mwifiex_ie_types_random_mac { 845 struct mwifiex_ie_types_header header; 846 u8 mac[ETH_ALEN]; 847 } __packed; 848 849 struct mwifiex_ietypes_chanstats { 850 struct mwifiex_ie_types_header header; 851 struct mwifiex_fw_chan_stats chanstats[]; 852 } __packed; 853 854 struct mwifiex_ie_types_wildcard_ssid_params { 855 struct mwifiex_ie_types_header header; 856 u8 max_ssid_length; 857 u8 ssid[1]; 858 } __packed; 859 860 #define TSF_DATA_SIZE 8 861 struct mwifiex_ie_types_tsf_timestamp { 862 struct mwifiex_ie_types_header header; 863 u8 tsf_data[1]; 864 } __packed; 865 866 struct mwifiex_cf_param_set { 867 u8 cfp_cnt; 868 u8 cfp_period; 869 __le16 cfp_max_duration; 870 __le16 cfp_duration_remaining; 871 } __packed; 872 873 struct mwifiex_ibss_param_set { 874 __le16 atim_window; 875 } __packed; 876 877 struct mwifiex_ie_types_ss_param_set { 878 struct mwifiex_ie_types_header header; 879 union { 880 struct mwifiex_cf_param_set cf_param_set[1]; 881 struct mwifiex_ibss_param_set ibss_param_set[1]; 882 } cf_ibss; 883 } __packed; 884 885 struct mwifiex_fh_param_set { 886 __le16 dwell_time; 887 u8 hop_set; 888 u8 hop_pattern; 889 u8 hop_index; 890 } __packed; 891 892 struct mwifiex_ds_param_set { 893 u8 current_chan; 894 } __packed; 895 896 struct mwifiex_ie_types_phy_param_set { 897 struct mwifiex_ie_types_header header; 898 union { 899 struct mwifiex_fh_param_set fh_param_set[1]; 900 struct mwifiex_ds_param_set ds_param_set[1]; 901 } fh_ds; 902 } __packed; 903 904 struct mwifiex_ie_types_auth_type { 905 struct mwifiex_ie_types_header header; 906 __le16 auth_type; 907 } __packed; 908 909 struct mwifiex_ie_types_vendor_param_set { 910 struct mwifiex_ie_types_header header; 911 u8 ie[MWIFIEX_MAX_VSIE_LEN]; 912 }; 913 914 #define MWIFIEX_TDLS_IDLE_TIMEOUT_IN_SEC 60 915 916 struct mwifiex_ie_types_tdls_idle_timeout { 917 struct mwifiex_ie_types_header header; 918 __le16 value; 919 } __packed; 920 921 struct mwifiex_ie_types_rsn_param_set { 922 struct mwifiex_ie_types_header header; 923 u8 rsn_ie[1]; 924 } __packed; 925 926 #define KEYPARAMSET_FIXED_LEN 6 927 928 struct mwifiex_ie_type_key_param_set { 929 __le16 type; 930 __le16 length; 931 __le16 key_type_id; 932 __le16 key_info; 933 __le16 key_len; 934 u8 key[50]; 935 } __packed; 936 937 #define IGTK_PN_LEN 8 938 939 struct mwifiex_cmac_param { 940 u8 ipn[IGTK_PN_LEN]; 941 u8 key[WLAN_KEY_LEN_AES_CMAC]; 942 } __packed; 943 944 struct mwifiex_wep_param { 945 __le16 key_len; 946 u8 key[WLAN_KEY_LEN_WEP104]; 947 } __packed; 948 949 struct mwifiex_tkip_param { 950 u8 pn[WPA_PN_SIZE]; 951 __le16 key_len; 952 u8 key[WLAN_KEY_LEN_TKIP]; 953 } __packed; 954 955 struct mwifiex_aes_param { 956 u8 pn[WPA_PN_SIZE]; 957 __le16 key_len; 958 u8 key[WLAN_KEY_LEN_CCMP_256]; 959 } __packed; 960 961 struct mwifiex_wapi_param { 962 u8 pn[PN_LEN]; 963 __le16 key_len; 964 u8 key[WLAN_KEY_LEN_SMS4]; 965 } __packed; 966 967 struct mwifiex_cmac_aes_param { 968 u8 ipn[IGTK_PN_LEN]; 969 __le16 key_len; 970 u8 key[WLAN_KEY_LEN_AES_CMAC]; 971 } __packed; 972 973 struct mwifiex_ie_type_key_param_set_v2 { 974 __le16 type; 975 __le16 len; 976 u8 mac_addr[ETH_ALEN]; 977 u8 key_idx; 978 u8 key_type; 979 __le16 key_info; 980 union { 981 struct mwifiex_wep_param wep; 982 struct mwifiex_tkip_param tkip; 983 struct mwifiex_aes_param aes; 984 struct mwifiex_wapi_param wapi; 985 struct mwifiex_cmac_aes_param cmac_aes; 986 } key_params; 987 } __packed; 988 989 struct host_cmd_ds_802_11_key_material_v2 { 990 __le16 action; 991 struct mwifiex_ie_type_key_param_set_v2 key_param_set; 992 } __packed; 993 994 struct host_cmd_ds_802_11_key_material { 995 __le16 action; 996 struct mwifiex_ie_type_key_param_set key_param_set; 997 } __packed; 998 999 struct host_cmd_ds_802_11_key_material_wep { 1000 __le16 action; 1001 struct mwifiex_ie_type_key_param_set key_param_set[NUM_WEP_KEYS]; 1002 } __packed; 1003 1004 struct host_cmd_ds_gen { 1005 __le16 command; 1006 __le16 size; 1007 __le16 seq_num; 1008 __le16 result; 1009 }; 1010 1011 #define S_DS_GEN sizeof(struct host_cmd_ds_gen) 1012 1013 enum sleep_resp_ctrl { 1014 RESP_NOT_NEEDED = 0, 1015 RESP_NEEDED, 1016 }; 1017 1018 struct mwifiex_ps_param { 1019 __le16 null_pkt_interval; 1020 __le16 multiple_dtims; 1021 __le16 bcn_miss_timeout; 1022 __le16 local_listen_interval; 1023 __le16 adhoc_wake_period; 1024 __le16 mode; 1025 __le16 delay_to_ps; 1026 } __packed; 1027 1028 #define HS_DEF_WAKE_INTERVAL 100 1029 #define HS_DEF_INACTIVITY_TIMEOUT 50 1030 1031 struct mwifiex_ps_param_in_hs { 1032 struct mwifiex_ie_types_header header; 1033 __le32 hs_wake_int; 1034 __le32 hs_inact_timeout; 1035 } __packed; 1036 1037 #define BITMAP_AUTO_DS 0x01 1038 #define BITMAP_STA_PS 0x10 1039 1040 struct mwifiex_ie_types_auto_ds_param { 1041 struct mwifiex_ie_types_header header; 1042 __le16 deep_sleep_timeout; 1043 } __packed; 1044 1045 struct mwifiex_ie_types_ps_param { 1046 struct mwifiex_ie_types_header header; 1047 struct mwifiex_ps_param param; 1048 } __packed; 1049 1050 struct host_cmd_ds_802_11_ps_mode_enh { 1051 __le16 action; 1052 1053 union { 1054 struct mwifiex_ps_param opt_ps; 1055 __le16 ps_bitmap; 1056 } params; 1057 } __packed; 1058 1059 enum API_VER_ID { 1060 KEY_API_VER_ID = 1, 1061 FW_API_VER_ID = 2, 1062 UAP_FW_API_VER_ID = 3, 1063 CHANRPT_API_VER_ID = 4, 1064 }; 1065 1066 struct hw_spec_api_rev { 1067 struct mwifiex_ie_types_header header; 1068 __le16 api_id; 1069 u8 major_ver; 1070 u8 minor_ver; 1071 } __packed; 1072 1073 struct host_cmd_ds_get_hw_spec { 1074 __le16 hw_if_version; 1075 __le16 version; 1076 __le16 reserved; 1077 __le16 num_of_mcast_adr; 1078 u8 permanent_addr[ETH_ALEN]; 1079 __le16 region_code; 1080 __le16 number_of_antenna; 1081 __le32 fw_release_number; 1082 __le32 reserved_1; 1083 __le32 reserved_2; 1084 __le32 reserved_3; 1085 __le32 fw_cap_info; 1086 __le32 dot_11n_dev_cap; 1087 u8 dev_mcs_support; 1088 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */ 1089 __le16 mgmt_buf_count; /* mgmt IE buffer count */ 1090 __le32 reserved_5; 1091 __le32 reserved_6; 1092 __le32 dot_11ac_dev_cap; 1093 __le32 dot_11ac_mcs_support; 1094 u8 tlvs[]; 1095 } __packed; 1096 1097 struct host_cmd_ds_802_11_rssi_info { 1098 __le16 action; 1099 __le16 ndata; 1100 __le16 nbcn; 1101 __le16 reserved[9]; 1102 long long reserved_1; 1103 } __packed; 1104 1105 struct host_cmd_ds_802_11_rssi_info_rsp { 1106 __le16 action; 1107 __le16 ndata; 1108 __le16 nbcn; 1109 __le16 data_rssi_last; 1110 __le16 data_nf_last; 1111 __le16 data_rssi_avg; 1112 __le16 data_nf_avg; 1113 __le16 bcn_rssi_last; 1114 __le16 bcn_nf_last; 1115 __le16 bcn_rssi_avg; 1116 __le16 bcn_nf_avg; 1117 long long tsf_bcn; 1118 } __packed; 1119 1120 struct host_cmd_ds_802_11_mac_address { 1121 __le16 action; 1122 u8 mac_addr[ETH_ALEN]; 1123 } __packed; 1124 1125 struct host_cmd_ds_mac_control { 1126 __le32 action; 1127 }; 1128 1129 struct host_cmd_ds_mac_multicast_adr { 1130 __le16 action; 1131 __le16 num_of_adrs; 1132 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN]; 1133 } __packed; 1134 1135 struct host_cmd_ds_802_11_deauthenticate { 1136 u8 mac_addr[ETH_ALEN]; 1137 __le16 reason_code; 1138 } __packed; 1139 1140 struct host_cmd_ds_802_11_associate { 1141 u8 peer_sta_addr[ETH_ALEN]; 1142 __le16 cap_info_bitmap; 1143 __le16 listen_interval; 1144 __le16 beacon_period; 1145 u8 dtim_period; 1146 } __packed; 1147 1148 struct ieee_types_assoc_rsp { 1149 __le16 cap_info_bitmap; 1150 __le16 status_code; 1151 __le16 a_id; 1152 u8 ie_buffer[]; 1153 } __packed; 1154 1155 struct host_cmd_ds_802_11_associate_rsp { 1156 struct ieee_types_assoc_rsp assoc_rsp; 1157 } __packed; 1158 1159 struct ieee_types_cf_param_set { 1160 u8 element_id; 1161 u8 len; 1162 u8 cfp_cnt; 1163 u8 cfp_period; 1164 __le16 cfp_max_duration; 1165 __le16 cfp_duration_remaining; 1166 } __packed; 1167 1168 struct ieee_types_ibss_param_set { 1169 u8 element_id; 1170 u8 len; 1171 __le16 atim_window; 1172 } __packed; 1173 1174 union ieee_types_ss_param_set { 1175 struct ieee_types_cf_param_set cf_param_set; 1176 struct ieee_types_ibss_param_set ibss_param_set; 1177 } __packed; 1178 1179 struct ieee_types_fh_param_set { 1180 u8 element_id; 1181 u8 len; 1182 __le16 dwell_time; 1183 u8 hop_set; 1184 u8 hop_pattern; 1185 u8 hop_index; 1186 } __packed; 1187 1188 struct ieee_types_ds_param_set { 1189 u8 element_id; 1190 u8 len; 1191 u8 current_chan; 1192 } __packed; 1193 1194 union ieee_types_phy_param_set { 1195 struct ieee_types_fh_param_set fh_param_set; 1196 struct ieee_types_ds_param_set ds_param_set; 1197 } __packed; 1198 1199 struct ieee_types_oper_mode_ntf { 1200 u8 element_id; 1201 u8 len; 1202 u8 oper_mode; 1203 } __packed; 1204 1205 struct host_cmd_ds_802_11_ad_hoc_start { 1206 u8 ssid[IEEE80211_MAX_SSID_LEN]; 1207 u8 bss_mode; 1208 __le16 beacon_period; 1209 u8 dtim_period; 1210 union ieee_types_ss_param_set ss_param_set; 1211 union ieee_types_phy_param_set phy_param_set; 1212 u16 reserved1; 1213 __le16 cap_info_bitmap; 1214 u8 data_rate[HOSTCMD_SUPPORTED_RATES]; 1215 } __packed; 1216 1217 struct host_cmd_ds_802_11_ad_hoc_start_result { 1218 u8 pad[3]; 1219 u8 bssid[ETH_ALEN]; 1220 u8 pad2[2]; 1221 u8 result; 1222 } __packed; 1223 1224 struct host_cmd_ds_802_11_ad_hoc_join_result { 1225 u8 result; 1226 } __packed; 1227 1228 struct adhoc_bss_desc { 1229 u8 bssid[ETH_ALEN]; 1230 u8 ssid[IEEE80211_MAX_SSID_LEN]; 1231 u8 bss_mode; 1232 __le16 beacon_period; 1233 u8 dtim_period; 1234 u8 time_stamp[8]; 1235 u8 local_time[8]; 1236 union ieee_types_phy_param_set phy_param_set; 1237 union ieee_types_ss_param_set ss_param_set; 1238 __le16 cap_info_bitmap; 1239 u8 data_rates[HOSTCMD_SUPPORTED_RATES]; 1240 1241 /* 1242 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE. 1243 * It is used in the Adhoc join command and will cause a 1244 * binary layout mismatch with the firmware 1245 */ 1246 } __packed; 1247 1248 struct host_cmd_ds_802_11_ad_hoc_join { 1249 struct adhoc_bss_desc bss_descriptor; 1250 u16 reserved1; 1251 u16 reserved2; 1252 } __packed; 1253 1254 struct host_cmd_ds_802_11_get_log { 1255 __le32 mcast_tx_frame; 1256 __le32 failed; 1257 __le32 retry; 1258 __le32 multi_retry; 1259 __le32 frame_dup; 1260 __le32 rts_success; 1261 __le32 rts_failure; 1262 __le32 ack_failure; 1263 __le32 rx_frag; 1264 __le32 mcast_rx_frame; 1265 __le32 fcs_error; 1266 __le32 tx_frame; 1267 __le32 reserved; 1268 __le32 wep_icv_err_cnt[4]; 1269 __le32 bcn_rcv_cnt; 1270 __le32 bcn_miss_cnt; 1271 } __packed; 1272 1273 /* Enumeration for rate format */ 1274 enum _mwifiex_rate_format { 1275 MWIFIEX_RATE_FORMAT_LG = 0, 1276 MWIFIEX_RATE_FORMAT_HT, 1277 MWIFIEX_RATE_FORMAT_VHT, 1278 MWIFIEX_RATE_FORMAT_AUTO = 0xFF, 1279 }; 1280 1281 struct host_cmd_ds_tx_rate_query { 1282 u8 tx_rate; 1283 /* Tx Rate Info: For 802.11 AC cards 1284 * 1285 * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2 1286 * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3 1287 * [Bit 4] HT/VHT Guard Interval: LGI = 0, SGI = 1 1288 * 1289 * For non-802.11 AC cards 1290 * Ht Info [Bit 0] RxRate format: LG=0, HT=1 1291 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1 1292 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 1293 */ 1294 u8 ht_info; 1295 } __packed; 1296 1297 struct mwifiex_tx_pause_tlv { 1298 struct mwifiex_ie_types_header header; 1299 u8 peermac[ETH_ALEN]; 1300 u8 tx_pause; 1301 u8 pkt_cnt; 1302 } __packed; 1303 1304 enum Host_Sleep_Action { 1305 HS_CONFIGURE = 0x0001, 1306 HS_ACTIVATE = 0x0002, 1307 }; 1308 1309 struct mwifiex_hs_config_param { 1310 __le32 conditions; 1311 u8 gpio; 1312 u8 gap; 1313 } __packed; 1314 1315 struct hs_activate_param { 1316 __le16 resp_ctrl; 1317 } __packed; 1318 1319 struct host_cmd_ds_802_11_hs_cfg_enh { 1320 __le16 action; 1321 1322 union { 1323 struct mwifiex_hs_config_param hs_config; 1324 struct hs_activate_param hs_activate; 1325 } params; 1326 } __packed; 1327 1328 enum SNMP_MIB_INDEX { 1329 OP_RATE_SET_I = 1, 1330 DTIM_PERIOD_I = 3, 1331 RTS_THRESH_I = 5, 1332 SHORT_RETRY_LIM_I = 6, 1333 LONG_RETRY_LIM_I = 7, 1334 FRAG_THRESH_I = 8, 1335 DOT11D_I = 9, 1336 DOT11H_I = 10, 1337 }; 1338 1339 enum mwifiex_assocmd_failurepoint { 1340 MWIFIEX_ASSOC_CMD_SUCCESS = 0, 1341 MWIFIEX_ASSOC_CMD_FAILURE_ASSOC, 1342 MWIFIEX_ASSOC_CMD_FAILURE_AUTH, 1343 MWIFIEX_ASSOC_CMD_FAILURE_JOIN 1344 }; 1345 1346 #define MAX_SNMP_BUF_SIZE 128 1347 1348 struct host_cmd_ds_802_11_snmp_mib { 1349 __le16 query_type; 1350 __le16 oid; 1351 __le16 buf_size; 1352 u8 value[1]; 1353 } __packed; 1354 1355 struct mwifiex_rate_scope { 1356 __le16 type; 1357 __le16 length; 1358 __le16 hr_dsss_rate_bitmap; 1359 __le16 ofdm_rate_bitmap; 1360 __le16 ht_mcs_rate_bitmap[8]; 1361 __le16 vht_mcs_rate_bitmap[8]; 1362 } __packed; 1363 1364 struct mwifiex_rate_drop_pattern { 1365 __le16 type; 1366 __le16 length; 1367 __le32 rate_drop_mode; 1368 } __packed; 1369 1370 struct host_cmd_ds_tx_rate_cfg { 1371 __le16 action; 1372 __le16 cfg_index; 1373 } __packed; 1374 1375 struct mwifiex_power_group { 1376 u8 modulation_class; 1377 u8 first_rate_code; 1378 u8 last_rate_code; 1379 s8 power_step; 1380 s8 power_min; 1381 s8 power_max; 1382 u8 ht_bandwidth; 1383 u8 reserved; 1384 } __packed; 1385 1386 struct mwifiex_types_power_group { 1387 __le16 type; 1388 __le16 length; 1389 } __packed; 1390 1391 struct host_cmd_ds_txpwr_cfg { 1392 __le16 action; 1393 __le16 cfg_index; 1394 __le32 mode; 1395 } __packed; 1396 1397 struct host_cmd_ds_rf_tx_pwr { 1398 __le16 action; 1399 __le16 cur_level; 1400 u8 max_power; 1401 u8 min_power; 1402 } __packed; 1403 1404 struct host_cmd_ds_rf_ant_mimo { 1405 __le16 action_tx; 1406 __le16 tx_ant_mode; 1407 __le16 action_rx; 1408 __le16 rx_ant_mode; 1409 } __packed; 1410 1411 struct host_cmd_ds_rf_ant_siso { 1412 __le16 action; 1413 __le16 ant_mode; 1414 } __packed; 1415 1416 struct host_cmd_ds_tdls_oper { 1417 __le16 tdls_action; 1418 __le16 reason; 1419 u8 peer_mac[ETH_ALEN]; 1420 } __packed; 1421 1422 struct mwifiex_tdls_config { 1423 __le16 enable; 1424 } __packed; 1425 1426 struct mwifiex_tdls_config_cs_params { 1427 u8 unit_time; 1428 u8 thr_otherlink; 1429 u8 thr_directlink; 1430 } __packed; 1431 1432 struct mwifiex_tdls_init_cs_params { 1433 u8 peer_mac[ETH_ALEN]; 1434 u8 primary_chan; 1435 u8 second_chan_offset; 1436 u8 band; 1437 __le16 switch_time; 1438 __le16 switch_timeout; 1439 u8 reg_class; 1440 u8 periodicity; 1441 } __packed; 1442 1443 struct mwifiex_tdls_stop_cs_params { 1444 u8 peer_mac[ETH_ALEN]; 1445 } __packed; 1446 1447 struct host_cmd_ds_tdls_config { 1448 __le16 tdls_action; 1449 u8 tdls_data[1]; 1450 } __packed; 1451 1452 struct mwifiex_chan_desc { 1453 __le16 start_freq; 1454 u8 chan_width; 1455 u8 chan_num; 1456 } __packed; 1457 1458 struct host_cmd_ds_chan_rpt_req { 1459 struct mwifiex_chan_desc chan_desc; 1460 __le32 msec_dwell_time; 1461 } __packed; 1462 1463 struct host_cmd_ds_chan_rpt_event { 1464 __le32 result; 1465 __le64 start_tsf; 1466 __le32 duration; 1467 u8 tlvbuf[]; 1468 } __packed; 1469 1470 struct host_cmd_sdio_sp_rx_aggr_cfg { 1471 u8 action; 1472 u8 enable; 1473 __le16 block_size; 1474 } __packed; 1475 1476 struct mwifiex_fixed_bcn_param { 1477 __le64 timestamp; 1478 __le16 beacon_period; 1479 __le16 cap_info_bitmap; 1480 } __packed; 1481 1482 struct mwifiex_event_scan_result { 1483 __le16 event_id; 1484 u8 bss_index; 1485 u8 bss_type; 1486 u8 more_event; 1487 u8 reserved[3]; 1488 __le16 buf_size; 1489 u8 num_of_set; 1490 } __packed; 1491 1492 struct tx_status_event { 1493 u8 packet_type; 1494 u8 tx_token_id; 1495 u8 status; 1496 } __packed; 1497 1498 #define MWIFIEX_USER_SCAN_CHAN_MAX 50 1499 1500 #define MWIFIEX_MAX_SSID_LIST_LENGTH 10 1501 1502 struct mwifiex_scan_cmd_config { 1503 /* 1504 * BSS mode to be sent in the firmware command 1505 */ 1506 u8 bss_mode; 1507 1508 /* Specific BSSID used to filter scan results in the firmware */ 1509 u8 specific_bssid[ETH_ALEN]; 1510 1511 /* Length of TLVs sent in command starting at tlvBuffer */ 1512 u32 tlv_buf_len; 1513 1514 /* 1515 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command 1516 * 1517 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set 1518 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set 1519 */ 1520 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored 1521 here */ 1522 } __packed; 1523 1524 struct mwifiex_user_scan_chan { 1525 u8 chan_number; 1526 u8 radio_type; 1527 u8 scan_type; 1528 u8 reserved; 1529 u32 scan_time; 1530 } __packed; 1531 1532 struct mwifiex_user_scan_cfg { 1533 /* 1534 * BSS mode to be sent in the firmware command 1535 */ 1536 u8 bss_mode; 1537 /* Configure the number of probe requests for active chan scans */ 1538 u8 num_probes; 1539 u8 reserved; 1540 /* BSSID filter sent in the firmware command to limit the results */ 1541 u8 specific_bssid[ETH_ALEN]; 1542 /* SSID filter list used in the firmware to limit the scan results */ 1543 struct cfg80211_ssid *ssid_list; 1544 u8 num_ssids; 1545 /* Variable number (fixed maximum) of channels to scan up */ 1546 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX]; 1547 u16 scan_chan_gap; 1548 u8 random_mac[ETH_ALEN]; 1549 } __packed; 1550 1551 #define MWIFIEX_BG_SCAN_CHAN_MAX 38 1552 #define MWIFIEX_BSS_MODE_INFRA 1 1553 #define MWIFIEX_BGSCAN_ACT_GET 0x0000 1554 #define MWIFIEX_BGSCAN_ACT_SET 0x0001 1555 #define MWIFIEX_BGSCAN_ACT_SET_ALL 0xff01 1556 /** ssid match */ 1557 #define MWIFIEX_BGSCAN_SSID_MATCH 0x0001 1558 /** ssid match and RSSI exceeded */ 1559 #define MWIFIEX_BGSCAN_SSID_RSSI_MATCH 0x0004 1560 /**wait for all channel scan to complete to report scan result*/ 1561 #define MWIFIEX_BGSCAN_WAIT_ALL_CHAN_DONE 0x80000000 1562 1563 struct mwifiex_bg_scan_cfg { 1564 u16 action; 1565 u8 enable; 1566 u8 bss_type; 1567 u8 chan_per_scan; 1568 u32 scan_interval; 1569 u32 report_condition; 1570 u8 num_probes; 1571 u8 rssi_threshold; 1572 u8 snr_threshold; 1573 u16 repeat_count; 1574 u16 start_later; 1575 struct cfg80211_match_set *ssid_list; 1576 u8 num_ssids; 1577 struct mwifiex_user_scan_chan chan_list[MWIFIEX_BG_SCAN_CHAN_MAX]; 1578 u16 scan_chan_gap; 1579 } __packed; 1580 1581 struct ie_body { 1582 u8 grp_key_oui[4]; 1583 u8 ptk_cnt[2]; 1584 u8 ptk_body[4]; 1585 } __packed; 1586 1587 struct host_cmd_ds_802_11_scan { 1588 u8 bss_mode; 1589 u8 bssid[ETH_ALEN]; 1590 u8 tlv_buffer[1]; 1591 } __packed; 1592 1593 struct host_cmd_ds_802_11_scan_rsp { 1594 __le16 bss_descript_size; 1595 u8 number_of_sets; 1596 u8 bss_desc_and_tlv_buffer[1]; 1597 } __packed; 1598 1599 struct host_cmd_ds_802_11_scan_ext { 1600 u32 reserved; 1601 u8 tlv_buffer[1]; 1602 } __packed; 1603 1604 struct mwifiex_ie_types_bss_mode { 1605 struct mwifiex_ie_types_header header; 1606 u8 bss_mode; 1607 } __packed; 1608 1609 struct mwifiex_ie_types_bss_scan_rsp { 1610 struct mwifiex_ie_types_header header; 1611 u8 bssid[ETH_ALEN]; 1612 u8 frame_body[1]; 1613 } __packed; 1614 1615 struct mwifiex_ie_types_bss_scan_info { 1616 struct mwifiex_ie_types_header header; 1617 __le16 rssi; 1618 __le16 anpi; 1619 u8 cca_busy_fraction; 1620 u8 radio_type; 1621 u8 channel; 1622 u8 reserved; 1623 __le64 tsf; 1624 } __packed; 1625 1626 struct host_cmd_ds_802_11_bg_scan_config { 1627 __le16 action; 1628 u8 enable; 1629 u8 bss_type; 1630 u8 chan_per_scan; 1631 u8 reserved; 1632 __le16 reserved1; 1633 __le32 scan_interval; 1634 __le32 reserved2; 1635 __le32 report_condition; 1636 __le16 reserved3; 1637 u8 tlv[]; 1638 } __packed; 1639 1640 struct host_cmd_ds_802_11_bg_scan_query { 1641 u8 flush; 1642 } __packed; 1643 1644 struct host_cmd_ds_802_11_bg_scan_query_rsp { 1645 __le32 report_condition; 1646 struct host_cmd_ds_802_11_scan_rsp scan_resp; 1647 } __packed; 1648 1649 struct mwifiex_ietypes_domain_param_set { 1650 struct mwifiex_ie_types_header header; 1651 u8 country_code[IEEE80211_COUNTRY_STRING_LEN]; 1652 struct ieee80211_country_ie_triplet triplet[1]; 1653 } __packed; 1654 1655 struct host_cmd_ds_802_11d_domain_info { 1656 __le16 action; 1657 struct mwifiex_ietypes_domain_param_set domain; 1658 } __packed; 1659 1660 struct host_cmd_ds_802_11d_domain_info_rsp { 1661 __le16 action; 1662 struct mwifiex_ietypes_domain_param_set domain; 1663 } __packed; 1664 1665 struct host_cmd_ds_11n_addba_req { 1666 u8 add_req_result; 1667 u8 peer_mac_addr[ETH_ALEN]; 1668 u8 dialog_token; 1669 __le16 block_ack_param_set; 1670 __le16 block_ack_tmo; 1671 __le16 ssn; 1672 } __packed; 1673 1674 struct host_cmd_ds_11n_addba_rsp { 1675 u8 add_rsp_result; 1676 u8 peer_mac_addr[ETH_ALEN]; 1677 u8 dialog_token; 1678 __le16 status_code; 1679 __le16 block_ack_param_set; 1680 __le16 block_ack_tmo; 1681 __le16 ssn; 1682 } __packed; 1683 1684 struct host_cmd_ds_11n_delba { 1685 u8 del_result; 1686 u8 peer_mac_addr[ETH_ALEN]; 1687 __le16 del_ba_param_set; 1688 __le16 reason_code; 1689 u8 reserved; 1690 } __packed; 1691 1692 struct host_cmd_ds_11n_batimeout { 1693 u8 tid; 1694 u8 peer_mac_addr[ETH_ALEN]; 1695 u8 origninator; 1696 } __packed; 1697 1698 struct host_cmd_ds_11n_cfg { 1699 __le16 action; 1700 __le16 ht_tx_cap; 1701 __le16 ht_tx_info; 1702 __le16 misc_config; /* Needed for 802.11AC cards only */ 1703 } __packed; 1704 1705 struct host_cmd_ds_txbuf_cfg { 1706 __le16 action; 1707 __le16 buff_size; 1708 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */ 1709 __le16 reserved3; 1710 } __packed; 1711 1712 struct host_cmd_ds_amsdu_aggr_ctrl { 1713 __le16 action; 1714 __le16 enable; 1715 __le16 curr_buf_size; 1716 } __packed; 1717 1718 struct host_cmd_ds_sta_deauth { 1719 u8 mac[ETH_ALEN]; 1720 __le16 reason; 1721 } __packed; 1722 1723 struct mwifiex_ie_types_sta_info { 1724 struct mwifiex_ie_types_header header; 1725 u8 mac[ETH_ALEN]; 1726 u8 power_mfg_status; 1727 s8 rssi; 1728 }; 1729 1730 struct host_cmd_ds_sta_list { 1731 __le16 sta_count; 1732 u8 tlv[]; 1733 } __packed; 1734 1735 struct mwifiex_ie_types_pwr_capability { 1736 struct mwifiex_ie_types_header header; 1737 s8 min_pwr; 1738 s8 max_pwr; 1739 }; 1740 1741 struct mwifiex_ie_types_local_pwr_constraint { 1742 struct mwifiex_ie_types_header header; 1743 u8 chan; 1744 u8 constraint; 1745 }; 1746 1747 struct mwifiex_ie_types_wmm_param_set { 1748 struct mwifiex_ie_types_header header; 1749 u8 wmm_ie[1]; 1750 } __packed; 1751 1752 struct mwifiex_ie_types_mgmt_frame { 1753 struct mwifiex_ie_types_header header; 1754 __le16 frame_control; 1755 u8 frame_contents[]; 1756 }; 1757 1758 struct mwifiex_ie_types_wmm_queue_status { 1759 struct mwifiex_ie_types_header header; 1760 u8 queue_index; 1761 u8 disabled; 1762 __le16 medium_time; 1763 u8 flow_required; 1764 u8 flow_created; 1765 u32 reserved; 1766 }; 1767 1768 struct ieee_types_vendor_header { 1769 u8 element_id; 1770 u8 len; 1771 struct { 1772 u8 oui[3]; 1773 u8 oui_type; 1774 } __packed oui; 1775 } __packed; 1776 1777 struct ieee_types_wmm_parameter { 1778 /* 1779 * WMM Parameter IE - Vendor Specific Header: 1780 * element_id [221/0xdd] 1781 * Len [24] 1782 * Oui [00:50:f2] 1783 * OuiType [2] 1784 * OuiSubType [1] 1785 * Version [1] 1786 */ 1787 struct ieee_types_vendor_header vend_hdr; 1788 u8 oui_subtype; 1789 u8 version; 1790 1791 u8 qos_info_bitmap; 1792 u8 reserved; 1793 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS]; 1794 } __packed; 1795 1796 struct ieee_types_wmm_info { 1797 1798 /* 1799 * WMM Info IE - Vendor Specific Header: 1800 * element_id [221/0xdd] 1801 * Len [7] 1802 * Oui [00:50:f2] 1803 * OuiType [2] 1804 * OuiSubType [0] 1805 * Version [1] 1806 */ 1807 struct ieee_types_vendor_header vend_hdr; 1808 u8 oui_subtype; 1809 u8 version; 1810 1811 u8 qos_info_bitmap; 1812 } __packed; 1813 1814 struct host_cmd_ds_wmm_get_status { 1815 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) * 1816 IEEE80211_NUM_ACS]; 1817 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2]; 1818 } __packed; 1819 1820 struct mwifiex_wmm_ac_status { 1821 u8 disabled; 1822 u8 flow_required; 1823 u8 flow_created; 1824 }; 1825 1826 struct mwifiex_ie_types_htcap { 1827 struct mwifiex_ie_types_header header; 1828 struct ieee80211_ht_cap ht_cap; 1829 } __packed; 1830 1831 struct mwifiex_ie_types_vhtcap { 1832 struct mwifiex_ie_types_header header; 1833 struct ieee80211_vht_cap vht_cap; 1834 } __packed; 1835 1836 struct mwifiex_ie_types_aid { 1837 struct mwifiex_ie_types_header header; 1838 __le16 aid; 1839 } __packed; 1840 1841 struct mwifiex_ie_types_oper_mode_ntf { 1842 struct mwifiex_ie_types_header header; 1843 u8 oper_mode; 1844 } __packed; 1845 1846 /* VHT Operations IE */ 1847 struct mwifiex_ie_types_vht_oper { 1848 struct mwifiex_ie_types_header header; 1849 u8 chan_width; 1850 u8 chan_center_freq_1; 1851 u8 chan_center_freq_2; 1852 /* Basic MCS set map, each 2 bits stands for a NSS */ 1853 __le16 basic_mcs_map; 1854 } __packed; 1855 1856 struct mwifiex_ie_types_wmmcap { 1857 struct mwifiex_ie_types_header header; 1858 struct mwifiex_types_wmm_info wmm_info; 1859 } __packed; 1860 1861 struct mwifiex_ie_types_htinfo { 1862 struct mwifiex_ie_types_header header; 1863 struct ieee80211_ht_operation ht_oper; 1864 } __packed; 1865 1866 struct mwifiex_ie_types_2040bssco { 1867 struct mwifiex_ie_types_header header; 1868 u8 bss_co_2040; 1869 } __packed; 1870 1871 struct mwifiex_ie_types_extcap { 1872 struct mwifiex_ie_types_header header; 1873 u8 ext_capab[]; 1874 } __packed; 1875 1876 struct host_cmd_ds_mem_access { 1877 __le16 action; 1878 __le16 reserved; 1879 __le32 addr; 1880 __le32 value; 1881 } __packed; 1882 1883 struct mwifiex_ie_types_qos_info { 1884 struct mwifiex_ie_types_header header; 1885 u8 qos_info; 1886 } __packed; 1887 1888 struct host_cmd_ds_mac_reg_access { 1889 __le16 action; 1890 __le16 offset; 1891 __le32 value; 1892 } __packed; 1893 1894 struct host_cmd_ds_bbp_reg_access { 1895 __le16 action; 1896 __le16 offset; 1897 u8 value; 1898 u8 reserved[3]; 1899 } __packed; 1900 1901 struct host_cmd_ds_rf_reg_access { 1902 __le16 action; 1903 __le16 offset; 1904 u8 value; 1905 u8 reserved[3]; 1906 } __packed; 1907 1908 struct host_cmd_ds_pmic_reg_access { 1909 __le16 action; 1910 __le16 offset; 1911 u8 value; 1912 u8 reserved[3]; 1913 } __packed; 1914 1915 struct host_cmd_ds_802_11_eeprom_access { 1916 __le16 action; 1917 1918 __le16 offset; 1919 __le16 byte_count; 1920 u8 value; 1921 } __packed; 1922 1923 struct mwifiex_assoc_event { 1924 u8 sta_addr[ETH_ALEN]; 1925 __le16 type; 1926 __le16 len; 1927 __le16 frame_control; 1928 __le16 cap_info; 1929 __le16 listen_interval; 1930 u8 data[]; 1931 } __packed; 1932 1933 struct host_cmd_ds_sys_config { 1934 __le16 action; 1935 u8 tlv[]; 1936 }; 1937 1938 struct host_cmd_11ac_vht_cfg { 1939 __le16 action; 1940 u8 band_config; 1941 u8 misc_config; 1942 __le32 cap_info; 1943 __le32 mcs_tx_set; 1944 __le32 mcs_rx_set; 1945 } __packed; 1946 1947 struct host_cmd_tlv_akmp { 1948 struct mwifiex_ie_types_header header; 1949 __le16 key_mgmt; 1950 __le16 key_mgmt_operation; 1951 } __packed; 1952 1953 struct host_cmd_tlv_pwk_cipher { 1954 struct mwifiex_ie_types_header header; 1955 __le16 proto; 1956 u8 cipher; 1957 u8 reserved; 1958 } __packed; 1959 1960 struct host_cmd_tlv_gwk_cipher { 1961 struct mwifiex_ie_types_header header; 1962 u8 cipher; 1963 u8 reserved; 1964 } __packed; 1965 1966 struct host_cmd_tlv_passphrase { 1967 struct mwifiex_ie_types_header header; 1968 u8 passphrase[]; 1969 } __packed; 1970 1971 struct host_cmd_tlv_wep_key { 1972 struct mwifiex_ie_types_header header; 1973 u8 key_index; 1974 u8 is_default; 1975 u8 key[1]; 1976 }; 1977 1978 struct host_cmd_tlv_auth_type { 1979 struct mwifiex_ie_types_header header; 1980 u8 auth_type; 1981 } __packed; 1982 1983 struct host_cmd_tlv_encrypt_protocol { 1984 struct mwifiex_ie_types_header header; 1985 __le16 proto; 1986 } __packed; 1987 1988 struct host_cmd_tlv_ssid { 1989 struct mwifiex_ie_types_header header; 1990 u8 ssid[]; 1991 } __packed; 1992 1993 struct host_cmd_tlv_rates { 1994 struct mwifiex_ie_types_header header; 1995 u8 rates[]; 1996 } __packed; 1997 1998 struct mwifiex_ie_types_bssid_list { 1999 struct mwifiex_ie_types_header header; 2000 u8 bssid[ETH_ALEN]; 2001 } __packed; 2002 2003 struct host_cmd_tlv_bcast_ssid { 2004 struct mwifiex_ie_types_header header; 2005 u8 bcast_ctl; 2006 } __packed; 2007 2008 struct host_cmd_tlv_beacon_period { 2009 struct mwifiex_ie_types_header header; 2010 __le16 period; 2011 } __packed; 2012 2013 struct host_cmd_tlv_dtim_period { 2014 struct mwifiex_ie_types_header header; 2015 u8 period; 2016 } __packed; 2017 2018 struct host_cmd_tlv_frag_threshold { 2019 struct mwifiex_ie_types_header header; 2020 __le16 frag_thr; 2021 } __packed; 2022 2023 struct host_cmd_tlv_rts_threshold { 2024 struct mwifiex_ie_types_header header; 2025 __le16 rts_thr; 2026 } __packed; 2027 2028 struct host_cmd_tlv_retry_limit { 2029 struct mwifiex_ie_types_header header; 2030 u8 limit; 2031 } __packed; 2032 2033 struct host_cmd_tlv_mac_addr { 2034 struct mwifiex_ie_types_header header; 2035 u8 mac_addr[ETH_ALEN]; 2036 } __packed; 2037 2038 struct host_cmd_tlv_channel_band { 2039 struct mwifiex_ie_types_header header; 2040 u8 band_config; 2041 u8 channel; 2042 } __packed; 2043 2044 struct host_cmd_tlv_ageout_timer { 2045 struct mwifiex_ie_types_header header; 2046 __le32 sta_ao_timer; 2047 } __packed; 2048 2049 struct host_cmd_tlv_power_constraint { 2050 struct mwifiex_ie_types_header header; 2051 u8 constraint; 2052 } __packed; 2053 2054 struct mwifiex_ie_types_btcoex_scan_time { 2055 struct mwifiex_ie_types_header header; 2056 u8 coex_scan; 2057 u8 reserved; 2058 __le16 min_scan_time; 2059 __le16 max_scan_time; 2060 } __packed; 2061 2062 struct mwifiex_ie_types_btcoex_aggr_win_size { 2063 struct mwifiex_ie_types_header header; 2064 u8 coex_win_size; 2065 u8 tx_win_size; 2066 u8 rx_win_size; 2067 u8 reserved; 2068 } __packed; 2069 2070 struct mwifiex_ie_types_robust_coex { 2071 struct mwifiex_ie_types_header header; 2072 __le32 mode; 2073 } __packed; 2074 2075 struct host_cmd_ds_version_ext { 2076 u8 version_str_sel; 2077 char version_str[128]; 2078 } __packed; 2079 2080 struct host_cmd_ds_mgmt_frame_reg { 2081 __le16 action; 2082 __le32 mask; 2083 } __packed; 2084 2085 struct host_cmd_ds_p2p_mode_cfg { 2086 __le16 action; 2087 __le16 mode; 2088 } __packed; 2089 2090 struct host_cmd_ds_remain_on_chan { 2091 __le16 action; 2092 u8 status; 2093 u8 reserved; 2094 u8 band_cfg; 2095 u8 channel; 2096 __le32 duration; 2097 } __packed; 2098 2099 struct host_cmd_ds_802_11_ibss_status { 2100 __le16 action; 2101 __le16 enable; 2102 u8 bssid[ETH_ALEN]; 2103 __le16 beacon_interval; 2104 __le16 atim_window; 2105 __le16 use_g_rate_protect; 2106 } __packed; 2107 2108 struct mwifiex_fw_mef_entry { 2109 u8 mode; 2110 u8 action; 2111 __le16 exprsize; 2112 u8 expr[]; 2113 } __packed; 2114 2115 struct host_cmd_ds_mef_cfg { 2116 __le32 criteria; 2117 __le16 num_entries; 2118 struct mwifiex_fw_mef_entry mef_entry[]; 2119 } __packed; 2120 2121 #define CONNECTION_TYPE_INFRA 0 2122 #define CONNECTION_TYPE_ADHOC 1 2123 #define CONNECTION_TYPE_AP 2 2124 2125 struct host_cmd_ds_set_bss_mode { 2126 u8 con_type; 2127 } __packed; 2128 2129 struct host_cmd_ds_pcie_details { 2130 /* TX buffer descriptor ring address */ 2131 __le32 txbd_addr_lo; 2132 __le32 txbd_addr_hi; 2133 /* TX buffer descriptor ring count */ 2134 __le32 txbd_count; 2135 2136 /* RX buffer descriptor ring address */ 2137 __le32 rxbd_addr_lo; 2138 __le32 rxbd_addr_hi; 2139 /* RX buffer descriptor ring count */ 2140 __le32 rxbd_count; 2141 2142 /* Event buffer descriptor ring address */ 2143 __le32 evtbd_addr_lo; 2144 __le32 evtbd_addr_hi; 2145 /* Event buffer descriptor ring count */ 2146 __le32 evtbd_count; 2147 2148 /* Sleep cookie buffer physical address */ 2149 __le32 sleep_cookie_addr_lo; 2150 __le32 sleep_cookie_addr_hi; 2151 } __packed; 2152 2153 struct mwifiex_ie_types_rssi_threshold { 2154 struct mwifiex_ie_types_header header; 2155 u8 abs_value; 2156 u8 evt_freq; 2157 } __packed; 2158 2159 #define MWIFIEX_DFS_REC_HDR_LEN 8 2160 #define MWIFIEX_DFS_REC_HDR_NUM 10 2161 #define MWIFIEX_BIN_COUNTER_LEN 7 2162 2163 struct mwifiex_radar_det_event { 2164 __le32 detect_count; 2165 u8 reg_domain; /*1=fcc, 2=etsi, 3=mic*/ 2166 u8 det_type; /*0=none, 1=pw(chirp), 2=pri(radar)*/ 2167 __le16 pw_chirp_type; 2168 u8 pw_chirp_idx; 2169 u8 pw_value; 2170 u8 pri_radar_type; 2171 u8 pri_bincnt; 2172 u8 bin_counter[MWIFIEX_BIN_COUNTER_LEN]; 2173 u8 num_dfs_records; 2174 u8 dfs_record_hdr[MWIFIEX_DFS_REC_HDR_NUM][MWIFIEX_DFS_REC_HDR_LEN]; 2175 __le32 passed; 2176 } __packed; 2177 2178 struct mwifiex_ie_types_multi_chan_info { 2179 struct mwifiex_ie_types_header header; 2180 __le16 status; 2181 u8 tlv_buffer[]; 2182 } __packed; 2183 2184 struct mwifiex_ie_types_mc_group_info { 2185 struct mwifiex_ie_types_header header; 2186 u8 chan_group_id; 2187 u8 chan_buf_weight; 2188 u8 band_config; 2189 u8 chan_num; 2190 __le32 chan_time; 2191 __le32 reserved; 2192 union { 2193 u8 sdio_func_num; 2194 u8 usb_ep_num; 2195 } hid_num; 2196 u8 intf_num; 2197 u8 bss_type_numlist[]; 2198 } __packed; 2199 2200 struct meas_rpt_map { 2201 u8 rssi:3; 2202 u8 unmeasured:1; 2203 u8 radar:1; 2204 u8 unidentified_sig:1; 2205 u8 ofdm_preamble:1; 2206 u8 bss:1; 2207 } __packed; 2208 2209 struct mwifiex_ie_types_chan_rpt_data { 2210 struct mwifiex_ie_types_header header; 2211 struct meas_rpt_map map; 2212 } __packed; 2213 2214 struct host_cmd_ds_802_11_subsc_evt { 2215 __le16 action; 2216 __le16 events; 2217 } __packed; 2218 2219 struct chan_switch_result { 2220 u8 cur_chan; 2221 u8 status; 2222 u8 reason; 2223 } __packed; 2224 2225 struct mwifiex_tdls_generic_event { 2226 __le16 type; 2227 u8 peer_mac[ETH_ALEN]; 2228 union { 2229 struct chan_switch_result switch_result; 2230 u8 cs_stop_reason; 2231 __le16 reason_code; 2232 __le16 reserved; 2233 } u; 2234 } __packed; 2235 2236 struct mwifiex_ie { 2237 __le16 ie_index; 2238 __le16 mgmt_subtype_mask; 2239 __le16 ie_length; 2240 u8 ie_buffer[IEEE_MAX_IE_SIZE]; 2241 } __packed; 2242 2243 #define MAX_MGMT_IE_INDEX 16 2244 struct mwifiex_ie_list { 2245 __le16 type; 2246 __le16 len; 2247 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX]; 2248 } __packed; 2249 2250 struct coalesce_filt_field_param { 2251 u8 operation; 2252 u8 operand_len; 2253 __le16 offset; 2254 u8 operand_byte_stream[4]; 2255 }; 2256 2257 struct coalesce_receive_filt_rule { 2258 struct mwifiex_ie_types_header header; 2259 u8 num_of_fields; 2260 u8 pkt_type; 2261 __le16 max_coalescing_delay; 2262 struct coalesce_filt_field_param params[]; 2263 } __packed; 2264 2265 struct host_cmd_ds_coalesce_cfg { 2266 __le16 action; 2267 __le16 num_of_rules; 2268 struct coalesce_receive_filt_rule rule[]; 2269 } __packed; 2270 2271 struct host_cmd_ds_multi_chan_policy { 2272 __le16 action; 2273 __le16 policy; 2274 } __packed; 2275 2276 struct host_cmd_ds_robust_coex { 2277 __le16 action; 2278 __le16 reserved; 2279 } __packed; 2280 2281 struct host_cmd_ds_wakeup_reason { 2282 __le16 wakeup_reason; 2283 } __packed; 2284 2285 struct host_cmd_ds_gtk_rekey_params { 2286 __le16 action; 2287 u8 kck[NL80211_KCK_LEN]; 2288 u8 kek[NL80211_KEK_LEN]; 2289 __le32 replay_ctr_low; 2290 __le32 replay_ctr_high; 2291 } __packed; 2292 2293 struct host_cmd_ds_chan_region_cfg { 2294 __le16 action; 2295 } __packed; 2296 2297 struct host_cmd_ds_pkt_aggr_ctrl { 2298 __le16 action; 2299 __le16 enable; 2300 __le16 tx_aggr_max_size; 2301 __le16 tx_aggr_max_num; 2302 __le16 tx_aggr_align; 2303 } __packed; 2304 2305 struct host_cmd_ds_sta_configure { 2306 __le16 action; 2307 u8 tlv_buffer[]; 2308 } __packed; 2309 2310 struct host_cmd_ds_command { 2311 __le16 command; 2312 __le16 size; 2313 __le16 seq_num; 2314 __le16 result; 2315 union { 2316 struct host_cmd_ds_get_hw_spec hw_spec; 2317 struct host_cmd_ds_mac_control mac_ctrl; 2318 struct host_cmd_ds_802_11_mac_address mac_addr; 2319 struct host_cmd_ds_mac_multicast_adr mc_addr; 2320 struct host_cmd_ds_802_11_get_log get_log; 2321 struct host_cmd_ds_802_11_rssi_info rssi_info; 2322 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp; 2323 struct host_cmd_ds_802_11_snmp_mib smib; 2324 struct host_cmd_ds_tx_rate_query tx_rate; 2325 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg; 2326 struct host_cmd_ds_txpwr_cfg txp_cfg; 2327 struct host_cmd_ds_rf_tx_pwr txp; 2328 struct host_cmd_ds_rf_ant_mimo ant_mimo; 2329 struct host_cmd_ds_rf_ant_siso ant_siso; 2330 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh; 2331 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg; 2332 struct host_cmd_ds_802_11_scan scan; 2333 struct host_cmd_ds_802_11_scan_ext ext_scan; 2334 struct host_cmd_ds_802_11_scan_rsp scan_resp; 2335 struct host_cmd_ds_802_11_bg_scan_config bg_scan_config; 2336 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query; 2337 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp; 2338 struct host_cmd_ds_802_11_associate associate; 2339 struct host_cmd_ds_802_11_associate_rsp associate_rsp; 2340 struct host_cmd_ds_802_11_deauthenticate deauth; 2341 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start; 2342 struct host_cmd_ds_802_11_ad_hoc_start_result start_result; 2343 struct host_cmd_ds_802_11_ad_hoc_join_result join_result; 2344 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join; 2345 struct host_cmd_ds_802_11d_domain_info domain_info; 2346 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp; 2347 struct host_cmd_ds_11n_addba_req add_ba_req; 2348 struct host_cmd_ds_11n_addba_rsp add_ba_rsp; 2349 struct host_cmd_ds_11n_delba del_ba; 2350 struct host_cmd_ds_txbuf_cfg tx_buf; 2351 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl; 2352 struct host_cmd_ds_11n_cfg htcfg; 2353 struct host_cmd_ds_wmm_get_status get_wmm_status; 2354 struct host_cmd_ds_802_11_key_material key_material; 2355 struct host_cmd_ds_802_11_key_material_v2 key_material_v2; 2356 struct host_cmd_ds_802_11_key_material_wep key_material_wep; 2357 struct host_cmd_ds_version_ext verext; 2358 struct host_cmd_ds_mgmt_frame_reg reg_mask; 2359 struct host_cmd_ds_remain_on_chan roc_cfg; 2360 struct host_cmd_ds_p2p_mode_cfg mode_cfg; 2361 struct host_cmd_ds_802_11_ibss_status ibss_coalescing; 2362 struct host_cmd_ds_mef_cfg mef_cfg; 2363 struct host_cmd_ds_mem_access mem; 2364 struct host_cmd_ds_mac_reg_access mac_reg; 2365 struct host_cmd_ds_bbp_reg_access bbp_reg; 2366 struct host_cmd_ds_rf_reg_access rf_reg; 2367 struct host_cmd_ds_pmic_reg_access pmic_reg; 2368 struct host_cmd_ds_set_bss_mode bss_mode; 2369 struct host_cmd_ds_pcie_details pcie_host_spec; 2370 struct host_cmd_ds_802_11_eeprom_access eeprom; 2371 struct host_cmd_ds_802_11_subsc_evt subsc_evt; 2372 struct host_cmd_ds_sys_config uap_sys_config; 2373 struct host_cmd_ds_sta_deauth sta_deauth; 2374 struct host_cmd_ds_sta_list sta_list; 2375 struct host_cmd_11ac_vht_cfg vht_cfg; 2376 struct host_cmd_ds_coalesce_cfg coalesce_cfg; 2377 struct host_cmd_ds_tdls_config tdls_config; 2378 struct host_cmd_ds_tdls_oper tdls_oper; 2379 struct host_cmd_ds_chan_rpt_req chan_rpt_req; 2380 struct host_cmd_sdio_sp_rx_aggr_cfg sdio_rx_aggr_cfg; 2381 struct host_cmd_ds_multi_chan_policy mc_policy; 2382 struct host_cmd_ds_robust_coex coex; 2383 struct host_cmd_ds_wakeup_reason hs_wakeup_reason; 2384 struct host_cmd_ds_gtk_rekey_params rekey; 2385 struct host_cmd_ds_chan_region_cfg reg_cfg; 2386 struct host_cmd_ds_pkt_aggr_ctrl pkt_aggr_ctrl; 2387 struct host_cmd_ds_sta_configure sta_cfg; 2388 } params; 2389 } __packed; 2390 2391 struct mwifiex_opt_sleep_confirm { 2392 __le16 command; 2393 __le16 size; 2394 __le16 seq_num; 2395 __le16 result; 2396 __le16 action; 2397 __le16 resp_ctrl; 2398 } __packed; 2399 2400 struct hw_spec_max_conn { 2401 struct mwifiex_ie_types_header header; 2402 u8 max_p2p_conn; 2403 u8 max_sta_conn; 2404 } __packed; 2405 2406 #endif /* !_MWIFIEX_FW_H_ */ 2407