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