blob: b485dc1ae5ebc42c5606e37723189d20e7d98b16 [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];
Amitkumar Karwara6efc5b2013-12-02 23:17:49 -080033 __be16 snap_type;
Bing Zhao5e6e3a92011-03-21 18:00:50 -070034};
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
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -080052#define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN | \
Bing Zhaof25b1432014-02-07 16:21:01 -080053 BAND_AN | BAND_AAC)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070054
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -080055#define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11) | \
Bing Zhaof25b1432014-02-07 16:21:01 -080056 BIT(13))
Bing Zhao5e6e3a92011-03-21 18:00:50 -070057#define IS_SUPPORT_MULTI_BANDS(adapter) \
58 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -080059
Bing Zhaof25b1432014-02-07 16:21:01 -080060/* bit 13: 11ac BAND_AAC
61 * bit 12: reserved for lab testing, will be reused for BAND_AN
62 * bit 11: 11n BAND_GN
63 * bit 10: 11a BAND_A
64 * bit 9: 11g BAND_G
65 * bit 8: 11b BAND_B
66 * Map these bits to band capability by right shifting 8 bits.
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -080067 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -070068#define GET_FW_DEFAULT_BANDS(adapter) \
Bing Zhaof25b1432014-02-07 16:21:01 -080069 (((adapter->fw_cap_info & 0x2f00) >> 8) & \
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -080070 ALL_802_11_BANDS)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070071
Bing Zhao5e6e3a92011-03-21 18:00:50 -070072#define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
73
74#define KEY_INFO_ENABLED 0x01
75enum KEY_TYPE_ID {
76 KEY_TYPE_ID_WEP = 0,
77 KEY_TYPE_ID_TKIP,
78 KEY_TYPE_ID_AES,
79 KEY_TYPE_ID_WAPI,
Ying Luob877f4c2012-08-03 18:06:14 -070080 KEY_TYPE_ID_AES_CMAC,
Bing Zhao5e6e3a92011-03-21 18:00:50 -070081};
Avinash Patile57f1732014-02-07 16:32:35 -080082
83#define WPA_PN_SIZE 8
84#define KEY_PARAMS_FIXED_LEN 10
85#define KEY_INDEX_MASK 0xf
86#define FW_KEY_API_VER_MAJOR_V2 2
87
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -070088#define KEY_MCAST BIT(0)
89#define KEY_UNICAST BIT(1)
90#define KEY_ENABLED BIT(2)
Avinash Patile57f1732014-02-07 16:32:35 -080091#define KEY_DEFAULT BIT(3)
92#define KEY_TX_KEY BIT(4)
93#define KEY_RX_KEY BIT(5)
Ying Luob877f4c2012-08-03 18:06:14 -070094#define KEY_IGTK BIT(10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070095
Avinash Patile57f1732014-02-07 16:32:35 -080096#define WAPI_KEY_LEN (WLAN_KEY_LEN_SMS4 + PN_LEN + 2)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070097
Bing Zhao5e6e3a92011-03-21 18:00:50 -070098#define MAX_POLL_TRIES 100
Bing Zhao5e6e3a92011-03-21 18:00:50 -070099#define MAX_FIRMWARE_POLL_TRIES 100
100
Amitkumar Karward930fae2011-10-11 17:41:21 -0700101#define FIRMWARE_READY_SDIO 0xfedc
102#define FIRMWARE_READY_PCIE 0xfedcba00
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700103
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700104enum mwifiex_usb_ep {
105 MWIFIEX_USB_EP_CMD_EVENT = 1,
106 MWIFIEX_USB_EP_DATA = 2,
107};
108
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700109enum MWIFIEX_802_11_PRIVACY_FILTER {
110 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
111 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
112};
113
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700114#define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
Stone Piao2dbaf752012-09-25 20:23:35 -0700115#define CAL_RSSI(SNR, NF) ((s16)((s16)(SNR)+(s16)(NF)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700116
Avinash Patile76268d2012-05-08 18:30:27 -0700117#define UAP_BSS_PARAMS_I 0
Avinash Patilede98bf2012-05-08 18:30:28 -0700118#define UAP_CUSTOM_IE_I 1
119#define MWIFIEX_AUTO_IDX_MASK 0xffff
120#define MWIFIEX_DELETE_MASK 0x0000
Avinash Patilf31acab2012-05-08 18:30:29 -0700121#define MGMT_MASK_ASSOC_REQ 0x01
122#define MGMT_MASK_REASSOC_REQ 0x04
123#define MGMT_MASK_ASSOC_RESP 0x02
124#define MGMT_MASK_REASSOC_RESP 0x08
125#define MGMT_MASK_PROBE_REQ 0x10
126#define MGMT_MASK_PROBE_RESP 0x20
127#define MGMT_MASK_BEACON 0x100
Avinash Patile76268d2012-05-08 18:30:27 -0700128
Avinash Patil12190c52012-05-08 18:30:24 -0700129#define TLV_TYPE_UAP_SSID 0x0000
Avinash Patila3c2c4f2012-08-27 20:32:53 -0700130#define TLV_TYPE_UAP_RATES 0x0001
Avinash Patil12190c52012-05-08 18:30:24 -0700131
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700132#define PROPRIETARY_TLV_BASE_ID 0x0100
133#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
134#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
135#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700136#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700137#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
139#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
140#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700141#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700142#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700143#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800144#define TLV_TYPE_BSSID (PROPRIETARY_TLV_BASE_ID + 35)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700145#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700146#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
147#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil605b73a2012-05-16 21:24:55 -0700148#define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700149#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700150#define TLV_TYPE_UAP_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 57)
Avinash Patil96893532012-06-15 12:21:55 -0700151#define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700152#define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
153#define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
154#define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700155#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700156#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
157#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
158#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800159#define TLV_TYPE_BSS_SCAN_RSP (PROPRIETARY_TLV_BASE_ID + 86)
160#define TLV_TYPE_BSS_SCAN_INFO (PROPRIETARY_TLV_BASE_ID + 87)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700161#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700162#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Avinash Patile5686342012-05-08 18:30:25 -0700163#define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
Avinash Patil13d7ba782012-04-09 20:06:56 -0700164#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700165#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
166#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700167#define TLV_TYPE_UAP_PS_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 123)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700168#define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
169#define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -0700170#define TLV_TYPE_COALESCE_RULE (PROPRIETARY_TLV_BASE_ID + 154)
Avinash Patile57f1732014-02-07 16:32:35 -0800171#define TLV_TYPE_KEY_PARAM_V2 (PROPRIETARY_TLV_BASE_ID + 156)
Avinash Patil7f445d02014-02-07 16:30:42 -0800172#define TLV_TYPE_FW_API_REV (PROPRIETARY_TLV_BASE_ID + 199)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700173
174#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
175
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700176#define SSN_MASK 0xfff0
177
178#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700179#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700180
181#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
182
183#define BA_STREAM_NOT_ALLOWED 0xff
184
185#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700186 priv->adapter->config_bands & BAND_AN) && \
187 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700188#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
189 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
190
191#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
192#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700193
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700194#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Avinash Patilb23bce22014-02-07 16:27:32 -0800195#define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14))
Marc Yang6d2bd912011-03-25 19:47:02 -0700196
Avinash Patil22281252012-06-15 12:21:53 -0700197#define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
198 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
199 IEEE80211_HT_CAP_SM_PS)
200
Amitkumar Karwar645097c2014-02-07 16:27:26 -0800201#define MWIFIEX_DEF_11N_TX_BF_CAP 0x09E1E008
202
Avinash Patil22281252012-06-15 12:21:53 -0700203#define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
204
Maithili Hinge474a41e2014-03-18 22:24:10 -0700205#define GET_RXSTBC(x) (x & IEEE80211_HT_CAP_RX_STBC)
206#define MWIFIEX_RX_STBC1 0x0100
207#define MWIFIEX_RX_STBC12 0x0200
208#define MWIFIEX_RX_STBC123 0x0300
209
Marc Yang6d2bd912011-03-25 19:47:02 -0700210/* dev_cap bitmap
211 * BIT
212 * 0-16 reserved
213 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
214 * 18-22 reserved
215 * 23 IEEE80211_HT_CAP_SGI_20
216 * 24 IEEE80211_HT_CAP_SGI_40
217 * 25 IEEE80211_HT_CAP_TX_STBC
218 * 26 IEEE80211_HT_CAP_RX_STBC
219 * 27-28 reserved
220 * 29 IEEE80211_HT_CAP_GRN_FLD
221 * 30-31 reserved
222 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700223#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700224#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
225#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
226#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
227#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
228#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
Avinash Patildd0d83c2012-11-27 12:09:20 -0800229#define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
230#define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
Amitkumar Karwar645097c2014-02-07 16:27:26 -0800231#define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30))
Marc Yang6d2bd912011-03-25 19:47:02 -0700232
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700233/* httxcfg bitmap
234 * 0 reserved
235 * 1 20/40 Mhz enable(1)/disable(0)
236 * 2-3 reserved
237 * 4 green field enable(1)/disable(0)
238 * 5 short GI in 20 Mhz enable(1)/disable(0)
239 * 6 short GI in 40 Mhz enable(1)/disable(0)
240 * 7-15 reserved
241 */
242#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
243
Amitkumar Karwara5333912014-02-27 19:35:18 -0800244/* 11AC Tx and Rx MCS map for 1x1 mode:
245 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1
246 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams
247 */
248#define MWIFIEX_11AC_MCS_MAP_1X1 0xfffefffe
249
250/* 11AC Tx and Rx MCS map for 2x2 mode:
251 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2
252 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams
253 */
254#define MWIFIEX_11AC_MCS_MAP_2X2 0xfffafffa
255
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700256#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700257#define SETHT_MCS32(x) (x[4] |= 1)
Amitkumar Karwara5333912014-02-27 19:35:18 -0800258#define HT_STREAM_1X1 0x11
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800259#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700260
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700261#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
262
263#define LLC_SNAP_LEN 8
264
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800265/* HW_SPEC fw_cap_info */
266
Bing Zhaof25b1432014-02-07 16:21:01 -0800267#define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13))
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800268
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800269#define GET_VHTCAP_CHWDSET(vht_cap_info) ((vht_cap_info >> 2) & 0x3)
270#define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3)
271#define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \
272 (2 * (nss - 1)))
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800273#define GET_DEVTXMCSMAP(dev_mcs_map) (dev_mcs_map >> 16)
274#define GET_DEVRXMCSMAP(dev_mcs_map) (dev_mcs_map & 0xFFFF)
275
Amitkumar Karwar79d9a542014-02-07 16:27:27 -0800276/* Clear SU Beanformer, MU beanformer, MU beanformee and
277 * sounding dimensions bits
278 */
279#define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \
280 (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \
281 IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \
282 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \
283 IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
284
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700285#define MOD_CLASS_HR_DSSS 0x03
286#define MOD_CLASS_OFDM 0x07
287#define MOD_CLASS_HT 0x08
288#define HT_BW_20 0
289#define HT_BW_40 1
290
Amitkumar Karwarb8876642013-06-18 16:36:58 -0700291#define DFS_CHAN_MOVE_TIME 10000
292
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700293#define HostCmd_CMD_GET_HW_SPEC 0x0003
294#define HostCmd_CMD_802_11_SCAN 0x0006
295#define HostCmd_CMD_802_11_GET_LOG 0x000b
296#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
297#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
298#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
299#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
300#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
301#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
302#define HostCmd_CMD_RF_REG_ACCESS 0x001b
303#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700304#define HostCmd_CMD_RF_TX_PWR 0x001e
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700305#define HostCmd_CMD_RF_ANTENNA 0x0020
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700306#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
307#define HostCmd_CMD_MAC_CONTROL 0x0028
308#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
309#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
310#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
311#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
312#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
313#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
314#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
315#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700316#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700317#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
318#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700319#define HostCmd_CMD_CFG_DATA 0x008f
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700320#define HostCmd_CMD_VERSION_EXT 0x0097
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800321#define HostCmd_CMD_MEF_CFG 0x009a
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700322#define HostCmd_CMD_RSSI_INFO 0x00a4
323#define HostCmd_CMD_FUNC_INIT 0x00a9
324#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patil40d07032012-05-08 18:30:19 -0700325#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
326#define HostCmd_CMD_UAP_BSS_START 0x00b1
327#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Avinash Patil0f9e9b82013-05-17 17:50:23 -0700328#define HostCmd_CMD_UAP_STA_DEAUTH 0x00b5
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700329#define HostCmd_CMD_11N_CFG 0x00cd
330#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
331#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
332#define HostCmd_CMD_11N_DELBA 0x00d0
333#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
334#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
335#define HostCmd_CMD_TXPWR_CFG 0x00d1
336#define HostCmd_CMD_TX_RATE_CFG 0x00d6
337#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
338#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700339#define HostCmd_CMD_P2P_MODE_CFG 0x00eb
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700340#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
341#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700342#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800343#define HostCmd_CMD_802_11_SCAN_EXT 0x0107
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -0700344#define HostCmd_CMD_COALESCE_CFG 0x010a
Stone Piao3cec6872012-09-25 20:23:34 -0700345#define HostCmd_CMD_MGMT_FRAME_REG 0x010c
Stone Piao7feb4c42012-09-25 20:23:36 -0700346#define HostCmd_CMD_REMAIN_ON_CHAN 0x010d
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -0700347#define HostCmd_CMD_11AC_CFG 0x0112
Avinash Patil429d90d2014-02-07 16:27:34 -0800348#define HostCmd_CMD_TDLS_OPER 0x0122
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700349
Avinash Patilf752dcd2012-05-08 18:30:26 -0700350#define PROTOCOL_NO_SECURITY 0x01
351#define PROTOCOL_STATIC_WEP 0x02
352#define PROTOCOL_WPA 0x08
353#define PROTOCOL_WPA2 0x20
354#define PROTOCOL_WPA2_MIXED 0x28
355#define PROTOCOL_EAP 0x40
356#define KEY_MGMT_NONE 0x04
357#define KEY_MGMT_PSK 0x02
358#define KEY_MGMT_EAP 0x01
359#define CIPHER_TKIP 0x04
360#define CIPHER_AES_CCMP 0x08
361#define VALID_CIPHER_BITMAP 0x0c
362
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700363enum ENH_PS_MODES {
364 EN_PS = 1,
365 DIS_PS = 2,
366 EN_AUTO_DS = 3,
367 DIS_AUTO_DS = 4,
368 SLEEP_CONFIRM = 5,
369 GET_PS = 0,
370 EN_AUTO_PS = 0xff,
371 DIS_AUTO_PS = 0xfe,
372};
373
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700374enum P2P_MODES {
375 P2P_MODE_DISABLE = 0,
376 P2P_MODE_DEVICE = 1,
377 P2P_MODE_GO = 2,
378 P2P_MODE_CLIENT = 3,
379};
380
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700381#define HostCmd_RET_BIT 0x8000
382#define HostCmd_ACT_GEN_GET 0x0000
383#define HostCmd_ACT_GEN_SET 0x0001
Stone Piao7feb4c42012-09-25 20:23:36 -0700384#define HostCmd_ACT_GEN_REMOVE 0x0004
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700385#define HostCmd_ACT_BITWISE_SET 0x0002
386#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700387#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700388
389#define HostCmd_ACT_MAC_RX_ON 0x0001
390#define HostCmd_ACT_MAC_TX_ON 0x0002
391#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
392#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
393#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
394#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700395#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
396
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700397#define HostCmd_BSS_MODE_IBSS 0x0002
398#define HostCmd_BSS_MODE_ANY 0x0003
399
400#define HostCmd_SCAN_RADIO_TYPE_BG 0
401#define HostCmd_SCAN_RADIO_TYPE_A 1
402
Amitkumar Karwarcc0b5a62013-03-04 16:27:57 -0800403#define HS_CFG_CANCEL 0xffffffff
404#define HS_CFG_COND_DEF 0x00000000
405#define HS_CFG_GPIO_DEF 0xff
406#define HS_CFG_GAP_DEF 0
Amitkumar Karwar0d7f53e2013-03-04 16:27:58 -0800407#define HS_CFG_COND_BROADCAST_DATA 0x00000001
408#define HS_CFG_COND_UNICAST_DATA 0x00000002
409#define HS_CFG_COND_MAC_EVENT 0x00000004
410#define HS_CFG_COND_MULTICAST_DATA 0x00000008
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700411
Amitkumar Karwar7532c7d2013-01-17 17:41:57 -0800412#define MWIFIEX_TIMEOUT_FOR_AP_RESP 0xfffc
413#define MWIFIEX_STATUS_CODE_AUTH_TIMEOUT 2
414
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700415#define CMD_F_HOSTCMD (1 << 0)
416#define CMD_F_CANCELED (1 << 1)
417
418#define HostCmd_CMD_ID_MASK 0x0fff
419
420#define HostCmd_SEQ_NUM_MASK 0x00ff
421
422#define HostCmd_BSS_NUM_MASK 0x0f00
423
424#define HostCmd_BSS_TYPE_MASK 0xf000
425
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700426#define HostCmd_ACT_SET_RX 0x0001
427#define HostCmd_ACT_SET_TX 0x0002
428#define HostCmd_ACT_SET_BOTH 0x0003
429
430#define RF_ANTENNA_AUTO 0xFFFF
431
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700432#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
433 (((seq) & 0x00ff) | \
434 (((num) & 0x000f) << 8)) | \
435 (((type) & 0x000f) << 12); }
436
437#define HostCmd_GET_SEQ_NO(seq) \
438 ((seq) & HostCmd_SEQ_NUM_MASK)
439
440#define HostCmd_GET_BSS_NO(seq) \
441 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
442
443#define HostCmd_GET_BSS_TYPE(seq) \
444 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
445
446#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
447#define EVENT_LINK_LOST 0x00000003
448#define EVENT_LINK_SENSED 0x00000004
449#define EVENT_MIB_CHANGED 0x00000006
450#define EVENT_INIT_DONE 0x00000007
451#define EVENT_DEAUTHENTICATED 0x00000008
452#define EVENT_DISASSOCIATED 0x00000009
453#define EVENT_PS_AWAKE 0x0000000a
454#define EVENT_PS_SLEEP 0x0000000b
455#define EVENT_MIC_ERR_MULTICAST 0x0000000d
456#define EVENT_MIC_ERR_UNICAST 0x0000000e
457#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
458#define EVENT_ADHOC_BCN_LOST 0x00000011
459
460#define EVENT_WMM_STATUS_CHANGE 0x00000017
461#define EVENT_BG_SCAN_REPORT 0x00000018
462#define EVENT_RSSI_LOW 0x00000019
463#define EVENT_SNR_LOW 0x0000001a
464#define EVENT_MAX_FAIL 0x0000001b
465#define EVENT_RSSI_HIGH 0x0000001c
466#define EVENT_SNR_HIGH 0x0000001d
467#define EVENT_IBSS_COALESCED 0x0000001e
468#define EVENT_DATA_RSSI_LOW 0x00000024
469#define EVENT_DATA_SNR_LOW 0x00000025
470#define EVENT_DATA_RSSI_HIGH 0x00000026
471#define EVENT_DATA_SNR_HIGH 0x00000027
472#define EVENT_LINK_QUALITY 0x00000028
473#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700474#define EVENT_UAP_STA_DEAUTH 0x0000002c
475#define EVENT_UAP_STA_ASSOC 0x0000002d
476#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700477#define EVENT_PRE_BEACON_LOST 0x00000031
478#define EVENT_ADDBA 0x00000033
479#define EVENT_DELBA 0x00000034
480#define EVENT_BA_STREAM_TIEMOUT 0x00000037
481#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700482#define EVENT_UAP_BSS_IDLE 0x00000043
483#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700484#define EVENT_WEP_ICV_ERR 0x00000046
485#define EVENT_HS_ACT_REQ 0x00000047
486#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700487#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700488#define EVENT_HOSTWAKE_STAIE 0x0000004d
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -0700489#define EVENT_CHANNEL_SWITCH_ANN 0x00000050
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800490#define EVENT_EXT_SCAN_REPORT 0x00000058
Stone Piaoeab1c762012-09-25 20:23:37 -0700491#define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700492
493#define EVENT_ID_MASK 0xffff
494#define BSS_NUM_MASK 0xf
495
496#define EVENT_GET_BSS_NUM(event_cause) \
497 (((event_cause) >> 16) & BSS_NUM_MASK)
498
499#define EVENT_GET_BSS_TYPE(event_cause) \
500 (((event_cause) >> 24) & 0x00ff)
501
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800502#define MWIFIEX_MAX_PATTERN_LEN 20
Amitkumar Karwarafd84de42013-08-05 18:51:59 -0700503#define MWIFIEX_MAX_OFFSET_LEN 100
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800504#define STACK_NBYTES 100
505#define TYPE_DNUM 1
506#define TYPE_BYTESEQ 2
507#define MAX_OPERAND 0x40
508#define TYPE_EQ (MAX_OPERAND+1)
509#define TYPE_EQ_DNUM (MAX_OPERAND+2)
510#define TYPE_EQ_BIT (MAX_OPERAND+3)
511#define TYPE_AND (MAX_OPERAND+4)
512#define TYPE_OR (MAX_OPERAND+5)
513#define MEF_MODE_HOST_SLEEP 1
514#define MEF_ACTION_ALLOW_AND_WAKEUP_HOST 3
515#define MWIFIEX_CRITERIA_BROADCAST BIT(0)
516#define MWIFIEX_CRITERIA_UNICAST BIT(1)
517#define MWIFIEX_CRITERIA_MULTICAST BIT(3)
518
Avinash Patil429d90d2014-02-07 16:27:34 -0800519#define ACT_TDLS_DELETE 0x00
520#define ACT_TDLS_CREATE 0x01
521#define ACT_TDLS_CONFIG 0x02
522
Amitkumar Karwar8e17ea22014-03-07 19:41:26 -0800523#define MWIFIEX_FW_V15 15
524
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700525struct mwifiex_ie_types_header {
526 __le16 type;
527 __le16 len;
528} __packed;
529
530struct mwifiex_ie_types_data {
531 struct mwifiex_ie_types_header header;
532 u8 data[1];
533} __packed;
534
535#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
536#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
Avinash Patilb23bce22014-02-07 16:27:32 -0800537#define MWIFIEX_TXPD_FLAGS_TDLS_PACKET 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700538
539struct txpd {
540 u8 bss_type;
541 u8 bss_num;
542 __le16 tx_pkt_length;
543 __le16 tx_pkt_offset;
544 __le16 tx_pkt_type;
545 __le32 tx_control;
546 u8 priority;
547 u8 flags;
548 u8 pkt_delay_2ms;
549 u8 reserved1;
550} __packed;
551
552struct rxpd {
553 u8 bss_type;
554 u8 bss_num;
Amitkumar Karwared1ea6f2012-08-03 18:06:02 -0700555 __le16 rx_pkt_length;
556 __le16 rx_pkt_offset;
557 __le16 rx_pkt_type;
558 __le16 seq_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700559 u8 priority;
560 u8 rx_rate;
561 s8 snr;
562 s8 nf;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800563
564 /* For: Non-802.11 AC cards
565 *
566 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700567 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800568 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
569 *
570 * For: 802.11 AC cards
571 * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10
572 * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01
573 * BW80 = 10 BW160 = 11
574 * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1
575 * [Bit 5] STBC support Enabled = 1
576 * [Bit 6] LDPC support Enabled = 1
577 * [Bit 7] Reserved
578 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700579 u8 ht_info;
580 u8 reserved;
581} __packed;
582
Avinash Patil838e4f42012-08-03 18:06:08 -0700583struct uap_txpd {
584 u8 bss_type;
585 u8 bss_num;
586 __le16 tx_pkt_length;
587 __le16 tx_pkt_offset;
588 __le16 tx_pkt_type;
589 __le32 tx_control;
590 u8 priority;
591 u8 flags;
592 u8 pkt_delay_2ms;
593 u8 reserved1;
594 __le32 reserved2;
595};
596
597struct uap_rxpd {
598 u8 bss_type;
599 u8 bss_num;
600 __le16 rx_pkt_length;
601 __le16 rx_pkt_offset;
602 __le16 rx_pkt_type;
603 __le16 seq_num;
604 u8 priority;
605 u8 reserved1;
606};
607
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700608enum mwifiex_chan_scan_mode_bitmasks {
609 MWIFIEX_PASSIVE_SCAN = BIT(0),
610 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
611};
612
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700613struct mwifiex_chan_scan_param_set {
614 u8 radio_type;
615 u8 chan_number;
616 u8 chan_scan_mode_bitmap;
617 __le16 min_scan_time;
618 __le16 max_scan_time;
619} __packed;
620
621struct mwifiex_ie_types_chan_list_param_set {
622 struct mwifiex_ie_types_header header;
623 struct mwifiex_chan_scan_param_set chan_scan_param[1];
624} __packed;
625
626struct chan_band_param_set {
627 u8 radio_type;
628 u8 chan_number;
629};
630
631struct mwifiex_ie_types_chan_band_list_param_set {
632 struct mwifiex_ie_types_header header;
633 struct chan_band_param_set chan_band_param[1];
634} __packed;
635
636struct mwifiex_ie_types_rates_param_set {
637 struct mwifiex_ie_types_header header;
638 u8 rates[1];
639} __packed;
640
641struct mwifiex_ie_types_ssid_param_set {
642 struct mwifiex_ie_types_header header;
643 u8 ssid[1];
644} __packed;
645
646struct mwifiex_ie_types_num_probes {
647 struct mwifiex_ie_types_header header;
648 __le16 num_probes;
649} __packed;
650
651struct mwifiex_ie_types_wildcard_ssid_params {
652 struct mwifiex_ie_types_header header;
653 u8 max_ssid_length;
654 u8 ssid[1];
655} __packed;
656
657#define TSF_DATA_SIZE 8
658struct mwifiex_ie_types_tsf_timestamp {
659 struct mwifiex_ie_types_header header;
660 u8 tsf_data[1];
661} __packed;
662
663struct mwifiex_cf_param_set {
664 u8 cfp_cnt;
665 u8 cfp_period;
Ujjal Roy4348d082013-12-02 23:17:48 -0800666 __le16 cfp_max_duration;
667 __le16 cfp_duration_remaining;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700668} __packed;
669
670struct mwifiex_ibss_param_set {
Ujjal Roy4348d082013-12-02 23:17:48 -0800671 __le16 atim_window;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700672} __packed;
673
674struct mwifiex_ie_types_ss_param_set {
675 struct mwifiex_ie_types_header header;
676 union {
677 struct mwifiex_cf_param_set cf_param_set[1];
678 struct mwifiex_ibss_param_set ibss_param_set[1];
679 } cf_ibss;
680} __packed;
681
682struct mwifiex_fh_param_set {
Ujjal Roy4348d082013-12-02 23:17:48 -0800683 __le16 dwell_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700684 u8 hop_set;
685 u8 hop_pattern;
686 u8 hop_index;
687} __packed;
688
689struct mwifiex_ds_param_set {
690 u8 current_chan;
691} __packed;
692
693struct mwifiex_ie_types_phy_param_set {
694 struct mwifiex_ie_types_header header;
695 union {
696 struct mwifiex_fh_param_set fh_param_set[1];
697 struct mwifiex_ds_param_set ds_param_set[1];
698 } fh_ds;
699} __packed;
700
701struct mwifiex_ie_types_auth_type {
702 struct mwifiex_ie_types_header header;
703 __le16 auth_type;
704} __packed;
705
706struct mwifiex_ie_types_vendor_param_set {
707 struct mwifiex_ie_types_header header;
708 u8 ie[MWIFIEX_MAX_VSIE_LEN];
709};
710
711struct mwifiex_ie_types_rsn_param_set {
712 struct mwifiex_ie_types_header header;
713 u8 rsn_ie[1];
714} __packed;
715
716#define KEYPARAMSET_FIXED_LEN 6
717
718struct mwifiex_ie_type_key_param_set {
719 __le16 type;
720 __le16 length;
721 __le16 key_type_id;
722 __le16 key_info;
723 __le16 key_len;
724 u8 key[50];
725} __packed;
726
Ying Luob877f4c2012-08-03 18:06:14 -0700727#define IGTK_PN_LEN 8
728
729struct mwifiex_cmac_param {
730 u8 ipn[IGTK_PN_LEN];
731 u8 key[WLAN_KEY_LEN_AES_CMAC];
732} __packed;
733
Avinash Patile57f1732014-02-07 16:32:35 -0800734struct mwifiex_wep_param {
735 __le16 key_len;
736 u8 key[WLAN_KEY_LEN_WEP104];
737} __packed;
738
739struct mwifiex_tkip_param {
740 u8 pn[WPA_PN_SIZE];
741 __le16 key_len;
742 u8 key[WLAN_KEY_LEN_TKIP];
743} __packed;
744
745struct mwifiex_aes_param {
746 u8 pn[WPA_PN_SIZE];
747 __le16 key_len;
748 u8 key[WLAN_KEY_LEN_CCMP];
749} __packed;
750
751struct mwifiex_wapi_param {
752 u8 pn[PN_LEN];
753 __le16 key_len;
754 u8 key[WLAN_KEY_LEN_SMS4];
755} __packed;
756
757struct mwifiex_cmac_aes_param {
758 u8 ipn[IGTK_PN_LEN];
759 __le16 key_len;
760 u8 key[WLAN_KEY_LEN_AES_CMAC];
761} __packed;
762
763struct mwifiex_ie_type_key_param_set_v2 {
764 __le16 type;
765 __le16 len;
766 u8 mac_addr[ETH_ALEN];
767 u8 key_idx;
768 u8 key_type;
769 __le16 key_info;
770 union {
771 struct mwifiex_wep_param wep;
772 struct mwifiex_tkip_param tkip;
773 struct mwifiex_aes_param aes;
774 struct mwifiex_wapi_param wapi;
775 struct mwifiex_cmac_aes_param cmac_aes;
776 } key_params;
777} __packed;
778
779struct host_cmd_ds_802_11_key_material_v2 {
780 __le16 action;
781 struct mwifiex_ie_type_key_param_set_v2 key_param_set;
782} __packed;
783
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700784struct host_cmd_ds_802_11_key_material {
785 __le16 action;
786 struct mwifiex_ie_type_key_param_set key_param_set;
787} __packed;
788
789struct host_cmd_ds_gen {
Ujjal Roy4348d082013-12-02 23:17:48 -0800790 __le16 command;
791 __le16 size;
792 __le16 seq_num;
793 __le16 result;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700794};
795
796#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
797
798enum sleep_resp_ctrl {
799 RESP_NOT_NEEDED = 0,
800 RESP_NEEDED,
801};
802
803struct mwifiex_ps_param {
804 __le16 null_pkt_interval;
805 __le16 multiple_dtims;
806 __le16 bcn_miss_timeout;
807 __le16 local_listen_interval;
808 __le16 adhoc_wake_period;
809 __le16 mode;
810 __le16 delay_to_ps;
811};
812
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700813#define BITMAP_AUTO_DS 0x01
814#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700815
816struct mwifiex_ie_types_auto_ds_param {
817 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700818 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700819} __packed;
820
821struct mwifiex_ie_types_ps_param {
822 struct mwifiex_ie_types_header header;
823 struct mwifiex_ps_param param;
824} __packed;
825
826struct host_cmd_ds_802_11_ps_mode_enh {
827 __le16 action;
828
829 union {
830 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700831 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700832 } params;
833} __packed;
834
Avinash Patil7f445d02014-02-07 16:30:42 -0800835enum FW_API_VER_ID {
836 KEY_API_VER_ID = 1,
837};
838
839struct hw_spec_fw_api_rev {
840 struct mwifiex_ie_types_header header;
841 __le16 api_id;
842 u8 major_ver;
843 u8 minor_ver;
844} __packed;
845
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700846struct host_cmd_ds_get_hw_spec {
847 __le16 hw_if_version;
848 __le16 version;
849 __le16 reserved;
850 __le16 num_of_mcast_adr;
851 u8 permanent_addr[ETH_ALEN];
852 __le16 region_code;
853 __le16 number_of_antenna;
854 __le32 fw_release_number;
855 __le32 reserved_1;
856 __le32 reserved_2;
857 __le32 reserved_3;
858 __le32 fw_cap_info;
859 __le32 dot_11n_dev_cap;
860 u8 dev_mcs_support;
861 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800862 __le16 mgmt_buf_count; /* mgmt IE buffer count */
863 __le32 reserved_5;
864 __le32 reserved_6;
865 __le32 dot_11ac_dev_cap;
866 __le32 dot_11ac_mcs_support;
Avinash Patil7f445d02014-02-07 16:30:42 -0800867 u8 tlvs[0];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700868} __packed;
869
870struct host_cmd_ds_802_11_rssi_info {
871 __le16 action;
872 __le16 ndata;
873 __le16 nbcn;
874 __le16 reserved[9];
875 long long reserved_1;
876};
877
878struct host_cmd_ds_802_11_rssi_info_rsp {
879 __le16 action;
880 __le16 ndata;
881 __le16 nbcn;
882 __le16 data_rssi_last;
883 __le16 data_nf_last;
884 __le16 data_rssi_avg;
885 __le16 data_nf_avg;
886 __le16 bcn_rssi_last;
887 __le16 bcn_nf_last;
888 __le16 bcn_rssi_avg;
889 __le16 bcn_nf_avg;
890 long long tsf_bcn;
891};
892
893struct host_cmd_ds_802_11_mac_address {
894 __le16 action;
895 u8 mac_addr[ETH_ALEN];
896};
897
898struct host_cmd_ds_mac_control {
899 __le16 action;
900 __le16 reserved;
901};
902
903struct host_cmd_ds_mac_multicast_adr {
904 __le16 action;
905 __le16 num_of_adrs;
906 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
907} __packed;
908
909struct host_cmd_ds_802_11_deauthenticate {
910 u8 mac_addr[ETH_ALEN];
911 __le16 reason_code;
912} __packed;
913
914struct host_cmd_ds_802_11_associate {
915 u8 peer_sta_addr[ETH_ALEN];
916 __le16 cap_info_bitmap;
917 __le16 listen_interval;
918 __le16 beacon_period;
919 u8 dtim_period;
920} __packed;
921
922struct ieee_types_assoc_rsp {
923 __le16 cap_info_bitmap;
924 __le16 status_code;
925 __le16 a_id;
926 u8 ie_buffer[1];
927} __packed;
928
929struct host_cmd_ds_802_11_associate_rsp {
930 struct ieee_types_assoc_rsp assoc_rsp;
931} __packed;
932
933struct ieee_types_cf_param_set {
934 u8 element_id;
935 u8 len;
936 u8 cfp_cnt;
937 u8 cfp_period;
Ujjal Roy4348d082013-12-02 23:17:48 -0800938 __le16 cfp_max_duration;
939 __le16 cfp_duration_remaining;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700940} __packed;
941
942struct ieee_types_ibss_param_set {
943 u8 element_id;
944 u8 len;
945 __le16 atim_window;
946} __packed;
947
948union ieee_types_ss_param_set {
949 struct ieee_types_cf_param_set cf_param_set;
950 struct ieee_types_ibss_param_set ibss_param_set;
951} __packed;
952
953struct ieee_types_fh_param_set {
954 u8 element_id;
955 u8 len;
956 __le16 dwell_time;
957 u8 hop_set;
958 u8 hop_pattern;
959 u8 hop_index;
960} __packed;
961
962struct ieee_types_ds_param_set {
963 u8 element_id;
964 u8 len;
965 u8 current_chan;
966} __packed;
967
968union ieee_types_phy_param_set {
969 struct ieee_types_fh_param_set fh_param_set;
970 struct ieee_types_ds_param_set ds_param_set;
971} __packed;
972
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800973struct ieee_types_oper_mode_ntf {
974 u8 element_id;
975 u8 len;
976 u8 oper_mode;
977} __packed;
978
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700979struct host_cmd_ds_802_11_ad_hoc_start {
980 u8 ssid[IEEE80211_MAX_SSID_LEN];
981 u8 bss_mode;
982 __le16 beacon_period;
983 u8 dtim_period;
984 union ieee_types_ss_param_set ss_param_set;
985 union ieee_types_phy_param_set phy_param_set;
986 u16 reserved1;
987 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -0800988 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700989} __packed;
990
991struct host_cmd_ds_802_11_ad_hoc_result {
992 u8 pad[3];
993 u8 bssid[ETH_ALEN];
994} __packed;
995
996struct adhoc_bss_desc {
997 u8 bssid[ETH_ALEN];
998 u8 ssid[IEEE80211_MAX_SSID_LEN];
999 u8 bss_mode;
1000 __le16 beacon_period;
1001 u8 dtim_period;
1002 u8 time_stamp[8];
1003 u8 local_time[8];
1004 union ieee_types_phy_param_set phy_param_set;
1005 union ieee_types_ss_param_set ss_param_set;
1006 __le16 cap_info_bitmap;
1007 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
1008
1009 /*
1010 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
1011 * It is used in the Adhoc join command and will cause a
1012 * binary layout mismatch with the firmware
1013 */
1014} __packed;
1015
1016struct host_cmd_ds_802_11_ad_hoc_join {
1017 struct adhoc_bss_desc bss_descriptor;
1018 u16 reserved1;
1019 u16 reserved2;
1020} __packed;
1021
1022struct host_cmd_ds_802_11_get_log {
1023 __le32 mcast_tx_frame;
1024 __le32 failed;
1025 __le32 retry;
1026 __le32 multi_retry;
1027 __le32 frame_dup;
1028 __le32 rts_success;
1029 __le32 rts_failure;
1030 __le32 ack_failure;
1031 __le32 rx_frag;
1032 __le32 mcast_rx_frame;
1033 __le32 fcs_error;
1034 __le32 tx_frame;
1035 __le32 reserved;
1036 __le32 wep_icv_err_cnt[4];
1037};
1038
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001039/* Enumeration for rate format */
1040enum _mwifiex_rate_format {
1041 MWIFIEX_RATE_FORMAT_LG = 0,
1042 MWIFIEX_RATE_FORMAT_HT,
1043 MWIFIEX_RATE_FORMAT_VHT,
1044 MWIFIEX_RATE_FORMAT_AUTO = 0xFF,
1045};
1046
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001047struct host_cmd_ds_tx_rate_query {
1048 u8 tx_rate;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001049 /* Tx Rate Info: For 802.11 AC cards
1050 *
1051 * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2
1052 * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3
1053 * [Bit 4] HT/VHT Guard Interval: LGI = 0, SGI = 1
1054 *
1055 * For non-802.11 AC cards
1056 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001057 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001058 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
1059 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001060 u8 ht_info;
1061} __packed;
1062
1063enum Host_Sleep_Action {
1064 HS_CONFIGURE = 0x0001,
1065 HS_ACTIVATE = 0x0002,
1066};
1067
1068struct mwifiex_hs_config_param {
1069 __le32 conditions;
1070 u8 gpio;
1071 u8 gap;
1072} __packed;
1073
1074struct hs_activate_param {
Ujjal Roy4348d082013-12-02 23:17:48 -08001075 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001076} __packed;
1077
1078struct host_cmd_ds_802_11_hs_cfg_enh {
1079 __le16 action;
1080
1081 union {
1082 struct mwifiex_hs_config_param hs_config;
1083 struct hs_activate_param hs_activate;
1084 } params;
1085} __packed;
1086
1087enum SNMP_MIB_INDEX {
1088 OP_RATE_SET_I = 1,
1089 DTIM_PERIOD_I = 3,
1090 RTS_THRESH_I = 5,
1091 SHORT_RETRY_LIM_I = 6,
1092 LONG_RETRY_LIM_I = 7,
1093 FRAG_THRESH_I = 8,
1094 DOT11D_I = 9,
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -07001095 DOT11H_I = 10,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001096};
1097
1098#define MAX_SNMP_BUF_SIZE 128
1099
1100struct host_cmd_ds_802_11_snmp_mib {
1101 __le16 query_type;
1102 __le16 oid;
1103 __le16 buf_size;
1104 u8 value[1];
1105} __packed;
1106
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001107struct mwifiex_rate_scope {
1108 __le16 type;
1109 __le16 length;
1110 __le16 hr_dsss_rate_bitmap;
1111 __le16 ofdm_rate_bitmap;
1112 __le16 ht_mcs_rate_bitmap[8];
Amitkumar Karwara0b7315a2014-03-07 19:41:27 -08001113 __le16 vht_mcs_rate_bitmap[8];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001114} __packed;
1115
1116struct mwifiex_rate_drop_pattern {
1117 __le16 type;
1118 __le16 length;
1119 __le32 rate_drop_mode;
1120} __packed;
1121
1122struct host_cmd_ds_tx_rate_cfg {
1123 __le16 action;
1124 __le16 cfg_index;
1125} __packed;
1126
1127struct mwifiex_power_group {
1128 u8 modulation_class;
1129 u8 first_rate_code;
1130 u8 last_rate_code;
1131 s8 power_step;
1132 s8 power_min;
1133 s8 power_max;
1134 u8 ht_bandwidth;
1135 u8 reserved;
1136} __packed;
1137
1138struct mwifiex_types_power_group {
Amitkumar Karwar930fd352013-10-22 15:24:43 -07001139 __le16 type;
1140 __le16 length;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001141} __packed;
1142
1143struct host_cmd_ds_txpwr_cfg {
1144 __le16 action;
1145 __le16 cfg_index;
1146 __le32 mode;
1147} __packed;
1148
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001149struct host_cmd_ds_rf_tx_pwr {
1150 __le16 action;
1151 __le16 cur_level;
1152 u8 max_power;
1153 u8 min_power;
1154} __packed;
1155
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001156struct host_cmd_ds_rf_ant_mimo {
1157 __le16 action_tx;
1158 __le16 tx_ant_mode;
1159 __le16 action_rx;
1160 __le16 rx_ant_mode;
1161};
1162
1163struct host_cmd_ds_rf_ant_siso {
1164 __le16 action;
1165 __le16 ant_mode;
1166};
1167
Avinash Patil429d90d2014-02-07 16:27:34 -08001168struct host_cmd_ds_tdls_oper {
1169 __le16 tdls_action;
1170 __le16 reason;
1171 u8 peer_mac[ETH_ALEN];
1172} __packed;
1173
Amitkumar Karwarb8b3ece2014-02-07 16:23:34 -08001174struct mwifiex_fixed_bcn_param {
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001175 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001176 __le16 beacon_period;
1177 __le16 cap_info_bitmap;
1178} __packed;
1179
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001180struct mwifiex_event_scan_result {
1181 __le16 event_id;
1182 u8 bss_index;
1183 u8 bss_type;
1184 u8 more_event;
1185 u8 reserved[3];
1186 __le16 buf_size;
1187 u8 num_of_set;
1188} __packed;
1189
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001190#define MWIFIEX_USER_SCAN_CHAN_MAX 50
1191
1192#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
1193
1194struct mwifiex_scan_cmd_config {
1195 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -07001196 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001197 */
1198 u8 bss_mode;
1199
1200 /* Specific BSSID used to filter scan results in the firmware */
1201 u8 specific_bssid[ETH_ALEN];
1202
1203 /* Length of TLVs sent in command starting at tlvBuffer */
1204 u32 tlv_buf_len;
1205
1206 /*
1207 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
1208 *
1209 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
1210 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
1211 */
1212 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
1213 here */
1214} __packed;
1215
1216struct mwifiex_user_scan_chan {
1217 u8 chan_number;
1218 u8 radio_type;
1219 u8 scan_type;
1220 u8 reserved;
1221 u32 scan_time;
1222} __packed;
1223
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001224struct mwifiex_user_scan_cfg {
1225 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001226 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001227 */
1228 u8 bss_mode;
1229 /* Configure the number of probe requests for active chan scans */
1230 u8 num_probes;
1231 u8 reserved;
1232 /* BSSID filter sent in the firmware command to limit the results */
1233 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001234 /* SSID filter list used in the firmware to limit the scan results */
1235 struct cfg80211_ssid *ssid_list;
1236 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001237 /* Variable number (fixed maximum) of channels to scan up */
1238 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
1239} __packed;
1240
1241struct ie_body {
1242 u8 grp_key_oui[4];
1243 u8 ptk_cnt[2];
1244 u8 ptk_body[4];
1245} __packed;
1246
1247struct host_cmd_ds_802_11_scan {
1248 u8 bss_mode;
1249 u8 bssid[ETH_ALEN];
1250 u8 tlv_buffer[1];
1251} __packed;
1252
1253struct host_cmd_ds_802_11_scan_rsp {
1254 __le16 bss_descript_size;
1255 u8 number_of_sets;
1256 u8 bss_desc_and_tlv_buffer[1];
1257} __packed;
1258
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001259struct host_cmd_ds_802_11_scan_ext {
1260 u32 reserved;
1261 u8 tlv_buffer[1];
1262} __packed;
1263
1264struct mwifiex_ie_types_bss_scan_rsp {
1265 struct mwifiex_ie_types_header header;
1266 u8 bssid[ETH_ALEN];
1267 u8 frame_body[1];
1268} __packed;
1269
1270struct mwifiex_ie_types_bss_scan_info {
1271 struct mwifiex_ie_types_header header;
1272 __le16 rssi;
1273 __le16 anpi;
1274 u8 cca_busy_fraction;
1275 u8 radio_type;
1276 u8 channel;
1277 u8 reserved;
1278 __le64 tsf;
1279} __packed;
1280
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001281struct host_cmd_ds_802_11_bg_scan_query {
1282 u8 flush;
1283} __packed;
1284
1285struct host_cmd_ds_802_11_bg_scan_query_rsp {
Ujjal Roy4348d082013-12-02 23:17:48 -08001286 __le32 report_condition;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001287 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1288} __packed;
1289
1290struct mwifiex_ietypes_domain_param_set {
1291 struct mwifiex_ie_types_header header;
1292 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1293 struct ieee80211_country_ie_triplet triplet[1];
1294} __packed;
1295
1296struct host_cmd_ds_802_11d_domain_info {
1297 __le16 action;
1298 struct mwifiex_ietypes_domain_param_set domain;
1299} __packed;
1300
1301struct host_cmd_ds_802_11d_domain_info_rsp {
1302 __le16 action;
1303 struct mwifiex_ietypes_domain_param_set domain;
1304} __packed;
1305
1306struct host_cmd_ds_11n_addba_req {
1307 u8 add_req_result;
1308 u8 peer_mac_addr[ETH_ALEN];
1309 u8 dialog_token;
1310 __le16 block_ack_param_set;
1311 __le16 block_ack_tmo;
1312 __le16 ssn;
1313} __packed;
1314
1315struct host_cmd_ds_11n_addba_rsp {
1316 u8 add_rsp_result;
1317 u8 peer_mac_addr[ETH_ALEN];
1318 u8 dialog_token;
1319 __le16 status_code;
1320 __le16 block_ack_param_set;
1321 __le16 block_ack_tmo;
1322 __le16 ssn;
1323} __packed;
1324
1325struct host_cmd_ds_11n_delba {
1326 u8 del_result;
1327 u8 peer_mac_addr[ETH_ALEN];
1328 __le16 del_ba_param_set;
1329 __le16 reason_code;
1330 u8 reserved;
1331} __packed;
1332
1333struct host_cmd_ds_11n_batimeout {
1334 u8 tid;
1335 u8 peer_mac_addr[ETH_ALEN];
1336 u8 origninator;
1337} __packed;
1338
1339struct host_cmd_ds_11n_cfg {
1340 __le16 action;
1341 __le16 ht_tx_cap;
1342 __le16 ht_tx_info;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001343 __le16 misc_config; /* Needed for 802.11AC cards only */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001344} __packed;
1345
1346struct host_cmd_ds_txbuf_cfg {
1347 __le16 action;
1348 __le16 buff_size;
1349 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1350 __le16 reserved3;
1351} __packed;
1352
1353struct host_cmd_ds_amsdu_aggr_ctrl {
1354 __le16 action;
1355 __le16 enable;
1356 __le16 curr_buf_size;
1357} __packed;
1358
Avinash Patil0f9e9b82013-05-17 17:50:23 -07001359struct host_cmd_ds_sta_deauth {
1360 u8 mac[ETH_ALEN];
1361 __le16 reason;
1362} __packed;
1363
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -07001364struct mwifiex_ie_types_pwr_capability {
1365 struct mwifiex_ie_types_header header;
1366 s8 min_pwr;
1367 s8 max_pwr;
1368};
1369
1370struct mwifiex_ie_types_local_pwr_constraint {
1371 struct mwifiex_ie_types_header header;
1372 u8 chan;
1373 u8 constraint;
1374};
1375
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001376struct mwifiex_ie_types_wmm_param_set {
1377 struct mwifiex_ie_types_header header;
1378 u8 wmm_ie[1];
1379};
1380
1381struct mwifiex_ie_types_wmm_queue_status {
1382 struct mwifiex_ie_types_header header;
1383 u8 queue_index;
1384 u8 disabled;
Ujjal Roy4348d082013-12-02 23:17:48 -08001385 __le16 medium_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001386 u8 flow_required;
1387 u8 flow_created;
1388 u32 reserved;
1389};
1390
1391struct ieee_types_vendor_header {
1392 u8 element_id;
1393 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001394 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001395 u8 oui_subtype;
1396 u8 version;
1397} __packed;
1398
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001399struct ieee_types_wmm_parameter {
1400 /*
1401 * WMM Parameter IE - Vendor Specific Header:
1402 * element_id [221/0xdd]
1403 * Len [24]
1404 * Oui [00:50:f2]
1405 * OuiType [2]
1406 * OuiSubType [1]
1407 * Version [1]
1408 */
1409 struct ieee_types_vendor_header vend_hdr;
1410 u8 qos_info_bitmap;
1411 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001412 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001413} __packed;
1414
1415struct ieee_types_wmm_info {
1416
1417 /*
1418 * WMM Info IE - Vendor Specific Header:
1419 * element_id [221/0xdd]
1420 * Len [7]
1421 * Oui [00:50:f2]
1422 * OuiType [2]
1423 * OuiSubType [0]
1424 * Version [1]
1425 */
1426 struct ieee_types_vendor_header vend_hdr;
1427
1428 u8 qos_info_bitmap;
1429} __packed;
1430
1431struct host_cmd_ds_wmm_get_status {
1432 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001433 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001434 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1435} __packed;
1436
1437struct mwifiex_wmm_ac_status {
1438 u8 disabled;
1439 u8 flow_required;
1440 u8 flow_created;
1441};
1442
1443struct mwifiex_ie_types_htcap {
1444 struct mwifiex_ie_types_header header;
1445 struct ieee80211_ht_cap ht_cap;
1446} __packed;
1447
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001448struct mwifiex_ie_types_vhtcap {
1449 struct mwifiex_ie_types_header header;
1450 struct ieee80211_vht_cap vht_cap;
1451} __packed;
1452
Avinash Patil5f6d5982014-02-07 16:30:39 -08001453struct mwifiex_ie_types_aid {
1454 struct mwifiex_ie_types_header header;
1455 __le16 aid;
1456} __packed;
1457
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001458struct mwifiex_ie_types_oper_mode_ntf {
1459 struct mwifiex_ie_types_header header;
1460 u8 oper_mode;
1461} __packed;
1462
1463/* VHT Operations IE */
1464struct mwifiex_ie_types_vht_oper {
1465 struct mwifiex_ie_types_header header;
1466 u8 chan_width;
1467 u8 chan_center_freq_1;
1468 u8 chan_center_freq_2;
1469 /* Basic MCS set map, each 2 bits stands for a NSS */
Ujjal Roy4348d082013-12-02 23:17:48 -08001470 __le16 basic_mcs_map;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001471} __packed;
1472
Avinash Patil54428c52013-01-02 16:56:01 -08001473struct mwifiex_ie_types_wmmcap {
1474 struct mwifiex_ie_types_header header;
1475 struct mwifiex_types_wmm_info wmm_info;
1476} __packed;
1477
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001478struct mwifiex_ie_types_htinfo {
1479 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001480 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001481} __packed;
1482
1483struct mwifiex_ie_types_2040bssco {
1484 struct mwifiex_ie_types_header header;
1485 u8 bss_co_2040;
1486} __packed;
1487
1488struct mwifiex_ie_types_extcap {
1489 struct mwifiex_ie_types_header header;
Avinash Patil68f95b092013-08-23 16:48:22 -07001490 u8 ext_capab[0];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001491} __packed;
1492
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001493struct mwifiex_ie_types_qos_info {
1494 struct mwifiex_ie_types_header header;
1495 u8 qos_info;
1496} __packed;
1497
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001498struct host_cmd_ds_mac_reg_access {
1499 __le16 action;
1500 __le16 offset;
1501 __le32 value;
1502} __packed;
1503
1504struct host_cmd_ds_bbp_reg_access {
1505 __le16 action;
1506 __le16 offset;
1507 u8 value;
1508 u8 reserved[3];
1509} __packed;
1510
1511struct host_cmd_ds_rf_reg_access {
1512 __le16 action;
1513 __le16 offset;
1514 u8 value;
1515 u8 reserved[3];
1516} __packed;
1517
1518struct host_cmd_ds_pmic_reg_access {
1519 __le16 action;
1520 __le16 offset;
1521 u8 value;
1522 u8 reserved[3];
1523} __packed;
1524
1525struct host_cmd_ds_802_11_eeprom_access {
1526 __le16 action;
1527
1528 __le16 offset;
1529 __le16 byte_count;
1530 u8 value;
1531} __packed;
1532
Avinash Patile5686342012-05-08 18:30:25 -07001533struct mwifiex_assoc_event {
1534 u8 sta_addr[ETH_ALEN];
1535 __le16 type;
1536 __le16 len;
1537 __le16 frame_control;
1538 __le16 cap_info;
1539 __le16 listen_interval;
1540 u8 data[0];
1541} __packed;
1542
Avinash Patil4db16a12012-05-08 18:30:20 -07001543struct host_cmd_ds_sys_config {
1544 __le16 action;
1545 u8 tlv[0];
1546};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001547
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -07001548struct host_cmd_11ac_vht_cfg {
1549 __le16 action;
1550 u8 band_config;
1551 u8 misc_config;
1552 __le32 cap_info;
1553 __le32 mcs_tx_set;
1554 __le32 mcs_rx_set;
1555} __packed;
1556
Avinash Patilf752dcd2012-05-08 18:30:26 -07001557struct host_cmd_tlv_akmp {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001558 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001559 __le16 key_mgmt;
1560 __le16 key_mgmt_operation;
1561} __packed;
1562
1563struct host_cmd_tlv_pwk_cipher {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001564 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001565 __le16 proto;
1566 u8 cipher;
1567 u8 reserved;
1568} __packed;
1569
1570struct host_cmd_tlv_gwk_cipher {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001571 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001572 u8 cipher;
1573 u8 reserved;
1574} __packed;
1575
1576struct host_cmd_tlv_passphrase {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001577 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001578 u8 passphrase[0];
1579} __packed;
1580
Avinash Patil96893532012-06-15 12:21:55 -07001581struct host_cmd_tlv_wep_key {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001582 struct mwifiex_ie_types_header header;
Avinash Patil96893532012-06-15 12:21:55 -07001583 u8 key_index;
1584 u8 is_default;
1585 u8 key[1];
1586};
1587
Avinash Patilf752dcd2012-05-08 18:30:26 -07001588struct host_cmd_tlv_auth_type {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001589 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001590 u8 auth_type;
1591} __packed;
1592
1593struct host_cmd_tlv_encrypt_protocol {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001594 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001595 __le16 proto;
1596} __packed;
1597
Avinash Patil12190c52012-05-08 18:30:24 -07001598struct host_cmd_tlv_ssid {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001599 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001600 u8 ssid[0];
1601} __packed;
1602
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001603struct host_cmd_tlv_rates {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001604 struct mwifiex_ie_types_header header;
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001605 u8 rates[0];
1606} __packed;
1607
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001608struct mwifiex_ie_types_bssid_list {
1609 struct mwifiex_ie_types_header header;
1610 u8 bssid[ETH_ALEN];
1611} __packed;
1612
Avinash Patil605b73a2012-05-16 21:24:55 -07001613struct host_cmd_tlv_bcast_ssid {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001614 struct mwifiex_ie_types_header header;
Avinash Patil605b73a2012-05-16 21:24:55 -07001615 u8 bcast_ctl;
1616} __packed;
1617
Avinash Patil12190c52012-05-08 18:30:24 -07001618struct host_cmd_tlv_beacon_period {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001619 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001620 __le16 period;
1621} __packed;
1622
1623struct host_cmd_tlv_dtim_period {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001624 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001625 u8 period;
1626} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001627
Avinash Patil9b930ea2012-05-08 18:30:23 -07001628struct host_cmd_tlv_frag_threshold {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001629 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001630 __le16 frag_thr;
1631} __packed;
1632
1633struct host_cmd_tlv_rts_threshold {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001634 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001635 __le16 rts_thr;
1636} __packed;
1637
1638struct host_cmd_tlv_retry_limit {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001639 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001640 u8 limit;
1641} __packed;
1642
Avinash Patil75edd2c2012-05-08 18:30:18 -07001643struct host_cmd_tlv_mac_addr {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001644 struct mwifiex_ie_types_header header;
Avinash Patil75edd2c2012-05-08 18:30:18 -07001645 u8 mac_addr[ETH_ALEN];
1646} __packed;
1647
Avinash Patil4db16a12012-05-08 18:30:20 -07001648struct host_cmd_tlv_channel_band {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001649 struct mwifiex_ie_types_header header;
Avinash Patil4db16a12012-05-08 18:30:20 -07001650 u8 band_config;
1651 u8 channel;
1652} __packed;
1653
Kevin Gan8b4509f2012-09-25 20:23:45 -07001654struct host_cmd_tlv_ageout_timer {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001655 struct mwifiex_ie_types_header header;
Kevin Gan8b4509f2012-09-25 20:23:45 -07001656 __le32 sta_ao_timer;
1657} __packed;
1658
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001659struct host_cmd_ds_version_ext {
1660 u8 version_str_sel;
1661 char version_str[128];
1662} __packed;
1663
Stone Piao3cec6872012-09-25 20:23:34 -07001664struct host_cmd_ds_mgmt_frame_reg {
1665 __le16 action;
1666 __le32 mask;
1667} __packed;
1668
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001669struct host_cmd_ds_p2p_mode_cfg {
1670 __le16 action;
1671 __le16 mode;
1672} __packed;
1673
Stone Piao7feb4c42012-09-25 20:23:36 -07001674struct host_cmd_ds_remain_on_chan {
1675 __le16 action;
1676 u8 status;
1677 u8 reserved;
1678 u8 band_cfg;
1679 u8 channel;
1680 __le32 duration;
1681} __packed;
1682
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001683struct host_cmd_ds_802_11_ibss_status {
1684 __le16 action;
1685 __le16 enable;
1686 u8 bssid[ETH_ALEN];
1687 __le16 beacon_interval;
1688 __le16 atim_window;
1689 __le16 use_g_rate_protect;
1690} __packed;
1691
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001692struct mwifiex_fw_mef_entry {
1693 u8 mode;
1694 u8 action;
1695 __le16 exprsize;
1696 u8 expr[0];
1697} __packed;
1698
1699struct host_cmd_ds_mef_cfg {
1700 __le32 criteria;
1701 __le16 num_entries;
1702 struct mwifiex_fw_mef_entry mef_entry[0];
1703} __packed;
1704
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001705#define CONNECTION_TYPE_INFRA 0
1706#define CONNECTION_TYPE_ADHOC 1
Stone Piao9197ab92012-09-25 20:23:42 -07001707#define CONNECTION_TYPE_AP 2
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001708
1709struct host_cmd_ds_set_bss_mode {
1710 u8 con_type;
1711} __packed;
1712
Amitkumar Karward930fae2011-10-11 17:41:21 -07001713struct host_cmd_ds_pcie_details {
1714 /* TX buffer descriptor ring address */
1715 u32 txbd_addr_lo;
1716 u32 txbd_addr_hi;
1717 /* TX buffer descriptor ring count */
1718 u32 txbd_count;
1719
1720 /* RX buffer descriptor ring address */
1721 u32 rxbd_addr_lo;
1722 u32 rxbd_addr_hi;
1723 /* RX buffer descriptor ring count */
1724 u32 rxbd_count;
1725
1726 /* Event buffer descriptor ring address */
1727 u32 evtbd_addr_lo;
1728 u32 evtbd_addr_hi;
1729 /* Event buffer descriptor ring count */
1730 u32 evtbd_count;
1731
1732 /* Sleep cookie buffer physical address */
1733 u32 sleep_cookie_addr_lo;
1734 u32 sleep_cookie_addr_hi;
1735} __packed;
1736
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001737struct mwifiex_ie_types_rssi_threshold {
1738 struct mwifiex_ie_types_header header;
1739 u8 abs_value;
1740 u8 evt_freq;
1741} __packed;
1742
1743struct host_cmd_ds_802_11_subsc_evt {
1744 __le16 action;
1745 __le16 events;
1746} __packed;
1747
Avinash Patilede98bf2012-05-08 18:30:28 -07001748struct mwifiex_ie {
1749 __le16 ie_index;
1750 __le16 mgmt_subtype_mask;
1751 __le16 ie_length;
1752 u8 ie_buffer[IEEE_MAX_IE_SIZE];
1753} __packed;
1754
1755#define MAX_MGMT_IE_INDEX 16
1756struct mwifiex_ie_list {
1757 __le16 type;
1758 __le16 len;
1759 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
1760} __packed;
1761
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07001762struct coalesce_filt_field_param {
1763 u8 operation;
1764 u8 operand_len;
1765 __le16 offset;
1766 u8 operand_byte_stream[4];
1767};
1768
1769struct coalesce_receive_filt_rule {
1770 struct mwifiex_ie_types_header header;
1771 u8 num_of_fields;
1772 u8 pkt_type;
1773 __le16 max_coalescing_delay;
1774 struct coalesce_filt_field_param params[0];
1775} __packed;
1776
1777struct host_cmd_ds_coalesce_cfg {
1778 __le16 action;
1779 __le16 num_of_rules;
1780 struct coalesce_receive_filt_rule rule[0];
1781} __packed;
1782
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001783struct host_cmd_ds_command {
1784 __le16 command;
1785 __le16 size;
1786 __le16 seq_num;
1787 __le16 result;
1788 union {
1789 struct host_cmd_ds_get_hw_spec hw_spec;
1790 struct host_cmd_ds_mac_control mac_ctrl;
1791 struct host_cmd_ds_802_11_mac_address mac_addr;
1792 struct host_cmd_ds_mac_multicast_adr mc_addr;
1793 struct host_cmd_ds_802_11_get_log get_log;
1794 struct host_cmd_ds_802_11_rssi_info rssi_info;
1795 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1796 struct host_cmd_ds_802_11_snmp_mib smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001797 struct host_cmd_ds_tx_rate_query tx_rate;
1798 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1799 struct host_cmd_ds_txpwr_cfg txp_cfg;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001800 struct host_cmd_ds_rf_tx_pwr txp;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001801 struct host_cmd_ds_rf_ant_mimo ant_mimo;
1802 struct host_cmd_ds_rf_ant_siso ant_siso;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001803 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1804 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1805 struct host_cmd_ds_802_11_scan scan;
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001806 struct host_cmd_ds_802_11_scan_ext ext_scan;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001807 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1808 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1809 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1810 struct host_cmd_ds_802_11_associate associate;
1811 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1812 struct host_cmd_ds_802_11_deauthenticate deauth;
1813 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1814 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1815 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1816 struct host_cmd_ds_802_11d_domain_info domain_info;
1817 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1818 struct host_cmd_ds_11n_addba_req add_ba_req;
1819 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1820 struct host_cmd_ds_11n_delba del_ba;
1821 struct host_cmd_ds_txbuf_cfg tx_buf;
1822 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1823 struct host_cmd_ds_11n_cfg htcfg;
1824 struct host_cmd_ds_wmm_get_status get_wmm_status;
1825 struct host_cmd_ds_802_11_key_material key_material;
Avinash Patile57f1732014-02-07 16:32:35 -08001826 struct host_cmd_ds_802_11_key_material_v2 key_material_v2;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001827 struct host_cmd_ds_version_ext verext;
Stone Piao3cec6872012-09-25 20:23:34 -07001828 struct host_cmd_ds_mgmt_frame_reg reg_mask;
Stone Piao7feb4c42012-09-25 20:23:36 -07001829 struct host_cmd_ds_remain_on_chan roc_cfg;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07001830 struct host_cmd_ds_p2p_mode_cfg mode_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001831 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08001832 struct host_cmd_ds_mef_cfg mef_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001833 struct host_cmd_ds_mac_reg_access mac_reg;
1834 struct host_cmd_ds_bbp_reg_access bbp_reg;
1835 struct host_cmd_ds_rf_reg_access rf_reg;
1836 struct host_cmd_ds_pmic_reg_access pmic_reg;
1837 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07001838 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001839 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07001840 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07001841 struct host_cmd_ds_sys_config uap_sys_config;
Avinash Patil0f9e9b82013-05-17 17:50:23 -07001842 struct host_cmd_ds_sta_deauth sta_deauth;
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -07001843 struct host_cmd_11ac_vht_cfg vht_cfg;
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07001844 struct host_cmd_ds_coalesce_cfg coalesce_cfg;
Avinash Patil429d90d2014-02-07 16:27:34 -08001845 struct host_cmd_ds_tdls_oper tdls_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001846 } params;
1847} __packed;
1848
1849struct mwifiex_opt_sleep_confirm {
1850 __le16 command;
1851 __le16 size;
1852 __le16 seq_num;
1853 __le16 result;
1854 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07001855 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001856} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001857#endif /* !_MWIFIEX_FW_H_ */