blob: 4dc8e2e9a889c06b3e8d41b352bc45c8e20efc88 [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)))
Stone Piao2dbaf752012-09-25 20:23:35 -070097#define CAL_RSSI(SNR, NF) ((s16)((s16)(SNR)+(s16)(NF)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -070098
Avinash Patile76268d2012-05-08 18:30:27 -070099#define UAP_BSS_PARAMS_I 0
Avinash Patilede98bf2012-05-08 18:30:28 -0700100#define UAP_CUSTOM_IE_I 1
101#define MWIFIEX_AUTO_IDX_MASK 0xffff
102#define MWIFIEX_DELETE_MASK 0x0000
Avinash Patilf31acab2012-05-08 18:30:29 -0700103#define MGMT_MASK_ASSOC_REQ 0x01
104#define MGMT_MASK_REASSOC_REQ 0x04
105#define MGMT_MASK_ASSOC_RESP 0x02
106#define MGMT_MASK_REASSOC_RESP 0x08
107#define MGMT_MASK_PROBE_REQ 0x10
108#define MGMT_MASK_PROBE_RESP 0x20
109#define MGMT_MASK_BEACON 0x100
Avinash Patile76268d2012-05-08 18:30:27 -0700110
Avinash Patil12190c52012-05-08 18:30:24 -0700111#define TLV_TYPE_UAP_SSID 0x0000
Avinash Patila3c2c4f2012-08-27 20:32:53 -0700112#define TLV_TYPE_UAP_RATES 0x0001
Avinash Patil12190c52012-05-08 18:30:24 -0700113
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700114#define PROPRIETARY_TLV_BASE_ID 0x0100
115#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
116#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
117#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700118#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700120#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
121#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
122#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700123#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700124#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700125#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700126#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700127#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
128#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil605b73a2012-05-16 21:24:55 -0700129#define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700130#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700131#define TLV_TYPE_UAP_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 57)
Avinash Patil96893532012-06-15 12:21:55 -0700132#define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700133#define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
134#define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
135#define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700136#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700137#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
138#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
139#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700140#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700141#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patile5686342012-05-08 18:30:25 -0700142#define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700143#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700144#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
145#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700146#define TLV_TYPE_UAP_PS_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 123)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700147#define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
148#define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700149
150#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
151
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700152#define SSN_MASK 0xfff0
153
154#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700155#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700156
157#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
158
159#define BA_STREAM_NOT_ALLOWED 0xff
160
161#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700162 priv->adapter->config_bands & BAND_AN) && \
163 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700164#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
165 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
166
167#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
168#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700169
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700170#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Marc Yang6d2bd912011-03-25 19:47:02 -0700171
Avinash Patil22281252012-06-15 12:21:53 -0700172#define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
173 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
174 IEEE80211_HT_CAP_SM_PS)
175
176#define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
177
Marc Yang6d2bd912011-03-25 19:47:02 -0700178/* dev_cap bitmap
179 * BIT
180 * 0-16 reserved
181 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
182 * 18-22 reserved
183 * 23 IEEE80211_HT_CAP_SGI_20
184 * 24 IEEE80211_HT_CAP_SGI_40
185 * 25 IEEE80211_HT_CAP_TX_STBC
186 * 26 IEEE80211_HT_CAP_RX_STBC
187 * 27-28 reserved
188 * 29 IEEE80211_HT_CAP_GRN_FLD
189 * 30-31 reserved
190 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700191#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700192#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
193#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
194#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
195#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
196#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
Avinash Patildd0d83c2012-11-27 12:09:20 -0800197#define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
198#define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
Marc Yang6d2bd912011-03-25 19:47:02 -0700199
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700200/* httxcfg bitmap
201 * 0 reserved
202 * 1 20/40 Mhz enable(1)/disable(0)
203 * 2-3 reserved
204 * 4 green field enable(1)/disable(0)
205 * 5 short GI in 20 Mhz enable(1)/disable(0)
206 * 6 short GI in 40 Mhz enable(1)/disable(0)
207 * 7-15 reserved
208 */
209#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
210
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700211#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700212#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800213#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700214
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700215#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
216
217#define LLC_SNAP_LEN 8
218
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700219#define MOD_CLASS_HR_DSSS 0x03
220#define MOD_CLASS_OFDM 0x07
221#define MOD_CLASS_HT 0x08
222#define HT_BW_20 0
223#define HT_BW_40 1
224
225#define HostCmd_CMD_GET_HW_SPEC 0x0003
226#define HostCmd_CMD_802_11_SCAN 0x0006
227#define HostCmd_CMD_802_11_GET_LOG 0x000b
228#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
229#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
230#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
231#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
232#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
233#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
234#define HostCmd_CMD_RF_REG_ACCESS 0x001b
235#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700236#define HostCmd_CMD_RF_TX_PWR 0x001e
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700237#define HostCmd_CMD_RF_ANTENNA 0x0020
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700238#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
239#define HostCmd_CMD_MAC_CONTROL 0x0028
240#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
241#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
242#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
243#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
244#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
245#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
246#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
247#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700248#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700249#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
250#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
251#define HostCmd_CMD_VERSION_EXT 0x0097
252#define HostCmd_CMD_RSSI_INFO 0x00a4
253#define HostCmd_CMD_FUNC_INIT 0x00a9
254#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700255#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
256#define HostCmd_CMD_UAP_BSS_START 0x00b1
257#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700258#define HostCmd_CMD_11N_CFG 0x00cd
259#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
260#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
261#define HostCmd_CMD_11N_DELBA 0x00d0
262#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
263#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
264#define HostCmd_CMD_TXPWR_CFG 0x00d1
265#define HostCmd_CMD_TX_RATE_CFG 0x00d6
266#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
267#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700268#define HostCmd_CMD_P2P_MODE_CFG 0x00eb
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700269#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
270#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700271#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Stone Piao3cec6872012-09-25 20:23:34 -0700272#define HostCmd_CMD_MGMT_FRAME_REG 0x010c
Stone Piao7feb4c42012-09-25 20:23:36 -0700273#define HostCmd_CMD_REMAIN_ON_CHAN 0x010d
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700274
Avinash Patilf752dcd2012-05-08 18:30:26 -0700275#define PROTOCOL_NO_SECURITY 0x01
276#define PROTOCOL_STATIC_WEP 0x02
277#define PROTOCOL_WPA 0x08
278#define PROTOCOL_WPA2 0x20
279#define PROTOCOL_WPA2_MIXED 0x28
280#define PROTOCOL_EAP 0x40
281#define KEY_MGMT_NONE 0x04
282#define KEY_MGMT_PSK 0x02
283#define KEY_MGMT_EAP 0x01
284#define CIPHER_TKIP 0x04
285#define CIPHER_AES_CCMP 0x08
286#define VALID_CIPHER_BITMAP 0x0c
287
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700288enum ENH_PS_MODES {
289 EN_PS = 1,
290 DIS_PS = 2,
291 EN_AUTO_DS = 3,
292 DIS_AUTO_DS = 4,
293 SLEEP_CONFIRM = 5,
294 GET_PS = 0,
295 EN_AUTO_PS = 0xff,
296 DIS_AUTO_PS = 0xfe,
297};
298
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700299enum P2P_MODES {
300 P2P_MODE_DISABLE = 0,
301 P2P_MODE_DEVICE = 1,
302 P2P_MODE_GO = 2,
303 P2P_MODE_CLIENT = 3,
304};
305
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306#define HostCmd_RET_BIT 0x8000
307#define HostCmd_ACT_GEN_GET 0x0000
308#define HostCmd_ACT_GEN_SET 0x0001
Stone Piao7feb4c42012-09-25 20:23:36 -0700309#define HostCmd_ACT_GEN_REMOVE 0x0004
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700310#define HostCmd_ACT_BITWISE_SET 0x0002
311#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700312#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700313
314#define HostCmd_ACT_MAC_RX_ON 0x0001
315#define HostCmd_ACT_MAC_TX_ON 0x0002
316#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
317#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
318#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
319#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700320#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
321
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700322#define HostCmd_BSS_MODE_IBSS 0x0002
323#define HostCmd_BSS_MODE_ANY 0x0003
324
325#define HostCmd_SCAN_RADIO_TYPE_BG 0
326#define HostCmd_SCAN_RADIO_TYPE_A 1
327
328#define HOST_SLEEP_CFG_CANCEL 0xffffffff
Bing Zhaofd4c4512012-09-10 18:30:48 -0700329#define HOST_SLEEP_CFG_COND_DEF 0x00000000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700330#define HOST_SLEEP_CFG_GPIO_DEF 0xff
331#define HOST_SLEEP_CFG_GAP_DEF 0
332
333#define CMD_F_HOSTCMD (1 << 0)
334#define CMD_F_CANCELED (1 << 1)
335
336#define HostCmd_CMD_ID_MASK 0x0fff
337
338#define HostCmd_SEQ_NUM_MASK 0x00ff
339
340#define HostCmd_BSS_NUM_MASK 0x0f00
341
342#define HostCmd_BSS_TYPE_MASK 0xf000
343
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700344#define HostCmd_ACT_SET_RX 0x0001
345#define HostCmd_ACT_SET_TX 0x0002
346#define HostCmd_ACT_SET_BOTH 0x0003
347
348#define RF_ANTENNA_AUTO 0xFFFF
349
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700350#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
351 (((seq) & 0x00ff) | \
352 (((num) & 0x000f) << 8)) | \
353 (((type) & 0x000f) << 12); }
354
355#define HostCmd_GET_SEQ_NO(seq) \
356 ((seq) & HostCmd_SEQ_NUM_MASK)
357
358#define HostCmd_GET_BSS_NO(seq) \
359 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
360
361#define HostCmd_GET_BSS_TYPE(seq) \
362 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
363
364#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
365#define EVENT_LINK_LOST 0x00000003
366#define EVENT_LINK_SENSED 0x00000004
367#define EVENT_MIB_CHANGED 0x00000006
368#define EVENT_INIT_DONE 0x00000007
369#define EVENT_DEAUTHENTICATED 0x00000008
370#define EVENT_DISASSOCIATED 0x00000009
371#define EVENT_PS_AWAKE 0x0000000a
372#define EVENT_PS_SLEEP 0x0000000b
373#define EVENT_MIC_ERR_MULTICAST 0x0000000d
374#define EVENT_MIC_ERR_UNICAST 0x0000000e
375#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
376#define EVENT_ADHOC_BCN_LOST 0x00000011
377
378#define EVENT_WMM_STATUS_CHANGE 0x00000017
379#define EVENT_BG_SCAN_REPORT 0x00000018
380#define EVENT_RSSI_LOW 0x00000019
381#define EVENT_SNR_LOW 0x0000001a
382#define EVENT_MAX_FAIL 0x0000001b
383#define EVENT_RSSI_HIGH 0x0000001c
384#define EVENT_SNR_HIGH 0x0000001d
385#define EVENT_IBSS_COALESCED 0x0000001e
386#define EVENT_DATA_RSSI_LOW 0x00000024
387#define EVENT_DATA_SNR_LOW 0x00000025
388#define EVENT_DATA_RSSI_HIGH 0x00000026
389#define EVENT_DATA_SNR_HIGH 0x00000027
390#define EVENT_LINK_QUALITY 0x00000028
391#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700392#define EVENT_UAP_STA_DEAUTH 0x0000002c
393#define EVENT_UAP_STA_ASSOC 0x0000002d
394#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700395#define EVENT_PRE_BEACON_LOST 0x00000031
396#define EVENT_ADDBA 0x00000033
397#define EVENT_DELBA 0x00000034
398#define EVENT_BA_STREAM_TIEMOUT 0x00000037
399#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700400#define EVENT_UAP_BSS_IDLE 0x00000043
401#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700402#define EVENT_WEP_ICV_ERR 0x00000046
403#define EVENT_HS_ACT_REQ 0x00000047
404#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700405#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700406#define EVENT_HOSTWAKE_STAIE 0x0000004d
Stone Piaoeab1c762012-09-25 20:23:37 -0700407#define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700408
409#define EVENT_ID_MASK 0xffff
410#define BSS_NUM_MASK 0xf
411
412#define EVENT_GET_BSS_NUM(event_cause) \
413 (((event_cause) >> 16) & BSS_NUM_MASK)
414
415#define EVENT_GET_BSS_TYPE(event_cause) \
416 (((event_cause) >> 24) & 0x00ff)
417
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700418struct mwifiex_ie_types_header {
419 __le16 type;
420 __le16 len;
421} __packed;
422
423struct mwifiex_ie_types_data {
424 struct mwifiex_ie_types_header header;
425 u8 data[1];
426} __packed;
427
428#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
429#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
430
431struct txpd {
432 u8 bss_type;
433 u8 bss_num;
434 __le16 tx_pkt_length;
435 __le16 tx_pkt_offset;
436 __le16 tx_pkt_type;
437 __le32 tx_control;
438 u8 priority;
439 u8 flags;
440 u8 pkt_delay_2ms;
441 u8 reserved1;
442} __packed;
443
444struct rxpd {
445 u8 bss_type;
446 u8 bss_num;
Amitkumar Karwared1ea6f2012-08-03 18:06:02 -0700447 __le16 rx_pkt_length;
448 __le16 rx_pkt_offset;
449 __le16 rx_pkt_type;
450 __le16 seq_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700451 u8 priority;
452 u8 rx_rate;
453 s8 snr;
454 s8 nf;
455 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
456 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
457 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
458 u8 ht_info;
459 u8 reserved;
460} __packed;
461
Avinash Patil838e4f42012-08-03 18:06:08 -0700462struct uap_txpd {
463 u8 bss_type;
464 u8 bss_num;
465 __le16 tx_pkt_length;
466 __le16 tx_pkt_offset;
467 __le16 tx_pkt_type;
468 __le32 tx_control;
469 u8 priority;
470 u8 flags;
471 u8 pkt_delay_2ms;
472 u8 reserved1;
473 __le32 reserved2;
474};
475
476struct uap_rxpd {
477 u8 bss_type;
478 u8 bss_num;
479 __le16 rx_pkt_length;
480 __le16 rx_pkt_offset;
481 __le16 rx_pkt_type;
482 __le16 seq_num;
483 u8 priority;
484 u8 reserved1;
485};
486
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700487enum mwifiex_chan_scan_mode_bitmasks {
488 MWIFIEX_PASSIVE_SCAN = BIT(0),
489 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
490};
491
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700492struct mwifiex_chan_scan_param_set {
493 u8 radio_type;
494 u8 chan_number;
495 u8 chan_scan_mode_bitmap;
496 __le16 min_scan_time;
497 __le16 max_scan_time;
498} __packed;
499
500struct mwifiex_ie_types_chan_list_param_set {
501 struct mwifiex_ie_types_header header;
502 struct mwifiex_chan_scan_param_set chan_scan_param[1];
503} __packed;
504
505struct chan_band_param_set {
506 u8 radio_type;
507 u8 chan_number;
508};
509
510struct mwifiex_ie_types_chan_band_list_param_set {
511 struct mwifiex_ie_types_header header;
512 struct chan_band_param_set chan_band_param[1];
513} __packed;
514
515struct mwifiex_ie_types_rates_param_set {
516 struct mwifiex_ie_types_header header;
517 u8 rates[1];
518} __packed;
519
520struct mwifiex_ie_types_ssid_param_set {
521 struct mwifiex_ie_types_header header;
522 u8 ssid[1];
523} __packed;
524
525struct mwifiex_ie_types_num_probes {
526 struct mwifiex_ie_types_header header;
527 __le16 num_probes;
528} __packed;
529
530struct mwifiex_ie_types_wildcard_ssid_params {
531 struct mwifiex_ie_types_header header;
532 u8 max_ssid_length;
533 u8 ssid[1];
534} __packed;
535
536#define TSF_DATA_SIZE 8
537struct mwifiex_ie_types_tsf_timestamp {
538 struct mwifiex_ie_types_header header;
539 u8 tsf_data[1];
540} __packed;
541
542struct mwifiex_cf_param_set {
543 u8 cfp_cnt;
544 u8 cfp_period;
545 u16 cfp_max_duration;
546 u16 cfp_duration_remaining;
547} __packed;
548
549struct mwifiex_ibss_param_set {
550 u16 atim_window;
551} __packed;
552
553struct mwifiex_ie_types_ss_param_set {
554 struct mwifiex_ie_types_header header;
555 union {
556 struct mwifiex_cf_param_set cf_param_set[1];
557 struct mwifiex_ibss_param_set ibss_param_set[1];
558 } cf_ibss;
559} __packed;
560
561struct mwifiex_fh_param_set {
562 u16 dwell_time;
563 u8 hop_set;
564 u8 hop_pattern;
565 u8 hop_index;
566} __packed;
567
568struct mwifiex_ds_param_set {
569 u8 current_chan;
570} __packed;
571
572struct mwifiex_ie_types_phy_param_set {
573 struct mwifiex_ie_types_header header;
574 union {
575 struct mwifiex_fh_param_set fh_param_set[1];
576 struct mwifiex_ds_param_set ds_param_set[1];
577 } fh_ds;
578} __packed;
579
580struct mwifiex_ie_types_auth_type {
581 struct mwifiex_ie_types_header header;
582 __le16 auth_type;
583} __packed;
584
585struct mwifiex_ie_types_vendor_param_set {
586 struct mwifiex_ie_types_header header;
587 u8 ie[MWIFIEX_MAX_VSIE_LEN];
588};
589
590struct mwifiex_ie_types_rsn_param_set {
591 struct mwifiex_ie_types_header header;
592 u8 rsn_ie[1];
593} __packed;
594
595#define KEYPARAMSET_FIXED_LEN 6
596
597struct mwifiex_ie_type_key_param_set {
598 __le16 type;
599 __le16 length;
600 __le16 key_type_id;
601 __le16 key_info;
602 __le16 key_len;
603 u8 key[50];
604} __packed;
605
Ying Luob877f4c2012-08-03 18:06:14 -0700606#define IGTK_PN_LEN 8
607
608struct mwifiex_cmac_param {
609 u8 ipn[IGTK_PN_LEN];
610 u8 key[WLAN_KEY_LEN_AES_CMAC];
611} __packed;
612
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700613struct host_cmd_ds_802_11_key_material {
614 __le16 action;
615 struct mwifiex_ie_type_key_param_set key_param_set;
616} __packed;
617
618struct host_cmd_ds_gen {
619 u16 command;
620 u16 size;
621 u16 seq_num;
622 u16 result;
623};
624
625#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
626
627enum sleep_resp_ctrl {
628 RESP_NOT_NEEDED = 0,
629 RESP_NEEDED,
630};
631
632struct mwifiex_ps_param {
633 __le16 null_pkt_interval;
634 __le16 multiple_dtims;
635 __le16 bcn_miss_timeout;
636 __le16 local_listen_interval;
637 __le16 adhoc_wake_period;
638 __le16 mode;
639 __le16 delay_to_ps;
640};
641
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700642#define BITMAP_AUTO_DS 0x01
643#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700644
645struct mwifiex_ie_types_auto_ds_param {
646 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700647 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700648} __packed;
649
650struct mwifiex_ie_types_ps_param {
651 struct mwifiex_ie_types_header header;
652 struct mwifiex_ps_param param;
653} __packed;
654
655struct host_cmd_ds_802_11_ps_mode_enh {
656 __le16 action;
657
658 union {
659 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700660 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700661 } params;
662} __packed;
663
664struct host_cmd_ds_get_hw_spec {
665 __le16 hw_if_version;
666 __le16 version;
667 __le16 reserved;
668 __le16 num_of_mcast_adr;
669 u8 permanent_addr[ETH_ALEN];
670 __le16 region_code;
671 __le16 number_of_antenna;
672 __le32 fw_release_number;
673 __le32 reserved_1;
674 __le32 reserved_2;
675 __le32 reserved_3;
676 __le32 fw_cap_info;
677 __le32 dot_11n_dev_cap;
678 u8 dev_mcs_support;
679 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
680 __le16 reserved_4;
681} __packed;
682
683struct host_cmd_ds_802_11_rssi_info {
684 __le16 action;
685 __le16 ndata;
686 __le16 nbcn;
687 __le16 reserved[9];
688 long long reserved_1;
689};
690
691struct host_cmd_ds_802_11_rssi_info_rsp {
692 __le16 action;
693 __le16 ndata;
694 __le16 nbcn;
695 __le16 data_rssi_last;
696 __le16 data_nf_last;
697 __le16 data_rssi_avg;
698 __le16 data_nf_avg;
699 __le16 bcn_rssi_last;
700 __le16 bcn_nf_last;
701 __le16 bcn_rssi_avg;
702 __le16 bcn_nf_avg;
703 long long tsf_bcn;
704};
705
706struct host_cmd_ds_802_11_mac_address {
707 __le16 action;
708 u8 mac_addr[ETH_ALEN];
709};
710
711struct host_cmd_ds_mac_control {
712 __le16 action;
713 __le16 reserved;
714};
715
716struct host_cmd_ds_mac_multicast_adr {
717 __le16 action;
718 __le16 num_of_adrs;
719 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
720} __packed;
721
722struct host_cmd_ds_802_11_deauthenticate {
723 u8 mac_addr[ETH_ALEN];
724 __le16 reason_code;
725} __packed;
726
727struct host_cmd_ds_802_11_associate {
728 u8 peer_sta_addr[ETH_ALEN];
729 __le16 cap_info_bitmap;
730 __le16 listen_interval;
731 __le16 beacon_period;
732 u8 dtim_period;
733} __packed;
734
735struct ieee_types_assoc_rsp {
736 __le16 cap_info_bitmap;
737 __le16 status_code;
738 __le16 a_id;
739 u8 ie_buffer[1];
740} __packed;
741
742struct host_cmd_ds_802_11_associate_rsp {
743 struct ieee_types_assoc_rsp assoc_rsp;
744} __packed;
745
746struct ieee_types_cf_param_set {
747 u8 element_id;
748 u8 len;
749 u8 cfp_cnt;
750 u8 cfp_period;
751 u16 cfp_max_duration;
752 u16 cfp_duration_remaining;
753} __packed;
754
755struct ieee_types_ibss_param_set {
756 u8 element_id;
757 u8 len;
758 __le16 atim_window;
759} __packed;
760
761union ieee_types_ss_param_set {
762 struct ieee_types_cf_param_set cf_param_set;
763 struct ieee_types_ibss_param_set ibss_param_set;
764} __packed;
765
766struct ieee_types_fh_param_set {
767 u8 element_id;
768 u8 len;
769 __le16 dwell_time;
770 u8 hop_set;
771 u8 hop_pattern;
772 u8 hop_index;
773} __packed;
774
775struct ieee_types_ds_param_set {
776 u8 element_id;
777 u8 len;
778 u8 current_chan;
779} __packed;
780
781union ieee_types_phy_param_set {
782 struct ieee_types_fh_param_set fh_param_set;
783 struct ieee_types_ds_param_set ds_param_set;
784} __packed;
785
786struct host_cmd_ds_802_11_ad_hoc_start {
787 u8 ssid[IEEE80211_MAX_SSID_LEN];
788 u8 bss_mode;
789 __le16 beacon_period;
790 u8 dtim_period;
791 union ieee_types_ss_param_set ss_param_set;
792 union ieee_types_phy_param_set phy_param_set;
793 u16 reserved1;
794 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800795 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700796} __packed;
797
798struct host_cmd_ds_802_11_ad_hoc_result {
799 u8 pad[3];
800 u8 bssid[ETH_ALEN];
801} __packed;
802
803struct adhoc_bss_desc {
804 u8 bssid[ETH_ALEN];
805 u8 ssid[IEEE80211_MAX_SSID_LEN];
806 u8 bss_mode;
807 __le16 beacon_period;
808 u8 dtim_period;
809 u8 time_stamp[8];
810 u8 local_time[8];
811 union ieee_types_phy_param_set phy_param_set;
812 union ieee_types_ss_param_set ss_param_set;
813 __le16 cap_info_bitmap;
814 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
815
816 /*
817 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
818 * It is used in the Adhoc join command and will cause a
819 * binary layout mismatch with the firmware
820 */
821} __packed;
822
823struct host_cmd_ds_802_11_ad_hoc_join {
824 struct adhoc_bss_desc bss_descriptor;
825 u16 reserved1;
826 u16 reserved2;
827} __packed;
828
829struct host_cmd_ds_802_11_get_log {
830 __le32 mcast_tx_frame;
831 __le32 failed;
832 __le32 retry;
833 __le32 multi_retry;
834 __le32 frame_dup;
835 __le32 rts_success;
836 __le32 rts_failure;
837 __le32 ack_failure;
838 __le32 rx_frag;
839 __le32 mcast_rx_frame;
840 __le32 fcs_error;
841 __le32 tx_frame;
842 __le32 reserved;
843 __le32 wep_icv_err_cnt[4];
844};
845
846struct host_cmd_ds_tx_rate_query {
847 u8 tx_rate;
848 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
849 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
850 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
851 u8 ht_info;
852} __packed;
853
854enum Host_Sleep_Action {
855 HS_CONFIGURE = 0x0001,
856 HS_ACTIVATE = 0x0002,
857};
858
859struct mwifiex_hs_config_param {
860 __le32 conditions;
861 u8 gpio;
862 u8 gap;
863} __packed;
864
865struct hs_activate_param {
866 u16 resp_ctrl;
867} __packed;
868
869struct host_cmd_ds_802_11_hs_cfg_enh {
870 __le16 action;
871
872 union {
873 struct mwifiex_hs_config_param hs_config;
874 struct hs_activate_param hs_activate;
875 } params;
876} __packed;
877
878enum SNMP_MIB_INDEX {
879 OP_RATE_SET_I = 1,
880 DTIM_PERIOD_I = 3,
881 RTS_THRESH_I = 5,
882 SHORT_RETRY_LIM_I = 6,
883 LONG_RETRY_LIM_I = 7,
884 FRAG_THRESH_I = 8,
885 DOT11D_I = 9,
886};
887
888#define MAX_SNMP_BUF_SIZE 128
889
890struct host_cmd_ds_802_11_snmp_mib {
891 __le16 query_type;
892 __le16 oid;
893 __le16 buf_size;
894 u8 value[1];
895} __packed;
896
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700897struct mwifiex_rate_scope {
898 __le16 type;
899 __le16 length;
900 __le16 hr_dsss_rate_bitmap;
901 __le16 ofdm_rate_bitmap;
902 __le16 ht_mcs_rate_bitmap[8];
903} __packed;
904
905struct mwifiex_rate_drop_pattern {
906 __le16 type;
907 __le16 length;
908 __le32 rate_drop_mode;
909} __packed;
910
911struct host_cmd_ds_tx_rate_cfg {
912 __le16 action;
913 __le16 cfg_index;
914} __packed;
915
916struct mwifiex_power_group {
917 u8 modulation_class;
918 u8 first_rate_code;
919 u8 last_rate_code;
920 s8 power_step;
921 s8 power_min;
922 s8 power_max;
923 u8 ht_bandwidth;
924 u8 reserved;
925} __packed;
926
927struct mwifiex_types_power_group {
928 u16 type;
929 u16 length;
930} __packed;
931
932struct host_cmd_ds_txpwr_cfg {
933 __le16 action;
934 __le16 cfg_index;
935 __le32 mode;
936} __packed;
937
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700938struct host_cmd_ds_rf_tx_pwr {
939 __le16 action;
940 __le16 cur_level;
941 u8 max_power;
942 u8 min_power;
943} __packed;
944
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700945struct host_cmd_ds_rf_ant_mimo {
946 __le16 action_tx;
947 __le16 tx_ant_mode;
948 __le16 action_rx;
949 __le16 rx_ant_mode;
950};
951
952struct host_cmd_ds_rf_ant_siso {
953 __le16 action;
954 __le16 ant_mode;
955};
956
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700957struct mwifiex_bcn_param {
958 u8 bssid[ETH_ALEN];
959 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700960 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700961 __le16 beacon_period;
962 __le16 cap_info_bitmap;
963} __packed;
964
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700965#define MWIFIEX_USER_SCAN_CHAN_MAX 50
966
967#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
968
969struct mwifiex_scan_cmd_config {
970 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700971 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700972 */
973 u8 bss_mode;
974
975 /* Specific BSSID used to filter scan results in the firmware */
976 u8 specific_bssid[ETH_ALEN];
977
978 /* Length of TLVs sent in command starting at tlvBuffer */
979 u32 tlv_buf_len;
980
981 /*
982 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
983 *
984 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
985 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
986 */
987 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
988 here */
989} __packed;
990
991struct mwifiex_user_scan_chan {
992 u8 chan_number;
993 u8 radio_type;
994 u8 scan_type;
995 u8 reserved;
996 u32 scan_time;
997} __packed;
998
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700999struct mwifiex_user_scan_cfg {
1000 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001001 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001002 */
1003 u8 bss_mode;
1004 /* Configure the number of probe requests for active chan scans */
1005 u8 num_probes;
1006 u8 reserved;
1007 /* BSSID filter sent in the firmware command to limit the results */
1008 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001009 /* SSID filter list used in the firmware to limit the scan results */
1010 struct cfg80211_ssid *ssid_list;
1011 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001012 /* Variable number (fixed maximum) of channels to scan up */
1013 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
1014} __packed;
1015
1016struct ie_body {
1017 u8 grp_key_oui[4];
1018 u8 ptk_cnt[2];
1019 u8 ptk_body[4];
1020} __packed;
1021
1022struct host_cmd_ds_802_11_scan {
1023 u8 bss_mode;
1024 u8 bssid[ETH_ALEN];
1025 u8 tlv_buffer[1];
1026} __packed;
1027
1028struct host_cmd_ds_802_11_scan_rsp {
1029 __le16 bss_descript_size;
1030 u8 number_of_sets;
1031 u8 bss_desc_and_tlv_buffer[1];
1032} __packed;
1033
1034struct host_cmd_ds_802_11_bg_scan_query {
1035 u8 flush;
1036} __packed;
1037
1038struct host_cmd_ds_802_11_bg_scan_query_rsp {
1039 u32 report_condition;
1040 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1041} __packed;
1042
1043struct mwifiex_ietypes_domain_param_set {
1044 struct mwifiex_ie_types_header header;
1045 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1046 struct ieee80211_country_ie_triplet triplet[1];
1047} __packed;
1048
1049struct host_cmd_ds_802_11d_domain_info {
1050 __le16 action;
1051 struct mwifiex_ietypes_domain_param_set domain;
1052} __packed;
1053
1054struct host_cmd_ds_802_11d_domain_info_rsp {
1055 __le16 action;
1056 struct mwifiex_ietypes_domain_param_set domain;
1057} __packed;
1058
1059struct host_cmd_ds_11n_addba_req {
1060 u8 add_req_result;
1061 u8 peer_mac_addr[ETH_ALEN];
1062 u8 dialog_token;
1063 __le16 block_ack_param_set;
1064 __le16 block_ack_tmo;
1065 __le16 ssn;
1066} __packed;
1067
1068struct host_cmd_ds_11n_addba_rsp {
1069 u8 add_rsp_result;
1070 u8 peer_mac_addr[ETH_ALEN];
1071 u8 dialog_token;
1072 __le16 status_code;
1073 __le16 block_ack_param_set;
1074 __le16 block_ack_tmo;
1075 __le16 ssn;
1076} __packed;
1077
1078struct host_cmd_ds_11n_delba {
1079 u8 del_result;
1080 u8 peer_mac_addr[ETH_ALEN];
1081 __le16 del_ba_param_set;
1082 __le16 reason_code;
1083 u8 reserved;
1084} __packed;
1085
1086struct host_cmd_ds_11n_batimeout {
1087 u8 tid;
1088 u8 peer_mac_addr[ETH_ALEN];
1089 u8 origninator;
1090} __packed;
1091
1092struct host_cmd_ds_11n_cfg {
1093 __le16 action;
1094 __le16 ht_tx_cap;
1095 __le16 ht_tx_info;
1096} __packed;
1097
1098struct host_cmd_ds_txbuf_cfg {
1099 __le16 action;
1100 __le16 buff_size;
1101 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1102 __le16 reserved3;
1103} __packed;
1104
1105struct host_cmd_ds_amsdu_aggr_ctrl {
1106 __le16 action;
1107 __le16 enable;
1108 __le16 curr_buf_size;
1109} __packed;
1110
1111struct mwifiex_ie_types_wmm_param_set {
1112 struct mwifiex_ie_types_header header;
1113 u8 wmm_ie[1];
1114};
1115
1116struct mwifiex_ie_types_wmm_queue_status {
1117 struct mwifiex_ie_types_header header;
1118 u8 queue_index;
1119 u8 disabled;
1120 u16 medium_time;
1121 u8 flow_required;
1122 u8 flow_created;
1123 u32 reserved;
1124};
1125
1126struct ieee_types_vendor_header {
1127 u8 element_id;
1128 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001129 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001130 u8 oui_subtype;
1131 u8 version;
1132} __packed;
1133
1134struct ieee_types_wmm_ac_parameters {
1135 u8 aci_aifsn_bitmap;
1136 u8 ecw_bitmap;
1137 __le16 tx_op_limit;
1138} __packed;
1139
1140struct ieee_types_wmm_parameter {
1141 /*
1142 * WMM Parameter IE - Vendor Specific Header:
1143 * element_id [221/0xdd]
1144 * Len [24]
1145 * Oui [00:50:f2]
1146 * OuiType [2]
1147 * OuiSubType [1]
1148 * Version [1]
1149 */
1150 struct ieee_types_vendor_header vend_hdr;
1151 u8 qos_info_bitmap;
1152 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001153 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001154} __packed;
1155
1156struct ieee_types_wmm_info {
1157
1158 /*
1159 * WMM Info IE - Vendor Specific Header:
1160 * element_id [221/0xdd]
1161 * Len [7]
1162 * Oui [00:50:f2]
1163 * OuiType [2]
1164 * OuiSubType [0]
1165 * Version [1]
1166 */
1167 struct ieee_types_vendor_header vend_hdr;
1168
1169 u8 qos_info_bitmap;
1170} __packed;
1171
1172struct host_cmd_ds_wmm_get_status {
1173 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001174 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001175 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1176} __packed;
1177
1178struct mwifiex_wmm_ac_status {
1179 u8 disabled;
1180 u8 flow_required;
1181 u8 flow_created;
1182};
1183
1184struct mwifiex_ie_types_htcap {
1185 struct mwifiex_ie_types_header header;
1186 struct ieee80211_ht_cap ht_cap;
1187} __packed;
1188
1189struct mwifiex_ie_types_htinfo {
1190 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001191 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001192} __packed;
1193
1194struct mwifiex_ie_types_2040bssco {
1195 struct mwifiex_ie_types_header header;
1196 u8 bss_co_2040;
1197} __packed;
1198
1199struct mwifiex_ie_types_extcap {
1200 struct mwifiex_ie_types_header header;
1201 u8 ext_cap;
1202} __packed;
1203
1204struct host_cmd_ds_mac_reg_access {
1205 __le16 action;
1206 __le16 offset;
1207 __le32 value;
1208} __packed;
1209
1210struct host_cmd_ds_bbp_reg_access {
1211 __le16 action;
1212 __le16 offset;
1213 u8 value;
1214 u8 reserved[3];
1215} __packed;
1216
1217struct host_cmd_ds_rf_reg_access {
1218 __le16 action;
1219 __le16 offset;
1220 u8 value;
1221 u8 reserved[3];
1222} __packed;
1223
1224struct host_cmd_ds_pmic_reg_access {
1225 __le16 action;
1226 __le16 offset;
1227 u8 value;
1228 u8 reserved[3];
1229} __packed;
1230
1231struct host_cmd_ds_802_11_eeprom_access {
1232 __le16 action;
1233
1234 __le16 offset;
1235 __le16 byte_count;
1236 u8 value;
1237} __packed;
1238
Avinash Patil75edd2c2012-05-08 18:30:18 -07001239struct host_cmd_tlv {
1240 __le16 type;
1241 __le16 len;
1242} __packed;
1243
Avinash Patile5686342012-05-08 18:30:25 -07001244struct mwifiex_assoc_event {
1245 u8 sta_addr[ETH_ALEN];
1246 __le16 type;
1247 __le16 len;
1248 __le16 frame_control;
1249 __le16 cap_info;
1250 __le16 listen_interval;
1251 u8 data[0];
1252} __packed;
1253
Avinash Patil4db16a12012-05-08 18:30:20 -07001254struct host_cmd_ds_sys_config {
1255 __le16 action;
1256 u8 tlv[0];
1257};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001258
1259struct host_cmd_tlv_akmp {
1260 struct host_cmd_tlv tlv;
1261 __le16 key_mgmt;
1262 __le16 key_mgmt_operation;
1263} __packed;
1264
1265struct host_cmd_tlv_pwk_cipher {
1266 struct host_cmd_tlv tlv;
1267 __le16 proto;
1268 u8 cipher;
1269 u8 reserved;
1270} __packed;
1271
1272struct host_cmd_tlv_gwk_cipher {
1273 struct host_cmd_tlv tlv;
1274 u8 cipher;
1275 u8 reserved;
1276} __packed;
1277
1278struct host_cmd_tlv_passphrase {
1279 struct host_cmd_tlv tlv;
1280 u8 passphrase[0];
1281} __packed;
1282
Avinash Patil96893532012-06-15 12:21:55 -07001283struct host_cmd_tlv_wep_key {
1284 struct host_cmd_tlv tlv;
1285 u8 key_index;
1286 u8 is_default;
1287 u8 key[1];
1288};
1289
Avinash Patilf752dcd2012-05-08 18:30:26 -07001290struct host_cmd_tlv_auth_type {
1291 struct host_cmd_tlv tlv;
1292 u8 auth_type;
1293} __packed;
1294
1295struct host_cmd_tlv_encrypt_protocol {
1296 struct host_cmd_tlv tlv;
1297 __le16 proto;
1298} __packed;
1299
Avinash Patil12190c52012-05-08 18:30:24 -07001300struct host_cmd_tlv_ssid {
1301 struct host_cmd_tlv tlv;
1302 u8 ssid[0];
1303} __packed;
1304
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001305struct host_cmd_tlv_rates {
1306 struct host_cmd_tlv tlv;
1307 u8 rates[0];
1308} __packed;
1309
Avinash Patil605b73a2012-05-16 21:24:55 -07001310struct host_cmd_tlv_bcast_ssid {
1311 struct host_cmd_tlv tlv;
1312 u8 bcast_ctl;
1313} __packed;
1314
Avinash Patil12190c52012-05-08 18:30:24 -07001315struct host_cmd_tlv_beacon_period {
1316 struct host_cmd_tlv tlv;
1317 __le16 period;
1318} __packed;
1319
1320struct host_cmd_tlv_dtim_period {
1321 struct host_cmd_tlv tlv;
1322 u8 period;
1323} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001324
Avinash Patil9b930ea2012-05-08 18:30:23 -07001325struct host_cmd_tlv_frag_threshold {
1326 struct host_cmd_tlv tlv;
1327 __le16 frag_thr;
1328} __packed;
1329
1330struct host_cmd_tlv_rts_threshold {
1331 struct host_cmd_tlv tlv;
1332 __le16 rts_thr;
1333} __packed;
1334
1335struct host_cmd_tlv_retry_limit {
1336 struct host_cmd_tlv tlv;
1337 u8 limit;
1338} __packed;
1339
Avinash Patil75edd2c2012-05-08 18:30:18 -07001340struct host_cmd_tlv_mac_addr {
1341 struct host_cmd_tlv tlv;
1342 u8 mac_addr[ETH_ALEN];
1343} __packed;
1344
Avinash Patil4db16a12012-05-08 18:30:20 -07001345struct host_cmd_tlv_channel_band {
1346 struct host_cmd_tlv tlv;
1347 u8 band_config;
1348 u8 channel;
1349} __packed;
1350
Kevin Gan8b4509f2012-09-25 20:23:45 -07001351struct host_cmd_tlv_ageout_timer {
1352 struct host_cmd_tlv tlv;
1353 __le32 sta_ao_timer;
1354} __packed;
1355
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001356struct host_cmd_ds_version_ext {
1357 u8 version_str_sel;
1358 char version_str[128];
1359} __packed;
1360
Stone Piao3cec6872012-09-25 20:23:34 -07001361struct host_cmd_ds_mgmt_frame_reg {
1362 __le16 action;
1363 __le32 mask;
1364} __packed;
1365
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001366struct host_cmd_ds_p2p_mode_cfg {
1367 __le16 action;
1368 __le16 mode;
1369} __packed;
1370
Stone Piao7feb4c42012-09-25 20:23:36 -07001371struct host_cmd_ds_remain_on_chan {
1372 __le16 action;
1373 u8 status;
1374 u8 reserved;
1375 u8 band_cfg;
1376 u8 channel;
1377 __le32 duration;
1378} __packed;
1379
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001380struct host_cmd_ds_802_11_ibss_status {
1381 __le16 action;
1382 __le16 enable;
1383 u8 bssid[ETH_ALEN];
1384 __le16 beacon_interval;
1385 __le16 atim_window;
1386 __le16 use_g_rate_protect;
1387} __packed;
1388
1389#define CONNECTION_TYPE_INFRA 0
1390#define CONNECTION_TYPE_ADHOC 1
Stone Piao9197ab92012-09-25 20:23:42 -07001391#define CONNECTION_TYPE_AP 2
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001392
1393struct host_cmd_ds_set_bss_mode {
1394 u8 con_type;
1395} __packed;
1396
Amitkumar Karward930fae2011-10-11 17:41:21 -07001397struct host_cmd_ds_pcie_details {
1398 /* TX buffer descriptor ring address */
1399 u32 txbd_addr_lo;
1400 u32 txbd_addr_hi;
1401 /* TX buffer descriptor ring count */
1402 u32 txbd_count;
1403
1404 /* RX buffer descriptor ring address */
1405 u32 rxbd_addr_lo;
1406 u32 rxbd_addr_hi;
1407 /* RX buffer descriptor ring count */
1408 u32 rxbd_count;
1409
1410 /* Event buffer descriptor ring address */
1411 u32 evtbd_addr_lo;
1412 u32 evtbd_addr_hi;
1413 /* Event buffer descriptor ring count */
1414 u32 evtbd_count;
1415
1416 /* Sleep cookie buffer physical address */
1417 u32 sleep_cookie_addr_lo;
1418 u32 sleep_cookie_addr_hi;
1419} __packed;
1420
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001421struct mwifiex_ie_types_rssi_threshold {
1422 struct mwifiex_ie_types_header header;
1423 u8 abs_value;
1424 u8 evt_freq;
1425} __packed;
1426
1427struct host_cmd_ds_802_11_subsc_evt {
1428 __le16 action;
1429 __le16 events;
1430} __packed;
1431
Avinash Patilede98bf2012-05-08 18:30:28 -07001432struct mwifiex_ie {
1433 __le16 ie_index;
1434 __le16 mgmt_subtype_mask;
1435 __le16 ie_length;
1436 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1437} __packed;
1438
1439#define MAX_MGMT_IE_INDEX 16
1440struct mwifiex_ie_list {
1441 __le16 type;
1442 __le16 len;
1443 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1444} __packed;
1445
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001446struct host_cmd_ds_command {
1447 __le16 command;
1448 __le16 size;
1449 __le16 seq_num;
1450 __le16 result;
1451 union {
1452 struct host_cmd_ds_get_hw_spec hw_spec;
1453 struct host_cmd_ds_mac_control mac_ctrl;
1454 struct host_cmd_ds_802_11_mac_address mac_addr;
1455 struct host_cmd_ds_mac_multicast_adr mc_addr;
1456 struct host_cmd_ds_802_11_get_log get_log;
1457 struct host_cmd_ds_802_11_rssi_info rssi_info;
1458 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1459 struct host_cmd_ds_802_11_snmp_mib smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001460 struct host_cmd_ds_tx_rate_query tx_rate;
1461 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1462 struct host_cmd_ds_txpwr_cfg txp_cfg;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001463 struct host_cmd_ds_rf_tx_pwr txp;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001464 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1465 struct host_cmd_ds_rf_ant_siso ant_siso;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001466 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1467 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1468 struct host_cmd_ds_802_11_scan scan;
1469 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1470 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1471 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1472 struct host_cmd_ds_802_11_associate associate;
1473 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1474 struct host_cmd_ds_802_11_deauthenticate deauth;
1475 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1476 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1477 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1478 struct host_cmd_ds_802_11d_domain_info domain_info;
1479 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1480 struct host_cmd_ds_11n_addba_req add_ba_req;
1481 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1482 struct host_cmd_ds_11n_delba del_ba;
1483 struct host_cmd_ds_txbuf_cfg tx_buf;
1484 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1485 struct host_cmd_ds_11n_cfg htcfg;
1486 struct host_cmd_ds_wmm_get_status get_wmm_status;
1487 struct host_cmd_ds_802_11_key_material key_material;
1488 struct host_cmd_ds_version_ext verext;
Stone Piao3cec6872012-09-25 20:23:34 -07001489 struct host_cmd_ds_mgmt_frame_reg reg_mask;
Stone Piao7feb4c42012-09-25 20:23:36 -07001490 struct host_cmd_ds_remain_on_chan roc_cfg;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001491 struct host_cmd_ds_p2p_mode_cfg mode_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001492 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1493 struct host_cmd_ds_mac_reg_access mac_reg;
1494 struct host_cmd_ds_bbp_reg_access bbp_reg;
1495 struct host_cmd_ds_rf_reg_access rf_reg;
1496 struct host_cmd_ds_pmic_reg_access pmic_reg;
1497 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001498 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001499 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001500 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001501 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001502 } params;
1503} __packed;
1504
1505struct mwifiex_opt_sleep_confirm {
1506 __le16 command;
1507 __le16 size;
1508 __le16 seq_num;
1509 __le16 result;
1510 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001511 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001512} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001513#endif /* !_MWIFIEX_FW_H_ */