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