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