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