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