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