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