Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * NXP Wireless LAN device driver: Firmware specific macros & structures
0004  *
0005  * Copyright 2011-2020 NXP
0006  */
0007 
0008 #ifndef _MWIFIEX_FW_H_
0009 #define _MWIFIEX_FW_H_
0010 
0011 #include <linux/if_ether.h>
0012 
0013 
0014 #define INTF_HEADER_LEN     4
0015 
0016 struct rfc_1042_hdr {
0017     u8 llc_dsap;
0018     u8 llc_ssap;
0019     u8 llc_ctrl;
0020     u8 snap_oui[3];
0021     __be16 snap_type;
0022 } __packed;
0023 
0024 struct rx_packet_hdr {
0025     struct ethhdr eth803_hdr;
0026     struct rfc_1042_hdr rfc1042_hdr;
0027 } __packed;
0028 
0029 struct tx_packet_hdr {
0030     struct ethhdr eth803_hdr;
0031     struct rfc_1042_hdr rfc1042_hdr;
0032 } __packed;
0033 
0034 struct mwifiex_fw_header {
0035     __le32 dnld_cmd;
0036     __le32 base_addr;
0037     __le32 data_length;
0038     __le32 crc;
0039 } __packed;
0040 
0041 struct mwifiex_fw_data {
0042     struct mwifiex_fw_header header;
0043     __le32 seq_num;
0044     u8 data[1];
0045 } __packed;
0046 
0047 struct mwifiex_fw_dump_header {
0048     __le16          seq_num;
0049     __le16          reserved;
0050     __le16          type;
0051     __le16          len;
0052 } __packed;
0053 
0054 #define FW_DUMP_INFO_ENDED 0x0002
0055 
0056 #define MWIFIEX_FW_DNLD_CMD_1 0x1
0057 #define MWIFIEX_FW_DNLD_CMD_5 0x5
0058 #define MWIFIEX_FW_DNLD_CMD_6 0x6
0059 #define MWIFIEX_FW_DNLD_CMD_7 0x7
0060 
0061 #define B_SUPPORTED_RATES               5
0062 #define G_SUPPORTED_RATES               9
0063 #define BG_SUPPORTED_RATES              13
0064 #define A_SUPPORTED_RATES               9
0065 #define HOSTCMD_SUPPORTED_RATES         14
0066 #define N_SUPPORTED_RATES               3
0067 #define ALL_802_11_BANDS           (BAND_A | BAND_B | BAND_G | BAND_GN | \
0068                     BAND_AN | BAND_AAC)
0069 
0070 #define FW_MULTI_BANDS_SUPPORT  (BIT(8) | BIT(9) | BIT(10) | BIT(11) | \
0071                  BIT(13))
0072 #define IS_SUPPORT_MULTI_BANDS(adapter)        \
0073     (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
0074 
0075 /* bit 13: 11ac BAND_AAC
0076  * bit 12: reserved for lab testing, will be reused for BAND_AN
0077  * bit 11: 11n  BAND_GN
0078  * bit 10: 11a  BAND_A
0079  * bit 9: 11g   BAND_G
0080  * bit 8: 11b   BAND_B
0081  * Map these bits to band capability by right shifting 8 bits.
0082  */
0083 #define GET_FW_DEFAULT_BANDS(adapter)  \
0084         (((adapter->fw_cap_info & 0x2f00) >> 8) & \
0085          ALL_802_11_BANDS)
0086 
0087 #define HostCmd_WEP_KEY_INDEX_MASK              0x3fff
0088 
0089 #define KEY_INFO_ENABLED        0x01
0090 enum KEY_TYPE_ID {
0091     KEY_TYPE_ID_WEP = 0,
0092     KEY_TYPE_ID_TKIP,
0093     KEY_TYPE_ID_AES,
0094     KEY_TYPE_ID_WAPI,
0095     KEY_TYPE_ID_AES_CMAC,
0096     KEY_TYPE_ID_AES_CMAC_DEF,
0097 };
0098 
0099 #define WPA_PN_SIZE     8
0100 #define KEY_PARAMS_FIXED_LEN    10
0101 #define KEY_INDEX_MASK      0xf
0102 #define KEY_API_VER_MAJOR_V2    2
0103 
0104 #define KEY_MCAST   BIT(0)
0105 #define KEY_UNICAST BIT(1)
0106 #define KEY_ENABLED BIT(2)
0107 #define KEY_DEFAULT BIT(3)
0108 #define KEY_TX_KEY  BIT(4)
0109 #define KEY_RX_KEY  BIT(5)
0110 #define KEY_IGTK    BIT(10)
0111 
0112 #define WAPI_KEY_LEN            (WLAN_KEY_LEN_SMS4 + PN_LEN + 2)
0113 
0114 #define MAX_POLL_TRIES          100
0115 #define MAX_FIRMWARE_POLL_TRIES         150
0116 
0117 #define FIRMWARE_READY_SDIO             0xfedc
0118 #define FIRMWARE_READY_PCIE             0xfedcba00
0119 
0120 #define MWIFIEX_COEX_MODE_TIMESHARE         0x01
0121 #define MWIFIEX_COEX_MODE_SPATIAL           0x82
0122 
0123 enum mwifiex_usb_ep {
0124     MWIFIEX_USB_EP_CMD_EVENT = 1,
0125     MWIFIEX_USB_EP_DATA = 2,
0126     MWIFIEX_USB_EP_DATA_CH2 = 3,
0127 };
0128 
0129 enum MWIFIEX_802_11_PRIVACY_FILTER {
0130     MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
0131     MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
0132 };
0133 
0134 #define CAL_SNR(RSSI, NF)       ((s16)((s16)(RSSI)-(s16)(NF)))
0135 #define CAL_RSSI(SNR, NF)       ((s16)((s16)(SNR)+(s16)(NF)))
0136 
0137 #define UAP_BSS_PARAMS_I            0
0138 #define UAP_CUSTOM_IE_I             1
0139 #define MWIFIEX_AUTO_IDX_MASK           0xffff
0140 #define MWIFIEX_DELETE_MASK         0x0000
0141 #define MGMT_MASK_ASSOC_REQ         0x01
0142 #define MGMT_MASK_REASSOC_REQ           0x04
0143 #define MGMT_MASK_ASSOC_RESP            0x02
0144 #define MGMT_MASK_REASSOC_RESP          0x08
0145 #define MGMT_MASK_PROBE_REQ         0x10
0146 #define MGMT_MASK_PROBE_RESP            0x20
0147 #define MGMT_MASK_BEACON            0x100
0148 
0149 #define TLV_TYPE_UAP_SSID           0x0000
0150 #define TLV_TYPE_UAP_RATES          0x0001
0151 #define TLV_TYPE_PWR_CONSTRAINT         0x0020
0152 
0153 #define PROPRIETARY_TLV_BASE_ID                 0x0100
0154 #define TLV_TYPE_KEY_MATERIAL       (PROPRIETARY_TLV_BASE_ID + 0)
0155 #define TLV_TYPE_CHANLIST           (PROPRIETARY_TLV_BASE_ID + 1)
0156 #define TLV_TYPE_NUMPROBES          (PROPRIETARY_TLV_BASE_ID + 2)
0157 #define TLV_TYPE_RSSI_LOW           (PROPRIETARY_TLV_BASE_ID + 4)
0158 #define TLV_TYPE_PASSTHROUGH        (PROPRIETARY_TLV_BASE_ID + 10)
0159 #define TLV_TYPE_WMMQSTATUS         (PROPRIETARY_TLV_BASE_ID + 16)
0160 #define TLV_TYPE_WILDCARDSSID       (PROPRIETARY_TLV_BASE_ID + 18)
0161 #define TLV_TYPE_TSFTIMESTAMP       (PROPRIETARY_TLV_BASE_ID + 19)
0162 #define TLV_TYPE_RSSI_HIGH          (PROPRIETARY_TLV_BASE_ID + 22)
0163 #define TLV_TYPE_BGSCAN_START_LATER (PROPRIETARY_TLV_BASE_ID + 30)
0164 #define TLV_TYPE_AUTH_TYPE          (PROPRIETARY_TLV_BASE_ID + 31)
0165 #define TLV_TYPE_STA_MAC_ADDR       (PROPRIETARY_TLV_BASE_ID + 32)
0166 #define TLV_TYPE_BSSID              (PROPRIETARY_TLV_BASE_ID + 35)
0167 #define TLV_TYPE_CHANNELBANDLIST    (PROPRIETARY_TLV_BASE_ID + 42)
0168 #define TLV_TYPE_UAP_BEACON_PERIOD  (PROPRIETARY_TLV_BASE_ID + 44)
0169 #define TLV_TYPE_UAP_DTIM_PERIOD    (PROPRIETARY_TLV_BASE_ID + 45)
0170 #define TLV_TYPE_UAP_BCAST_SSID     (PROPRIETARY_TLV_BASE_ID + 48)
0171 #define TLV_TYPE_UAP_RTS_THRESHOLD  (PROPRIETARY_TLV_BASE_ID + 51)
0172 #define TLV_TYPE_UAP_AO_TIMER       (PROPRIETARY_TLV_BASE_ID + 57)
0173 #define TLV_TYPE_UAP_WEP_KEY        (PROPRIETARY_TLV_BASE_ID + 59)
0174 #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
0175 #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
0176 #define TLV_TYPE_UAP_AKMP           (PROPRIETARY_TLV_BASE_ID + 65)
0177 #define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
0178 #define TLV_TYPE_RATE_DROP_CONTROL  (PROPRIETARY_TLV_BASE_ID + 82)
0179 #define TLV_TYPE_RATE_SCOPE         (PROPRIETARY_TLV_BASE_ID + 83)
0180 #define TLV_TYPE_POWER_GROUP        (PROPRIETARY_TLV_BASE_ID + 84)
0181 #define TLV_TYPE_BSS_SCAN_RSP       (PROPRIETARY_TLV_BASE_ID + 86)
0182 #define TLV_TYPE_BSS_SCAN_INFO      (PROPRIETARY_TLV_BASE_ID + 87)
0183 #define TLV_TYPE_CHANRPT_11H_BASIC  (PROPRIETARY_TLV_BASE_ID + 91)
0184 #define TLV_TYPE_UAP_RETRY_LIMIT    (PROPRIETARY_TLV_BASE_ID + 93)
0185 #define TLV_TYPE_WAPI_IE            (PROPRIETARY_TLV_BASE_ID + 94)
0186 #define TLV_TYPE_ROBUST_COEX        (PROPRIETARY_TLV_BASE_ID + 96)
0187 #define TLV_TYPE_UAP_MGMT_FRAME     (PROPRIETARY_TLV_BASE_ID + 104)
0188 #define TLV_TYPE_MGMT_IE            (PROPRIETARY_TLV_BASE_ID + 105)
0189 #define TLV_TYPE_AUTO_DS_PARAM      (PROPRIETARY_TLV_BASE_ID + 113)
0190 #define TLV_TYPE_PS_PARAM           (PROPRIETARY_TLV_BASE_ID + 114)
0191 #define TLV_TYPE_UAP_PS_AO_TIMER    (PROPRIETARY_TLV_BASE_ID + 123)
0192 #define TLV_TYPE_PWK_CIPHER         (PROPRIETARY_TLV_BASE_ID + 145)
0193 #define TLV_TYPE_GWK_CIPHER         (PROPRIETARY_TLV_BASE_ID + 146)
0194 #define TLV_TYPE_TX_PAUSE           (PROPRIETARY_TLV_BASE_ID + 148)
0195 #define TLV_TYPE_RXBA_SYNC          (PROPRIETARY_TLV_BASE_ID + 153)
0196 #define TLV_TYPE_COALESCE_RULE      (PROPRIETARY_TLV_BASE_ID + 154)
0197 #define TLV_TYPE_KEY_PARAM_V2       (PROPRIETARY_TLV_BASE_ID + 156)
0198 #define TLV_TYPE_REPEAT_COUNT       (PROPRIETARY_TLV_BASE_ID + 176)
0199 #define TLV_TYPE_PS_PARAMS_IN_HS    (PROPRIETARY_TLV_BASE_ID + 181)
0200 #define TLV_TYPE_MULTI_CHAN_INFO    (PROPRIETARY_TLV_BASE_ID + 183)
0201 #define TLV_TYPE_MC_GROUP_INFO      (PROPRIETARY_TLV_BASE_ID + 184)
0202 #define TLV_TYPE_TDLS_IDLE_TIMEOUT  (PROPRIETARY_TLV_BASE_ID + 194)
0203 #define TLV_TYPE_SCAN_CHANNEL_GAP   (PROPRIETARY_TLV_BASE_ID + 197)
0204 #define TLV_TYPE_API_REV            (PROPRIETARY_TLV_BASE_ID + 199)
0205 #define TLV_TYPE_CHANNEL_STATS      (PROPRIETARY_TLV_BASE_ID + 198)
0206 #define TLV_BTCOEX_WL_AGGR_WINSIZE  (PROPRIETARY_TLV_BASE_ID + 202)
0207 #define TLV_BTCOEX_WL_SCANTIME      (PROPRIETARY_TLV_BASE_ID + 203)
0208 #define TLV_TYPE_BSS_MODE           (PROPRIETARY_TLV_BASE_ID + 206)
0209 #define TLV_TYPE_RANDOM_MAC         (PROPRIETARY_TLV_BASE_ID + 236)
0210 #define TLV_TYPE_CHAN_ATTR_CFG      (PROPRIETARY_TLV_BASE_ID + 237)
0211 #define TLV_TYPE_MAX_CONN           (PROPRIETARY_TLV_BASE_ID + 279)
0212 
0213 #define MWIFIEX_TX_DATA_BUF_SIZE_2K        2048
0214 
0215 #define SSN_MASK         0xfff0
0216 
0217 #define BA_RESULT_SUCCESS        0x0
0218 #define BA_RESULT_TIMEOUT        0x2
0219 
0220 #define IS_BASTREAM_SETUP(ptr)  (ptr->ba_status)
0221 
0222 #define BA_STREAM_NOT_ALLOWED   0xff
0223 
0224 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
0225             priv->adapter->config_bands & BAND_AN) && \
0226             priv->curr_bss_params.bss_descriptor.bcn_ht_cap && \
0227             !priv->curr_bss_params.bss_descriptor.disable_11n)
0228 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
0229             BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
0230 
0231 #define MWIFIEX_TX_DATA_BUF_SIZE_4K        4096
0232 #define MWIFIEX_TX_DATA_BUF_SIZE_8K        8192
0233 #define MWIFIEX_TX_DATA_BUF_SIZE_12K       12288
0234 
0235 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
0236 #define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14))
0237 #define ISSUPP_DRCS_ENABLED(FwCapInfo) (FwCapInfo & BIT(15))
0238 #define ISSUPP_SDIO_SPA_ENABLED(FwCapInfo) (FwCapInfo & BIT(16))
0239 #define ISSUPP_ADHOC_ENABLED(FwCapInfo) (FwCapInfo & BIT(25))
0240 #define ISSUPP_RANDOM_MAC(FwCapInfo) (FwCapInfo & BIT(27))
0241 #define ISSUPP_FIRMWARE_SUPPLICANT(FwCapInfo) (FwCapInfo & BIT(21))
0242 
0243 #define MWIFIEX_DEF_HT_CAP  (IEEE80211_HT_CAP_DSSSCCK40 | \
0244                  (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
0245                  IEEE80211_HT_CAP_SM_PS)
0246 
0247 #define MWIFIEX_DEF_11N_TX_BF_CAP   0x09E1E008
0248 
0249 #define MWIFIEX_DEF_AMPDU   IEEE80211_HT_AMPDU_PARM_FACTOR
0250 
0251 /* dev_cap bitmap
0252  * BIT
0253  * 0-16     reserved
0254  * 17       IEEE80211_HT_CAP_SUP_WIDTH_20_40
0255  * 18-22    reserved
0256  * 23       IEEE80211_HT_CAP_SGI_20
0257  * 24       IEEE80211_HT_CAP_SGI_40
0258  * 25       IEEE80211_HT_CAP_TX_STBC
0259  * 26       IEEE80211_HT_CAP_RX_STBC
0260  * 27-28    reserved
0261  * 29       IEEE80211_HT_CAP_GRN_FLD
0262  * 30-31    reserved
0263  */
0264 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
0265 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
0266 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
0267 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
0268 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
0269 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
0270 #define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
0271 #define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
0272 #define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30))
0273 #define ISALLOWED_CHANWIDTH40(ht_param) (ht_param & BIT(2))
0274 #define GETSUPP_TXBASTREAMS(Dot11nDevCap) ((Dot11nDevCap >> 18) & 0xF)
0275 
0276 /* httxcfg bitmap
0277  * 0        reserved
0278  * 1        20/40 Mhz enable(1)/disable(0)
0279  * 2-3      reserved
0280  * 4        green field enable(1)/disable(0)
0281  * 5        short GI in 20 Mhz enable(1)/disable(0)
0282  * 6        short GI in 40 Mhz enable(1)/disable(0)
0283  * 7-15     reserved
0284  */
0285 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
0286 
0287 /* 11AC Tx and Rx MCS map for 1x1 mode:
0288  * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1
0289  * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams
0290  */
0291 #define MWIFIEX_11AC_MCS_MAP_1X1    0xfffefffe
0292 
0293 /* 11AC Tx and Rx MCS map for 2x2 mode:
0294  * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2
0295  * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams
0296  */
0297 #define MWIFIEX_11AC_MCS_MAP_2X2    0xfffafffa
0298 
0299 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
0300 #define SETHT_MCS32(x) (x[4] |= 1)
0301 #define HT_STREAM_1X1   0x11
0302 #define HT_STREAM_2X2   0x22
0303 
0304 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
0305 
0306 #define LLC_SNAP_LEN    8
0307 
0308 /* HW_SPEC fw_cap_info */
0309 
0310 #define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13))
0311 
0312 #define GET_VHTCAP_CHWDSET(vht_cap_info)    ((vht_cap_info >> 2) & 0x3)
0313 #define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3)
0314 #define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \
0315                           (2 * (nss - 1)))
0316 #define GET_DEVTXMCSMAP(dev_mcs_map)      (dev_mcs_map >> 16)
0317 #define GET_DEVRXMCSMAP(dev_mcs_map)      (dev_mcs_map & 0xFFFF)
0318 
0319 /* Clear SU Beanformer, MU beanformer, MU beanformee and
0320  * sounding dimensions bits
0321  */
0322 #define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \
0323             (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \
0324              IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \
0325              IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \
0326              IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
0327 
0328 #define MOD_CLASS_HR_DSSS       0x03
0329 #define MOD_CLASS_OFDM          0x07
0330 #define MOD_CLASS_HT            0x08
0331 #define HT_BW_20    0
0332 #define HT_BW_40    1
0333 
0334 #define DFS_CHAN_MOVE_TIME      10000
0335 
0336 #define HostCmd_CMD_GET_HW_SPEC                       0x0003
0337 #define HostCmd_CMD_802_11_SCAN                       0x0006
0338 #define HostCmd_CMD_802_11_GET_LOG                    0x000b
0339 #define HostCmd_CMD_MAC_MULTICAST_ADR                 0x0010
0340 #define HostCmd_CMD_802_11_EEPROM_ACCESS              0x0059
0341 #define HostCmd_CMD_802_11_ASSOCIATE                  0x0012
0342 #define HostCmd_CMD_802_11_SNMP_MIB                   0x0016
0343 #define HostCmd_CMD_MAC_REG_ACCESS                    0x0019
0344 #define HostCmd_CMD_BBP_REG_ACCESS                    0x001a
0345 #define HostCmd_CMD_RF_REG_ACCESS                     0x001b
0346 #define HostCmd_CMD_PMIC_REG_ACCESS                   0x00ad
0347 #define HostCmd_CMD_RF_TX_PWR                         0x001e
0348 #define HostCmd_CMD_RF_ANTENNA                        0x0020
0349 #define HostCmd_CMD_802_11_DEAUTHENTICATE             0x0024
0350 #define HostCmd_CMD_MAC_CONTROL                       0x0028
0351 #define HostCmd_CMD_802_11_AD_HOC_START               0x002b
0352 #define HostCmd_CMD_802_11_AD_HOC_JOIN                0x002c
0353 #define HostCmd_CMD_802_11_AD_HOC_STOP                0x0040
0354 #define HostCmd_CMD_802_11_MAC_ADDRESS                0x004D
0355 #define HostCmd_CMD_802_11D_DOMAIN_INFO               0x005b
0356 #define HostCmd_CMD_802_11_KEY_MATERIAL               0x005e
0357 #define HostCmd_CMD_802_11_BG_SCAN_CONFIG             0x006b
0358 #define HostCmd_CMD_802_11_BG_SCAN_QUERY              0x006c
0359 #define HostCmd_CMD_WMM_GET_STATUS                    0x0071
0360 #define HostCmd_CMD_802_11_SUBSCRIBE_EVENT            0x0075
0361 #define HostCmd_CMD_802_11_TX_RATE_QUERY              0x007f
0362 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS     0x0083
0363 #define HostCmd_CMD_MEM_ACCESS                        0x0086
0364 #define HostCmd_CMD_CFG_DATA                          0x008f
0365 #define HostCmd_CMD_VERSION_EXT                       0x0097
0366 #define HostCmd_CMD_MEF_CFG                           0x009a
0367 #define HostCmd_CMD_RSSI_INFO                         0x00a4
0368 #define HostCmd_CMD_FUNC_INIT                         0x00a9
0369 #define HostCmd_CMD_FUNC_SHUTDOWN                     0x00aa
0370 #define HOST_CMD_APCMD_SYS_RESET                      0x00af
0371 #define HostCmd_CMD_UAP_SYS_CONFIG                    0x00b0
0372 #define HostCmd_CMD_UAP_BSS_START                     0x00b1
0373 #define HostCmd_CMD_UAP_BSS_STOP                      0x00b2
0374 #define HOST_CMD_APCMD_STA_LIST                       0x00b3
0375 #define HostCmd_CMD_UAP_STA_DEAUTH                    0x00b5
0376 #define HostCmd_CMD_11N_CFG                           0x00cd
0377 #define HostCmd_CMD_11N_ADDBA_REQ                     0x00ce
0378 #define HostCmd_CMD_11N_ADDBA_RSP                     0x00cf
0379 #define HostCmd_CMD_11N_DELBA                         0x00d0
0380 #define HostCmd_CMD_RECONFIGURE_TX_BUFF               0x00d9
0381 #define HostCmd_CMD_CHAN_REPORT_REQUEST               0x00dd
0382 #define HostCmd_CMD_AMSDU_AGGR_CTRL                   0x00df
0383 #define HostCmd_CMD_TXPWR_CFG                         0x00d1
0384 #define HostCmd_CMD_TX_RATE_CFG                       0x00d6
0385 #define HostCmd_CMD_ROBUST_COEX                       0x00e0
0386 #define HostCmd_CMD_802_11_PS_MODE_ENH                0x00e4
0387 #define HostCmd_CMD_802_11_HS_CFG_ENH                 0x00e5
0388 #define HostCmd_CMD_P2P_MODE_CFG                      0x00eb
0389 #define HostCmd_CMD_CAU_REG_ACCESS                    0x00ed
0390 #define HostCmd_CMD_SET_BSS_MODE                      0x00f7
0391 #define HostCmd_CMD_PCIE_DESC_DETAILS                 0x00fa
0392 #define HostCmd_CMD_802_11_SCAN_EXT                   0x0107
0393 #define HostCmd_CMD_COALESCE_CFG                      0x010a
0394 #define HostCmd_CMD_MGMT_FRAME_REG                    0x010c
0395 #define HostCmd_CMD_REMAIN_ON_CHAN                    0x010d
0396 #define HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG             0x010f
0397 #define HostCmd_CMD_11AC_CFG                  0x0112
0398 #define HostCmd_CMD_HS_WAKEUP_REASON                  0x0116
0399 #define HostCmd_CMD_TDLS_CONFIG                       0x0100
0400 #define HostCmd_CMD_MC_POLICY                         0x0121
0401 #define HostCmd_CMD_TDLS_OPER                         0x0122
0402 #define HostCmd_CMD_FW_DUMP_EVENT             0x0125
0403 #define HostCmd_CMD_SDIO_SP_RX_AGGR_CFG               0x0223
0404 #define HostCmd_CMD_STA_CONFIGURE             0x023f
0405 #define HostCmd_CMD_CHAN_REGION_CFG           0x0242
0406 #define HostCmd_CMD_PACKET_AGGR_CTRL              0x0251
0407 
0408 #define PROTOCOL_NO_SECURITY        0x01
0409 #define PROTOCOL_STATIC_WEP         0x02
0410 #define PROTOCOL_WPA                0x08
0411 #define PROTOCOL_WPA2               0x20
0412 #define PROTOCOL_WPA2_MIXED         0x28
0413 #define PROTOCOL_EAP                0x40
0414 #define KEY_MGMT_NONE               0x04
0415 #define KEY_MGMT_PSK                0x02
0416 #define KEY_MGMT_EAP                0x01
0417 #define CIPHER_TKIP                 0x04
0418 #define CIPHER_AES_CCMP             0x08
0419 #define VALID_CIPHER_BITMAP         0x0c
0420 
0421 enum ENH_PS_MODES {
0422     EN_PS = 1,
0423     DIS_PS = 2,
0424     EN_AUTO_DS = 3,
0425     DIS_AUTO_DS = 4,
0426     SLEEP_CONFIRM = 5,
0427     GET_PS = 0,
0428     EN_AUTO_PS = 0xff,
0429     DIS_AUTO_PS = 0xfe,
0430 };
0431 
0432 enum P2P_MODES {
0433     P2P_MODE_DISABLE = 0,
0434     P2P_MODE_DEVICE = 1,
0435     P2P_MODE_GO = 2,
0436     P2P_MODE_CLIENT = 3,
0437 };
0438 
0439 enum mwifiex_channel_flags {
0440     MWIFIEX_CHANNEL_PASSIVE = BIT(0),
0441     MWIFIEX_CHANNEL_DFS = BIT(1),
0442     MWIFIEX_CHANNEL_NOHT40 = BIT(2),
0443     MWIFIEX_CHANNEL_NOHT80 = BIT(3),
0444     MWIFIEX_CHANNEL_DISABLED = BIT(7),
0445 };
0446 
0447 #define HostCmd_RET_BIT                       0x8000
0448 #define HostCmd_ACT_GEN_GET                   0x0000
0449 #define HostCmd_ACT_GEN_SET                   0x0001
0450 #define HostCmd_ACT_GEN_REMOVE                0x0004
0451 #define HostCmd_ACT_BITWISE_SET               0x0002
0452 #define HostCmd_ACT_BITWISE_CLR               0x0003
0453 #define HostCmd_RESULT_OK                     0x0000
0454 #define HostCmd_ACT_MAC_RX_ON                 BIT(0)
0455 #define HostCmd_ACT_MAC_TX_ON                 BIT(1)
0456 #define HostCmd_ACT_MAC_WEP_ENABLE            BIT(3)
0457 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE     BIT(4)
0458 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE    BIT(7)
0459 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE  BIT(8)
0460 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON BIT(13)
0461 #define HostCmd_ACT_MAC_DYNAMIC_BW_ENABLE     BIT(16)
0462 
0463 #define HostCmd_BSS_MODE_IBSS               0x0002
0464 #define HostCmd_BSS_MODE_ANY                0x0003
0465 
0466 #define HostCmd_SCAN_RADIO_TYPE_BG          0
0467 #define HostCmd_SCAN_RADIO_TYPE_A           1
0468 
0469 #define HS_CFG_CANCEL           0xffffffff
0470 #define HS_CFG_COND_DEF         0x00000000
0471 #define HS_CFG_GPIO_DEF         0xff
0472 #define HS_CFG_GAP_DEF          0xff
0473 #define HS_CFG_COND_BROADCAST_DATA  0x00000001
0474 #define HS_CFG_COND_UNICAST_DATA    0x00000002
0475 #define HS_CFG_COND_MAC_EVENT       0x00000004
0476 #define HS_CFG_COND_MULTICAST_DATA  0x00000008
0477 
0478 #define CONNECT_ERR_AUTH_ERR_STA_FAILURE    0xFFFB
0479 #define CONNECT_ERR_ASSOC_ERR_TIMEOUT       0xFFFC
0480 #define CONNECT_ERR_ASSOC_ERR_AUTH_REFUSED  0xFFFD
0481 #define CONNECT_ERR_AUTH_MSG_UNHANDLED      0xFFFE
0482 #define CONNECT_ERR_STA_FAILURE         0xFFFF
0483 
0484 
0485 #define CMD_F_HOSTCMD           (1 << 0)
0486 
0487 #define HostCmd_CMD_ID_MASK             0x0fff
0488 
0489 #define HostCmd_SEQ_NUM_MASK            0x00ff
0490 
0491 #define HostCmd_BSS_NUM_MASK            0x0f00
0492 
0493 #define HostCmd_BSS_TYPE_MASK           0xf000
0494 
0495 #define HostCmd_ACT_SET_RX              0x0001
0496 #define HostCmd_ACT_SET_TX              0x0002
0497 #define HostCmd_ACT_SET_BOTH            0x0003
0498 #define HostCmd_ACT_GET_RX              0x0004
0499 #define HostCmd_ACT_GET_TX              0x0008
0500 #define HostCmd_ACT_GET_BOTH            0x000c
0501 
0502 #define RF_ANTENNA_AUTO                 0xFFFF
0503 
0504 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) \
0505     ((((seq) & 0x00ff) |                        \
0506      (((num) & 0x000f) << 8)) |                 \
0507     (((type) & 0x000f) << 12))
0508 
0509 #define HostCmd_GET_SEQ_NO(seq)       \
0510     ((seq) & HostCmd_SEQ_NUM_MASK)
0511 
0512 #define HostCmd_GET_BSS_NO(seq)         \
0513     (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
0514 
0515 #define HostCmd_GET_BSS_TYPE(seq)       \
0516     (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
0517 
0518 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL  0x00000001
0519 #define EVENT_LINK_LOST                 0x00000003
0520 #define EVENT_LINK_SENSED               0x00000004
0521 #define EVENT_MIB_CHANGED               0x00000006
0522 #define EVENT_INIT_DONE                 0x00000007
0523 #define EVENT_DEAUTHENTICATED           0x00000008
0524 #define EVENT_DISASSOCIATED             0x00000009
0525 #define EVENT_PS_AWAKE                  0x0000000a
0526 #define EVENT_PS_SLEEP                  0x0000000b
0527 #define EVENT_MIC_ERR_MULTICAST         0x0000000d
0528 #define EVENT_MIC_ERR_UNICAST           0x0000000e
0529 #define EVENT_DEEP_SLEEP_AWAKE          0x00000010
0530 #define EVENT_ADHOC_BCN_LOST            0x00000011
0531 
0532 #define EVENT_WMM_STATUS_CHANGE         0x00000017
0533 #define EVENT_BG_SCAN_REPORT            0x00000018
0534 #define EVENT_RSSI_LOW                  0x00000019
0535 #define EVENT_SNR_LOW                   0x0000001a
0536 #define EVENT_MAX_FAIL                  0x0000001b
0537 #define EVENT_RSSI_HIGH                 0x0000001c
0538 #define EVENT_SNR_HIGH                  0x0000001d
0539 #define EVENT_IBSS_COALESCED            0x0000001e
0540 #define EVENT_IBSS_STA_CONNECT          0x00000020
0541 #define EVENT_IBSS_STA_DISCONNECT       0x00000021
0542 #define EVENT_DATA_RSSI_LOW             0x00000024
0543 #define EVENT_DATA_SNR_LOW              0x00000025
0544 #define EVENT_DATA_RSSI_HIGH            0x00000026
0545 #define EVENT_DATA_SNR_HIGH             0x00000027
0546 #define EVENT_LINK_QUALITY              0x00000028
0547 #define EVENT_PORT_RELEASE              0x0000002b
0548 #define EVENT_UAP_STA_DEAUTH            0x0000002c
0549 #define EVENT_UAP_STA_ASSOC             0x0000002d
0550 #define EVENT_UAP_BSS_START             0x0000002e
0551 #define EVENT_PRE_BEACON_LOST           0x00000031
0552 #define EVENT_ADDBA                     0x00000033
0553 #define EVENT_DELBA                     0x00000034
0554 #define EVENT_BA_STREAM_TIEMOUT         0x00000037
0555 #define EVENT_AMSDU_AGGR_CTRL           0x00000042
0556 #define EVENT_UAP_BSS_IDLE              0x00000043
0557 #define EVENT_UAP_BSS_ACTIVE            0x00000044
0558 #define EVENT_WEP_ICV_ERR               0x00000046
0559 #define EVENT_HS_ACT_REQ                0x00000047
0560 #define EVENT_BW_CHANGE                 0x00000048
0561 #define EVENT_UAP_MIC_COUNTERMEASURES   0x0000004c
0562 #define EVENT_HOSTWAKE_STAIE        0x0000004d
0563 #define EVENT_CHANNEL_SWITCH_ANN        0x00000050
0564 #define EVENT_TDLS_GENERIC_EVENT        0x00000052
0565 #define EVENT_RADAR_DETECTED        0x00000053
0566 #define EVENT_CHANNEL_REPORT_RDY        0x00000054
0567 #define EVENT_TX_DATA_PAUSE             0x00000055
0568 #define EVENT_EXT_SCAN_REPORT           0x00000058
0569 #define EVENT_RXBA_SYNC                 0x00000059
0570 #define EVENT_UNKNOWN_DEBUG             0x00000063
0571 #define EVENT_BG_SCAN_STOPPED           0x00000065
0572 #define EVENT_REMAIN_ON_CHAN_EXPIRED    0x0000005f
0573 #define EVENT_MULTI_CHAN_INFO           0x0000006a
0574 #define EVENT_FW_DUMP_INFO      0x00000073
0575 #define EVENT_TX_STATUS_REPORT      0x00000074
0576 #define EVENT_BT_COEX_WLAN_PARA_CHANGE  0X00000076
0577 
0578 #define EVENT_ID_MASK                   0xffff
0579 #define BSS_NUM_MASK                    0xf
0580 
0581 #define EVENT_GET_BSS_NUM(event_cause)          \
0582     (((event_cause) >> 16) & BSS_NUM_MASK)
0583 
0584 #define EVENT_GET_BSS_TYPE(event_cause)         \
0585     (((event_cause) >> 24) & 0x00ff)
0586 
0587 #define MWIFIEX_MAX_PATTERN_LEN     40
0588 #define MWIFIEX_MAX_OFFSET_LEN      100
0589 #define MWIFIEX_MAX_ND_MATCH_SETS   10
0590 
0591 #define STACK_NBYTES            100
0592 #define TYPE_DNUM           1
0593 #define TYPE_BYTESEQ            2
0594 #define MAX_OPERAND         0x40
0595 #define TYPE_EQ             (MAX_OPERAND+1)
0596 #define TYPE_EQ_DNUM            (MAX_OPERAND+2)
0597 #define TYPE_EQ_BIT         (MAX_OPERAND+3)
0598 #define TYPE_AND            (MAX_OPERAND+4)
0599 #define TYPE_OR             (MAX_OPERAND+5)
0600 #define MEF_MODE_HOST_SLEEP         1
0601 #define MEF_ACTION_ALLOW_AND_WAKEUP_HOST    3
0602 #define MEF_ACTION_AUTO_ARP                    0x10
0603 #define MWIFIEX_CRITERIA_BROADCAST  BIT(0)
0604 #define MWIFIEX_CRITERIA_UNICAST    BIT(1)
0605 #define MWIFIEX_CRITERIA_MULTICAST  BIT(3)
0606 #define MWIFIEX_MAX_SUPPORTED_IPADDR              4
0607 
0608 #define ACT_TDLS_DELETE            0x00
0609 #define ACT_TDLS_CREATE            0x01
0610 #define ACT_TDLS_CONFIG            0x02
0611 
0612 #define TDLS_EVENT_LINK_TEAR_DOWN      3
0613 #define TDLS_EVENT_CHAN_SWITCH_RESULT  7
0614 #define TDLS_EVENT_START_CHAN_SWITCH   8
0615 #define TDLS_EVENT_CHAN_SWITCH_STOPPED 9
0616 
0617 #define TDLS_BASE_CHANNEL          0
0618 #define TDLS_OFF_CHANNEL           1
0619 
0620 #define ACT_TDLS_CS_ENABLE_CONFIG 0x00
0621 #define ACT_TDLS_CS_INIT      0x06
0622 #define ACT_TDLS_CS_STOP      0x07
0623 #define ACT_TDLS_CS_PARAMS    0x08
0624 
0625 #define MWIFIEX_DEF_CS_UNIT_TIME    2
0626 #define MWIFIEX_DEF_CS_THR_OTHERLINK    10
0627 #define MWIFIEX_DEF_THR_DIRECTLINK  0
0628 #define MWIFIEX_DEF_CS_TIME     10
0629 #define MWIFIEX_DEF_CS_TIMEOUT      16
0630 #define MWIFIEX_DEF_CS_REG_CLASS    12
0631 #define MWIFIEX_DEF_CS_PERIODICITY  1
0632 
0633 #define MWIFIEX_FW_V15         15
0634 
0635 #define MWIFIEX_MASTER_RADAR_DET_MASK BIT(1)
0636 
0637 struct mwifiex_ie_types_header {
0638     __le16 type;
0639     __le16 len;
0640 } __packed;
0641 
0642 struct mwifiex_ie_types_data {
0643     struct mwifiex_ie_types_header header;
0644     u8 data[1];
0645 } __packed;
0646 
0647 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
0648 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
0649 #define MWIFIEX_TXPD_FLAGS_TDLS_PACKET      0x10
0650 #define MWIFIEX_RXPD_FLAGS_TDLS_PACKET      0x01
0651 #define MWIFIEX_TXPD_FLAGS_REQ_TX_STATUS    0x20
0652 
0653 enum HS_WAKEUP_REASON {
0654     NO_HSWAKEUP_REASON = 0,
0655     BCAST_DATA_MATCHED,
0656     MCAST_DATA_MATCHED,
0657     UCAST_DATA_MATCHED,
0658     MASKTABLE_EVENT_MATCHED,
0659     NON_MASKABLE_EVENT_MATCHED,
0660     NON_MASKABLE_CONDITION_MATCHED,
0661     MAGIC_PATTERN_MATCHED,
0662     CONTROL_FRAME_MATCHED,
0663     MANAGEMENT_FRAME_MATCHED,
0664     GTK_REKEY_FAILURE,
0665     RESERVED
0666 };
0667 
0668 struct txpd {
0669     u8 bss_type;
0670     u8 bss_num;
0671     __le16 tx_pkt_length;
0672     __le16 tx_pkt_offset;
0673     __le16 tx_pkt_type;
0674     __le32 tx_control;
0675     u8 priority;
0676     u8 flags;
0677     u8 pkt_delay_2ms;
0678     u8 reserved1[2];
0679     u8 tx_token_id;
0680     u8 reserved[2];
0681 } __packed;
0682 
0683 struct rxpd {
0684     u8 bss_type;
0685     u8 bss_num;
0686     __le16 rx_pkt_length;
0687     __le16 rx_pkt_offset;
0688     __le16 rx_pkt_type;
0689     __le16 seq_num;
0690     u8 priority;
0691     u8 rx_rate;
0692     s8 snr;
0693     s8 nf;
0694 
0695     /* For: Non-802.11 AC cards
0696      *
0697      * Ht Info [Bit 0] RxRate format: LG=0, HT=1
0698      * [Bit 1]  HT Bandwidth: BW20 = 0, BW40 = 1
0699      * [Bit 2]  HT Guard Interval: LGI = 0, SGI = 1
0700      *
0701      * For: 802.11 AC cards
0702      * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10
0703      * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01
0704      *                      BW80 = 10  BW160 = 11
0705      * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1
0706      * [Bit 5] STBC support Enabled = 1
0707      * [Bit 6] LDPC support Enabled = 1
0708      * [Bit 7] Reserved
0709      */
0710     u8 ht_info;
0711     u8 reserved[3];
0712     u8 flags;
0713 } __packed;
0714 
0715 struct uap_txpd {
0716     u8 bss_type;
0717     u8 bss_num;
0718     __le16 tx_pkt_length;
0719     __le16 tx_pkt_offset;
0720     __le16 tx_pkt_type;
0721     __le32 tx_control;
0722     u8 priority;
0723     u8 flags;
0724     u8 pkt_delay_2ms;
0725     u8 reserved1[2];
0726     u8 tx_token_id;
0727     u8 reserved[2];
0728 } __packed;
0729 
0730 struct uap_rxpd {
0731     u8 bss_type;
0732     u8 bss_num;
0733     __le16 rx_pkt_length;
0734     __le16 rx_pkt_offset;
0735     __le16 rx_pkt_type;
0736     __le16 seq_num;
0737     u8 priority;
0738     u8 rx_rate;
0739     s8 snr;
0740     s8 nf;
0741     u8 ht_info;
0742     u8 reserved[3];
0743     u8 flags;
0744 } __packed;
0745 
0746 struct mwifiex_fw_chan_stats {
0747     u8 chan_num;
0748     u8 bandcfg;
0749     u8 flags;
0750     s8 noise;
0751     __le16 total_bss;
0752     __le16 cca_scan_dur;
0753     __le16 cca_busy_dur;
0754 } __packed;
0755 
0756 enum mwifiex_chan_scan_mode_bitmasks {
0757     MWIFIEX_PASSIVE_SCAN = BIT(0),
0758     MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
0759     MWIFIEX_HIDDEN_SSID_REPORT = BIT(4),
0760 };
0761 
0762 struct mwifiex_chan_scan_param_set {
0763     u8 radio_type;
0764     u8 chan_number;
0765     u8 chan_scan_mode_bitmap;
0766     __le16 min_scan_time;
0767     __le16 max_scan_time;
0768 } __packed;
0769 
0770 struct mwifiex_ie_types_chan_list_param_set {
0771     struct mwifiex_ie_types_header header;
0772     struct mwifiex_chan_scan_param_set chan_scan_param[1];
0773 } __packed;
0774 
0775 struct mwifiex_ie_types_rxba_sync {
0776     struct mwifiex_ie_types_header header;
0777     u8 mac[ETH_ALEN];
0778     u8 tid;
0779     u8 reserved;
0780     __le16 seq_num;
0781     __le16 bitmap_len;
0782     u8 bitmap[1];
0783 } __packed;
0784 
0785 struct chan_band_param_set {
0786     u8 radio_type;
0787     u8 chan_number;
0788 };
0789 
0790 struct mwifiex_ie_types_chan_band_list_param_set {
0791     struct mwifiex_ie_types_header header;
0792     struct chan_band_param_set chan_band_param[1];
0793 } __packed;
0794 
0795 struct mwifiex_ie_types_rates_param_set {
0796     struct mwifiex_ie_types_header header;
0797     u8 rates[1];
0798 } __packed;
0799 
0800 struct mwifiex_ie_types_ssid_param_set {
0801     struct mwifiex_ie_types_header header;
0802     u8 ssid[1];
0803 } __packed;
0804 
0805 struct mwifiex_ie_types_num_probes {
0806     struct mwifiex_ie_types_header header;
0807     __le16 num_probes;
0808 } __packed;
0809 
0810 struct mwifiex_ie_types_repeat_count {
0811     struct mwifiex_ie_types_header header;
0812     __le16 repeat_count;
0813 } __packed;
0814 
0815 struct mwifiex_ie_types_min_rssi_threshold {
0816     struct mwifiex_ie_types_header header;
0817     __le16 rssi_threshold;
0818 } __packed;
0819 
0820 struct mwifiex_ie_types_bgscan_start_later {
0821     struct mwifiex_ie_types_header header;
0822     __le16 start_later;
0823 } __packed;
0824 
0825 struct mwifiex_ie_types_scan_chan_gap {
0826     struct mwifiex_ie_types_header header;
0827     /* time gap in TUs to be used between two consecutive channels scan */
0828     __le16 chan_gap;
0829 } __packed;
0830 
0831 struct mwifiex_ie_types_random_mac {
0832     struct mwifiex_ie_types_header header;
0833     u8 mac[ETH_ALEN];
0834 } __packed;
0835 
0836 struct mwifiex_ietypes_chanstats {
0837     struct mwifiex_ie_types_header header;
0838     struct mwifiex_fw_chan_stats chanstats[];
0839 } __packed;
0840 
0841 struct mwifiex_ie_types_wildcard_ssid_params {
0842     struct mwifiex_ie_types_header header;
0843     u8 max_ssid_length;
0844     u8 ssid[1];
0845 } __packed;
0846 
0847 #define TSF_DATA_SIZE            8
0848 struct mwifiex_ie_types_tsf_timestamp {
0849     struct mwifiex_ie_types_header header;
0850     u8 tsf_data[1];
0851 } __packed;
0852 
0853 struct mwifiex_cf_param_set {
0854     u8 cfp_cnt;
0855     u8 cfp_period;
0856     __le16 cfp_max_duration;
0857     __le16 cfp_duration_remaining;
0858 } __packed;
0859 
0860 struct mwifiex_ibss_param_set {
0861     __le16 atim_window;
0862 } __packed;
0863 
0864 struct mwifiex_ie_types_ss_param_set {
0865     struct mwifiex_ie_types_header header;
0866     union {
0867         struct mwifiex_cf_param_set cf_param_set[1];
0868         struct mwifiex_ibss_param_set ibss_param_set[1];
0869     } cf_ibss;
0870 } __packed;
0871 
0872 struct mwifiex_fh_param_set {
0873     __le16 dwell_time;
0874     u8 hop_set;
0875     u8 hop_pattern;
0876     u8 hop_index;
0877 } __packed;
0878 
0879 struct mwifiex_ds_param_set {
0880     u8 current_chan;
0881 } __packed;
0882 
0883 struct mwifiex_ie_types_phy_param_set {
0884     struct mwifiex_ie_types_header header;
0885     union {
0886         struct mwifiex_fh_param_set fh_param_set[1];
0887         struct mwifiex_ds_param_set ds_param_set[1];
0888     } fh_ds;
0889 } __packed;
0890 
0891 struct mwifiex_ie_types_auth_type {
0892     struct mwifiex_ie_types_header header;
0893     __le16 auth_type;
0894 } __packed;
0895 
0896 struct mwifiex_ie_types_vendor_param_set {
0897     struct mwifiex_ie_types_header header;
0898     u8 ie[MWIFIEX_MAX_VSIE_LEN];
0899 };
0900 
0901 #define MWIFIEX_TDLS_IDLE_TIMEOUT_IN_SEC    60
0902 
0903 struct mwifiex_ie_types_tdls_idle_timeout {
0904     struct mwifiex_ie_types_header header;
0905     __le16 value;
0906 } __packed;
0907 
0908 struct mwifiex_ie_types_rsn_param_set {
0909     struct mwifiex_ie_types_header header;
0910     u8 rsn_ie[1];
0911 } __packed;
0912 
0913 #define KEYPARAMSET_FIXED_LEN 6
0914 
0915 struct mwifiex_ie_type_key_param_set {
0916     __le16 type;
0917     __le16 length;
0918     __le16 key_type_id;
0919     __le16 key_info;
0920     __le16 key_len;
0921     u8 key[50];
0922 } __packed;
0923 
0924 #define IGTK_PN_LEN     8
0925 
0926 struct mwifiex_cmac_param {
0927     u8 ipn[IGTK_PN_LEN];
0928     u8 key[WLAN_KEY_LEN_AES_CMAC];
0929 } __packed;
0930 
0931 struct mwifiex_wep_param {
0932     __le16 key_len;
0933     u8 key[WLAN_KEY_LEN_WEP104];
0934 } __packed;
0935 
0936 struct mwifiex_tkip_param {
0937     u8 pn[WPA_PN_SIZE];
0938     __le16 key_len;
0939     u8 key[WLAN_KEY_LEN_TKIP];
0940 } __packed;
0941 
0942 struct mwifiex_aes_param {
0943     u8 pn[WPA_PN_SIZE];
0944     __le16 key_len;
0945     u8 key[WLAN_KEY_LEN_CCMP_256];
0946 } __packed;
0947 
0948 struct mwifiex_wapi_param {
0949     u8 pn[PN_LEN];
0950     __le16 key_len;
0951     u8 key[WLAN_KEY_LEN_SMS4];
0952 } __packed;
0953 
0954 struct mwifiex_cmac_aes_param {
0955     u8 ipn[IGTK_PN_LEN];
0956     __le16 key_len;
0957     u8 key[WLAN_KEY_LEN_AES_CMAC];
0958 } __packed;
0959 
0960 struct mwifiex_ie_type_key_param_set_v2 {
0961     __le16 type;
0962     __le16 len;
0963     u8 mac_addr[ETH_ALEN];
0964     u8 key_idx;
0965     u8 key_type;
0966     __le16 key_info;
0967     union {
0968         struct mwifiex_wep_param wep;
0969         struct mwifiex_tkip_param tkip;
0970         struct mwifiex_aes_param aes;
0971         struct mwifiex_wapi_param wapi;
0972         struct mwifiex_cmac_aes_param cmac_aes;
0973     } key_params;
0974 } __packed;
0975 
0976 struct host_cmd_ds_802_11_key_material_v2 {
0977     __le16 action;
0978     struct mwifiex_ie_type_key_param_set_v2 key_param_set;
0979 } __packed;
0980 
0981 struct host_cmd_ds_802_11_key_material {
0982     __le16 action;
0983     struct mwifiex_ie_type_key_param_set key_param_set;
0984 } __packed;
0985 
0986 struct host_cmd_ds_802_11_key_material_wep {
0987     __le16 action;
0988     struct mwifiex_ie_type_key_param_set key_param_set[NUM_WEP_KEYS];
0989 } __packed;
0990 
0991 struct host_cmd_ds_gen {
0992     __le16 command;
0993     __le16 size;
0994     __le16 seq_num;
0995     __le16 result;
0996 };
0997 
0998 #define S_DS_GEN        sizeof(struct host_cmd_ds_gen)
0999 
1000 enum sleep_resp_ctrl {
1001     RESP_NOT_NEEDED = 0,
1002     RESP_NEEDED,
1003 };
1004 
1005 struct mwifiex_ps_param {
1006     __le16 null_pkt_interval;
1007     __le16 multiple_dtims;
1008     __le16 bcn_miss_timeout;
1009     __le16 local_listen_interval;
1010     __le16 adhoc_wake_period;
1011     __le16 mode;
1012     __le16 delay_to_ps;
1013 } __packed;
1014 
1015 #define HS_DEF_WAKE_INTERVAL          100
1016 #define HS_DEF_INACTIVITY_TIMEOUT      50
1017 
1018 struct mwifiex_ps_param_in_hs {
1019     struct mwifiex_ie_types_header header;
1020     __le32 hs_wake_int;
1021     __le32 hs_inact_timeout;
1022 } __packed;
1023 
1024 #define BITMAP_AUTO_DS         0x01
1025 #define BITMAP_STA_PS          0x10
1026 
1027 struct mwifiex_ie_types_auto_ds_param {
1028     struct mwifiex_ie_types_header header;
1029     __le16 deep_sleep_timeout;
1030 } __packed;
1031 
1032 struct mwifiex_ie_types_ps_param {
1033     struct mwifiex_ie_types_header header;
1034     struct mwifiex_ps_param param;
1035 } __packed;
1036 
1037 struct host_cmd_ds_802_11_ps_mode_enh {
1038     __le16 action;
1039 
1040     union {
1041         struct mwifiex_ps_param opt_ps;
1042         __le16 ps_bitmap;
1043     } params;
1044 } __packed;
1045 
1046 enum API_VER_ID {
1047     KEY_API_VER_ID = 1,
1048     FW_API_VER_ID = 2,
1049     UAP_FW_API_VER_ID = 3,
1050     CHANRPT_API_VER_ID = 4,
1051 };
1052 
1053 struct hw_spec_api_rev {
1054     struct mwifiex_ie_types_header header;
1055     __le16 api_id;
1056     u8 major_ver;
1057     u8 minor_ver;
1058 } __packed;
1059 
1060 struct host_cmd_ds_get_hw_spec {
1061     __le16 hw_if_version;
1062     __le16 version;
1063     __le16 reserved;
1064     __le16 num_of_mcast_adr;
1065     u8 permanent_addr[ETH_ALEN];
1066     __le16 region_code;
1067     __le16 number_of_antenna;
1068     __le32 fw_release_number;
1069     __le32 reserved_1;
1070     __le32 reserved_2;
1071     __le32 reserved_3;
1072     __le32 fw_cap_info;
1073     __le32 dot_11n_dev_cap;
1074     u8 dev_mcs_support;
1075     __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1076     __le16 mgmt_buf_count;  /* mgmt IE buffer count */
1077     __le32 reserved_5;
1078     __le32 reserved_6;
1079     __le32 dot_11ac_dev_cap;
1080     __le32 dot_11ac_mcs_support;
1081     u8 tlvs[];
1082 } __packed;
1083 
1084 struct host_cmd_ds_802_11_rssi_info {
1085     __le16 action;
1086     __le16 ndata;
1087     __le16 nbcn;
1088     __le16 reserved[9];
1089     long long reserved_1;
1090 } __packed;
1091 
1092 struct host_cmd_ds_802_11_rssi_info_rsp {
1093     __le16 action;
1094     __le16 ndata;
1095     __le16 nbcn;
1096     __le16 data_rssi_last;
1097     __le16 data_nf_last;
1098     __le16 data_rssi_avg;
1099     __le16 data_nf_avg;
1100     __le16 bcn_rssi_last;
1101     __le16 bcn_nf_last;
1102     __le16 bcn_rssi_avg;
1103     __le16 bcn_nf_avg;
1104     long long tsf_bcn;
1105 } __packed;
1106 
1107 struct host_cmd_ds_802_11_mac_address {
1108     __le16 action;
1109     u8 mac_addr[ETH_ALEN];
1110 } __packed;
1111 
1112 struct host_cmd_ds_mac_control {
1113     __le32 action;
1114 };
1115 
1116 struct host_cmd_ds_mac_multicast_adr {
1117     __le16 action;
1118     __le16 num_of_adrs;
1119     u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
1120 } __packed;
1121 
1122 struct host_cmd_ds_802_11_deauthenticate {
1123     u8 mac_addr[ETH_ALEN];
1124     __le16 reason_code;
1125 } __packed;
1126 
1127 struct host_cmd_ds_802_11_associate {
1128     u8 peer_sta_addr[ETH_ALEN];
1129     __le16 cap_info_bitmap;
1130     __le16 listen_interval;
1131     __le16 beacon_period;
1132     u8 dtim_period;
1133 } __packed;
1134 
1135 struct ieee_types_assoc_rsp {
1136     __le16 cap_info_bitmap;
1137     __le16 status_code;
1138     __le16 a_id;
1139     u8 ie_buffer[];
1140 } __packed;
1141 
1142 struct host_cmd_ds_802_11_associate_rsp {
1143     struct ieee_types_assoc_rsp assoc_rsp;
1144 } __packed;
1145 
1146 struct ieee_types_cf_param_set {
1147     u8 element_id;
1148     u8 len;
1149     u8 cfp_cnt;
1150     u8 cfp_period;
1151     __le16 cfp_max_duration;
1152     __le16 cfp_duration_remaining;
1153 } __packed;
1154 
1155 struct ieee_types_ibss_param_set {
1156     u8 element_id;
1157     u8 len;
1158     __le16 atim_window;
1159 } __packed;
1160 
1161 union ieee_types_ss_param_set {
1162     struct ieee_types_cf_param_set cf_param_set;
1163     struct ieee_types_ibss_param_set ibss_param_set;
1164 } __packed;
1165 
1166 struct ieee_types_fh_param_set {
1167     u8 element_id;
1168     u8 len;
1169     __le16 dwell_time;
1170     u8 hop_set;
1171     u8 hop_pattern;
1172     u8 hop_index;
1173 } __packed;
1174 
1175 struct ieee_types_ds_param_set {
1176     u8 element_id;
1177     u8 len;
1178     u8 current_chan;
1179 } __packed;
1180 
1181 union ieee_types_phy_param_set {
1182     struct ieee_types_fh_param_set fh_param_set;
1183     struct ieee_types_ds_param_set ds_param_set;
1184 } __packed;
1185 
1186 struct ieee_types_oper_mode_ntf {
1187     u8 element_id;
1188     u8 len;
1189     u8 oper_mode;
1190 } __packed;
1191 
1192 struct host_cmd_ds_802_11_ad_hoc_start {
1193     u8 ssid[IEEE80211_MAX_SSID_LEN];
1194     u8 bss_mode;
1195     __le16 beacon_period;
1196     u8 dtim_period;
1197     union ieee_types_ss_param_set ss_param_set;
1198     union ieee_types_phy_param_set phy_param_set;
1199     u16 reserved1;
1200     __le16 cap_info_bitmap;
1201     u8 data_rate[HOSTCMD_SUPPORTED_RATES];
1202 } __packed;
1203 
1204 struct host_cmd_ds_802_11_ad_hoc_start_result {
1205     u8 pad[3];
1206     u8 bssid[ETH_ALEN];
1207     u8 pad2[2];
1208     u8 result;
1209 } __packed;
1210 
1211 struct host_cmd_ds_802_11_ad_hoc_join_result {
1212     u8 result;
1213 } __packed;
1214 
1215 struct adhoc_bss_desc {
1216     u8 bssid[ETH_ALEN];
1217     u8 ssid[IEEE80211_MAX_SSID_LEN];
1218     u8 bss_mode;
1219     __le16 beacon_period;
1220     u8 dtim_period;
1221     u8 time_stamp[8];
1222     u8 local_time[8];
1223     union ieee_types_phy_param_set phy_param_set;
1224     union ieee_types_ss_param_set ss_param_set;
1225     __le16 cap_info_bitmap;
1226     u8 data_rates[HOSTCMD_SUPPORTED_RATES];
1227 
1228     /*
1229      *  DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
1230      *  It is used in the Adhoc join command and will cause a
1231      *  binary layout mismatch with the firmware
1232      */
1233 } __packed;
1234 
1235 struct host_cmd_ds_802_11_ad_hoc_join {
1236     struct adhoc_bss_desc bss_descriptor;
1237     u16 reserved1;
1238     u16 reserved2;
1239 } __packed;
1240 
1241 struct host_cmd_ds_802_11_get_log {
1242     __le32 mcast_tx_frame;
1243     __le32 failed;
1244     __le32 retry;
1245     __le32 multi_retry;
1246     __le32 frame_dup;
1247     __le32 rts_success;
1248     __le32 rts_failure;
1249     __le32 ack_failure;
1250     __le32 rx_frag;
1251     __le32 mcast_rx_frame;
1252     __le32 fcs_error;
1253     __le32 tx_frame;
1254     __le32 reserved;
1255     __le32 wep_icv_err_cnt[4];
1256     __le32 bcn_rcv_cnt;
1257     __le32 bcn_miss_cnt;
1258 } __packed;
1259 
1260 /* Enumeration for rate format */
1261 enum _mwifiex_rate_format {
1262     MWIFIEX_RATE_FORMAT_LG = 0,
1263     MWIFIEX_RATE_FORMAT_HT,
1264     MWIFIEX_RATE_FORMAT_VHT,
1265     MWIFIEX_RATE_FORMAT_AUTO = 0xFF,
1266 };
1267 
1268 struct host_cmd_ds_tx_rate_query {
1269     u8 tx_rate;
1270     /* Tx Rate Info: For 802.11 AC cards
1271      *
1272      * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2
1273      * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3
1274      * [Bit 4]   HT/VHT Guard Interval: LGI = 0, SGI = 1
1275      *
1276      * For non-802.11 AC cards
1277      * Ht Info [Bit 0] RxRate format: LG=0, HT=1
1278      * [Bit 1]  HT Bandwidth: BW20 = 0, BW40 = 1
1279      * [Bit 2]  HT Guard Interval: LGI = 0, SGI = 1
1280      */
1281     u8 ht_info;
1282 } __packed;
1283 
1284 struct mwifiex_tx_pause_tlv {
1285     struct mwifiex_ie_types_header header;
1286     u8 peermac[ETH_ALEN];
1287     u8 tx_pause;
1288     u8 pkt_cnt;
1289 } __packed;
1290 
1291 enum Host_Sleep_Action {
1292     HS_CONFIGURE = 0x0001,
1293     HS_ACTIVATE  = 0x0002,
1294 };
1295 
1296 struct mwifiex_hs_config_param {
1297     __le32 conditions;
1298     u8 gpio;
1299     u8 gap;
1300 } __packed;
1301 
1302 struct hs_activate_param {
1303     __le16 resp_ctrl;
1304 } __packed;
1305 
1306 struct host_cmd_ds_802_11_hs_cfg_enh {
1307     __le16 action;
1308 
1309     union {
1310         struct mwifiex_hs_config_param hs_config;
1311         struct hs_activate_param hs_activate;
1312     } params;
1313 } __packed;
1314 
1315 enum SNMP_MIB_INDEX {
1316     OP_RATE_SET_I = 1,
1317     DTIM_PERIOD_I = 3,
1318     RTS_THRESH_I = 5,
1319     SHORT_RETRY_LIM_I = 6,
1320     LONG_RETRY_LIM_I = 7,
1321     FRAG_THRESH_I = 8,
1322     DOT11D_I = 9,
1323     DOT11H_I = 10,
1324 };
1325 
1326 enum mwifiex_assocmd_failurepoint {
1327     MWIFIEX_ASSOC_CMD_SUCCESS = 0,
1328     MWIFIEX_ASSOC_CMD_FAILURE_ASSOC,
1329     MWIFIEX_ASSOC_CMD_FAILURE_AUTH,
1330     MWIFIEX_ASSOC_CMD_FAILURE_JOIN
1331 };
1332 
1333 #define MAX_SNMP_BUF_SIZE   128
1334 
1335 struct host_cmd_ds_802_11_snmp_mib {
1336     __le16 query_type;
1337     __le16 oid;
1338     __le16 buf_size;
1339     u8 value[1];
1340 } __packed;
1341 
1342 struct mwifiex_rate_scope {
1343     __le16 type;
1344     __le16 length;
1345     __le16 hr_dsss_rate_bitmap;
1346     __le16 ofdm_rate_bitmap;
1347     __le16 ht_mcs_rate_bitmap[8];
1348     __le16 vht_mcs_rate_bitmap[8];
1349 } __packed;
1350 
1351 struct mwifiex_rate_drop_pattern {
1352     __le16 type;
1353     __le16 length;
1354     __le32 rate_drop_mode;
1355 } __packed;
1356 
1357 struct host_cmd_ds_tx_rate_cfg {
1358     __le16 action;
1359     __le16 cfg_index;
1360 } __packed;
1361 
1362 struct mwifiex_power_group {
1363     u8 modulation_class;
1364     u8 first_rate_code;
1365     u8 last_rate_code;
1366     s8 power_step;
1367     s8 power_min;
1368     s8 power_max;
1369     u8 ht_bandwidth;
1370     u8 reserved;
1371 } __packed;
1372 
1373 struct mwifiex_types_power_group {
1374     __le16 type;
1375     __le16 length;
1376 } __packed;
1377 
1378 struct host_cmd_ds_txpwr_cfg {
1379     __le16 action;
1380     __le16 cfg_index;
1381     __le32 mode;
1382 } __packed;
1383 
1384 struct host_cmd_ds_rf_tx_pwr {
1385     __le16 action;
1386     __le16 cur_level;
1387     u8 max_power;
1388     u8 min_power;
1389 } __packed;
1390 
1391 struct host_cmd_ds_rf_ant_mimo {
1392     __le16 action_tx;
1393     __le16 tx_ant_mode;
1394     __le16 action_rx;
1395     __le16 rx_ant_mode;
1396 } __packed;
1397 
1398 struct host_cmd_ds_rf_ant_siso {
1399     __le16 action;
1400     __le16 ant_mode;
1401 } __packed;
1402 
1403 struct host_cmd_ds_tdls_oper {
1404     __le16 tdls_action;
1405     __le16 reason;
1406     u8 peer_mac[ETH_ALEN];
1407 } __packed;
1408 
1409 struct mwifiex_tdls_config {
1410     __le16 enable;
1411 } __packed;
1412 
1413 struct mwifiex_tdls_config_cs_params {
1414     u8 unit_time;
1415     u8 thr_otherlink;
1416     u8 thr_directlink;
1417 } __packed;
1418 
1419 struct mwifiex_tdls_init_cs_params {
1420     u8 peer_mac[ETH_ALEN];
1421     u8 primary_chan;
1422     u8 second_chan_offset;
1423     u8 band;
1424     __le16 switch_time;
1425     __le16 switch_timeout;
1426     u8 reg_class;
1427     u8 periodicity;
1428 } __packed;
1429 
1430 struct mwifiex_tdls_stop_cs_params {
1431     u8 peer_mac[ETH_ALEN];
1432 } __packed;
1433 
1434 struct host_cmd_ds_tdls_config {
1435     __le16 tdls_action;
1436     u8 tdls_data[1];
1437 } __packed;
1438 
1439 struct mwifiex_chan_desc {
1440     __le16 start_freq;
1441     u8 chan_width;
1442     u8 chan_num;
1443 } __packed;
1444 
1445 struct host_cmd_ds_chan_rpt_req {
1446     struct mwifiex_chan_desc chan_desc;
1447     __le32 msec_dwell_time;
1448 } __packed;
1449 
1450 struct host_cmd_ds_chan_rpt_event {
1451     __le32 result;
1452     __le64 start_tsf;
1453     __le32 duration;
1454     u8 tlvbuf[];
1455 } __packed;
1456 
1457 struct host_cmd_sdio_sp_rx_aggr_cfg {
1458     u8 action;
1459     u8 enable;
1460     __le16 block_size;
1461 } __packed;
1462 
1463 struct mwifiex_fixed_bcn_param {
1464     __le64 timestamp;
1465     __le16 beacon_period;
1466     __le16 cap_info_bitmap;
1467 } __packed;
1468 
1469 struct mwifiex_event_scan_result {
1470     __le16 event_id;
1471     u8 bss_index;
1472     u8 bss_type;
1473     u8 more_event;
1474     u8 reserved[3];
1475     __le16 buf_size;
1476     u8 num_of_set;
1477 } __packed;
1478 
1479 struct tx_status_event {
1480     u8 packet_type;
1481     u8 tx_token_id;
1482     u8 status;
1483 } __packed;
1484 
1485 #define MWIFIEX_USER_SCAN_CHAN_MAX             50
1486 
1487 #define MWIFIEX_MAX_SSID_LIST_LENGTH         10
1488 
1489 struct mwifiex_scan_cmd_config {
1490     /*
1491      *  BSS mode to be sent in the firmware command
1492      */
1493     u8 bss_mode;
1494 
1495     /* Specific BSSID used to filter scan results in the firmware */
1496     u8 specific_bssid[ETH_ALEN];
1497 
1498     /* Length of TLVs sent in command starting at tlvBuffer */
1499     u32 tlv_buf_len;
1500 
1501     /*
1502      *  SSID TLV(s) and ChanList TLVs to be sent in the firmware command
1503      *
1504      *  TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
1505      *  WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
1506      */
1507     u8 tlv_buf[1];  /* SSID TLV(s) and ChanList TLVs are stored
1508                    here */
1509 } __packed;
1510 
1511 struct mwifiex_user_scan_chan {
1512     u8 chan_number;
1513     u8 radio_type;
1514     u8 scan_type;
1515     u8 reserved;
1516     u32 scan_time;
1517 } __packed;
1518 
1519 struct mwifiex_user_scan_cfg {
1520     /*
1521      *  BSS mode to be sent in the firmware command
1522      */
1523     u8 bss_mode;
1524     /* Configure the number of probe requests for active chan scans */
1525     u8 num_probes;
1526     u8 reserved;
1527     /* BSSID filter sent in the firmware command to limit the results */
1528     u8 specific_bssid[ETH_ALEN];
1529     /* SSID filter list used in the firmware to limit the scan results */
1530     struct cfg80211_ssid *ssid_list;
1531     u8 num_ssids;
1532     /* Variable number (fixed maximum) of channels to scan up */
1533     struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
1534     u16 scan_chan_gap;
1535     u8 random_mac[ETH_ALEN];
1536 } __packed;
1537 
1538 #define MWIFIEX_BG_SCAN_CHAN_MAX 38
1539 #define MWIFIEX_BSS_MODE_INFRA 1
1540 #define MWIFIEX_BGSCAN_ACT_GET     0x0000
1541 #define MWIFIEX_BGSCAN_ACT_SET     0x0001
1542 #define MWIFIEX_BGSCAN_ACT_SET_ALL 0xff01
1543 /** ssid match */
1544 #define MWIFIEX_BGSCAN_SSID_MATCH          0x0001
1545 /** ssid match and RSSI exceeded */
1546 #define MWIFIEX_BGSCAN_SSID_RSSI_MATCH     0x0004
1547 /**wait for all channel scan to complete to report scan result*/
1548 #define MWIFIEX_BGSCAN_WAIT_ALL_CHAN_DONE  0x80000000
1549 
1550 struct mwifiex_bg_scan_cfg {
1551     u16 action;
1552     u8 enable;
1553     u8 bss_type;
1554     u8 chan_per_scan;
1555     u32 scan_interval;
1556     u32 report_condition;
1557     u8 num_probes;
1558     u8 rssi_threshold;
1559     u8 snr_threshold;
1560     u16 repeat_count;
1561     u16 start_later;
1562     struct cfg80211_match_set *ssid_list;
1563     u8 num_ssids;
1564     struct mwifiex_user_scan_chan chan_list[MWIFIEX_BG_SCAN_CHAN_MAX];
1565     u16 scan_chan_gap;
1566 } __packed;
1567 
1568 struct ie_body {
1569     u8 grp_key_oui[4];
1570     u8 ptk_cnt[2];
1571     u8 ptk_body[4];
1572 } __packed;
1573 
1574 struct host_cmd_ds_802_11_scan {
1575     u8 bss_mode;
1576     u8 bssid[ETH_ALEN];
1577     u8 tlv_buffer[1];
1578 } __packed;
1579 
1580 struct host_cmd_ds_802_11_scan_rsp {
1581     __le16 bss_descript_size;
1582     u8 number_of_sets;
1583     u8 bss_desc_and_tlv_buffer[1];
1584 } __packed;
1585 
1586 struct host_cmd_ds_802_11_scan_ext {
1587     u32   reserved;
1588     u8    tlv_buffer[1];
1589 } __packed;
1590 
1591 struct mwifiex_ie_types_bss_mode {
1592     struct mwifiex_ie_types_header  header;
1593     u8 bss_mode;
1594 } __packed;
1595 
1596 struct mwifiex_ie_types_bss_scan_rsp {
1597     struct mwifiex_ie_types_header header;
1598     u8 bssid[ETH_ALEN];
1599     u8 frame_body[1];
1600 } __packed;
1601 
1602 struct mwifiex_ie_types_bss_scan_info {
1603     struct mwifiex_ie_types_header header;
1604     __le16 rssi;
1605     __le16 anpi;
1606     u8 cca_busy_fraction;
1607     u8 radio_type;
1608     u8 channel;
1609     u8 reserved;
1610     __le64 tsf;
1611 } __packed;
1612 
1613 struct host_cmd_ds_802_11_bg_scan_config {
1614     __le16 action;
1615     u8 enable;
1616     u8 bss_type;
1617     u8 chan_per_scan;
1618     u8 reserved;
1619     __le16 reserved1;
1620     __le32 scan_interval;
1621     __le32 reserved2;
1622     __le32 report_condition;
1623     __le16 reserved3;
1624     u8 tlv[];
1625 } __packed;
1626 
1627 struct host_cmd_ds_802_11_bg_scan_query {
1628     u8 flush;
1629 } __packed;
1630 
1631 struct host_cmd_ds_802_11_bg_scan_query_rsp {
1632     __le32 report_condition;
1633     struct host_cmd_ds_802_11_scan_rsp scan_resp;
1634 } __packed;
1635 
1636 struct mwifiex_ietypes_domain_param_set {
1637     struct mwifiex_ie_types_header header;
1638     u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1639     struct ieee80211_country_ie_triplet triplet[1];
1640 } __packed;
1641 
1642 struct host_cmd_ds_802_11d_domain_info {
1643     __le16 action;
1644     struct mwifiex_ietypes_domain_param_set domain;
1645 } __packed;
1646 
1647 struct host_cmd_ds_802_11d_domain_info_rsp {
1648     __le16 action;
1649     struct mwifiex_ietypes_domain_param_set domain;
1650 } __packed;
1651 
1652 struct host_cmd_ds_11n_addba_req {
1653     u8 add_req_result;
1654     u8 peer_mac_addr[ETH_ALEN];
1655     u8 dialog_token;
1656     __le16 block_ack_param_set;
1657     __le16 block_ack_tmo;
1658     __le16 ssn;
1659 } __packed;
1660 
1661 struct host_cmd_ds_11n_addba_rsp {
1662     u8 add_rsp_result;
1663     u8 peer_mac_addr[ETH_ALEN];
1664     u8 dialog_token;
1665     __le16 status_code;
1666     __le16 block_ack_param_set;
1667     __le16 block_ack_tmo;
1668     __le16 ssn;
1669 } __packed;
1670 
1671 struct host_cmd_ds_11n_delba {
1672     u8 del_result;
1673     u8 peer_mac_addr[ETH_ALEN];
1674     __le16 del_ba_param_set;
1675     __le16 reason_code;
1676     u8 reserved;
1677 } __packed;
1678 
1679 struct host_cmd_ds_11n_batimeout {
1680     u8 tid;
1681     u8 peer_mac_addr[ETH_ALEN];
1682     u8 origninator;
1683 } __packed;
1684 
1685 struct host_cmd_ds_11n_cfg {
1686     __le16 action;
1687     __le16 ht_tx_cap;
1688     __le16 ht_tx_info;
1689     __le16 misc_config; /* Needed for 802.11AC cards only */
1690 } __packed;
1691 
1692 struct host_cmd_ds_txbuf_cfg {
1693     __le16 action;
1694     __le16 buff_size;
1695     __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1696     __le16 reserved3;
1697 } __packed;
1698 
1699 struct host_cmd_ds_amsdu_aggr_ctrl {
1700     __le16 action;
1701     __le16 enable;
1702     __le16 curr_buf_size;
1703 } __packed;
1704 
1705 struct host_cmd_ds_sta_deauth {
1706     u8 mac[ETH_ALEN];
1707     __le16 reason;
1708 } __packed;
1709 
1710 struct mwifiex_ie_types_sta_info {
1711     struct mwifiex_ie_types_header header;
1712     u8 mac[ETH_ALEN];
1713     u8 power_mfg_status;
1714     s8 rssi;
1715 };
1716 
1717 struct host_cmd_ds_sta_list {
1718     __le16 sta_count;
1719     u8 tlv[];
1720 } __packed;
1721 
1722 struct mwifiex_ie_types_pwr_capability {
1723     struct mwifiex_ie_types_header header;
1724     s8 min_pwr;
1725     s8 max_pwr;
1726 };
1727 
1728 struct mwifiex_ie_types_local_pwr_constraint {
1729     struct mwifiex_ie_types_header header;
1730     u8 chan;
1731     u8 constraint;
1732 };
1733 
1734 struct mwifiex_ie_types_wmm_param_set {
1735     struct mwifiex_ie_types_header header;
1736     u8 wmm_ie[1];
1737 } __packed;
1738 
1739 struct mwifiex_ie_types_mgmt_frame {
1740     struct mwifiex_ie_types_header header;
1741     __le16 frame_control;
1742     u8 frame_contents[];
1743 };
1744 
1745 struct mwifiex_ie_types_wmm_queue_status {
1746     struct mwifiex_ie_types_header header;
1747     u8 queue_index;
1748     u8 disabled;
1749     __le16 medium_time;
1750     u8 flow_required;
1751     u8 flow_created;
1752     u32 reserved;
1753 };
1754 
1755 struct ieee_types_vendor_header {
1756     u8 element_id;
1757     u8 len;
1758     struct {
1759         u8 oui[3];
1760         u8 oui_type;
1761     } __packed oui;
1762 } __packed;
1763 
1764 struct ieee_types_wmm_parameter {
1765     /*
1766      * WMM Parameter IE - Vendor Specific Header:
1767      *   element_id  [221/0xdd]
1768      *   Len         [24]
1769      *   Oui         [00:50:f2]
1770      *   OuiType     [2]
1771      *   OuiSubType  [1]
1772      *   Version     [1]
1773      */
1774     struct ieee_types_vendor_header vend_hdr;
1775     u8 oui_subtype;
1776     u8 version;
1777 
1778     u8 qos_info_bitmap;
1779     u8 reserved;
1780     struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
1781 } __packed;
1782 
1783 struct ieee_types_wmm_info {
1784 
1785     /*
1786      * WMM Info IE - Vendor Specific Header:
1787      *   element_id  [221/0xdd]
1788      *   Len         [7]
1789      *   Oui         [00:50:f2]
1790      *   OuiType     [2]
1791      *   OuiSubType  [0]
1792      *   Version     [1]
1793      */
1794     struct ieee_types_vendor_header vend_hdr;
1795     u8 oui_subtype;
1796     u8 version;
1797 
1798     u8 qos_info_bitmap;
1799 } __packed;
1800 
1801 struct host_cmd_ds_wmm_get_status {
1802     u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
1803                   IEEE80211_NUM_ACS];
1804     u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1805 } __packed;
1806 
1807 struct mwifiex_wmm_ac_status {
1808     u8 disabled;
1809     u8 flow_required;
1810     u8 flow_created;
1811 };
1812 
1813 struct mwifiex_ie_types_htcap {
1814     struct mwifiex_ie_types_header header;
1815     struct ieee80211_ht_cap ht_cap;
1816 } __packed;
1817 
1818 struct mwifiex_ie_types_vhtcap {
1819     struct mwifiex_ie_types_header header;
1820     struct ieee80211_vht_cap vht_cap;
1821 } __packed;
1822 
1823 struct mwifiex_ie_types_aid {
1824     struct mwifiex_ie_types_header header;
1825     __le16 aid;
1826 } __packed;
1827 
1828 struct mwifiex_ie_types_oper_mode_ntf {
1829     struct mwifiex_ie_types_header header;
1830     u8 oper_mode;
1831 } __packed;
1832 
1833 /* VHT Operations IE */
1834 struct mwifiex_ie_types_vht_oper {
1835     struct mwifiex_ie_types_header header;
1836     u8 chan_width;
1837     u8 chan_center_freq_1;
1838     u8 chan_center_freq_2;
1839     /* Basic MCS set map, each 2 bits stands for a NSS */
1840     __le16 basic_mcs_map;
1841 } __packed;
1842 
1843 struct mwifiex_ie_types_wmmcap {
1844     struct mwifiex_ie_types_header header;
1845     struct mwifiex_types_wmm_info wmm_info;
1846 } __packed;
1847 
1848 struct mwifiex_ie_types_htinfo {
1849     struct mwifiex_ie_types_header header;
1850     struct ieee80211_ht_operation ht_oper;
1851 } __packed;
1852 
1853 struct mwifiex_ie_types_2040bssco {
1854     struct mwifiex_ie_types_header header;
1855     u8 bss_co_2040;
1856 } __packed;
1857 
1858 struct mwifiex_ie_types_extcap {
1859     struct mwifiex_ie_types_header header;
1860     u8 ext_capab[];
1861 } __packed;
1862 
1863 struct host_cmd_ds_mem_access {
1864     __le16 action;
1865     __le16 reserved;
1866     __le32 addr;
1867     __le32 value;
1868 } __packed;
1869 
1870 struct mwifiex_ie_types_qos_info {
1871     struct mwifiex_ie_types_header header;
1872     u8 qos_info;
1873 } __packed;
1874 
1875 struct host_cmd_ds_mac_reg_access {
1876     __le16 action;
1877     __le16 offset;
1878     __le32 value;
1879 } __packed;
1880 
1881 struct host_cmd_ds_bbp_reg_access {
1882     __le16 action;
1883     __le16 offset;
1884     u8 value;
1885     u8 reserved[3];
1886 } __packed;
1887 
1888 struct host_cmd_ds_rf_reg_access {
1889     __le16 action;
1890     __le16 offset;
1891     u8 value;
1892     u8 reserved[3];
1893 } __packed;
1894 
1895 struct host_cmd_ds_pmic_reg_access {
1896     __le16 action;
1897     __le16 offset;
1898     u8 value;
1899     u8 reserved[3];
1900 } __packed;
1901 
1902 struct host_cmd_ds_802_11_eeprom_access {
1903     __le16 action;
1904 
1905     __le16 offset;
1906     __le16 byte_count;
1907     u8 value;
1908 } __packed;
1909 
1910 struct mwifiex_assoc_event {
1911     u8 sta_addr[ETH_ALEN];
1912     __le16 type;
1913     __le16 len;
1914     __le16 frame_control;
1915     __le16 cap_info;
1916     __le16 listen_interval;
1917     u8 data[];
1918 } __packed;
1919 
1920 struct host_cmd_ds_sys_config {
1921     __le16 action;
1922     u8 tlv[];
1923 };
1924 
1925 struct host_cmd_11ac_vht_cfg {
1926     __le16 action;
1927     u8 band_config;
1928     u8 misc_config;
1929     __le32 cap_info;
1930     __le32 mcs_tx_set;
1931     __le32 mcs_rx_set;
1932 } __packed;
1933 
1934 struct host_cmd_tlv_akmp {
1935     struct mwifiex_ie_types_header header;
1936     __le16 key_mgmt;
1937     __le16 key_mgmt_operation;
1938 } __packed;
1939 
1940 struct host_cmd_tlv_pwk_cipher {
1941     struct mwifiex_ie_types_header header;
1942     __le16 proto;
1943     u8 cipher;
1944     u8 reserved;
1945 } __packed;
1946 
1947 struct host_cmd_tlv_gwk_cipher {
1948     struct mwifiex_ie_types_header header;
1949     u8 cipher;
1950     u8 reserved;
1951 } __packed;
1952 
1953 struct host_cmd_tlv_passphrase {
1954     struct mwifiex_ie_types_header header;
1955     u8 passphrase[];
1956 } __packed;
1957 
1958 struct host_cmd_tlv_wep_key {
1959     struct mwifiex_ie_types_header header;
1960     u8 key_index;
1961     u8 is_default;
1962     u8 key[1];
1963 };
1964 
1965 struct host_cmd_tlv_auth_type {
1966     struct mwifiex_ie_types_header header;
1967     u8 auth_type;
1968 } __packed;
1969 
1970 struct host_cmd_tlv_encrypt_protocol {
1971     struct mwifiex_ie_types_header header;
1972     __le16 proto;
1973 } __packed;
1974 
1975 struct host_cmd_tlv_ssid {
1976     struct mwifiex_ie_types_header header;
1977     u8 ssid[];
1978 } __packed;
1979 
1980 struct host_cmd_tlv_rates {
1981     struct mwifiex_ie_types_header header;
1982     u8 rates[];
1983 } __packed;
1984 
1985 struct mwifiex_ie_types_bssid_list {
1986     struct mwifiex_ie_types_header header;
1987     u8 bssid[ETH_ALEN];
1988 } __packed;
1989 
1990 struct host_cmd_tlv_bcast_ssid {
1991     struct mwifiex_ie_types_header header;
1992     u8 bcast_ctl;
1993 } __packed;
1994 
1995 struct host_cmd_tlv_beacon_period {
1996     struct mwifiex_ie_types_header header;
1997     __le16 period;
1998 } __packed;
1999 
2000 struct host_cmd_tlv_dtim_period {
2001     struct mwifiex_ie_types_header header;
2002     u8 period;
2003 } __packed;
2004 
2005 struct host_cmd_tlv_frag_threshold {
2006     struct mwifiex_ie_types_header header;
2007     __le16 frag_thr;
2008 } __packed;
2009 
2010 struct host_cmd_tlv_rts_threshold {
2011     struct mwifiex_ie_types_header header;
2012     __le16 rts_thr;
2013 } __packed;
2014 
2015 struct host_cmd_tlv_retry_limit {
2016     struct mwifiex_ie_types_header header;
2017     u8 limit;
2018 } __packed;
2019 
2020 struct host_cmd_tlv_mac_addr {
2021     struct mwifiex_ie_types_header header;
2022     u8 mac_addr[ETH_ALEN];
2023 } __packed;
2024 
2025 struct host_cmd_tlv_channel_band {
2026     struct mwifiex_ie_types_header header;
2027     u8 band_config;
2028     u8 channel;
2029 } __packed;
2030 
2031 struct host_cmd_tlv_ageout_timer {
2032     struct mwifiex_ie_types_header header;
2033     __le32 sta_ao_timer;
2034 } __packed;
2035 
2036 struct host_cmd_tlv_power_constraint {
2037     struct mwifiex_ie_types_header header;
2038     u8 constraint;
2039 } __packed;
2040 
2041 struct mwifiex_ie_types_btcoex_scan_time {
2042     struct mwifiex_ie_types_header header;
2043     u8 coex_scan;
2044     u8 reserved;
2045     __le16 min_scan_time;
2046     __le16 max_scan_time;
2047 } __packed;
2048 
2049 struct mwifiex_ie_types_btcoex_aggr_win_size {
2050     struct mwifiex_ie_types_header header;
2051     u8 coex_win_size;
2052     u8 tx_win_size;
2053     u8 rx_win_size;
2054     u8 reserved;
2055 } __packed;
2056 
2057 struct mwifiex_ie_types_robust_coex {
2058     struct mwifiex_ie_types_header header;
2059     __le32 mode;
2060 } __packed;
2061 
2062 #define MWIFIEX_VERSION_STR_LENGTH  128
2063 
2064 struct host_cmd_ds_version_ext {
2065     u8 version_str_sel;
2066     char version_str[MWIFIEX_VERSION_STR_LENGTH];
2067 } __packed;
2068 
2069 struct host_cmd_ds_mgmt_frame_reg {
2070     __le16 action;
2071     __le32 mask;
2072 } __packed;
2073 
2074 struct host_cmd_ds_p2p_mode_cfg {
2075     __le16 action;
2076     __le16 mode;
2077 } __packed;
2078 
2079 struct host_cmd_ds_remain_on_chan {
2080     __le16 action;
2081     u8 status;
2082     u8 reserved;
2083     u8 band_cfg;
2084     u8 channel;
2085     __le32 duration;
2086 } __packed;
2087 
2088 struct host_cmd_ds_802_11_ibss_status {
2089     __le16 action;
2090     __le16 enable;
2091     u8 bssid[ETH_ALEN];
2092     __le16 beacon_interval;
2093     __le16 atim_window;
2094     __le16 use_g_rate_protect;
2095 } __packed;
2096 
2097 struct mwifiex_fw_mef_entry {
2098     u8 mode;
2099     u8 action;
2100     __le16 exprsize;
2101     u8 expr[];
2102 } __packed;
2103 
2104 struct host_cmd_ds_mef_cfg {
2105     __le32 criteria;
2106     __le16 num_entries;
2107     struct mwifiex_fw_mef_entry mef_entry[];
2108 } __packed;
2109 
2110 #define CONNECTION_TYPE_INFRA   0
2111 #define CONNECTION_TYPE_ADHOC   1
2112 #define CONNECTION_TYPE_AP      2
2113 
2114 struct host_cmd_ds_set_bss_mode {
2115     u8 con_type;
2116 } __packed;
2117 
2118 struct host_cmd_ds_pcie_details {
2119     /* TX buffer descriptor ring address */
2120     __le32 txbd_addr_lo;
2121     __le32 txbd_addr_hi;
2122     /* TX buffer descriptor ring count */
2123     __le32 txbd_count;
2124 
2125     /* RX buffer descriptor ring address */
2126     __le32 rxbd_addr_lo;
2127     __le32 rxbd_addr_hi;
2128     /* RX buffer descriptor ring count */
2129     __le32 rxbd_count;
2130 
2131     /* Event buffer descriptor ring address */
2132     __le32 evtbd_addr_lo;
2133     __le32 evtbd_addr_hi;
2134     /* Event buffer descriptor ring count */
2135     __le32 evtbd_count;
2136 
2137     /* Sleep cookie buffer physical address */
2138     __le32 sleep_cookie_addr_lo;
2139     __le32 sleep_cookie_addr_hi;
2140 } __packed;
2141 
2142 struct mwifiex_ie_types_rssi_threshold {
2143     struct mwifiex_ie_types_header header;
2144     u8 abs_value;
2145     u8 evt_freq;
2146 } __packed;
2147 
2148 #define MWIFIEX_DFS_REC_HDR_LEN     8
2149 #define MWIFIEX_DFS_REC_HDR_NUM     10
2150 #define MWIFIEX_BIN_COUNTER_LEN     7
2151 
2152 struct mwifiex_radar_det_event {
2153     __le32 detect_count;
2154     u8 reg_domain;  /*1=fcc, 2=etsi, 3=mic*/
2155     u8 det_type;  /*0=none, 1=pw(chirp), 2=pri(radar)*/
2156     __le16 pw_chirp_type;
2157     u8 pw_chirp_idx;
2158     u8 pw_value;
2159     u8 pri_radar_type;
2160     u8 pri_bincnt;
2161     u8 bin_counter[MWIFIEX_BIN_COUNTER_LEN];
2162     u8 num_dfs_records;
2163     u8 dfs_record_hdr[MWIFIEX_DFS_REC_HDR_NUM][MWIFIEX_DFS_REC_HDR_LEN];
2164     __le32 passed;
2165 } __packed;
2166 
2167 struct mwifiex_ie_types_multi_chan_info {
2168     struct mwifiex_ie_types_header header;
2169     __le16 status;
2170     u8 tlv_buffer[];
2171 } __packed;
2172 
2173 struct mwifiex_ie_types_mc_group_info {
2174     struct mwifiex_ie_types_header header;
2175     u8 chan_group_id;
2176     u8 chan_buf_weight;
2177     u8 band_config;
2178     u8 chan_num;
2179     __le32 chan_time;
2180     __le32 reserved;
2181     union {
2182         u8 sdio_func_num;
2183         u8 usb_ep_num;
2184     } hid_num;
2185     u8 intf_num;
2186     u8 bss_type_numlist[];
2187 } __packed;
2188 
2189 struct meas_rpt_map {
2190     u8 rssi:3;
2191     u8 unmeasured:1;
2192     u8 radar:1;
2193     u8 unidentified_sig:1;
2194     u8 ofdm_preamble:1;
2195     u8 bss:1;
2196 } __packed;
2197 
2198 struct mwifiex_ie_types_chan_rpt_data {
2199     struct mwifiex_ie_types_header header;
2200     struct meas_rpt_map map;
2201 } __packed;
2202 
2203 struct host_cmd_ds_802_11_subsc_evt {
2204     __le16 action;
2205     __le16 events;
2206 } __packed;
2207 
2208 struct chan_switch_result {
2209     u8 cur_chan;
2210     u8 status;
2211     u8 reason;
2212 } __packed;
2213 
2214 struct mwifiex_tdls_generic_event {
2215     __le16 type;
2216     u8 peer_mac[ETH_ALEN];
2217     union {
2218         struct chan_switch_result switch_result;
2219         u8 cs_stop_reason;
2220         __le16 reason_code;
2221         __le16 reserved;
2222     } u;
2223 } __packed;
2224 
2225 struct mwifiex_ie {
2226     __le16 ie_index;
2227     __le16 mgmt_subtype_mask;
2228     __le16 ie_length;
2229     u8 ie_buffer[IEEE_MAX_IE_SIZE];
2230 } __packed;
2231 
2232 #define MAX_MGMT_IE_INDEX   16
2233 struct mwifiex_ie_list {
2234     __le16 type;
2235     __le16 len;
2236     struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
2237 } __packed;
2238 
2239 struct coalesce_filt_field_param {
2240     u8 operation;
2241     u8 operand_len;
2242     __le16 offset;
2243     u8 operand_byte_stream[4];
2244 };
2245 
2246 struct coalesce_receive_filt_rule {
2247     struct mwifiex_ie_types_header header;
2248     u8 num_of_fields;
2249     u8 pkt_type;
2250     __le16 max_coalescing_delay;
2251     struct coalesce_filt_field_param params[];
2252 } __packed;
2253 
2254 struct host_cmd_ds_coalesce_cfg {
2255     __le16 action;
2256     __le16 num_of_rules;
2257     struct coalesce_receive_filt_rule rule[];
2258 } __packed;
2259 
2260 struct host_cmd_ds_multi_chan_policy {
2261     __le16 action;
2262     __le16 policy;
2263 } __packed;
2264 
2265 struct host_cmd_ds_robust_coex {
2266     __le16 action;
2267     __le16 reserved;
2268 } __packed;
2269 
2270 struct host_cmd_ds_wakeup_reason {
2271     __le16  wakeup_reason;
2272 } __packed;
2273 
2274 struct host_cmd_ds_gtk_rekey_params {
2275     __le16 action;
2276     u8 kck[NL80211_KCK_LEN];
2277     u8 kek[NL80211_KEK_LEN];
2278     __le32 replay_ctr_low;
2279     __le32 replay_ctr_high;
2280 } __packed;
2281 
2282 struct host_cmd_ds_chan_region_cfg {
2283     __le16 action;
2284 } __packed;
2285 
2286 struct host_cmd_ds_pkt_aggr_ctrl {
2287     __le16 action;
2288     __le16 enable;
2289     __le16 tx_aggr_max_size;
2290     __le16 tx_aggr_max_num;
2291     __le16 tx_aggr_align;
2292 } __packed;
2293 
2294 struct host_cmd_ds_sta_configure {
2295     __le16 action;
2296     u8 tlv_buffer[];
2297 } __packed;
2298 
2299 struct host_cmd_ds_command {
2300     __le16 command;
2301     __le16 size;
2302     __le16 seq_num;
2303     __le16 result;
2304     union {
2305         struct host_cmd_ds_get_hw_spec hw_spec;
2306         struct host_cmd_ds_mac_control mac_ctrl;
2307         struct host_cmd_ds_802_11_mac_address mac_addr;
2308         struct host_cmd_ds_mac_multicast_adr mc_addr;
2309         struct host_cmd_ds_802_11_get_log get_log;
2310         struct host_cmd_ds_802_11_rssi_info rssi_info;
2311         struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
2312         struct host_cmd_ds_802_11_snmp_mib smib;
2313         struct host_cmd_ds_tx_rate_query tx_rate;
2314         struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
2315         struct host_cmd_ds_txpwr_cfg txp_cfg;
2316         struct host_cmd_ds_rf_tx_pwr txp;
2317         struct host_cmd_ds_rf_ant_mimo ant_mimo;
2318         struct host_cmd_ds_rf_ant_siso ant_siso;
2319         struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
2320         struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
2321         struct host_cmd_ds_802_11_scan scan;
2322         struct host_cmd_ds_802_11_scan_ext ext_scan;
2323         struct host_cmd_ds_802_11_scan_rsp scan_resp;
2324         struct host_cmd_ds_802_11_bg_scan_config bg_scan_config;
2325         struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
2326         struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
2327         struct host_cmd_ds_802_11_associate associate;
2328         struct host_cmd_ds_802_11_associate_rsp associate_rsp;
2329         struct host_cmd_ds_802_11_deauthenticate deauth;
2330         struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
2331         struct host_cmd_ds_802_11_ad_hoc_start_result start_result;
2332         struct host_cmd_ds_802_11_ad_hoc_join_result join_result;
2333         struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
2334         struct host_cmd_ds_802_11d_domain_info domain_info;
2335         struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
2336         struct host_cmd_ds_11n_addba_req add_ba_req;
2337         struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
2338         struct host_cmd_ds_11n_delba del_ba;
2339         struct host_cmd_ds_txbuf_cfg tx_buf;
2340         struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
2341         struct host_cmd_ds_11n_cfg htcfg;
2342         struct host_cmd_ds_wmm_get_status get_wmm_status;
2343         struct host_cmd_ds_802_11_key_material key_material;
2344         struct host_cmd_ds_802_11_key_material_v2 key_material_v2;
2345         struct host_cmd_ds_802_11_key_material_wep key_material_wep;
2346         struct host_cmd_ds_version_ext verext;
2347         struct host_cmd_ds_mgmt_frame_reg reg_mask;
2348         struct host_cmd_ds_remain_on_chan roc_cfg;
2349         struct host_cmd_ds_p2p_mode_cfg mode_cfg;
2350         struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
2351         struct host_cmd_ds_mef_cfg mef_cfg;
2352         struct host_cmd_ds_mem_access mem;
2353         struct host_cmd_ds_mac_reg_access mac_reg;
2354         struct host_cmd_ds_bbp_reg_access bbp_reg;
2355         struct host_cmd_ds_rf_reg_access rf_reg;
2356         struct host_cmd_ds_pmic_reg_access pmic_reg;
2357         struct host_cmd_ds_set_bss_mode bss_mode;
2358         struct host_cmd_ds_pcie_details pcie_host_spec;
2359         struct host_cmd_ds_802_11_eeprom_access eeprom;
2360         struct host_cmd_ds_802_11_subsc_evt subsc_evt;
2361         struct host_cmd_ds_sys_config uap_sys_config;
2362         struct host_cmd_ds_sta_deauth sta_deauth;
2363         struct host_cmd_ds_sta_list sta_list;
2364         struct host_cmd_11ac_vht_cfg vht_cfg;
2365         struct host_cmd_ds_coalesce_cfg coalesce_cfg;
2366         struct host_cmd_ds_tdls_config tdls_config;
2367         struct host_cmd_ds_tdls_oper tdls_oper;
2368         struct host_cmd_ds_chan_rpt_req chan_rpt_req;
2369         struct host_cmd_sdio_sp_rx_aggr_cfg sdio_rx_aggr_cfg;
2370         struct host_cmd_ds_multi_chan_policy mc_policy;
2371         struct host_cmd_ds_robust_coex coex;
2372         struct host_cmd_ds_wakeup_reason hs_wakeup_reason;
2373         struct host_cmd_ds_gtk_rekey_params rekey;
2374         struct host_cmd_ds_chan_region_cfg reg_cfg;
2375         struct host_cmd_ds_pkt_aggr_ctrl pkt_aggr_ctrl;
2376         struct host_cmd_ds_sta_configure sta_cfg;
2377     } params;
2378 } __packed;
2379 
2380 struct mwifiex_opt_sleep_confirm {
2381     __le16 command;
2382     __le16 size;
2383     __le16 seq_num;
2384     __le16 result;
2385     __le16 action;
2386     __le16 resp_ctrl;
2387 } __packed;
2388 
2389 struct hw_spec_max_conn {
2390     struct mwifiex_ie_types_header header;
2391     u8 max_p2p_conn;
2392     u8 max_sta_conn;
2393 } __packed;
2394 
2395 #endif /* !_MWIFIEX_FW_H_ */