[go: nahoru, domu]

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