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