mwifiex: parse rate info for AP
[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 u16 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
54 #define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11))
55 #define IS_SUPPORT_MULTI_BANDS(adapter) \
56 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
57 #define GET_FW_DEFAULT_BANDS(adapter) \
58 ((adapter->fw_cap_info >> 8) & ALL_802_11_BANDS)
59
60 #define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
61
62 #define KEY_INFO_ENABLED 0x01
63 enum KEY_TYPE_ID {
64 KEY_TYPE_ID_WEP = 0,
65 KEY_TYPE_ID_TKIP,
66 KEY_TYPE_ID_AES,
67 KEY_TYPE_ID_WAPI,
68 KEY_TYPE_ID_AES_CMAC,
69 };
70 #define KEY_MCAST BIT(0)
71 #define KEY_UNICAST BIT(1)
72 #define KEY_ENABLED BIT(2)
73 #define KEY_IGTK BIT(10)
74
75 #define WAPI_KEY_LEN 50
76
77 #define MAX_POLL_TRIES 100
78
79 #define MAX_MULTI_INTERFACE_POLL_TRIES 1000
80
81 #define MAX_FIRMWARE_POLL_TRIES 100
82
83 #define FIRMWARE_READY_SDIO 0xfedc
84 #define FIRMWARE_READY_PCIE 0xfedcba00
85
86 enum mwifiex_usb_ep {
87 MWIFIEX_USB_EP_CMD_EVENT = 1,
88 MWIFIEX_USB_EP_DATA = 2,
89 };
90
91 enum MWIFIEX_802_11_PRIVACY_FILTER {
92 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
93 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
94 };
95
96 #define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
97
98 #define UAP_BSS_PARAMS_I 0
99 #define UAP_CUSTOM_IE_I 1
100 #define MWIFIEX_AUTO_IDX_MASK 0xffff
101 #define MWIFIEX_DELETE_MASK 0x0000
102 #define MGMT_MASK_ASSOC_REQ 0x01
103 #define MGMT_MASK_REASSOC_REQ 0x04
104 #define MGMT_MASK_ASSOC_RESP 0x02
105 #define MGMT_MASK_REASSOC_RESP 0x08
106 #define MGMT_MASK_PROBE_REQ 0x10
107 #define MGMT_MASK_PROBE_RESP 0x20
108 #define MGMT_MASK_BEACON 0x100
109
110 #define TLV_TYPE_UAP_SSID 0x0000
111 #define TLV_TYPE_UAP_RATES 0x0001
112
113 #define PROPRIETARY_TLV_BASE_ID 0x0100
114 #define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
115 #define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
116 #define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
117 #define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
118 #define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
119 #define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
120 #define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
121 #define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
122 #define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
123 #define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
124 #define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
125 #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
126 #define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
127 #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
128 #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
129 #define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
130 #define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
131 #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
132 #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
133 #define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
134 #define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
135 #define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
136 #define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
137 #define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
138 #define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
139 #define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
140 #define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
141 #define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
142 #define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
143 #define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
144 #define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
145 #define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
146
147 #define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
148
149 #define SSN_MASK 0xfff0
150
151 #define BA_RESULT_SUCCESS 0x0
152 #define BA_RESULT_TIMEOUT 0x2
153
154 #define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
155
156 #define BA_STREAM_NOT_ALLOWED 0xff
157
158 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
159 priv->adapter->config_bands & BAND_AN) && \
160 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
161 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
162 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
163
164 #define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
165 #define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
166
167 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
168
169 #define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
170 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
171 IEEE80211_HT_CAP_SM_PS)
172
173 #define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
174
175 /* dev_cap bitmap
176 * BIT
177 * 0-16 reserved
178 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
179 * 18-22 reserved
180 * 23 IEEE80211_HT_CAP_SGI_20
181 * 24 IEEE80211_HT_CAP_SGI_40
182 * 25 IEEE80211_HT_CAP_TX_STBC
183 * 26 IEEE80211_HT_CAP_RX_STBC
184 * 27-28 reserved
185 * 29 IEEE80211_HT_CAP_GRN_FLD
186 * 30-31 reserved
187 */
188 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
189 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
190 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
191 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
192 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
193 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
194
195 /* httxcfg bitmap
196 * 0 reserved
197 * 1 20/40 Mhz enable(1)/disable(0)
198 * 2-3 reserved
199 * 4 green field enable(1)/disable(0)
200 * 5 short GI in 20 Mhz enable(1)/disable(0)
201 * 6 short GI in 40 Mhz enable(1)/disable(0)
202 * 7-15 reserved
203 */
204 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
205
206 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
207 #define SETHT_MCS32(x) (x[4] |= 1)
208 #define HT_STREAM_2X2 0x22
209
210 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
211
212 #define LLC_SNAP_LEN 8
213
214 #define MOD_CLASS_HR_DSSS 0x03
215 #define MOD_CLASS_OFDM 0x07
216 #define MOD_CLASS_HT 0x08
217 #define HT_BW_20 0
218 #define HT_BW_40 1
219
220 #define HostCmd_CMD_GET_HW_SPEC 0x0003
221 #define HostCmd_CMD_802_11_SCAN 0x0006
222 #define HostCmd_CMD_802_11_GET_LOG 0x000b
223 #define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
224 #define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
225 #define HostCmd_CMD_802_11_ASSOCIATE 0x0012
226 #define HostCmd_CMD_802_11_SNMP_MIB 0x0016
227 #define HostCmd_CMD_MAC_REG_ACCESS 0x0019
228 #define HostCmd_CMD_BBP_REG_ACCESS 0x001a
229 #define HostCmd_CMD_RF_REG_ACCESS 0x001b
230 #define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
231 #define HostCmd_CMD_RF_TX_PWR 0x001e
232 #define HostCmd_CMD_RF_ANTENNA 0x0020
233 #define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
234 #define HostCmd_CMD_MAC_CONTROL 0x0028
235 #define HostCmd_CMD_802_11_AD_HOC_START 0x002b
236 #define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
237 #define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
238 #define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
239 #define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
240 #define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
241 #define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
242 #define HostCmd_CMD_WMM_GET_STATUS 0x0071
243 #define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
244 #define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
245 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
246 #define HostCmd_CMD_VERSION_EXT 0x0097
247 #define HostCmd_CMD_RSSI_INFO 0x00a4
248 #define HostCmd_CMD_FUNC_INIT 0x00a9
249 #define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
250 #define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
251 #define HostCmd_CMD_UAP_BSS_START 0x00b1
252 #define HostCmd_CMD_UAP_BSS_STOP 0x00b2
253 #define HostCmd_CMD_11N_CFG 0x00cd
254 #define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
255 #define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
256 #define HostCmd_CMD_11N_DELBA 0x00d0
257 #define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
258 #define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
259 #define HostCmd_CMD_TXPWR_CFG 0x00d1
260 #define HostCmd_CMD_TX_RATE_CFG 0x00d6
261 #define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
262 #define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
263 #define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
264 #define HostCmd_CMD_SET_BSS_MODE 0x00f7
265 #define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
266
267 #define PROTOCOL_NO_SECURITY 0x01
268 #define PROTOCOL_STATIC_WEP 0x02
269 #define PROTOCOL_WPA 0x08
270 #define PROTOCOL_WPA2 0x20
271 #define PROTOCOL_WPA2_MIXED 0x28
272 #define PROTOCOL_EAP 0x40
273 #define KEY_MGMT_NONE 0x04
274 #define KEY_MGMT_PSK 0x02
275 #define KEY_MGMT_EAP 0x01
276 #define CIPHER_TKIP 0x04
277 #define CIPHER_AES_CCMP 0x08
278 #define VALID_CIPHER_BITMAP 0x0c
279
280 enum ENH_PS_MODES {
281 EN_PS = 1,
282 DIS_PS = 2,
283 EN_AUTO_DS = 3,
284 DIS_AUTO_DS = 4,
285 SLEEP_CONFIRM = 5,
286 GET_PS = 0,
287 EN_AUTO_PS = 0xff,
288 DIS_AUTO_PS = 0xfe,
289 };
290
291 #define HostCmd_RET_BIT 0x8000
292 #define HostCmd_ACT_GEN_GET 0x0000
293 #define HostCmd_ACT_GEN_SET 0x0001
294 #define HostCmd_ACT_BITWISE_SET 0x0002
295 #define HostCmd_ACT_BITWISE_CLR 0x0003
296 #define HostCmd_RESULT_OK 0x0000
297
298 #define HostCmd_ACT_MAC_RX_ON 0x0001
299 #define HostCmd_ACT_MAC_TX_ON 0x0002
300 #define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
301 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
302 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
303 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
304 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
305
306 #define HostCmd_BSS_MODE_IBSS 0x0002
307 #define HostCmd_BSS_MODE_ANY 0x0003
308
309 #define HostCmd_SCAN_RADIO_TYPE_BG 0
310 #define HostCmd_SCAN_RADIO_TYPE_A 1
311
312 #define HOST_SLEEP_CFG_CANCEL 0xffffffff
313 #define HOST_SLEEP_CFG_COND_DEF 0x0000000f
314 #define HOST_SLEEP_CFG_GPIO_DEF 0xff
315 #define HOST_SLEEP_CFG_GAP_DEF 0
316
317 #define CMD_F_HOSTCMD (1 << 0)
318 #define CMD_F_CANCELED (1 << 1)
319
320 #define HostCmd_CMD_ID_MASK 0x0fff
321
322 #define HostCmd_SEQ_NUM_MASK 0x00ff
323
324 #define HostCmd_BSS_NUM_MASK 0x0f00
325
326 #define HostCmd_BSS_TYPE_MASK 0xf000
327
328 #define HostCmd_ACT_SET_RX 0x0001
329 #define HostCmd_ACT_SET_TX 0x0002
330 #define HostCmd_ACT_SET_BOTH 0x0003
331
332 #define RF_ANTENNA_AUTO 0xFFFF
333
334 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
335 (((seq) & 0x00ff) | \
336 (((num) & 0x000f) << 8)) | \
337 (((type) & 0x000f) << 12); }
338
339 #define HostCmd_GET_SEQ_NO(seq) \
340 ((seq) & HostCmd_SEQ_NUM_MASK)
341
342 #define HostCmd_GET_BSS_NO(seq) \
343 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
344
345 #define HostCmd_GET_BSS_TYPE(seq) \
346 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
347
348 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
349 #define EVENT_LINK_LOST 0x00000003
350 #define EVENT_LINK_SENSED 0x00000004
351 #define EVENT_MIB_CHANGED 0x00000006
352 #define EVENT_INIT_DONE 0x00000007
353 #define EVENT_DEAUTHENTICATED 0x00000008
354 #define EVENT_DISASSOCIATED 0x00000009
355 #define EVENT_PS_AWAKE 0x0000000a
356 #define EVENT_PS_SLEEP 0x0000000b
357 #define EVENT_MIC_ERR_MULTICAST 0x0000000d
358 #define EVENT_MIC_ERR_UNICAST 0x0000000e
359 #define EVENT_DEEP_SLEEP_AWAKE 0x00000010
360 #define EVENT_ADHOC_BCN_LOST 0x00000011
361
362 #define EVENT_WMM_STATUS_CHANGE 0x00000017
363 #define EVENT_BG_SCAN_REPORT 0x00000018
364 #define EVENT_RSSI_LOW 0x00000019
365 #define EVENT_SNR_LOW 0x0000001a
366 #define EVENT_MAX_FAIL 0x0000001b
367 #define EVENT_RSSI_HIGH 0x0000001c
368 #define EVENT_SNR_HIGH 0x0000001d
369 #define EVENT_IBSS_COALESCED 0x0000001e
370 #define EVENT_DATA_RSSI_LOW 0x00000024
371 #define EVENT_DATA_SNR_LOW 0x00000025
372 #define EVENT_DATA_RSSI_HIGH 0x00000026
373 #define EVENT_DATA_SNR_HIGH 0x00000027
374 #define EVENT_LINK_QUALITY 0x00000028
375 #define EVENT_PORT_RELEASE 0x0000002b
376 #define EVENT_UAP_STA_DEAUTH 0x0000002c
377 #define EVENT_UAP_STA_ASSOC 0x0000002d
378 #define EVENT_UAP_BSS_START 0x0000002e
379 #define EVENT_PRE_BEACON_LOST 0x00000031
380 #define EVENT_ADDBA 0x00000033
381 #define EVENT_DELBA 0x00000034
382 #define EVENT_BA_STREAM_TIEMOUT 0x00000037
383 #define EVENT_AMSDU_AGGR_CTRL 0x00000042
384 #define EVENT_UAP_BSS_IDLE 0x00000043
385 #define EVENT_UAP_BSS_ACTIVE 0x00000044
386 #define EVENT_WEP_ICV_ERR 0x00000046
387 #define EVENT_HS_ACT_REQ 0x00000047
388 #define EVENT_BW_CHANGE 0x00000048
389 #define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
390 #define EVENT_HOSTWAKE_STAIE 0x0000004d
391
392 #define EVENT_ID_MASK 0xffff
393 #define BSS_NUM_MASK 0xf
394
395 #define EVENT_GET_BSS_NUM(event_cause) \
396 (((event_cause) >> 16) & BSS_NUM_MASK)
397
398 #define EVENT_GET_BSS_TYPE(event_cause) \
399 (((event_cause) >> 24) & 0x00ff)
400
401 struct mwifiex_ie_types_header {
402 __le16 type;
403 __le16 len;
404 } __packed;
405
406 struct mwifiex_ie_types_data {
407 struct mwifiex_ie_types_header header;
408 u8 data[1];
409 } __packed;
410
411 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
412 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
413
414 struct txpd {
415 u8 bss_type;
416 u8 bss_num;
417 __le16 tx_pkt_length;
418 __le16 tx_pkt_offset;
419 __le16 tx_pkt_type;
420 __le32 tx_control;
421 u8 priority;
422 u8 flags;
423 u8 pkt_delay_2ms;
424 u8 reserved1;
425 } __packed;
426
427 struct rxpd {
428 u8 bss_type;
429 u8 bss_num;
430 __le16 rx_pkt_length;
431 __le16 rx_pkt_offset;
432 __le16 rx_pkt_type;
433 __le16 seq_num;
434 u8 priority;
435 u8 rx_rate;
436 s8 snr;
437 s8 nf;
438 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
439 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
440 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
441 u8 ht_info;
442 u8 reserved;
443 } __packed;
444
445 struct uap_txpd {
446 u8 bss_type;
447 u8 bss_num;
448 __le16 tx_pkt_length;
449 __le16 tx_pkt_offset;
450 __le16 tx_pkt_type;
451 __le32 tx_control;
452 u8 priority;
453 u8 flags;
454 u8 pkt_delay_2ms;
455 u8 reserved1;
456 __le32 reserved2;
457 };
458
459 struct uap_rxpd {
460 u8 bss_type;
461 u8 bss_num;
462 __le16 rx_pkt_length;
463 __le16 rx_pkt_offset;
464 __le16 rx_pkt_type;
465 __le16 seq_num;
466 u8 priority;
467 u8 reserved1;
468 };
469
470 enum mwifiex_chan_scan_mode_bitmasks {
471 MWIFIEX_PASSIVE_SCAN = BIT(0),
472 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
473 };
474
475 struct mwifiex_chan_scan_param_set {
476 u8 radio_type;
477 u8 chan_number;
478 u8 chan_scan_mode_bitmap;
479 __le16 min_scan_time;
480 __le16 max_scan_time;
481 } __packed;
482
483 struct mwifiex_ie_types_chan_list_param_set {
484 struct mwifiex_ie_types_header header;
485 struct mwifiex_chan_scan_param_set chan_scan_param[1];
486 } __packed;
487
488 struct chan_band_param_set {
489 u8 radio_type;
490 u8 chan_number;
491 };
492
493 struct mwifiex_ie_types_chan_band_list_param_set {
494 struct mwifiex_ie_types_header header;
495 struct chan_band_param_set chan_band_param[1];
496 } __packed;
497
498 struct mwifiex_ie_types_rates_param_set {
499 struct mwifiex_ie_types_header header;
500 u8 rates[1];
501 } __packed;
502
503 struct mwifiex_ie_types_ssid_param_set {
504 struct mwifiex_ie_types_header header;
505 u8 ssid[1];
506 } __packed;
507
508 struct mwifiex_ie_types_num_probes {
509 struct mwifiex_ie_types_header header;
510 __le16 num_probes;
511 } __packed;
512
513 struct mwifiex_ie_types_wildcard_ssid_params {
514 struct mwifiex_ie_types_header header;
515 u8 max_ssid_length;
516 u8 ssid[1];
517 } __packed;
518
519 #define TSF_DATA_SIZE 8
520 struct mwifiex_ie_types_tsf_timestamp {
521 struct mwifiex_ie_types_header header;
522 u8 tsf_data[1];
523 } __packed;
524
525 struct mwifiex_cf_param_set {
526 u8 cfp_cnt;
527 u8 cfp_period;
528 u16 cfp_max_duration;
529 u16 cfp_duration_remaining;
530 } __packed;
531
532 struct mwifiex_ibss_param_set {
533 u16 atim_window;
534 } __packed;
535
536 struct mwifiex_ie_types_ss_param_set {
537 struct mwifiex_ie_types_header header;
538 union {
539 struct mwifiex_cf_param_set cf_param_set[1];
540 struct mwifiex_ibss_param_set ibss_param_set[1];
541 } cf_ibss;
542 } __packed;
543
544 struct mwifiex_fh_param_set {
545 u16 dwell_time;
546 u8 hop_set;
547 u8 hop_pattern;
548 u8 hop_index;
549 } __packed;
550
551 struct mwifiex_ds_param_set {
552 u8 current_chan;
553 } __packed;
554
555 struct mwifiex_ie_types_phy_param_set {
556 struct mwifiex_ie_types_header header;
557 union {
558 struct mwifiex_fh_param_set fh_param_set[1];
559 struct mwifiex_ds_param_set ds_param_set[1];
560 } fh_ds;
561 } __packed;
562
563 struct mwifiex_ie_types_auth_type {
564 struct mwifiex_ie_types_header header;
565 __le16 auth_type;
566 } __packed;
567
568 struct mwifiex_ie_types_vendor_param_set {
569 struct mwifiex_ie_types_header header;
570 u8 ie[MWIFIEX_MAX_VSIE_LEN];
571 };
572
573 struct mwifiex_ie_types_rsn_param_set {
574 struct mwifiex_ie_types_header header;
575 u8 rsn_ie[1];
576 } __packed;
577
578 #define KEYPARAMSET_FIXED_LEN 6
579
580 struct mwifiex_ie_type_key_param_set {
581 __le16 type;
582 __le16 length;
583 __le16 key_type_id;
584 __le16 key_info;
585 __le16 key_len;
586 u8 key[50];
587 } __packed;
588
589 #define IGTK_PN_LEN 8
590
591 struct mwifiex_cmac_param {
592 u8 ipn[IGTK_PN_LEN];
593 u8 key[WLAN_KEY_LEN_AES_CMAC];
594 } __packed;
595
596 struct host_cmd_ds_802_11_key_material {
597 __le16 action;
598 struct mwifiex_ie_type_key_param_set key_param_set;
599 } __packed;
600
601 struct host_cmd_ds_gen {
602 u16 command;
603 u16 size;
604 u16 seq_num;
605 u16 result;
606 };
607
608 #define S_DS_GEN sizeof(struct host_cmd_ds_gen)
609
610 enum sleep_resp_ctrl {
611 RESP_NOT_NEEDED = 0,
612 RESP_NEEDED,
613 };
614
615 struct mwifiex_ps_param {
616 __le16 null_pkt_interval;
617 __le16 multiple_dtims;
618 __le16 bcn_miss_timeout;
619 __le16 local_listen_interval;
620 __le16 adhoc_wake_period;
621 __le16 mode;
622 __le16 delay_to_ps;
623 };
624
625 #define BITMAP_AUTO_DS 0x01
626 #define BITMAP_STA_PS 0x10
627
628 struct mwifiex_ie_types_auto_ds_param {
629 struct mwifiex_ie_types_header header;
630 __le16 deep_sleep_timeout;
631 } __packed;
632
633 struct mwifiex_ie_types_ps_param {
634 struct mwifiex_ie_types_header header;
635 struct mwifiex_ps_param param;
636 } __packed;
637
638 struct host_cmd_ds_802_11_ps_mode_enh {
639 __le16 action;
640
641 union {
642 struct mwifiex_ps_param opt_ps;
643 __le16 ps_bitmap;
644 } params;
645 } __packed;
646
647 struct host_cmd_ds_get_hw_spec {
648 __le16 hw_if_version;
649 __le16 version;
650 __le16 reserved;
651 __le16 num_of_mcast_adr;
652 u8 permanent_addr[ETH_ALEN];
653 __le16 region_code;
654 __le16 number_of_antenna;
655 __le32 fw_release_number;
656 __le32 reserved_1;
657 __le32 reserved_2;
658 __le32 reserved_3;
659 __le32 fw_cap_info;
660 __le32 dot_11n_dev_cap;
661 u8 dev_mcs_support;
662 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
663 __le16 reserved_4;
664 } __packed;
665
666 struct host_cmd_ds_802_11_rssi_info {
667 __le16 action;
668 __le16 ndata;
669 __le16 nbcn;
670 __le16 reserved[9];
671 long long reserved_1;
672 };
673
674 struct host_cmd_ds_802_11_rssi_info_rsp {
675 __le16 action;
676 __le16 ndata;
677 __le16 nbcn;
678 __le16 data_rssi_last;
679 __le16 data_nf_last;
680 __le16 data_rssi_avg;
681 __le16 data_nf_avg;
682 __le16 bcn_rssi_last;
683 __le16 bcn_nf_last;
684 __le16 bcn_rssi_avg;
685 __le16 bcn_nf_avg;
686 long long tsf_bcn;
687 };
688
689 struct host_cmd_ds_802_11_mac_address {
690 __le16 action;
691 u8 mac_addr[ETH_ALEN];
692 };
693
694 struct host_cmd_ds_mac_control {
695 __le16 action;
696 __le16 reserved;
697 };
698
699 struct host_cmd_ds_mac_multicast_adr {
700 __le16 action;
701 __le16 num_of_adrs;
702 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
703 } __packed;
704
705 struct host_cmd_ds_802_11_deauthenticate {
706 u8 mac_addr[ETH_ALEN];
707 __le16 reason_code;
708 } __packed;
709
710 struct host_cmd_ds_802_11_associate {
711 u8 peer_sta_addr[ETH_ALEN];
712 __le16 cap_info_bitmap;
713 __le16 listen_interval;
714 __le16 beacon_period;
715 u8 dtim_period;
716 } __packed;
717
718 struct ieee_types_assoc_rsp {
719 __le16 cap_info_bitmap;
720 __le16 status_code;
721 __le16 a_id;
722 u8 ie_buffer[1];
723 } __packed;
724
725 struct host_cmd_ds_802_11_associate_rsp {
726 struct ieee_types_assoc_rsp assoc_rsp;
727 } __packed;
728
729 struct ieee_types_cf_param_set {
730 u8 element_id;
731 u8 len;
732 u8 cfp_cnt;
733 u8 cfp_period;
734 u16 cfp_max_duration;
735 u16 cfp_duration_remaining;
736 } __packed;
737
738 struct ieee_types_ibss_param_set {
739 u8 element_id;
740 u8 len;
741 __le16 atim_window;
742 } __packed;
743
744 union ieee_types_ss_param_set {
745 struct ieee_types_cf_param_set cf_param_set;
746 struct ieee_types_ibss_param_set ibss_param_set;
747 } __packed;
748
749 struct ieee_types_fh_param_set {
750 u8 element_id;
751 u8 len;
752 __le16 dwell_time;
753 u8 hop_set;
754 u8 hop_pattern;
755 u8 hop_index;
756 } __packed;
757
758 struct ieee_types_ds_param_set {
759 u8 element_id;
760 u8 len;
761 u8 current_chan;
762 } __packed;
763
764 union ieee_types_phy_param_set {
765 struct ieee_types_fh_param_set fh_param_set;
766 struct ieee_types_ds_param_set ds_param_set;
767 } __packed;
768
769 struct host_cmd_ds_802_11_ad_hoc_start {
770 u8 ssid[IEEE80211_MAX_SSID_LEN];
771 u8 bss_mode;
772 __le16 beacon_period;
773 u8 dtim_period;
774 union ieee_types_ss_param_set ss_param_set;
775 union ieee_types_phy_param_set phy_param_set;
776 u16 reserved1;
777 __le16 cap_info_bitmap;
778 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
779 } __packed;
780
781 struct host_cmd_ds_802_11_ad_hoc_result {
782 u8 pad[3];
783 u8 bssid[ETH_ALEN];
784 } __packed;
785
786 struct adhoc_bss_desc {
787 u8 bssid[ETH_ALEN];
788 u8 ssid[IEEE80211_MAX_SSID_LEN];
789 u8 bss_mode;
790 __le16 beacon_period;
791 u8 dtim_period;
792 u8 time_stamp[8];
793 u8 local_time[8];
794 union ieee_types_phy_param_set phy_param_set;
795 union ieee_types_ss_param_set ss_param_set;
796 __le16 cap_info_bitmap;
797 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
798
799 /*
800 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
801 * It is used in the Adhoc join command and will cause a
802 * binary layout mismatch with the firmware
803 */
804 } __packed;
805
806 struct host_cmd_ds_802_11_ad_hoc_join {
807 struct adhoc_bss_desc bss_descriptor;
808 u16 reserved1;
809 u16 reserved2;
810 } __packed;
811
812 struct host_cmd_ds_802_11_get_log {
813 __le32 mcast_tx_frame;
814 __le32 failed;
815 __le32 retry;
816 __le32 multi_retry;
817 __le32 frame_dup;
818 __le32 rts_success;
819 __le32 rts_failure;
820 __le32 ack_failure;
821 __le32 rx_frag;
822 __le32 mcast_rx_frame;
823 __le32 fcs_error;
824 __le32 tx_frame;
825 __le32 reserved;
826 __le32 wep_icv_err_cnt[4];
827 };
828
829 struct host_cmd_ds_tx_rate_query {
830 u8 tx_rate;
831 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
832 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
833 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
834 u8 ht_info;
835 } __packed;
836
837 enum Host_Sleep_Action {
838 HS_CONFIGURE = 0x0001,
839 HS_ACTIVATE = 0x0002,
840 };
841
842 struct mwifiex_hs_config_param {
843 __le32 conditions;
844 u8 gpio;
845 u8 gap;
846 } __packed;
847
848 struct hs_activate_param {
849 u16 resp_ctrl;
850 } __packed;
851
852 struct host_cmd_ds_802_11_hs_cfg_enh {
853 __le16 action;
854
855 union {
856 struct mwifiex_hs_config_param hs_config;
857 struct hs_activate_param hs_activate;
858 } params;
859 } __packed;
860
861 enum SNMP_MIB_INDEX {
862 OP_RATE_SET_I = 1,
863 DTIM_PERIOD_I = 3,
864 RTS_THRESH_I = 5,
865 SHORT_RETRY_LIM_I = 6,
866 LONG_RETRY_LIM_I = 7,
867 FRAG_THRESH_I = 8,
868 DOT11D_I = 9,
869 };
870
871 #define MAX_SNMP_BUF_SIZE 128
872
873 struct host_cmd_ds_802_11_snmp_mib {
874 __le16 query_type;
875 __le16 oid;
876 __le16 buf_size;
877 u8 value[1];
878 } __packed;
879
880 struct mwifiex_rate_scope {
881 __le16 type;
882 __le16 length;
883 __le16 hr_dsss_rate_bitmap;
884 __le16 ofdm_rate_bitmap;
885 __le16 ht_mcs_rate_bitmap[8];
886 } __packed;
887
888 struct mwifiex_rate_drop_pattern {
889 __le16 type;
890 __le16 length;
891 __le32 rate_drop_mode;
892 } __packed;
893
894 struct host_cmd_ds_tx_rate_cfg {
895 __le16 action;
896 __le16 cfg_index;
897 } __packed;
898
899 struct mwifiex_power_group {
900 u8 modulation_class;
901 u8 first_rate_code;
902 u8 last_rate_code;
903 s8 power_step;
904 s8 power_min;
905 s8 power_max;
906 u8 ht_bandwidth;
907 u8 reserved;
908 } __packed;
909
910 struct mwifiex_types_power_group {
911 u16 type;
912 u16 length;
913 } __packed;
914
915 struct host_cmd_ds_txpwr_cfg {
916 __le16 action;
917 __le16 cfg_index;
918 __le32 mode;
919 } __packed;
920
921 struct host_cmd_ds_rf_tx_pwr {
922 __le16 action;
923 __le16 cur_level;
924 u8 max_power;
925 u8 min_power;
926 } __packed;
927
928 struct host_cmd_ds_rf_ant_mimo {
929 __le16 action_tx;
930 __le16 tx_ant_mode;
931 __le16 action_rx;
932 __le16 rx_ant_mode;
933 };
934
935 struct host_cmd_ds_rf_ant_siso {
936 __le16 action;
937 __le16 ant_mode;
938 };
939
940 struct mwifiex_bcn_param {
941 u8 bssid[ETH_ALEN];
942 u8 rssi;
943 __le64 timestamp;
944 __le16 beacon_period;
945 __le16 cap_info_bitmap;
946 } __packed;
947
948 #define MWIFIEX_USER_SCAN_CHAN_MAX 50
949
950 #define MWIFIEX_MAX_SSID_LIST_LENGTH 10
951
952 struct mwifiex_scan_cmd_config {
953 /*
954 * BSS mode to be sent in the firmware command
955 */
956 u8 bss_mode;
957
958 /* Specific BSSID used to filter scan results in the firmware */
959 u8 specific_bssid[ETH_ALEN];
960
961 /* Length of TLVs sent in command starting at tlvBuffer */
962 u32 tlv_buf_len;
963
964 /*
965 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
966 *
967 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
968 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
969 */
970 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
971 here */
972 } __packed;
973
974 struct mwifiex_user_scan_chan {
975 u8 chan_number;
976 u8 radio_type;
977 u8 scan_type;
978 u8 reserved;
979 u32 scan_time;
980 } __packed;
981
982 struct mwifiex_user_scan_cfg {
983 /*
984 * BSS mode to be sent in the firmware command
985 */
986 u8 bss_mode;
987 /* Configure the number of probe requests for active chan scans */
988 u8 num_probes;
989 u8 reserved;
990 /* BSSID filter sent in the firmware command to limit the results */
991 u8 specific_bssid[ETH_ALEN];
992 /* SSID filter list used in the firmware to limit the scan results */
993 struct cfg80211_ssid *ssid_list;
994 u8 num_ssids;
995 /* Variable number (fixed maximum) of channels to scan up */
996 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
997 } __packed;
998
999 struct ie_body {
1000 u8 grp_key_oui[4];
1001 u8 ptk_cnt[2];
1002 u8 ptk_body[4];
1003 } __packed;
1004
1005 struct host_cmd_ds_802_11_scan {
1006 u8 bss_mode;
1007 u8 bssid[ETH_ALEN];
1008 u8 tlv_buffer[1];
1009 } __packed;
1010
1011 struct host_cmd_ds_802_11_scan_rsp {
1012 __le16 bss_descript_size;
1013 u8 number_of_sets;
1014 u8 bss_desc_and_tlv_buffer[1];
1015 } __packed;
1016
1017 struct host_cmd_ds_802_11_bg_scan_query {
1018 u8 flush;
1019 } __packed;
1020
1021 struct host_cmd_ds_802_11_bg_scan_query_rsp {
1022 u32 report_condition;
1023 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1024 } __packed;
1025
1026 struct mwifiex_ietypes_domain_param_set {
1027 struct mwifiex_ie_types_header header;
1028 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1029 struct ieee80211_country_ie_triplet triplet[1];
1030 } __packed;
1031
1032 struct host_cmd_ds_802_11d_domain_info {
1033 __le16 action;
1034 struct mwifiex_ietypes_domain_param_set domain;
1035 } __packed;
1036
1037 struct host_cmd_ds_802_11d_domain_info_rsp {
1038 __le16 action;
1039 struct mwifiex_ietypes_domain_param_set domain;
1040 } __packed;
1041
1042 struct host_cmd_ds_11n_addba_req {
1043 u8 add_req_result;
1044 u8 peer_mac_addr[ETH_ALEN];
1045 u8 dialog_token;
1046 __le16 block_ack_param_set;
1047 __le16 block_ack_tmo;
1048 __le16 ssn;
1049 } __packed;
1050
1051 struct host_cmd_ds_11n_addba_rsp {
1052 u8 add_rsp_result;
1053 u8 peer_mac_addr[ETH_ALEN];
1054 u8 dialog_token;
1055 __le16 status_code;
1056 __le16 block_ack_param_set;
1057 __le16 block_ack_tmo;
1058 __le16 ssn;
1059 } __packed;
1060
1061 struct host_cmd_ds_11n_delba {
1062 u8 del_result;
1063 u8 peer_mac_addr[ETH_ALEN];
1064 __le16 del_ba_param_set;
1065 __le16 reason_code;
1066 u8 reserved;
1067 } __packed;
1068
1069 struct host_cmd_ds_11n_batimeout {
1070 u8 tid;
1071 u8 peer_mac_addr[ETH_ALEN];
1072 u8 origninator;
1073 } __packed;
1074
1075 struct host_cmd_ds_11n_cfg {
1076 __le16 action;
1077 __le16 ht_tx_cap;
1078 __le16 ht_tx_info;
1079 } __packed;
1080
1081 struct host_cmd_ds_txbuf_cfg {
1082 __le16 action;
1083 __le16 buff_size;
1084 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1085 __le16 reserved3;
1086 } __packed;
1087
1088 struct host_cmd_ds_amsdu_aggr_ctrl {
1089 __le16 action;
1090 __le16 enable;
1091 __le16 curr_buf_size;
1092 } __packed;
1093
1094 struct mwifiex_ie_types_wmm_param_set {
1095 struct mwifiex_ie_types_header header;
1096 u8 wmm_ie[1];
1097 };
1098
1099 struct mwifiex_ie_types_wmm_queue_status {
1100 struct mwifiex_ie_types_header header;
1101 u8 queue_index;
1102 u8 disabled;
1103 u16 medium_time;
1104 u8 flow_required;
1105 u8 flow_created;
1106 u32 reserved;
1107 };
1108
1109 struct ieee_types_vendor_header {
1110 u8 element_id;
1111 u8 len;
1112 u8 oui[4]; /* 0~2: oui, 3: oui_type */
1113 u8 oui_subtype;
1114 u8 version;
1115 } __packed;
1116
1117 struct ieee_types_wmm_ac_parameters {
1118 u8 aci_aifsn_bitmap;
1119 u8 ecw_bitmap;
1120 __le16 tx_op_limit;
1121 } __packed;
1122
1123 struct ieee_types_wmm_parameter {
1124 /*
1125 * WMM Parameter IE - Vendor Specific Header:
1126 * element_id [221/0xdd]
1127 * Len [24]
1128 * Oui [00:50:f2]
1129 * OuiType [2]
1130 * OuiSubType [1]
1131 * Version [1]
1132 */
1133 struct ieee_types_vendor_header vend_hdr;
1134 u8 qos_info_bitmap;
1135 u8 reserved;
1136 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
1137 } __packed;
1138
1139 struct ieee_types_wmm_info {
1140
1141 /*
1142 * WMM Info IE - Vendor Specific Header:
1143 * element_id [221/0xdd]
1144 * Len [7]
1145 * Oui [00:50:f2]
1146 * OuiType [2]
1147 * OuiSubType [0]
1148 * Version [1]
1149 */
1150 struct ieee_types_vendor_header vend_hdr;
1151
1152 u8 qos_info_bitmap;
1153 } __packed;
1154
1155 struct host_cmd_ds_wmm_get_status {
1156 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
1157 IEEE80211_NUM_ACS];
1158 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1159 } __packed;
1160
1161 struct mwifiex_wmm_ac_status {
1162 u8 disabled;
1163 u8 flow_required;
1164 u8 flow_created;
1165 };
1166
1167 struct mwifiex_ie_types_htcap {
1168 struct mwifiex_ie_types_header header;
1169 struct ieee80211_ht_cap ht_cap;
1170 } __packed;
1171
1172 struct mwifiex_ie_types_htinfo {
1173 struct mwifiex_ie_types_header header;
1174 struct ieee80211_ht_operation ht_oper;
1175 } __packed;
1176
1177 struct mwifiex_ie_types_2040bssco {
1178 struct mwifiex_ie_types_header header;
1179 u8 bss_co_2040;
1180 } __packed;
1181
1182 struct mwifiex_ie_types_extcap {
1183 struct mwifiex_ie_types_header header;
1184 u8 ext_cap;
1185 } __packed;
1186
1187 struct host_cmd_ds_mac_reg_access {
1188 __le16 action;
1189 __le16 offset;
1190 __le32 value;
1191 } __packed;
1192
1193 struct host_cmd_ds_bbp_reg_access {
1194 __le16 action;
1195 __le16 offset;
1196 u8 value;
1197 u8 reserved[3];
1198 } __packed;
1199
1200 struct host_cmd_ds_rf_reg_access {
1201 __le16 action;
1202 __le16 offset;
1203 u8 value;
1204 u8 reserved[3];
1205 } __packed;
1206
1207 struct host_cmd_ds_pmic_reg_access {
1208 __le16 action;
1209 __le16 offset;
1210 u8 value;
1211 u8 reserved[3];
1212 } __packed;
1213
1214 struct host_cmd_ds_802_11_eeprom_access {
1215 __le16 action;
1216
1217 __le16 offset;
1218 __le16 byte_count;
1219 u8 value;
1220 } __packed;
1221
1222 struct host_cmd_tlv {
1223 __le16 type;
1224 __le16 len;
1225 } __packed;
1226
1227 struct mwifiex_assoc_event {
1228 u8 sta_addr[ETH_ALEN];
1229 __le16 type;
1230 __le16 len;
1231 __le16 frame_control;
1232 __le16 cap_info;
1233 __le16 listen_interval;
1234 u8 data[0];
1235 } __packed;
1236
1237 struct host_cmd_ds_sys_config {
1238 __le16 action;
1239 u8 tlv[0];
1240 };
1241
1242 struct host_cmd_tlv_akmp {
1243 struct host_cmd_tlv tlv;
1244 __le16 key_mgmt;
1245 __le16 key_mgmt_operation;
1246 } __packed;
1247
1248 struct host_cmd_tlv_pwk_cipher {
1249 struct host_cmd_tlv tlv;
1250 __le16 proto;
1251 u8 cipher;
1252 u8 reserved;
1253 } __packed;
1254
1255 struct host_cmd_tlv_gwk_cipher {
1256 struct host_cmd_tlv tlv;
1257 u8 cipher;
1258 u8 reserved;
1259 } __packed;
1260
1261 struct host_cmd_tlv_passphrase {
1262 struct host_cmd_tlv tlv;
1263 u8 passphrase[0];
1264 } __packed;
1265
1266 struct host_cmd_tlv_wep_key {
1267 struct host_cmd_tlv tlv;
1268 u8 key_index;
1269 u8 is_default;
1270 u8 key[1];
1271 };
1272
1273 struct host_cmd_tlv_auth_type {
1274 struct host_cmd_tlv tlv;
1275 u8 auth_type;
1276 } __packed;
1277
1278 struct host_cmd_tlv_encrypt_protocol {
1279 struct host_cmd_tlv tlv;
1280 __le16 proto;
1281 } __packed;
1282
1283 struct host_cmd_tlv_ssid {
1284 struct host_cmd_tlv tlv;
1285 u8 ssid[0];
1286 } __packed;
1287
1288 struct host_cmd_tlv_rates {
1289 struct host_cmd_tlv tlv;
1290 u8 rates[0];
1291 } __packed;
1292
1293 struct host_cmd_tlv_bcast_ssid {
1294 struct host_cmd_tlv tlv;
1295 u8 bcast_ctl;
1296 } __packed;
1297
1298 struct host_cmd_tlv_beacon_period {
1299 struct host_cmd_tlv tlv;
1300 __le16 period;
1301 } __packed;
1302
1303 struct host_cmd_tlv_dtim_period {
1304 struct host_cmd_tlv tlv;
1305 u8 period;
1306 } __packed;
1307
1308 struct host_cmd_tlv_frag_threshold {
1309 struct host_cmd_tlv tlv;
1310 __le16 frag_thr;
1311 } __packed;
1312
1313 struct host_cmd_tlv_rts_threshold {
1314 struct host_cmd_tlv tlv;
1315 __le16 rts_thr;
1316 } __packed;
1317
1318 struct host_cmd_tlv_retry_limit {
1319 struct host_cmd_tlv tlv;
1320 u8 limit;
1321 } __packed;
1322
1323 struct host_cmd_tlv_mac_addr {
1324 struct host_cmd_tlv tlv;
1325 u8 mac_addr[ETH_ALEN];
1326 } __packed;
1327
1328 struct host_cmd_tlv_channel_band {
1329 struct host_cmd_tlv tlv;
1330 u8 band_config;
1331 u8 channel;
1332 } __packed;
1333
1334 struct host_cmd_ds_version_ext {
1335 u8 version_str_sel;
1336 char version_str[128];
1337 } __packed;
1338
1339 struct host_cmd_ds_802_11_ibss_status {
1340 __le16 action;
1341 __le16 enable;
1342 u8 bssid[ETH_ALEN];
1343 __le16 beacon_interval;
1344 __le16 atim_window;
1345 __le16 use_g_rate_protect;
1346 } __packed;
1347
1348 #define CONNECTION_TYPE_INFRA 0
1349 #define CONNECTION_TYPE_ADHOC 1
1350
1351 struct host_cmd_ds_set_bss_mode {
1352 u8 con_type;
1353 } __packed;
1354
1355 struct host_cmd_ds_pcie_details {
1356 /* TX buffer descriptor ring address */
1357 u32 txbd_addr_lo;
1358 u32 txbd_addr_hi;
1359 /* TX buffer descriptor ring count */
1360 u32 txbd_count;
1361
1362 /* RX buffer descriptor ring address */
1363 u32 rxbd_addr_lo;
1364 u32 rxbd_addr_hi;
1365 /* RX buffer descriptor ring count */
1366 u32 rxbd_count;
1367
1368 /* Event buffer descriptor ring address */
1369 u32 evtbd_addr_lo;
1370 u32 evtbd_addr_hi;
1371 /* Event buffer descriptor ring count */
1372 u32 evtbd_count;
1373
1374 /* Sleep cookie buffer physical address */
1375 u32 sleep_cookie_addr_lo;
1376 u32 sleep_cookie_addr_hi;
1377 } __packed;
1378
1379 struct mwifiex_ie_types_rssi_threshold {
1380 struct mwifiex_ie_types_header header;
1381 u8 abs_value;
1382 u8 evt_freq;
1383 } __packed;
1384
1385 struct host_cmd_ds_802_11_subsc_evt {
1386 __le16 action;
1387 __le16 events;
1388 } __packed;
1389
1390 struct mwifiex_ie {
1391 __le16 ie_index;
1392 __le16 mgmt_subtype_mask;
1393 __le16 ie_length;
1394 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1395 } __packed;
1396
1397 #define MAX_MGMT_IE_INDEX 16
1398 struct mwifiex_ie_list {
1399 __le16 type;
1400 __le16 len;
1401 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1402 } __packed;
1403
1404 struct host_cmd_ds_command {
1405 __le16 command;
1406 __le16 size;
1407 __le16 seq_num;
1408 __le16 result;
1409 union {
1410 struct host_cmd_ds_get_hw_spec hw_spec;
1411 struct host_cmd_ds_mac_control mac_ctrl;
1412 struct host_cmd_ds_802_11_mac_address mac_addr;
1413 struct host_cmd_ds_mac_multicast_adr mc_addr;
1414 struct host_cmd_ds_802_11_get_log get_log;
1415 struct host_cmd_ds_802_11_rssi_info rssi_info;
1416 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1417 struct host_cmd_ds_802_11_snmp_mib smib;
1418 struct host_cmd_ds_tx_rate_query tx_rate;
1419 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1420 struct host_cmd_ds_txpwr_cfg txp_cfg;
1421 struct host_cmd_ds_rf_tx_pwr txp;
1422 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1423 struct host_cmd_ds_rf_ant_siso ant_siso;
1424 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1425 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1426 struct host_cmd_ds_802_11_scan scan;
1427 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1428 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1429 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1430 struct host_cmd_ds_802_11_associate associate;
1431 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1432 struct host_cmd_ds_802_11_deauthenticate deauth;
1433 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1434 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1435 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1436 struct host_cmd_ds_802_11d_domain_info domain_info;
1437 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1438 struct host_cmd_ds_11n_addba_req add_ba_req;
1439 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1440 struct host_cmd_ds_11n_delba del_ba;
1441 struct host_cmd_ds_txbuf_cfg tx_buf;
1442 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1443 struct host_cmd_ds_11n_cfg htcfg;
1444 struct host_cmd_ds_wmm_get_status get_wmm_status;
1445 struct host_cmd_ds_802_11_key_material key_material;
1446 struct host_cmd_ds_version_ext verext;
1447 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1448 struct host_cmd_ds_mac_reg_access mac_reg;
1449 struct host_cmd_ds_bbp_reg_access bbp_reg;
1450 struct host_cmd_ds_rf_reg_access rf_reg;
1451 struct host_cmd_ds_pmic_reg_access pmic_reg;
1452 struct host_cmd_ds_set_bss_mode bss_mode;
1453 struct host_cmd_ds_pcie_details pcie_host_spec;
1454 struct host_cmd_ds_802_11_eeprom_access eeprom;
1455 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
1456 struct host_cmd_ds_sys_config uap_sys_config;
1457 } params;
1458 } __packed;
1459
1460 struct mwifiex_opt_sleep_confirm {
1461 __le16 command;
1462 __le16 size;
1463 __le16 seq_num;
1464 __le16 result;
1465 __le16 action;
1466 __le16 resp_ctrl;
1467 } __packed;
1468 #endif /* !_MWIFIEX_FW_H_ */
This page took 0.083883 seconds and 5 git commands to generate.