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