blob: a4c2fc3e3d71b65ee263ce414a76da831d3af72c [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
96#define PROPRIETARY_TLV_BASE_ID 0x0100
97#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
98#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
99#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700100#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700101#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700102#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
103#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
104#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700105#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700106#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700107#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700108#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700109#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
110#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700111#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
112#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
113#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700114#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700115#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700116#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700117#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
118#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119
120#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
121
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700122#define SSN_MASK 0xfff0
123
124#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700125#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700126
127#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
128
129#define BA_STREAM_NOT_ALLOWED 0xff
130
131#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700132 priv->adapter->config_bands & BAND_AN) && \
133 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700134#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
135 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
136
137#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
138#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700139
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700140#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Marc Yang6d2bd912011-03-25 19:47:02 -0700141
142/* dev_cap bitmap
143 * BIT
144 * 0-16 reserved
145 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
146 * 18-22 reserved
147 * 23 IEEE80211_HT_CAP_SGI_20
148 * 24 IEEE80211_HT_CAP_SGI_40
149 * 25 IEEE80211_HT_CAP_TX_STBC
150 * 26 IEEE80211_HT_CAP_RX_STBC
151 * 27-28 reserved
152 * 29 IEEE80211_HT_CAP_GRN_FLD
153 * 30-31 reserved
154 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700155#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700156#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
157#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
158#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
159#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
160#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
161
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700162/* httxcfg bitmap
163 * 0 reserved
164 * 1 20/40 Mhz enable(1)/disable(0)
165 * 2-3 reserved
166 * 4 green field enable(1)/disable(0)
167 * 5 short GI in 20 Mhz enable(1)/disable(0)
168 * 6 short GI in 40 Mhz enable(1)/disable(0)
169 * 7-15 reserved
170 */
171#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
172
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700173#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700174#define SETHT_MCS32(x) (x[4] |= 1)
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800175#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700176
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700177#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
178
179#define LLC_SNAP_LEN 8
180
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700181#define MOD_CLASS_HR_DSSS 0x03
182#define MOD_CLASS_OFDM 0x07
183#define MOD_CLASS_HT 0x08
184#define HT_BW_20 0
185#define HT_BW_40 1
186
187#define HostCmd_CMD_GET_HW_SPEC 0x0003
188#define HostCmd_CMD_802_11_SCAN 0x0006
189#define HostCmd_CMD_802_11_GET_LOG 0x000b
190#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
191#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
192#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
193#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
194#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
195#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
196#define HostCmd_CMD_RF_REG_ACCESS 0x001b
197#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
198#define HostCmd_CMD_802_11_RF_CHANNEL 0x001d
199#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
200#define HostCmd_CMD_MAC_CONTROL 0x0028
201#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
202#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
203#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
204#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
205#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
206#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
207#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
208#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700209#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
211#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
212#define HostCmd_CMD_VERSION_EXT 0x0097
213#define HostCmd_CMD_RSSI_INFO 0x00a4
214#define HostCmd_CMD_FUNC_INIT 0x00a9
215#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700216#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
217#define HostCmd_CMD_UAP_BSS_START 0x00b1
218#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700219#define HostCmd_CMD_11N_CFG 0x00cd
220#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
221#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
222#define HostCmd_CMD_11N_DELBA 0x00d0
223#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
224#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
225#define HostCmd_CMD_TXPWR_CFG 0x00d1
226#define HostCmd_CMD_TX_RATE_CFG 0x00d6
227#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
228#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
229#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
230#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700231#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700232
233enum ENH_PS_MODES {
234 EN_PS = 1,
235 DIS_PS = 2,
236 EN_AUTO_DS = 3,
237 DIS_AUTO_DS = 4,
238 SLEEP_CONFIRM = 5,
239 GET_PS = 0,
240 EN_AUTO_PS = 0xff,
241 DIS_AUTO_PS = 0xfe,
242};
243
244#define HostCmd_RET_BIT 0x8000
245#define HostCmd_ACT_GEN_GET 0x0000
246#define HostCmd_ACT_GEN_SET 0x0001
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700247#define HostCmd_ACT_BITWISE_SET 0x0002
248#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700249#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700250
251#define HostCmd_ACT_MAC_RX_ON 0x0001
252#define HostCmd_ACT_MAC_TX_ON 0x0002
253#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
254#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
255#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
256#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700257#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
258
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700259#define HostCmd_BSS_MODE_IBSS 0x0002
260#define HostCmd_BSS_MODE_ANY 0x0003
261
262#define HostCmd_SCAN_RADIO_TYPE_BG 0
263#define HostCmd_SCAN_RADIO_TYPE_A 1
264
265#define HOST_SLEEP_CFG_CANCEL 0xffffffff
266#define HOST_SLEEP_CFG_COND_DEF 0x0000000f
267#define HOST_SLEEP_CFG_GPIO_DEF 0xff
268#define HOST_SLEEP_CFG_GAP_DEF 0
269
270#define CMD_F_HOSTCMD (1 << 0)
271#define CMD_F_CANCELED (1 << 1)
272
273#define HostCmd_CMD_ID_MASK 0x0fff
274
275#define HostCmd_SEQ_NUM_MASK 0x00ff
276
277#define HostCmd_BSS_NUM_MASK 0x0f00
278
279#define HostCmd_BSS_TYPE_MASK 0xf000
280
281#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
282 (((seq) & 0x00ff) | \
283 (((num) & 0x000f) << 8)) | \
284 (((type) & 0x000f) << 12); }
285
286#define HostCmd_GET_SEQ_NO(seq) \
287 ((seq) & HostCmd_SEQ_NUM_MASK)
288
289#define HostCmd_GET_BSS_NO(seq) \
290 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
291
292#define HostCmd_GET_BSS_TYPE(seq) \
293 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
294
295#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
296#define EVENT_LINK_LOST 0x00000003
297#define EVENT_LINK_SENSED 0x00000004
298#define EVENT_MIB_CHANGED 0x00000006
299#define EVENT_INIT_DONE 0x00000007
300#define EVENT_DEAUTHENTICATED 0x00000008
301#define EVENT_DISASSOCIATED 0x00000009
302#define EVENT_PS_AWAKE 0x0000000a
303#define EVENT_PS_SLEEP 0x0000000b
304#define EVENT_MIC_ERR_MULTICAST 0x0000000d
305#define EVENT_MIC_ERR_UNICAST 0x0000000e
306#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
307#define EVENT_ADHOC_BCN_LOST 0x00000011
308
309#define EVENT_WMM_STATUS_CHANGE 0x00000017
310#define EVENT_BG_SCAN_REPORT 0x00000018
311#define EVENT_RSSI_LOW 0x00000019
312#define EVENT_SNR_LOW 0x0000001a
313#define EVENT_MAX_FAIL 0x0000001b
314#define EVENT_RSSI_HIGH 0x0000001c
315#define EVENT_SNR_HIGH 0x0000001d
316#define EVENT_IBSS_COALESCED 0x0000001e
317#define EVENT_DATA_RSSI_LOW 0x00000024
318#define EVENT_DATA_SNR_LOW 0x00000025
319#define EVENT_DATA_RSSI_HIGH 0x00000026
320#define EVENT_DATA_SNR_HIGH 0x00000027
321#define EVENT_LINK_QUALITY 0x00000028
322#define EVENT_PORT_RELEASE 0x0000002b
323#define EVENT_PRE_BEACON_LOST 0x00000031
324#define EVENT_ADDBA 0x00000033
325#define EVENT_DELBA 0x00000034
326#define EVENT_BA_STREAM_TIEMOUT 0x00000037
327#define EVENT_AMSDU_AGGR_CTRL 0x00000042
328#define EVENT_WEP_ICV_ERR 0x00000046
329#define EVENT_HS_ACT_REQ 0x00000047
330#define EVENT_BW_CHANGE 0x00000048
331
332#define EVENT_HOSTWAKE_STAIE 0x0000004d
333
334#define EVENT_ID_MASK 0xffff
335#define BSS_NUM_MASK 0xf
336
337#define EVENT_GET_BSS_NUM(event_cause) \
338 (((event_cause) >> 16) & BSS_NUM_MASK)
339
340#define EVENT_GET_BSS_TYPE(event_cause) \
341 (((event_cause) >> 24) & 0x00ff)
342
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700343struct mwifiex_ie_types_header {
344 __le16 type;
345 __le16 len;
346} __packed;
347
348struct mwifiex_ie_types_data {
349 struct mwifiex_ie_types_header header;
350 u8 data[1];
351} __packed;
352
353#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
354#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
355
356struct txpd {
357 u8 bss_type;
358 u8 bss_num;
359 __le16 tx_pkt_length;
360 __le16 tx_pkt_offset;
361 __le16 tx_pkt_type;
362 __le32 tx_control;
363 u8 priority;
364 u8 flags;
365 u8 pkt_delay_2ms;
366 u8 reserved1;
367} __packed;
368
369struct rxpd {
370 u8 bss_type;
371 u8 bss_num;
372 u16 rx_pkt_length;
373 u16 rx_pkt_offset;
374 u16 rx_pkt_type;
375 u16 seq_num;
376 u8 priority;
377 u8 rx_rate;
378 s8 snr;
379 s8 nf;
380 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
381 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
382 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
383 u8 ht_info;
384 u8 reserved;
385} __packed;
386
387enum mwifiex_chan_scan_mode_bitmasks {
388 MWIFIEX_PASSIVE_SCAN = BIT(0),
389 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
390};
391
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392struct mwifiex_chan_scan_param_set {
393 u8 radio_type;
394 u8 chan_number;
395 u8 chan_scan_mode_bitmap;
396 __le16 min_scan_time;
397 __le16 max_scan_time;
398} __packed;
399
400struct mwifiex_ie_types_chan_list_param_set {
401 struct mwifiex_ie_types_header header;
402 struct mwifiex_chan_scan_param_set chan_scan_param[1];
403} __packed;
404
405struct chan_band_param_set {
406 u8 radio_type;
407 u8 chan_number;
408};
409
410struct mwifiex_ie_types_chan_band_list_param_set {
411 struct mwifiex_ie_types_header header;
412 struct chan_band_param_set chan_band_param[1];
413} __packed;
414
415struct mwifiex_ie_types_rates_param_set {
416 struct mwifiex_ie_types_header header;
417 u8 rates[1];
418} __packed;
419
420struct mwifiex_ie_types_ssid_param_set {
421 struct mwifiex_ie_types_header header;
422 u8 ssid[1];
423} __packed;
424
425struct mwifiex_ie_types_num_probes {
426 struct mwifiex_ie_types_header header;
427 __le16 num_probes;
428} __packed;
429
430struct mwifiex_ie_types_wildcard_ssid_params {
431 struct mwifiex_ie_types_header header;
432 u8 max_ssid_length;
433 u8 ssid[1];
434} __packed;
435
436#define TSF_DATA_SIZE 8
437struct mwifiex_ie_types_tsf_timestamp {
438 struct mwifiex_ie_types_header header;
439 u8 tsf_data[1];
440} __packed;
441
442struct mwifiex_cf_param_set {
443 u8 cfp_cnt;
444 u8 cfp_period;
445 u16 cfp_max_duration;
446 u16 cfp_duration_remaining;
447} __packed;
448
449struct mwifiex_ibss_param_set {
450 u16 atim_window;
451} __packed;
452
453struct mwifiex_ie_types_ss_param_set {
454 struct mwifiex_ie_types_header header;
455 union {
456 struct mwifiex_cf_param_set cf_param_set[1];
457 struct mwifiex_ibss_param_set ibss_param_set[1];
458 } cf_ibss;
459} __packed;
460
461struct mwifiex_fh_param_set {
462 u16 dwell_time;
463 u8 hop_set;
464 u8 hop_pattern;
465 u8 hop_index;
466} __packed;
467
468struct mwifiex_ds_param_set {
469 u8 current_chan;
470} __packed;
471
472struct mwifiex_ie_types_phy_param_set {
473 struct mwifiex_ie_types_header header;
474 union {
475 struct mwifiex_fh_param_set fh_param_set[1];
476 struct mwifiex_ds_param_set ds_param_set[1];
477 } fh_ds;
478} __packed;
479
480struct mwifiex_ie_types_auth_type {
481 struct mwifiex_ie_types_header header;
482 __le16 auth_type;
483} __packed;
484
485struct mwifiex_ie_types_vendor_param_set {
486 struct mwifiex_ie_types_header header;
487 u8 ie[MWIFIEX_MAX_VSIE_LEN];
488};
489
490struct mwifiex_ie_types_rsn_param_set {
491 struct mwifiex_ie_types_header header;
492 u8 rsn_ie[1];
493} __packed;
494
495#define KEYPARAMSET_FIXED_LEN 6
496
497struct mwifiex_ie_type_key_param_set {
498 __le16 type;
499 __le16 length;
500 __le16 key_type_id;
501 __le16 key_info;
502 __le16 key_len;
503 u8 key[50];
504} __packed;
505
506struct host_cmd_ds_802_11_key_material {
507 __le16 action;
508 struct mwifiex_ie_type_key_param_set key_param_set;
509} __packed;
510
511struct host_cmd_ds_gen {
512 u16 command;
513 u16 size;
514 u16 seq_num;
515 u16 result;
516};
517
518#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
519
520enum sleep_resp_ctrl {
521 RESP_NOT_NEEDED = 0,
522 RESP_NEEDED,
523};
524
525struct mwifiex_ps_param {
526 __le16 null_pkt_interval;
527 __le16 multiple_dtims;
528 __le16 bcn_miss_timeout;
529 __le16 local_listen_interval;
530 __le16 adhoc_wake_period;
531 __le16 mode;
532 __le16 delay_to_ps;
533};
534
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535#define BITMAP_AUTO_DS 0x01
536#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700537
538struct mwifiex_ie_types_auto_ds_param {
539 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700540 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700541} __packed;
542
543struct mwifiex_ie_types_ps_param {
544 struct mwifiex_ie_types_header header;
545 struct mwifiex_ps_param param;
546} __packed;
547
548struct host_cmd_ds_802_11_ps_mode_enh {
549 __le16 action;
550
551 union {
552 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700553 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700554 } params;
555} __packed;
556
557struct host_cmd_ds_get_hw_spec {
558 __le16 hw_if_version;
559 __le16 version;
560 __le16 reserved;
561 __le16 num_of_mcast_adr;
562 u8 permanent_addr[ETH_ALEN];
563 __le16 region_code;
564 __le16 number_of_antenna;
565 __le32 fw_release_number;
566 __le32 reserved_1;
567 __le32 reserved_2;
568 __le32 reserved_3;
569 __le32 fw_cap_info;
570 __le32 dot_11n_dev_cap;
571 u8 dev_mcs_support;
572 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
573 __le16 reserved_4;
574} __packed;
575
576struct host_cmd_ds_802_11_rssi_info {
577 __le16 action;
578 __le16 ndata;
579 __le16 nbcn;
580 __le16 reserved[9];
581 long long reserved_1;
582};
583
584struct host_cmd_ds_802_11_rssi_info_rsp {
585 __le16 action;
586 __le16 ndata;
587 __le16 nbcn;
588 __le16 data_rssi_last;
589 __le16 data_nf_last;
590 __le16 data_rssi_avg;
591 __le16 data_nf_avg;
592 __le16 bcn_rssi_last;
593 __le16 bcn_nf_last;
594 __le16 bcn_rssi_avg;
595 __le16 bcn_nf_avg;
596 long long tsf_bcn;
597};
598
599struct host_cmd_ds_802_11_mac_address {
600 __le16 action;
601 u8 mac_addr[ETH_ALEN];
602};
603
604struct host_cmd_ds_mac_control {
605 __le16 action;
606 __le16 reserved;
607};
608
609struct host_cmd_ds_mac_multicast_adr {
610 __le16 action;
611 __le16 num_of_adrs;
612 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
613} __packed;
614
615struct host_cmd_ds_802_11_deauthenticate {
616 u8 mac_addr[ETH_ALEN];
617 __le16 reason_code;
618} __packed;
619
620struct host_cmd_ds_802_11_associate {
621 u8 peer_sta_addr[ETH_ALEN];
622 __le16 cap_info_bitmap;
623 __le16 listen_interval;
624 __le16 beacon_period;
625 u8 dtim_period;
626} __packed;
627
628struct ieee_types_assoc_rsp {
629 __le16 cap_info_bitmap;
630 __le16 status_code;
631 __le16 a_id;
632 u8 ie_buffer[1];
633} __packed;
634
635struct host_cmd_ds_802_11_associate_rsp {
636 struct ieee_types_assoc_rsp assoc_rsp;
637} __packed;
638
639struct ieee_types_cf_param_set {
640 u8 element_id;
641 u8 len;
642 u8 cfp_cnt;
643 u8 cfp_period;
644 u16 cfp_max_duration;
645 u16 cfp_duration_remaining;
646} __packed;
647
648struct ieee_types_ibss_param_set {
649 u8 element_id;
650 u8 len;
651 __le16 atim_window;
652} __packed;
653
654union ieee_types_ss_param_set {
655 struct ieee_types_cf_param_set cf_param_set;
656 struct ieee_types_ibss_param_set ibss_param_set;
657} __packed;
658
659struct ieee_types_fh_param_set {
660 u8 element_id;
661 u8 len;
662 __le16 dwell_time;
663 u8 hop_set;
664 u8 hop_pattern;
665 u8 hop_index;
666} __packed;
667
668struct ieee_types_ds_param_set {
669 u8 element_id;
670 u8 len;
671 u8 current_chan;
672} __packed;
673
674union ieee_types_phy_param_set {
675 struct ieee_types_fh_param_set fh_param_set;
676 struct ieee_types_ds_param_set ds_param_set;
677} __packed;
678
679struct host_cmd_ds_802_11_ad_hoc_start {
680 u8 ssid[IEEE80211_MAX_SSID_LEN];
681 u8 bss_mode;
682 __le16 beacon_period;
683 u8 dtim_period;
684 union ieee_types_ss_param_set ss_param_set;
685 union ieee_types_phy_param_set phy_param_set;
686 u16 reserved1;
687 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800688 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700689} __packed;
690
691struct host_cmd_ds_802_11_ad_hoc_result {
692 u8 pad[3];
693 u8 bssid[ETH_ALEN];
694} __packed;
695
696struct adhoc_bss_desc {
697 u8 bssid[ETH_ALEN];
698 u8 ssid[IEEE80211_MAX_SSID_LEN];
699 u8 bss_mode;
700 __le16 beacon_period;
701 u8 dtim_period;
702 u8 time_stamp[8];
703 u8 local_time[8];
704 union ieee_types_phy_param_set phy_param_set;
705 union ieee_types_ss_param_set ss_param_set;
706 __le16 cap_info_bitmap;
707 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
708
709 /*
710 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
711 * It is used in the Adhoc join command and will cause a
712 * binary layout mismatch with the firmware
713 */
714} __packed;
715
716struct host_cmd_ds_802_11_ad_hoc_join {
717 struct adhoc_bss_desc bss_descriptor;
718 u16 reserved1;
719 u16 reserved2;
720} __packed;
721
722struct host_cmd_ds_802_11_get_log {
723 __le32 mcast_tx_frame;
724 __le32 failed;
725 __le32 retry;
726 __le32 multi_retry;
727 __le32 frame_dup;
728 __le32 rts_success;
729 __le32 rts_failure;
730 __le32 ack_failure;
731 __le32 rx_frag;
732 __le32 mcast_rx_frame;
733 __le32 fcs_error;
734 __le32 tx_frame;
735 __le32 reserved;
736 __le32 wep_icv_err_cnt[4];
737};
738
739struct host_cmd_ds_tx_rate_query {
740 u8 tx_rate;
741 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
742 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
743 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
744 u8 ht_info;
745} __packed;
746
747enum Host_Sleep_Action {
748 HS_CONFIGURE = 0x0001,
749 HS_ACTIVATE = 0x0002,
750};
751
752struct mwifiex_hs_config_param {
753 __le32 conditions;
754 u8 gpio;
755 u8 gap;
756} __packed;
757
758struct hs_activate_param {
759 u16 resp_ctrl;
760} __packed;
761
762struct host_cmd_ds_802_11_hs_cfg_enh {
763 __le16 action;
764
765 union {
766 struct mwifiex_hs_config_param hs_config;
767 struct hs_activate_param hs_activate;
768 } params;
769} __packed;
770
771enum SNMP_MIB_INDEX {
772 OP_RATE_SET_I = 1,
773 DTIM_PERIOD_I = 3,
774 RTS_THRESH_I = 5,
775 SHORT_RETRY_LIM_I = 6,
776 LONG_RETRY_LIM_I = 7,
777 FRAG_THRESH_I = 8,
778 DOT11D_I = 9,
779};
780
781#define MAX_SNMP_BUF_SIZE 128
782
783struct host_cmd_ds_802_11_snmp_mib {
784 __le16 query_type;
785 __le16 oid;
786 __le16 buf_size;
787 u8 value[1];
788} __packed;
789
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700790struct mwifiex_rate_scope {
791 __le16 type;
792 __le16 length;
793 __le16 hr_dsss_rate_bitmap;
794 __le16 ofdm_rate_bitmap;
795 __le16 ht_mcs_rate_bitmap[8];
796} __packed;
797
798struct mwifiex_rate_drop_pattern {
799 __le16 type;
800 __le16 length;
801 __le32 rate_drop_mode;
802} __packed;
803
804struct host_cmd_ds_tx_rate_cfg {
805 __le16 action;
806 __le16 cfg_index;
807} __packed;
808
809struct mwifiex_power_group {
810 u8 modulation_class;
811 u8 first_rate_code;
812 u8 last_rate_code;
813 s8 power_step;
814 s8 power_min;
815 s8 power_max;
816 u8 ht_bandwidth;
817 u8 reserved;
818} __packed;
819
820struct mwifiex_types_power_group {
821 u16 type;
822 u16 length;
823} __packed;
824
825struct host_cmd_ds_txpwr_cfg {
826 __le16 action;
827 __le16 cfg_index;
828 __le32 mode;
829} __packed;
830
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700831struct mwifiex_bcn_param {
832 u8 bssid[ETH_ALEN];
833 u8 rssi;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -0700834 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700835 __le16 beacon_period;
836 __le16 cap_info_bitmap;
837} __packed;
838
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700839#define MWIFIEX_USER_SCAN_CHAN_MAX 50
840
841#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
842
843struct mwifiex_scan_cmd_config {
844 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -0700845 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700846 */
847 u8 bss_mode;
848
849 /* Specific BSSID used to filter scan results in the firmware */
850 u8 specific_bssid[ETH_ALEN];
851
852 /* Length of TLVs sent in command starting at tlvBuffer */
853 u32 tlv_buf_len;
854
855 /*
856 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
857 *
858 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
859 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
860 */
861 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
862 here */
863} __packed;
864
865struct mwifiex_user_scan_chan {
866 u8 chan_number;
867 u8 radio_type;
868 u8 scan_type;
869 u8 reserved;
870 u32 scan_time;
871} __packed;
872
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700873struct mwifiex_user_scan_cfg {
874 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700875 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700876 */
877 u8 bss_mode;
878 /* Configure the number of probe requests for active chan scans */
879 u8 num_probes;
880 u8 reserved;
881 /* BSSID filter sent in the firmware command to limit the results */
882 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800883 /* SSID filter list used in the firmware to limit the scan results */
884 struct cfg80211_ssid *ssid_list;
885 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700886 /* Variable number (fixed maximum) of channels to scan up */
887 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
888} __packed;
889
890struct ie_body {
891 u8 grp_key_oui[4];
892 u8 ptk_cnt[2];
893 u8 ptk_body[4];
894} __packed;
895
896struct host_cmd_ds_802_11_scan {
897 u8 bss_mode;
898 u8 bssid[ETH_ALEN];
899 u8 tlv_buffer[1];
900} __packed;
901
902struct host_cmd_ds_802_11_scan_rsp {
903 __le16 bss_descript_size;
904 u8 number_of_sets;
905 u8 bss_desc_and_tlv_buffer[1];
906} __packed;
907
908struct host_cmd_ds_802_11_bg_scan_query {
909 u8 flush;
910} __packed;
911
912struct host_cmd_ds_802_11_bg_scan_query_rsp {
913 u32 report_condition;
914 struct host_cmd_ds_802_11_scan_rsp scan_resp;
915} __packed;
916
917struct mwifiex_ietypes_domain_param_set {
918 struct mwifiex_ie_types_header header;
919 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
920 struct ieee80211_country_ie_triplet triplet[1];
921} __packed;
922
923struct host_cmd_ds_802_11d_domain_info {
924 __le16 action;
925 struct mwifiex_ietypes_domain_param_set domain;
926} __packed;
927
928struct host_cmd_ds_802_11d_domain_info_rsp {
929 __le16 action;
930 struct mwifiex_ietypes_domain_param_set domain;
931} __packed;
932
933struct host_cmd_ds_11n_addba_req {
934 u8 add_req_result;
935 u8 peer_mac_addr[ETH_ALEN];
936 u8 dialog_token;
937 __le16 block_ack_param_set;
938 __le16 block_ack_tmo;
939 __le16 ssn;
940} __packed;
941
942struct host_cmd_ds_11n_addba_rsp {
943 u8 add_rsp_result;
944 u8 peer_mac_addr[ETH_ALEN];
945 u8 dialog_token;
946 __le16 status_code;
947 __le16 block_ack_param_set;
948 __le16 block_ack_tmo;
949 __le16 ssn;
950} __packed;
951
952struct host_cmd_ds_11n_delba {
953 u8 del_result;
954 u8 peer_mac_addr[ETH_ALEN];
955 __le16 del_ba_param_set;
956 __le16 reason_code;
957 u8 reserved;
958} __packed;
959
960struct host_cmd_ds_11n_batimeout {
961 u8 tid;
962 u8 peer_mac_addr[ETH_ALEN];
963 u8 origninator;
964} __packed;
965
966struct host_cmd_ds_11n_cfg {
967 __le16 action;
968 __le16 ht_tx_cap;
969 __le16 ht_tx_info;
970} __packed;
971
972struct host_cmd_ds_txbuf_cfg {
973 __le16 action;
974 __le16 buff_size;
975 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
976 __le16 reserved3;
977} __packed;
978
979struct host_cmd_ds_amsdu_aggr_ctrl {
980 __le16 action;
981 __le16 enable;
982 __le16 curr_buf_size;
983} __packed;
984
985struct mwifiex_ie_types_wmm_param_set {
986 struct mwifiex_ie_types_header header;
987 u8 wmm_ie[1];
988};
989
990struct mwifiex_ie_types_wmm_queue_status {
991 struct mwifiex_ie_types_header header;
992 u8 queue_index;
993 u8 disabled;
994 u16 medium_time;
995 u8 flow_required;
996 u8 flow_created;
997 u32 reserved;
998};
999
1000struct ieee_types_vendor_header {
1001 u8 element_id;
1002 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001003 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001004 u8 oui_subtype;
1005 u8 version;
1006} __packed;
1007
1008struct ieee_types_wmm_ac_parameters {
1009 u8 aci_aifsn_bitmap;
1010 u8 ecw_bitmap;
1011 __le16 tx_op_limit;
1012} __packed;
1013
1014struct ieee_types_wmm_parameter {
1015 /*
1016 * WMM Parameter IE - Vendor Specific Header:
1017 * element_id [221/0xdd]
1018 * Len [24]
1019 * Oui [00:50:f2]
1020 * OuiType [2]
1021 * OuiSubType [1]
1022 * Version [1]
1023 */
1024 struct ieee_types_vendor_header vend_hdr;
1025 u8 qos_info_bitmap;
1026 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001027 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001028} __packed;
1029
1030struct ieee_types_wmm_info {
1031
1032 /*
1033 * WMM Info IE - Vendor Specific Header:
1034 * element_id [221/0xdd]
1035 * Len [7]
1036 * Oui [00:50:f2]
1037 * OuiType [2]
1038 * OuiSubType [0]
1039 * Version [1]
1040 */
1041 struct ieee_types_vendor_header vend_hdr;
1042
1043 u8 qos_info_bitmap;
1044} __packed;
1045
1046struct host_cmd_ds_wmm_get_status {
1047 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001048 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001049 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1050} __packed;
1051
1052struct mwifiex_wmm_ac_status {
1053 u8 disabled;
1054 u8 flow_required;
1055 u8 flow_created;
1056};
1057
1058struct mwifiex_ie_types_htcap {
1059 struct mwifiex_ie_types_header header;
1060 struct ieee80211_ht_cap ht_cap;
1061} __packed;
1062
1063struct mwifiex_ie_types_htinfo {
1064 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001065 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001066} __packed;
1067
1068struct mwifiex_ie_types_2040bssco {
1069 struct mwifiex_ie_types_header header;
1070 u8 bss_co_2040;
1071} __packed;
1072
1073struct mwifiex_ie_types_extcap {
1074 struct mwifiex_ie_types_header header;
1075 u8 ext_cap;
1076} __packed;
1077
1078struct host_cmd_ds_mac_reg_access {
1079 __le16 action;
1080 __le16 offset;
1081 __le32 value;
1082} __packed;
1083
1084struct host_cmd_ds_bbp_reg_access {
1085 __le16 action;
1086 __le16 offset;
1087 u8 value;
1088 u8 reserved[3];
1089} __packed;
1090
1091struct host_cmd_ds_rf_reg_access {
1092 __le16 action;
1093 __le16 offset;
1094 u8 value;
1095 u8 reserved[3];
1096} __packed;
1097
1098struct host_cmd_ds_pmic_reg_access {
1099 __le16 action;
1100 __le16 offset;
1101 u8 value;
1102 u8 reserved[3];
1103} __packed;
1104
1105struct host_cmd_ds_802_11_eeprom_access {
1106 __le16 action;
1107
1108 __le16 offset;
1109 __le16 byte_count;
1110 u8 value;
1111} __packed;
1112
Avinash Patil75edd2c2012-05-08 18:30:18 -07001113struct host_cmd_tlv {
1114 __le16 type;
1115 __le16 len;
1116} __packed;
1117
Avinash Patil4db16a12012-05-08 18:30:20 -07001118struct host_cmd_ds_sys_config {
1119 __le16 action;
1120 u8 tlv[0];
1121};
1122
Avinash Patil9b930ea2012-05-08 18:30:23 -07001123struct host_cmd_tlv_frag_threshold {
1124 struct host_cmd_tlv tlv;
1125 __le16 frag_thr;
1126} __packed;
1127
1128struct host_cmd_tlv_rts_threshold {
1129 struct host_cmd_tlv tlv;
1130 __le16 rts_thr;
1131} __packed;
1132
1133struct host_cmd_tlv_retry_limit {
1134 struct host_cmd_tlv tlv;
1135 u8 limit;
1136} __packed;
1137
Avinash Patil75edd2c2012-05-08 18:30:18 -07001138struct host_cmd_tlv_mac_addr {
1139 struct host_cmd_tlv tlv;
1140 u8 mac_addr[ETH_ALEN];
1141} __packed;
1142
Avinash Patil4db16a12012-05-08 18:30:20 -07001143struct host_cmd_tlv_channel_band {
1144 struct host_cmd_tlv tlv;
1145 u8 band_config;
1146 u8 channel;
1147} __packed;
1148
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001149struct host_cmd_ds_802_11_rf_channel {
1150 __le16 action;
1151 __le16 current_channel;
1152 __le16 rf_type;
1153 __le16 reserved;
1154 u8 reserved_1[32];
1155} __packed;
1156
1157struct host_cmd_ds_version_ext {
1158 u8 version_str_sel;
1159 char version_str[128];
1160} __packed;
1161
1162struct host_cmd_ds_802_11_ibss_status {
1163 __le16 action;
1164 __le16 enable;
1165 u8 bssid[ETH_ALEN];
1166 __le16 beacon_interval;
1167 __le16 atim_window;
1168 __le16 use_g_rate_protect;
1169} __packed;
1170
1171#define CONNECTION_TYPE_INFRA 0
1172#define CONNECTION_TYPE_ADHOC 1
1173
1174struct host_cmd_ds_set_bss_mode {
1175 u8 con_type;
1176} __packed;
1177
Amitkumar Karward930fae2011-10-11 17:41:21 -07001178struct host_cmd_ds_pcie_details {
1179 /* TX buffer descriptor ring address */
1180 u32 txbd_addr_lo;
1181 u32 txbd_addr_hi;
1182 /* TX buffer descriptor ring count */
1183 u32 txbd_count;
1184
1185 /* RX buffer descriptor ring address */
1186 u32 rxbd_addr_lo;
1187 u32 rxbd_addr_hi;
1188 /* RX buffer descriptor ring count */
1189 u32 rxbd_count;
1190
1191 /* Event buffer descriptor ring address */
1192 u32 evtbd_addr_lo;
1193 u32 evtbd_addr_hi;
1194 /* Event buffer descriptor ring count */
1195 u32 evtbd_count;
1196
1197 /* Sleep cookie buffer physical address */
1198 u32 sleep_cookie_addr_lo;
1199 u32 sleep_cookie_addr_hi;
1200} __packed;
1201
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001202struct mwifiex_ie_types_rssi_threshold {
1203 struct mwifiex_ie_types_header header;
1204 u8 abs_value;
1205 u8 evt_freq;
1206} __packed;
1207
1208struct host_cmd_ds_802_11_subsc_evt {
1209 __le16 action;
1210 __le16 events;
1211} __packed;
1212
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001213struct host_cmd_ds_command {
1214 __le16 command;
1215 __le16 size;
1216 __le16 seq_num;
1217 __le16 result;
1218 union {
1219 struct host_cmd_ds_get_hw_spec hw_spec;
1220 struct host_cmd_ds_mac_control mac_ctrl;
1221 struct host_cmd_ds_802_11_mac_address mac_addr;
1222 struct host_cmd_ds_mac_multicast_adr mc_addr;
1223 struct host_cmd_ds_802_11_get_log get_log;
1224 struct host_cmd_ds_802_11_rssi_info rssi_info;
1225 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1226 struct host_cmd_ds_802_11_snmp_mib smib;
1227 struct host_cmd_ds_802_11_rf_channel rf_channel;
1228 struct host_cmd_ds_tx_rate_query tx_rate;
1229 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1230 struct host_cmd_ds_txpwr_cfg txp_cfg;
1231 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1232 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1233 struct host_cmd_ds_802_11_scan scan;
1234 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1235 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1236 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1237 struct host_cmd_ds_802_11_associate associate;
1238 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1239 struct host_cmd_ds_802_11_deauthenticate deauth;
1240 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1241 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1242 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1243 struct host_cmd_ds_802_11d_domain_info domain_info;
1244 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1245 struct host_cmd_ds_11n_addba_req add_ba_req;
1246 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1247 struct host_cmd_ds_11n_delba del_ba;
1248 struct host_cmd_ds_txbuf_cfg tx_buf;
1249 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1250 struct host_cmd_ds_11n_cfg htcfg;
1251 struct host_cmd_ds_wmm_get_status get_wmm_status;
1252 struct host_cmd_ds_802_11_key_material key_material;
1253 struct host_cmd_ds_version_ext verext;
1254 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1255 struct host_cmd_ds_mac_reg_access mac_reg;
1256 struct host_cmd_ds_bbp_reg_access bbp_reg;
1257 struct host_cmd_ds_rf_reg_access rf_reg;
1258 struct host_cmd_ds_pmic_reg_access pmic_reg;
1259 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001260 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001261 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001262 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001263 struct host_cmd_ds_sys_config uap_sys_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001264 } params;
1265} __packed;
1266
1267struct mwifiex_opt_sleep_confirm {
1268 __le16 command;
1269 __le16 size;
1270 __le16 seq_num;
1271 __le16 result;
1272 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001273 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001274} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001275#endif /* !_MWIFIEX_FW_H_ */