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