Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[cascardo/linux.git] / drivers / net / wireless / mwifiex / fw.h
1 /*
2  * Marvell Wireless LAN device driver: Firmware specific macros & structures
3  *
4  * Copyright (C) 2011, Marvell International Ltd.
5  *
6  * This software file (the "File") is distributed by Marvell International
7  * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8  * (the "License").  You may use, redistribute and/or modify this File in
9  * accordance with the terms and conditions of the License, a copy of which
10  * is available by writing to the Free Software Foundation, Inc.,
11  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12  * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13  *
14  * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16  * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
17  * this warranty disclaimer.
18  */
19
20 #ifndef _MWIFIEX_FW_H_
21 #define _MWIFIEX_FW_H_
22
23 #include <linux/if_ether.h>
24
25
26 #define INTF_HEADER_LEN     4
27
28 struct rfc_1042_hdr {
29         u8 llc_dsap;
30         u8 llc_ssap;
31         u8 llc_ctrl;
32         u8 snap_oui[3];
33         __be16 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                                     BAND_AN | BAND_AAC)
54
55 #define FW_MULTI_BANDS_SUPPORT  (BIT(8) | BIT(9) | BIT(10) | BIT(11) | \
56                                  BIT(13))
57 #define IS_SUPPORT_MULTI_BANDS(adapter)        \
58         (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
59
60 /* bit 13: 11ac BAND_AAC
61  * bit 12: reserved for lab testing, will be reused for BAND_AN
62  * bit 11: 11n  BAND_GN
63  * bit 10: 11a  BAND_A
64  * bit 9: 11g   BAND_G
65  * bit 8: 11b   BAND_B
66  * Map these bits to band capability by right shifting 8 bits.
67  */
68 #define GET_FW_DEFAULT_BANDS(adapter)  \
69             (((adapter->fw_cap_info & 0x2f00) >> 8) & \
70              ALL_802_11_BANDS)
71
72 #define HostCmd_WEP_KEY_INDEX_MASK              0x3fff
73
74 #define KEY_INFO_ENABLED        0x01
75 enum KEY_TYPE_ID {
76         KEY_TYPE_ID_WEP = 0,
77         KEY_TYPE_ID_TKIP,
78         KEY_TYPE_ID_AES,
79         KEY_TYPE_ID_WAPI,
80         KEY_TYPE_ID_AES_CMAC,
81 };
82
83 #define WPA_PN_SIZE             8
84 #define KEY_PARAMS_FIXED_LEN    10
85 #define KEY_INDEX_MASK          0xf
86 #define FW_KEY_API_VER_MAJOR_V2 2
87
88 #define KEY_MCAST       BIT(0)
89 #define KEY_UNICAST     BIT(1)
90 #define KEY_ENABLED     BIT(2)
91 #define KEY_DEFAULT     BIT(3)
92 #define KEY_TX_KEY      BIT(4)
93 #define KEY_RX_KEY      BIT(5)
94 #define KEY_IGTK        BIT(10)
95
96 #define WAPI_KEY_LEN                    (WLAN_KEY_LEN_SMS4 + PN_LEN + 2)
97
98 #define MAX_POLL_TRIES                  100
99 #define MAX_FIRMWARE_POLL_TRIES                 100
100
101 #define FIRMWARE_READY_SDIO                             0xfedc
102 #define FIRMWARE_READY_PCIE                             0xfedcba00
103
104 enum mwifiex_usb_ep {
105         MWIFIEX_USB_EP_CMD_EVENT = 1,
106         MWIFIEX_USB_EP_DATA = 2,
107 };
108
109 enum MWIFIEX_802_11_PRIVACY_FILTER {
110         MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
111         MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
112 };
113
114 #define CAL_SNR(RSSI, NF)               ((s16)((s16)(RSSI)-(s16)(NF)))
115 #define CAL_RSSI(SNR, NF)               ((s16)((s16)(SNR)+(s16)(NF)))
116
117 #define UAP_BSS_PARAMS_I                        0
118 #define UAP_CUSTOM_IE_I                         1
119 #define MWIFIEX_AUTO_IDX_MASK                   0xffff
120 #define MWIFIEX_DELETE_MASK                     0x0000
121 #define MGMT_MASK_ASSOC_REQ                     0x01
122 #define MGMT_MASK_REASSOC_REQ                   0x04
123 #define MGMT_MASK_ASSOC_RESP                    0x02
124 #define MGMT_MASK_REASSOC_RESP                  0x08
125 #define MGMT_MASK_PROBE_REQ                     0x10
126 #define MGMT_MASK_PROBE_RESP                    0x20
127 #define MGMT_MASK_BEACON                        0x100
128
129 #define TLV_TYPE_UAP_SSID                       0x0000
130 #define TLV_TYPE_UAP_RATES                      0x0001
131
132 #define PROPRIETARY_TLV_BASE_ID                 0x0100
133 #define TLV_TYPE_KEY_MATERIAL       (PROPRIETARY_TLV_BASE_ID + 0)
134 #define TLV_TYPE_CHANLIST           (PROPRIETARY_TLV_BASE_ID + 1)
135 #define TLV_TYPE_NUMPROBES          (PROPRIETARY_TLV_BASE_ID + 2)
136 #define TLV_TYPE_RSSI_LOW           (PROPRIETARY_TLV_BASE_ID + 4)
137 #define TLV_TYPE_PASSTHROUGH        (PROPRIETARY_TLV_BASE_ID + 10)
138 #define TLV_TYPE_WMMQSTATUS         (PROPRIETARY_TLV_BASE_ID + 16)
139 #define TLV_TYPE_WILDCARDSSID       (PROPRIETARY_TLV_BASE_ID + 18)
140 #define TLV_TYPE_TSFTIMESTAMP       (PROPRIETARY_TLV_BASE_ID + 19)
141 #define TLV_TYPE_RSSI_HIGH          (PROPRIETARY_TLV_BASE_ID + 22)
142 #define TLV_TYPE_AUTH_TYPE          (PROPRIETARY_TLV_BASE_ID + 31)
143 #define TLV_TYPE_STA_MAC_ADDR       (PROPRIETARY_TLV_BASE_ID + 32)
144 #define TLV_TYPE_BSSID              (PROPRIETARY_TLV_BASE_ID + 35)
145 #define TLV_TYPE_CHANNELBANDLIST    (PROPRIETARY_TLV_BASE_ID + 42)
146 #define TLV_TYPE_UAP_BEACON_PERIOD  (PROPRIETARY_TLV_BASE_ID + 44)
147 #define TLV_TYPE_UAP_DTIM_PERIOD    (PROPRIETARY_TLV_BASE_ID + 45)
148 #define TLV_TYPE_UAP_BCAST_SSID     (PROPRIETARY_TLV_BASE_ID + 48)
149 #define TLV_TYPE_UAP_RTS_THRESHOLD  (PROPRIETARY_TLV_BASE_ID + 51)
150 #define TLV_TYPE_UAP_AO_TIMER       (PROPRIETARY_TLV_BASE_ID + 57)
151 #define TLV_TYPE_UAP_WEP_KEY        (PROPRIETARY_TLV_BASE_ID + 59)
152 #define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
153 #define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
154 #define TLV_TYPE_UAP_AKMP           (PROPRIETARY_TLV_BASE_ID + 65)
155 #define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
156 #define TLV_TYPE_RATE_DROP_CONTROL  (PROPRIETARY_TLV_BASE_ID + 82)
157 #define TLV_TYPE_RATE_SCOPE         (PROPRIETARY_TLV_BASE_ID + 83)
158 #define TLV_TYPE_POWER_GROUP        (PROPRIETARY_TLV_BASE_ID + 84)
159 #define TLV_TYPE_BSS_SCAN_RSP       (PROPRIETARY_TLV_BASE_ID + 86)
160 #define TLV_TYPE_BSS_SCAN_INFO      (PROPRIETARY_TLV_BASE_ID + 87)
161 #define TLV_TYPE_UAP_RETRY_LIMIT    (PROPRIETARY_TLV_BASE_ID + 93)
162 #define TLV_TYPE_WAPI_IE            (PROPRIETARY_TLV_BASE_ID + 94)
163 #define TLV_TYPE_UAP_MGMT_FRAME     (PROPRIETARY_TLV_BASE_ID + 104)
164 #define TLV_TYPE_MGMT_IE            (PROPRIETARY_TLV_BASE_ID + 105)
165 #define TLV_TYPE_AUTO_DS_PARAM      (PROPRIETARY_TLV_BASE_ID + 113)
166 #define TLV_TYPE_PS_PARAM           (PROPRIETARY_TLV_BASE_ID + 114)
167 #define TLV_TYPE_UAP_PS_AO_TIMER    (PROPRIETARY_TLV_BASE_ID + 123)
168 #define TLV_TYPE_PWK_CIPHER         (PROPRIETARY_TLV_BASE_ID + 145)
169 #define TLV_TYPE_GWK_CIPHER         (PROPRIETARY_TLV_BASE_ID + 146)
170 #define TLV_TYPE_COALESCE_RULE      (PROPRIETARY_TLV_BASE_ID + 154)
171 #define TLV_TYPE_KEY_PARAM_V2       (PROPRIETARY_TLV_BASE_ID + 156)
172 #define TLV_TYPE_FW_API_REV         (PROPRIETARY_TLV_BASE_ID + 199)
173
174 #define MWIFIEX_TX_DATA_BUF_SIZE_2K        2048
175
176 #define SSN_MASK         0xfff0
177
178 #define BA_RESULT_SUCCESS        0x0
179 #define BA_RESULT_TIMEOUT        0x2
180
181 #define IS_BASTREAM_SETUP(ptr)  (ptr->ba_status)
182
183 #define BA_STREAM_NOT_ALLOWED   0xff
184
185 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
186                         priv->adapter->config_bands & BAND_AN) && \
187                         priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
188 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
189                         BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
190
191 #define MWIFIEX_TX_DATA_BUF_SIZE_4K        4096
192 #define MWIFIEX_TX_DATA_BUF_SIZE_8K        8192
193
194 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
195 #define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14))
196
197 #define MWIFIEX_DEF_HT_CAP      (IEEE80211_HT_CAP_DSSSCCK40 | \
198                                  (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
199                                  IEEE80211_HT_CAP_SM_PS)
200
201 #define MWIFIEX_DEF_11N_TX_BF_CAP       0x09E1E008
202
203 #define MWIFIEX_DEF_AMPDU       IEEE80211_HT_AMPDU_PARM_FACTOR
204
205 #define GET_RXSTBC(x) (x & IEEE80211_HT_CAP_RX_STBC)
206 #define MWIFIEX_RX_STBC1        0x0100
207 #define MWIFIEX_RX_STBC12       0x0200
208 #define MWIFIEX_RX_STBC123      0x0300
209
210 /* dev_cap bitmap
211  * BIT
212  * 0-16         reserved
213  * 17           IEEE80211_HT_CAP_SUP_WIDTH_20_40
214  * 18-22        reserved
215  * 23           IEEE80211_HT_CAP_SGI_20
216  * 24           IEEE80211_HT_CAP_SGI_40
217  * 25           IEEE80211_HT_CAP_TX_STBC
218  * 26           IEEE80211_HT_CAP_RX_STBC
219  * 27-28        reserved
220  * 29           IEEE80211_HT_CAP_GRN_FLD
221  * 30-31        reserved
222  */
223 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
224 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
225 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
226 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
227 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
228 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
229 #define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
230 #define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
231 #define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30))
232
233 /* httxcfg bitmap
234  * 0            reserved
235  * 1            20/40 Mhz enable(1)/disable(0)
236  * 2-3          reserved
237  * 4            green field enable(1)/disable(0)
238  * 5            short GI in 20 Mhz enable(1)/disable(0)
239  * 6            short GI in 40 Mhz enable(1)/disable(0)
240  * 7-15         reserved
241  */
242 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
243
244 /* 11AC Tx and Rx MCS map for 1x1 mode:
245  * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1
246  * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams
247  */
248 #define MWIFIEX_11AC_MCS_MAP_1X1        0xfffefffe
249
250 /* 11AC Tx and Rx MCS map for 2x2 mode:
251  * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2
252  * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams
253  */
254 #define MWIFIEX_11AC_MCS_MAP_2X2        0xfffafffa
255
256 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
257 #define SETHT_MCS32(x) (x[4] |= 1)
258 #define HT_STREAM_1X1   0x11
259 #define HT_STREAM_2X2   0x22
260
261 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
262
263 #define LLC_SNAP_LEN    8
264
265 /* HW_SPEC fw_cap_info */
266
267 #define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13))
268
269 #define GET_VHTCAP_CHWDSET(vht_cap_info)    ((vht_cap_info >> 2) & 0x3)
270 #define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3)
271 #define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \
272                                               (2 * (nss - 1)))
273 #define GET_DEVTXMCSMAP(dev_mcs_map)      (dev_mcs_map >> 16)
274 #define GET_DEVRXMCSMAP(dev_mcs_map)      (dev_mcs_map & 0xFFFF)
275
276 /* Clear SU Beanformer, MU beanformer, MU beanformee and
277  * sounding dimensions bits
278  */
279 #define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \
280                         (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \
281                          IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \
282                          IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \
283                          IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
284
285 #define MOD_CLASS_HR_DSSS       0x03
286 #define MOD_CLASS_OFDM          0x07
287 #define MOD_CLASS_HT            0x08
288 #define HT_BW_20    0
289 #define HT_BW_40    1
290
291 #define DFS_CHAN_MOVE_TIME      10000
292
293 #define HostCmd_CMD_GET_HW_SPEC                       0x0003
294 #define HostCmd_CMD_802_11_SCAN                       0x0006
295 #define HostCmd_CMD_802_11_GET_LOG                    0x000b
296 #define HostCmd_CMD_MAC_MULTICAST_ADR                 0x0010
297 #define HostCmd_CMD_802_11_EEPROM_ACCESS              0x0059
298 #define HostCmd_CMD_802_11_ASSOCIATE                  0x0012
299 #define HostCmd_CMD_802_11_SNMP_MIB                   0x0016
300 #define HostCmd_CMD_MAC_REG_ACCESS                    0x0019
301 #define HostCmd_CMD_BBP_REG_ACCESS                    0x001a
302 #define HostCmd_CMD_RF_REG_ACCESS                     0x001b
303 #define HostCmd_CMD_PMIC_REG_ACCESS                   0x00ad
304 #define HostCmd_CMD_RF_TX_PWR                         0x001e
305 #define HostCmd_CMD_RF_ANTENNA                        0x0020
306 #define HostCmd_CMD_802_11_DEAUTHENTICATE             0x0024
307 #define HostCmd_CMD_MAC_CONTROL                       0x0028
308 #define HostCmd_CMD_802_11_AD_HOC_START               0x002b
309 #define HostCmd_CMD_802_11_AD_HOC_JOIN                0x002c
310 #define HostCmd_CMD_802_11_AD_HOC_STOP                0x0040
311 #define HostCmd_CMD_802_11_MAC_ADDRESS                0x004D
312 #define HostCmd_CMD_802_11D_DOMAIN_INFO               0x005b
313 #define HostCmd_CMD_802_11_KEY_MATERIAL               0x005e
314 #define HostCmd_CMD_802_11_BG_SCAN_QUERY              0x006c
315 #define HostCmd_CMD_WMM_GET_STATUS                    0x0071
316 #define HostCmd_CMD_802_11_SUBSCRIBE_EVENT            0x0075
317 #define HostCmd_CMD_802_11_TX_RATE_QUERY              0x007f
318 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS     0x0083
319 #define HostCmd_CMD_CFG_DATA                          0x008f
320 #define HostCmd_CMD_VERSION_EXT                       0x0097
321 #define HostCmd_CMD_MEF_CFG                           0x009a
322 #define HostCmd_CMD_RSSI_INFO                         0x00a4
323 #define HostCmd_CMD_FUNC_INIT                         0x00a9
324 #define HostCmd_CMD_FUNC_SHUTDOWN                     0x00aa
325 #define HostCmd_CMD_UAP_SYS_CONFIG                    0x00b0
326 #define HostCmd_CMD_UAP_BSS_START                     0x00b1
327 #define HostCmd_CMD_UAP_BSS_STOP                      0x00b2
328 #define HostCmd_CMD_UAP_STA_DEAUTH                    0x00b5
329 #define HostCmd_CMD_11N_CFG                           0x00cd
330 #define HostCmd_CMD_11N_ADDBA_REQ                     0x00ce
331 #define HostCmd_CMD_11N_ADDBA_RSP                     0x00cf
332 #define HostCmd_CMD_11N_DELBA                         0x00d0
333 #define HostCmd_CMD_RECONFIGURE_TX_BUFF               0x00d9
334 #define HostCmd_CMD_AMSDU_AGGR_CTRL                   0x00df
335 #define HostCmd_CMD_TXPWR_CFG                         0x00d1
336 #define HostCmd_CMD_TX_RATE_CFG                       0x00d6
337 #define HostCmd_CMD_802_11_PS_MODE_ENH                0x00e4
338 #define HostCmd_CMD_802_11_HS_CFG_ENH                 0x00e5
339 #define HostCmd_CMD_P2P_MODE_CFG                      0x00eb
340 #define HostCmd_CMD_CAU_REG_ACCESS                    0x00ed
341 #define HostCmd_CMD_SET_BSS_MODE                      0x00f7
342 #define HostCmd_CMD_PCIE_DESC_DETAILS                 0x00fa
343 #define HostCmd_CMD_802_11_SCAN_EXT                   0x0107
344 #define HostCmd_CMD_COALESCE_CFG                      0x010a
345 #define HostCmd_CMD_MGMT_FRAME_REG                    0x010c
346 #define HostCmd_CMD_REMAIN_ON_CHAN                    0x010d
347 #define HostCmd_CMD_11AC_CFG                          0x0112
348 #define HostCmd_CMD_TDLS_OPER                         0x0122
349
350 #define PROTOCOL_NO_SECURITY        0x01
351 #define PROTOCOL_STATIC_WEP         0x02
352 #define PROTOCOL_WPA                0x08
353 #define PROTOCOL_WPA2               0x20
354 #define PROTOCOL_WPA2_MIXED         0x28
355 #define PROTOCOL_EAP                0x40
356 #define KEY_MGMT_NONE               0x04
357 #define KEY_MGMT_PSK                0x02
358 #define KEY_MGMT_EAP                0x01
359 #define CIPHER_TKIP                 0x04
360 #define CIPHER_AES_CCMP             0x08
361 #define VALID_CIPHER_BITMAP         0x0c
362
363 enum ENH_PS_MODES {
364         EN_PS = 1,
365         DIS_PS = 2,
366         EN_AUTO_DS = 3,
367         DIS_AUTO_DS = 4,
368         SLEEP_CONFIRM = 5,
369         GET_PS = 0,
370         EN_AUTO_PS = 0xff,
371         DIS_AUTO_PS = 0xfe,
372 };
373
374 enum P2P_MODES {
375         P2P_MODE_DISABLE = 0,
376         P2P_MODE_DEVICE = 1,
377         P2P_MODE_GO = 2,
378         P2P_MODE_CLIENT = 3,
379 };
380
381 #define HostCmd_RET_BIT                       0x8000
382 #define HostCmd_ACT_GEN_GET                   0x0000
383 #define HostCmd_ACT_GEN_SET                   0x0001
384 #define HostCmd_ACT_GEN_REMOVE                0x0004
385 #define HostCmd_ACT_BITWISE_SET               0x0002
386 #define HostCmd_ACT_BITWISE_CLR               0x0003
387 #define HostCmd_RESULT_OK                     0x0000
388
389 #define HostCmd_ACT_MAC_RX_ON                 0x0001
390 #define HostCmd_ACT_MAC_TX_ON                 0x0002
391 #define HostCmd_ACT_MAC_WEP_ENABLE            0x0008
392 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE     0x0010
393 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE    0x0080
394 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE  0x0100
395 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON     0x2000
396
397 #define HostCmd_BSS_MODE_IBSS               0x0002
398 #define HostCmd_BSS_MODE_ANY                0x0003
399
400 #define HostCmd_SCAN_RADIO_TYPE_BG          0
401 #define HostCmd_SCAN_RADIO_TYPE_A           1
402
403 #define HS_CFG_CANCEL                   0xffffffff
404 #define HS_CFG_COND_DEF                 0x00000000
405 #define HS_CFG_GPIO_DEF                 0xff
406 #define HS_CFG_GAP_DEF                  0
407 #define HS_CFG_COND_BROADCAST_DATA      0x00000001
408 #define HS_CFG_COND_UNICAST_DATA        0x00000002
409 #define HS_CFG_COND_MAC_EVENT           0x00000004
410 #define HS_CFG_COND_MULTICAST_DATA      0x00000008
411
412 #define MWIFIEX_TIMEOUT_FOR_AP_RESP             0xfffc
413 #define MWIFIEX_STATUS_CODE_AUTH_TIMEOUT        2
414
415 #define CMD_F_HOSTCMD           (1 << 0)
416 #define CMD_F_CANCELED          (1 << 1)
417
418 #define HostCmd_CMD_ID_MASK             0x0fff
419
420 #define HostCmd_SEQ_NUM_MASK            0x00ff
421
422 #define HostCmd_BSS_NUM_MASK            0x0f00
423
424 #define HostCmd_BSS_TYPE_MASK           0xf000
425
426 #define HostCmd_ACT_SET_RX              0x0001
427 #define HostCmd_ACT_SET_TX              0x0002
428 #define HostCmd_ACT_SET_BOTH            0x0003
429
430 #define RF_ANTENNA_AUTO                 0xFFFF
431
432 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) {   \
433         (((seq) & 0x00ff) |                             \
434          (((num) & 0x000f) << 8)) |                     \
435         (((type) & 0x000f) << 12);                  }
436
437 #define HostCmd_GET_SEQ_NO(seq)       \
438         ((seq) & HostCmd_SEQ_NUM_MASK)
439
440 #define HostCmd_GET_BSS_NO(seq)         \
441         (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
442
443 #define HostCmd_GET_BSS_TYPE(seq)       \
444         (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
445
446 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL  0x00000001
447 #define EVENT_LINK_LOST                 0x00000003
448 #define EVENT_LINK_SENSED               0x00000004
449 #define EVENT_MIB_CHANGED               0x00000006
450 #define EVENT_INIT_DONE                 0x00000007
451 #define EVENT_DEAUTHENTICATED           0x00000008
452 #define EVENT_DISASSOCIATED             0x00000009
453 #define EVENT_PS_AWAKE                  0x0000000a
454 #define EVENT_PS_SLEEP                  0x0000000b
455 #define EVENT_MIC_ERR_MULTICAST         0x0000000d
456 #define EVENT_MIC_ERR_UNICAST           0x0000000e
457 #define EVENT_DEEP_SLEEP_AWAKE          0x00000010
458 #define EVENT_ADHOC_BCN_LOST            0x00000011
459
460 #define EVENT_WMM_STATUS_CHANGE         0x00000017
461 #define EVENT_BG_SCAN_REPORT            0x00000018
462 #define EVENT_RSSI_LOW                  0x00000019
463 #define EVENT_SNR_LOW                   0x0000001a
464 #define EVENT_MAX_FAIL                  0x0000001b
465 #define EVENT_RSSI_HIGH                 0x0000001c
466 #define EVENT_SNR_HIGH                  0x0000001d
467 #define EVENT_IBSS_COALESCED            0x0000001e
468 #define EVENT_DATA_RSSI_LOW             0x00000024
469 #define EVENT_DATA_SNR_LOW              0x00000025
470 #define EVENT_DATA_RSSI_HIGH            0x00000026
471 #define EVENT_DATA_SNR_HIGH             0x00000027
472 #define EVENT_LINK_QUALITY              0x00000028
473 #define EVENT_PORT_RELEASE              0x0000002b
474 #define EVENT_UAP_STA_DEAUTH            0x0000002c
475 #define EVENT_UAP_STA_ASSOC             0x0000002d
476 #define EVENT_UAP_BSS_START             0x0000002e
477 #define EVENT_PRE_BEACON_LOST           0x00000031
478 #define EVENT_ADDBA                     0x00000033
479 #define EVENT_DELBA                     0x00000034
480 #define EVENT_BA_STREAM_TIEMOUT         0x00000037
481 #define EVENT_AMSDU_AGGR_CTRL           0x00000042
482 #define EVENT_UAP_BSS_IDLE              0x00000043
483 #define EVENT_UAP_BSS_ACTIVE            0x00000044
484 #define EVENT_WEP_ICV_ERR               0x00000046
485 #define EVENT_HS_ACT_REQ                0x00000047
486 #define EVENT_BW_CHANGE                 0x00000048
487 #define EVENT_UAP_MIC_COUNTERMEASURES   0x0000004c
488 #define EVENT_HOSTWAKE_STAIE            0x0000004d
489 #define EVENT_CHANNEL_SWITCH_ANN        0x00000050
490 #define EVENT_EXT_SCAN_REPORT           0x00000058
491 #define EVENT_REMAIN_ON_CHAN_EXPIRED    0x0000005f
492
493 #define EVENT_ID_MASK                   0xffff
494 #define BSS_NUM_MASK                    0xf
495
496 #define EVENT_GET_BSS_NUM(event_cause)          \
497         (((event_cause) >> 16) & BSS_NUM_MASK)
498
499 #define EVENT_GET_BSS_TYPE(event_cause)         \
500         (((event_cause) >> 24) & 0x00ff)
501
502 #define MWIFIEX_MAX_PATTERN_LEN         20
503 #define MWIFIEX_MAX_OFFSET_LEN          100
504 #define STACK_NBYTES                    100
505 #define TYPE_DNUM                       1
506 #define TYPE_BYTESEQ                    2
507 #define MAX_OPERAND                     0x40
508 #define TYPE_EQ                         (MAX_OPERAND+1)
509 #define TYPE_EQ_DNUM                    (MAX_OPERAND+2)
510 #define TYPE_EQ_BIT                     (MAX_OPERAND+3)
511 #define TYPE_AND                        (MAX_OPERAND+4)
512 #define TYPE_OR                         (MAX_OPERAND+5)
513 #define MEF_MODE_HOST_SLEEP                     1
514 #define MEF_ACTION_ALLOW_AND_WAKEUP_HOST        3
515 #define MWIFIEX_CRITERIA_BROADCAST      BIT(0)
516 #define MWIFIEX_CRITERIA_UNICAST        BIT(1)
517 #define MWIFIEX_CRITERIA_MULTICAST      BIT(3)
518
519 #define ACT_TDLS_DELETE            0x00
520 #define ACT_TDLS_CREATE            0x01
521 #define ACT_TDLS_CONFIG            0x02
522
523 #define MWIFIEX_FW_V15             15
524
525 struct mwifiex_ie_types_header {
526         __le16 type;
527         __le16 len;
528 } __packed;
529
530 struct mwifiex_ie_types_data {
531         struct mwifiex_ie_types_header header;
532         u8 data[1];
533 } __packed;
534
535 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
536 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
537 #define MWIFIEX_TXPD_FLAGS_TDLS_PACKET      0x10
538
539 struct txpd {
540         u8 bss_type;
541         u8 bss_num;
542         __le16 tx_pkt_length;
543         __le16 tx_pkt_offset;
544         __le16 tx_pkt_type;
545         __le32 tx_control;
546         u8 priority;
547         u8 flags;
548         u8 pkt_delay_2ms;
549         u8 reserved1;
550 } __packed;
551
552 struct rxpd {
553         u8 bss_type;
554         u8 bss_num;
555         __le16 rx_pkt_length;
556         __le16 rx_pkt_offset;
557         __le16 rx_pkt_type;
558         __le16 seq_num;
559         u8 priority;
560         u8 rx_rate;
561         s8 snr;
562         s8 nf;
563
564         /* For: Non-802.11 AC cards
565          *
566          * Ht Info [Bit 0] RxRate format: LG=0, HT=1
567          * [Bit 1]  HT Bandwidth: BW20 = 0, BW40 = 1
568          * [Bit 2]  HT Guard Interval: LGI = 0, SGI = 1
569          *
570          * For: 802.11 AC cards
571          * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10
572          * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01
573          *                                              BW80 = 10  BW160 = 11
574          * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1
575          * [Bit 5] STBC support Enabled = 1
576          * [Bit 6] LDPC support Enabled = 1
577          * [Bit 7] Reserved
578          */
579         u8 ht_info;
580         u8 reserved;
581 } __packed;
582
583 struct uap_txpd {
584         u8 bss_type;
585         u8 bss_num;
586         __le16 tx_pkt_length;
587         __le16 tx_pkt_offset;
588         __le16 tx_pkt_type;
589         __le32 tx_control;
590         u8 priority;
591         u8 flags;
592         u8 pkt_delay_2ms;
593         u8 reserved1;
594         __le32 reserved2;
595 };
596
597 struct uap_rxpd {
598         u8 bss_type;
599         u8 bss_num;
600         __le16 rx_pkt_length;
601         __le16 rx_pkt_offset;
602         __le16 rx_pkt_type;
603         __le16 seq_num;
604         u8 priority;
605         u8 reserved1;
606 };
607
608 enum mwifiex_chan_scan_mode_bitmasks {
609         MWIFIEX_PASSIVE_SCAN = BIT(0),
610         MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
611 };
612
613 struct mwifiex_chan_scan_param_set {
614         u8 radio_type;
615         u8 chan_number;
616         u8 chan_scan_mode_bitmap;
617         __le16 min_scan_time;
618         __le16 max_scan_time;
619 } __packed;
620
621 struct mwifiex_ie_types_chan_list_param_set {
622         struct mwifiex_ie_types_header header;
623         struct mwifiex_chan_scan_param_set chan_scan_param[1];
624 } __packed;
625
626 struct chan_band_param_set {
627         u8 radio_type;
628         u8 chan_number;
629 };
630
631 struct mwifiex_ie_types_chan_band_list_param_set {
632         struct mwifiex_ie_types_header header;
633         struct chan_band_param_set chan_band_param[1];
634 } __packed;
635
636 struct mwifiex_ie_types_rates_param_set {
637         struct mwifiex_ie_types_header header;
638         u8 rates[1];
639 } __packed;
640
641 struct mwifiex_ie_types_ssid_param_set {
642         struct mwifiex_ie_types_header header;
643         u8 ssid[1];
644 } __packed;
645
646 struct mwifiex_ie_types_num_probes {
647         struct mwifiex_ie_types_header header;
648         __le16 num_probes;
649 } __packed;
650
651 struct mwifiex_ie_types_wildcard_ssid_params {
652         struct mwifiex_ie_types_header header;
653         u8 max_ssid_length;
654         u8 ssid[1];
655 } __packed;
656
657 #define TSF_DATA_SIZE            8
658 struct mwifiex_ie_types_tsf_timestamp {
659         struct mwifiex_ie_types_header header;
660         u8 tsf_data[1];
661 } __packed;
662
663 struct mwifiex_cf_param_set {
664         u8 cfp_cnt;
665         u8 cfp_period;
666         __le16 cfp_max_duration;
667         __le16 cfp_duration_remaining;
668 } __packed;
669
670 struct mwifiex_ibss_param_set {
671         __le16 atim_window;
672 } __packed;
673
674 struct mwifiex_ie_types_ss_param_set {
675         struct mwifiex_ie_types_header header;
676         union {
677                 struct mwifiex_cf_param_set cf_param_set[1];
678                 struct mwifiex_ibss_param_set ibss_param_set[1];
679         } cf_ibss;
680 } __packed;
681
682 struct mwifiex_fh_param_set {
683         __le16 dwell_time;
684         u8 hop_set;
685         u8 hop_pattern;
686         u8 hop_index;
687 } __packed;
688
689 struct mwifiex_ds_param_set {
690         u8 current_chan;
691 } __packed;
692
693 struct mwifiex_ie_types_phy_param_set {
694         struct mwifiex_ie_types_header header;
695         union {
696                 struct mwifiex_fh_param_set fh_param_set[1];
697                 struct mwifiex_ds_param_set ds_param_set[1];
698         } fh_ds;
699 } __packed;
700
701 struct mwifiex_ie_types_auth_type {
702         struct mwifiex_ie_types_header header;
703         __le16 auth_type;
704 } __packed;
705
706 struct mwifiex_ie_types_vendor_param_set {
707         struct mwifiex_ie_types_header header;
708         u8 ie[MWIFIEX_MAX_VSIE_LEN];
709 };
710
711 struct mwifiex_ie_types_rsn_param_set {
712         struct mwifiex_ie_types_header header;
713         u8 rsn_ie[1];
714 } __packed;
715
716 #define KEYPARAMSET_FIXED_LEN 6
717
718 struct mwifiex_ie_type_key_param_set {
719         __le16 type;
720         __le16 length;
721         __le16 key_type_id;
722         __le16 key_info;
723         __le16 key_len;
724         u8 key[50];
725 } __packed;
726
727 #define IGTK_PN_LEN             8
728
729 struct mwifiex_cmac_param {
730         u8 ipn[IGTK_PN_LEN];
731         u8 key[WLAN_KEY_LEN_AES_CMAC];
732 } __packed;
733
734 struct mwifiex_wep_param {
735         __le16 key_len;
736         u8 key[WLAN_KEY_LEN_WEP104];
737 } __packed;
738
739 struct mwifiex_tkip_param {
740         u8 pn[WPA_PN_SIZE];
741         __le16 key_len;
742         u8 key[WLAN_KEY_LEN_TKIP];
743 } __packed;
744
745 struct mwifiex_aes_param {
746         u8 pn[WPA_PN_SIZE];
747         __le16 key_len;
748         u8 key[WLAN_KEY_LEN_CCMP];
749 } __packed;
750
751 struct mwifiex_wapi_param {
752         u8 pn[PN_LEN];
753         __le16 key_len;
754         u8 key[WLAN_KEY_LEN_SMS4];
755 } __packed;
756
757 struct mwifiex_cmac_aes_param {
758         u8 ipn[IGTK_PN_LEN];
759         __le16 key_len;
760         u8 key[WLAN_KEY_LEN_AES_CMAC];
761 } __packed;
762
763 struct mwifiex_ie_type_key_param_set_v2 {
764         __le16 type;
765         __le16 len;
766         u8 mac_addr[ETH_ALEN];
767         u8 key_idx;
768         u8 key_type;
769         __le16 key_info;
770         union {
771                 struct mwifiex_wep_param wep;
772                 struct mwifiex_tkip_param tkip;
773                 struct mwifiex_aes_param aes;
774                 struct mwifiex_wapi_param wapi;
775                 struct mwifiex_cmac_aes_param cmac_aes;
776         } key_params;
777 } __packed;
778
779 struct host_cmd_ds_802_11_key_material_v2 {
780         __le16 action;
781         struct mwifiex_ie_type_key_param_set_v2 key_param_set;
782 } __packed;
783
784 struct host_cmd_ds_802_11_key_material {
785         __le16 action;
786         struct mwifiex_ie_type_key_param_set key_param_set;
787 } __packed;
788
789 struct host_cmd_ds_gen {
790         __le16 command;
791         __le16 size;
792         __le16 seq_num;
793         __le16 result;
794 };
795
796 #define S_DS_GEN        sizeof(struct host_cmd_ds_gen)
797
798 enum sleep_resp_ctrl {
799         RESP_NOT_NEEDED = 0,
800         RESP_NEEDED,
801 };
802
803 struct mwifiex_ps_param {
804         __le16 null_pkt_interval;
805         __le16 multiple_dtims;
806         __le16 bcn_miss_timeout;
807         __le16 local_listen_interval;
808         __le16 adhoc_wake_period;
809         __le16 mode;
810         __le16 delay_to_ps;
811 };
812
813 #define BITMAP_AUTO_DS         0x01
814 #define BITMAP_STA_PS          0x10
815
816 struct mwifiex_ie_types_auto_ds_param {
817         struct mwifiex_ie_types_header header;
818         __le16 deep_sleep_timeout;
819 } __packed;
820
821 struct mwifiex_ie_types_ps_param {
822         struct mwifiex_ie_types_header header;
823         struct mwifiex_ps_param param;
824 } __packed;
825
826 struct host_cmd_ds_802_11_ps_mode_enh {
827         __le16 action;
828
829         union {
830                 struct mwifiex_ps_param opt_ps;
831                 __le16 ps_bitmap;
832         } params;
833 } __packed;
834
835 enum FW_API_VER_ID {
836         KEY_API_VER_ID = 1,
837 };
838
839 struct hw_spec_fw_api_rev {
840         struct mwifiex_ie_types_header header;
841         __le16 api_id;
842         u8 major_ver;
843         u8 minor_ver;
844 } __packed;
845
846 struct host_cmd_ds_get_hw_spec {
847         __le16 hw_if_version;
848         __le16 version;
849         __le16 reserved;
850         __le16 num_of_mcast_adr;
851         u8 permanent_addr[ETH_ALEN];
852         __le16 region_code;
853         __le16 number_of_antenna;
854         __le32 fw_release_number;
855         __le32 reserved_1;
856         __le32 reserved_2;
857         __le32 reserved_3;
858         __le32 fw_cap_info;
859         __le32 dot_11n_dev_cap;
860         u8 dev_mcs_support;
861         __le16 mp_end_port;     /* SDIO only, reserved for other interfacces */
862         __le16 mgmt_buf_count;  /* mgmt IE buffer count */
863         __le32 reserved_5;
864         __le32 reserved_6;
865         __le32 dot_11ac_dev_cap;
866         __le32 dot_11ac_mcs_support;
867         u8 tlvs[0];
868 } __packed;
869
870 struct host_cmd_ds_802_11_rssi_info {
871         __le16 action;
872         __le16 ndata;
873         __le16 nbcn;
874         __le16 reserved[9];
875         long long reserved_1;
876 };
877
878 struct host_cmd_ds_802_11_rssi_info_rsp {
879         __le16 action;
880         __le16 ndata;
881         __le16 nbcn;
882         __le16 data_rssi_last;
883         __le16 data_nf_last;
884         __le16 data_rssi_avg;
885         __le16 data_nf_avg;
886         __le16 bcn_rssi_last;
887         __le16 bcn_nf_last;
888         __le16 bcn_rssi_avg;
889         __le16 bcn_nf_avg;
890         long long tsf_bcn;
891 };
892
893 struct host_cmd_ds_802_11_mac_address {
894         __le16 action;
895         u8 mac_addr[ETH_ALEN];
896 };
897
898 struct host_cmd_ds_mac_control {
899         __le16 action;
900         __le16 reserved;
901 };
902
903 struct host_cmd_ds_mac_multicast_adr {
904         __le16 action;
905         __le16 num_of_adrs;
906         u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
907 } __packed;
908
909 struct host_cmd_ds_802_11_deauthenticate {
910         u8 mac_addr[ETH_ALEN];
911         __le16 reason_code;
912 } __packed;
913
914 struct host_cmd_ds_802_11_associate {
915         u8 peer_sta_addr[ETH_ALEN];
916         __le16 cap_info_bitmap;
917         __le16 listen_interval;
918         __le16 beacon_period;
919         u8 dtim_period;
920 } __packed;
921
922 struct ieee_types_assoc_rsp {
923         __le16 cap_info_bitmap;
924         __le16 status_code;
925         __le16 a_id;
926         u8 ie_buffer[1];
927 } __packed;
928
929 struct host_cmd_ds_802_11_associate_rsp {
930         struct ieee_types_assoc_rsp assoc_rsp;
931 } __packed;
932
933 struct ieee_types_cf_param_set {
934         u8 element_id;
935         u8 len;
936         u8 cfp_cnt;
937         u8 cfp_period;
938         __le16 cfp_max_duration;
939         __le16 cfp_duration_remaining;
940 } __packed;
941
942 struct ieee_types_ibss_param_set {
943         u8 element_id;
944         u8 len;
945         __le16 atim_window;
946 } __packed;
947
948 union ieee_types_ss_param_set {
949         struct ieee_types_cf_param_set cf_param_set;
950         struct ieee_types_ibss_param_set ibss_param_set;
951 } __packed;
952
953 struct ieee_types_fh_param_set {
954         u8 element_id;
955         u8 len;
956         __le16 dwell_time;
957         u8 hop_set;
958         u8 hop_pattern;
959         u8 hop_index;
960 } __packed;
961
962 struct ieee_types_ds_param_set {
963         u8 element_id;
964         u8 len;
965         u8 current_chan;
966 } __packed;
967
968 union ieee_types_phy_param_set {
969         struct ieee_types_fh_param_set fh_param_set;
970         struct ieee_types_ds_param_set ds_param_set;
971 } __packed;
972
973 struct ieee_types_oper_mode_ntf {
974         u8 element_id;
975         u8 len;
976         u8 oper_mode;
977 } __packed;
978
979 struct host_cmd_ds_802_11_ad_hoc_start {
980         u8 ssid[IEEE80211_MAX_SSID_LEN];
981         u8 bss_mode;
982         __le16 beacon_period;
983         u8 dtim_period;
984         union ieee_types_ss_param_set ss_param_set;
985         union ieee_types_phy_param_set phy_param_set;
986         u16 reserved1;
987         __le16 cap_info_bitmap;
988         u8 data_rate[HOSTCMD_SUPPORTED_RATES];
989 } __packed;
990
991 struct host_cmd_ds_802_11_ad_hoc_result {
992         u8 pad[3];
993         u8 bssid[ETH_ALEN];
994 } __packed;
995
996 struct adhoc_bss_desc {
997         u8 bssid[ETH_ALEN];
998         u8 ssid[IEEE80211_MAX_SSID_LEN];
999         u8 bss_mode;
1000         __le16 beacon_period;
1001         u8 dtim_period;
1002         u8 time_stamp[8];
1003         u8 local_time[8];
1004         union ieee_types_phy_param_set phy_param_set;
1005         union ieee_types_ss_param_set ss_param_set;
1006         __le16 cap_info_bitmap;
1007         u8 data_rates[HOSTCMD_SUPPORTED_RATES];
1008
1009         /*
1010          *  DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
1011          *  It is used in the Adhoc join command and will cause a
1012          *  binary layout mismatch with the firmware
1013          */
1014 } __packed;
1015
1016 struct host_cmd_ds_802_11_ad_hoc_join {
1017         struct adhoc_bss_desc bss_descriptor;
1018         u16 reserved1;
1019         u16 reserved2;
1020 } __packed;
1021
1022 struct host_cmd_ds_802_11_get_log {
1023         __le32 mcast_tx_frame;
1024         __le32 failed;
1025         __le32 retry;
1026         __le32 multi_retry;
1027         __le32 frame_dup;
1028         __le32 rts_success;
1029         __le32 rts_failure;
1030         __le32 ack_failure;
1031         __le32 rx_frag;
1032         __le32 mcast_rx_frame;
1033         __le32 fcs_error;
1034         __le32 tx_frame;
1035         __le32 reserved;
1036         __le32 wep_icv_err_cnt[4];
1037 };
1038
1039 /* Enumeration for rate format */
1040 enum _mwifiex_rate_format {
1041         MWIFIEX_RATE_FORMAT_LG = 0,
1042         MWIFIEX_RATE_FORMAT_HT,
1043         MWIFIEX_RATE_FORMAT_VHT,
1044         MWIFIEX_RATE_FORMAT_AUTO = 0xFF,
1045 };
1046
1047 struct host_cmd_ds_tx_rate_query {
1048         u8 tx_rate;
1049         /* Tx Rate Info: For 802.11 AC cards
1050          *
1051          * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2
1052          * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3
1053          * [Bit 4]   HT/VHT Guard Interval: LGI = 0, SGI = 1
1054          *
1055          * For non-802.11 AC cards
1056          * Ht Info [Bit 0] RxRate format: LG=0, HT=1
1057          * [Bit 1]  HT Bandwidth: BW20 = 0, BW40 = 1
1058          * [Bit 2]  HT Guard Interval: LGI = 0, SGI = 1
1059          */
1060         u8 ht_info;
1061 } __packed;
1062
1063 enum Host_Sleep_Action {
1064         HS_CONFIGURE = 0x0001,
1065         HS_ACTIVATE  = 0x0002,
1066 };
1067
1068 struct mwifiex_hs_config_param {
1069         __le32 conditions;
1070         u8 gpio;
1071         u8 gap;
1072 } __packed;
1073
1074 struct hs_activate_param {
1075         __le16 resp_ctrl;
1076 } __packed;
1077
1078 struct host_cmd_ds_802_11_hs_cfg_enh {
1079         __le16 action;
1080
1081         union {
1082                 struct mwifiex_hs_config_param hs_config;
1083                 struct hs_activate_param hs_activate;
1084         } params;
1085 } __packed;
1086
1087 enum SNMP_MIB_INDEX {
1088         OP_RATE_SET_I = 1,
1089         DTIM_PERIOD_I = 3,
1090         RTS_THRESH_I = 5,
1091         SHORT_RETRY_LIM_I = 6,
1092         LONG_RETRY_LIM_I = 7,
1093         FRAG_THRESH_I = 8,
1094         DOT11D_I = 9,
1095         DOT11H_I = 10,
1096 };
1097
1098 #define MAX_SNMP_BUF_SIZE   128
1099
1100 struct host_cmd_ds_802_11_snmp_mib {
1101         __le16 query_type;
1102         __le16 oid;
1103         __le16 buf_size;
1104         u8 value[1];
1105 } __packed;
1106
1107 struct mwifiex_rate_scope {
1108         __le16 type;
1109         __le16 length;
1110         __le16 hr_dsss_rate_bitmap;
1111         __le16 ofdm_rate_bitmap;
1112         __le16 ht_mcs_rate_bitmap[8];
1113         __le16 vht_mcs_rate_bitmap[8];
1114 } __packed;
1115
1116 struct mwifiex_rate_drop_pattern {
1117         __le16 type;
1118         __le16 length;
1119         __le32 rate_drop_mode;
1120 } __packed;
1121
1122 struct host_cmd_ds_tx_rate_cfg {
1123         __le16 action;
1124         __le16 cfg_index;
1125 } __packed;
1126
1127 struct mwifiex_power_group {
1128         u8 modulation_class;
1129         u8 first_rate_code;
1130         u8 last_rate_code;
1131         s8 power_step;
1132         s8 power_min;
1133         s8 power_max;
1134         u8 ht_bandwidth;
1135         u8 reserved;
1136 } __packed;
1137
1138 struct mwifiex_types_power_group {
1139         __le16 type;
1140         __le16 length;
1141 } __packed;
1142
1143 struct host_cmd_ds_txpwr_cfg {
1144         __le16 action;
1145         __le16 cfg_index;
1146         __le32 mode;
1147 } __packed;
1148
1149 struct host_cmd_ds_rf_tx_pwr {
1150         __le16 action;
1151         __le16 cur_level;
1152         u8 max_power;
1153         u8 min_power;
1154 } __packed;
1155
1156 struct host_cmd_ds_rf_ant_mimo {
1157         __le16 action_tx;
1158         __le16 tx_ant_mode;
1159         __le16 action_rx;
1160         __le16 rx_ant_mode;
1161 };
1162
1163 struct host_cmd_ds_rf_ant_siso {
1164         __le16 action;
1165         __le16 ant_mode;
1166 };
1167
1168 struct host_cmd_ds_tdls_oper {
1169         __le16 tdls_action;
1170         __le16 reason;
1171         u8 peer_mac[ETH_ALEN];
1172 } __packed;
1173
1174 struct mwifiex_fixed_bcn_param {
1175         __le64 timestamp;
1176         __le16 beacon_period;
1177         __le16 cap_info_bitmap;
1178 } __packed;
1179
1180 struct mwifiex_event_scan_result {
1181         __le16 event_id;
1182         u8 bss_index;
1183         u8 bss_type;
1184         u8 more_event;
1185         u8 reserved[3];
1186         __le16 buf_size;
1187         u8 num_of_set;
1188 } __packed;
1189
1190 #define MWIFIEX_USER_SCAN_CHAN_MAX             50
1191
1192 #define MWIFIEX_MAX_SSID_LIST_LENGTH         10
1193
1194 struct mwifiex_scan_cmd_config {
1195         /*
1196          *  BSS mode to be sent in the firmware command
1197          */
1198         u8 bss_mode;
1199
1200         /* Specific BSSID used to filter scan results in the firmware */
1201         u8 specific_bssid[ETH_ALEN];
1202
1203         /* Length of TLVs sent in command starting at tlvBuffer */
1204         u32 tlv_buf_len;
1205
1206         /*
1207          *  SSID TLV(s) and ChanList TLVs to be sent in the firmware command
1208          *
1209          *  TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
1210          *  WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
1211          */
1212         u8 tlv_buf[1];  /* SSID TLV(s) and ChanList TLVs are stored
1213                                    here */
1214 } __packed;
1215
1216 struct mwifiex_user_scan_chan {
1217         u8 chan_number;
1218         u8 radio_type;
1219         u8 scan_type;
1220         u8 reserved;
1221         u32 scan_time;
1222 } __packed;
1223
1224 struct mwifiex_user_scan_cfg {
1225         /*
1226          *  BSS mode to be sent in the firmware command
1227          */
1228         u8 bss_mode;
1229         /* Configure the number of probe requests for active chan scans */
1230         u8 num_probes;
1231         u8 reserved;
1232         /* BSSID filter sent in the firmware command to limit the results */
1233         u8 specific_bssid[ETH_ALEN];
1234         /* SSID filter list used in the firmware to limit the scan results */
1235         struct cfg80211_ssid *ssid_list;
1236         u8 num_ssids;
1237         /* Variable number (fixed maximum) of channels to scan up */
1238         struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
1239 } __packed;
1240
1241 struct ie_body {
1242         u8 grp_key_oui[4];
1243         u8 ptk_cnt[2];
1244         u8 ptk_body[4];
1245 } __packed;
1246
1247 struct host_cmd_ds_802_11_scan {
1248         u8 bss_mode;
1249         u8 bssid[ETH_ALEN];
1250         u8 tlv_buffer[1];
1251 } __packed;
1252
1253 struct host_cmd_ds_802_11_scan_rsp {
1254         __le16 bss_descript_size;
1255         u8 number_of_sets;
1256         u8 bss_desc_and_tlv_buffer[1];
1257 } __packed;
1258
1259 struct host_cmd_ds_802_11_scan_ext {
1260         u32   reserved;
1261         u8    tlv_buffer[1];
1262 } __packed;
1263
1264 struct mwifiex_ie_types_bss_scan_rsp {
1265         struct mwifiex_ie_types_header header;
1266         u8 bssid[ETH_ALEN];
1267         u8 frame_body[1];
1268 } __packed;
1269
1270 struct mwifiex_ie_types_bss_scan_info {
1271         struct mwifiex_ie_types_header header;
1272         __le16 rssi;
1273         __le16 anpi;
1274         u8 cca_busy_fraction;
1275         u8 radio_type;
1276         u8 channel;
1277         u8 reserved;
1278         __le64 tsf;
1279 } __packed;
1280
1281 struct host_cmd_ds_802_11_bg_scan_query {
1282         u8 flush;
1283 } __packed;
1284
1285 struct host_cmd_ds_802_11_bg_scan_query_rsp {
1286         __le32 report_condition;
1287         struct host_cmd_ds_802_11_scan_rsp scan_resp;
1288 } __packed;
1289
1290 struct mwifiex_ietypes_domain_param_set {
1291         struct mwifiex_ie_types_header header;
1292         u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1293         struct ieee80211_country_ie_triplet triplet[1];
1294 } __packed;
1295
1296 struct host_cmd_ds_802_11d_domain_info {
1297         __le16 action;
1298         struct mwifiex_ietypes_domain_param_set domain;
1299 } __packed;
1300
1301 struct host_cmd_ds_802_11d_domain_info_rsp {
1302         __le16 action;
1303         struct mwifiex_ietypes_domain_param_set domain;
1304 } __packed;
1305
1306 struct host_cmd_ds_11n_addba_req {
1307         u8 add_req_result;
1308         u8 peer_mac_addr[ETH_ALEN];
1309         u8 dialog_token;
1310         __le16 block_ack_param_set;
1311         __le16 block_ack_tmo;
1312         __le16 ssn;
1313 } __packed;
1314
1315 struct host_cmd_ds_11n_addba_rsp {
1316         u8 add_rsp_result;
1317         u8 peer_mac_addr[ETH_ALEN];
1318         u8 dialog_token;
1319         __le16 status_code;
1320         __le16 block_ack_param_set;
1321         __le16 block_ack_tmo;
1322         __le16 ssn;
1323 } __packed;
1324
1325 struct host_cmd_ds_11n_delba {
1326         u8 del_result;
1327         u8 peer_mac_addr[ETH_ALEN];
1328         __le16 del_ba_param_set;
1329         __le16 reason_code;
1330         u8 reserved;
1331 } __packed;
1332
1333 struct host_cmd_ds_11n_batimeout {
1334         u8 tid;
1335         u8 peer_mac_addr[ETH_ALEN];
1336         u8 origninator;
1337 } __packed;
1338
1339 struct host_cmd_ds_11n_cfg {
1340         __le16 action;
1341         __le16 ht_tx_cap;
1342         __le16 ht_tx_info;
1343         __le16 misc_config;     /* Needed for 802.11AC cards only */
1344 } __packed;
1345
1346 struct host_cmd_ds_txbuf_cfg {
1347         __le16 action;
1348         __le16 buff_size;
1349         __le16 mp_end_port;     /* SDIO only, reserved for other interfacces */
1350         __le16 reserved3;
1351 } __packed;
1352
1353 struct host_cmd_ds_amsdu_aggr_ctrl {
1354         __le16 action;
1355         __le16 enable;
1356         __le16 curr_buf_size;
1357 } __packed;
1358
1359 struct host_cmd_ds_sta_deauth {
1360         u8 mac[ETH_ALEN];
1361         __le16 reason;
1362 } __packed;
1363
1364 struct mwifiex_ie_types_pwr_capability {
1365         struct mwifiex_ie_types_header header;
1366         s8 min_pwr;
1367         s8 max_pwr;
1368 };
1369
1370 struct mwifiex_ie_types_local_pwr_constraint {
1371         struct mwifiex_ie_types_header header;
1372         u8 chan;
1373         u8 constraint;
1374 };
1375
1376 struct mwifiex_ie_types_wmm_param_set {
1377         struct mwifiex_ie_types_header header;
1378         u8 wmm_ie[1];
1379 };
1380
1381 struct mwifiex_ie_types_wmm_queue_status {
1382         struct mwifiex_ie_types_header header;
1383         u8 queue_index;
1384         u8 disabled;
1385         __le16 medium_time;
1386         u8 flow_required;
1387         u8 flow_created;
1388         u32 reserved;
1389 };
1390
1391 struct ieee_types_vendor_header {
1392         u8 element_id;
1393         u8 len;
1394         u8 oui[4];      /* 0~2: oui, 3: oui_type */
1395         u8 oui_subtype;
1396         u8 version;
1397 } __packed;
1398
1399 struct ieee_types_wmm_parameter {
1400         /*
1401          * WMM Parameter IE - Vendor Specific Header:
1402          *   element_id  [221/0xdd]
1403          *   Len         [24]
1404          *   Oui         [00:50:f2]
1405          *   OuiType     [2]
1406          *   OuiSubType  [1]
1407          *   Version     [1]
1408          */
1409         struct ieee_types_vendor_header vend_hdr;
1410         u8 qos_info_bitmap;
1411         u8 reserved;
1412         struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
1413 } __packed;
1414
1415 struct ieee_types_wmm_info {
1416
1417         /*
1418          * WMM Info IE - Vendor Specific Header:
1419          *   element_id  [221/0xdd]
1420          *   Len         [7]
1421          *   Oui         [00:50:f2]
1422          *   OuiType     [2]
1423          *   OuiSubType  [0]
1424          *   Version     [1]
1425          */
1426         struct ieee_types_vendor_header vend_hdr;
1427
1428         u8 qos_info_bitmap;
1429 } __packed;
1430
1431 struct host_cmd_ds_wmm_get_status {
1432         u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
1433                               IEEE80211_NUM_ACS];
1434         u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1435 } __packed;
1436
1437 struct mwifiex_wmm_ac_status {
1438         u8 disabled;
1439         u8 flow_required;
1440         u8 flow_created;
1441 };
1442
1443 struct mwifiex_ie_types_htcap {
1444         struct mwifiex_ie_types_header header;
1445         struct ieee80211_ht_cap ht_cap;
1446 } __packed;
1447
1448 struct mwifiex_ie_types_vhtcap {
1449         struct mwifiex_ie_types_header header;
1450         struct ieee80211_vht_cap vht_cap;
1451 } __packed;
1452
1453 struct mwifiex_ie_types_aid {
1454         struct mwifiex_ie_types_header header;
1455         __le16 aid;
1456 } __packed;
1457
1458 struct mwifiex_ie_types_oper_mode_ntf {
1459         struct mwifiex_ie_types_header header;
1460         u8 oper_mode;
1461 } __packed;
1462
1463 /* VHT Operations IE */
1464 struct mwifiex_ie_types_vht_oper {
1465         struct mwifiex_ie_types_header header;
1466         u8 chan_width;
1467         u8 chan_center_freq_1;
1468         u8 chan_center_freq_2;
1469         /* Basic MCS set map, each 2 bits stands for a NSS */
1470         __le16 basic_mcs_map;
1471 } __packed;
1472
1473 struct mwifiex_ie_types_wmmcap {
1474         struct mwifiex_ie_types_header header;
1475         struct mwifiex_types_wmm_info wmm_info;
1476 } __packed;
1477
1478 struct mwifiex_ie_types_htinfo {
1479         struct mwifiex_ie_types_header header;
1480         struct ieee80211_ht_operation ht_oper;
1481 } __packed;
1482
1483 struct mwifiex_ie_types_2040bssco {
1484         struct mwifiex_ie_types_header header;
1485         u8 bss_co_2040;
1486 } __packed;
1487
1488 struct mwifiex_ie_types_extcap {
1489         struct mwifiex_ie_types_header header;
1490         u8 ext_capab[0];
1491 } __packed;
1492
1493 struct mwifiex_ie_types_qos_info {
1494         struct mwifiex_ie_types_header header;
1495         u8 qos_info;
1496 } __packed;
1497
1498 struct host_cmd_ds_mac_reg_access {
1499         __le16 action;
1500         __le16 offset;
1501         __le32 value;
1502 } __packed;
1503
1504 struct host_cmd_ds_bbp_reg_access {
1505         __le16 action;
1506         __le16 offset;
1507         u8 value;
1508         u8 reserved[3];
1509 } __packed;
1510
1511 struct host_cmd_ds_rf_reg_access {
1512         __le16 action;
1513         __le16 offset;
1514         u8 value;
1515         u8 reserved[3];
1516 } __packed;
1517
1518 struct host_cmd_ds_pmic_reg_access {
1519         __le16 action;
1520         __le16 offset;
1521         u8 value;
1522         u8 reserved[3];
1523 } __packed;
1524
1525 struct host_cmd_ds_802_11_eeprom_access {
1526         __le16 action;
1527
1528         __le16 offset;
1529         __le16 byte_count;
1530         u8 value;
1531 } __packed;
1532
1533 struct mwifiex_assoc_event {
1534         u8 sta_addr[ETH_ALEN];
1535         __le16 type;
1536         __le16 len;
1537         __le16 frame_control;
1538         __le16 cap_info;
1539         __le16 listen_interval;
1540         u8 data[0];
1541 } __packed;
1542
1543 struct host_cmd_ds_sys_config {
1544         __le16 action;
1545         u8 tlv[0];
1546 };
1547
1548 struct host_cmd_11ac_vht_cfg {
1549         __le16 action;
1550         u8 band_config;
1551         u8 misc_config;
1552         __le32 cap_info;
1553         __le32 mcs_tx_set;
1554         __le32 mcs_rx_set;
1555 } __packed;
1556
1557 struct host_cmd_tlv_akmp {
1558         struct mwifiex_ie_types_header header;
1559         __le16 key_mgmt;
1560         __le16 key_mgmt_operation;
1561 } __packed;
1562
1563 struct host_cmd_tlv_pwk_cipher {
1564         struct mwifiex_ie_types_header header;
1565         __le16 proto;
1566         u8 cipher;
1567         u8 reserved;
1568 } __packed;
1569
1570 struct host_cmd_tlv_gwk_cipher {
1571         struct mwifiex_ie_types_header header;
1572         u8 cipher;
1573         u8 reserved;
1574 } __packed;
1575
1576 struct host_cmd_tlv_passphrase {
1577         struct mwifiex_ie_types_header header;
1578         u8 passphrase[0];
1579 } __packed;
1580
1581 struct host_cmd_tlv_wep_key {
1582         struct mwifiex_ie_types_header header;
1583         u8 key_index;
1584         u8 is_default;
1585         u8 key[1];
1586 };
1587
1588 struct host_cmd_tlv_auth_type {
1589         struct mwifiex_ie_types_header header;
1590         u8 auth_type;
1591 } __packed;
1592
1593 struct host_cmd_tlv_encrypt_protocol {
1594         struct mwifiex_ie_types_header header;
1595         __le16 proto;
1596 } __packed;
1597
1598 struct host_cmd_tlv_ssid {
1599         struct mwifiex_ie_types_header header;
1600         u8 ssid[0];
1601 } __packed;
1602
1603 struct host_cmd_tlv_rates {
1604         struct mwifiex_ie_types_header header;
1605         u8 rates[0];
1606 } __packed;
1607
1608 struct mwifiex_ie_types_bssid_list {
1609         struct mwifiex_ie_types_header header;
1610         u8 bssid[ETH_ALEN];
1611 } __packed;
1612
1613 struct host_cmd_tlv_bcast_ssid {
1614         struct mwifiex_ie_types_header header;
1615         u8 bcast_ctl;
1616 } __packed;
1617
1618 struct host_cmd_tlv_beacon_period {
1619         struct mwifiex_ie_types_header header;
1620         __le16 period;
1621 } __packed;
1622
1623 struct host_cmd_tlv_dtim_period {
1624         struct mwifiex_ie_types_header header;
1625         u8 period;
1626 } __packed;
1627
1628 struct host_cmd_tlv_frag_threshold {
1629         struct mwifiex_ie_types_header header;
1630         __le16 frag_thr;
1631 } __packed;
1632
1633 struct host_cmd_tlv_rts_threshold {
1634         struct mwifiex_ie_types_header header;
1635         __le16 rts_thr;
1636 } __packed;
1637
1638 struct host_cmd_tlv_retry_limit {
1639         struct mwifiex_ie_types_header header;
1640         u8 limit;
1641 } __packed;
1642
1643 struct host_cmd_tlv_mac_addr {
1644         struct mwifiex_ie_types_header header;
1645         u8 mac_addr[ETH_ALEN];
1646 } __packed;
1647
1648 struct host_cmd_tlv_channel_band {
1649         struct mwifiex_ie_types_header header;
1650         u8 band_config;
1651         u8 channel;
1652 } __packed;
1653
1654 struct host_cmd_tlv_ageout_timer {
1655         struct mwifiex_ie_types_header header;
1656         __le32 sta_ao_timer;
1657 } __packed;
1658
1659 struct host_cmd_ds_version_ext {
1660         u8 version_str_sel;
1661         char version_str[128];
1662 } __packed;
1663
1664 struct host_cmd_ds_mgmt_frame_reg {
1665         __le16 action;
1666         __le32 mask;
1667 } __packed;
1668
1669 struct host_cmd_ds_p2p_mode_cfg {
1670         __le16 action;
1671         __le16 mode;
1672 } __packed;
1673
1674 struct host_cmd_ds_remain_on_chan {
1675         __le16 action;
1676         u8 status;
1677         u8 reserved;
1678         u8 band_cfg;
1679         u8 channel;
1680         __le32 duration;
1681 } __packed;
1682
1683 struct host_cmd_ds_802_11_ibss_status {
1684         __le16 action;
1685         __le16 enable;
1686         u8 bssid[ETH_ALEN];
1687         __le16 beacon_interval;
1688         __le16 atim_window;
1689         __le16 use_g_rate_protect;
1690 } __packed;
1691
1692 struct mwifiex_fw_mef_entry {
1693         u8 mode;
1694         u8 action;
1695         __le16 exprsize;
1696         u8 expr[0];
1697 } __packed;
1698
1699 struct host_cmd_ds_mef_cfg {
1700         __le32 criteria;
1701         __le16 num_entries;
1702         struct mwifiex_fw_mef_entry mef_entry[0];
1703 } __packed;
1704
1705 #define CONNECTION_TYPE_INFRA   0
1706 #define CONNECTION_TYPE_ADHOC   1
1707 #define CONNECTION_TYPE_AP      2
1708
1709 struct host_cmd_ds_set_bss_mode {
1710         u8 con_type;
1711 } __packed;
1712
1713 struct host_cmd_ds_pcie_details {
1714         /* TX buffer descriptor ring address */
1715         u32 txbd_addr_lo;
1716         u32 txbd_addr_hi;
1717         /* TX buffer descriptor ring count */
1718         u32 txbd_count;
1719
1720         /* RX buffer descriptor ring address */
1721         u32 rxbd_addr_lo;
1722         u32 rxbd_addr_hi;
1723         /* RX buffer descriptor ring count */
1724         u32 rxbd_count;
1725
1726         /* Event buffer descriptor ring address */
1727         u32 evtbd_addr_lo;
1728         u32 evtbd_addr_hi;
1729         /* Event buffer descriptor ring count */
1730         u32 evtbd_count;
1731
1732         /* Sleep cookie buffer physical address */
1733         u32 sleep_cookie_addr_lo;
1734         u32 sleep_cookie_addr_hi;
1735 } __packed;
1736
1737 struct mwifiex_ie_types_rssi_threshold {
1738         struct mwifiex_ie_types_header header;
1739         u8 abs_value;
1740         u8 evt_freq;
1741 } __packed;
1742
1743 struct host_cmd_ds_802_11_subsc_evt {
1744         __le16 action;
1745         __le16 events;
1746 } __packed;
1747
1748 struct mwifiex_ie {
1749         __le16 ie_index;
1750         __le16 mgmt_subtype_mask;
1751         __le16 ie_length;
1752         u8 ie_buffer[IEEE_MAX_IE_SIZE];
1753 } __packed;
1754
1755 #define MAX_MGMT_IE_INDEX       16
1756 struct mwifiex_ie_list {
1757         __le16 type;
1758         __le16 len;
1759         struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1760 } __packed;
1761
1762 struct coalesce_filt_field_param {
1763         u8 operation;
1764         u8 operand_len;
1765         __le16 offset;
1766         u8 operand_byte_stream[4];
1767 };
1768
1769 struct coalesce_receive_filt_rule {
1770         struct mwifiex_ie_types_header header;
1771         u8 num_of_fields;
1772         u8 pkt_type;
1773         __le16 max_coalescing_delay;
1774         struct coalesce_filt_field_param params[0];
1775 } __packed;
1776
1777 struct host_cmd_ds_coalesce_cfg {
1778         __le16 action;
1779         __le16 num_of_rules;
1780         struct coalesce_receive_filt_rule rule[0];
1781 } __packed;
1782
1783 struct host_cmd_ds_command {
1784         __le16 command;
1785         __le16 size;
1786         __le16 seq_num;
1787         __le16 result;
1788         union {
1789                 struct host_cmd_ds_get_hw_spec hw_spec;
1790                 struct host_cmd_ds_mac_control mac_ctrl;
1791                 struct host_cmd_ds_802_11_mac_address mac_addr;
1792                 struct host_cmd_ds_mac_multicast_adr mc_addr;
1793                 struct host_cmd_ds_802_11_get_log get_log;
1794                 struct host_cmd_ds_802_11_rssi_info rssi_info;
1795                 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1796                 struct host_cmd_ds_802_11_snmp_mib smib;
1797                 struct host_cmd_ds_tx_rate_query tx_rate;
1798                 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1799                 struct host_cmd_ds_txpwr_cfg txp_cfg;
1800                 struct host_cmd_ds_rf_tx_pwr txp;
1801                 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1802                 struct host_cmd_ds_rf_ant_siso ant_siso;
1803                 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1804                 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1805                 struct host_cmd_ds_802_11_scan scan;
1806                 struct host_cmd_ds_802_11_scan_ext ext_scan;
1807                 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1808                 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1809                 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1810                 struct host_cmd_ds_802_11_associate associate;
1811                 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1812                 struct host_cmd_ds_802_11_deauthenticate deauth;
1813                 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1814                 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1815                 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1816                 struct host_cmd_ds_802_11d_domain_info domain_info;
1817                 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1818                 struct host_cmd_ds_11n_addba_req add_ba_req;
1819                 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1820                 struct host_cmd_ds_11n_delba del_ba;
1821                 struct host_cmd_ds_txbuf_cfg tx_buf;
1822                 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1823                 struct host_cmd_ds_11n_cfg htcfg;
1824                 struct host_cmd_ds_wmm_get_status get_wmm_status;
1825                 struct host_cmd_ds_802_11_key_material key_material;
1826                 struct host_cmd_ds_802_11_key_material_v2 key_material_v2;
1827                 struct host_cmd_ds_version_ext verext;
1828                 struct host_cmd_ds_mgmt_frame_reg reg_mask;
1829                 struct host_cmd_ds_remain_on_chan roc_cfg;
1830                 struct host_cmd_ds_p2p_mode_cfg mode_cfg;
1831                 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1832                 struct host_cmd_ds_mef_cfg mef_cfg;
1833                 struct host_cmd_ds_mac_reg_access mac_reg;
1834                 struct host_cmd_ds_bbp_reg_access bbp_reg;
1835                 struct host_cmd_ds_rf_reg_access rf_reg;
1836                 struct host_cmd_ds_pmic_reg_access pmic_reg;
1837                 struct host_cmd_ds_set_bss_mode bss_mode;
1838                 struct host_cmd_ds_pcie_details pcie_host_spec;
1839                 struct host_cmd_ds_802_11_eeprom_access eeprom;
1840                 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
1841                 struct host_cmd_ds_sys_config uap_sys_config;
1842                 struct host_cmd_ds_sta_deauth sta_deauth;
1843                 struct host_cmd_11ac_vht_cfg vht_cfg;
1844                 struct host_cmd_ds_coalesce_cfg coalesce_cfg;
1845                 struct host_cmd_ds_tdls_oper tdls_oper;
1846         } params;
1847 } __packed;
1848
1849 struct mwifiex_opt_sleep_confirm {
1850         __le16 command;
1851         __le16 size;
1852         __le16 seq_num;
1853         __le16 result;
1854         __le16 action;
1855         __le16 resp_ctrl;
1856 } __packed;
1857 #endif /* !_MWIFIEX_FW_H_ */