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