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