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