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