2 * Marvell Wireless LAN device driver: Firmware specific macros & structures
4 * Copyright (C) 2011-2014, Marvell International Ltd.
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.
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.
20 #ifndef _MWIFIEX_FW_H_
21 #define _MWIFIEX_FW_H_
23 #include <linux/if_ether.h>
26 #define INTF_HEADER_LEN 4
36 struct rx_packet_hdr
{
37 struct ethhdr eth803_hdr
;
38 struct rfc_1042_hdr rfc1042_hdr
;
41 struct tx_packet_hdr
{
42 struct ethhdr eth803_hdr
;
43 struct rfc_1042_hdr rfc1042_hdr
;
46 #define B_SUPPORTED_RATES 5
47 #define G_SUPPORTED_RATES 9
48 #define BG_SUPPORTED_RATES 13
49 #define A_SUPPORTED_RATES 9
50 #define HOSTCMD_SUPPORTED_RATES 14
51 #define N_SUPPORTED_RATES 3
52 #define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN | \
55 #define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11) | \
57 #define IS_SUPPORT_MULTI_BANDS(adapter) \
58 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
60 /* bit 13: 11ac BAND_AAC
61 * bit 12: reserved for lab testing, will be reused for BAND_AN
66 * Map these bits to band capability by right shifting 8 bits.
68 #define GET_FW_DEFAULT_BANDS(adapter) \
69 (((adapter->fw_cap_info & 0x2f00) >> 8) & \
72 #define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
74 #define KEY_INFO_ENABLED 0x01
84 #define KEY_PARAMS_FIXED_LEN 10
85 #define KEY_INDEX_MASK 0xf
86 #define KEY_API_VER_MAJOR_V2 2
88 #define KEY_MCAST BIT(0)
89 #define KEY_UNICAST BIT(1)
90 #define KEY_ENABLED BIT(2)
91 #define KEY_DEFAULT BIT(3)
92 #define KEY_TX_KEY BIT(4)
93 #define KEY_RX_KEY BIT(5)
94 #define KEY_IGTK BIT(10)
96 #define WAPI_KEY_LEN (WLAN_KEY_LEN_SMS4 + PN_LEN + 2)
98 #define MAX_POLL_TRIES 100
99 #define MAX_FIRMWARE_POLL_TRIES 100
101 #define FIRMWARE_READY_SDIO 0xfedc
102 #define FIRMWARE_READY_PCIE 0xfedcba00
104 enum mwifiex_usb_ep
{
105 MWIFIEX_USB_EP_CMD_EVENT
= 1,
106 MWIFIEX_USB_EP_DATA
= 2,
109 enum MWIFIEX_802_11_PRIVACY_FILTER
{
110 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL
,
111 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
114 #define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
115 #define CAL_RSSI(SNR, NF) ((s16)((s16)(SNR)+(s16)(NF)))
117 #define UAP_BSS_PARAMS_I 0
118 #define UAP_CUSTOM_IE_I 1
119 #define MWIFIEX_AUTO_IDX_MASK 0xffff
120 #define MWIFIEX_DELETE_MASK 0x0000
121 #define MGMT_MASK_ASSOC_REQ 0x01
122 #define MGMT_MASK_REASSOC_REQ 0x04
123 #define MGMT_MASK_ASSOC_RESP 0x02
124 #define MGMT_MASK_REASSOC_RESP 0x08
125 #define MGMT_MASK_PROBE_REQ 0x10
126 #define MGMT_MASK_PROBE_RESP 0x20
127 #define MGMT_MASK_BEACON 0x100
129 #define TLV_TYPE_UAP_SSID 0x0000
130 #define TLV_TYPE_UAP_RATES 0x0001
132 #define PROPRIETARY_TLV_BASE_ID 0x0100
133 #define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
134 #define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
135 #define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
136 #define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
137 #define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
138 #define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
139 #define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
140 #define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
141 #define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
142 #define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
143 #define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
144 #define TLV_TYPE_BSSID (PROPRIETARY_TLV_BASE_ID + 35)
145 #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
146 #define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
147 #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
148 #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
149 #define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
150 #define TLV_TYPE_UAP_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 57)
151 #define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
152 #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
153 #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
154 #define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
155 #define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
156 #define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
157 #define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
158 #define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
159 #define TLV_TYPE_BSS_SCAN_RSP (PROPRIETARY_TLV_BASE_ID + 86)
160 #define TLV_TYPE_BSS_SCAN_INFO (PROPRIETARY_TLV_BASE_ID + 87)
161 #define TLV_TYPE_CHANRPT_11H_BASIC (PROPRIETARY_TLV_BASE_ID + 91)
162 #define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
163 #define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
164 #define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
165 #define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
166 #define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
167 #define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
168 #define TLV_TYPE_UAP_PS_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 123)
169 #define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
170 #define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
171 #define TLV_TYPE_COALESCE_RULE (PROPRIETARY_TLV_BASE_ID + 154)
172 #define TLV_TYPE_KEY_PARAM_V2 (PROPRIETARY_TLV_BASE_ID + 156)
173 #define TLV_TYPE_TDLS_IDLE_TIMEOUT (PROPRIETARY_TLV_BASE_ID + 194)
174 #define TLV_TYPE_SCAN_CHANNEL_GAP (PROPRIETARY_TLV_BASE_ID + 197)
175 #define TLV_TYPE_API_REV (PROPRIETARY_TLV_BASE_ID + 199)
176 #define TLV_TYPE_CHANNEL_STATS (PROPRIETARY_TLV_BASE_ID + 198)
178 #define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
180 #define SSN_MASK 0xfff0
182 #define BA_RESULT_SUCCESS 0x0
183 #define BA_RESULT_TIMEOUT 0x2
185 #define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
187 #define BA_STREAM_NOT_ALLOWED 0xff
189 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
190 priv->adapter->config_bands & BAND_AN) && \
191 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
192 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
193 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
195 #define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
196 #define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
198 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
199 #define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14))
201 #define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
202 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
203 IEEE80211_HT_CAP_SM_PS)
205 #define MWIFIEX_DEF_11N_TX_BF_CAP 0x09E1E008
207 #define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
209 #define GET_RXSTBC(x) (x & IEEE80211_HT_CAP_RX_STBC)
210 #define MWIFIEX_RX_STBC1 0x0100
211 #define MWIFIEX_RX_STBC12 0x0200
212 #define MWIFIEX_RX_STBC123 0x0300
217 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
219 * 23 IEEE80211_HT_CAP_SGI_20
220 * 24 IEEE80211_HT_CAP_SGI_40
221 * 25 IEEE80211_HT_CAP_TX_STBC
222 * 26 IEEE80211_HT_CAP_RX_STBC
224 * 29 IEEE80211_HT_CAP_GRN_FLD
227 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
228 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
229 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
230 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
231 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
232 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
233 #define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
234 #define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
235 #define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30))
236 #define ISALLOWED_CHANWIDTH40(ht_param) (ht_param & BIT(2))
237 #define GETSUPP_TXBASTREAMS(Dot11nDevCap) ((Dot11nDevCap >> 18) & 0xF)
241 * 1 20/40 Mhz enable(1)/disable(0)
243 * 4 green field enable(1)/disable(0)
244 * 5 short GI in 20 Mhz enable(1)/disable(0)
245 * 6 short GI in 40 Mhz enable(1)/disable(0)
248 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
250 /* 11AC Tx and Rx MCS map for 1x1 mode:
251 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1
252 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams
254 #define MWIFIEX_11AC_MCS_MAP_1X1 0xfffefffe
256 /* 11AC Tx and Rx MCS map for 2x2 mode:
257 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2
258 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams
260 #define MWIFIEX_11AC_MCS_MAP_2X2 0xfffafffa
262 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
263 #define SETHT_MCS32(x) (x[4] |= 1)
264 #define HT_STREAM_1X1 0x11
265 #define HT_STREAM_2X2 0x22
267 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
269 #define LLC_SNAP_LEN 8
271 /* HW_SPEC fw_cap_info */
273 #define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13))
275 #define GET_VHTCAP_CHWDSET(vht_cap_info) ((vht_cap_info >> 2) & 0x3)
276 #define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3)
277 #define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \
279 #define GET_DEVTXMCSMAP(dev_mcs_map) (dev_mcs_map >> 16)
280 #define GET_DEVRXMCSMAP(dev_mcs_map) (dev_mcs_map & 0xFFFF)
282 /* Clear SU Beanformer, MU beanformer, MU beanformee and
283 * sounding dimensions bits
285 #define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \
286 (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \
287 IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \
288 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \
289 IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
291 #define MOD_CLASS_HR_DSSS 0x03
292 #define MOD_CLASS_OFDM 0x07
293 #define MOD_CLASS_HT 0x08
297 #define DFS_CHAN_MOVE_TIME 10000
299 #define HostCmd_CMD_GET_HW_SPEC 0x0003
300 #define HostCmd_CMD_802_11_SCAN 0x0006
301 #define HostCmd_CMD_802_11_GET_LOG 0x000b
302 #define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
303 #define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
304 #define HostCmd_CMD_802_11_ASSOCIATE 0x0012
305 #define HostCmd_CMD_802_11_SNMP_MIB 0x0016
306 #define HostCmd_CMD_MAC_REG_ACCESS 0x0019
307 #define HostCmd_CMD_BBP_REG_ACCESS 0x001a
308 #define HostCmd_CMD_RF_REG_ACCESS 0x001b
309 #define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
310 #define HostCmd_CMD_RF_TX_PWR 0x001e
311 #define HostCmd_CMD_RF_ANTENNA 0x0020
312 #define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
313 #define HostCmd_CMD_MAC_CONTROL 0x0028
314 #define HostCmd_CMD_802_11_AD_HOC_START 0x002b
315 #define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
316 #define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
317 #define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
318 #define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
319 #define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
320 #define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
321 #define HostCmd_CMD_WMM_GET_STATUS 0x0071
322 #define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
323 #define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
324 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
325 #define HostCmd_CMD_CFG_DATA 0x008f
326 #define HostCmd_CMD_VERSION_EXT 0x0097
327 #define HostCmd_CMD_MEF_CFG 0x009a
328 #define HostCmd_CMD_RSSI_INFO 0x00a4
329 #define HostCmd_CMD_FUNC_INIT 0x00a9
330 #define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
331 #define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
332 #define HostCmd_CMD_UAP_BSS_START 0x00b1
333 #define HostCmd_CMD_UAP_BSS_STOP 0x00b2
334 #define HostCmd_CMD_UAP_STA_DEAUTH 0x00b5
335 #define HostCmd_CMD_11N_CFG 0x00cd
336 #define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
337 #define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
338 #define HostCmd_CMD_11N_DELBA 0x00d0
339 #define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
340 #define HostCmd_CMD_CHAN_REPORT_REQUEST 0x00dd
341 #define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
342 #define HostCmd_CMD_TXPWR_CFG 0x00d1
343 #define HostCmd_CMD_TX_RATE_CFG 0x00d6
344 #define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
345 #define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
346 #define HostCmd_CMD_P2P_MODE_CFG 0x00eb
347 #define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
348 #define HostCmd_CMD_SET_BSS_MODE 0x00f7
349 #define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
350 #define HostCmd_CMD_802_11_SCAN_EXT 0x0107
351 #define HostCmd_CMD_COALESCE_CFG 0x010a
352 #define HostCmd_CMD_MGMT_FRAME_REG 0x010c
353 #define HostCmd_CMD_REMAIN_ON_CHAN 0x010d
354 #define HostCmd_CMD_11AC_CFG 0x0112
355 #define HostCmd_CMD_TDLS_OPER 0x0122
357 #define PROTOCOL_NO_SECURITY 0x01
358 #define PROTOCOL_STATIC_WEP 0x02
359 #define PROTOCOL_WPA 0x08
360 #define PROTOCOL_WPA2 0x20
361 #define PROTOCOL_WPA2_MIXED 0x28
362 #define PROTOCOL_EAP 0x40
363 #define KEY_MGMT_NONE 0x04
364 #define KEY_MGMT_PSK 0x02
365 #define KEY_MGMT_EAP 0x01
366 #define CIPHER_TKIP 0x04
367 #define CIPHER_AES_CCMP 0x08
368 #define VALID_CIPHER_BITMAP 0x0c
382 P2P_MODE_DISABLE
= 0,
388 #define HostCmd_RET_BIT 0x8000
389 #define HostCmd_ACT_GEN_GET 0x0000
390 #define HostCmd_ACT_GEN_SET 0x0001
391 #define HostCmd_ACT_GEN_REMOVE 0x0004
392 #define HostCmd_ACT_BITWISE_SET 0x0002
393 #define HostCmd_ACT_BITWISE_CLR 0x0003
394 #define HostCmd_RESULT_OK 0x0000
396 #define HostCmd_ACT_MAC_RX_ON 0x0001
397 #define HostCmd_ACT_MAC_TX_ON 0x0002
398 #define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
399 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
400 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
401 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
402 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
404 #define HostCmd_BSS_MODE_IBSS 0x0002
405 #define HostCmd_BSS_MODE_ANY 0x0003
407 #define HostCmd_SCAN_RADIO_TYPE_BG 0
408 #define HostCmd_SCAN_RADIO_TYPE_A 1
410 #define HS_CFG_CANCEL 0xffffffff
411 #define HS_CFG_COND_DEF 0x00000000
412 #define HS_CFG_GPIO_DEF 0xff
413 #define HS_CFG_GAP_DEF 0xff
414 #define HS_CFG_COND_BROADCAST_DATA 0x00000001
415 #define HS_CFG_COND_UNICAST_DATA 0x00000002
416 #define HS_CFG_COND_MAC_EVENT 0x00000004
417 #define HS_CFG_COND_MULTICAST_DATA 0x00000008
419 #define MWIFIEX_TIMEOUT_FOR_AP_RESP 0xfffc
420 #define MWIFIEX_STATUS_CODE_AUTH_TIMEOUT 2
422 #define CMD_F_HOSTCMD (1 << 0)
423 #define CMD_F_CANCELED (1 << 1)
425 #define HostCmd_CMD_ID_MASK 0x0fff
427 #define HostCmd_SEQ_NUM_MASK 0x00ff
429 #define HostCmd_BSS_NUM_MASK 0x0f00
431 #define HostCmd_BSS_TYPE_MASK 0xf000
433 #define HostCmd_ACT_SET_RX 0x0001
434 #define HostCmd_ACT_SET_TX 0x0002
435 #define HostCmd_ACT_SET_BOTH 0x0003
437 #define RF_ANTENNA_AUTO 0xFFFF
439 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
440 (((seq) & 0x00ff) | \
441 (((num) & 0x000f) << 8)) | \
442 (((type) & 0x000f) << 12); }
444 #define HostCmd_GET_SEQ_NO(seq) \
445 ((seq) & HostCmd_SEQ_NUM_MASK)
447 #define HostCmd_GET_BSS_NO(seq) \
448 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
450 #define HostCmd_GET_BSS_TYPE(seq) \
451 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
453 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
454 #define EVENT_LINK_LOST 0x00000003
455 #define EVENT_LINK_SENSED 0x00000004
456 #define EVENT_MIB_CHANGED 0x00000006
457 #define EVENT_INIT_DONE 0x00000007
458 #define EVENT_DEAUTHENTICATED 0x00000008
459 #define EVENT_DISASSOCIATED 0x00000009
460 #define EVENT_PS_AWAKE 0x0000000a
461 #define EVENT_PS_SLEEP 0x0000000b
462 #define EVENT_MIC_ERR_MULTICAST 0x0000000d
463 #define EVENT_MIC_ERR_UNICAST 0x0000000e
464 #define EVENT_DEEP_SLEEP_AWAKE 0x00000010
465 #define EVENT_ADHOC_BCN_LOST 0x00000011
467 #define EVENT_WMM_STATUS_CHANGE 0x00000017
468 #define EVENT_BG_SCAN_REPORT 0x00000018
469 #define EVENT_RSSI_LOW 0x00000019
470 #define EVENT_SNR_LOW 0x0000001a
471 #define EVENT_MAX_FAIL 0x0000001b
472 #define EVENT_RSSI_HIGH 0x0000001c
473 #define EVENT_SNR_HIGH 0x0000001d
474 #define EVENT_IBSS_COALESCED 0x0000001e
475 #define EVENT_DATA_RSSI_LOW 0x00000024
476 #define EVENT_DATA_SNR_LOW 0x00000025
477 #define EVENT_DATA_RSSI_HIGH 0x00000026
478 #define EVENT_DATA_SNR_HIGH 0x00000027
479 #define EVENT_LINK_QUALITY 0x00000028
480 #define EVENT_PORT_RELEASE 0x0000002b
481 #define EVENT_UAP_STA_DEAUTH 0x0000002c
482 #define EVENT_UAP_STA_ASSOC 0x0000002d
483 #define EVENT_UAP_BSS_START 0x0000002e
484 #define EVENT_PRE_BEACON_LOST 0x00000031
485 #define EVENT_ADDBA 0x00000033
486 #define EVENT_DELBA 0x00000034
487 #define EVENT_BA_STREAM_TIEMOUT 0x00000037
488 #define EVENT_AMSDU_AGGR_CTRL 0x00000042
489 #define EVENT_UAP_BSS_IDLE 0x00000043
490 #define EVENT_UAP_BSS_ACTIVE 0x00000044
491 #define EVENT_WEP_ICV_ERR 0x00000046
492 #define EVENT_HS_ACT_REQ 0x00000047
493 #define EVENT_BW_CHANGE 0x00000048
494 #define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
495 #define EVENT_HOSTWAKE_STAIE 0x0000004d
496 #define EVENT_CHANNEL_SWITCH_ANN 0x00000050
497 #define EVENT_TDLS_GENERIC_EVENT 0x00000052
498 #define EVENT_RADAR_DETECTED 0x00000053
499 #define EVENT_CHANNEL_REPORT_RDY 0x00000054
500 #define EVENT_EXT_SCAN_REPORT 0x00000058
501 #define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f
502 #define EVENT_TX_STATUS_REPORT 0x00000074
504 #define EVENT_ID_MASK 0xffff
505 #define BSS_NUM_MASK 0xf
507 #define EVENT_GET_BSS_NUM(event_cause) \
508 (((event_cause) >> 16) & BSS_NUM_MASK)
510 #define EVENT_GET_BSS_TYPE(event_cause) \
511 (((event_cause) >> 24) & 0x00ff)
513 #define MWIFIEX_MAX_PATTERN_LEN 20
514 #define MWIFIEX_MAX_OFFSET_LEN 100
515 #define STACK_NBYTES 100
517 #define TYPE_BYTESEQ 2
518 #define MAX_OPERAND 0x40
519 #define TYPE_EQ (MAX_OPERAND+1)
520 #define TYPE_EQ_DNUM (MAX_OPERAND+2)
521 #define TYPE_EQ_BIT (MAX_OPERAND+3)
522 #define TYPE_AND (MAX_OPERAND+4)
523 #define TYPE_OR (MAX_OPERAND+5)
524 #define MEF_MODE_HOST_SLEEP 1
525 #define MEF_ACTION_ALLOW_AND_WAKEUP_HOST 3
526 #define MWIFIEX_CRITERIA_BROADCAST BIT(0)
527 #define MWIFIEX_CRITERIA_UNICAST BIT(1)
528 #define MWIFIEX_CRITERIA_MULTICAST BIT(3)
530 #define ACT_TDLS_DELETE 0x00
531 #define ACT_TDLS_CREATE 0x01
532 #define ACT_TDLS_CONFIG 0x02
533 #define TDLS_EVENT_LINK_TEAR_DOWN 3
535 #define MWIFIEX_FW_V15 15
537 #define MWIFIEX_MASTER_RADAR_DET_MASK BIT(1)
539 struct mwifiex_ie_types_header
{
544 struct mwifiex_ie_types_data
{
545 struct mwifiex_ie_types_header header
;
549 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
550 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
551 #define MWIFIEX_TXPD_FLAGS_TDLS_PACKET 0x10
552 #define MWIFIEX_RXPD_FLAGS_TDLS_PACKET 0x01
553 #define MWIFIEX_TXPD_FLAGS_REQ_TX_STATUS 0x20
558 __le16 tx_pkt_length
;
559 __le16 tx_pkt_offset
;
573 __le16 rx_pkt_length
;
574 __le16 rx_pkt_offset
;
582 /* For: Non-802.11 AC cards
584 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
585 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
586 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
588 * For: 802.11 AC cards
589 * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10
590 * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01
591 * BW80 = 10 BW160 = 11
592 * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1
593 * [Bit 5] STBC support Enabled = 1
594 * [Bit 6] LDPC support Enabled = 1
605 __le16 tx_pkt_length
;
606 __le16 tx_pkt_offset
;
620 __le16 rx_pkt_length
;
621 __le16 rx_pkt_offset
;
628 struct mwifiex_fw_chan_stats
{
638 enum mwifiex_chan_scan_mode_bitmasks
{
639 MWIFIEX_PASSIVE_SCAN
= BIT(0),
640 MWIFIEX_DISABLE_CHAN_FILT
= BIT(1),
643 struct mwifiex_chan_scan_param_set
{
646 u8 chan_scan_mode_bitmap
;
647 __le16 min_scan_time
;
648 __le16 max_scan_time
;
651 struct mwifiex_ie_types_chan_list_param_set
{
652 struct mwifiex_ie_types_header header
;
653 struct mwifiex_chan_scan_param_set chan_scan_param
[1];
656 struct chan_band_param_set
{
661 struct mwifiex_ie_types_chan_band_list_param_set
{
662 struct mwifiex_ie_types_header header
;
663 struct chan_band_param_set chan_band_param
[1];
666 struct mwifiex_ie_types_rates_param_set
{
667 struct mwifiex_ie_types_header header
;
671 struct mwifiex_ie_types_ssid_param_set
{
672 struct mwifiex_ie_types_header header
;
676 struct mwifiex_ie_types_num_probes
{
677 struct mwifiex_ie_types_header header
;
681 struct mwifiex_ie_types_scan_chan_gap
{
682 struct mwifiex_ie_types_header header
;
683 /* time gap in TUs to be used between two consecutive channels scan */
687 struct mwifiex_ietypes_chanstats
{
688 struct mwifiex_ie_types_header header
;
689 struct mwifiex_fw_chan_stats chanstats
[0];
692 struct mwifiex_ie_types_wildcard_ssid_params
{
693 struct mwifiex_ie_types_header header
;
698 #define TSF_DATA_SIZE 8
699 struct mwifiex_ie_types_tsf_timestamp
{
700 struct mwifiex_ie_types_header header
;
704 struct mwifiex_cf_param_set
{
707 __le16 cfp_max_duration
;
708 __le16 cfp_duration_remaining
;
711 struct mwifiex_ibss_param_set
{
715 struct mwifiex_ie_types_ss_param_set
{
716 struct mwifiex_ie_types_header header
;
718 struct mwifiex_cf_param_set cf_param_set
[1];
719 struct mwifiex_ibss_param_set ibss_param_set
[1];
723 struct mwifiex_fh_param_set
{
730 struct mwifiex_ds_param_set
{
734 struct mwifiex_ie_types_phy_param_set
{
735 struct mwifiex_ie_types_header header
;
737 struct mwifiex_fh_param_set fh_param_set
[1];
738 struct mwifiex_ds_param_set ds_param_set
[1];
742 struct mwifiex_ie_types_auth_type
{
743 struct mwifiex_ie_types_header header
;
747 struct mwifiex_ie_types_vendor_param_set
{
748 struct mwifiex_ie_types_header header
;
749 u8 ie
[MWIFIEX_MAX_VSIE_LEN
];
752 #define MWIFIEX_TDLS_IDLE_TIMEOUT_IN_SEC 60
754 struct mwifiex_ie_types_tdls_idle_timeout
{
755 struct mwifiex_ie_types_header header
;
759 struct mwifiex_ie_types_rsn_param_set
{
760 struct mwifiex_ie_types_header header
;
764 #define KEYPARAMSET_FIXED_LEN 6
766 struct mwifiex_ie_type_key_param_set
{
775 #define IGTK_PN_LEN 8
777 struct mwifiex_cmac_param
{
779 u8 key
[WLAN_KEY_LEN_AES_CMAC
];
782 struct mwifiex_wep_param
{
784 u8 key
[WLAN_KEY_LEN_WEP104
];
787 struct mwifiex_tkip_param
{
790 u8 key
[WLAN_KEY_LEN_TKIP
];
793 struct mwifiex_aes_param
{
796 u8 key
[WLAN_KEY_LEN_CCMP
];
799 struct mwifiex_wapi_param
{
802 u8 key
[WLAN_KEY_LEN_SMS4
];
805 struct mwifiex_cmac_aes_param
{
808 u8 key
[WLAN_KEY_LEN_AES_CMAC
];
811 struct mwifiex_ie_type_key_param_set_v2
{
814 u8 mac_addr
[ETH_ALEN
];
819 struct mwifiex_wep_param wep
;
820 struct mwifiex_tkip_param tkip
;
821 struct mwifiex_aes_param aes
;
822 struct mwifiex_wapi_param wapi
;
823 struct mwifiex_cmac_aes_param cmac_aes
;
827 struct host_cmd_ds_802_11_key_material_v2
{
829 struct mwifiex_ie_type_key_param_set_v2 key_param_set
;
832 struct host_cmd_ds_802_11_key_material
{
834 struct mwifiex_ie_type_key_param_set key_param_set
;
837 struct host_cmd_ds_gen
{
844 #define S_DS_GEN sizeof(struct host_cmd_ds_gen)
846 enum sleep_resp_ctrl
{
851 struct mwifiex_ps_param
{
852 __le16 null_pkt_interval
;
853 __le16 multiple_dtims
;
854 __le16 bcn_miss_timeout
;
855 __le16 local_listen_interval
;
856 __le16 adhoc_wake_period
;
861 #define BITMAP_AUTO_DS 0x01
862 #define BITMAP_STA_PS 0x10
864 struct mwifiex_ie_types_auto_ds_param
{
865 struct mwifiex_ie_types_header header
;
866 __le16 deep_sleep_timeout
;
869 struct mwifiex_ie_types_ps_param
{
870 struct mwifiex_ie_types_header header
;
871 struct mwifiex_ps_param param
;
874 struct host_cmd_ds_802_11_ps_mode_enh
{
878 struct mwifiex_ps_param opt_ps
;
888 struct hw_spec_api_rev
{
889 struct mwifiex_ie_types_header header
;
895 struct host_cmd_ds_get_hw_spec
{
896 __le16 hw_if_version
;
899 __le16 num_of_mcast_adr
;
900 u8 permanent_addr
[ETH_ALEN
];
902 __le16 number_of_antenna
;
903 __le32 fw_release_number
;
908 __le32 dot_11n_dev_cap
;
910 __le16 mp_end_port
; /* SDIO only, reserved for other interfacces */
911 __le16 mgmt_buf_count
; /* mgmt IE buffer count */
914 __le32 dot_11ac_dev_cap
;
915 __le32 dot_11ac_mcs_support
;
919 struct host_cmd_ds_802_11_rssi_info
{
924 long long reserved_1
;
927 struct host_cmd_ds_802_11_rssi_info_rsp
{
931 __le16 data_rssi_last
;
933 __le16 data_rssi_avg
;
935 __le16 bcn_rssi_last
;
942 struct host_cmd_ds_802_11_mac_address
{
944 u8 mac_addr
[ETH_ALEN
];
947 struct host_cmd_ds_mac_control
{
952 struct host_cmd_ds_mac_multicast_adr
{
955 u8 mac_list
[MWIFIEX_MAX_MULTICAST_LIST_SIZE
][ETH_ALEN
];
958 struct host_cmd_ds_802_11_deauthenticate
{
959 u8 mac_addr
[ETH_ALEN
];
963 struct host_cmd_ds_802_11_associate
{
964 u8 peer_sta_addr
[ETH_ALEN
];
965 __le16 cap_info_bitmap
;
966 __le16 listen_interval
;
967 __le16 beacon_period
;
971 struct ieee_types_assoc_rsp
{
972 __le16 cap_info_bitmap
;
978 struct host_cmd_ds_802_11_associate_rsp
{
979 struct ieee_types_assoc_rsp assoc_rsp
;
982 struct ieee_types_cf_param_set
{
987 __le16 cfp_max_duration
;
988 __le16 cfp_duration_remaining
;
991 struct ieee_types_ibss_param_set
{
997 union ieee_types_ss_param_set
{
998 struct ieee_types_cf_param_set cf_param_set
;
999 struct ieee_types_ibss_param_set ibss_param_set
;
1002 struct ieee_types_fh_param_set
{
1011 struct ieee_types_ds_param_set
{
1017 union ieee_types_phy_param_set
{
1018 struct ieee_types_fh_param_set fh_param_set
;
1019 struct ieee_types_ds_param_set ds_param_set
;
1022 struct ieee_types_oper_mode_ntf
{
1028 struct host_cmd_ds_802_11_ad_hoc_start
{
1029 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
1031 __le16 beacon_period
;
1033 union ieee_types_ss_param_set ss_param_set
;
1034 union ieee_types_phy_param_set phy_param_set
;
1036 __le16 cap_info_bitmap
;
1037 u8 data_rate
[HOSTCMD_SUPPORTED_RATES
];
1040 struct host_cmd_ds_802_11_ad_hoc_result
{
1045 struct adhoc_bss_desc
{
1047 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
1049 __le16 beacon_period
;
1053 union ieee_types_phy_param_set phy_param_set
;
1054 union ieee_types_ss_param_set ss_param_set
;
1055 __le16 cap_info_bitmap
;
1056 u8 data_rates
[HOSTCMD_SUPPORTED_RATES
];
1059 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
1060 * It is used in the Adhoc join command and will cause a
1061 * binary layout mismatch with the firmware
1065 struct host_cmd_ds_802_11_ad_hoc_join
{
1066 struct adhoc_bss_desc bss_descriptor
;
1071 struct host_cmd_ds_802_11_get_log
{
1072 __le32 mcast_tx_frame
;
1081 __le32 mcast_rx_frame
;
1085 __le32 wep_icv_err_cnt
[4];
1087 __le32 bcn_miss_cnt
;
1090 /* Enumeration for rate format */
1091 enum _mwifiex_rate_format
{
1092 MWIFIEX_RATE_FORMAT_LG
= 0,
1093 MWIFIEX_RATE_FORMAT_HT
,
1094 MWIFIEX_RATE_FORMAT_VHT
,
1095 MWIFIEX_RATE_FORMAT_AUTO
= 0xFF,
1098 struct host_cmd_ds_tx_rate_query
{
1100 /* Tx Rate Info: For 802.11 AC cards
1102 * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2
1103 * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3
1104 * [Bit 4] HT/VHT Guard Interval: LGI = 0, SGI = 1
1106 * For non-802.11 AC cards
1107 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
1108 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
1109 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
1114 enum Host_Sleep_Action
{
1115 HS_CONFIGURE
= 0x0001,
1116 HS_ACTIVATE
= 0x0002,
1119 struct mwifiex_hs_config_param
{
1125 struct hs_activate_param
{
1129 struct host_cmd_ds_802_11_hs_cfg_enh
{
1133 struct mwifiex_hs_config_param hs_config
;
1134 struct hs_activate_param hs_activate
;
1138 enum SNMP_MIB_INDEX
{
1142 SHORT_RETRY_LIM_I
= 6,
1143 LONG_RETRY_LIM_I
= 7,
1149 #define MAX_SNMP_BUF_SIZE 128
1151 struct host_cmd_ds_802_11_snmp_mib
{
1158 struct mwifiex_rate_scope
{
1161 __le16 hr_dsss_rate_bitmap
;
1162 __le16 ofdm_rate_bitmap
;
1163 __le16 ht_mcs_rate_bitmap
[8];
1164 __le16 vht_mcs_rate_bitmap
[8];
1167 struct mwifiex_rate_drop_pattern
{
1170 __le32 rate_drop_mode
;
1173 struct host_cmd_ds_tx_rate_cfg
{
1178 struct mwifiex_power_group
{
1179 u8 modulation_class
;
1189 struct mwifiex_types_power_group
{
1194 struct host_cmd_ds_txpwr_cfg
{
1200 struct host_cmd_ds_rf_tx_pwr
{
1207 struct host_cmd_ds_rf_ant_mimo
{
1214 struct host_cmd_ds_rf_ant_siso
{
1219 struct host_cmd_ds_tdls_oper
{
1222 u8 peer_mac
[ETH_ALEN
];
1225 struct mwifiex_chan_desc
{
1231 struct host_cmd_ds_chan_rpt_req
{
1232 struct mwifiex_chan_desc chan_desc
;
1233 __le32 msec_dwell_time
;
1236 struct host_cmd_ds_chan_rpt_event
{
1243 struct mwifiex_fixed_bcn_param
{
1245 __le16 beacon_period
;
1246 __le16 cap_info_bitmap
;
1249 struct mwifiex_event_scan_result
{
1259 struct tx_status_event
{
1265 #define MWIFIEX_USER_SCAN_CHAN_MAX 50
1267 #define MWIFIEX_MAX_SSID_LIST_LENGTH 10
1269 struct mwifiex_scan_cmd_config
{
1271 * BSS mode to be sent in the firmware command
1275 /* Specific BSSID used to filter scan results in the firmware */
1276 u8 specific_bssid
[ETH_ALEN
];
1278 /* Length of TLVs sent in command starting at tlvBuffer */
1282 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
1284 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
1285 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
1287 u8 tlv_buf
[1]; /* SSID TLV(s) and ChanList TLVs are stored
1291 struct mwifiex_user_scan_chan
{
1299 struct mwifiex_user_scan_cfg
{
1301 * BSS mode to be sent in the firmware command
1304 /* Configure the number of probe requests for active chan scans */
1307 /* BSSID filter sent in the firmware command to limit the results */
1308 u8 specific_bssid
[ETH_ALEN
];
1309 /* SSID filter list used in the firmware to limit the scan results */
1310 struct cfg80211_ssid
*ssid_list
;
1312 /* Variable number (fixed maximum) of channels to scan up */
1313 struct mwifiex_user_scan_chan chan_list
[MWIFIEX_USER_SCAN_CHAN_MAX
];
1323 struct host_cmd_ds_802_11_scan
{
1329 struct host_cmd_ds_802_11_scan_rsp
{
1330 __le16 bss_descript_size
;
1332 u8 bss_desc_and_tlv_buffer
[1];
1335 struct host_cmd_ds_802_11_scan_ext
{
1340 struct mwifiex_ie_types_bss_scan_rsp
{
1341 struct mwifiex_ie_types_header header
;
1346 struct mwifiex_ie_types_bss_scan_info
{
1347 struct mwifiex_ie_types_header header
;
1350 u8 cca_busy_fraction
;
1357 struct host_cmd_ds_802_11_bg_scan_query
{
1361 struct host_cmd_ds_802_11_bg_scan_query_rsp
{
1362 __le32 report_condition
;
1363 struct host_cmd_ds_802_11_scan_rsp scan_resp
;
1366 struct mwifiex_ietypes_domain_param_set
{
1367 struct mwifiex_ie_types_header header
;
1368 u8 country_code
[IEEE80211_COUNTRY_STRING_LEN
];
1369 struct ieee80211_country_ie_triplet triplet
[1];
1372 struct host_cmd_ds_802_11d_domain_info
{
1374 struct mwifiex_ietypes_domain_param_set domain
;
1377 struct host_cmd_ds_802_11d_domain_info_rsp
{
1379 struct mwifiex_ietypes_domain_param_set domain
;
1382 struct host_cmd_ds_11n_addba_req
{
1384 u8 peer_mac_addr
[ETH_ALEN
];
1386 __le16 block_ack_param_set
;
1387 __le16 block_ack_tmo
;
1391 struct host_cmd_ds_11n_addba_rsp
{
1393 u8 peer_mac_addr
[ETH_ALEN
];
1396 __le16 block_ack_param_set
;
1397 __le16 block_ack_tmo
;
1401 struct host_cmd_ds_11n_delba
{
1403 u8 peer_mac_addr
[ETH_ALEN
];
1404 __le16 del_ba_param_set
;
1409 struct host_cmd_ds_11n_batimeout
{
1411 u8 peer_mac_addr
[ETH_ALEN
];
1415 struct host_cmd_ds_11n_cfg
{
1419 __le16 misc_config
; /* Needed for 802.11AC cards only */
1422 struct host_cmd_ds_txbuf_cfg
{
1425 __le16 mp_end_port
; /* SDIO only, reserved for other interfacces */
1429 struct host_cmd_ds_amsdu_aggr_ctrl
{
1432 __le16 curr_buf_size
;
1435 struct host_cmd_ds_sta_deauth
{
1440 struct mwifiex_ie_types_pwr_capability
{
1441 struct mwifiex_ie_types_header header
;
1446 struct mwifiex_ie_types_local_pwr_constraint
{
1447 struct mwifiex_ie_types_header header
;
1452 struct mwifiex_ie_types_wmm_param_set
{
1453 struct mwifiex_ie_types_header header
;
1457 struct mwifiex_ie_types_wmm_queue_status
{
1458 struct mwifiex_ie_types_header header
;
1467 struct ieee_types_vendor_header
{
1470 u8 oui
[4]; /* 0~2: oui, 3: oui_type */
1475 struct ieee_types_wmm_parameter
{
1477 * WMM Parameter IE - Vendor Specific Header:
1478 * element_id [221/0xdd]
1485 struct ieee_types_vendor_header vend_hdr
;
1488 struct ieee_types_wmm_ac_parameters ac_params
[IEEE80211_NUM_ACS
];
1491 struct ieee_types_wmm_info
{
1494 * WMM Info IE - Vendor Specific Header:
1495 * element_id [221/0xdd]
1502 struct ieee_types_vendor_header vend_hdr
;
1507 struct host_cmd_ds_wmm_get_status
{
1508 u8 queue_status_tlv
[sizeof(struct mwifiex_ie_types_wmm_queue_status
) *
1510 u8 wmm_param_tlv
[sizeof(struct ieee_types_wmm_parameter
) + 2];
1513 struct mwifiex_wmm_ac_status
{
1519 struct mwifiex_ie_types_htcap
{
1520 struct mwifiex_ie_types_header header
;
1521 struct ieee80211_ht_cap ht_cap
;
1524 struct mwifiex_ie_types_vhtcap
{
1525 struct mwifiex_ie_types_header header
;
1526 struct ieee80211_vht_cap vht_cap
;
1529 struct mwifiex_ie_types_aid
{
1530 struct mwifiex_ie_types_header header
;
1534 struct mwifiex_ie_types_oper_mode_ntf
{
1535 struct mwifiex_ie_types_header header
;
1539 /* VHT Operations IE */
1540 struct mwifiex_ie_types_vht_oper
{
1541 struct mwifiex_ie_types_header header
;
1543 u8 chan_center_freq_1
;
1544 u8 chan_center_freq_2
;
1545 /* Basic MCS set map, each 2 bits stands for a NSS */
1546 __le16 basic_mcs_map
;
1549 struct mwifiex_ie_types_wmmcap
{
1550 struct mwifiex_ie_types_header header
;
1551 struct mwifiex_types_wmm_info wmm_info
;
1554 struct mwifiex_ie_types_htinfo
{
1555 struct mwifiex_ie_types_header header
;
1556 struct ieee80211_ht_operation ht_oper
;
1559 struct mwifiex_ie_types_2040bssco
{
1560 struct mwifiex_ie_types_header header
;
1564 struct mwifiex_ie_types_extcap
{
1565 struct mwifiex_ie_types_header header
;
1569 struct mwifiex_ie_types_qos_info
{
1570 struct mwifiex_ie_types_header header
;
1574 struct host_cmd_ds_mac_reg_access
{
1580 struct host_cmd_ds_bbp_reg_access
{
1587 struct host_cmd_ds_rf_reg_access
{
1594 struct host_cmd_ds_pmic_reg_access
{
1601 struct host_cmd_ds_802_11_eeprom_access
{
1609 struct mwifiex_assoc_event
{
1610 u8 sta_addr
[ETH_ALEN
];
1613 __le16 frame_control
;
1615 __le16 listen_interval
;
1619 struct host_cmd_ds_sys_config
{
1624 struct host_cmd_11ac_vht_cfg
{
1633 struct host_cmd_tlv_akmp
{
1634 struct mwifiex_ie_types_header header
;
1636 __le16 key_mgmt_operation
;
1639 struct host_cmd_tlv_pwk_cipher
{
1640 struct mwifiex_ie_types_header header
;
1646 struct host_cmd_tlv_gwk_cipher
{
1647 struct mwifiex_ie_types_header header
;
1652 struct host_cmd_tlv_passphrase
{
1653 struct mwifiex_ie_types_header header
;
1657 struct host_cmd_tlv_wep_key
{
1658 struct mwifiex_ie_types_header header
;
1664 struct host_cmd_tlv_auth_type
{
1665 struct mwifiex_ie_types_header header
;
1669 struct host_cmd_tlv_encrypt_protocol
{
1670 struct mwifiex_ie_types_header header
;
1674 struct host_cmd_tlv_ssid
{
1675 struct mwifiex_ie_types_header header
;
1679 struct host_cmd_tlv_rates
{
1680 struct mwifiex_ie_types_header header
;
1684 struct mwifiex_ie_types_bssid_list
{
1685 struct mwifiex_ie_types_header header
;
1689 struct host_cmd_tlv_bcast_ssid
{
1690 struct mwifiex_ie_types_header header
;
1694 struct host_cmd_tlv_beacon_period
{
1695 struct mwifiex_ie_types_header header
;
1699 struct host_cmd_tlv_dtim_period
{
1700 struct mwifiex_ie_types_header header
;
1704 struct host_cmd_tlv_frag_threshold
{
1705 struct mwifiex_ie_types_header header
;
1709 struct host_cmd_tlv_rts_threshold
{
1710 struct mwifiex_ie_types_header header
;
1714 struct host_cmd_tlv_retry_limit
{
1715 struct mwifiex_ie_types_header header
;
1719 struct host_cmd_tlv_mac_addr
{
1720 struct mwifiex_ie_types_header header
;
1721 u8 mac_addr
[ETH_ALEN
];
1724 struct host_cmd_tlv_channel_band
{
1725 struct mwifiex_ie_types_header header
;
1730 struct host_cmd_tlv_ageout_timer
{
1731 struct mwifiex_ie_types_header header
;
1732 __le32 sta_ao_timer
;
1735 struct host_cmd_ds_version_ext
{
1737 char version_str
[128];
1740 struct host_cmd_ds_mgmt_frame_reg
{
1745 struct host_cmd_ds_p2p_mode_cfg
{
1750 struct host_cmd_ds_remain_on_chan
{
1759 struct host_cmd_ds_802_11_ibss_status
{
1763 __le16 beacon_interval
;
1765 __le16 use_g_rate_protect
;
1768 struct mwifiex_fw_mef_entry
{
1775 struct host_cmd_ds_mef_cfg
{
1778 struct mwifiex_fw_mef_entry mef_entry
[0];
1781 #define CONNECTION_TYPE_INFRA 0
1782 #define CONNECTION_TYPE_ADHOC 1
1783 #define CONNECTION_TYPE_AP 2
1785 struct host_cmd_ds_set_bss_mode
{
1789 struct host_cmd_ds_pcie_details
{
1790 /* TX buffer descriptor ring address */
1793 /* TX buffer descriptor ring count */
1796 /* RX buffer descriptor ring address */
1799 /* RX buffer descriptor ring count */
1802 /* Event buffer descriptor ring address */
1805 /* Event buffer descriptor ring count */
1808 /* Sleep cookie buffer physical address */
1809 u32 sleep_cookie_addr_lo
;
1810 u32 sleep_cookie_addr_hi
;
1813 struct mwifiex_ie_types_rssi_threshold
{
1814 struct mwifiex_ie_types_header header
;
1819 #define MWIFIEX_DFS_REC_HDR_LEN 8
1820 #define MWIFIEX_DFS_REC_HDR_NUM 10
1821 #define MWIFIEX_BIN_COUNTER_LEN 7
1823 struct mwifiex_radar_det_event
{
1824 __le32 detect_count
;
1825 u8 reg_domain
; /*1=fcc, 2=etsi, 3=mic*/
1826 u8 det_type
; /*0=none, 1=pw(chirp), 2=pri(radar)*/
1827 __le16 pw_chirp_type
;
1832 u8 bin_counter
[MWIFIEX_BIN_COUNTER_LEN
];
1834 u8 dfs_record_hdr
[MWIFIEX_DFS_REC_HDR_NUM
][MWIFIEX_DFS_REC_HDR_LEN
];
1838 struct meas_rpt_map
{
1842 u8 unidentified_sig
:1;
1847 struct mwifiex_ie_types_chan_rpt_data
{
1848 struct mwifiex_ie_types_header header
;
1849 struct meas_rpt_map map
;
1852 struct host_cmd_ds_802_11_subsc_evt
{
1857 struct mwifiex_tdls_generic_event
{
1859 u8 peer_mac
[ETH_ALEN
];
1868 __le16 mgmt_subtype_mask
;
1870 u8 ie_buffer
[IEEE_MAX_IE_SIZE
];
1873 #define MAX_MGMT_IE_INDEX 16
1874 struct mwifiex_ie_list
{
1877 struct mwifiex_ie ie_list
[MAX_MGMT_IE_INDEX
];
1880 struct coalesce_filt_field_param
{
1884 u8 operand_byte_stream
[4];
1887 struct coalesce_receive_filt_rule
{
1888 struct mwifiex_ie_types_header header
;
1891 __le16 max_coalescing_delay
;
1892 struct coalesce_filt_field_param params
[0];
1895 struct host_cmd_ds_coalesce_cfg
{
1897 __le16 num_of_rules
;
1898 struct coalesce_receive_filt_rule rule
[0];
1901 struct host_cmd_ds_command
{
1907 struct host_cmd_ds_get_hw_spec hw_spec
;
1908 struct host_cmd_ds_mac_control mac_ctrl
;
1909 struct host_cmd_ds_802_11_mac_address mac_addr
;
1910 struct host_cmd_ds_mac_multicast_adr mc_addr
;
1911 struct host_cmd_ds_802_11_get_log get_log
;
1912 struct host_cmd_ds_802_11_rssi_info rssi_info
;
1913 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp
;
1914 struct host_cmd_ds_802_11_snmp_mib smib
;
1915 struct host_cmd_ds_tx_rate_query tx_rate
;
1916 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg
;
1917 struct host_cmd_ds_txpwr_cfg txp_cfg
;
1918 struct host_cmd_ds_rf_tx_pwr txp
;
1919 struct host_cmd_ds_rf_ant_mimo ant_mimo
;
1920 struct host_cmd_ds_rf_ant_siso ant_siso
;
1921 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh
;
1922 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg
;
1923 struct host_cmd_ds_802_11_scan scan
;
1924 struct host_cmd_ds_802_11_scan_ext ext_scan
;
1925 struct host_cmd_ds_802_11_scan_rsp scan_resp
;
1926 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query
;
1927 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp
;
1928 struct host_cmd_ds_802_11_associate associate
;
1929 struct host_cmd_ds_802_11_associate_rsp associate_rsp
;
1930 struct host_cmd_ds_802_11_deauthenticate deauth
;
1931 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start
;
1932 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result
;
1933 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join
;
1934 struct host_cmd_ds_802_11d_domain_info domain_info
;
1935 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp
;
1936 struct host_cmd_ds_11n_addba_req add_ba_req
;
1937 struct host_cmd_ds_11n_addba_rsp add_ba_rsp
;
1938 struct host_cmd_ds_11n_delba del_ba
;
1939 struct host_cmd_ds_txbuf_cfg tx_buf
;
1940 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl
;
1941 struct host_cmd_ds_11n_cfg htcfg
;
1942 struct host_cmd_ds_wmm_get_status get_wmm_status
;
1943 struct host_cmd_ds_802_11_key_material key_material
;
1944 struct host_cmd_ds_802_11_key_material_v2 key_material_v2
;
1945 struct host_cmd_ds_version_ext verext
;
1946 struct host_cmd_ds_mgmt_frame_reg reg_mask
;
1947 struct host_cmd_ds_remain_on_chan roc_cfg
;
1948 struct host_cmd_ds_p2p_mode_cfg mode_cfg
;
1949 struct host_cmd_ds_802_11_ibss_status ibss_coalescing
;
1950 struct host_cmd_ds_mef_cfg mef_cfg
;
1951 struct host_cmd_ds_mac_reg_access mac_reg
;
1952 struct host_cmd_ds_bbp_reg_access bbp_reg
;
1953 struct host_cmd_ds_rf_reg_access rf_reg
;
1954 struct host_cmd_ds_pmic_reg_access pmic_reg
;
1955 struct host_cmd_ds_set_bss_mode bss_mode
;
1956 struct host_cmd_ds_pcie_details pcie_host_spec
;
1957 struct host_cmd_ds_802_11_eeprom_access eeprom
;
1958 struct host_cmd_ds_802_11_subsc_evt subsc_evt
;
1959 struct host_cmd_ds_sys_config uap_sys_config
;
1960 struct host_cmd_ds_sta_deauth sta_deauth
;
1961 struct host_cmd_11ac_vht_cfg vht_cfg
;
1962 struct host_cmd_ds_coalesce_cfg coalesce_cfg
;
1963 struct host_cmd_ds_tdls_oper tdls_oper
;
1964 struct host_cmd_ds_chan_rpt_req chan_rpt_req
;
1968 struct mwifiex_opt_sleep_confirm
{
1976 #endif /* !_MWIFIEX_FW_H_ */