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