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