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