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