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