blob: b8ce78e2ba4753425d12bbc476d28debfde2ba3c [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,
Ying Luob877f4c2012-08-03 18:06:14 -070068 KEY_TYPE_ID_AES_CMAC,
Bing Zhao5e6e3a92011-03-21 18:00:50 -070069};
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -070070#define KEY_MCAST BIT(0)
71#define KEY_UNICAST BIT(1)
72#define KEY_ENABLED BIT(2)
Ying Luob877f4c2012-08-03 18:06:14 -070073#define KEY_IGTK BIT(10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070074
75#define WAPI_KEY_LEN 50
76
Bing Zhao5e6e3a92011-03-21 18:00:50 -070077#define MAX_POLL_TRIES 100
78
79#define MAX_MULTI_INTERFACE_POLL_TRIES 1000
80
81#define MAX_FIRMWARE_POLL_TRIES 100
82
Amitkumar Karward930fae2011-10-11 17:41:21 -070083#define FIRMWARE_READY_SDIO 0xfedc
84#define FIRMWARE_READY_PCIE 0xfedcba00
Bing Zhao5e6e3a92011-03-21 18:00:50 -070085
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070086enum mwifiex_usb_ep {
87 MWIFIEX_USB_EP_CMD_EVENT = 1,
88 MWIFIEX_USB_EP_DATA = 2,
89};
90
Bing Zhao5e6e3a92011-03-21 18:00:50 -070091enum MWIFIEX_802_11_PRIVACY_FILTER {
92 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
93 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
94};
95
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096#define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
97
Avinash Patile76268d2012-05-08 18:30:27 -070098#define UAP_BSS_PARAMS_I 0
Avinash Patilede98bf2012-05-08 18:30:28 -070099#define UAP_CUSTOM_IE_I 1
100#define MWIFIEX_AUTO_IDX_MASK 0xffff
101#define MWIFIEX_DELETE_MASK 0x0000
Avinash Patilf31acab2012-05-08 18:30:29 -0700102#define MGMT_MASK_ASSOC_REQ 0x01
103#define MGMT_MASK_REASSOC_REQ 0x04
104#define MGMT_MASK_ASSOC_RESP 0x02
105#define MGMT_MASK_REASSOC_RESP 0x08
106#define MGMT_MASK_PROBE_REQ 0x10
107#define MGMT_MASK_PROBE_RESP 0x20
108#define MGMT_MASK_BEACON 0x100
Avinash Patile76268d2012-05-08 18:30:27 -0700109
Avinash Patil12190c52012-05-08 18:30:24 -0700110#define TLV_TYPE_UAP_SSID 0x0000
Avinash Patila3c2c4f2012-08-27 20:32:53 -0700111#define TLV_TYPE_UAP_RATES 0x0001
Avinash Patil12190c52012-05-08 18:30:24 -0700112
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700113#define PROPRIETARY_TLV_BASE_ID 0x0100
114#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
115#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
116#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700117#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700118#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
120#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
121#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700122#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700123#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700124#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700125#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700126#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
127#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil605b73a2012-05-16 21:24:55 -0700128#define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700129#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
Avinash Patil96893532012-06-15 12:21:55 -0700130#define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700131#define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
132#define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
133#define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700134#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700135#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
136#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
137#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700138#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700139#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patile5686342012-05-08 18:30:25 -0700140#define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700141#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700142#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
143#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700144#define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
145#define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700146
147#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
148
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700149#define SSN_MASK 0xfff0
150
151#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700152#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700153
154#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
155
156#define BA_STREAM_NOT_ALLOWED 0xff
157
158#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700159 priv->adapter->config_bands & BAND_AN) && \
160 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700161#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
162 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
163
164#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
165#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700166
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700167#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Marc Yang6d2bd912011-03-25 19:47:02 -0700168
Avinash Patil22281252012-06-15 12:21:53 -0700169#define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
170 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
171 IEEE80211_HT_CAP_SM_PS)
172
173#define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
174
Marc Yang6d2bd912011-03-25 19:47:02 -0700175/* dev_cap bitmap
176 * BIT
177 * 0-16 reserved
178 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
179 * 18-22 reserved
180 * 23 IEEE80211_HT_CAP_SGI_20
181 * 24 IEEE80211_HT_CAP_SGI_40
182 * 25 IEEE80211_HT_CAP_TX_STBC
183 * 26 IEEE80211_HT_CAP_RX_STBC
184 * 27-28 reserved
185 * 29 IEEE80211_HT_CAP_GRN_FLD
186 * 30-31 reserved
187 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700188#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700189#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
190#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
191#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
192#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
193#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
194
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700195/* httxcfg bitmap
196 * 0 reserved
197 * 1 20/40 Mhz enable(1)/disable(0)
198 * 2-3 reserved
199 * 4 green field enable(1)/disable(0)
200 * 5 short GI in 20 Mhz enable(1)/disable(0)
201 * 6 short GI in 40 Mhz enable(1)/disable(0)
202 * 7-15 reserved
203 */
204#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
205
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700206#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700207#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800208#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700209
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
211
212#define LLC_SNAP_LEN 8
213
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700214#define MOD_CLASS_HR_DSSS 0x03
215#define MOD_CLASS_OFDM 0x07
216#define MOD_CLASS_HT 0x08
217#define HT_BW_20 0
218#define HT_BW_40 1
219
220#define HostCmd_CMD_GET_HW_SPEC 0x0003
221#define HostCmd_CMD_802_11_SCAN 0x0006
222#define HostCmd_CMD_802_11_GET_LOG 0x000b
223#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
224#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
225#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
226#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
227#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
228#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
229#define HostCmd_CMD_RF_REG_ACCESS 0x001b
230#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700231#define HostCmd_CMD_RF_TX_PWR 0x001e
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700232#define HostCmd_CMD_RF_ANTENNA 0x0020
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700233#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
234#define HostCmd_CMD_MAC_CONTROL 0x0028
235#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
236#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
237#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
238#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
239#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
240#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
241#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
242#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700243#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700244#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
245#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
246#define HostCmd_CMD_VERSION_EXT 0x0097
247#define HostCmd_CMD_RSSI_INFO 0x00a4
248#define HostCmd_CMD_FUNC_INIT 0x00a9
249#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700250#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
251#define HostCmd_CMD_UAP_BSS_START 0x00b1
252#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700253#define HostCmd_CMD_11N_CFG 0x00cd
254#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
255#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
256#define HostCmd_CMD_11N_DELBA 0x00d0
257#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
258#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
259#define HostCmd_CMD_TXPWR_CFG 0x00d1
260#define HostCmd_CMD_TX_RATE_CFG 0x00d6
261#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
262#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
263#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
264#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700265#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700266
Avinash Patilf752dcd2012-05-08 18:30:26 -0700267#define PROTOCOL_NO_SECURITY 0x01
268#define PROTOCOL_STATIC_WEP 0x02
269#define PROTOCOL_WPA 0x08
270#define PROTOCOL_WPA2 0x20
271#define PROTOCOL_WPA2_MIXED 0x28
272#define PROTOCOL_EAP 0x40
273#define KEY_MGMT_NONE 0x04
274#define KEY_MGMT_PSK 0x02
275#define KEY_MGMT_EAP 0x01
276#define CIPHER_TKIP 0x04
277#define CIPHER_AES_CCMP 0x08
278#define VALID_CIPHER_BITMAP 0x0c
279
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700280enum ENH_PS_MODES {
281 EN_PS = 1,
282 DIS_PS = 2,
283 EN_AUTO_DS = 3,
284 DIS_AUTO_DS = 4,
285 SLEEP_CONFIRM = 5,
286 GET_PS = 0,
287 EN_AUTO_PS = 0xff,
288 DIS_AUTO_PS = 0xfe,
289};
290
291#define HostCmd_RET_BIT 0x8000
292#define HostCmd_ACT_GEN_GET 0x0000
293#define HostCmd_ACT_GEN_SET 0x0001
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700294#define HostCmd_ACT_BITWISE_SET 0x0002
295#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700296#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700297
298#define HostCmd_ACT_MAC_RX_ON 0x0001
299#define HostCmd_ACT_MAC_TX_ON 0x0002
300#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
301#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
302#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
303#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700304#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
305
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306#define HostCmd_BSS_MODE_IBSS 0x0002
307#define HostCmd_BSS_MODE_ANY 0x0003
308
309#define HostCmd_SCAN_RADIO_TYPE_BG 0
310#define HostCmd_SCAN_RADIO_TYPE_A 1
311
312#define HOST_SLEEP_CFG_CANCEL 0xffffffff
Bing Zhaofd4c4512012-09-10 18:30:48 -0700313#define HOST_SLEEP_CFG_COND_DEF 0x00000000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700314#define HOST_SLEEP_CFG_GPIO_DEF 0xff
315#define HOST_SLEEP_CFG_GAP_DEF 0
316
317#define CMD_F_HOSTCMD (1 << 0)
318#define CMD_F_CANCELED (1 << 1)
319
320#define HostCmd_CMD_ID_MASK 0x0fff
321
322#define HostCmd_SEQ_NUM_MASK 0x00ff
323
324#define HostCmd_BSS_NUM_MASK 0x0f00
325
326#define HostCmd_BSS_TYPE_MASK 0xf000
327
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700328#define HostCmd_ACT_SET_RX 0x0001
329#define HostCmd_ACT_SET_TX 0x0002
330#define HostCmd_ACT_SET_BOTH 0x0003
331
332#define RF_ANTENNA_AUTO 0xFFFF
333
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700334#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
335 (((seq) & 0x00ff) | \
336 (((num) & 0x000f) << 8)) | \
337 (((type) & 0x000f) << 12); }
338
339#define HostCmd_GET_SEQ_NO(seq) \
340 ((seq) & HostCmd_SEQ_NUM_MASK)
341
342#define HostCmd_GET_BSS_NO(seq) \
343 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
344
345#define HostCmd_GET_BSS_TYPE(seq) \
346 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
347
348#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
349#define EVENT_LINK_LOST 0x00000003
350#define EVENT_LINK_SENSED 0x00000004
351#define EVENT_MIB_CHANGED 0x00000006
352#define EVENT_INIT_DONE 0x00000007
353#define EVENT_DEAUTHENTICATED 0x00000008
354#define EVENT_DISASSOCIATED 0x00000009
355#define EVENT_PS_AWAKE 0x0000000a
356#define EVENT_PS_SLEEP 0x0000000b
357#define EVENT_MIC_ERR_MULTICAST 0x0000000d
358#define EVENT_MIC_ERR_UNICAST 0x0000000e
359#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
360#define EVENT_ADHOC_BCN_LOST 0x00000011
361
362#define EVENT_WMM_STATUS_CHANGE 0x00000017
363#define EVENT_BG_SCAN_REPORT 0x00000018
364#define EVENT_RSSI_LOW 0x00000019
365#define EVENT_SNR_LOW 0x0000001a
366#define EVENT_MAX_FAIL 0x0000001b
367#define EVENT_RSSI_HIGH 0x0000001c
368#define EVENT_SNR_HIGH 0x0000001d
369#define EVENT_IBSS_COALESCED 0x0000001e
370#define EVENT_DATA_RSSI_LOW 0x00000024
371#define EVENT_DATA_SNR_LOW 0x00000025
372#define EVENT_DATA_RSSI_HIGH 0x00000026
373#define EVENT_DATA_SNR_HIGH 0x00000027
374#define EVENT_LINK_QUALITY 0x00000028
375#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700376#define EVENT_UAP_STA_DEAUTH 0x0000002c
377#define EVENT_UAP_STA_ASSOC 0x0000002d
378#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700379#define EVENT_PRE_BEACON_LOST 0x00000031
380#define EVENT_ADDBA 0x00000033
381#define EVENT_DELBA 0x00000034
382#define EVENT_BA_STREAM_TIEMOUT 0x00000037
383#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700384#define EVENT_UAP_BSS_IDLE 0x00000043
385#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700386#define EVENT_WEP_ICV_ERR 0x00000046
387#define EVENT_HS_ACT_REQ 0x00000047
388#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700389#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700390#define EVENT_HOSTWAKE_STAIE 0x0000004d
391
392#define EVENT_ID_MASK 0xffff
393#define BSS_NUM_MASK 0xf
394
395#define EVENT_GET_BSS_NUM(event_cause) \
396 (((event_cause) >> 16) & BSS_NUM_MASK)
397
398#define EVENT_GET_BSS_TYPE(event_cause) \
399 (((event_cause) >> 24) & 0x00ff)
400
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700401struct mwifiex_ie_types_header {
402 __le16 type;
403 __le16 len;
404} __packed;
405
406struct mwifiex_ie_types_data {
407 struct mwifiex_ie_types_header header;
408 u8 data[1];
409} __packed;
410
411#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
412#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
413
414struct txpd {
415 u8 bss_type;
416 u8 bss_num;
417 __le16 tx_pkt_length;
418 __le16 tx_pkt_offset;
419 __le16 tx_pkt_type;
420 __le32 tx_control;
421 u8 priority;
422 u8 flags;
423 u8 pkt_delay_2ms;
424 u8 reserved1;
425} __packed;
426
427struct rxpd {
428 u8 bss_type;
429 u8 bss_num;
Amitkumar Karwared1ea6f2012-08-03 18:06:02 -0700430 __le16 rx_pkt_length;
431 __le16 rx_pkt_offset;
432 __le16 rx_pkt_type;
433 __le16 seq_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434 u8 priority;
435 u8 rx_rate;
436 s8 snr;
437 s8 nf;
438 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
439 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
440 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
441 u8 ht_info;
442 u8 reserved;
443} __packed;
444
Avinash Patil838e4f42012-08-03 18:06:08 -0700445struct uap_txpd {
446 u8 bss_type;
447 u8 bss_num;
448 __le16 tx_pkt_length;
449 __le16 tx_pkt_offset;
450 __le16 tx_pkt_type;
451 __le32 tx_control;
452 u8 priority;
453 u8 flags;
454 u8 pkt_delay_2ms;
455 u8 reserved1;
456 __le32 reserved2;
457};
458
459struct uap_rxpd {
460 u8 bss_type;
461 u8 bss_num;
462 __le16 rx_pkt_length;
463 __le16 rx_pkt_offset;
464 __le16 rx_pkt_type;
465 __le16 seq_num;
466 u8 priority;
467 u8 reserved1;
468};
469
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700470enum mwifiex_chan_scan_mode_bitmasks {
471 MWIFIEX_PASSIVE_SCAN = BIT(0),
472 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
473};
474
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700475struct mwifiex_chan_scan_param_set {
476 u8 radio_type;
477 u8 chan_number;
478 u8 chan_scan_mode_bitmap;
479 __le16 min_scan_time;
480 __le16 max_scan_time;
481} __packed;
482
483struct mwifiex_ie_types_chan_list_param_set {
484 struct mwifiex_ie_types_header header;
485 struct mwifiex_chan_scan_param_set chan_scan_param[1];
486} __packed;
487
488struct chan_band_param_set {
489 u8 radio_type;
490 u8 chan_number;
491};
492
493struct mwifiex_ie_types_chan_band_list_param_set {
494 struct mwifiex_ie_types_header header;
495 struct chan_band_param_set chan_band_param[1];
496} __packed;
497
498struct mwifiex_ie_types_rates_param_set {
499 struct mwifiex_ie_types_header header;
500 u8 rates[1];
501} __packed;
502
503struct mwifiex_ie_types_ssid_param_set {
504 struct mwifiex_ie_types_header header;
505 u8 ssid[1];
506} __packed;
507
508struct mwifiex_ie_types_num_probes {
509 struct mwifiex_ie_types_header header;
510 __le16 num_probes;
511} __packed;
512
513struct mwifiex_ie_types_wildcard_ssid_params {
514 struct mwifiex_ie_types_header header;
515 u8 max_ssid_length;
516 u8 ssid[1];
517} __packed;
518
519#define TSF_DATA_SIZE 8
520struct mwifiex_ie_types_tsf_timestamp {
521 struct mwifiex_ie_types_header header;
522 u8 tsf_data[1];
523} __packed;
524
525struct mwifiex_cf_param_set {
526 u8 cfp_cnt;
527 u8 cfp_period;
528 u16 cfp_max_duration;
529 u16 cfp_duration_remaining;
530} __packed;
531
532struct mwifiex_ibss_param_set {
533 u16 atim_window;
534} __packed;
535
536struct mwifiex_ie_types_ss_param_set {
537 struct mwifiex_ie_types_header header;
538 union {
539 struct mwifiex_cf_param_set cf_param_set[1];
540 struct mwifiex_ibss_param_set ibss_param_set[1];
541 } cf_ibss;
542} __packed;
543
544struct mwifiex_fh_param_set {
545 u16 dwell_time;
546 u8 hop_set;
547 u8 hop_pattern;
548 u8 hop_index;
549} __packed;
550
551struct mwifiex_ds_param_set {
552 u8 current_chan;
553} __packed;
554
555struct mwifiex_ie_types_phy_param_set {
556 struct mwifiex_ie_types_header header;
557 union {
558 struct mwifiex_fh_param_set fh_param_set[1];
559 struct mwifiex_ds_param_set ds_param_set[1];
560 } fh_ds;
561} __packed;
562
563struct mwifiex_ie_types_auth_type {
564 struct mwifiex_ie_types_header header;
565 __le16 auth_type;
566} __packed;
567
568struct mwifiex_ie_types_vendor_param_set {
569 struct mwifiex_ie_types_header header;
570 u8 ie[MWIFIEX_MAX_VSIE_LEN];
571};
572
573struct mwifiex_ie_types_rsn_param_set {
574 struct mwifiex_ie_types_header header;
575 u8 rsn_ie[1];
576} __packed;
577
578#define KEYPARAMSET_FIXED_LEN 6
579
580struct mwifiex_ie_type_key_param_set {
581 __le16 type;
582 __le16 length;
583 __le16 key_type_id;
584 __le16 key_info;
585 __le16 key_len;
586 u8 key[50];
587} __packed;
588
Ying Luob877f4c2012-08-03 18:06:14 -0700589#define IGTK_PN_LEN 8
590
591struct mwifiex_cmac_param {
592 u8 ipn[IGTK_PN_LEN];
593 u8 key[WLAN_KEY_LEN_AES_CMAC];
594} __packed;
595
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700596struct host_cmd_ds_802_11_key_material {
597 __le16 action;
598 struct mwifiex_ie_type_key_param_set key_param_set;
599} __packed;
600
601struct host_cmd_ds_gen {
602 u16 command;
603 u16 size;
604 u16 seq_num;
605 u16 result;
606};
607
608#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
609
610enum sleep_resp_ctrl {
611 RESP_NOT_NEEDED = 0,
612 RESP_NEEDED,
613};
614
615struct mwifiex_ps_param {
616 __le16 null_pkt_interval;
617 __le16 multiple_dtims;
618 __le16 bcn_miss_timeout;
619 __le16 local_listen_interval;
620 __le16 adhoc_wake_period;
621 __le16 mode;
622 __le16 delay_to_ps;
623};
624
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700625#define BITMAP_AUTO_DS 0x01
626#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700627
628struct mwifiex_ie_types_auto_ds_param {
629 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700630 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700631} __packed;
632
633struct mwifiex_ie_types_ps_param {
634 struct mwifiex_ie_types_header header;
635 struct mwifiex_ps_param param;
636} __packed;
637
638struct host_cmd_ds_802_11_ps_mode_enh {
639 __le16 action;
640
641 union {
642 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700643 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700644 } params;
645} __packed;
646
647struct host_cmd_ds_get_hw_spec {
648 __le16 hw_if_version;
649 __le16 version;
650 __le16 reserved;
651 __le16 num_of_mcast_adr;
652 u8 permanent_addr[ETH_ALEN];
653 __le16 region_code;
654 __le16 number_of_antenna;
655 __le32 fw_release_number;
656 __le32 reserved_1;
657 __le32 reserved_2;
658 __le32 reserved_3;
659 __le32 fw_cap_info;
660 __le32 dot_11n_dev_cap;
661 u8 dev_mcs_support;
662 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
663 __le16 reserved_4;
664} __packed;
665
666struct host_cmd_ds_802_11_rssi_info {
667 __le16 action;
668 __le16 ndata;
669 __le16 nbcn;
670 __le16 reserved[9];
671 long long reserved_1;
672};
673
674struct host_cmd_ds_802_11_rssi_info_rsp {
675 __le16 action;
676 __le16 ndata;
677 __le16 nbcn;
678 __le16 data_rssi_last;
679 __le16 data_nf_last;
680 __le16 data_rssi_avg;
681 __le16 data_nf_avg;
682 __le16 bcn_rssi_last;
683 __le16 bcn_nf_last;
684 __le16 bcn_rssi_avg;
685 __le16 bcn_nf_avg;
686 long long tsf_bcn;
687};
688
689struct host_cmd_ds_802_11_mac_address {
690 __le16 action;
691 u8 mac_addr[ETH_ALEN];
692};
693
694struct host_cmd_ds_mac_control {
695 __le16 action;
696 __le16 reserved;
697};
698
699struct host_cmd_ds_mac_multicast_adr {
700 __le16 action;
701 __le16 num_of_adrs;
702 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
703} __packed;
704
705struct host_cmd_ds_802_11_deauthenticate {
706 u8 mac_addr[ETH_ALEN];
707 __le16 reason_code;
708} __packed;
709
710struct host_cmd_ds_802_11_associate {
711 u8 peer_sta_addr[ETH_ALEN];
712 __le16 cap_info_bitmap;
713 __le16 listen_interval;
714 __le16 beacon_period;
715 u8 dtim_period;
716} __packed;
717
718struct ieee_types_assoc_rsp {
719 __le16 cap_info_bitmap;
720 __le16 status_code;
721 __le16 a_id;
722 u8 ie_buffer[1];
723} __packed;
724
725struct host_cmd_ds_802_11_associate_rsp {
726 struct ieee_types_assoc_rsp assoc_rsp;
727} __packed;
728
729struct ieee_types_cf_param_set {
730 u8 element_id;
731 u8 len;
732 u8 cfp_cnt;
733 u8 cfp_period;
734 u16 cfp_max_duration;
735 u16 cfp_duration_remaining;
736} __packed;
737
738struct ieee_types_ibss_param_set {
739 u8 element_id;
740 u8 len;
741 __le16 atim_window;
742} __packed;
743
744union ieee_types_ss_param_set {
745 struct ieee_types_cf_param_set cf_param_set;
746 struct ieee_types_ibss_param_set ibss_param_set;
747} __packed;
748
749struct ieee_types_fh_param_set {
750 u8 element_id;
751 u8 len;
752 __le16 dwell_time;
753 u8 hop_set;
754 u8 hop_pattern;
755 u8 hop_index;
756} __packed;
757
758struct ieee_types_ds_param_set {
759 u8 element_id;
760 u8 len;
761 u8 current_chan;
762} __packed;
763
764union ieee_types_phy_param_set {
765 struct ieee_types_fh_param_set fh_param_set;
766 struct ieee_types_ds_param_set ds_param_set;
767} __packed;
768
769struct host_cmd_ds_802_11_ad_hoc_start {
770 u8 ssid[IEEE80211_MAX_SSID_LEN];
771 u8 bss_mode;
772 __le16 beacon_period;
773 u8 dtim_period;
774 union ieee_types_ss_param_set ss_param_set;
775 union ieee_types_phy_param_set phy_param_set;
776 u16 reserved1;
777 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800778 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700779} __packed;
780
781struct host_cmd_ds_802_11_ad_hoc_result {
782 u8 pad[3];
783 u8 bssid[ETH_ALEN];
784} __packed;
785
786struct adhoc_bss_desc {
787 u8 bssid[ETH_ALEN];
788 u8 ssid[IEEE80211_MAX_SSID_LEN];
789 u8 bss_mode;
790 __le16 beacon_period;
791 u8 dtim_period;
792 u8 time_stamp[8];
793 u8 local_time[8];
794 union ieee_types_phy_param_set phy_param_set;
795 union ieee_types_ss_param_set ss_param_set;
796 __le16 cap_info_bitmap;
797 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
798
799 /*
800 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
801 * It is used in the Adhoc join command and will cause a
802 * binary layout mismatch with the firmware
803 */
804} __packed;
805
806struct host_cmd_ds_802_11_ad_hoc_join {
807 struct adhoc_bss_desc bss_descriptor;
808 u16 reserved1;
809 u16 reserved2;
810} __packed;
811
812struct host_cmd_ds_802_11_get_log {
813 __le32 mcast_tx_frame;
814 __le32 failed;
815 __le32 retry;
816 __le32 multi_retry;
817 __le32 frame_dup;
818 __le32 rts_success;
819 __le32 rts_failure;
820 __le32 ack_failure;
821 __le32 rx_frag;
822 __le32 mcast_rx_frame;
823 __le32 fcs_error;
824 __le32 tx_frame;
825 __le32 reserved;
826 __le32 wep_icv_err_cnt[4];
827};
828
829struct host_cmd_ds_tx_rate_query {
830 u8 tx_rate;
831 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
832 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
833 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
834 u8 ht_info;
835} __packed;
836
837enum Host_Sleep_Action {
838 HS_CONFIGURE = 0x0001,
839 HS_ACTIVATE = 0x0002,
840};
841
842struct mwifiex_hs_config_param {
843 __le32 conditions;
844 u8 gpio;
845 u8 gap;
846} __packed;
847
848struct hs_activate_param {
849 u16 resp_ctrl;
850} __packed;
851
852struct host_cmd_ds_802_11_hs_cfg_enh {
853 __le16 action;
854
855 union {
856 struct mwifiex_hs_config_param hs_config;
857 struct hs_activate_param hs_activate;
858 } params;
859} __packed;
860
861enum SNMP_MIB_INDEX {
862 OP_RATE_SET_I = 1,
863 DTIM_PERIOD_I = 3,
864 RTS_THRESH_I = 5,
865 SHORT_RETRY_LIM_I = 6,
866 LONG_RETRY_LIM_I = 7,
867 FRAG_THRESH_I = 8,
868 DOT11D_I = 9,
869};
870
871#define MAX_SNMP_BUF_SIZE 128
872
873struct host_cmd_ds_802_11_snmp_mib {
874 __le16 query_type;
875 __le16 oid;
876 __le16 buf_size;
877 u8 value[1];
878} __packed;
879
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700880struct mwifiex_rate_scope {
881 __le16 type;
882 __le16 length;
883 __le16 hr_dsss_rate_bitmap;
884 __le16 ofdm_rate_bitmap;
885 __le16 ht_mcs_rate_bitmap[8];
886} __packed;
887
888struct mwifiex_rate_drop_pattern {
889 __le16 type;
890 __le16 length;
891 __le32 rate_drop_mode;
892} __packed;
893
894struct host_cmd_ds_tx_rate_cfg {
895 __le16 action;
896 __le16 cfg_index;
897} __packed;
898
899struct mwifiex_power_group {
900 u8 modulation_class;
901 u8 first_rate_code;
902 u8 last_rate_code;
903 s8 power_step;
904 s8 power_min;
905 s8 power_max;
906 u8 ht_bandwidth;
907 u8 reserved;
908} __packed;
909
910struct mwifiex_types_power_group {
911 u16 type;
912 u16 length;
913} __packed;
914
915struct host_cmd_ds_txpwr_cfg {
916 __le16 action;
917 __le16 cfg_index;
918 __le32 mode;
919} __packed;
920
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700921struct host_cmd_ds_rf_tx_pwr {
922 __le16 action;
923 __le16 cur_level;
924 u8 max_power;
925 u8 min_power;
926} __packed;
927
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700928struct host_cmd_ds_rf_ant_mimo {
929 __le16 action_tx;
930 __le16 tx_ant_mode;
931 __le16 action_rx;
932 __le16 rx_ant_mode;
933};
934
935struct host_cmd_ds_rf_ant_siso {
936 __le16 action;
937 __le16 ant_mode;
938};
939
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700940struct mwifiex_bcn_param {
941 u8 bssid[ETH_ALEN];
942 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700943 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700944 __le16 beacon_period;
945 __le16 cap_info_bitmap;
946} __packed;
947
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700948#define MWIFIEX_USER_SCAN_CHAN_MAX 50
949
950#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
951
952struct mwifiex_scan_cmd_config {
953 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700954 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700955 */
956 u8 bss_mode;
957
958 /* Specific BSSID used to filter scan results in the firmware */
959 u8 specific_bssid[ETH_ALEN];
960
961 /* Length of TLVs sent in command starting at tlvBuffer */
962 u32 tlv_buf_len;
963
964 /*
965 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
966 *
967 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
968 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
969 */
970 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
971 here */
972} __packed;
973
974struct mwifiex_user_scan_chan {
975 u8 chan_number;
976 u8 radio_type;
977 u8 scan_type;
978 u8 reserved;
979 u32 scan_time;
980} __packed;
981
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700982struct mwifiex_user_scan_cfg {
983 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700984 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700985 */
986 u8 bss_mode;
987 /* Configure the number of probe requests for active chan scans */
988 u8 num_probes;
989 u8 reserved;
990 /* BSSID filter sent in the firmware command to limit the results */
991 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800992 /* SSID filter list used in the firmware to limit the scan results */
993 struct cfg80211_ssid *ssid_list;
994 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700995 /* Variable number (fixed maximum) of channels to scan up */
996 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
997} __packed;
998
999struct ie_body {
1000 u8 grp_key_oui[4];
1001 u8 ptk_cnt[2];
1002 u8 ptk_body[4];
1003} __packed;
1004
1005struct host_cmd_ds_802_11_scan {
1006 u8 bss_mode;
1007 u8 bssid[ETH_ALEN];
1008 u8 tlv_buffer[1];
1009} __packed;
1010
1011struct host_cmd_ds_802_11_scan_rsp {
1012 __le16 bss_descript_size;
1013 u8 number_of_sets;
1014 u8 bss_desc_and_tlv_buffer[1];
1015} __packed;
1016
1017struct host_cmd_ds_802_11_bg_scan_query {
1018 u8 flush;
1019} __packed;
1020
1021struct host_cmd_ds_802_11_bg_scan_query_rsp {
1022 u32 report_condition;
1023 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1024} __packed;
1025
1026struct mwifiex_ietypes_domain_param_set {
1027 struct mwifiex_ie_types_header header;
1028 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1029 struct ieee80211_country_ie_triplet triplet[1];
1030} __packed;
1031
1032struct host_cmd_ds_802_11d_domain_info {
1033 __le16 action;
1034 struct mwifiex_ietypes_domain_param_set domain;
1035} __packed;
1036
1037struct host_cmd_ds_802_11d_domain_info_rsp {
1038 __le16 action;
1039 struct mwifiex_ietypes_domain_param_set domain;
1040} __packed;
1041
1042struct host_cmd_ds_11n_addba_req {
1043 u8 add_req_result;
1044 u8 peer_mac_addr[ETH_ALEN];
1045 u8 dialog_token;
1046 __le16 block_ack_param_set;
1047 __le16 block_ack_tmo;
1048 __le16 ssn;
1049} __packed;
1050
1051struct host_cmd_ds_11n_addba_rsp {
1052 u8 add_rsp_result;
1053 u8 peer_mac_addr[ETH_ALEN];
1054 u8 dialog_token;
1055 __le16 status_code;
1056 __le16 block_ack_param_set;
1057 __le16 block_ack_tmo;
1058 __le16 ssn;
1059} __packed;
1060
1061struct host_cmd_ds_11n_delba {
1062 u8 del_result;
1063 u8 peer_mac_addr[ETH_ALEN];
1064 __le16 del_ba_param_set;
1065 __le16 reason_code;
1066 u8 reserved;
1067} __packed;
1068
1069struct host_cmd_ds_11n_batimeout {
1070 u8 tid;
1071 u8 peer_mac_addr[ETH_ALEN];
1072 u8 origninator;
1073} __packed;
1074
1075struct host_cmd_ds_11n_cfg {
1076 __le16 action;
1077 __le16 ht_tx_cap;
1078 __le16 ht_tx_info;
1079} __packed;
1080
1081struct host_cmd_ds_txbuf_cfg {
1082 __le16 action;
1083 __le16 buff_size;
1084 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1085 __le16 reserved3;
1086} __packed;
1087
1088struct host_cmd_ds_amsdu_aggr_ctrl {
1089 __le16 action;
1090 __le16 enable;
1091 __le16 curr_buf_size;
1092} __packed;
1093
1094struct mwifiex_ie_types_wmm_param_set {
1095 struct mwifiex_ie_types_header header;
1096 u8 wmm_ie[1];
1097};
1098
1099struct mwifiex_ie_types_wmm_queue_status {
1100 struct mwifiex_ie_types_header header;
1101 u8 queue_index;
1102 u8 disabled;
1103 u16 medium_time;
1104 u8 flow_required;
1105 u8 flow_created;
1106 u32 reserved;
1107};
1108
1109struct ieee_types_vendor_header {
1110 u8 element_id;
1111 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001112 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001113 u8 oui_subtype;
1114 u8 version;
1115} __packed;
1116
1117struct ieee_types_wmm_ac_parameters {
1118 u8 aci_aifsn_bitmap;
1119 u8 ecw_bitmap;
1120 __le16 tx_op_limit;
1121} __packed;
1122
1123struct ieee_types_wmm_parameter {
1124 /*
1125 * WMM Parameter IE - Vendor Specific Header:
1126 * element_id [221/0xdd]
1127 * Len [24]
1128 * Oui [00:50:f2]
1129 * OuiType [2]
1130 * OuiSubType [1]
1131 * Version [1]
1132 */
1133 struct ieee_types_vendor_header vend_hdr;
1134 u8 qos_info_bitmap;
1135 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001136 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001137} __packed;
1138
1139struct ieee_types_wmm_info {
1140
1141 /*
1142 * WMM Info IE - Vendor Specific Header:
1143 * element_id [221/0xdd]
1144 * Len [7]
1145 * Oui [00:50:f2]
1146 * OuiType [2]
1147 * OuiSubType [0]
1148 * Version [1]
1149 */
1150 struct ieee_types_vendor_header vend_hdr;
1151
1152 u8 qos_info_bitmap;
1153} __packed;
1154
1155struct host_cmd_ds_wmm_get_status {
1156 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001157 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001158 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1159} __packed;
1160
1161struct mwifiex_wmm_ac_status {
1162 u8 disabled;
1163 u8 flow_required;
1164 u8 flow_created;
1165};
1166
1167struct mwifiex_ie_types_htcap {
1168 struct mwifiex_ie_types_header header;
1169 struct ieee80211_ht_cap ht_cap;
1170} __packed;
1171
1172struct mwifiex_ie_types_htinfo {
1173 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001174 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001175} __packed;
1176
1177struct mwifiex_ie_types_2040bssco {
1178 struct mwifiex_ie_types_header header;
1179 u8 bss_co_2040;
1180} __packed;
1181
1182struct mwifiex_ie_types_extcap {
1183 struct mwifiex_ie_types_header header;
1184 u8 ext_cap;
1185} __packed;
1186
1187struct host_cmd_ds_mac_reg_access {
1188 __le16 action;
1189 __le16 offset;
1190 __le32 value;
1191} __packed;
1192
1193struct host_cmd_ds_bbp_reg_access {
1194 __le16 action;
1195 __le16 offset;
1196 u8 value;
1197 u8 reserved[3];
1198} __packed;
1199
1200struct host_cmd_ds_rf_reg_access {
1201 __le16 action;
1202 __le16 offset;
1203 u8 value;
1204 u8 reserved[3];
1205} __packed;
1206
1207struct host_cmd_ds_pmic_reg_access {
1208 __le16 action;
1209 __le16 offset;
1210 u8 value;
1211 u8 reserved[3];
1212} __packed;
1213
1214struct host_cmd_ds_802_11_eeprom_access {
1215 __le16 action;
1216
1217 __le16 offset;
1218 __le16 byte_count;
1219 u8 value;
1220} __packed;
1221
Avinash Patil75edd2c2012-05-08 18:30:18 -07001222struct host_cmd_tlv {
1223 __le16 type;
1224 __le16 len;
1225} __packed;
1226
Avinash Patile5686342012-05-08 18:30:25 -07001227struct mwifiex_assoc_event {
1228 u8 sta_addr[ETH_ALEN];
1229 __le16 type;
1230 __le16 len;
1231 __le16 frame_control;
1232 __le16 cap_info;
1233 __le16 listen_interval;
1234 u8 data[0];
1235} __packed;
1236
Avinash Patil4db16a12012-05-08 18:30:20 -07001237struct host_cmd_ds_sys_config {
1238 __le16 action;
1239 u8 tlv[0];
1240};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001241
1242struct host_cmd_tlv_akmp {
1243 struct host_cmd_tlv tlv;
1244 __le16 key_mgmt;
1245 __le16 key_mgmt_operation;
1246} __packed;
1247
1248struct host_cmd_tlv_pwk_cipher {
1249 struct host_cmd_tlv tlv;
1250 __le16 proto;
1251 u8 cipher;
1252 u8 reserved;
1253} __packed;
1254
1255struct host_cmd_tlv_gwk_cipher {
1256 struct host_cmd_tlv tlv;
1257 u8 cipher;
1258 u8 reserved;
1259} __packed;
1260
1261struct host_cmd_tlv_passphrase {
1262 struct host_cmd_tlv tlv;
1263 u8 passphrase[0];
1264} __packed;
1265
Avinash Patil96893532012-06-15 12:21:55 -07001266struct host_cmd_tlv_wep_key {
1267 struct host_cmd_tlv tlv;
1268 u8 key_index;
1269 u8 is_default;
1270 u8 key[1];
1271};
1272
Avinash Patilf752dcd2012-05-08 18:30:26 -07001273struct host_cmd_tlv_auth_type {
1274 struct host_cmd_tlv tlv;
1275 u8 auth_type;
1276} __packed;
1277
1278struct host_cmd_tlv_encrypt_protocol {
1279 struct host_cmd_tlv tlv;
1280 __le16 proto;
1281} __packed;
1282
Avinash Patil12190c52012-05-08 18:30:24 -07001283struct host_cmd_tlv_ssid {
1284 struct host_cmd_tlv tlv;
1285 u8 ssid[0];
1286} __packed;
1287
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001288struct host_cmd_tlv_rates {
1289 struct host_cmd_tlv tlv;
1290 u8 rates[0];
1291} __packed;
1292
Avinash Patil605b73a2012-05-16 21:24:55 -07001293struct host_cmd_tlv_bcast_ssid {
1294 struct host_cmd_tlv tlv;
1295 u8 bcast_ctl;
1296} __packed;
1297
Avinash Patil12190c52012-05-08 18:30:24 -07001298struct host_cmd_tlv_beacon_period {
1299 struct host_cmd_tlv tlv;
1300 __le16 period;
1301} __packed;
1302
1303struct host_cmd_tlv_dtim_period {
1304 struct host_cmd_tlv tlv;
1305 u8 period;
1306} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001307
Avinash Patil9b930ea2012-05-08 18:30:23 -07001308struct host_cmd_tlv_frag_threshold {
1309 struct host_cmd_tlv tlv;
1310 __le16 frag_thr;
1311} __packed;
1312
1313struct host_cmd_tlv_rts_threshold {
1314 struct host_cmd_tlv tlv;
1315 __le16 rts_thr;
1316} __packed;
1317
1318struct host_cmd_tlv_retry_limit {
1319 struct host_cmd_tlv tlv;
1320 u8 limit;
1321} __packed;
1322
Avinash Patil75edd2c2012-05-08 18:30:18 -07001323struct host_cmd_tlv_mac_addr {
1324 struct host_cmd_tlv tlv;
1325 u8 mac_addr[ETH_ALEN];
1326} __packed;
1327
Avinash Patil4db16a12012-05-08 18:30:20 -07001328struct host_cmd_tlv_channel_band {
1329 struct host_cmd_tlv tlv;
1330 u8 band_config;
1331 u8 channel;
1332} __packed;
1333
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001334struct host_cmd_ds_version_ext {
1335 u8 version_str_sel;
1336 char version_str[128];
1337} __packed;
1338
1339struct host_cmd_ds_802_11_ibss_status {
1340 __le16 action;
1341 __le16 enable;
1342 u8 bssid[ETH_ALEN];
1343 __le16 beacon_interval;
1344 __le16 atim_window;
1345 __le16 use_g_rate_protect;
1346} __packed;
1347
1348#define CONNECTION_TYPE_INFRA 0
1349#define CONNECTION_TYPE_ADHOC 1
1350
1351struct host_cmd_ds_set_bss_mode {
1352 u8 con_type;
1353} __packed;
1354
Amitkumar Karward930fae2011-10-11 17:41:21 -07001355struct host_cmd_ds_pcie_details {
1356 /* TX buffer descriptor ring address */
1357 u32 txbd_addr_lo;
1358 u32 txbd_addr_hi;
1359 /* TX buffer descriptor ring count */
1360 u32 txbd_count;
1361
1362 /* RX buffer descriptor ring address */
1363 u32 rxbd_addr_lo;
1364 u32 rxbd_addr_hi;
1365 /* RX buffer descriptor ring count */
1366 u32 rxbd_count;
1367
1368 /* Event buffer descriptor ring address */
1369 u32 evtbd_addr_lo;
1370 u32 evtbd_addr_hi;
1371 /* Event buffer descriptor ring count */
1372 u32 evtbd_count;
1373
1374 /* Sleep cookie buffer physical address */
1375 u32 sleep_cookie_addr_lo;
1376 u32 sleep_cookie_addr_hi;
1377} __packed;
1378
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001379struct mwifiex_ie_types_rssi_threshold {
1380 struct mwifiex_ie_types_header header;
1381 u8 abs_value;
1382 u8 evt_freq;
1383} __packed;
1384
1385struct host_cmd_ds_802_11_subsc_evt {
1386 __le16 action;
1387 __le16 events;
1388} __packed;
1389
Avinash Patilede98bf2012-05-08 18:30:28 -07001390struct mwifiex_ie {
1391 __le16 ie_index;
1392 __le16 mgmt_subtype_mask;
1393 __le16 ie_length;
1394 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1395} __packed;
1396
1397#define MAX_MGMT_IE_INDEX 16
1398struct mwifiex_ie_list {
1399 __le16 type;
1400 __le16 len;
1401 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1402} __packed;
1403
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001404struct host_cmd_ds_command {
1405 __le16 command;
1406 __le16 size;
1407 __le16 seq_num;
1408 __le16 result;
1409 union {
1410 struct host_cmd_ds_get_hw_spec hw_spec;
1411 struct host_cmd_ds_mac_control mac_ctrl;
1412 struct host_cmd_ds_802_11_mac_address mac_addr;
1413 struct host_cmd_ds_mac_multicast_adr mc_addr;
1414 struct host_cmd_ds_802_11_get_log get_log;
1415 struct host_cmd_ds_802_11_rssi_info rssi_info;
1416 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1417 struct host_cmd_ds_802_11_snmp_mib smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001418 struct host_cmd_ds_tx_rate_query tx_rate;
1419 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1420 struct host_cmd_ds_txpwr_cfg txp_cfg;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001421 struct host_cmd_ds_rf_tx_pwr txp;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001422 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1423 struct host_cmd_ds_rf_ant_siso ant_siso;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001424 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1425 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1426 struct host_cmd_ds_802_11_scan scan;
1427 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1428 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1429 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1430 struct host_cmd_ds_802_11_associate associate;
1431 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1432 struct host_cmd_ds_802_11_deauthenticate deauth;
1433 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1434 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1435 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1436 struct host_cmd_ds_802_11d_domain_info domain_info;
1437 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1438 struct host_cmd_ds_11n_addba_req add_ba_req;
1439 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1440 struct host_cmd_ds_11n_delba del_ba;
1441 struct host_cmd_ds_txbuf_cfg tx_buf;
1442 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1443 struct host_cmd_ds_11n_cfg htcfg;
1444 struct host_cmd_ds_wmm_get_status get_wmm_status;
1445 struct host_cmd_ds_802_11_key_material key_material;
1446 struct host_cmd_ds_version_ext verext;
1447 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1448 struct host_cmd_ds_mac_reg_access mac_reg;
1449 struct host_cmd_ds_bbp_reg_access bbp_reg;
1450 struct host_cmd_ds_rf_reg_access rf_reg;
1451 struct host_cmd_ds_pmic_reg_access pmic_reg;
1452 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001453 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001454 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001455 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001456 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001457 } params;
1458} __packed;
1459
1460struct mwifiex_opt_sleep_confirm {
1461 __le16 command;
1462 __le16 size;
1463 __le16 seq_num;
1464 __le16 result;
1465 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001466 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001467} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001468#endif /* !_MWIFIEX_FW_H_ */