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