blob: 07243c04454a8ca56dd41093a09634067ce216c2 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: Firmware specific macros & structures
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#ifndef _MWIFIEX_FW_H_
21#define _MWIFIEX_FW_H_
22
23#include <linux/if_ether.h>
24
25
26#define INTF_HEADER_LEN 4
27
28struct rfc_1042_hdr {
29 u8 llc_dsap;
30 u8 llc_ssap;
31 u8 llc_ctrl;
32 u8 snap_oui[3];
33 u16 snap_type;
34};
35
36struct rx_packet_hdr {
37 struct ethhdr eth803_hdr;
38 struct rfc_1042_hdr rfc1042_hdr;
39};
40
41struct tx_packet_hdr {
42 struct ethhdr eth803_hdr;
43 struct rfc_1042_hdr rfc1042_hdr;
44};
45
46#define B_SUPPORTED_RATES 5
47#define G_SUPPORTED_RATES 9
48#define BG_SUPPORTED_RATES 13
49#define A_SUPPORTED_RATES 9
50#define HOSTCMD_SUPPORTED_RATES 14
51#define N_SUPPORTED_RATES 3
52#define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN)
53
54#define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11))
55#define IS_SUPPORT_MULTI_BANDS(adapter) \
56 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
57#define GET_FW_DEFAULT_BANDS(adapter) \
58 ((adapter->fw_cap_info >> 8) & ALL_802_11_BANDS)
59
Bing Zhao5e6e3a92011-03-21 18:00:50 -070060#define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
61
62#define KEY_INFO_ENABLED 0x01
63enum KEY_TYPE_ID {
64 KEY_TYPE_ID_WEP = 0,
65 KEY_TYPE_ID_TKIP,
66 KEY_TYPE_ID_AES,
67 KEY_TYPE_ID_WAPI,
68};
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -070069#define KEY_MCAST BIT(0)
70#define KEY_UNICAST BIT(1)
71#define KEY_ENABLED BIT(2)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070072
73#define WAPI_KEY_LEN 50
74
Bing Zhao5e6e3a92011-03-21 18:00:50 -070075#define MAX_POLL_TRIES 100
76
77#define MAX_MULTI_INTERFACE_POLL_TRIES 1000
78
79#define MAX_FIRMWARE_POLL_TRIES 100
80
Amitkumar Karward930fae2011-10-11 17:41:21 -070081#define FIRMWARE_READY_SDIO 0xfedc
82#define FIRMWARE_READY_PCIE 0xfedcba00
Bing Zhao5e6e3a92011-03-21 18:00:50 -070083
Amitkumar Karwar4daffe32012-04-18 20:08:28 -070084enum mwifiex_usb_ep {
85 MWIFIEX_USB_EP_CMD_EVENT = 1,
86 MWIFIEX_USB_EP_DATA = 2,
87};
88
Bing Zhao5e6e3a92011-03-21 18:00:50 -070089enum MWIFIEX_802_11_PRIVACY_FILTER {
90 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
91 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
92};
93
Bing Zhao5e6e3a92011-03-21 18:00:50 -070094#define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
95
Avinash Patil12190c52012-05-08 18:30:24 -070096#define TLV_TYPE_UAP_SSID 0x0000
97
Bing Zhao5e6e3a92011-03-21 18:00:50 -070098#define PROPRIETARY_TLV_BASE_ID 0x0100
99#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
100#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
101#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700102#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700103#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700104#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
105#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
106#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700107#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700108#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700109#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700110#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700111#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
112#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700113#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
114#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700115#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
116#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
117#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700118#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700120#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700121#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
122#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700123
124#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
125
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700126#define SSN_MASK 0xfff0
127
128#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700129#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700130
131#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
132
133#define BA_STREAM_NOT_ALLOWED 0xff
134
135#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700136 priv->adapter->config_bands & BAND_AN) && \
137 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
139 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
140
141#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
142#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700143
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700144#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Marc Yang6d2bd912011-03-25 19:47:02 -0700145
146/* dev_cap bitmap
147 * BIT
148 * 0-16 reserved
149 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
150 * 18-22 reserved
151 * 23 IEEE80211_HT_CAP_SGI_20
152 * 24 IEEE80211_HT_CAP_SGI_40
153 * 25 IEEE80211_HT_CAP_TX_STBC
154 * 26 IEEE80211_HT_CAP_RX_STBC
155 * 27-28 reserved
156 * 29 IEEE80211_HT_CAP_GRN_FLD
157 * 30-31 reserved
158 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700159#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700160#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
161#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
162#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
163#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
164#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
165
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700166/* httxcfg bitmap
167 * 0 reserved
168 * 1 20/40 Mhz enable(1)/disable(0)
169 * 2-3 reserved
170 * 4 green field enable(1)/disable(0)
171 * 5 short GI in 20 Mhz enable(1)/disable(0)
172 * 6 short GI in 40 Mhz enable(1)/disable(0)
173 * 7-15 reserved
174 */
175#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
176
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700177#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700178#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800179#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700181#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
182
183#define LLC_SNAP_LEN 8
184
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700185#define MOD_CLASS_HR_DSSS 0x03
186#define MOD_CLASS_OFDM 0x07
187#define MOD_CLASS_HT 0x08
188#define HT_BW_20 0
189#define HT_BW_40 1
190
191#define HostCmd_CMD_GET_HW_SPEC 0x0003
192#define HostCmd_CMD_802_11_SCAN 0x0006
193#define HostCmd_CMD_802_11_GET_LOG 0x000b
194#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
195#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
196#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
197#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
198#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
199#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
200#define HostCmd_CMD_RF_REG_ACCESS 0x001b
201#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
202#define HostCmd_CMD_802_11_RF_CHANNEL 0x001d
203#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
204#define HostCmd_CMD_MAC_CONTROL 0x0028
205#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
206#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
207#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
208#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
209#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
210#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
211#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
212#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700213#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700214#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
215#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
216#define HostCmd_CMD_VERSION_EXT 0x0097
217#define HostCmd_CMD_RSSI_INFO 0x00a4
218#define HostCmd_CMD_FUNC_INIT 0x00a9
219#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700220#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
221#define HostCmd_CMD_UAP_BSS_START 0x00b1
222#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700223#define HostCmd_CMD_11N_CFG 0x00cd
224#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
225#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
226#define HostCmd_CMD_11N_DELBA 0x00d0
227#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
228#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
229#define HostCmd_CMD_TXPWR_CFG 0x00d1
230#define HostCmd_CMD_TX_RATE_CFG 0x00d6
231#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
232#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
233#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
234#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700235#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700236
237enum ENH_PS_MODES {
238 EN_PS = 1,
239 DIS_PS = 2,
240 EN_AUTO_DS = 3,
241 DIS_AUTO_DS = 4,
242 SLEEP_CONFIRM = 5,
243 GET_PS = 0,
244 EN_AUTO_PS = 0xff,
245 DIS_AUTO_PS = 0xfe,
246};
247
248#define HostCmd_RET_BIT 0x8000
249#define HostCmd_ACT_GEN_GET 0x0000
250#define HostCmd_ACT_GEN_SET 0x0001
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700251#define HostCmd_ACT_BITWISE_SET 0x0002
252#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700253#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700254
255#define HostCmd_ACT_MAC_RX_ON 0x0001
256#define HostCmd_ACT_MAC_TX_ON 0x0002
257#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
258#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
259#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
260#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700261#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
262
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700263#define HostCmd_BSS_MODE_IBSS 0x0002
264#define HostCmd_BSS_MODE_ANY 0x0003
265
266#define HostCmd_SCAN_RADIO_TYPE_BG 0
267#define HostCmd_SCAN_RADIO_TYPE_A 1
268
269#define HOST_SLEEP_CFG_CANCEL 0xffffffff
270#define HOST_SLEEP_CFG_COND_DEF 0x0000000f
271#define HOST_SLEEP_CFG_GPIO_DEF 0xff
272#define HOST_SLEEP_CFG_GAP_DEF 0
273
274#define CMD_F_HOSTCMD (1 << 0)
275#define CMD_F_CANCELED (1 << 1)
276
277#define HostCmd_CMD_ID_MASK 0x0fff
278
279#define HostCmd_SEQ_NUM_MASK 0x00ff
280
281#define HostCmd_BSS_NUM_MASK 0x0f00
282
283#define HostCmd_BSS_TYPE_MASK 0xf000
284
285#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
286 (((seq) & 0x00ff) | \
287 (((num) & 0x000f) << 8)) | \
288 (((type) & 0x000f) << 12); }
289
290#define HostCmd_GET_SEQ_NO(seq) \
291 ((seq) & HostCmd_SEQ_NUM_MASK)
292
293#define HostCmd_GET_BSS_NO(seq) \
294 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
295
296#define HostCmd_GET_BSS_TYPE(seq) \
297 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
298
299#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
300#define EVENT_LINK_LOST 0x00000003
301#define EVENT_LINK_SENSED 0x00000004
302#define EVENT_MIB_CHANGED 0x00000006
303#define EVENT_INIT_DONE 0x00000007
304#define EVENT_DEAUTHENTICATED 0x00000008
305#define EVENT_DISASSOCIATED 0x00000009
306#define EVENT_PS_AWAKE 0x0000000a
307#define EVENT_PS_SLEEP 0x0000000b
308#define EVENT_MIC_ERR_MULTICAST 0x0000000d
309#define EVENT_MIC_ERR_UNICAST 0x0000000e
310#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
311#define EVENT_ADHOC_BCN_LOST 0x00000011
312
313#define EVENT_WMM_STATUS_CHANGE 0x00000017
314#define EVENT_BG_SCAN_REPORT 0x00000018
315#define EVENT_RSSI_LOW 0x00000019
316#define EVENT_SNR_LOW 0x0000001a
317#define EVENT_MAX_FAIL 0x0000001b
318#define EVENT_RSSI_HIGH 0x0000001c
319#define EVENT_SNR_HIGH 0x0000001d
320#define EVENT_IBSS_COALESCED 0x0000001e
321#define EVENT_DATA_RSSI_LOW 0x00000024
322#define EVENT_DATA_SNR_LOW 0x00000025
323#define EVENT_DATA_RSSI_HIGH 0x00000026
324#define EVENT_DATA_SNR_HIGH 0x00000027
325#define EVENT_LINK_QUALITY 0x00000028
326#define EVENT_PORT_RELEASE 0x0000002b
327#define EVENT_PRE_BEACON_LOST 0x00000031
328#define EVENT_ADDBA 0x00000033
329#define EVENT_DELBA 0x00000034
330#define EVENT_BA_STREAM_TIEMOUT 0x00000037
331#define EVENT_AMSDU_AGGR_CTRL 0x00000042
332#define EVENT_WEP_ICV_ERR 0x00000046
333#define EVENT_HS_ACT_REQ 0x00000047
334#define EVENT_BW_CHANGE 0x00000048
335
336#define EVENT_HOSTWAKE_STAIE 0x0000004d
337
338#define EVENT_ID_MASK 0xffff
339#define BSS_NUM_MASK 0xf
340
341#define EVENT_GET_BSS_NUM(event_cause) \
342 (((event_cause) >> 16) & BSS_NUM_MASK)
343
344#define EVENT_GET_BSS_TYPE(event_cause) \
345 (((event_cause) >> 24) & 0x00ff)
346
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700347struct mwifiex_ie_types_header {
348 __le16 type;
349 __le16 len;
350} __packed;
351
352struct mwifiex_ie_types_data {
353 struct mwifiex_ie_types_header header;
354 u8 data[1];
355} __packed;
356
357#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
358#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
359
360struct txpd {
361 u8 bss_type;
362 u8 bss_num;
363 __le16 tx_pkt_length;
364 __le16 tx_pkt_offset;
365 __le16 tx_pkt_type;
366 __le32 tx_control;
367 u8 priority;
368 u8 flags;
369 u8 pkt_delay_2ms;
370 u8 reserved1;
371} __packed;
372
373struct rxpd {
374 u8 bss_type;
375 u8 bss_num;
376 u16 rx_pkt_length;
377 u16 rx_pkt_offset;
378 u16 rx_pkt_type;
379 u16 seq_num;
380 u8 priority;
381 u8 rx_rate;
382 s8 snr;
383 s8 nf;
384 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
385 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
386 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
387 u8 ht_info;
388 u8 reserved;
389} __packed;
390
391enum mwifiex_chan_scan_mode_bitmasks {
392 MWIFIEX_PASSIVE_SCAN = BIT(0),
393 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
394};
395
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700396struct mwifiex_chan_scan_param_set {
397 u8 radio_type;
398 u8 chan_number;
399 u8 chan_scan_mode_bitmap;
400 __le16 min_scan_time;
401 __le16 max_scan_time;
402} __packed;
403
404struct mwifiex_ie_types_chan_list_param_set {
405 struct mwifiex_ie_types_header header;
406 struct mwifiex_chan_scan_param_set chan_scan_param[1];
407} __packed;
408
409struct chan_band_param_set {
410 u8 radio_type;
411 u8 chan_number;
412};
413
414struct mwifiex_ie_types_chan_band_list_param_set {
415 struct mwifiex_ie_types_header header;
416 struct chan_band_param_set chan_band_param[1];
417} __packed;
418
419struct mwifiex_ie_types_rates_param_set {
420 struct mwifiex_ie_types_header header;
421 u8 rates[1];
422} __packed;
423
424struct mwifiex_ie_types_ssid_param_set {
425 struct mwifiex_ie_types_header header;
426 u8 ssid[1];
427} __packed;
428
429struct mwifiex_ie_types_num_probes {
430 struct mwifiex_ie_types_header header;
431 __le16 num_probes;
432} __packed;
433
434struct mwifiex_ie_types_wildcard_ssid_params {
435 struct mwifiex_ie_types_header header;
436 u8 max_ssid_length;
437 u8 ssid[1];
438} __packed;
439
440#define TSF_DATA_SIZE 8
441struct mwifiex_ie_types_tsf_timestamp {
442 struct mwifiex_ie_types_header header;
443 u8 tsf_data[1];
444} __packed;
445
446struct mwifiex_cf_param_set {
447 u8 cfp_cnt;
448 u8 cfp_period;
449 u16 cfp_max_duration;
450 u16 cfp_duration_remaining;
451} __packed;
452
453struct mwifiex_ibss_param_set {
454 u16 atim_window;
455} __packed;
456
457struct mwifiex_ie_types_ss_param_set {
458 struct mwifiex_ie_types_header header;
459 union {
460 struct mwifiex_cf_param_set cf_param_set[1];
461 struct mwifiex_ibss_param_set ibss_param_set[1];
462 } cf_ibss;
463} __packed;
464
465struct mwifiex_fh_param_set {
466 u16 dwell_time;
467 u8 hop_set;
468 u8 hop_pattern;
469 u8 hop_index;
470} __packed;
471
472struct mwifiex_ds_param_set {
473 u8 current_chan;
474} __packed;
475
476struct mwifiex_ie_types_phy_param_set {
477 struct mwifiex_ie_types_header header;
478 union {
479 struct mwifiex_fh_param_set fh_param_set[1];
480 struct mwifiex_ds_param_set ds_param_set[1];
481 } fh_ds;
482} __packed;
483
484struct mwifiex_ie_types_auth_type {
485 struct mwifiex_ie_types_header header;
486 __le16 auth_type;
487} __packed;
488
489struct mwifiex_ie_types_vendor_param_set {
490 struct mwifiex_ie_types_header header;
491 u8 ie[MWIFIEX_MAX_VSIE_LEN];
492};
493
494struct mwifiex_ie_types_rsn_param_set {
495 struct mwifiex_ie_types_header header;
496 u8 rsn_ie[1];
497} __packed;
498
499#define KEYPARAMSET_FIXED_LEN 6
500
501struct mwifiex_ie_type_key_param_set {
502 __le16 type;
503 __le16 length;
504 __le16 key_type_id;
505 __le16 key_info;
506 __le16 key_len;
507 u8 key[50];
508} __packed;
509
510struct host_cmd_ds_802_11_key_material {
511 __le16 action;
512 struct mwifiex_ie_type_key_param_set key_param_set;
513} __packed;
514
515struct host_cmd_ds_gen {
516 u16 command;
517 u16 size;
518 u16 seq_num;
519 u16 result;
520};
521
522#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
523
524enum sleep_resp_ctrl {
525 RESP_NOT_NEEDED = 0,
526 RESP_NEEDED,
527};
528
529struct mwifiex_ps_param {
530 __le16 null_pkt_interval;
531 __le16 multiple_dtims;
532 __le16 bcn_miss_timeout;
533 __le16 local_listen_interval;
534 __le16 adhoc_wake_period;
535 __le16 mode;
536 __le16 delay_to_ps;
537};
538
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700539#define BITMAP_AUTO_DS 0x01
540#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700541
542struct mwifiex_ie_types_auto_ds_param {
543 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700544 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700545} __packed;
546
547struct mwifiex_ie_types_ps_param {
548 struct mwifiex_ie_types_header header;
549 struct mwifiex_ps_param param;
550} __packed;
551
552struct host_cmd_ds_802_11_ps_mode_enh {
553 __le16 action;
554
555 union {
556 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700557 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700558 } params;
559} __packed;
560
561struct host_cmd_ds_get_hw_spec {
562 __le16 hw_if_version;
563 __le16 version;
564 __le16 reserved;
565 __le16 num_of_mcast_adr;
566 u8 permanent_addr[ETH_ALEN];
567 __le16 region_code;
568 __le16 number_of_antenna;
569 __le32 fw_release_number;
570 __le32 reserved_1;
571 __le32 reserved_2;
572 __le32 reserved_3;
573 __le32 fw_cap_info;
574 __le32 dot_11n_dev_cap;
575 u8 dev_mcs_support;
576 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
577 __le16 reserved_4;
578} __packed;
579
580struct host_cmd_ds_802_11_rssi_info {
581 __le16 action;
582 __le16 ndata;
583 __le16 nbcn;
584 __le16 reserved[9];
585 long long reserved_1;
586};
587
588struct host_cmd_ds_802_11_rssi_info_rsp {
589 __le16 action;
590 __le16 ndata;
591 __le16 nbcn;
592 __le16 data_rssi_last;
593 __le16 data_nf_last;
594 __le16 data_rssi_avg;
595 __le16 data_nf_avg;
596 __le16 bcn_rssi_last;
597 __le16 bcn_nf_last;
598 __le16 bcn_rssi_avg;
599 __le16 bcn_nf_avg;
600 long long tsf_bcn;
601};
602
603struct host_cmd_ds_802_11_mac_address {
604 __le16 action;
605 u8 mac_addr[ETH_ALEN];
606};
607
608struct host_cmd_ds_mac_control {
609 __le16 action;
610 __le16 reserved;
611};
612
613struct host_cmd_ds_mac_multicast_adr {
614 __le16 action;
615 __le16 num_of_adrs;
616 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
617} __packed;
618
619struct host_cmd_ds_802_11_deauthenticate {
620 u8 mac_addr[ETH_ALEN];
621 __le16 reason_code;
622} __packed;
623
624struct host_cmd_ds_802_11_associate {
625 u8 peer_sta_addr[ETH_ALEN];
626 __le16 cap_info_bitmap;
627 __le16 listen_interval;
628 __le16 beacon_period;
629 u8 dtim_period;
630} __packed;
631
632struct ieee_types_assoc_rsp {
633 __le16 cap_info_bitmap;
634 __le16 status_code;
635 __le16 a_id;
636 u8 ie_buffer[1];
637} __packed;
638
639struct host_cmd_ds_802_11_associate_rsp {
640 struct ieee_types_assoc_rsp assoc_rsp;
641} __packed;
642
643struct ieee_types_cf_param_set {
644 u8 element_id;
645 u8 len;
646 u8 cfp_cnt;
647 u8 cfp_period;
648 u16 cfp_max_duration;
649 u16 cfp_duration_remaining;
650} __packed;
651
652struct ieee_types_ibss_param_set {
653 u8 element_id;
654 u8 len;
655 __le16 atim_window;
656} __packed;
657
658union ieee_types_ss_param_set {
659 struct ieee_types_cf_param_set cf_param_set;
660 struct ieee_types_ibss_param_set ibss_param_set;
661} __packed;
662
663struct ieee_types_fh_param_set {
664 u8 element_id;
665 u8 len;
666 __le16 dwell_time;
667 u8 hop_set;
668 u8 hop_pattern;
669 u8 hop_index;
670} __packed;
671
672struct ieee_types_ds_param_set {
673 u8 element_id;
674 u8 len;
675 u8 current_chan;
676} __packed;
677
678union ieee_types_phy_param_set {
679 struct ieee_types_fh_param_set fh_param_set;
680 struct ieee_types_ds_param_set ds_param_set;
681} __packed;
682
683struct host_cmd_ds_802_11_ad_hoc_start {
684 u8 ssid[IEEE80211_MAX_SSID_LEN];
685 u8 bss_mode;
686 __le16 beacon_period;
687 u8 dtim_period;
688 union ieee_types_ss_param_set ss_param_set;
689 union ieee_types_phy_param_set phy_param_set;
690 u16 reserved1;
691 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800692 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700693} __packed;
694
695struct host_cmd_ds_802_11_ad_hoc_result {
696 u8 pad[3];
697 u8 bssid[ETH_ALEN];
698} __packed;
699
700struct adhoc_bss_desc {
701 u8 bssid[ETH_ALEN];
702 u8 ssid[IEEE80211_MAX_SSID_LEN];
703 u8 bss_mode;
704 __le16 beacon_period;
705 u8 dtim_period;
706 u8 time_stamp[8];
707 u8 local_time[8];
708 union ieee_types_phy_param_set phy_param_set;
709 union ieee_types_ss_param_set ss_param_set;
710 __le16 cap_info_bitmap;
711 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
712
713 /*
714 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
715 * It is used in the Adhoc join command and will cause a
716 * binary layout mismatch with the firmware
717 */
718} __packed;
719
720struct host_cmd_ds_802_11_ad_hoc_join {
721 struct adhoc_bss_desc bss_descriptor;
722 u16 reserved1;
723 u16 reserved2;
724} __packed;
725
726struct host_cmd_ds_802_11_get_log {
727 __le32 mcast_tx_frame;
728 __le32 failed;
729 __le32 retry;
730 __le32 multi_retry;
731 __le32 frame_dup;
732 __le32 rts_success;
733 __le32 rts_failure;
734 __le32 ack_failure;
735 __le32 rx_frag;
736 __le32 mcast_rx_frame;
737 __le32 fcs_error;
738 __le32 tx_frame;
739 __le32 reserved;
740 __le32 wep_icv_err_cnt[4];
741};
742
743struct host_cmd_ds_tx_rate_query {
744 u8 tx_rate;
745 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
746 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
747 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
748 u8 ht_info;
749} __packed;
750
751enum Host_Sleep_Action {
752 HS_CONFIGURE = 0x0001,
753 HS_ACTIVATE = 0x0002,
754};
755
756struct mwifiex_hs_config_param {
757 __le32 conditions;
758 u8 gpio;
759 u8 gap;
760} __packed;
761
762struct hs_activate_param {
763 u16 resp_ctrl;
764} __packed;
765
766struct host_cmd_ds_802_11_hs_cfg_enh {
767 __le16 action;
768
769 union {
770 struct mwifiex_hs_config_param hs_config;
771 struct hs_activate_param hs_activate;
772 } params;
773} __packed;
774
775enum SNMP_MIB_INDEX {
776 OP_RATE_SET_I = 1,
777 DTIM_PERIOD_I = 3,
778 RTS_THRESH_I = 5,
779 SHORT_RETRY_LIM_I = 6,
780 LONG_RETRY_LIM_I = 7,
781 FRAG_THRESH_I = 8,
782 DOT11D_I = 9,
783};
784
785#define MAX_SNMP_BUF_SIZE 128
786
787struct host_cmd_ds_802_11_snmp_mib {
788 __le16 query_type;
789 __le16 oid;
790 __le16 buf_size;
791 u8 value[1];
792} __packed;
793
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700794struct mwifiex_rate_scope {
795 __le16 type;
796 __le16 length;
797 __le16 hr_dsss_rate_bitmap;
798 __le16 ofdm_rate_bitmap;
799 __le16 ht_mcs_rate_bitmap[8];
800} __packed;
801
802struct mwifiex_rate_drop_pattern {
803 __le16 type;
804 __le16 length;
805 __le32 rate_drop_mode;
806} __packed;
807
808struct host_cmd_ds_tx_rate_cfg {
809 __le16 action;
810 __le16 cfg_index;
811} __packed;
812
813struct mwifiex_power_group {
814 u8 modulation_class;
815 u8 first_rate_code;
816 u8 last_rate_code;
817 s8 power_step;
818 s8 power_min;
819 s8 power_max;
820 u8 ht_bandwidth;
821 u8 reserved;
822} __packed;
823
824struct mwifiex_types_power_group {
825 u16 type;
826 u16 length;
827} __packed;
828
829struct host_cmd_ds_txpwr_cfg {
830 __le16 action;
831 __le16 cfg_index;
832 __le32 mode;
833} __packed;
834
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700835struct mwifiex_bcn_param {
836 u8 bssid[ETH_ALEN];
837 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700838 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700839 __le16 beacon_period;
840 __le16 cap_info_bitmap;
841} __packed;
842
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700843#define MWIFIEX_USER_SCAN_CHAN_MAX 50
844
845#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
846
847struct mwifiex_scan_cmd_config {
848 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700849 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700850 */
851 u8 bss_mode;
852
853 /* Specific BSSID used to filter scan results in the firmware */
854 u8 specific_bssid[ETH_ALEN];
855
856 /* Length of TLVs sent in command starting at tlvBuffer */
857 u32 tlv_buf_len;
858
859 /*
860 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
861 *
862 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
863 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
864 */
865 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
866 here */
867} __packed;
868
869struct mwifiex_user_scan_chan {
870 u8 chan_number;
871 u8 radio_type;
872 u8 scan_type;
873 u8 reserved;
874 u32 scan_time;
875} __packed;
876
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700877struct mwifiex_user_scan_cfg {
878 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700879 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700880 */
881 u8 bss_mode;
882 /* Configure the number of probe requests for active chan scans */
883 u8 num_probes;
884 u8 reserved;
885 /* BSSID filter sent in the firmware command to limit the results */
886 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800887 /* SSID filter list used in the firmware to limit the scan results */
888 struct cfg80211_ssid *ssid_list;
889 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700890 /* Variable number (fixed maximum) of channels to scan up */
891 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
892} __packed;
893
894struct ie_body {
895 u8 grp_key_oui[4];
896 u8 ptk_cnt[2];
897 u8 ptk_body[4];
898} __packed;
899
900struct host_cmd_ds_802_11_scan {
901 u8 bss_mode;
902 u8 bssid[ETH_ALEN];
903 u8 tlv_buffer[1];
904} __packed;
905
906struct host_cmd_ds_802_11_scan_rsp {
907 __le16 bss_descript_size;
908 u8 number_of_sets;
909 u8 bss_desc_and_tlv_buffer[1];
910} __packed;
911
912struct host_cmd_ds_802_11_bg_scan_query {
913 u8 flush;
914} __packed;
915
916struct host_cmd_ds_802_11_bg_scan_query_rsp {
917 u32 report_condition;
918 struct host_cmd_ds_802_11_scan_rsp scan_resp;
919} __packed;
920
921struct mwifiex_ietypes_domain_param_set {
922 struct mwifiex_ie_types_header header;
923 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
924 struct ieee80211_country_ie_triplet triplet[1];
925} __packed;
926
927struct host_cmd_ds_802_11d_domain_info {
928 __le16 action;
929 struct mwifiex_ietypes_domain_param_set domain;
930} __packed;
931
932struct host_cmd_ds_802_11d_domain_info_rsp {
933 __le16 action;
934 struct mwifiex_ietypes_domain_param_set domain;
935} __packed;
936
937struct host_cmd_ds_11n_addba_req {
938 u8 add_req_result;
939 u8 peer_mac_addr[ETH_ALEN];
940 u8 dialog_token;
941 __le16 block_ack_param_set;
942 __le16 block_ack_tmo;
943 __le16 ssn;
944} __packed;
945
946struct host_cmd_ds_11n_addba_rsp {
947 u8 add_rsp_result;
948 u8 peer_mac_addr[ETH_ALEN];
949 u8 dialog_token;
950 __le16 status_code;
951 __le16 block_ack_param_set;
952 __le16 block_ack_tmo;
953 __le16 ssn;
954} __packed;
955
956struct host_cmd_ds_11n_delba {
957 u8 del_result;
958 u8 peer_mac_addr[ETH_ALEN];
959 __le16 del_ba_param_set;
960 __le16 reason_code;
961 u8 reserved;
962} __packed;
963
964struct host_cmd_ds_11n_batimeout {
965 u8 tid;
966 u8 peer_mac_addr[ETH_ALEN];
967 u8 origninator;
968} __packed;
969
970struct host_cmd_ds_11n_cfg {
971 __le16 action;
972 __le16 ht_tx_cap;
973 __le16 ht_tx_info;
974} __packed;
975
976struct host_cmd_ds_txbuf_cfg {
977 __le16 action;
978 __le16 buff_size;
979 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
980 __le16 reserved3;
981} __packed;
982
983struct host_cmd_ds_amsdu_aggr_ctrl {
984 __le16 action;
985 __le16 enable;
986 __le16 curr_buf_size;
987} __packed;
988
989struct mwifiex_ie_types_wmm_param_set {
990 struct mwifiex_ie_types_header header;
991 u8 wmm_ie[1];
992};
993
994struct mwifiex_ie_types_wmm_queue_status {
995 struct mwifiex_ie_types_header header;
996 u8 queue_index;
997 u8 disabled;
998 u16 medium_time;
999 u8 flow_required;
1000 u8 flow_created;
1001 u32 reserved;
1002};
1003
1004struct ieee_types_vendor_header {
1005 u8 element_id;
1006 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001007 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001008 u8 oui_subtype;
1009 u8 version;
1010} __packed;
1011
1012struct ieee_types_wmm_ac_parameters {
1013 u8 aci_aifsn_bitmap;
1014 u8 ecw_bitmap;
1015 __le16 tx_op_limit;
1016} __packed;
1017
1018struct ieee_types_wmm_parameter {
1019 /*
1020 * WMM Parameter IE - Vendor Specific Header:
1021 * element_id [221/0xdd]
1022 * Len [24]
1023 * Oui [00:50:f2]
1024 * OuiType [2]
1025 * OuiSubType [1]
1026 * Version [1]
1027 */
1028 struct ieee_types_vendor_header vend_hdr;
1029 u8 qos_info_bitmap;
1030 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001031 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001032} __packed;
1033
1034struct ieee_types_wmm_info {
1035
1036 /*
1037 * WMM Info IE - Vendor Specific Header:
1038 * element_id [221/0xdd]
1039 * Len [7]
1040 * Oui [00:50:f2]
1041 * OuiType [2]
1042 * OuiSubType [0]
1043 * Version [1]
1044 */
1045 struct ieee_types_vendor_header vend_hdr;
1046
1047 u8 qos_info_bitmap;
1048} __packed;
1049
1050struct host_cmd_ds_wmm_get_status {
1051 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001052 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001053 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1054} __packed;
1055
1056struct mwifiex_wmm_ac_status {
1057 u8 disabled;
1058 u8 flow_required;
1059 u8 flow_created;
1060};
1061
1062struct mwifiex_ie_types_htcap {
1063 struct mwifiex_ie_types_header header;
1064 struct ieee80211_ht_cap ht_cap;
1065} __packed;
1066
1067struct mwifiex_ie_types_htinfo {
1068 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001069 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001070} __packed;
1071
1072struct mwifiex_ie_types_2040bssco {
1073 struct mwifiex_ie_types_header header;
1074 u8 bss_co_2040;
1075} __packed;
1076
1077struct mwifiex_ie_types_extcap {
1078 struct mwifiex_ie_types_header header;
1079 u8 ext_cap;
1080} __packed;
1081
1082struct host_cmd_ds_mac_reg_access {
1083 __le16 action;
1084 __le16 offset;
1085 __le32 value;
1086} __packed;
1087
1088struct host_cmd_ds_bbp_reg_access {
1089 __le16 action;
1090 __le16 offset;
1091 u8 value;
1092 u8 reserved[3];
1093} __packed;
1094
1095struct host_cmd_ds_rf_reg_access {
1096 __le16 action;
1097 __le16 offset;
1098 u8 value;
1099 u8 reserved[3];
1100} __packed;
1101
1102struct host_cmd_ds_pmic_reg_access {
1103 __le16 action;
1104 __le16 offset;
1105 u8 value;
1106 u8 reserved[3];
1107} __packed;
1108
1109struct host_cmd_ds_802_11_eeprom_access {
1110 __le16 action;
1111
1112 __le16 offset;
1113 __le16 byte_count;
1114 u8 value;
1115} __packed;
1116
Avinash Patil75edd2c2012-05-08 18:30:18 -07001117struct host_cmd_tlv {
1118 __le16 type;
1119 __le16 len;
1120} __packed;
1121
Avinash Patil4db16a12012-05-08 18:30:20 -07001122struct host_cmd_ds_sys_config {
1123 __le16 action;
1124 u8 tlv[0];
1125};
Avinash Patil12190c52012-05-08 18:30:24 -07001126struct host_cmd_tlv_ssid {
1127 struct host_cmd_tlv tlv;
1128 u8 ssid[0];
1129} __packed;
1130
1131struct host_cmd_tlv_beacon_period {
1132 struct host_cmd_tlv tlv;
1133 __le16 period;
1134} __packed;
1135
1136struct host_cmd_tlv_dtim_period {
1137 struct host_cmd_tlv tlv;
1138 u8 period;
1139} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001140
Avinash Patil9b930ea2012-05-08 18:30:23 -07001141struct host_cmd_tlv_frag_threshold {
1142 struct host_cmd_tlv tlv;
1143 __le16 frag_thr;
1144} __packed;
1145
1146struct host_cmd_tlv_rts_threshold {
1147 struct host_cmd_tlv tlv;
1148 __le16 rts_thr;
1149} __packed;
1150
1151struct host_cmd_tlv_retry_limit {
1152 struct host_cmd_tlv tlv;
1153 u8 limit;
1154} __packed;
1155
Avinash Patil75edd2c2012-05-08 18:30:18 -07001156struct host_cmd_tlv_mac_addr {
1157 struct host_cmd_tlv tlv;
1158 u8 mac_addr[ETH_ALEN];
1159} __packed;
1160
Avinash Patil4db16a12012-05-08 18:30:20 -07001161struct host_cmd_tlv_channel_band {
1162 struct host_cmd_tlv tlv;
1163 u8 band_config;
1164 u8 channel;
1165} __packed;
1166
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001167struct host_cmd_ds_802_11_rf_channel {
1168 __le16 action;
1169 __le16 current_channel;
1170 __le16 rf_type;
1171 __le16 reserved;
1172 u8 reserved_1[32];
1173} __packed;
1174
1175struct host_cmd_ds_version_ext {
1176 u8 version_str_sel;
1177 char version_str[128];
1178} __packed;
1179
1180struct host_cmd_ds_802_11_ibss_status {
1181 __le16 action;
1182 __le16 enable;
1183 u8 bssid[ETH_ALEN];
1184 __le16 beacon_interval;
1185 __le16 atim_window;
1186 __le16 use_g_rate_protect;
1187} __packed;
1188
1189#define CONNECTION_TYPE_INFRA 0
1190#define CONNECTION_TYPE_ADHOC 1
1191
1192struct host_cmd_ds_set_bss_mode {
1193 u8 con_type;
1194} __packed;
1195
Amitkumar Karward930fae2011-10-11 17:41:21 -07001196struct host_cmd_ds_pcie_details {
1197 /* TX buffer descriptor ring address */
1198 u32 txbd_addr_lo;
1199 u32 txbd_addr_hi;
1200 /* TX buffer descriptor ring count */
1201 u32 txbd_count;
1202
1203 /* RX buffer descriptor ring address */
1204 u32 rxbd_addr_lo;
1205 u32 rxbd_addr_hi;
1206 /* RX buffer descriptor ring count */
1207 u32 rxbd_count;
1208
1209 /* Event buffer descriptor ring address */
1210 u32 evtbd_addr_lo;
1211 u32 evtbd_addr_hi;
1212 /* Event buffer descriptor ring count */
1213 u32 evtbd_count;
1214
1215 /* Sleep cookie buffer physical address */
1216 u32 sleep_cookie_addr_lo;
1217 u32 sleep_cookie_addr_hi;
1218} __packed;
1219
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001220struct mwifiex_ie_types_rssi_threshold {
1221 struct mwifiex_ie_types_header header;
1222 u8 abs_value;
1223 u8 evt_freq;
1224} __packed;
1225
1226struct host_cmd_ds_802_11_subsc_evt {
1227 __le16 action;
1228 __le16 events;
1229} __packed;
1230
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001231struct host_cmd_ds_command {
1232 __le16 command;
1233 __le16 size;
1234 __le16 seq_num;
1235 __le16 result;
1236 union {
1237 struct host_cmd_ds_get_hw_spec hw_spec;
1238 struct host_cmd_ds_mac_control mac_ctrl;
1239 struct host_cmd_ds_802_11_mac_address mac_addr;
1240 struct host_cmd_ds_mac_multicast_adr mc_addr;
1241 struct host_cmd_ds_802_11_get_log get_log;
1242 struct host_cmd_ds_802_11_rssi_info rssi_info;
1243 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1244 struct host_cmd_ds_802_11_snmp_mib smib;
1245 struct host_cmd_ds_802_11_rf_channel rf_channel;
1246 struct host_cmd_ds_tx_rate_query tx_rate;
1247 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1248 struct host_cmd_ds_txpwr_cfg txp_cfg;
1249 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1250 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1251 struct host_cmd_ds_802_11_scan scan;
1252 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1253 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1254 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1255 struct host_cmd_ds_802_11_associate associate;
1256 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1257 struct host_cmd_ds_802_11_deauthenticate deauth;
1258 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1259 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1260 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1261 struct host_cmd_ds_802_11d_domain_info domain_info;
1262 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1263 struct host_cmd_ds_11n_addba_req add_ba_req;
1264 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1265 struct host_cmd_ds_11n_delba del_ba;
1266 struct host_cmd_ds_txbuf_cfg tx_buf;
1267 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1268 struct host_cmd_ds_11n_cfg htcfg;
1269 struct host_cmd_ds_wmm_get_status get_wmm_status;
1270 struct host_cmd_ds_802_11_key_material key_material;
1271 struct host_cmd_ds_version_ext verext;
1272 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1273 struct host_cmd_ds_mac_reg_access mac_reg;
1274 struct host_cmd_ds_bbp_reg_access bbp_reg;
1275 struct host_cmd_ds_rf_reg_access rf_reg;
1276 struct host_cmd_ds_pmic_reg_access pmic_reg;
1277 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001278 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001279 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001280 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001281 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001282 } params;
1283} __packed;
1284
1285struct mwifiex_opt_sleep_confirm {
1286 __le16 command;
1287 __le16 size;
1288 __le16 seq_num;
1289 __le16 result;
1290 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001291 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001292} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001293#endif /* !_MWIFIEX_FW_H_ */