blob: 9f674bbebe65afc2f3fa2edf001af0d414cd8b4d [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
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
28struct 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
36struct rx_packet_hdr {
37 struct ethhdr eth803_hdr;
38 struct rfc_1042_hdr rfc1042_hdr;
39};
40
41struct tx_packet_hdr {
42 struct ethhdr eth803_hdr;
43 struct rfc_1042_hdr rfc1042_hdr;
44};
45
46#define B_SUPPORTED_RATES 5
47#define G_SUPPORTED_RATES 9
48#define BG_SUPPORTED_RATES 13
49#define A_SUPPORTED_RATES 9
50#define HOSTCMD_SUPPORTED_RATES 14
51#define N_SUPPORTED_RATES 3
52#define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN)
53
54#define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11))
55#define IS_SUPPORT_MULTI_BANDS(adapter) \
56 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
57#define GET_FW_DEFAULT_BANDS(adapter) \
58 ((adapter->fw_cap_info >> 8) & ALL_802_11_BANDS)
59
Bing Zhao5e6e3a92011-03-21 18:00:50 -070060#define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
61
62#define KEY_INFO_ENABLED 0x01
63enum KEY_TYPE_ID {
64 KEY_TYPE_ID_WEP = 0,
65 KEY_TYPE_ID_TKIP,
66 KEY_TYPE_ID_AES,
67 KEY_TYPE_ID_WAPI,
68};
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -070069#define KEY_MCAST BIT(0)
70#define KEY_UNICAST BIT(1)
71#define KEY_ENABLED BIT(2)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070072
73#define WAPI_KEY_LEN 50
74
Bing Zhao5e6e3a92011-03-21 18:00:50 -070075#define MAX_POLL_TRIES 100
76
77#define MAX_MULTI_INTERFACE_POLL_TRIES 1000
78
79#define MAX_FIRMWARE_POLL_TRIES 100
80
Amitkumar Karward930fae2011-10-11 17:41:21 -070081#define FIRMWARE_READY_SDIO 0xfedc
82#define FIRMWARE_READY_PCIE 0xfedcba00
Bing Zhao5e6e3a92011-03-21 18:00:50 -070083
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070084enum mwifiex_usb_ep {
85 MWIFIEX_USB_EP_CMD_EVENT = 1,
86 MWIFIEX_USB_EP_DATA = 2,
87};
88
Bing Zhao5e6e3a92011-03-21 18:00:50 -070089enum MWIFIEX_802_11_PRIVACY_FILTER {
90 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
91 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
92};
93
Bing Zhao5e6e3a92011-03-21 18:00:50 -070094#define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
95
Avinash Patile76268d2012-05-08 18:30:27 -070096#define UAP_BSS_PARAMS_I 0
Avinash Patilede98bf2012-05-08 18:30:28 -070097#define UAP_CUSTOM_IE_I 1
98#define MWIFIEX_AUTO_IDX_MASK 0xffff
99#define MWIFIEX_DELETE_MASK 0x0000
Avinash Patilf31acab2012-05-08 18:30:29 -0700100#define MGMT_MASK_ASSOC_REQ 0x01
101#define MGMT_MASK_REASSOC_REQ 0x04
102#define MGMT_MASK_ASSOC_RESP 0x02
103#define MGMT_MASK_REASSOC_RESP 0x08
104#define MGMT_MASK_PROBE_REQ 0x10
105#define MGMT_MASK_PROBE_RESP 0x20
106#define MGMT_MASK_BEACON 0x100
Avinash Patile76268d2012-05-08 18:30:27 -0700107
Avinash Patil12190c52012-05-08 18:30:24 -0700108#define TLV_TYPE_UAP_SSID 0x0000
109
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700110#define PROPRIETARY_TLV_BASE_ID 0x0100
111#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
112#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
113#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700114#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700115#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
117#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
118#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700119#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700120#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700121#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700122#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700123#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
124#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700125#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700126#define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
127#define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
128#define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700129#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700130#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
131#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
132#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700133#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700134#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patile5686342012-05-08 18:30:25 -0700135#define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700136#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700137#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
138#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700139#define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
140#define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700141
142#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
143
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700144#define SSN_MASK 0xfff0
145
146#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700147#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700148
149#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
150
151#define BA_STREAM_NOT_ALLOWED 0xff
152
153#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700154 priv->adapter->config_bands & BAND_AN) && \
155 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700156#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
157 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
158
159#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
160#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700161
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700162#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Marc Yang6d2bd912011-03-25 19:47:02 -0700163
164/* dev_cap bitmap
165 * BIT
166 * 0-16 reserved
167 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
168 * 18-22 reserved
169 * 23 IEEE80211_HT_CAP_SGI_20
170 * 24 IEEE80211_HT_CAP_SGI_40
171 * 25 IEEE80211_HT_CAP_TX_STBC
172 * 26 IEEE80211_HT_CAP_RX_STBC
173 * 27-28 reserved
174 * 29 IEEE80211_HT_CAP_GRN_FLD
175 * 30-31 reserved
176 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700177#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700178#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
179#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
180#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
181#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
182#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
183
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700184/* httxcfg bitmap
185 * 0 reserved
186 * 1 20/40 Mhz enable(1)/disable(0)
187 * 2-3 reserved
188 * 4 green field enable(1)/disable(0)
189 * 5 short GI in 20 Mhz enable(1)/disable(0)
190 * 6 short GI in 40 Mhz enable(1)/disable(0)
191 * 7-15 reserved
192 */
193#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
194
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700195#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700196#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800197#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700198
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700199#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
200
201#define LLC_SNAP_LEN 8
202
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700203#define MOD_CLASS_HR_DSSS 0x03
204#define MOD_CLASS_OFDM 0x07
205#define MOD_CLASS_HT 0x08
206#define HT_BW_20 0
207#define HT_BW_40 1
208
209#define HostCmd_CMD_GET_HW_SPEC 0x0003
210#define HostCmd_CMD_802_11_SCAN 0x0006
211#define HostCmd_CMD_802_11_GET_LOG 0x000b
212#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
213#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
214#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
215#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
216#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
217#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
218#define HostCmd_CMD_RF_REG_ACCESS 0x001b
219#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
220#define HostCmd_CMD_802_11_RF_CHANNEL 0x001d
221#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
222#define HostCmd_CMD_MAC_CONTROL 0x0028
223#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
224#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
225#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
226#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
227#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
228#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
229#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
230#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700231#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700232#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
233#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
234#define HostCmd_CMD_VERSION_EXT 0x0097
235#define HostCmd_CMD_RSSI_INFO 0x00a4
236#define HostCmd_CMD_FUNC_INIT 0x00a9
237#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700238#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
239#define HostCmd_CMD_UAP_BSS_START 0x00b1
240#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700241#define HostCmd_CMD_11N_CFG 0x00cd
242#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
243#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
244#define HostCmd_CMD_11N_DELBA 0x00d0
245#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
246#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
247#define HostCmd_CMD_TXPWR_CFG 0x00d1
248#define HostCmd_CMD_TX_RATE_CFG 0x00d6
249#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
250#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
251#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
252#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700253#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700254
Avinash Patilf752dcd2012-05-08 18:30:26 -0700255#define PROTOCOL_NO_SECURITY 0x01
256#define PROTOCOL_STATIC_WEP 0x02
257#define PROTOCOL_WPA 0x08
258#define PROTOCOL_WPA2 0x20
259#define PROTOCOL_WPA2_MIXED 0x28
260#define PROTOCOL_EAP 0x40
261#define KEY_MGMT_NONE 0x04
262#define KEY_MGMT_PSK 0x02
263#define KEY_MGMT_EAP 0x01
264#define CIPHER_TKIP 0x04
265#define CIPHER_AES_CCMP 0x08
266#define VALID_CIPHER_BITMAP 0x0c
267
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700268enum ENH_PS_MODES {
269 EN_PS = 1,
270 DIS_PS = 2,
271 EN_AUTO_DS = 3,
272 DIS_AUTO_DS = 4,
273 SLEEP_CONFIRM = 5,
274 GET_PS = 0,
275 EN_AUTO_PS = 0xff,
276 DIS_AUTO_PS = 0xfe,
277};
278
279#define HostCmd_RET_BIT 0x8000
280#define HostCmd_ACT_GEN_GET 0x0000
281#define HostCmd_ACT_GEN_SET 0x0001
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700282#define HostCmd_ACT_BITWISE_SET 0x0002
283#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700284#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700285
286#define HostCmd_ACT_MAC_RX_ON 0x0001
287#define HostCmd_ACT_MAC_TX_ON 0x0002
288#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
289#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
290#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
291#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700292#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
293
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700294#define HostCmd_BSS_MODE_IBSS 0x0002
295#define HostCmd_BSS_MODE_ANY 0x0003
296
297#define HostCmd_SCAN_RADIO_TYPE_BG 0
298#define HostCmd_SCAN_RADIO_TYPE_A 1
299
300#define HOST_SLEEP_CFG_CANCEL 0xffffffff
301#define HOST_SLEEP_CFG_COND_DEF 0x0000000f
302#define HOST_SLEEP_CFG_GPIO_DEF 0xff
303#define HOST_SLEEP_CFG_GAP_DEF 0
304
305#define CMD_F_HOSTCMD (1 << 0)
306#define CMD_F_CANCELED (1 << 1)
307
308#define HostCmd_CMD_ID_MASK 0x0fff
309
310#define HostCmd_SEQ_NUM_MASK 0x00ff
311
312#define HostCmd_BSS_NUM_MASK 0x0f00
313
314#define HostCmd_BSS_TYPE_MASK 0xf000
315
316#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
317 (((seq) & 0x00ff) | \
318 (((num) & 0x000f) << 8)) | \
319 (((type) & 0x000f) << 12); }
320
321#define HostCmd_GET_SEQ_NO(seq) \
322 ((seq) & HostCmd_SEQ_NUM_MASK)
323
324#define HostCmd_GET_BSS_NO(seq) \
325 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
326
327#define HostCmd_GET_BSS_TYPE(seq) \
328 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
329
330#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
331#define EVENT_LINK_LOST 0x00000003
332#define EVENT_LINK_SENSED 0x00000004
333#define EVENT_MIB_CHANGED 0x00000006
334#define EVENT_INIT_DONE 0x00000007
335#define EVENT_DEAUTHENTICATED 0x00000008
336#define EVENT_DISASSOCIATED 0x00000009
337#define EVENT_PS_AWAKE 0x0000000a
338#define EVENT_PS_SLEEP 0x0000000b
339#define EVENT_MIC_ERR_MULTICAST 0x0000000d
340#define EVENT_MIC_ERR_UNICAST 0x0000000e
341#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
342#define EVENT_ADHOC_BCN_LOST 0x00000011
343
344#define EVENT_WMM_STATUS_CHANGE 0x00000017
345#define EVENT_BG_SCAN_REPORT 0x00000018
346#define EVENT_RSSI_LOW 0x00000019
347#define EVENT_SNR_LOW 0x0000001a
348#define EVENT_MAX_FAIL 0x0000001b
349#define EVENT_RSSI_HIGH 0x0000001c
350#define EVENT_SNR_HIGH 0x0000001d
351#define EVENT_IBSS_COALESCED 0x0000001e
352#define EVENT_DATA_RSSI_LOW 0x00000024
353#define EVENT_DATA_SNR_LOW 0x00000025
354#define EVENT_DATA_RSSI_HIGH 0x00000026
355#define EVENT_DATA_SNR_HIGH 0x00000027
356#define EVENT_LINK_QUALITY 0x00000028
357#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700358#define EVENT_UAP_STA_DEAUTH 0x0000002c
359#define EVENT_UAP_STA_ASSOC 0x0000002d
360#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700361#define EVENT_PRE_BEACON_LOST 0x00000031
362#define EVENT_ADDBA 0x00000033
363#define EVENT_DELBA 0x00000034
364#define EVENT_BA_STREAM_TIEMOUT 0x00000037
365#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700366#define EVENT_UAP_BSS_IDLE 0x00000043
367#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700368#define EVENT_WEP_ICV_ERR 0x00000046
369#define EVENT_HS_ACT_REQ 0x00000047
370#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700371#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700372#define EVENT_HOSTWAKE_STAIE 0x0000004d
373
374#define EVENT_ID_MASK 0xffff
375#define BSS_NUM_MASK 0xf
376
377#define EVENT_GET_BSS_NUM(event_cause) \
378 (((event_cause) >> 16) & BSS_NUM_MASK)
379
380#define EVENT_GET_BSS_TYPE(event_cause) \
381 (((event_cause) >> 24) & 0x00ff)
382
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700383struct mwifiex_ie_types_header {
384 __le16 type;
385 __le16 len;
386} __packed;
387
388struct mwifiex_ie_types_data {
389 struct mwifiex_ie_types_header header;
390 u8 data[1];
391} __packed;
392
393#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
394#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
395
396struct txpd {
397 u8 bss_type;
398 u8 bss_num;
399 __le16 tx_pkt_length;
400 __le16 tx_pkt_offset;
401 __le16 tx_pkt_type;
402 __le32 tx_control;
403 u8 priority;
404 u8 flags;
405 u8 pkt_delay_2ms;
406 u8 reserved1;
407} __packed;
408
409struct rxpd {
410 u8 bss_type;
411 u8 bss_num;
412 u16 rx_pkt_length;
413 u16 rx_pkt_offset;
414 u16 rx_pkt_type;
415 u16 seq_num;
416 u8 priority;
417 u8 rx_rate;
418 s8 snr;
419 s8 nf;
420 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
421 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
422 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
423 u8 ht_info;
424 u8 reserved;
425} __packed;
426
427enum mwifiex_chan_scan_mode_bitmasks {
428 MWIFIEX_PASSIVE_SCAN = BIT(0),
429 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
430};
431
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700432struct mwifiex_chan_scan_param_set {
433 u8 radio_type;
434 u8 chan_number;
435 u8 chan_scan_mode_bitmap;
436 __le16 min_scan_time;
437 __le16 max_scan_time;
438} __packed;
439
440struct mwifiex_ie_types_chan_list_param_set {
441 struct mwifiex_ie_types_header header;
442 struct mwifiex_chan_scan_param_set chan_scan_param[1];
443} __packed;
444
445struct chan_band_param_set {
446 u8 radio_type;
447 u8 chan_number;
448};
449
450struct mwifiex_ie_types_chan_band_list_param_set {
451 struct mwifiex_ie_types_header header;
452 struct chan_band_param_set chan_band_param[1];
453} __packed;
454
455struct mwifiex_ie_types_rates_param_set {
456 struct mwifiex_ie_types_header header;
457 u8 rates[1];
458} __packed;
459
460struct mwifiex_ie_types_ssid_param_set {
461 struct mwifiex_ie_types_header header;
462 u8 ssid[1];
463} __packed;
464
465struct mwifiex_ie_types_num_probes {
466 struct mwifiex_ie_types_header header;
467 __le16 num_probes;
468} __packed;
469
470struct mwifiex_ie_types_wildcard_ssid_params {
471 struct mwifiex_ie_types_header header;
472 u8 max_ssid_length;
473 u8 ssid[1];
474} __packed;
475
476#define TSF_DATA_SIZE 8
477struct mwifiex_ie_types_tsf_timestamp {
478 struct mwifiex_ie_types_header header;
479 u8 tsf_data[1];
480} __packed;
481
482struct mwifiex_cf_param_set {
483 u8 cfp_cnt;
484 u8 cfp_period;
485 u16 cfp_max_duration;
486 u16 cfp_duration_remaining;
487} __packed;
488
489struct mwifiex_ibss_param_set {
490 u16 atim_window;
491} __packed;
492
493struct mwifiex_ie_types_ss_param_set {
494 struct mwifiex_ie_types_header header;
495 union {
496 struct mwifiex_cf_param_set cf_param_set[1];
497 struct mwifiex_ibss_param_set ibss_param_set[1];
498 } cf_ibss;
499} __packed;
500
501struct mwifiex_fh_param_set {
502 u16 dwell_time;
503 u8 hop_set;
504 u8 hop_pattern;
505 u8 hop_index;
506} __packed;
507
508struct mwifiex_ds_param_set {
509 u8 current_chan;
510} __packed;
511
512struct mwifiex_ie_types_phy_param_set {
513 struct mwifiex_ie_types_header header;
514 union {
515 struct mwifiex_fh_param_set fh_param_set[1];
516 struct mwifiex_ds_param_set ds_param_set[1];
517 } fh_ds;
518} __packed;
519
520struct mwifiex_ie_types_auth_type {
521 struct mwifiex_ie_types_header header;
522 __le16 auth_type;
523} __packed;
524
525struct mwifiex_ie_types_vendor_param_set {
526 struct mwifiex_ie_types_header header;
527 u8 ie[MWIFIEX_MAX_VSIE_LEN];
528};
529
530struct mwifiex_ie_types_rsn_param_set {
531 struct mwifiex_ie_types_header header;
532 u8 rsn_ie[1];
533} __packed;
534
535#define KEYPARAMSET_FIXED_LEN 6
536
537struct mwifiex_ie_type_key_param_set {
538 __le16 type;
539 __le16 length;
540 __le16 key_type_id;
541 __le16 key_info;
542 __le16 key_len;
543 u8 key[50];
544} __packed;
545
546struct host_cmd_ds_802_11_key_material {
547 __le16 action;
548 struct mwifiex_ie_type_key_param_set key_param_set;
549} __packed;
550
551struct host_cmd_ds_gen {
552 u16 command;
553 u16 size;
554 u16 seq_num;
555 u16 result;
556};
557
558#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
559
560enum sleep_resp_ctrl {
561 RESP_NOT_NEEDED = 0,
562 RESP_NEEDED,
563};
564
565struct mwifiex_ps_param {
566 __le16 null_pkt_interval;
567 __le16 multiple_dtims;
568 __le16 bcn_miss_timeout;
569 __le16 local_listen_interval;
570 __le16 adhoc_wake_period;
571 __le16 mode;
572 __le16 delay_to_ps;
573};
574
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700575#define BITMAP_AUTO_DS 0x01
576#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700577
578struct mwifiex_ie_types_auto_ds_param {
579 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700580 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700581} __packed;
582
583struct mwifiex_ie_types_ps_param {
584 struct mwifiex_ie_types_header header;
585 struct mwifiex_ps_param param;
586} __packed;
587
588struct host_cmd_ds_802_11_ps_mode_enh {
589 __le16 action;
590
591 union {
592 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700593 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700594 } params;
595} __packed;
596
597struct host_cmd_ds_get_hw_spec {
598 __le16 hw_if_version;
599 __le16 version;
600 __le16 reserved;
601 __le16 num_of_mcast_adr;
602 u8 permanent_addr[ETH_ALEN];
603 __le16 region_code;
604 __le16 number_of_antenna;
605 __le32 fw_release_number;
606 __le32 reserved_1;
607 __le32 reserved_2;
608 __le32 reserved_3;
609 __le32 fw_cap_info;
610 __le32 dot_11n_dev_cap;
611 u8 dev_mcs_support;
612 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
613 __le16 reserved_4;
614} __packed;
615
616struct host_cmd_ds_802_11_rssi_info {
617 __le16 action;
618 __le16 ndata;
619 __le16 nbcn;
620 __le16 reserved[9];
621 long long reserved_1;
622};
623
624struct host_cmd_ds_802_11_rssi_info_rsp {
625 __le16 action;
626 __le16 ndata;
627 __le16 nbcn;
628 __le16 data_rssi_last;
629 __le16 data_nf_last;
630 __le16 data_rssi_avg;
631 __le16 data_nf_avg;
632 __le16 bcn_rssi_last;
633 __le16 bcn_nf_last;
634 __le16 bcn_rssi_avg;
635 __le16 bcn_nf_avg;
636 long long tsf_bcn;
637};
638
639struct host_cmd_ds_802_11_mac_address {
640 __le16 action;
641 u8 mac_addr[ETH_ALEN];
642};
643
644struct host_cmd_ds_mac_control {
645 __le16 action;
646 __le16 reserved;
647};
648
649struct host_cmd_ds_mac_multicast_adr {
650 __le16 action;
651 __le16 num_of_adrs;
652 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
653} __packed;
654
655struct host_cmd_ds_802_11_deauthenticate {
656 u8 mac_addr[ETH_ALEN];
657 __le16 reason_code;
658} __packed;
659
660struct host_cmd_ds_802_11_associate {
661 u8 peer_sta_addr[ETH_ALEN];
662 __le16 cap_info_bitmap;
663 __le16 listen_interval;
664 __le16 beacon_period;
665 u8 dtim_period;
666} __packed;
667
668struct ieee_types_assoc_rsp {
669 __le16 cap_info_bitmap;
670 __le16 status_code;
671 __le16 a_id;
672 u8 ie_buffer[1];
673} __packed;
674
675struct host_cmd_ds_802_11_associate_rsp {
676 struct ieee_types_assoc_rsp assoc_rsp;
677} __packed;
678
679struct ieee_types_cf_param_set {
680 u8 element_id;
681 u8 len;
682 u8 cfp_cnt;
683 u8 cfp_period;
684 u16 cfp_max_duration;
685 u16 cfp_duration_remaining;
686} __packed;
687
688struct ieee_types_ibss_param_set {
689 u8 element_id;
690 u8 len;
691 __le16 atim_window;
692} __packed;
693
694union ieee_types_ss_param_set {
695 struct ieee_types_cf_param_set cf_param_set;
696 struct ieee_types_ibss_param_set ibss_param_set;
697} __packed;
698
699struct ieee_types_fh_param_set {
700 u8 element_id;
701 u8 len;
702 __le16 dwell_time;
703 u8 hop_set;
704 u8 hop_pattern;
705 u8 hop_index;
706} __packed;
707
708struct ieee_types_ds_param_set {
709 u8 element_id;
710 u8 len;
711 u8 current_chan;
712} __packed;
713
714union ieee_types_phy_param_set {
715 struct ieee_types_fh_param_set fh_param_set;
716 struct ieee_types_ds_param_set ds_param_set;
717} __packed;
718
719struct host_cmd_ds_802_11_ad_hoc_start {
720 u8 ssid[IEEE80211_MAX_SSID_LEN];
721 u8 bss_mode;
722 __le16 beacon_period;
723 u8 dtim_period;
724 union ieee_types_ss_param_set ss_param_set;
725 union ieee_types_phy_param_set phy_param_set;
726 u16 reserved1;
727 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800728 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700729} __packed;
730
731struct host_cmd_ds_802_11_ad_hoc_result {
732 u8 pad[3];
733 u8 bssid[ETH_ALEN];
734} __packed;
735
736struct adhoc_bss_desc {
737 u8 bssid[ETH_ALEN];
738 u8 ssid[IEEE80211_MAX_SSID_LEN];
739 u8 bss_mode;
740 __le16 beacon_period;
741 u8 dtim_period;
742 u8 time_stamp[8];
743 u8 local_time[8];
744 union ieee_types_phy_param_set phy_param_set;
745 union ieee_types_ss_param_set ss_param_set;
746 __le16 cap_info_bitmap;
747 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
748
749 /*
750 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
751 * It is used in the Adhoc join command and will cause a
752 * binary layout mismatch with the firmware
753 */
754} __packed;
755
756struct host_cmd_ds_802_11_ad_hoc_join {
757 struct adhoc_bss_desc bss_descriptor;
758 u16 reserved1;
759 u16 reserved2;
760} __packed;
761
762struct host_cmd_ds_802_11_get_log {
763 __le32 mcast_tx_frame;
764 __le32 failed;
765 __le32 retry;
766 __le32 multi_retry;
767 __le32 frame_dup;
768 __le32 rts_success;
769 __le32 rts_failure;
770 __le32 ack_failure;
771 __le32 rx_frag;
772 __le32 mcast_rx_frame;
773 __le32 fcs_error;
774 __le32 tx_frame;
775 __le32 reserved;
776 __le32 wep_icv_err_cnt[4];
777};
778
779struct host_cmd_ds_tx_rate_query {
780 u8 tx_rate;
781 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
782 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
783 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
784 u8 ht_info;
785} __packed;
786
787enum Host_Sleep_Action {
788 HS_CONFIGURE = 0x0001,
789 HS_ACTIVATE = 0x0002,
790};
791
792struct mwifiex_hs_config_param {
793 __le32 conditions;
794 u8 gpio;
795 u8 gap;
796} __packed;
797
798struct hs_activate_param {
799 u16 resp_ctrl;
800} __packed;
801
802struct host_cmd_ds_802_11_hs_cfg_enh {
803 __le16 action;
804
805 union {
806 struct mwifiex_hs_config_param hs_config;
807 struct hs_activate_param hs_activate;
808 } params;
809} __packed;
810
811enum SNMP_MIB_INDEX {
812 OP_RATE_SET_I = 1,
813 DTIM_PERIOD_I = 3,
814 RTS_THRESH_I = 5,
815 SHORT_RETRY_LIM_I = 6,
816 LONG_RETRY_LIM_I = 7,
817 FRAG_THRESH_I = 8,
818 DOT11D_I = 9,
819};
820
821#define MAX_SNMP_BUF_SIZE 128
822
823struct host_cmd_ds_802_11_snmp_mib {
824 __le16 query_type;
825 __le16 oid;
826 __le16 buf_size;
827 u8 value[1];
828} __packed;
829
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700830struct mwifiex_rate_scope {
831 __le16 type;
832 __le16 length;
833 __le16 hr_dsss_rate_bitmap;
834 __le16 ofdm_rate_bitmap;
835 __le16 ht_mcs_rate_bitmap[8];
836} __packed;
837
838struct mwifiex_rate_drop_pattern {
839 __le16 type;
840 __le16 length;
841 __le32 rate_drop_mode;
842} __packed;
843
844struct host_cmd_ds_tx_rate_cfg {
845 __le16 action;
846 __le16 cfg_index;
847} __packed;
848
849struct mwifiex_power_group {
850 u8 modulation_class;
851 u8 first_rate_code;
852 u8 last_rate_code;
853 s8 power_step;
854 s8 power_min;
855 s8 power_max;
856 u8 ht_bandwidth;
857 u8 reserved;
858} __packed;
859
860struct mwifiex_types_power_group {
861 u16 type;
862 u16 length;
863} __packed;
864
865struct host_cmd_ds_txpwr_cfg {
866 __le16 action;
867 __le16 cfg_index;
868 __le32 mode;
869} __packed;
870
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700871struct mwifiex_bcn_param {
872 u8 bssid[ETH_ALEN];
873 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700874 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700875 __le16 beacon_period;
876 __le16 cap_info_bitmap;
877} __packed;
878
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700879#define MWIFIEX_USER_SCAN_CHAN_MAX 50
880
881#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
882
883struct mwifiex_scan_cmd_config {
884 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700885 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700886 */
887 u8 bss_mode;
888
889 /* Specific BSSID used to filter scan results in the firmware */
890 u8 specific_bssid[ETH_ALEN];
891
892 /* Length of TLVs sent in command starting at tlvBuffer */
893 u32 tlv_buf_len;
894
895 /*
896 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
897 *
898 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
899 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
900 */
901 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
902 here */
903} __packed;
904
905struct mwifiex_user_scan_chan {
906 u8 chan_number;
907 u8 radio_type;
908 u8 scan_type;
909 u8 reserved;
910 u32 scan_time;
911} __packed;
912
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700913struct mwifiex_user_scan_cfg {
914 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700915 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700916 */
917 u8 bss_mode;
918 /* Configure the number of probe requests for active chan scans */
919 u8 num_probes;
920 u8 reserved;
921 /* BSSID filter sent in the firmware command to limit the results */
922 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800923 /* SSID filter list used in the firmware to limit the scan results */
924 struct cfg80211_ssid *ssid_list;
925 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700926 /* Variable number (fixed maximum) of channels to scan up */
927 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
928} __packed;
929
930struct ie_body {
931 u8 grp_key_oui[4];
932 u8 ptk_cnt[2];
933 u8 ptk_body[4];
934} __packed;
935
936struct host_cmd_ds_802_11_scan {
937 u8 bss_mode;
938 u8 bssid[ETH_ALEN];
939 u8 tlv_buffer[1];
940} __packed;
941
942struct host_cmd_ds_802_11_scan_rsp {
943 __le16 bss_descript_size;
944 u8 number_of_sets;
945 u8 bss_desc_and_tlv_buffer[1];
946} __packed;
947
948struct host_cmd_ds_802_11_bg_scan_query {
949 u8 flush;
950} __packed;
951
952struct host_cmd_ds_802_11_bg_scan_query_rsp {
953 u32 report_condition;
954 struct host_cmd_ds_802_11_scan_rsp scan_resp;
955} __packed;
956
957struct mwifiex_ietypes_domain_param_set {
958 struct mwifiex_ie_types_header header;
959 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
960 struct ieee80211_country_ie_triplet triplet[1];
961} __packed;
962
963struct host_cmd_ds_802_11d_domain_info {
964 __le16 action;
965 struct mwifiex_ietypes_domain_param_set domain;
966} __packed;
967
968struct host_cmd_ds_802_11d_domain_info_rsp {
969 __le16 action;
970 struct mwifiex_ietypes_domain_param_set domain;
971} __packed;
972
973struct host_cmd_ds_11n_addba_req {
974 u8 add_req_result;
975 u8 peer_mac_addr[ETH_ALEN];
976 u8 dialog_token;
977 __le16 block_ack_param_set;
978 __le16 block_ack_tmo;
979 __le16 ssn;
980} __packed;
981
982struct host_cmd_ds_11n_addba_rsp {
983 u8 add_rsp_result;
984 u8 peer_mac_addr[ETH_ALEN];
985 u8 dialog_token;
986 __le16 status_code;
987 __le16 block_ack_param_set;
988 __le16 block_ack_tmo;
989 __le16 ssn;
990} __packed;
991
992struct host_cmd_ds_11n_delba {
993 u8 del_result;
994 u8 peer_mac_addr[ETH_ALEN];
995 __le16 del_ba_param_set;
996 __le16 reason_code;
997 u8 reserved;
998} __packed;
999
1000struct host_cmd_ds_11n_batimeout {
1001 u8 tid;
1002 u8 peer_mac_addr[ETH_ALEN];
1003 u8 origninator;
1004} __packed;
1005
1006struct host_cmd_ds_11n_cfg {
1007 __le16 action;
1008 __le16 ht_tx_cap;
1009 __le16 ht_tx_info;
1010} __packed;
1011
1012struct host_cmd_ds_txbuf_cfg {
1013 __le16 action;
1014 __le16 buff_size;
1015 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1016 __le16 reserved3;
1017} __packed;
1018
1019struct host_cmd_ds_amsdu_aggr_ctrl {
1020 __le16 action;
1021 __le16 enable;
1022 __le16 curr_buf_size;
1023} __packed;
1024
1025struct mwifiex_ie_types_wmm_param_set {
1026 struct mwifiex_ie_types_header header;
1027 u8 wmm_ie[1];
1028};
1029
1030struct mwifiex_ie_types_wmm_queue_status {
1031 struct mwifiex_ie_types_header header;
1032 u8 queue_index;
1033 u8 disabled;
1034 u16 medium_time;
1035 u8 flow_required;
1036 u8 flow_created;
1037 u32 reserved;
1038};
1039
1040struct ieee_types_vendor_header {
1041 u8 element_id;
1042 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001043 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001044 u8 oui_subtype;
1045 u8 version;
1046} __packed;
1047
1048struct ieee_types_wmm_ac_parameters {
1049 u8 aci_aifsn_bitmap;
1050 u8 ecw_bitmap;
1051 __le16 tx_op_limit;
1052} __packed;
1053
1054struct ieee_types_wmm_parameter {
1055 /*
1056 * WMM Parameter IE - Vendor Specific Header:
1057 * element_id [221/0xdd]
1058 * Len [24]
1059 * Oui [00:50:f2]
1060 * OuiType [2]
1061 * OuiSubType [1]
1062 * Version [1]
1063 */
1064 struct ieee_types_vendor_header vend_hdr;
1065 u8 qos_info_bitmap;
1066 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001067 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001068} __packed;
1069
1070struct ieee_types_wmm_info {
1071
1072 /*
1073 * WMM Info IE - Vendor Specific Header:
1074 * element_id [221/0xdd]
1075 * Len [7]
1076 * Oui [00:50:f2]
1077 * OuiType [2]
1078 * OuiSubType [0]
1079 * Version [1]
1080 */
1081 struct ieee_types_vendor_header vend_hdr;
1082
1083 u8 qos_info_bitmap;
1084} __packed;
1085
1086struct host_cmd_ds_wmm_get_status {
1087 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001088 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001089 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1090} __packed;
1091
1092struct mwifiex_wmm_ac_status {
1093 u8 disabled;
1094 u8 flow_required;
1095 u8 flow_created;
1096};
1097
1098struct mwifiex_ie_types_htcap {
1099 struct mwifiex_ie_types_header header;
1100 struct ieee80211_ht_cap ht_cap;
1101} __packed;
1102
1103struct mwifiex_ie_types_htinfo {
1104 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001105 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001106} __packed;
1107
1108struct mwifiex_ie_types_2040bssco {
1109 struct mwifiex_ie_types_header header;
1110 u8 bss_co_2040;
1111} __packed;
1112
1113struct mwifiex_ie_types_extcap {
1114 struct mwifiex_ie_types_header header;
1115 u8 ext_cap;
1116} __packed;
1117
1118struct host_cmd_ds_mac_reg_access {
1119 __le16 action;
1120 __le16 offset;
1121 __le32 value;
1122} __packed;
1123
1124struct host_cmd_ds_bbp_reg_access {
1125 __le16 action;
1126 __le16 offset;
1127 u8 value;
1128 u8 reserved[3];
1129} __packed;
1130
1131struct host_cmd_ds_rf_reg_access {
1132 __le16 action;
1133 __le16 offset;
1134 u8 value;
1135 u8 reserved[3];
1136} __packed;
1137
1138struct host_cmd_ds_pmic_reg_access {
1139 __le16 action;
1140 __le16 offset;
1141 u8 value;
1142 u8 reserved[3];
1143} __packed;
1144
1145struct host_cmd_ds_802_11_eeprom_access {
1146 __le16 action;
1147
1148 __le16 offset;
1149 __le16 byte_count;
1150 u8 value;
1151} __packed;
1152
Avinash Patil75edd2c2012-05-08 18:30:18 -07001153struct host_cmd_tlv {
1154 __le16 type;
1155 __le16 len;
1156} __packed;
1157
Avinash Patile5686342012-05-08 18:30:25 -07001158struct mwifiex_assoc_event {
1159 u8 sta_addr[ETH_ALEN];
1160 __le16 type;
1161 __le16 len;
1162 __le16 frame_control;
1163 __le16 cap_info;
1164 __le16 listen_interval;
1165 u8 data[0];
1166} __packed;
1167
Avinash Patil4db16a12012-05-08 18:30:20 -07001168struct host_cmd_ds_sys_config {
1169 __le16 action;
1170 u8 tlv[0];
1171};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001172
1173struct host_cmd_tlv_akmp {
1174 struct host_cmd_tlv tlv;
1175 __le16 key_mgmt;
1176 __le16 key_mgmt_operation;
1177} __packed;
1178
1179struct host_cmd_tlv_pwk_cipher {
1180 struct host_cmd_tlv tlv;
1181 __le16 proto;
1182 u8 cipher;
1183 u8 reserved;
1184} __packed;
1185
1186struct host_cmd_tlv_gwk_cipher {
1187 struct host_cmd_tlv tlv;
1188 u8 cipher;
1189 u8 reserved;
1190} __packed;
1191
1192struct host_cmd_tlv_passphrase {
1193 struct host_cmd_tlv tlv;
1194 u8 passphrase[0];
1195} __packed;
1196
1197struct host_cmd_tlv_auth_type {
1198 struct host_cmd_tlv tlv;
1199 u8 auth_type;
1200} __packed;
1201
1202struct host_cmd_tlv_encrypt_protocol {
1203 struct host_cmd_tlv tlv;
1204 __le16 proto;
1205} __packed;
1206
Avinash Patil12190c52012-05-08 18:30:24 -07001207struct host_cmd_tlv_ssid {
1208 struct host_cmd_tlv tlv;
1209 u8 ssid[0];
1210} __packed;
1211
1212struct host_cmd_tlv_beacon_period {
1213 struct host_cmd_tlv tlv;
1214 __le16 period;
1215} __packed;
1216
1217struct host_cmd_tlv_dtim_period {
1218 struct host_cmd_tlv tlv;
1219 u8 period;
1220} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001221
Avinash Patil9b930ea2012-05-08 18:30:23 -07001222struct host_cmd_tlv_frag_threshold {
1223 struct host_cmd_tlv tlv;
1224 __le16 frag_thr;
1225} __packed;
1226
1227struct host_cmd_tlv_rts_threshold {
1228 struct host_cmd_tlv tlv;
1229 __le16 rts_thr;
1230} __packed;
1231
1232struct host_cmd_tlv_retry_limit {
1233 struct host_cmd_tlv tlv;
1234 u8 limit;
1235} __packed;
1236
Avinash Patil75edd2c2012-05-08 18:30:18 -07001237struct host_cmd_tlv_mac_addr {
1238 struct host_cmd_tlv tlv;
1239 u8 mac_addr[ETH_ALEN];
1240} __packed;
1241
Avinash Patil4db16a12012-05-08 18:30:20 -07001242struct host_cmd_tlv_channel_band {
1243 struct host_cmd_tlv tlv;
1244 u8 band_config;
1245 u8 channel;
1246} __packed;
1247
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001248struct host_cmd_ds_802_11_rf_channel {
1249 __le16 action;
1250 __le16 current_channel;
1251 __le16 rf_type;
1252 __le16 reserved;
1253 u8 reserved_1[32];
1254} __packed;
1255
1256struct host_cmd_ds_version_ext {
1257 u8 version_str_sel;
1258 char version_str[128];
1259} __packed;
1260
1261struct host_cmd_ds_802_11_ibss_status {
1262 __le16 action;
1263 __le16 enable;
1264 u8 bssid[ETH_ALEN];
1265 __le16 beacon_interval;
1266 __le16 atim_window;
1267 __le16 use_g_rate_protect;
1268} __packed;
1269
1270#define CONNECTION_TYPE_INFRA 0
1271#define CONNECTION_TYPE_ADHOC 1
1272
1273struct host_cmd_ds_set_bss_mode {
1274 u8 con_type;
1275} __packed;
1276
Amitkumar Karward930fae2011-10-11 17:41:21 -07001277struct host_cmd_ds_pcie_details {
1278 /* TX buffer descriptor ring address */
1279 u32 txbd_addr_lo;
1280 u32 txbd_addr_hi;
1281 /* TX buffer descriptor ring count */
1282 u32 txbd_count;
1283
1284 /* RX buffer descriptor ring address */
1285 u32 rxbd_addr_lo;
1286 u32 rxbd_addr_hi;
1287 /* RX buffer descriptor ring count */
1288 u32 rxbd_count;
1289
1290 /* Event buffer descriptor ring address */
1291 u32 evtbd_addr_lo;
1292 u32 evtbd_addr_hi;
1293 /* Event buffer descriptor ring count */
1294 u32 evtbd_count;
1295
1296 /* Sleep cookie buffer physical address */
1297 u32 sleep_cookie_addr_lo;
1298 u32 sleep_cookie_addr_hi;
1299} __packed;
1300
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001301struct mwifiex_ie_types_rssi_threshold {
1302 struct mwifiex_ie_types_header header;
1303 u8 abs_value;
1304 u8 evt_freq;
1305} __packed;
1306
1307struct host_cmd_ds_802_11_subsc_evt {
1308 __le16 action;
1309 __le16 events;
1310} __packed;
1311
Avinash Patilede98bf2012-05-08 18:30:28 -07001312struct mwifiex_ie {
1313 __le16 ie_index;
1314 __le16 mgmt_subtype_mask;
1315 __le16 ie_length;
1316 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1317} __packed;
1318
1319#define MAX_MGMT_IE_INDEX 16
1320struct mwifiex_ie_list {
1321 __le16 type;
1322 __le16 len;
1323 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1324} __packed;
1325
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001326struct host_cmd_ds_command {
1327 __le16 command;
1328 __le16 size;
1329 __le16 seq_num;
1330 __le16 result;
1331 union {
1332 struct host_cmd_ds_get_hw_spec hw_spec;
1333 struct host_cmd_ds_mac_control mac_ctrl;
1334 struct host_cmd_ds_802_11_mac_address mac_addr;
1335 struct host_cmd_ds_mac_multicast_adr mc_addr;
1336 struct host_cmd_ds_802_11_get_log get_log;
1337 struct host_cmd_ds_802_11_rssi_info rssi_info;
1338 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1339 struct host_cmd_ds_802_11_snmp_mib smib;
1340 struct host_cmd_ds_802_11_rf_channel rf_channel;
1341 struct host_cmd_ds_tx_rate_query tx_rate;
1342 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1343 struct host_cmd_ds_txpwr_cfg txp_cfg;
1344 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1345 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1346 struct host_cmd_ds_802_11_scan scan;
1347 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1348 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1349 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1350 struct host_cmd_ds_802_11_associate associate;
1351 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1352 struct host_cmd_ds_802_11_deauthenticate deauth;
1353 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1354 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1355 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1356 struct host_cmd_ds_802_11d_domain_info domain_info;
1357 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1358 struct host_cmd_ds_11n_addba_req add_ba_req;
1359 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1360 struct host_cmd_ds_11n_delba del_ba;
1361 struct host_cmd_ds_txbuf_cfg tx_buf;
1362 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1363 struct host_cmd_ds_11n_cfg htcfg;
1364 struct host_cmd_ds_wmm_get_status get_wmm_status;
1365 struct host_cmd_ds_802_11_key_material key_material;
1366 struct host_cmd_ds_version_ext verext;
1367 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1368 struct host_cmd_ds_mac_reg_access mac_reg;
1369 struct host_cmd_ds_bbp_reg_access bbp_reg;
1370 struct host_cmd_ds_rf_reg_access rf_reg;
1371 struct host_cmd_ds_pmic_reg_access pmic_reg;
1372 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001373 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001374 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001375 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001376 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001377 } params;
1378} __packed;
1379
1380struct mwifiex_opt_sleep_confirm {
1381 __le16 command;
1382 __le16 size;
1383 __le16 seq_num;
1384 __le16 result;
1385 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001386 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001387} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001388#endif /* !_MWIFIEX_FW_H_ */