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