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