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