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