blob: dda588b3557063e95bfc92746422e3d3942a1719 [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))
197
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700198/* httxcfg bitmap
199 * 0 reserved
200 * 1 20/40 Mhz enable(1)/disable(0)
201 * 2-3 reserved
202 * 4 green field enable(1)/disable(0)
203 * 5 short GI in 20 Mhz enable(1)/disable(0)
204 * 6 short GI in 40 Mhz enable(1)/disable(0)
205 * 7-15 reserved
206 */
207#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
208
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700209#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800211#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700212
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700213#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
214
215#define LLC_SNAP_LEN 8
216
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700217#define MOD_CLASS_HR_DSSS 0x03
218#define MOD_CLASS_OFDM 0x07
219#define MOD_CLASS_HT 0x08
220#define HT_BW_20 0
221#define HT_BW_40 1
222
223#define HostCmd_CMD_GET_HW_SPEC 0x0003
224#define HostCmd_CMD_802_11_SCAN 0x0006
225#define HostCmd_CMD_802_11_GET_LOG 0x000b
226#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
227#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
228#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
229#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
230#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
231#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
232#define HostCmd_CMD_RF_REG_ACCESS 0x001b
233#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700234#define HostCmd_CMD_RF_TX_PWR 0x001e
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700235#define HostCmd_CMD_RF_ANTENNA 0x0020
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700236#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
237#define HostCmd_CMD_MAC_CONTROL 0x0028
238#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
239#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
240#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
241#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
242#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
243#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
244#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
245#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700246#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700247#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
248#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
249#define HostCmd_CMD_VERSION_EXT 0x0097
250#define HostCmd_CMD_RSSI_INFO 0x00a4
251#define HostCmd_CMD_FUNC_INIT 0x00a9
252#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700253#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
254#define HostCmd_CMD_UAP_BSS_START 0x00b1
255#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700256#define HostCmd_CMD_11N_CFG 0x00cd
257#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
258#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
259#define HostCmd_CMD_11N_DELBA 0x00d0
260#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
261#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
262#define HostCmd_CMD_TXPWR_CFG 0x00d1
263#define HostCmd_CMD_TX_RATE_CFG 0x00d6
264#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
265#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700266#define HostCmd_CMD_P2P_MODE_CFG 0x00eb
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700267#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
268#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700269#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Stone Piao3cec6872012-09-25 20:23:34 -0700270#define HostCmd_CMD_MGMT_FRAME_REG 0x010c
Stone Piao7feb4c42012-09-25 20:23:36 -0700271#define HostCmd_CMD_REMAIN_ON_CHAN 0x010d
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700272
Avinash Patilf752dcd2012-05-08 18:30:26 -0700273#define PROTOCOL_NO_SECURITY 0x01
274#define PROTOCOL_STATIC_WEP 0x02
275#define PROTOCOL_WPA 0x08
276#define PROTOCOL_WPA2 0x20
277#define PROTOCOL_WPA2_MIXED 0x28
278#define PROTOCOL_EAP 0x40
279#define KEY_MGMT_NONE 0x04
280#define KEY_MGMT_PSK 0x02
281#define KEY_MGMT_EAP 0x01
282#define CIPHER_TKIP 0x04
283#define CIPHER_AES_CCMP 0x08
284#define VALID_CIPHER_BITMAP 0x0c
285
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700286enum ENH_PS_MODES {
287 EN_PS = 1,
288 DIS_PS = 2,
289 EN_AUTO_DS = 3,
290 DIS_AUTO_DS = 4,
291 SLEEP_CONFIRM = 5,
292 GET_PS = 0,
293 EN_AUTO_PS = 0xff,
294 DIS_AUTO_PS = 0xfe,
295};
296
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700297enum P2P_MODES {
298 P2P_MODE_DISABLE = 0,
299 P2P_MODE_DEVICE = 1,
300 P2P_MODE_GO = 2,
301 P2P_MODE_CLIENT = 3,
302};
303
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700304#define HostCmd_RET_BIT 0x8000
305#define HostCmd_ACT_GEN_GET 0x0000
306#define HostCmd_ACT_GEN_SET 0x0001
Stone Piao7feb4c42012-09-25 20:23:36 -0700307#define HostCmd_ACT_GEN_REMOVE 0x0004
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700308#define HostCmd_ACT_BITWISE_SET 0x0002
309#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700310#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700311
312#define HostCmd_ACT_MAC_RX_ON 0x0001
313#define HostCmd_ACT_MAC_TX_ON 0x0002
314#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
315#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
316#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
317#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700318#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
319
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700320#define HostCmd_BSS_MODE_IBSS 0x0002
321#define HostCmd_BSS_MODE_ANY 0x0003
322
323#define HostCmd_SCAN_RADIO_TYPE_BG 0
324#define HostCmd_SCAN_RADIO_TYPE_A 1
325
326#define HOST_SLEEP_CFG_CANCEL 0xffffffff
Bing Zhaofd4c4512012-09-10 18:30:48 -0700327#define HOST_SLEEP_CFG_COND_DEF 0x00000000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700328#define HOST_SLEEP_CFG_GPIO_DEF 0xff
329#define HOST_SLEEP_CFG_GAP_DEF 0
330
331#define CMD_F_HOSTCMD (1 << 0)
332#define CMD_F_CANCELED (1 << 1)
333
334#define HostCmd_CMD_ID_MASK 0x0fff
335
336#define HostCmd_SEQ_NUM_MASK 0x00ff
337
338#define HostCmd_BSS_NUM_MASK 0x0f00
339
340#define HostCmd_BSS_TYPE_MASK 0xf000
341
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700342#define HostCmd_ACT_SET_RX 0x0001
343#define HostCmd_ACT_SET_TX 0x0002
344#define HostCmd_ACT_SET_BOTH 0x0003
345
346#define RF_ANTENNA_AUTO 0xFFFF
347
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700348#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
349 (((seq) & 0x00ff) | \
350 (((num) & 0x000f) << 8)) | \
351 (((type) & 0x000f) << 12); }
352
353#define HostCmd_GET_SEQ_NO(seq) \
354 ((seq) & HostCmd_SEQ_NUM_MASK)
355
356#define HostCmd_GET_BSS_NO(seq) \
357 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
358
359#define HostCmd_GET_BSS_TYPE(seq) \
360 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
361
362#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
363#define EVENT_LINK_LOST 0x00000003
364#define EVENT_LINK_SENSED 0x00000004
365#define EVENT_MIB_CHANGED 0x00000006
366#define EVENT_INIT_DONE 0x00000007
367#define EVENT_DEAUTHENTICATED 0x00000008
368#define EVENT_DISASSOCIATED 0x00000009
369#define EVENT_PS_AWAKE 0x0000000a
370#define EVENT_PS_SLEEP 0x0000000b
371#define EVENT_MIC_ERR_MULTICAST 0x0000000d
372#define EVENT_MIC_ERR_UNICAST 0x0000000e
373#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
374#define EVENT_ADHOC_BCN_LOST 0x00000011
375
376#define EVENT_WMM_STATUS_CHANGE 0x00000017
377#define EVENT_BG_SCAN_REPORT 0x00000018
378#define EVENT_RSSI_LOW 0x00000019
379#define EVENT_SNR_LOW 0x0000001a
380#define EVENT_MAX_FAIL 0x0000001b
381#define EVENT_RSSI_HIGH 0x0000001c
382#define EVENT_SNR_HIGH 0x0000001d
383#define EVENT_IBSS_COALESCED 0x0000001e
384#define EVENT_DATA_RSSI_LOW 0x00000024
385#define EVENT_DATA_SNR_LOW 0x00000025
386#define EVENT_DATA_RSSI_HIGH 0x00000026
387#define EVENT_DATA_SNR_HIGH 0x00000027
388#define EVENT_LINK_QUALITY 0x00000028
389#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700390#define EVENT_UAP_STA_DEAUTH 0x0000002c
391#define EVENT_UAP_STA_ASSOC 0x0000002d
392#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700393#define EVENT_PRE_BEACON_LOST 0x00000031
394#define EVENT_ADDBA 0x00000033
395#define EVENT_DELBA 0x00000034
396#define EVENT_BA_STREAM_TIEMOUT 0x00000037
397#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700398#define EVENT_UAP_BSS_IDLE 0x00000043
399#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700400#define EVENT_WEP_ICV_ERR 0x00000046
401#define EVENT_HS_ACT_REQ 0x00000047
402#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700403#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700404#define EVENT_HOSTWAKE_STAIE 0x0000004d
Stone Piaoeab1c762012-09-25 20:23:37 -0700405#define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700406
407#define EVENT_ID_MASK 0xffff
408#define BSS_NUM_MASK 0xf
409
410#define EVENT_GET_BSS_NUM(event_cause) \
411 (((event_cause) >> 16) & BSS_NUM_MASK)
412
413#define EVENT_GET_BSS_TYPE(event_cause) \
414 (((event_cause) >> 24) & 0x00ff)
415
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700416struct mwifiex_ie_types_header {
417 __le16 type;
418 __le16 len;
419} __packed;
420
421struct mwifiex_ie_types_data {
422 struct mwifiex_ie_types_header header;
423 u8 data[1];
424} __packed;
425
426#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
427#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
428
429struct txpd {
430 u8 bss_type;
431 u8 bss_num;
432 __le16 tx_pkt_length;
433 __le16 tx_pkt_offset;
434 __le16 tx_pkt_type;
435 __le32 tx_control;
436 u8 priority;
437 u8 flags;
438 u8 pkt_delay_2ms;
439 u8 reserved1;
440} __packed;
441
442struct rxpd {
443 u8 bss_type;
444 u8 bss_num;
Amitkumar Karwared1ea6f2012-08-03 18:06:02 -0700445 __le16 rx_pkt_length;
446 __le16 rx_pkt_offset;
447 __le16 rx_pkt_type;
448 __le16 seq_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700449 u8 priority;
450 u8 rx_rate;
451 s8 snr;
452 s8 nf;
453 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
454 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
455 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
456 u8 ht_info;
457 u8 reserved;
458} __packed;
459
Avinash Patil838e4f42012-08-03 18:06:08 -0700460struct uap_txpd {
461 u8 bss_type;
462 u8 bss_num;
463 __le16 tx_pkt_length;
464 __le16 tx_pkt_offset;
465 __le16 tx_pkt_type;
466 __le32 tx_control;
467 u8 priority;
468 u8 flags;
469 u8 pkt_delay_2ms;
470 u8 reserved1;
471 __le32 reserved2;
472};
473
474struct uap_rxpd {
475 u8 bss_type;
476 u8 bss_num;
477 __le16 rx_pkt_length;
478 __le16 rx_pkt_offset;
479 __le16 rx_pkt_type;
480 __le16 seq_num;
481 u8 priority;
482 u8 reserved1;
483};
484
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700485enum mwifiex_chan_scan_mode_bitmasks {
486 MWIFIEX_PASSIVE_SCAN = BIT(0),
487 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
488};
489
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700490struct mwifiex_chan_scan_param_set {
491 u8 radio_type;
492 u8 chan_number;
493 u8 chan_scan_mode_bitmap;
494 __le16 min_scan_time;
495 __le16 max_scan_time;
496} __packed;
497
498struct mwifiex_ie_types_chan_list_param_set {
499 struct mwifiex_ie_types_header header;
500 struct mwifiex_chan_scan_param_set chan_scan_param[1];
501} __packed;
502
503struct chan_band_param_set {
504 u8 radio_type;
505 u8 chan_number;
506};
507
508struct mwifiex_ie_types_chan_band_list_param_set {
509 struct mwifiex_ie_types_header header;
510 struct chan_band_param_set chan_band_param[1];
511} __packed;
512
513struct mwifiex_ie_types_rates_param_set {
514 struct mwifiex_ie_types_header header;
515 u8 rates[1];
516} __packed;
517
518struct mwifiex_ie_types_ssid_param_set {
519 struct mwifiex_ie_types_header header;
520 u8 ssid[1];
521} __packed;
522
523struct mwifiex_ie_types_num_probes {
524 struct mwifiex_ie_types_header header;
525 __le16 num_probes;
526} __packed;
527
528struct mwifiex_ie_types_wildcard_ssid_params {
529 struct mwifiex_ie_types_header header;
530 u8 max_ssid_length;
531 u8 ssid[1];
532} __packed;
533
534#define TSF_DATA_SIZE 8
535struct mwifiex_ie_types_tsf_timestamp {
536 struct mwifiex_ie_types_header header;
537 u8 tsf_data[1];
538} __packed;
539
540struct mwifiex_cf_param_set {
541 u8 cfp_cnt;
542 u8 cfp_period;
543 u16 cfp_max_duration;
544 u16 cfp_duration_remaining;
545} __packed;
546
547struct mwifiex_ibss_param_set {
548 u16 atim_window;
549} __packed;
550
551struct mwifiex_ie_types_ss_param_set {
552 struct mwifiex_ie_types_header header;
553 union {
554 struct mwifiex_cf_param_set cf_param_set[1];
555 struct mwifiex_ibss_param_set ibss_param_set[1];
556 } cf_ibss;
557} __packed;
558
559struct mwifiex_fh_param_set {
560 u16 dwell_time;
561 u8 hop_set;
562 u8 hop_pattern;
563 u8 hop_index;
564} __packed;
565
566struct mwifiex_ds_param_set {
567 u8 current_chan;
568} __packed;
569
570struct mwifiex_ie_types_phy_param_set {
571 struct mwifiex_ie_types_header header;
572 union {
573 struct mwifiex_fh_param_set fh_param_set[1];
574 struct mwifiex_ds_param_set ds_param_set[1];
575 } fh_ds;
576} __packed;
577
578struct mwifiex_ie_types_auth_type {
579 struct mwifiex_ie_types_header header;
580 __le16 auth_type;
581} __packed;
582
583struct mwifiex_ie_types_vendor_param_set {
584 struct mwifiex_ie_types_header header;
585 u8 ie[MWIFIEX_MAX_VSIE_LEN];
586};
587
588struct mwifiex_ie_types_rsn_param_set {
589 struct mwifiex_ie_types_header header;
590 u8 rsn_ie[1];
591} __packed;
592
593#define KEYPARAMSET_FIXED_LEN 6
594
595struct mwifiex_ie_type_key_param_set {
596 __le16 type;
597 __le16 length;
598 __le16 key_type_id;
599 __le16 key_info;
600 __le16 key_len;
601 u8 key[50];
602} __packed;
603
Ying Luob877f4c2012-08-03 18:06:14 -0700604#define IGTK_PN_LEN 8
605
606struct mwifiex_cmac_param {
607 u8 ipn[IGTK_PN_LEN];
608 u8 key[WLAN_KEY_LEN_AES_CMAC];
609} __packed;
610
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700611struct host_cmd_ds_802_11_key_material {
612 __le16 action;
613 struct mwifiex_ie_type_key_param_set key_param_set;
614} __packed;
615
616struct host_cmd_ds_gen {
617 u16 command;
618 u16 size;
619 u16 seq_num;
620 u16 result;
621};
622
623#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
624
625enum sleep_resp_ctrl {
626 RESP_NOT_NEEDED = 0,
627 RESP_NEEDED,
628};
629
630struct mwifiex_ps_param {
631 __le16 null_pkt_interval;
632 __le16 multiple_dtims;
633 __le16 bcn_miss_timeout;
634 __le16 local_listen_interval;
635 __le16 adhoc_wake_period;
636 __le16 mode;
637 __le16 delay_to_ps;
638};
639
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700640#define BITMAP_AUTO_DS 0x01
641#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700642
643struct mwifiex_ie_types_auto_ds_param {
644 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700645 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700646} __packed;
647
648struct mwifiex_ie_types_ps_param {
649 struct mwifiex_ie_types_header header;
650 struct mwifiex_ps_param param;
651} __packed;
652
653struct host_cmd_ds_802_11_ps_mode_enh {
654 __le16 action;
655
656 union {
657 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700658 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700659 } params;
660} __packed;
661
662struct host_cmd_ds_get_hw_spec {
663 __le16 hw_if_version;
664 __le16 version;
665 __le16 reserved;
666 __le16 num_of_mcast_adr;
667 u8 permanent_addr[ETH_ALEN];
668 __le16 region_code;
669 __le16 number_of_antenna;
670 __le32 fw_release_number;
671 __le32 reserved_1;
672 __le32 reserved_2;
673 __le32 reserved_3;
674 __le32 fw_cap_info;
675 __le32 dot_11n_dev_cap;
676 u8 dev_mcs_support;
677 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
678 __le16 reserved_4;
679} __packed;
680
681struct host_cmd_ds_802_11_rssi_info {
682 __le16 action;
683 __le16 ndata;
684 __le16 nbcn;
685 __le16 reserved[9];
686 long long reserved_1;
687};
688
689struct host_cmd_ds_802_11_rssi_info_rsp {
690 __le16 action;
691 __le16 ndata;
692 __le16 nbcn;
693 __le16 data_rssi_last;
694 __le16 data_nf_last;
695 __le16 data_rssi_avg;
696 __le16 data_nf_avg;
697 __le16 bcn_rssi_last;
698 __le16 bcn_nf_last;
699 __le16 bcn_rssi_avg;
700 __le16 bcn_nf_avg;
701 long long tsf_bcn;
702};
703
704struct host_cmd_ds_802_11_mac_address {
705 __le16 action;
706 u8 mac_addr[ETH_ALEN];
707};
708
709struct host_cmd_ds_mac_control {
710 __le16 action;
711 __le16 reserved;
712};
713
714struct host_cmd_ds_mac_multicast_adr {
715 __le16 action;
716 __le16 num_of_adrs;
717 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
718} __packed;
719
720struct host_cmd_ds_802_11_deauthenticate {
721 u8 mac_addr[ETH_ALEN];
722 __le16 reason_code;
723} __packed;
724
725struct host_cmd_ds_802_11_associate {
726 u8 peer_sta_addr[ETH_ALEN];
727 __le16 cap_info_bitmap;
728 __le16 listen_interval;
729 __le16 beacon_period;
730 u8 dtim_period;
731} __packed;
732
733struct ieee_types_assoc_rsp {
734 __le16 cap_info_bitmap;
735 __le16 status_code;
736 __le16 a_id;
737 u8 ie_buffer[1];
738} __packed;
739
740struct host_cmd_ds_802_11_associate_rsp {
741 struct ieee_types_assoc_rsp assoc_rsp;
742} __packed;
743
744struct ieee_types_cf_param_set {
745 u8 element_id;
746 u8 len;
747 u8 cfp_cnt;
748 u8 cfp_period;
749 u16 cfp_max_duration;
750 u16 cfp_duration_remaining;
751} __packed;
752
753struct ieee_types_ibss_param_set {
754 u8 element_id;
755 u8 len;
756 __le16 atim_window;
757} __packed;
758
759union ieee_types_ss_param_set {
760 struct ieee_types_cf_param_set cf_param_set;
761 struct ieee_types_ibss_param_set ibss_param_set;
762} __packed;
763
764struct ieee_types_fh_param_set {
765 u8 element_id;
766 u8 len;
767 __le16 dwell_time;
768 u8 hop_set;
769 u8 hop_pattern;
770 u8 hop_index;
771} __packed;
772
773struct ieee_types_ds_param_set {
774 u8 element_id;
775 u8 len;
776 u8 current_chan;
777} __packed;
778
779union ieee_types_phy_param_set {
780 struct ieee_types_fh_param_set fh_param_set;
781 struct ieee_types_ds_param_set ds_param_set;
782} __packed;
783
784struct host_cmd_ds_802_11_ad_hoc_start {
785 u8 ssid[IEEE80211_MAX_SSID_LEN];
786 u8 bss_mode;
787 __le16 beacon_period;
788 u8 dtim_period;
789 union ieee_types_ss_param_set ss_param_set;
790 union ieee_types_phy_param_set phy_param_set;
791 u16 reserved1;
792 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800793 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700794} __packed;
795
796struct host_cmd_ds_802_11_ad_hoc_result {
797 u8 pad[3];
798 u8 bssid[ETH_ALEN];
799} __packed;
800
801struct adhoc_bss_desc {
802 u8 bssid[ETH_ALEN];
803 u8 ssid[IEEE80211_MAX_SSID_LEN];
804 u8 bss_mode;
805 __le16 beacon_period;
806 u8 dtim_period;
807 u8 time_stamp[8];
808 u8 local_time[8];
809 union ieee_types_phy_param_set phy_param_set;
810 union ieee_types_ss_param_set ss_param_set;
811 __le16 cap_info_bitmap;
812 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
813
814 /*
815 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
816 * It is used in the Adhoc join command and will cause a
817 * binary layout mismatch with the firmware
818 */
819} __packed;
820
821struct host_cmd_ds_802_11_ad_hoc_join {
822 struct adhoc_bss_desc bss_descriptor;
823 u16 reserved1;
824 u16 reserved2;
825} __packed;
826
827struct host_cmd_ds_802_11_get_log {
828 __le32 mcast_tx_frame;
829 __le32 failed;
830 __le32 retry;
831 __le32 multi_retry;
832 __le32 frame_dup;
833 __le32 rts_success;
834 __le32 rts_failure;
835 __le32 ack_failure;
836 __le32 rx_frag;
837 __le32 mcast_rx_frame;
838 __le32 fcs_error;
839 __le32 tx_frame;
840 __le32 reserved;
841 __le32 wep_icv_err_cnt[4];
842};
843
844struct host_cmd_ds_tx_rate_query {
845 u8 tx_rate;
846 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
847 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
848 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
849 u8 ht_info;
850} __packed;
851
852enum Host_Sleep_Action {
853 HS_CONFIGURE = 0x0001,
854 HS_ACTIVATE = 0x0002,
855};
856
857struct mwifiex_hs_config_param {
858 __le32 conditions;
859 u8 gpio;
860 u8 gap;
861} __packed;
862
863struct hs_activate_param {
864 u16 resp_ctrl;
865} __packed;
866
867struct host_cmd_ds_802_11_hs_cfg_enh {
868 __le16 action;
869
870 union {
871 struct mwifiex_hs_config_param hs_config;
872 struct hs_activate_param hs_activate;
873 } params;
874} __packed;
875
876enum SNMP_MIB_INDEX {
877 OP_RATE_SET_I = 1,
878 DTIM_PERIOD_I = 3,
879 RTS_THRESH_I = 5,
880 SHORT_RETRY_LIM_I = 6,
881 LONG_RETRY_LIM_I = 7,
882 FRAG_THRESH_I = 8,
883 DOT11D_I = 9,
884};
885
886#define MAX_SNMP_BUF_SIZE 128
887
888struct host_cmd_ds_802_11_snmp_mib {
889 __le16 query_type;
890 __le16 oid;
891 __le16 buf_size;
892 u8 value[1];
893} __packed;
894
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700895struct mwifiex_rate_scope {
896 __le16 type;
897 __le16 length;
898 __le16 hr_dsss_rate_bitmap;
899 __le16 ofdm_rate_bitmap;
900 __le16 ht_mcs_rate_bitmap[8];
901} __packed;
902
903struct mwifiex_rate_drop_pattern {
904 __le16 type;
905 __le16 length;
906 __le32 rate_drop_mode;
907} __packed;
908
909struct host_cmd_ds_tx_rate_cfg {
910 __le16 action;
911 __le16 cfg_index;
912} __packed;
913
914struct mwifiex_power_group {
915 u8 modulation_class;
916 u8 first_rate_code;
917 u8 last_rate_code;
918 s8 power_step;
919 s8 power_min;
920 s8 power_max;
921 u8 ht_bandwidth;
922 u8 reserved;
923} __packed;
924
925struct mwifiex_types_power_group {
926 u16 type;
927 u16 length;
928} __packed;
929
930struct host_cmd_ds_txpwr_cfg {
931 __le16 action;
932 __le16 cfg_index;
933 __le32 mode;
934} __packed;
935
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700936struct host_cmd_ds_rf_tx_pwr {
937 __le16 action;
938 __le16 cur_level;
939 u8 max_power;
940 u8 min_power;
941} __packed;
942
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700943struct host_cmd_ds_rf_ant_mimo {
944 __le16 action_tx;
945 __le16 tx_ant_mode;
946 __le16 action_rx;
947 __le16 rx_ant_mode;
948};
949
950struct host_cmd_ds_rf_ant_siso {
951 __le16 action;
952 __le16 ant_mode;
953};
954
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700955struct mwifiex_bcn_param {
956 u8 bssid[ETH_ALEN];
957 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700958 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700959 __le16 beacon_period;
960 __le16 cap_info_bitmap;
961} __packed;
962
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700963#define MWIFIEX_USER_SCAN_CHAN_MAX 50
964
965#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
966
967struct mwifiex_scan_cmd_config {
968 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700969 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700970 */
971 u8 bss_mode;
972
973 /* Specific BSSID used to filter scan results in the firmware */
974 u8 specific_bssid[ETH_ALEN];
975
976 /* Length of TLVs sent in command starting at tlvBuffer */
977 u32 tlv_buf_len;
978
979 /*
980 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
981 *
982 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
983 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
984 */
985 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
986 here */
987} __packed;
988
989struct mwifiex_user_scan_chan {
990 u8 chan_number;
991 u8 radio_type;
992 u8 scan_type;
993 u8 reserved;
994 u32 scan_time;
995} __packed;
996
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700997struct mwifiex_user_scan_cfg {
998 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700999 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001000 */
1001 u8 bss_mode;
1002 /* Configure the number of probe requests for active chan scans */
1003 u8 num_probes;
1004 u8 reserved;
1005 /* BSSID filter sent in the firmware command to limit the results */
1006 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001007 /* SSID filter list used in the firmware to limit the scan results */
1008 struct cfg80211_ssid *ssid_list;
1009 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001010 /* Variable number (fixed maximum) of channels to scan up */
1011 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
1012} __packed;
1013
1014struct ie_body {
1015 u8 grp_key_oui[4];
1016 u8 ptk_cnt[2];
1017 u8 ptk_body[4];
1018} __packed;
1019
1020struct host_cmd_ds_802_11_scan {
1021 u8 bss_mode;
1022 u8 bssid[ETH_ALEN];
1023 u8 tlv_buffer[1];
1024} __packed;
1025
1026struct host_cmd_ds_802_11_scan_rsp {
1027 __le16 bss_descript_size;
1028 u8 number_of_sets;
1029 u8 bss_desc_and_tlv_buffer[1];
1030} __packed;
1031
1032struct host_cmd_ds_802_11_bg_scan_query {
1033 u8 flush;
1034} __packed;
1035
1036struct host_cmd_ds_802_11_bg_scan_query_rsp {
1037 u32 report_condition;
1038 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1039} __packed;
1040
1041struct mwifiex_ietypes_domain_param_set {
1042 struct mwifiex_ie_types_header header;
1043 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1044 struct ieee80211_country_ie_triplet triplet[1];
1045} __packed;
1046
1047struct host_cmd_ds_802_11d_domain_info {
1048 __le16 action;
1049 struct mwifiex_ietypes_domain_param_set domain;
1050} __packed;
1051
1052struct host_cmd_ds_802_11d_domain_info_rsp {
1053 __le16 action;
1054 struct mwifiex_ietypes_domain_param_set domain;
1055} __packed;
1056
1057struct host_cmd_ds_11n_addba_req {
1058 u8 add_req_result;
1059 u8 peer_mac_addr[ETH_ALEN];
1060 u8 dialog_token;
1061 __le16 block_ack_param_set;
1062 __le16 block_ack_tmo;
1063 __le16 ssn;
1064} __packed;
1065
1066struct host_cmd_ds_11n_addba_rsp {
1067 u8 add_rsp_result;
1068 u8 peer_mac_addr[ETH_ALEN];
1069 u8 dialog_token;
1070 __le16 status_code;
1071 __le16 block_ack_param_set;
1072 __le16 block_ack_tmo;
1073 __le16 ssn;
1074} __packed;
1075
1076struct host_cmd_ds_11n_delba {
1077 u8 del_result;
1078 u8 peer_mac_addr[ETH_ALEN];
1079 __le16 del_ba_param_set;
1080 __le16 reason_code;
1081 u8 reserved;
1082} __packed;
1083
1084struct host_cmd_ds_11n_batimeout {
1085 u8 tid;
1086 u8 peer_mac_addr[ETH_ALEN];
1087 u8 origninator;
1088} __packed;
1089
1090struct host_cmd_ds_11n_cfg {
1091 __le16 action;
1092 __le16 ht_tx_cap;
1093 __le16 ht_tx_info;
1094} __packed;
1095
1096struct host_cmd_ds_txbuf_cfg {
1097 __le16 action;
1098 __le16 buff_size;
1099 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1100 __le16 reserved3;
1101} __packed;
1102
1103struct host_cmd_ds_amsdu_aggr_ctrl {
1104 __le16 action;
1105 __le16 enable;
1106 __le16 curr_buf_size;
1107} __packed;
1108
1109struct mwifiex_ie_types_wmm_param_set {
1110 struct mwifiex_ie_types_header header;
1111 u8 wmm_ie[1];
1112};
1113
1114struct mwifiex_ie_types_wmm_queue_status {
1115 struct mwifiex_ie_types_header header;
1116 u8 queue_index;
1117 u8 disabled;
1118 u16 medium_time;
1119 u8 flow_required;
1120 u8 flow_created;
1121 u32 reserved;
1122};
1123
1124struct ieee_types_vendor_header {
1125 u8 element_id;
1126 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001127 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001128 u8 oui_subtype;
1129 u8 version;
1130} __packed;
1131
1132struct ieee_types_wmm_ac_parameters {
1133 u8 aci_aifsn_bitmap;
1134 u8 ecw_bitmap;
1135 __le16 tx_op_limit;
1136} __packed;
1137
1138struct ieee_types_wmm_parameter {
1139 /*
1140 * WMM Parameter IE - Vendor Specific Header:
1141 * element_id [221/0xdd]
1142 * Len [24]
1143 * Oui [00:50:f2]
1144 * OuiType [2]
1145 * OuiSubType [1]
1146 * Version [1]
1147 */
1148 struct ieee_types_vendor_header vend_hdr;
1149 u8 qos_info_bitmap;
1150 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001151 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001152} __packed;
1153
1154struct ieee_types_wmm_info {
1155
1156 /*
1157 * WMM Info IE - Vendor Specific Header:
1158 * element_id [221/0xdd]
1159 * Len [7]
1160 * Oui [00:50:f2]
1161 * OuiType [2]
1162 * OuiSubType [0]
1163 * Version [1]
1164 */
1165 struct ieee_types_vendor_header vend_hdr;
1166
1167 u8 qos_info_bitmap;
1168} __packed;
1169
1170struct host_cmd_ds_wmm_get_status {
1171 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001172 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001173 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1174} __packed;
1175
1176struct mwifiex_wmm_ac_status {
1177 u8 disabled;
1178 u8 flow_required;
1179 u8 flow_created;
1180};
1181
1182struct mwifiex_ie_types_htcap {
1183 struct mwifiex_ie_types_header header;
1184 struct ieee80211_ht_cap ht_cap;
1185} __packed;
1186
1187struct mwifiex_ie_types_htinfo {
1188 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001189 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001190} __packed;
1191
1192struct mwifiex_ie_types_2040bssco {
1193 struct mwifiex_ie_types_header header;
1194 u8 bss_co_2040;
1195} __packed;
1196
1197struct mwifiex_ie_types_extcap {
1198 struct mwifiex_ie_types_header header;
1199 u8 ext_cap;
1200} __packed;
1201
1202struct host_cmd_ds_mac_reg_access {
1203 __le16 action;
1204 __le16 offset;
1205 __le32 value;
1206} __packed;
1207
1208struct host_cmd_ds_bbp_reg_access {
1209 __le16 action;
1210 __le16 offset;
1211 u8 value;
1212 u8 reserved[3];
1213} __packed;
1214
1215struct host_cmd_ds_rf_reg_access {
1216 __le16 action;
1217 __le16 offset;
1218 u8 value;
1219 u8 reserved[3];
1220} __packed;
1221
1222struct host_cmd_ds_pmic_reg_access {
1223 __le16 action;
1224 __le16 offset;
1225 u8 value;
1226 u8 reserved[3];
1227} __packed;
1228
1229struct host_cmd_ds_802_11_eeprom_access {
1230 __le16 action;
1231
1232 __le16 offset;
1233 __le16 byte_count;
1234 u8 value;
1235} __packed;
1236
Avinash Patil75edd2c2012-05-08 18:30:18 -07001237struct host_cmd_tlv {
1238 __le16 type;
1239 __le16 len;
1240} __packed;
1241
Avinash Patile5686342012-05-08 18:30:25 -07001242struct mwifiex_assoc_event {
1243 u8 sta_addr[ETH_ALEN];
1244 __le16 type;
1245 __le16 len;
1246 __le16 frame_control;
1247 __le16 cap_info;
1248 __le16 listen_interval;
1249 u8 data[0];
1250} __packed;
1251
Avinash Patil4db16a12012-05-08 18:30:20 -07001252struct host_cmd_ds_sys_config {
1253 __le16 action;
1254 u8 tlv[0];
1255};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001256
1257struct host_cmd_tlv_akmp {
1258 struct host_cmd_tlv tlv;
1259 __le16 key_mgmt;
1260 __le16 key_mgmt_operation;
1261} __packed;
1262
1263struct host_cmd_tlv_pwk_cipher {
1264 struct host_cmd_tlv tlv;
1265 __le16 proto;
1266 u8 cipher;
1267 u8 reserved;
1268} __packed;
1269
1270struct host_cmd_tlv_gwk_cipher {
1271 struct host_cmd_tlv tlv;
1272 u8 cipher;
1273 u8 reserved;
1274} __packed;
1275
1276struct host_cmd_tlv_passphrase {
1277 struct host_cmd_tlv tlv;
1278 u8 passphrase[0];
1279} __packed;
1280
Avinash Patil96893532012-06-15 12:21:55 -07001281struct host_cmd_tlv_wep_key {
1282 struct host_cmd_tlv tlv;
1283 u8 key_index;
1284 u8 is_default;
1285 u8 key[1];
1286};
1287
Avinash Patilf752dcd2012-05-08 18:30:26 -07001288struct host_cmd_tlv_auth_type {
1289 struct host_cmd_tlv tlv;
1290 u8 auth_type;
1291} __packed;
1292
1293struct host_cmd_tlv_encrypt_protocol {
1294 struct host_cmd_tlv tlv;
1295 __le16 proto;
1296} __packed;
1297
Avinash Patil12190c52012-05-08 18:30:24 -07001298struct host_cmd_tlv_ssid {
1299 struct host_cmd_tlv tlv;
1300 u8 ssid[0];
1301} __packed;
1302
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001303struct host_cmd_tlv_rates {
1304 struct host_cmd_tlv tlv;
1305 u8 rates[0];
1306} __packed;
1307
Avinash Patil605b73a2012-05-16 21:24:55 -07001308struct host_cmd_tlv_bcast_ssid {
1309 struct host_cmd_tlv tlv;
1310 u8 bcast_ctl;
1311} __packed;
1312
Avinash Patil12190c52012-05-08 18:30:24 -07001313struct host_cmd_tlv_beacon_period {
1314 struct host_cmd_tlv tlv;
1315 __le16 period;
1316} __packed;
1317
1318struct host_cmd_tlv_dtim_period {
1319 struct host_cmd_tlv tlv;
1320 u8 period;
1321} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001322
Avinash Patil9b930ea2012-05-08 18:30:23 -07001323struct host_cmd_tlv_frag_threshold {
1324 struct host_cmd_tlv tlv;
1325 __le16 frag_thr;
1326} __packed;
1327
1328struct host_cmd_tlv_rts_threshold {
1329 struct host_cmd_tlv tlv;
1330 __le16 rts_thr;
1331} __packed;
1332
1333struct host_cmd_tlv_retry_limit {
1334 struct host_cmd_tlv tlv;
1335 u8 limit;
1336} __packed;
1337
Avinash Patil75edd2c2012-05-08 18:30:18 -07001338struct host_cmd_tlv_mac_addr {
1339 struct host_cmd_tlv tlv;
1340 u8 mac_addr[ETH_ALEN];
1341} __packed;
1342
Avinash Patil4db16a12012-05-08 18:30:20 -07001343struct host_cmd_tlv_channel_band {
1344 struct host_cmd_tlv tlv;
1345 u8 band_config;
1346 u8 channel;
1347} __packed;
1348
Kevin Gan8b4509f2012-09-25 20:23:45 -07001349struct host_cmd_tlv_ageout_timer {
1350 struct host_cmd_tlv tlv;
1351 __le32 sta_ao_timer;
1352} __packed;
1353
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001354struct host_cmd_ds_version_ext {
1355 u8 version_str_sel;
1356 char version_str[128];
1357} __packed;
1358
Stone Piao3cec6872012-09-25 20:23:34 -07001359struct host_cmd_ds_mgmt_frame_reg {
1360 __le16 action;
1361 __le32 mask;
1362} __packed;
1363
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001364struct host_cmd_ds_p2p_mode_cfg {
1365 __le16 action;
1366 __le16 mode;
1367} __packed;
1368
Stone Piao7feb4c42012-09-25 20:23:36 -07001369struct host_cmd_ds_remain_on_chan {
1370 __le16 action;
1371 u8 status;
1372 u8 reserved;
1373 u8 band_cfg;
1374 u8 channel;
1375 __le32 duration;
1376} __packed;
1377
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001378struct host_cmd_ds_802_11_ibss_status {
1379 __le16 action;
1380 __le16 enable;
1381 u8 bssid[ETH_ALEN];
1382 __le16 beacon_interval;
1383 __le16 atim_window;
1384 __le16 use_g_rate_protect;
1385} __packed;
1386
1387#define CONNECTION_TYPE_INFRA 0
1388#define CONNECTION_TYPE_ADHOC 1
Stone Piao9197ab92012-09-25 20:23:42 -07001389#define CONNECTION_TYPE_AP 2
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001390
1391struct host_cmd_ds_set_bss_mode {
1392 u8 con_type;
1393} __packed;
1394
Amitkumar Karward930fae2011-10-11 17:41:21 -07001395struct host_cmd_ds_pcie_details {
1396 /* TX buffer descriptor ring address */
1397 u32 txbd_addr_lo;
1398 u32 txbd_addr_hi;
1399 /* TX buffer descriptor ring count */
1400 u32 txbd_count;
1401
1402 /* RX buffer descriptor ring address */
1403 u32 rxbd_addr_lo;
1404 u32 rxbd_addr_hi;
1405 /* RX buffer descriptor ring count */
1406 u32 rxbd_count;
1407
1408 /* Event buffer descriptor ring address */
1409 u32 evtbd_addr_lo;
1410 u32 evtbd_addr_hi;
1411 /* Event buffer descriptor ring count */
1412 u32 evtbd_count;
1413
1414 /* Sleep cookie buffer physical address */
1415 u32 sleep_cookie_addr_lo;
1416 u32 sleep_cookie_addr_hi;
1417} __packed;
1418
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001419struct mwifiex_ie_types_rssi_threshold {
1420 struct mwifiex_ie_types_header header;
1421 u8 abs_value;
1422 u8 evt_freq;
1423} __packed;
1424
1425struct host_cmd_ds_802_11_subsc_evt {
1426 __le16 action;
1427 __le16 events;
1428} __packed;
1429
Avinash Patilede98bf2012-05-08 18:30:28 -07001430struct mwifiex_ie {
1431 __le16 ie_index;
1432 __le16 mgmt_subtype_mask;
1433 __le16 ie_length;
1434 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1435} __packed;
1436
1437#define MAX_MGMT_IE_INDEX 16
1438struct mwifiex_ie_list {
1439 __le16 type;
1440 __le16 len;
1441 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1442} __packed;
1443
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001444struct host_cmd_ds_command {
1445 __le16 command;
1446 __le16 size;
1447 __le16 seq_num;
1448 __le16 result;
1449 union {
1450 struct host_cmd_ds_get_hw_spec hw_spec;
1451 struct host_cmd_ds_mac_control mac_ctrl;
1452 struct host_cmd_ds_802_11_mac_address mac_addr;
1453 struct host_cmd_ds_mac_multicast_adr mc_addr;
1454 struct host_cmd_ds_802_11_get_log get_log;
1455 struct host_cmd_ds_802_11_rssi_info rssi_info;
1456 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1457 struct host_cmd_ds_802_11_snmp_mib smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001458 struct host_cmd_ds_tx_rate_query tx_rate;
1459 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1460 struct host_cmd_ds_txpwr_cfg txp_cfg;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001461 struct host_cmd_ds_rf_tx_pwr txp;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001462 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1463 struct host_cmd_ds_rf_ant_siso ant_siso;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001464 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1465 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1466 struct host_cmd_ds_802_11_scan scan;
1467 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1468 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1469 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1470 struct host_cmd_ds_802_11_associate associate;
1471 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1472 struct host_cmd_ds_802_11_deauthenticate deauth;
1473 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1474 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1475 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1476 struct host_cmd_ds_802_11d_domain_info domain_info;
1477 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1478 struct host_cmd_ds_11n_addba_req add_ba_req;
1479 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1480 struct host_cmd_ds_11n_delba del_ba;
1481 struct host_cmd_ds_txbuf_cfg tx_buf;
1482 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1483 struct host_cmd_ds_11n_cfg htcfg;
1484 struct host_cmd_ds_wmm_get_status get_wmm_status;
1485 struct host_cmd_ds_802_11_key_material key_material;
1486 struct host_cmd_ds_version_ext verext;
Stone Piao3cec6872012-09-25 20:23:34 -07001487 struct host_cmd_ds_mgmt_frame_reg reg_mask;
Stone Piao7feb4c42012-09-25 20:23:36 -07001488 struct host_cmd_ds_remain_on_chan roc_cfg;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001489 struct host_cmd_ds_p2p_mode_cfg mode_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001490 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1491 struct host_cmd_ds_mac_reg_access mac_reg;
1492 struct host_cmd_ds_bbp_reg_access bbp_reg;
1493 struct host_cmd_ds_rf_reg_access rf_reg;
1494 struct host_cmd_ds_pmic_reg_access pmic_reg;
1495 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001496 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001497 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001498 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001499 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001500 } params;
1501} __packed;
1502
1503struct mwifiex_opt_sleep_confirm {
1504 __le16 command;
1505 __le16 size;
1506 __le16 seq_num;
1507 __le16 result;
1508 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001509 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001510} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001511#endif /* !_MWIFIEX_FW_H_ */