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