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