blob: 4b1894b4757ffe654d409828c665e1df76668ca3 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: Firmware specific macros & structures
3 *
Xinming Hu65da33f2014-06-19 21:38:57 -07004 * Copyright (C) 2011-2014, Marvell International Ltd.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07005 *
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,
Ganapathi Bhat89951db2016-09-20 18:46:23 +053081 KEY_TYPE_ID_AES_CMAC_DEF,
Bing Zhao5e6e3a92011-03-21 18:00:50 -070082};
Avinash Patile57f1732014-02-07 16:32:35 -080083
84#define WPA_PN_SIZE 8
85#define KEY_PARAMS_FIXED_LEN 10
86#define KEY_INDEX_MASK 0xf
Amitkumar Karwar4b9fede2014-08-19 08:24:25 -040087#define KEY_API_VER_MAJOR_V2 2
Avinash Patile57f1732014-02-07 16:32:35 -080088
Yogesh Ashok Powar6a35a0a2011-04-06 16:46:56 -070089#define KEY_MCAST BIT(0)
90#define KEY_UNICAST BIT(1)
91#define KEY_ENABLED BIT(2)
Avinash Patile57f1732014-02-07 16:32:35 -080092#define KEY_DEFAULT BIT(3)
93#define KEY_TX_KEY BIT(4)
94#define KEY_RX_KEY BIT(5)
Ying Luob877f4c2012-08-03 18:06:14 -070095#define KEY_IGTK BIT(10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070096
Avinash Patile57f1732014-02-07 16:32:35 -080097#define WAPI_KEY_LEN (WLAN_KEY_LEN_SMS4 + PN_LEN + 2)
Bing Zhao5e6e3a92011-03-21 18:00:50 -070098
Bing Zhao5e6e3a92011-03-21 18:00:50 -070099#define MAX_POLL_TRIES 100
chunfan chen2fd5c6e2016-01-06 23:40:47 -0800100#define MAX_FIRMWARE_POLL_TRIES 150
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700101
Amitkumar Karward930fae2011-10-11 17:41:21 -0700102#define FIRMWARE_READY_SDIO 0xfedc
103#define FIRMWARE_READY_PCIE 0xfedcba00
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700104
Amitkumar Karwar46dbe242015-10-09 04:26:23 -0700105#define MWIFIEX_COEX_MODE_TIMESHARE 0x01
106#define MWIFIEX_COEX_MODE_SPATIAL 0x82
107
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700108enum mwifiex_usb_ep {
109 MWIFIEX_USB_EP_CMD_EVENT = 1,
110 MWIFIEX_USB_EP_DATA = 2,
Zhaoyang Liu2b0f9972015-09-18 06:32:15 -0700111 MWIFIEX_USB_EP_DATA_CH2 = 3,
Amitkumar Karwar4daffe32012-04-18 20:08:28 -0700112};
113
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700114enum MWIFIEX_802_11_PRIVACY_FILTER {
115 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
116 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
117};
118
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700119#define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
Stone Piao2dbaf752012-09-25 20:23:35 -0700120#define CAL_RSSI(SNR, NF) ((s16)((s16)(SNR)+(s16)(NF)))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700121
Avinash Patile76268d2012-05-08 18:30:27 -0700122#define UAP_BSS_PARAMS_I 0
Avinash Patilede98bf2012-05-08 18:30:28 -0700123#define UAP_CUSTOM_IE_I 1
124#define MWIFIEX_AUTO_IDX_MASK 0xffff
125#define MWIFIEX_DELETE_MASK 0x0000
Avinash Patilf31acab2012-05-08 18:30:29 -0700126#define MGMT_MASK_ASSOC_REQ 0x01
127#define MGMT_MASK_REASSOC_REQ 0x04
128#define MGMT_MASK_ASSOC_RESP 0x02
129#define MGMT_MASK_REASSOC_RESP 0x08
130#define MGMT_MASK_PROBE_REQ 0x10
131#define MGMT_MASK_PROBE_RESP 0x20
132#define MGMT_MASK_BEACON 0x100
Avinash Patile76268d2012-05-08 18:30:27 -0700133
Avinash Patil12190c52012-05-08 18:30:24 -0700134#define TLV_TYPE_UAP_SSID 0x0000
Avinash Patila3c2c4f2012-08-27 20:32:53 -0700135#define TLV_TYPE_UAP_RATES 0x0001
Avinash Patil8a73dd62015-06-03 16:59:41 +0530136#define TLV_TYPE_PWR_CONSTRAINT 0x0020
Avinash Patil12190c52012-05-08 18:30:24 -0700137
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700138#define PROPRIETARY_TLV_BASE_ID 0x0100
139#define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
140#define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
141#define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700142#define TLV_TYPE_RSSI_LOW (PROPRIETARY_TLV_BASE_ID + 4)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700143#define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700144#define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
145#define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
146#define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700147#define TLV_TYPE_RSSI_HIGH (PROPRIETARY_TLV_BASE_ID + 22)
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800148#define TLV_TYPE_BGSCAN_START_LATER (PROPRIETARY_TLV_BASE_ID + 30)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700149#define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
Avinash Patil75edd2c2012-05-08 18:30:18 -0700150#define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32)
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800151#define TLV_TYPE_BSSID (PROPRIETARY_TLV_BASE_ID + 35)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700152#define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
Avinash Patil12190c52012-05-08 18:30:24 -0700153#define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44)
154#define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45)
Avinash Patil605b73a2012-05-16 21:24:55 -0700155#define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700156#define TLV_TYPE_UAP_RTS_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 51)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700157#define TLV_TYPE_UAP_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 57)
Avinash Patil96893532012-06-15 12:21:55 -0700158#define TLV_TYPE_UAP_WEP_KEY (PROPRIETARY_TLV_BASE_ID + 59)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700159#define TLV_TYPE_UAP_WPA_PASSPHRASE (PROPRIETARY_TLV_BASE_ID + 60)
160#define TLV_TYPE_UAP_ENCRY_PROTOCOL (PROPRIETARY_TLV_BASE_ID + 64)
161#define TLV_TYPE_UAP_AKMP (PROPRIETARY_TLV_BASE_ID + 65)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700162#define TLV_TYPE_UAP_FRAG_THRESHOLD (PROPRIETARY_TLV_BASE_ID + 70)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700163#define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
164#define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
165#define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800166#define TLV_TYPE_BSS_SCAN_RSP (PROPRIETARY_TLV_BASE_ID + 86)
167#define TLV_TYPE_BSS_SCAN_INFO (PROPRIETARY_TLV_BASE_ID + 87)
Avinash Patil0a694d62015-01-28 15:54:22 +0530168#define TLV_TYPE_CHANRPT_11H_BASIC (PROPRIETARY_TLV_BASE_ID + 91)
Avinash Patil9b930ea2012-05-08 18:30:23 -0700169#define TLV_TYPE_UAP_RETRY_LIMIT (PROPRIETARY_TLV_BASE_ID + 93)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700170#define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
Amitkumar Karwar46dbe242015-10-09 04:26:23 -0700171#define TLV_TYPE_ROBUST_COEX (PROPRIETARY_TLV_BASE_ID + 96)
Avinash Patile5686342012-05-08 18:30:25 -0700172#define TLV_TYPE_UAP_MGMT_FRAME (PROPRIETARY_TLV_BASE_ID + 104)
Avinash Patil13d7ba72012-04-09 20:06:56 -0700173#define TLV_TYPE_MGMT_IE (PROPRIETARY_TLV_BASE_ID + 105)
Marc Yang2b06bdb2011-03-30 18:12:44 -0700174#define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
175#define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
Kevin Gan8b4509f2012-09-25 20:23:45 -0700176#define TLV_TYPE_UAP_PS_AO_TIMER (PROPRIETARY_TLV_BASE_ID + 123)
Avinash Patilf752dcd2012-05-08 18:30:26 -0700177#define TLV_TYPE_PWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 145)
178#define TLV_TYPE_GWK_CIPHER (PROPRIETARY_TLV_BASE_ID + 146)
Avinash Patil4e6ee912015-06-22 19:06:07 +0530179#define TLV_TYPE_TX_PAUSE (PROPRIETARY_TLV_BASE_ID + 148)
Xinming Hu99ffe722016-07-25 21:21:08 +0530180#define TLV_TYPE_RXBA_SYNC (PROPRIETARY_TLV_BASE_ID + 153)
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -0700181#define TLV_TYPE_COALESCE_RULE (PROPRIETARY_TLV_BASE_ID + 154)
Avinash Patile57f1732014-02-07 16:32:35 -0800182#define TLV_TYPE_KEY_PARAM_V2 (PROPRIETARY_TLV_BASE_ID + 156)
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800183#define TLV_TYPE_REPEAT_COUNT (PROPRIETARY_TLV_BASE_ID + 176)
Avinash Patil8d6b5382015-06-22 19:06:23 +0530184#define TLV_TYPE_MULTI_CHAN_INFO (PROPRIETARY_TLV_BASE_ID + 183)
Zhaoyang Liu2b0f9972015-09-18 06:32:15 -0700185#define TLV_TYPE_MC_GROUP_INFO (PROPRIETARY_TLV_BASE_ID + 184)
Avinash Patild29caf22014-05-06 22:02:43 -0700186#define TLV_TYPE_TDLS_IDLE_TIMEOUT (PROPRIETARY_TLV_BASE_ID + 194)
Avinash Patilcb91be82014-09-12 20:08:54 +0530187#define TLV_TYPE_SCAN_CHANNEL_GAP (PROPRIETARY_TLV_BASE_ID + 197)
188#define TLV_TYPE_API_REV (PROPRIETARY_TLV_BASE_ID + 199)
Avinash Patilbf354432014-10-31 16:08:26 +0530189#define TLV_TYPE_CHANNEL_STATS (PROPRIETARY_TLV_BASE_ID + 198)
Chunfan Chend219b7e2015-06-10 06:19:48 -0700190#define TLV_BTCOEX_WL_AGGR_WINSIZE (PROPRIETARY_TLV_BASE_ID + 202)
191#define TLV_BTCOEX_WL_SCANTIME (PROPRIETARY_TLV_BASE_ID + 203)
Aniket Nagarnaik40d74122015-07-16 08:05:21 -0700192#define TLV_TYPE_BSS_MODE (PROPRIETARY_TLV_BASE_ID + 206)
Ganapathi Bhatc2a8f0f2016-07-25 21:21:07 +0530193#define TLV_TYPE_RANDOM_MAC (PROPRIETARY_TLV_BASE_ID + 236)
Amitkumar Karwar41960b42016-08-09 20:20:45 +0530194#define TLV_TYPE_CHAN_ATTR_CFG (PROPRIETARY_TLV_BASE_ID + 237)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700195
196#define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
197
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700198#define SSN_MASK 0xfff0
199
200#define BA_RESULT_SUCCESS 0x0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700201#define BA_RESULT_TIMEOUT 0x2
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700202
203#define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
204
205#define BA_STREAM_NOT_ALLOWED 0xff
206
207#define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
Yogesh Ashok Powar931f1582012-03-13 19:22:36 -0700208 priv->adapter->config_bands & BAND_AN) && \
209 priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210#define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
211 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
212
213#define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
214#define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
Xinming Hu432da7d2016-07-25 21:21:10 +0530215#define MWIFIEX_TX_DATA_BUF_SIZE_12K 12288
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700216
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700217#define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
Avinash Patilb23bce22014-02-07 16:27:32 -0800218#define ISSUPP_TDLS_ENABLED(FwCapInfo) (FwCapInfo & BIT(14))
Avinash Patild5b036c2015-06-22 19:06:20 +0530219#define ISSUPP_DRCS_ENABLED(FwCapInfo) (FwCapInfo & BIT(15))
Zhaoyang Liu92263a82015-03-13 17:37:58 +0530220#define ISSUPP_SDIO_SPA_ENABLED(FwCapInfo) (FwCapInfo & BIT(16))
Marc Yang6d2bd912011-03-25 19:47:02 -0700221
Avinash Patil22281252012-06-15 12:21:53 -0700222#define MWIFIEX_DEF_HT_CAP (IEEE80211_HT_CAP_DSSSCCK40 | \
223 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT) | \
224 IEEE80211_HT_CAP_SM_PS)
225
Amitkumar Karwar645097c2014-02-07 16:27:26 -0800226#define MWIFIEX_DEF_11N_TX_BF_CAP 0x09E1E008
227
Avinash Patil22281252012-06-15 12:21:53 -0700228#define MWIFIEX_DEF_AMPDU IEEE80211_HT_AMPDU_PARM_FACTOR
229
Maithili Hinge474a41e2014-03-18 22:24:10 -0700230#define GET_RXSTBC(x) (x & IEEE80211_HT_CAP_RX_STBC)
231#define MWIFIEX_RX_STBC1 0x0100
232#define MWIFIEX_RX_STBC12 0x0200
233#define MWIFIEX_RX_STBC123 0x0300
234
Marc Yang6d2bd912011-03-25 19:47:02 -0700235/* dev_cap bitmap
236 * BIT
237 * 0-16 reserved
238 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
239 * 18-22 reserved
240 * 23 IEEE80211_HT_CAP_SGI_20
241 * 24 IEEE80211_HT_CAP_SGI_40
242 * 25 IEEE80211_HT_CAP_TX_STBC
243 * 26 IEEE80211_HT_CAP_RX_STBC
244 * 27-28 reserved
245 * 29 IEEE80211_HT_CAP_GRN_FLD
246 * 30-31 reserved
247 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700248#define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
Marc Yang6d2bd912011-03-25 19:47:02 -0700249#define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
250#define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
251#define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
252#define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
253#define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
Avinash Patildd0d83c2012-11-27 12:09:20 -0800254#define ISENABLED_40MHZ_INTOLERANT(Dot11nDevCap) (Dot11nDevCap & BIT(8))
255#define ISSUPP_RXLDPC(Dot11nDevCap) (Dot11nDevCap & BIT(22))
Amitkumar Karwar645097c2014-02-07 16:27:26 -0800256#define ISSUPP_BEAMFORMING(Dot11nDevCap) (Dot11nDevCap & BIT(30))
Avinash Patil396939f2014-05-06 22:02:45 -0700257#define ISALLOWED_CHANWIDTH40(ht_param) (ht_param & BIT(2))
Avinash Patil4f3dfdf2014-12-26 03:02:34 -0800258#define GETSUPP_TXBASTREAMS(Dot11nDevCap) ((Dot11nDevCap >> 18) & 0xF)
Marc Yang6d2bd912011-03-25 19:47:02 -0700259
Amitkumar Karwarcd27bc32011-07-08 20:40:30 -0700260/* httxcfg bitmap
261 * 0 reserved
262 * 1 20/40 Mhz enable(1)/disable(0)
263 * 2-3 reserved
264 * 4 green field enable(1)/disable(0)
265 * 5 short GI in 20 Mhz enable(1)/disable(0)
266 * 6 short GI in 40 Mhz enable(1)/disable(0)
267 * 7-15 reserved
268 */
269#define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
270
Amitkumar Karwara5333912014-02-27 19:35:18 -0800271/* 11AC Tx and Rx MCS map for 1x1 mode:
272 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1
273 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 7 streams
274 */
275#define MWIFIEX_11AC_MCS_MAP_1X1 0xfffefffe
276
277/* 11AC Tx and Rx MCS map for 2x2 mode:
278 * IEEE80211_VHT_MCS_SUPPORT_0_9 for stream 1 and 2
279 * IEEE80211_VHT_MCS_NOT_SUPPORTED for remaining 6 streams
280 */
281#define MWIFIEX_11AC_MCS_MAP_2X2 0xfffafffa
282
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700283#define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700284#define SETHT_MCS32(x) (x[4] |= 1)
Amitkumar Karwara5333912014-02-27 19:35:18 -0800285#define HT_STREAM_1X1 0x11
Bing Zhaoe3bea1c2011-11-16 20:40:35 -0800286#define HT_STREAM_2X2 0x22
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700287
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700288#define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
289
290#define LLC_SNAP_LEN 8
291
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800292/* HW_SPEC fw_cap_info */
293
Bing Zhaof25b1432014-02-07 16:21:01 -0800294#define ISSUPP_11ACENABLED(fw_cap_info) (fw_cap_info & BIT(13))
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800295
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800296#define GET_VHTCAP_CHWDSET(vht_cap_info) ((vht_cap_info >> 2) & 0x3)
297#define GET_VHTNSSMCS(mcs_mapset, nss) ((mcs_mapset >> (2 * (nss - 1))) & 0x3)
298#define SET_VHTNSSMCS(mcs_mapset, nss, value) (mcs_mapset |= (value & 0x3) << \
299 (2 * (nss - 1)))
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800300#define GET_DEVTXMCSMAP(dev_mcs_map) (dev_mcs_map >> 16)
301#define GET_DEVRXMCSMAP(dev_mcs_map) (dev_mcs_map & 0xFFFF)
302
Amitkumar Karwar79d9a542014-02-07 16:27:27 -0800303/* Clear SU Beanformer, MU beanformer, MU beanformee and
304 * sounding dimensions bits
305 */
306#define MWIFIEX_DEF_11AC_CAP_BF_RESET_MASK \
307 (IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE | \
308 IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE | \
309 IEEE80211_VHT_CAP_MU_BEAMFORMEE_CAPABLE | \
310 IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK)
311
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700312#define MOD_CLASS_HR_DSSS 0x03
313#define MOD_CLASS_OFDM 0x07
314#define MOD_CLASS_HT 0x08
315#define HT_BW_20 0
316#define HT_BW_40 1
317
Amitkumar Karwarb8876642013-06-18 16:36:58 -0700318#define DFS_CHAN_MOVE_TIME 10000
319
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700320#define HostCmd_CMD_GET_HW_SPEC 0x0003
321#define HostCmd_CMD_802_11_SCAN 0x0006
322#define HostCmd_CMD_802_11_GET_LOG 0x000b
323#define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
324#define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
325#define HostCmd_CMD_802_11_ASSOCIATE 0x0012
326#define HostCmd_CMD_802_11_SNMP_MIB 0x0016
327#define HostCmd_CMD_MAC_REG_ACCESS 0x0019
328#define HostCmd_CMD_BBP_REG_ACCESS 0x001a
329#define HostCmd_CMD_RF_REG_ACCESS 0x001b
330#define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
Amitkumar Karwarcaa89842012-06-27 19:57:57 -0700331#define HostCmd_CMD_RF_TX_PWR 0x001e
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700332#define HostCmd_CMD_RF_ANTENNA 0x0020
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700333#define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
334#define HostCmd_CMD_MAC_CONTROL 0x0028
335#define HostCmd_CMD_802_11_AD_HOC_START 0x002b
336#define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
337#define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
338#define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
339#define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
340#define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800341#define HostCmd_CMD_802_11_BG_SCAN_CONFIG 0x006b
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700342#define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
343#define HostCmd_CMD_WMM_GET_STATUS 0x0071
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700344#define HostCmd_CMD_802_11_SUBSCRIBE_EVENT 0x0075
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700345#define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
346#define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
Chin-ran Loc2c6c852015-05-12 00:48:17 +0530347#define HostCmd_CMD_MEM_ACCESS 0x0086
Amitkumar Karwar388ec382013-05-17 17:50:25 -0700348#define HostCmd_CMD_CFG_DATA 0x008f
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700349#define HostCmd_CMD_VERSION_EXT 0x0097
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800350#define HostCmd_CMD_MEF_CFG 0x009a
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700351#define HostCmd_CMD_RSSI_INFO 0x00a4
352#define HostCmd_CMD_FUNC_INIT 0x00a9
353#define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
Avinash Patiled5cfbe2015-06-03 16:59:33 +0530354#define HOST_CMD_APCMD_SYS_RESET 0x00af
Avinash Patil40d07032012-05-08 18:30:19 -0700355#define HostCmd_CMD_UAP_SYS_CONFIG 0x00b0
356#define HostCmd_CMD_UAP_BSS_START 0x00b1
357#define HostCmd_CMD_UAP_BSS_STOP 0x00b2
Xinming Hub21783e2015-06-03 16:59:39 +0530358#define HOST_CMD_APCMD_STA_LIST 0x00b3
Avinash Patil0f9e9b82013-05-17 17:50:23 -0700359#define HostCmd_CMD_UAP_STA_DEAUTH 0x00b5
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700360#define HostCmd_CMD_11N_CFG 0x00cd
361#define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
362#define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
363#define HostCmd_CMD_11N_DELBA 0x00d0
364#define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
Avinash Patil85afb182015-01-28 15:54:21 +0530365#define HostCmd_CMD_CHAN_REPORT_REQUEST 0x00dd
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700366#define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
367#define HostCmd_CMD_TXPWR_CFG 0x00d1
368#define HostCmd_CMD_TX_RATE_CFG 0x00d6
Amitkumar Karwar46dbe242015-10-09 04:26:23 -0700369#define HostCmd_CMD_ROBUST_COEX 0x00e0
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700370#define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
371#define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700372#define HostCmd_CMD_P2P_MODE_CFG 0x00eb
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700373#define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
374#define HostCmd_CMD_SET_BSS_MODE 0x00f7
Amitkumar Karward930fae2011-10-11 17:41:21 -0700375#define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800376#define HostCmd_CMD_802_11_SCAN_EXT 0x0107
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -0700377#define HostCmd_CMD_COALESCE_CFG 0x010a
Stone Piao3cec6872012-09-25 20:23:34 -0700378#define HostCmd_CMD_MGMT_FRAME_REG 0x010c
Stone Piao7feb4c42012-09-25 20:23:36 -0700379#define HostCmd_CMD_REMAIN_ON_CHAN 0x010d
Ganapathi Bhatf6b1cbe2016-04-05 01:04:34 -0700380#define HostCmd_CMD_GTK_REKEY_OFFLOAD_CFG 0x010f
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -0700381#define HostCmd_CMD_11AC_CFG 0x0112
chunfan chen8de00f12016-01-13 01:26:55 -0800382#define HostCmd_CMD_HS_WAKEUP_REASON 0x0116
Xinming Hu449b8bb2015-06-22 19:06:12 +0530383#define HostCmd_CMD_TDLS_CONFIG 0x0100
Avinash Patild5b036c2015-06-22 19:06:20 +0530384#define HostCmd_CMD_MC_POLICY 0x0121
Avinash Patil429d90d2014-02-07 16:27:34 -0800385#define HostCmd_CMD_TDLS_OPER 0x0122
Zhaoyang Liu92263a82015-03-13 17:37:58 +0530386#define HostCmd_CMD_SDIO_SP_RX_AGGR_CFG 0x0223
Amitkumar Karwar41960b42016-08-09 20:20:45 +0530387#define HostCmd_CMD_CHAN_REGION_CFG 0x0242
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700388
Avinash Patilf752dcd2012-05-08 18:30:26 -0700389#define PROTOCOL_NO_SECURITY 0x01
390#define PROTOCOL_STATIC_WEP 0x02
391#define PROTOCOL_WPA 0x08
392#define PROTOCOL_WPA2 0x20
393#define PROTOCOL_WPA2_MIXED 0x28
394#define PROTOCOL_EAP 0x40
395#define KEY_MGMT_NONE 0x04
396#define KEY_MGMT_PSK 0x02
397#define KEY_MGMT_EAP 0x01
398#define CIPHER_TKIP 0x04
399#define CIPHER_AES_CCMP 0x08
400#define VALID_CIPHER_BITMAP 0x0c
401
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700402enum ENH_PS_MODES {
403 EN_PS = 1,
404 DIS_PS = 2,
405 EN_AUTO_DS = 3,
406 DIS_AUTO_DS = 4,
407 SLEEP_CONFIRM = 5,
408 GET_PS = 0,
409 EN_AUTO_PS = 0xff,
410 DIS_AUTO_PS = 0xfe,
411};
412
Stone Piaoe1a2b7a2012-09-25 20:23:41 -0700413enum P2P_MODES {
414 P2P_MODE_DISABLE = 0,
415 P2P_MODE_DEVICE = 1,
416 P2P_MODE_GO = 2,
417 P2P_MODE_CLIENT = 3,
418};
419
Amitkumar Karwar72539792016-08-09 20:20:46 +0530420enum mwifiex_channel_flags {
421 MWIFIEX_CHANNEL_PASSIVE = BIT(0),
422 MWIFIEX_CHANNEL_DFS = BIT(1),
423 MWIFIEX_CHANNEL_NOHT40 = BIT(2),
424 MWIFIEX_CHANNEL_NOHT80 = BIT(3),
425 MWIFIEX_CHANNEL_DISABLED = BIT(7),
426};
427
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700428#define HostCmd_RET_BIT 0x8000
429#define HostCmd_ACT_GEN_GET 0x0000
430#define HostCmd_ACT_GEN_SET 0x0001
Stone Piao7feb4c42012-09-25 20:23:36 -0700431#define HostCmd_ACT_GEN_REMOVE 0x0004
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -0700432#define HostCmd_ACT_BITWISE_SET 0x0002
433#define HostCmd_ACT_BITWISE_CLR 0x0003
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434#define HostCmd_RESULT_OK 0x0000
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700435
436#define HostCmd_ACT_MAC_RX_ON 0x0001
437#define HostCmd_ACT_MAC_TX_ON 0x0002
438#define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
439#define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
440#define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
441#define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700442#define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
443
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700444#define HostCmd_BSS_MODE_IBSS 0x0002
445#define HostCmd_BSS_MODE_ANY 0x0003
446
447#define HostCmd_SCAN_RADIO_TYPE_BG 0
448#define HostCmd_SCAN_RADIO_TYPE_A 1
449
Amitkumar Karwarcc0b5a62013-03-04 16:27:57 -0800450#define HS_CFG_CANCEL 0xffffffff
451#define HS_CFG_COND_DEF 0x00000000
452#define HS_CFG_GPIO_DEF 0xff
Bing Zhao915f36d2014-05-27 21:39:34 -0700453#define HS_CFG_GAP_DEF 0xff
Amitkumar Karwar0d7f53e2013-03-04 16:27:58 -0800454#define HS_CFG_COND_BROADCAST_DATA 0x00000001
455#define HS_CFG_COND_UNICAST_DATA 0x00000002
456#define HS_CFG_COND_MAC_EVENT 0x00000004
457#define HS_CFG_COND_MULTICAST_DATA 0x00000008
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700458
Avinash Patil12d11102015-06-03 16:59:31 +0530459#define CONNECT_ERR_AUTH_ERR_STA_FAILURE 0xFFFB
460#define CONNECT_ERR_ASSOC_ERR_TIMEOUT 0xFFFC
461#define CONNECT_ERR_ASSOC_ERR_AUTH_REFUSED 0xFFFD
462#define CONNECT_ERR_AUTH_MSG_UNHANDLED 0xFFFE
463#define CONNECT_ERR_STA_FAILURE 0xFFFF
464
Amitkumar Karwar7532c7d2013-01-17 17:41:57 -0800465
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466#define CMD_F_HOSTCMD (1 << 0)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700467
468#define HostCmd_CMD_ID_MASK 0x0fff
469
470#define HostCmd_SEQ_NUM_MASK 0x00ff
471
472#define HostCmd_BSS_NUM_MASK 0x0f00
473
474#define HostCmd_BSS_TYPE_MASK 0xf000
475
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700476#define HostCmd_ACT_SET_RX 0x0001
477#define HostCmd_ACT_SET_TX 0x0002
478#define HostCmd_ACT_SET_BOTH 0x0003
Shengzhen Li3ee71282016-06-06 13:02:38 -0400479#define HostCmd_ACT_GET_RX 0x0004
480#define HostCmd_ACT_GET_TX 0x0008
481#define HostCmd_ACT_GET_BOTH 0x000c
Amitkumar Karwar8a279d52012-07-02 19:32:33 -0700482
483#define RF_ANTENNA_AUTO 0xFFFF
484
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700485#define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
486 (((seq) & 0x00ff) | \
487 (((num) & 0x000f) << 8)) | \
488 (((type) & 0x000f) << 12); }
489
490#define HostCmd_GET_SEQ_NO(seq) \
491 ((seq) & HostCmd_SEQ_NUM_MASK)
492
493#define HostCmd_GET_BSS_NO(seq) \
494 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
495
496#define HostCmd_GET_BSS_TYPE(seq) \
497 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
498
499#define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
500#define EVENT_LINK_LOST 0x00000003
501#define EVENT_LINK_SENSED 0x00000004
502#define EVENT_MIB_CHANGED 0x00000006
503#define EVENT_INIT_DONE 0x00000007
504#define EVENT_DEAUTHENTICATED 0x00000008
505#define EVENT_DISASSOCIATED 0x00000009
506#define EVENT_PS_AWAKE 0x0000000a
507#define EVENT_PS_SLEEP 0x0000000b
508#define EVENT_MIC_ERR_MULTICAST 0x0000000d
509#define EVENT_MIC_ERR_UNICAST 0x0000000e
510#define EVENT_DEEP_SLEEP_AWAKE 0x00000010
511#define EVENT_ADHOC_BCN_LOST 0x00000011
512
513#define EVENT_WMM_STATUS_CHANGE 0x00000017
514#define EVENT_BG_SCAN_REPORT 0x00000018
515#define EVENT_RSSI_LOW 0x00000019
516#define EVENT_SNR_LOW 0x0000001a
517#define EVENT_MAX_FAIL 0x0000001b
518#define EVENT_RSSI_HIGH 0x0000001c
519#define EVENT_SNR_HIGH 0x0000001d
520#define EVENT_IBSS_COALESCED 0x0000001e
Xinming Hu432da7d2016-07-25 21:21:10 +0530521#define EVENT_IBSS_STA_CONNECT 0x00000020
522#define EVENT_IBSS_STA_DISCONNECT 0x00000021
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700523#define EVENT_DATA_RSSI_LOW 0x00000024
524#define EVENT_DATA_SNR_LOW 0x00000025
525#define EVENT_DATA_RSSI_HIGH 0x00000026
526#define EVENT_DATA_SNR_HIGH 0x00000027
527#define EVENT_LINK_QUALITY 0x00000028
528#define EVENT_PORT_RELEASE 0x0000002b
Avinash Patile5686342012-05-08 18:30:25 -0700529#define EVENT_UAP_STA_DEAUTH 0x0000002c
530#define EVENT_UAP_STA_ASSOC 0x0000002d
531#define EVENT_UAP_BSS_START 0x0000002e
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700532#define EVENT_PRE_BEACON_LOST 0x00000031
533#define EVENT_ADDBA 0x00000033
534#define EVENT_DELBA 0x00000034
535#define EVENT_BA_STREAM_TIEMOUT 0x00000037
536#define EVENT_AMSDU_AGGR_CTRL 0x00000042
Avinash Patile5686342012-05-08 18:30:25 -0700537#define EVENT_UAP_BSS_IDLE 0x00000043
538#define EVENT_UAP_BSS_ACTIVE 0x00000044
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700539#define EVENT_WEP_ICV_ERR 0x00000046
540#define EVENT_HS_ACT_REQ 0x00000047
541#define EVENT_BW_CHANGE 0x00000048
Avinash Patile5686342012-05-08 18:30:25 -0700542#define EVENT_UAP_MIC_COUNTERMEASURES 0x0000004c
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700543#define EVENT_HOSTWAKE_STAIE 0x0000004d
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -0700544#define EVENT_CHANNEL_SWITCH_ANN 0x00000050
Avinash Patil79ff4342014-05-06 22:02:44 -0700545#define EVENT_TDLS_GENERIC_EVENT 0x00000052
Avinash Patil3b57c1a2015-01-28 15:54:23 +0530546#define EVENT_RADAR_DETECTED 0x00000053
Avinash Patil0a694d62015-01-28 15:54:22 +0530547#define EVENT_CHANNEL_REPORT_RDY 0x00000054
Avinash Patil4e6ee912015-06-22 19:06:07 +0530548#define EVENT_TX_DATA_PAUSE 0x00000055
Amitkumar Karwar21f58d202014-02-11 18:39:56 -0800549#define EVENT_EXT_SCAN_REPORT 0x00000058
Xinming Hu99ffe722016-07-25 21:21:08 +0530550#define EVENT_RXBA_SYNC 0x00000059
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800551#define EVENT_BG_SCAN_STOPPED 0x00000065
Stone Piaoeab1c762012-09-25 20:23:37 -0700552#define EVENT_REMAIN_ON_CHAN_EXPIRED 0x0000005f
Avinash Patil8d6b5382015-06-22 19:06:23 +0530553#define EVENT_MULTI_CHAN_INFO 0x0000006a
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800554#define EVENT_TX_STATUS_REPORT 0x00000074
Chunfan Chend219b7e2015-06-10 06:19:48 -0700555#define EVENT_BT_COEX_WLAN_PARA_CHANGE 0X00000076
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700556
557#define EVENT_ID_MASK 0xffff
558#define BSS_NUM_MASK 0xf
559
560#define EVENT_GET_BSS_NUM(event_cause) \
561 (((event_cause) >> 16) & BSS_NUM_MASK)
562
563#define EVENT_GET_BSS_TYPE(event_cause) \
564 (((event_cause) >> 24) & 0x00ff)
565
Xinming Hub0922ff2015-12-14 04:15:06 -0800566#define MWIFIEX_MAX_PATTERN_LEN 40
Amitkumar Karwarafd84de42013-08-05 18:51:59 -0700567#define MWIFIEX_MAX_OFFSET_LEN 100
chunfan chen7d7f07d2016-01-13 01:26:54 -0800568#define MWIFIEX_MAX_ND_MATCH_SETS 10
569
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800570#define STACK_NBYTES 100
571#define TYPE_DNUM 1
572#define TYPE_BYTESEQ 2
573#define MAX_OPERAND 0x40
574#define TYPE_EQ (MAX_OPERAND+1)
575#define TYPE_EQ_DNUM (MAX_OPERAND+2)
576#define TYPE_EQ_BIT (MAX_OPERAND+3)
577#define TYPE_AND (MAX_OPERAND+4)
578#define TYPE_OR (MAX_OPERAND+5)
579#define MEF_MODE_HOST_SLEEP 1
580#define MEF_ACTION_ALLOW_AND_WAKEUP_HOST 3
Maithili Hingeb533be12015-03-12 00:38:39 -0700581#define MEF_ACTION_AUTO_ARP 0x10
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800582#define MWIFIEX_CRITERIA_BROADCAST BIT(0)
583#define MWIFIEX_CRITERIA_UNICAST BIT(1)
584#define MWIFIEX_CRITERIA_MULTICAST BIT(3)
Maithili Hingeb533be12015-03-12 00:38:39 -0700585#define MWIFIEX_MAX_SUPPORTED_IPADDR 4
Amitkumar Karwar7da060c2013-03-04 16:27:59 -0800586
Avinash Patil429d90d2014-02-07 16:27:34 -0800587#define ACT_TDLS_DELETE 0x00
588#define ACT_TDLS_CREATE 0x01
589#define ACT_TDLS_CONFIG 0x02
Xinming Huf7669872015-06-22 19:06:11 +0530590
591#define TDLS_EVENT_LINK_TEAR_DOWN 3
592#define TDLS_EVENT_CHAN_SWITCH_RESULT 7
593#define TDLS_EVENT_START_CHAN_SWITCH 8
594#define TDLS_EVENT_CHAN_SWITCH_STOPPED 9
595
596#define TDLS_BASE_CHANNEL 0
597#define TDLS_OFF_CHANNEL 1
Avinash Patil429d90d2014-02-07 16:27:34 -0800598
Xinming Hu449b8bb2015-06-22 19:06:12 +0530599#define ACT_TDLS_CS_ENABLE_CONFIG 0x00
600#define ACT_TDLS_CS_INIT 0x06
601#define ACT_TDLS_CS_STOP 0x07
602#define ACT_TDLS_CS_PARAMS 0x08
603
604#define MWIFIEX_DEF_CS_UNIT_TIME 2
605#define MWIFIEX_DEF_CS_THR_OTHERLINK 10
606#define MWIFIEX_DEF_THR_DIRECTLINK 0
607#define MWIFIEX_DEF_CS_TIME 10
608#define MWIFIEX_DEF_CS_TIMEOUT 16
609#define MWIFIEX_DEF_CS_REG_CLASS 12
610#define MWIFIEX_DEF_CS_PERIODICITY 1
611
Amitkumar Karwar8e17ea22014-03-07 19:41:26 -0800612#define MWIFIEX_FW_V15 15
613
Avinash Patilcf075ea2015-01-28 15:54:25 +0530614#define MWIFIEX_MASTER_RADAR_DET_MASK BIT(1)
615
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700616struct mwifiex_ie_types_header {
617 __le16 type;
618 __le16 len;
619} __packed;
620
621struct mwifiex_ie_types_data {
622 struct mwifiex_ie_types_header header;
623 u8 data[1];
624} __packed;
625
626#define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
627#define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
Avinash Patilb23bce22014-02-07 16:27:32 -0800628#define MWIFIEX_TXPD_FLAGS_TDLS_PACKET 0x10
Avinash Patil09869492014-05-21 22:02:31 -0700629#define MWIFIEX_RXPD_FLAGS_TDLS_PACKET 0x01
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800630#define MWIFIEX_TXPD_FLAGS_REQ_TX_STATUS 0x20
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700631
chunfan chen8de00f12016-01-13 01:26:55 -0800632enum HS_WAKEUP_REASON {
633 NO_HSWAKEUP_REASON = 0,
634 BCAST_DATA_MATCHED,
635 MCAST_DATA_MATCHED,
636 UCAST_DATA_MATCHED,
637 MASKTABLE_EVENT_MATCHED,
638 NON_MASKABLE_EVENT_MATCHED,
639 NON_MASKABLE_CONDITION_MATCHED,
640 MAGIC_PATTERN_MATCHED,
641 CONTROL_FRAME_MATCHED,
642 MANAGEMENT_FRAME_MATCHED,
Ganapathi Bhat8fa0a0d2016-04-05 01:04:35 -0700643 GTK_REKEY_FAILURE,
chunfan chen8de00f12016-01-13 01:26:55 -0800644 RESERVED
645};
646
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700647struct txpd {
648 u8 bss_type;
649 u8 bss_num;
650 __le16 tx_pkt_length;
651 __le16 tx_pkt_offset;
652 __le16 tx_pkt_type;
653 __le32 tx_control;
654 u8 priority;
655 u8 flags;
656 u8 pkt_delay_2ms;
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800657 u8 reserved1[2];
658 u8 tx_token_id;
659 u8 reserved[2];
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700660} __packed;
661
662struct rxpd {
663 u8 bss_type;
664 u8 bss_num;
Amitkumar Karwared1ea6f2012-08-03 18:06:02 -0700665 __le16 rx_pkt_length;
666 __le16 rx_pkt_offset;
667 __le16 rx_pkt_type;
668 __le16 seq_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700669 u8 priority;
670 u8 rx_rate;
671 s8 snr;
672 s8 nf;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800673
674 /* For: Non-802.11 AC cards
675 *
676 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700677 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -0800678 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
679 *
680 * For: 802.11 AC cards
681 * [Bit 1] [Bit 0] RxRate format: legacy rate = 00 HT = 01 VHT = 10
682 * [Bit 3] [Bit 2] HT/VHT Bandwidth BW20 = 00 BW40 = 01
683 * BW80 = 10 BW160 = 11
684 * [Bit 4] HT/VHT Guard interval LGI = 0 SGI = 1
685 * [Bit 5] STBC support Enabled = 1
686 * [Bit 6] LDPC support Enabled = 1
687 * [Bit 7] Reserved
688 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700689 u8 ht_info;
Avinash Patil9d31c1c2014-11-13 21:54:13 +0530690 u8 reserved[3];
Avinash Patil09869492014-05-21 22:02:31 -0700691 u8 flags;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700692} __packed;
693
Avinash Patil838e4f42012-08-03 18:06:08 -0700694struct uap_txpd {
695 u8 bss_type;
696 u8 bss_num;
697 __le16 tx_pkt_length;
698 __le16 tx_pkt_offset;
699 __le16 tx_pkt_type;
700 __le32 tx_control;
701 u8 priority;
702 u8 flags;
703 u8 pkt_delay_2ms;
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -0800704 u8 reserved1[2];
705 u8 tx_token_id;
706 u8 reserved[2];
Avinash Patil838e4f42012-08-03 18:06:08 -0700707};
708
709struct uap_rxpd {
710 u8 bss_type;
711 u8 bss_num;
712 __le16 rx_pkt_length;
713 __le16 rx_pkt_offset;
714 __le16 rx_pkt_type;
715 __le16 seq_num;
716 u8 priority;
Xinming Hu442f6f92015-06-03 16:59:38 +0530717 u8 rx_rate;
718 s8 snr;
719 s8 nf;
720 u8 ht_info;
721 u8 reserved[3];
722 u8 flags;
Avinash Patil838e4f42012-08-03 18:06:08 -0700723};
724
Avinash Patilbf354432014-10-31 16:08:26 +0530725struct mwifiex_fw_chan_stats {
726 u8 chan_num;
727 u8 bandcfg;
728 u8 flags;
729 s8 noise;
730 __le16 total_bss;
731 __le16 cca_scan_dur;
732 __le16 cca_busy_dur;
733} __packed;
734
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700735enum mwifiex_chan_scan_mode_bitmasks {
736 MWIFIEX_PASSIVE_SCAN = BIT(0),
737 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
chunfan chen2375fa22015-08-05 06:09:42 -0700738 MWIFIEX_HIDDEN_SSID_REPORT = BIT(4),
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700739};
740
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700741struct mwifiex_chan_scan_param_set {
742 u8 radio_type;
743 u8 chan_number;
744 u8 chan_scan_mode_bitmap;
745 __le16 min_scan_time;
746 __le16 max_scan_time;
747} __packed;
748
749struct mwifiex_ie_types_chan_list_param_set {
750 struct mwifiex_ie_types_header header;
751 struct mwifiex_chan_scan_param_set chan_scan_param[1];
752} __packed;
753
Xinming Hu99ffe722016-07-25 21:21:08 +0530754struct mwifiex_ie_types_rxba_sync {
755 struct mwifiex_ie_types_header header;
756 u8 mac[ETH_ALEN];
757 u8 tid;
758 u8 reserved;
759 __le16 seq_num;
760 __le16 bitmap_len;
761 u8 bitmap[1];
762} __packed;
763
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700764struct chan_band_param_set {
765 u8 radio_type;
766 u8 chan_number;
767};
768
769struct mwifiex_ie_types_chan_band_list_param_set {
770 struct mwifiex_ie_types_header header;
771 struct chan_band_param_set chan_band_param[1];
772} __packed;
773
774struct mwifiex_ie_types_rates_param_set {
775 struct mwifiex_ie_types_header header;
776 u8 rates[1];
777} __packed;
778
779struct mwifiex_ie_types_ssid_param_set {
780 struct mwifiex_ie_types_header header;
781 u8 ssid[1];
782} __packed;
783
784struct mwifiex_ie_types_num_probes {
785 struct mwifiex_ie_types_header header;
786 __le16 num_probes;
787} __packed;
788
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800789struct mwifiex_ie_types_repeat_count {
790 struct mwifiex_ie_types_header header;
791 __le16 repeat_count;
792} __packed;
793
Ganapathi Bhatfdcab082016-01-13 01:26:56 -0800794struct mwifiex_ie_types_min_rssi_threshold {
795 struct mwifiex_ie_types_header header;
796 __le16 rssi_threshold;
797} __packed;
798
Xinming Hu0c9b7f22016-01-13 01:26:52 -0800799struct mwifiex_ie_types_bgscan_start_later {
800 struct mwifiex_ie_types_header header;
801 __le16 start_later;
802} __packed;
803
Avinash Patilcb91be82014-09-12 20:08:54 +0530804struct mwifiex_ie_types_scan_chan_gap {
805 struct mwifiex_ie_types_header header;
806 /* time gap in TUs to be used between two consecutive channels scan */
807 __le16 chan_gap;
808} __packed;
809
Ganapathi Bhatc2a8f0f2016-07-25 21:21:07 +0530810struct mwifiex_ie_types_random_mac {
811 struct mwifiex_ie_types_header header;
812 u8 mac[ETH_ALEN];
813} __packed;
814
Avinash Patilbf354432014-10-31 16:08:26 +0530815struct mwifiex_ietypes_chanstats {
816 struct mwifiex_ie_types_header header;
817 struct mwifiex_fw_chan_stats chanstats[0];
818} __packed;
819
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700820struct mwifiex_ie_types_wildcard_ssid_params {
821 struct mwifiex_ie_types_header header;
822 u8 max_ssid_length;
823 u8 ssid[1];
824} __packed;
825
826#define TSF_DATA_SIZE 8
827struct mwifiex_ie_types_tsf_timestamp {
828 struct mwifiex_ie_types_header header;
829 u8 tsf_data[1];
830} __packed;
831
832struct mwifiex_cf_param_set {
833 u8 cfp_cnt;
834 u8 cfp_period;
Ujjal Roy4348d082013-12-02 23:17:48 -0800835 __le16 cfp_max_duration;
836 __le16 cfp_duration_remaining;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700837} __packed;
838
839struct mwifiex_ibss_param_set {
Ujjal Roy4348d082013-12-02 23:17:48 -0800840 __le16 atim_window;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700841} __packed;
842
843struct mwifiex_ie_types_ss_param_set {
844 struct mwifiex_ie_types_header header;
845 union {
846 struct mwifiex_cf_param_set cf_param_set[1];
847 struct mwifiex_ibss_param_set ibss_param_set[1];
848 } cf_ibss;
849} __packed;
850
851struct mwifiex_fh_param_set {
Ujjal Roy4348d082013-12-02 23:17:48 -0800852 __le16 dwell_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700853 u8 hop_set;
854 u8 hop_pattern;
855 u8 hop_index;
856} __packed;
857
858struct mwifiex_ds_param_set {
859 u8 current_chan;
860} __packed;
861
862struct mwifiex_ie_types_phy_param_set {
863 struct mwifiex_ie_types_header header;
864 union {
865 struct mwifiex_fh_param_set fh_param_set[1];
866 struct mwifiex_ds_param_set ds_param_set[1];
867 } fh_ds;
868} __packed;
869
870struct mwifiex_ie_types_auth_type {
871 struct mwifiex_ie_types_header header;
872 __le16 auth_type;
873} __packed;
874
875struct mwifiex_ie_types_vendor_param_set {
876 struct mwifiex_ie_types_header header;
877 u8 ie[MWIFIEX_MAX_VSIE_LEN];
878};
879
Bing Zhao30fa51c2014-07-11 20:57:13 -0700880#define MWIFIEX_TDLS_IDLE_TIMEOUT_IN_SEC 60
Avinash Patild29caf22014-05-06 22:02:43 -0700881
882struct mwifiex_ie_types_tdls_idle_timeout {
883 struct mwifiex_ie_types_header header;
884 __le16 value;
885} __packed;
886
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700887struct mwifiex_ie_types_rsn_param_set {
888 struct mwifiex_ie_types_header header;
889 u8 rsn_ie[1];
890} __packed;
891
892#define KEYPARAMSET_FIXED_LEN 6
893
894struct mwifiex_ie_type_key_param_set {
895 __le16 type;
896 __le16 length;
897 __le16 key_type_id;
898 __le16 key_info;
899 __le16 key_len;
900 u8 key[50];
901} __packed;
902
Ying Luob877f4c2012-08-03 18:06:14 -0700903#define IGTK_PN_LEN 8
904
905struct mwifiex_cmac_param {
906 u8 ipn[IGTK_PN_LEN];
907 u8 key[WLAN_KEY_LEN_AES_CMAC];
908} __packed;
909
Avinash Patile57f1732014-02-07 16:32:35 -0800910struct mwifiex_wep_param {
911 __le16 key_len;
912 u8 key[WLAN_KEY_LEN_WEP104];
913} __packed;
914
915struct mwifiex_tkip_param {
916 u8 pn[WPA_PN_SIZE];
917 __le16 key_len;
918 u8 key[WLAN_KEY_LEN_TKIP];
919} __packed;
920
921struct mwifiex_aes_param {
922 u8 pn[WPA_PN_SIZE];
923 __le16 key_len;
924 u8 key[WLAN_KEY_LEN_CCMP];
925} __packed;
926
927struct mwifiex_wapi_param {
928 u8 pn[PN_LEN];
929 __le16 key_len;
930 u8 key[WLAN_KEY_LEN_SMS4];
931} __packed;
932
933struct mwifiex_cmac_aes_param {
934 u8 ipn[IGTK_PN_LEN];
935 __le16 key_len;
936 u8 key[WLAN_KEY_LEN_AES_CMAC];
937} __packed;
938
939struct mwifiex_ie_type_key_param_set_v2 {
940 __le16 type;
941 __le16 len;
942 u8 mac_addr[ETH_ALEN];
943 u8 key_idx;
944 u8 key_type;
945 __le16 key_info;
946 union {
947 struct mwifiex_wep_param wep;
948 struct mwifiex_tkip_param tkip;
949 struct mwifiex_aes_param aes;
950 struct mwifiex_wapi_param wapi;
951 struct mwifiex_cmac_aes_param cmac_aes;
952 } key_params;
953} __packed;
954
955struct host_cmd_ds_802_11_key_material_v2 {
956 __le16 action;
957 struct mwifiex_ie_type_key_param_set_v2 key_param_set;
958} __packed;
959
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700960struct host_cmd_ds_802_11_key_material {
961 __le16 action;
962 struct mwifiex_ie_type_key_param_set key_param_set;
963} __packed;
964
965struct host_cmd_ds_gen {
Ujjal Roy4348d082013-12-02 23:17:48 -0800966 __le16 command;
967 __le16 size;
968 __le16 seq_num;
969 __le16 result;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700970};
971
972#define S_DS_GEN sizeof(struct host_cmd_ds_gen)
973
974enum sleep_resp_ctrl {
975 RESP_NOT_NEEDED = 0,
976 RESP_NEEDED,
977};
978
979struct mwifiex_ps_param {
980 __le16 null_pkt_interval;
981 __le16 multiple_dtims;
982 __le16 bcn_miss_timeout;
983 __le16 local_listen_interval;
984 __le16 adhoc_wake_period;
985 __le16 mode;
986 __le16 delay_to_ps;
987};
988
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700989#define BITMAP_AUTO_DS 0x01
990#define BITMAP_STA_PS 0x10
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700991
992struct mwifiex_ie_types_auto_ds_param {
993 struct mwifiex_ie_types_header header;
Marc Yang2b06bdb2011-03-30 18:12:44 -0700994 __le16 deep_sleep_timeout;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700995} __packed;
996
997struct mwifiex_ie_types_ps_param {
998 struct mwifiex_ie_types_header header;
999 struct mwifiex_ps_param param;
1000} __packed;
1001
1002struct host_cmd_ds_802_11_ps_mode_enh {
1003 __le16 action;
1004
1005 union {
1006 struct mwifiex_ps_param opt_ps;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001007 __le16 ps_bitmap;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001008 } params;
1009} __packed;
1010
Amitkumar Karwar4b9fede2014-08-19 08:24:25 -04001011enum API_VER_ID {
Avinash Patil7f445d02014-02-07 16:30:42 -08001012 KEY_API_VER_ID = 1,
Amitkumar Karwar89be7ce2014-08-19 08:24:26 -04001013 FW_API_VER_ID = 2,
Avinash Patil7f445d02014-02-07 16:30:42 -08001014};
1015
Amitkumar Karwar4b9fede2014-08-19 08:24:25 -04001016struct hw_spec_api_rev {
Avinash Patil7f445d02014-02-07 16:30:42 -08001017 struct mwifiex_ie_types_header header;
1018 __le16 api_id;
1019 u8 major_ver;
1020 u8 minor_ver;
1021} __packed;
1022
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001023struct host_cmd_ds_get_hw_spec {
1024 __le16 hw_if_version;
1025 __le16 version;
1026 __le16 reserved;
1027 __le16 num_of_mcast_adr;
1028 u8 permanent_addr[ETH_ALEN];
1029 __le16 region_code;
1030 __le16 number_of_antenna;
1031 __le32 fw_release_number;
1032 __le32 reserved_1;
1033 __le32 reserved_2;
1034 __le32 reserved_3;
1035 __le32 fw_cap_info;
1036 __le32 dot_11n_dev_cap;
1037 u8 dev_mcs_support;
1038 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001039 __le16 mgmt_buf_count; /* mgmt IE buffer count */
1040 __le32 reserved_5;
1041 __le32 reserved_6;
1042 __le32 dot_11ac_dev_cap;
1043 __le32 dot_11ac_mcs_support;
Avinash Patil7f445d02014-02-07 16:30:42 -08001044 u8 tlvs[0];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001045} __packed;
1046
1047struct host_cmd_ds_802_11_rssi_info {
1048 __le16 action;
1049 __le16 ndata;
1050 __le16 nbcn;
1051 __le16 reserved[9];
1052 long long reserved_1;
1053};
1054
1055struct host_cmd_ds_802_11_rssi_info_rsp {
1056 __le16 action;
1057 __le16 ndata;
1058 __le16 nbcn;
1059 __le16 data_rssi_last;
1060 __le16 data_nf_last;
1061 __le16 data_rssi_avg;
1062 __le16 data_nf_avg;
1063 __le16 bcn_rssi_last;
1064 __le16 bcn_nf_last;
1065 __le16 bcn_rssi_avg;
1066 __le16 bcn_nf_avg;
1067 long long tsf_bcn;
1068};
1069
1070struct host_cmd_ds_802_11_mac_address {
1071 __le16 action;
1072 u8 mac_addr[ETH_ALEN];
1073};
1074
1075struct host_cmd_ds_mac_control {
1076 __le16 action;
1077 __le16 reserved;
1078};
1079
1080struct host_cmd_ds_mac_multicast_adr {
1081 __le16 action;
1082 __le16 num_of_adrs;
1083 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
1084} __packed;
1085
1086struct host_cmd_ds_802_11_deauthenticate {
1087 u8 mac_addr[ETH_ALEN];
1088 __le16 reason_code;
1089} __packed;
1090
1091struct host_cmd_ds_802_11_associate {
1092 u8 peer_sta_addr[ETH_ALEN];
1093 __le16 cap_info_bitmap;
1094 __le16 listen_interval;
1095 __le16 beacon_period;
1096 u8 dtim_period;
1097} __packed;
1098
1099struct ieee_types_assoc_rsp {
1100 __le16 cap_info_bitmap;
1101 __le16 status_code;
1102 __le16 a_id;
Nachiket Kukade44ca5092016-01-31 23:44:46 -08001103 u8 ie_buffer[0];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001104} __packed;
1105
1106struct host_cmd_ds_802_11_associate_rsp {
1107 struct ieee_types_assoc_rsp assoc_rsp;
1108} __packed;
1109
1110struct ieee_types_cf_param_set {
1111 u8 element_id;
1112 u8 len;
1113 u8 cfp_cnt;
1114 u8 cfp_period;
Ujjal Roy4348d082013-12-02 23:17:48 -08001115 __le16 cfp_max_duration;
1116 __le16 cfp_duration_remaining;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001117} __packed;
1118
1119struct ieee_types_ibss_param_set {
1120 u8 element_id;
1121 u8 len;
1122 __le16 atim_window;
1123} __packed;
1124
1125union ieee_types_ss_param_set {
1126 struct ieee_types_cf_param_set cf_param_set;
1127 struct ieee_types_ibss_param_set ibss_param_set;
1128} __packed;
1129
1130struct ieee_types_fh_param_set {
1131 u8 element_id;
1132 u8 len;
1133 __le16 dwell_time;
1134 u8 hop_set;
1135 u8 hop_pattern;
1136 u8 hop_index;
1137} __packed;
1138
1139struct ieee_types_ds_param_set {
1140 u8 element_id;
1141 u8 len;
1142 u8 current_chan;
1143} __packed;
1144
1145union ieee_types_phy_param_set {
1146 struct ieee_types_fh_param_set fh_param_set;
1147 struct ieee_types_ds_param_set ds_param_set;
1148} __packed;
1149
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001150struct ieee_types_oper_mode_ntf {
1151 u8 element_id;
1152 u8 len;
1153 u8 oper_mode;
1154} __packed;
1155
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001156struct host_cmd_ds_802_11_ad_hoc_start {
1157 u8 ssid[IEEE80211_MAX_SSID_LEN];
1158 u8 bss_mode;
1159 __le16 beacon_period;
1160 u8 dtim_period;
1161 union ieee_types_ss_param_set ss_param_set;
1162 union ieee_types_phy_param_set phy_param_set;
1163 u16 reserved1;
1164 __le16 cap_info_bitmap;
Yogesh Ashok Powar63af6332011-11-07 21:41:09 -08001165 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001166} __packed;
1167
Amitkumar Karward5556e82015-12-04 06:13:02 -08001168struct host_cmd_ds_802_11_ad_hoc_start_result {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001169 u8 pad[3];
1170 u8 bssid[ETH_ALEN];
Amitkumar Karward5556e82015-12-04 06:13:02 -08001171 u8 pad2[2];
1172 u8 result;
1173} __packed;
1174
1175struct host_cmd_ds_802_11_ad_hoc_join_result {
1176 u8 result;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001177} __packed;
1178
1179struct adhoc_bss_desc {
1180 u8 bssid[ETH_ALEN];
1181 u8 ssid[IEEE80211_MAX_SSID_LEN];
1182 u8 bss_mode;
1183 __le16 beacon_period;
1184 u8 dtim_period;
1185 u8 time_stamp[8];
1186 u8 local_time[8];
1187 union ieee_types_phy_param_set phy_param_set;
1188 union ieee_types_ss_param_set ss_param_set;
1189 __le16 cap_info_bitmap;
1190 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
1191
1192 /*
1193 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
1194 * It is used in the Adhoc join command and will cause a
1195 * binary layout mismatch with the firmware
1196 */
1197} __packed;
1198
1199struct host_cmd_ds_802_11_ad_hoc_join {
1200 struct adhoc_bss_desc bss_descriptor;
1201 u16 reserved1;
1202 u16 reserved2;
1203} __packed;
1204
1205struct host_cmd_ds_802_11_get_log {
1206 __le32 mcast_tx_frame;
1207 __le32 failed;
1208 __le32 retry;
1209 __le32 multi_retry;
1210 __le32 frame_dup;
1211 __le32 rts_success;
1212 __le32 rts_failure;
1213 __le32 ack_failure;
1214 __le32 rx_frag;
1215 __le32 mcast_rx_frame;
1216 __le32 fcs_error;
1217 __le32 tx_frame;
1218 __le32 reserved;
1219 __le32 wep_icv_err_cnt[4];
Xinming Hud35b6392014-12-23 19:14:06 +05301220 __le32 bcn_rcv_cnt;
1221 __le32 bcn_miss_cnt;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001222};
1223
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001224/* Enumeration for rate format */
1225enum _mwifiex_rate_format {
1226 MWIFIEX_RATE_FORMAT_LG = 0,
1227 MWIFIEX_RATE_FORMAT_HT,
1228 MWIFIEX_RATE_FORMAT_VHT,
1229 MWIFIEX_RATE_FORMAT_AUTO = 0xFF,
1230};
1231
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001232struct host_cmd_ds_tx_rate_query {
1233 u8 tx_rate;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001234 /* Tx Rate Info: For 802.11 AC cards
1235 *
1236 * [Bit 0-1] tx rate formate: LG = 0, HT = 1, VHT = 2
1237 * [Bit 2-3] HT/VHT Bandwidth: BW20 = 0, BW40 = 1, BW80 = 2, BW160 = 3
1238 * [Bit 4] HT/VHT Guard Interval: LGI = 0, SGI = 1
1239 *
1240 * For non-802.11 AC cards
1241 * Ht Info [Bit 0] RxRate format: LG=0, HT=1
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001242 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001243 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1
1244 */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001245 u8 ht_info;
1246} __packed;
1247
Avinash Patil4e6ee912015-06-22 19:06:07 +05301248struct mwifiex_tx_pause_tlv {
1249 struct mwifiex_ie_types_header header;
1250 u8 peermac[ETH_ALEN];
1251 u8 tx_pause;
1252 u8 pkt_cnt;
1253} __packed;
1254
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001255enum Host_Sleep_Action {
1256 HS_CONFIGURE = 0x0001,
1257 HS_ACTIVATE = 0x0002,
1258};
1259
1260struct mwifiex_hs_config_param {
1261 __le32 conditions;
1262 u8 gpio;
1263 u8 gap;
1264} __packed;
1265
1266struct hs_activate_param {
Ujjal Roy4348d082013-12-02 23:17:48 -08001267 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001268} __packed;
1269
1270struct host_cmd_ds_802_11_hs_cfg_enh {
1271 __le16 action;
1272
1273 union {
1274 struct mwifiex_hs_config_param hs_config;
1275 struct hs_activate_param hs_activate;
1276 } params;
1277} __packed;
1278
1279enum SNMP_MIB_INDEX {
1280 OP_RATE_SET_I = 1,
1281 DTIM_PERIOD_I = 3,
1282 RTS_THRESH_I = 5,
1283 SHORT_RETRY_LIM_I = 6,
1284 LONG_RETRY_LIM_I = 7,
1285 FRAG_THRESH_I = 8,
1286 DOT11D_I = 9,
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -07001287 DOT11H_I = 10,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001288};
1289
Avinash Patil12d11102015-06-03 16:59:31 +05301290enum mwifiex_assocmd_failurepoint {
1291 MWIFIEX_ASSOC_CMD_SUCCESS = 0,
1292 MWIFIEX_ASSOC_CMD_FAILURE_ASSOC,
1293 MWIFIEX_ASSOC_CMD_FAILURE_AUTH,
1294 MWIFIEX_ASSOC_CMD_FAILURE_JOIN
1295};
1296
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001297#define MAX_SNMP_BUF_SIZE 128
1298
1299struct host_cmd_ds_802_11_snmp_mib {
1300 __le16 query_type;
1301 __le16 oid;
1302 __le16 buf_size;
1303 u8 value[1];
1304} __packed;
1305
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001306struct mwifiex_rate_scope {
1307 __le16 type;
1308 __le16 length;
1309 __le16 hr_dsss_rate_bitmap;
1310 __le16 ofdm_rate_bitmap;
1311 __le16 ht_mcs_rate_bitmap[8];
Amitkumar Karwara0b7315a2014-03-07 19:41:27 -08001312 __le16 vht_mcs_rate_bitmap[8];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001313} __packed;
1314
1315struct mwifiex_rate_drop_pattern {
1316 __le16 type;
1317 __le16 length;
1318 __le32 rate_drop_mode;
1319} __packed;
1320
1321struct host_cmd_ds_tx_rate_cfg {
1322 __le16 action;
1323 __le16 cfg_index;
1324} __packed;
1325
1326struct mwifiex_power_group {
1327 u8 modulation_class;
1328 u8 first_rate_code;
1329 u8 last_rate_code;
1330 s8 power_step;
1331 s8 power_min;
1332 s8 power_max;
1333 u8 ht_bandwidth;
1334 u8 reserved;
1335} __packed;
1336
1337struct mwifiex_types_power_group {
Amitkumar Karwar930fd352013-10-22 15:24:43 -07001338 __le16 type;
1339 __le16 length;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001340} __packed;
1341
1342struct host_cmd_ds_txpwr_cfg {
1343 __le16 action;
1344 __le16 cfg_index;
1345 __le32 mode;
1346} __packed;
1347
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07001348struct host_cmd_ds_rf_tx_pwr {
1349 __le16 action;
1350 __le16 cur_level;
1351 u8 max_power;
1352 u8 min_power;
1353} __packed;
1354
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07001355struct host_cmd_ds_rf_ant_mimo {
1356 __le16 action_tx;
1357 __le16 tx_ant_mode;
1358 __le16 action_rx;
1359 __le16 rx_ant_mode;
1360};
1361
1362struct host_cmd_ds_rf_ant_siso {
1363 __le16 action;
1364 __le16 ant_mode;
1365};
1366
Avinash Patil429d90d2014-02-07 16:27:34 -08001367struct host_cmd_ds_tdls_oper {
1368 __le16 tdls_action;
1369 __le16 reason;
1370 u8 peer_mac[ETH_ALEN];
1371} __packed;
1372
Xinming Hu449b8bb2015-06-22 19:06:12 +05301373struct mwifiex_tdls_config {
1374 __le16 enable;
1375};
1376
1377struct mwifiex_tdls_config_cs_params {
1378 u8 unit_time;
1379 u8 thr_otherlink;
1380 u8 thr_directlink;
1381};
1382
1383struct mwifiex_tdls_init_cs_params {
1384 u8 peer_mac[ETH_ALEN];
1385 u8 primary_chan;
1386 u8 second_chan_offset;
1387 u8 band;
1388 __le16 switch_time;
1389 __le16 switch_timeout;
1390 u8 reg_class;
1391 u8 periodicity;
1392} __packed;
1393
1394struct mwifiex_tdls_stop_cs_params {
1395 u8 peer_mac[ETH_ALEN];
1396};
1397
1398struct host_cmd_ds_tdls_config {
1399 __le16 tdls_action;
1400 u8 tdls_data[1];
1401} __packed;
1402
Avinash Patil85afb182015-01-28 15:54:21 +05301403struct mwifiex_chan_desc {
1404 __le16 start_freq;
1405 u8 chan_width;
1406 u8 chan_num;
1407} __packed;
1408
1409struct host_cmd_ds_chan_rpt_req {
1410 struct mwifiex_chan_desc chan_desc;
1411 __le32 msec_dwell_time;
1412} __packed;
1413
Avinash Patil0a694d62015-01-28 15:54:22 +05301414struct host_cmd_ds_chan_rpt_event {
1415 __le32 result;
1416 __le64 start_tsf;
1417 __le32 duration;
1418 u8 tlvbuf[0];
1419} __packed;
1420
Zhaoyang Liu92263a82015-03-13 17:37:58 +05301421struct host_cmd_sdio_sp_rx_aggr_cfg {
1422 u8 action;
1423 u8 enable;
1424 __le16 block_size;
1425} __packed;
1426
Amitkumar Karwarb8b3ece2014-02-07 16:23:34 -08001427struct mwifiex_fixed_bcn_param {
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001428 __le64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001429 __le16 beacon_period;
1430 __le16 cap_info_bitmap;
1431} __packed;
1432
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001433struct mwifiex_event_scan_result {
1434 __le16 event_id;
1435 u8 bss_index;
1436 u8 bss_type;
1437 u8 more_event;
1438 u8 reserved[3];
1439 __le16 buf_size;
1440 u8 num_of_set;
1441} __packed;
1442
Amitkumar Karwar808bbeb2014-11-25 06:43:05 -08001443struct tx_status_event {
1444 u8 packet_type;
1445 u8 tx_token_id;
1446 u8 status;
1447} __packed;
1448
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001449#define MWIFIEX_USER_SCAN_CHAN_MAX 50
1450
1451#define MWIFIEX_MAX_SSID_LIST_LENGTH 10
1452
1453struct mwifiex_scan_cmd_config {
1454 /*
Bing Zhaoa8c48562011-05-10 20:47:36 -07001455 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001456 */
1457 u8 bss_mode;
1458
1459 /* Specific BSSID used to filter scan results in the firmware */
1460 u8 specific_bssid[ETH_ALEN];
1461
1462 /* Length of TLVs sent in command starting at tlvBuffer */
1463 u32 tlv_buf_len;
1464
1465 /*
1466 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
1467 *
1468 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
1469 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
1470 */
1471 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
1472 here */
1473} __packed;
1474
1475struct mwifiex_user_scan_chan {
1476 u8 chan_number;
1477 u8 radio_type;
1478 u8 scan_type;
1479 u8 reserved;
1480 u32 scan_time;
1481} __packed;
1482
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001483struct mwifiex_user_scan_cfg {
1484 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001485 * BSS mode to be sent in the firmware command
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001486 */
1487 u8 bss_mode;
1488 /* Configure the number of probe requests for active chan scans */
1489 u8 num_probes;
1490 u8 reserved;
1491 /* BSSID filter sent in the firmware command to limit the results */
1492 u8 specific_bssid[ETH_ALEN];
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001493 /* SSID filter list used in the firmware to limit the scan results */
1494 struct cfg80211_ssid *ssid_list;
1495 u8 num_ssids;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001496 /* Variable number (fixed maximum) of channels to scan up */
1497 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
Avinash Patilcb91be82014-09-12 20:08:54 +05301498 u16 scan_chan_gap;
Ganapathi Bhatc2a8f0f2016-07-25 21:21:07 +05301499 u8 random_mac[ETH_ALEN];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001500} __packed;
1501
Xinming Hu0c9b7f22016-01-13 01:26:52 -08001502#define MWIFIEX_BG_SCAN_CHAN_MAX 38
1503#define MWIFIEX_BSS_MODE_INFRA 1
1504#define MWIFIEX_BGSCAN_ACT_GET 0x0000
1505#define MWIFIEX_BGSCAN_ACT_SET 0x0001
1506#define MWIFIEX_BGSCAN_ACT_SET_ALL 0xff01
1507/** ssid match */
1508#define MWIFIEX_BGSCAN_SSID_MATCH 0x0001
1509/** ssid match and RSSI exceeded */
1510#define MWIFIEX_BGSCAN_SSID_RSSI_MATCH 0x0004
1511/**wait for all channel scan to complete to report scan result*/
1512#define MWIFIEX_BGSCAN_WAIT_ALL_CHAN_DONE 0x80000000
1513
1514struct mwifiex_bg_scan_cfg {
1515 u16 action;
1516 u8 enable;
1517 u8 bss_type;
1518 u8 chan_per_scan;
1519 u32 scan_interval;
1520 u32 report_condition;
1521 u8 num_probes;
1522 u8 rssi_threshold;
1523 u8 snr_threshold;
1524 u16 repeat_count;
1525 u16 start_later;
1526 struct cfg80211_match_set *ssid_list;
1527 u8 num_ssids;
1528 struct mwifiex_user_scan_chan chan_list[MWIFIEX_BG_SCAN_CHAN_MAX];
1529 u16 scan_chan_gap;
1530} __packed;
1531
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001532struct ie_body {
1533 u8 grp_key_oui[4];
1534 u8 ptk_cnt[2];
1535 u8 ptk_body[4];
1536} __packed;
1537
1538struct host_cmd_ds_802_11_scan {
1539 u8 bss_mode;
1540 u8 bssid[ETH_ALEN];
1541 u8 tlv_buffer[1];
1542} __packed;
1543
1544struct host_cmd_ds_802_11_scan_rsp {
1545 __le16 bss_descript_size;
1546 u8 number_of_sets;
1547 u8 bss_desc_and_tlv_buffer[1];
1548} __packed;
1549
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001550struct host_cmd_ds_802_11_scan_ext {
1551 u32 reserved;
1552 u8 tlv_buffer[1];
1553} __packed;
1554
Aniket Nagarnaik40d74122015-07-16 08:05:21 -07001555struct mwifiex_ie_types_bss_mode {
1556 struct mwifiex_ie_types_header header;
1557 u8 bss_mode;
1558} __packed;
1559
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001560struct mwifiex_ie_types_bss_scan_rsp {
1561 struct mwifiex_ie_types_header header;
1562 u8 bssid[ETH_ALEN];
1563 u8 frame_body[1];
1564} __packed;
1565
1566struct mwifiex_ie_types_bss_scan_info {
1567 struct mwifiex_ie_types_header header;
1568 __le16 rssi;
1569 __le16 anpi;
1570 u8 cca_busy_fraction;
1571 u8 radio_type;
1572 u8 channel;
1573 u8 reserved;
1574 __le64 tsf;
1575} __packed;
1576
Xinming Hu0c9b7f22016-01-13 01:26:52 -08001577struct host_cmd_ds_802_11_bg_scan_config {
1578 __le16 action;
1579 u8 enable;
1580 u8 bss_type;
1581 u8 chan_per_scan;
1582 u8 reserved;
1583 __le16 reserved1;
1584 __le32 scan_interval;
1585 __le32 reserved2;
1586 __le32 report_condition;
1587 __le16 reserved3;
1588 u8 tlv[0];
1589} __packed;
1590
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001591struct host_cmd_ds_802_11_bg_scan_query {
1592 u8 flush;
1593} __packed;
1594
1595struct host_cmd_ds_802_11_bg_scan_query_rsp {
Ujjal Roy4348d082013-12-02 23:17:48 -08001596 __le32 report_condition;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001597 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1598} __packed;
1599
1600struct mwifiex_ietypes_domain_param_set {
1601 struct mwifiex_ie_types_header header;
1602 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
1603 struct ieee80211_country_ie_triplet triplet[1];
1604} __packed;
1605
1606struct host_cmd_ds_802_11d_domain_info {
1607 __le16 action;
1608 struct mwifiex_ietypes_domain_param_set domain;
1609} __packed;
1610
1611struct host_cmd_ds_802_11d_domain_info_rsp {
1612 __le16 action;
1613 struct mwifiex_ietypes_domain_param_set domain;
1614} __packed;
1615
1616struct host_cmd_ds_11n_addba_req {
1617 u8 add_req_result;
1618 u8 peer_mac_addr[ETH_ALEN];
1619 u8 dialog_token;
1620 __le16 block_ack_param_set;
1621 __le16 block_ack_tmo;
1622 __le16 ssn;
1623} __packed;
1624
1625struct host_cmd_ds_11n_addba_rsp {
1626 u8 add_rsp_result;
1627 u8 peer_mac_addr[ETH_ALEN];
1628 u8 dialog_token;
1629 __le16 status_code;
1630 __le16 block_ack_param_set;
1631 __le16 block_ack_tmo;
1632 __le16 ssn;
1633} __packed;
1634
1635struct host_cmd_ds_11n_delba {
1636 u8 del_result;
1637 u8 peer_mac_addr[ETH_ALEN];
1638 __le16 del_ba_param_set;
1639 __le16 reason_code;
1640 u8 reserved;
1641} __packed;
1642
1643struct host_cmd_ds_11n_batimeout {
1644 u8 tid;
1645 u8 peer_mac_addr[ETH_ALEN];
1646 u8 origninator;
1647} __packed;
1648
1649struct host_cmd_ds_11n_cfg {
1650 __le16 action;
1651 __le16 ht_tx_cap;
1652 __le16 ht_tx_info;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001653 __le16 misc_config; /* Needed for 802.11AC cards only */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001654} __packed;
1655
1656struct host_cmd_ds_txbuf_cfg {
1657 __le16 action;
1658 __le16 buff_size;
1659 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
1660 __le16 reserved3;
1661} __packed;
1662
1663struct host_cmd_ds_amsdu_aggr_ctrl {
1664 __le16 action;
1665 __le16 enable;
1666 __le16 curr_buf_size;
1667} __packed;
1668
Avinash Patil0f9e9b82013-05-17 17:50:23 -07001669struct host_cmd_ds_sta_deauth {
1670 u8 mac[ETH_ALEN];
1671 __le16 reason;
1672} __packed;
1673
Xinming Hub21783e2015-06-03 16:59:39 +05301674struct mwifiex_ie_types_sta_info {
1675 struct mwifiex_ie_types_header header;
1676 u8 mac[ETH_ALEN];
1677 u8 power_mfg_status;
1678 s8 rssi;
1679};
1680
1681struct host_cmd_ds_sta_list {
Karthik D A902831a2016-07-25 21:21:04 +05301682 __le16 sta_count;
Xinming Hub21783e2015-06-03 16:59:39 +05301683 u8 tlv[0];
1684} __packed;
1685
Amitkumar Karwar2a7305c2013-06-19 08:49:05 -07001686struct mwifiex_ie_types_pwr_capability {
1687 struct mwifiex_ie_types_header header;
1688 s8 min_pwr;
1689 s8 max_pwr;
1690};
1691
1692struct mwifiex_ie_types_local_pwr_constraint {
1693 struct mwifiex_ie_types_header header;
1694 u8 chan;
1695 u8 constraint;
1696};
1697
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001698struct mwifiex_ie_types_wmm_param_set {
1699 struct mwifiex_ie_types_header header;
1700 u8 wmm_ie[1];
1701};
1702
Xinming Hu432da7d2016-07-25 21:21:10 +05301703struct mwifiex_ie_types_mgmt_frame {
1704 struct mwifiex_ie_types_header header;
1705 __le16 frame_control;
1706 u8 frame_contents[0];
1707};
1708
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001709struct mwifiex_ie_types_wmm_queue_status {
1710 struct mwifiex_ie_types_header header;
1711 u8 queue_index;
1712 u8 disabled;
Ujjal Roy4348d082013-12-02 23:17:48 -08001713 __le16 medium_time;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001714 u8 flow_required;
1715 u8 flow_created;
1716 u32 reserved;
1717};
1718
1719struct ieee_types_vendor_header {
1720 u8 element_id;
1721 u8 len;
Amitkumar Karwar2e4c14a2012-04-26 13:02:57 -07001722 u8 oui[4]; /* 0~2: oui, 3: oui_type */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001723 u8 oui_subtype;
1724 u8 version;
1725} __packed;
1726
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001727struct ieee_types_wmm_parameter {
1728 /*
1729 * WMM Parameter IE - Vendor Specific Header:
1730 * element_id [221/0xdd]
1731 * Len [24]
1732 * Oui [00:50:f2]
1733 * OuiType [2]
1734 * OuiSubType [1]
1735 * Version [1]
1736 */
1737 struct ieee_types_vendor_header vend_hdr;
1738 u8 qos_info_bitmap;
1739 u8 reserved;
Johannes Berg99fec5d2012-03-27 14:07:59 +02001740 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001741} __packed;
1742
1743struct ieee_types_wmm_info {
1744
1745 /*
1746 * WMM Info IE - Vendor Specific Header:
1747 * element_id [221/0xdd]
1748 * Len [7]
1749 * Oui [00:50:f2]
1750 * OuiType [2]
1751 * OuiSubType [0]
1752 * Version [1]
1753 */
1754 struct ieee_types_vendor_header vend_hdr;
1755
1756 u8 qos_info_bitmap;
1757} __packed;
1758
1759struct host_cmd_ds_wmm_get_status {
1760 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
Johannes Berg99fec5d2012-03-27 14:07:59 +02001761 IEEE80211_NUM_ACS];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001762 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1763} __packed;
1764
1765struct mwifiex_wmm_ac_status {
1766 u8 disabled;
1767 u8 flow_required;
1768 u8 flow_created;
1769};
1770
1771struct mwifiex_ie_types_htcap {
1772 struct mwifiex_ie_types_header header;
1773 struct ieee80211_ht_cap ht_cap;
1774} __packed;
1775
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001776struct mwifiex_ie_types_vhtcap {
1777 struct mwifiex_ie_types_header header;
1778 struct ieee80211_vht_cap vht_cap;
1779} __packed;
1780
Avinash Patil5f6d5982014-02-07 16:30:39 -08001781struct mwifiex_ie_types_aid {
1782 struct mwifiex_ie_types_header header;
1783 __le16 aid;
1784} __packed;
1785
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001786struct mwifiex_ie_types_oper_mode_ntf {
1787 struct mwifiex_ie_types_header header;
1788 u8 oper_mode;
1789} __packed;
1790
1791/* VHT Operations IE */
1792struct mwifiex_ie_types_vht_oper {
1793 struct mwifiex_ie_types_header header;
1794 u8 chan_width;
1795 u8 chan_center_freq_1;
1796 u8 chan_center_freq_2;
1797 /* Basic MCS set map, each 2 bits stands for a NSS */
Ujjal Roy4348d082013-12-02 23:17:48 -08001798 __le16 basic_mcs_map;
Yogesh Ashok Powara5f39052013-02-15 21:44:30 -08001799} __packed;
1800
Avinash Patil54428c52013-01-02 16:56:01 -08001801struct mwifiex_ie_types_wmmcap {
1802 struct mwifiex_ie_types_header header;
1803 struct mwifiex_types_wmm_info wmm_info;
1804} __packed;
1805
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001806struct mwifiex_ie_types_htinfo {
1807 struct mwifiex_ie_types_header header;
Johannes Berg074d46d2012-03-15 19:45:16 +01001808 struct ieee80211_ht_operation ht_oper;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001809} __packed;
1810
1811struct mwifiex_ie_types_2040bssco {
1812 struct mwifiex_ie_types_header header;
1813 u8 bss_co_2040;
1814} __packed;
1815
1816struct mwifiex_ie_types_extcap {
1817 struct mwifiex_ie_types_header header;
Avinash Patil68f95b092013-08-23 16:48:22 -07001818 u8 ext_capab[0];
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001819} __packed;
1820
Chin-ran Loc2c6c852015-05-12 00:48:17 +05301821struct host_cmd_ds_mem_access {
1822 __le16 action;
1823 __le16 reserved;
1824 __le32 addr;
1825 __le32 value;
1826};
1827
Avinash Patil1f4dfd82014-02-07 16:30:34 -08001828struct mwifiex_ie_types_qos_info {
1829 struct mwifiex_ie_types_header header;
1830 u8 qos_info;
1831} __packed;
1832
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001833struct host_cmd_ds_mac_reg_access {
1834 __le16 action;
1835 __le16 offset;
1836 __le32 value;
1837} __packed;
1838
1839struct host_cmd_ds_bbp_reg_access {
1840 __le16 action;
1841 __le16 offset;
1842 u8 value;
1843 u8 reserved[3];
1844} __packed;
1845
1846struct host_cmd_ds_rf_reg_access {
1847 __le16 action;
1848 __le16 offset;
1849 u8 value;
1850 u8 reserved[3];
1851} __packed;
1852
1853struct host_cmd_ds_pmic_reg_access {
1854 __le16 action;
1855 __le16 offset;
1856 u8 value;
1857 u8 reserved[3];
1858} __packed;
1859
1860struct host_cmd_ds_802_11_eeprom_access {
1861 __le16 action;
1862
1863 __le16 offset;
1864 __le16 byte_count;
1865 u8 value;
1866} __packed;
1867
Avinash Patile5686342012-05-08 18:30:25 -07001868struct mwifiex_assoc_event {
1869 u8 sta_addr[ETH_ALEN];
1870 __le16 type;
1871 __le16 len;
1872 __le16 frame_control;
1873 __le16 cap_info;
1874 __le16 listen_interval;
1875 u8 data[0];
1876} __packed;
1877
Avinash Patil4db16a12012-05-08 18:30:20 -07001878struct host_cmd_ds_sys_config {
1879 __le16 action;
1880 u8 tlv[0];
1881};
Avinash Patilf752dcd2012-05-08 18:30:26 -07001882
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -07001883struct host_cmd_11ac_vht_cfg {
1884 __le16 action;
1885 u8 band_config;
1886 u8 misc_config;
1887 __le32 cap_info;
1888 __le32 mcs_tx_set;
1889 __le32 mcs_rx_set;
1890} __packed;
1891
Avinash Patilf752dcd2012-05-08 18:30:26 -07001892struct host_cmd_tlv_akmp {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001893 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001894 __le16 key_mgmt;
1895 __le16 key_mgmt_operation;
1896} __packed;
1897
1898struct host_cmd_tlv_pwk_cipher {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001899 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001900 __le16 proto;
1901 u8 cipher;
1902 u8 reserved;
1903} __packed;
1904
1905struct host_cmd_tlv_gwk_cipher {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001906 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001907 u8 cipher;
1908 u8 reserved;
1909} __packed;
1910
1911struct host_cmd_tlv_passphrase {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001912 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001913 u8 passphrase[0];
1914} __packed;
1915
Avinash Patil96893532012-06-15 12:21:55 -07001916struct host_cmd_tlv_wep_key {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001917 struct mwifiex_ie_types_header header;
Avinash Patil96893532012-06-15 12:21:55 -07001918 u8 key_index;
1919 u8 is_default;
1920 u8 key[1];
1921};
1922
Avinash Patilf752dcd2012-05-08 18:30:26 -07001923struct host_cmd_tlv_auth_type {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001924 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001925 u8 auth_type;
1926} __packed;
1927
1928struct host_cmd_tlv_encrypt_protocol {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001929 struct mwifiex_ie_types_header header;
Avinash Patilf752dcd2012-05-08 18:30:26 -07001930 __le16 proto;
1931} __packed;
1932
Avinash Patil12190c52012-05-08 18:30:24 -07001933struct host_cmd_tlv_ssid {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001934 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001935 u8 ssid[0];
1936} __packed;
1937
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001938struct host_cmd_tlv_rates {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001939 struct mwifiex_ie_types_header header;
Avinash Patila3c2c4f2012-08-27 20:32:53 -07001940 u8 rates[0];
1941} __packed;
1942
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08001943struct mwifiex_ie_types_bssid_list {
1944 struct mwifiex_ie_types_header header;
1945 u8 bssid[ETH_ALEN];
1946} __packed;
1947
Avinash Patil605b73a2012-05-16 21:24:55 -07001948struct host_cmd_tlv_bcast_ssid {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001949 struct mwifiex_ie_types_header header;
Avinash Patil605b73a2012-05-16 21:24:55 -07001950 u8 bcast_ctl;
1951} __packed;
1952
Avinash Patil12190c52012-05-08 18:30:24 -07001953struct host_cmd_tlv_beacon_period {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001954 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001955 __le16 period;
1956} __packed;
1957
1958struct host_cmd_tlv_dtim_period {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001959 struct mwifiex_ie_types_header header;
Avinash Patil12190c52012-05-08 18:30:24 -07001960 u8 period;
1961} __packed;
Avinash Patil4db16a12012-05-08 18:30:20 -07001962
Avinash Patil9b930ea2012-05-08 18:30:23 -07001963struct host_cmd_tlv_frag_threshold {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001964 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001965 __le16 frag_thr;
1966} __packed;
1967
1968struct host_cmd_tlv_rts_threshold {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001969 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001970 __le16 rts_thr;
1971} __packed;
1972
1973struct host_cmd_tlv_retry_limit {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001974 struct mwifiex_ie_types_header header;
Avinash Patil9b930ea2012-05-08 18:30:23 -07001975 u8 limit;
1976} __packed;
1977
Avinash Patil75edd2c2012-05-08 18:30:18 -07001978struct host_cmd_tlv_mac_addr {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001979 struct mwifiex_ie_types_header header;
Avinash Patil75edd2c2012-05-08 18:30:18 -07001980 u8 mac_addr[ETH_ALEN];
1981} __packed;
1982
Avinash Patil4db16a12012-05-08 18:30:20 -07001983struct host_cmd_tlv_channel_band {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001984 struct mwifiex_ie_types_header header;
Avinash Patil4db16a12012-05-08 18:30:20 -07001985 u8 band_config;
1986 u8 channel;
1987} __packed;
1988
Kevin Gan8b4509f2012-09-25 20:23:45 -07001989struct host_cmd_tlv_ageout_timer {
Amitkumar Karwar6b21a692013-07-22 19:17:57 -07001990 struct mwifiex_ie_types_header header;
Kevin Gan8b4509f2012-09-25 20:23:45 -07001991 __le32 sta_ao_timer;
1992} __packed;
1993
Avinash Patil8a73dd62015-06-03 16:59:41 +05301994struct host_cmd_tlv_power_constraint {
1995 struct mwifiex_ie_types_header header;
1996 u8 constraint;
1997} __packed;
1998
Chunfan Chend219b7e2015-06-10 06:19:48 -07001999struct mwifiex_ie_types_btcoex_scan_time {
2000 struct mwifiex_ie_types_header header;
2001 u8 coex_scan;
2002 u8 reserved;
Prasun Maitic18b1042016-06-30 14:01:23 +05302003 __le16 min_scan_time;
2004 __le16 max_scan_time;
Chunfan Chend219b7e2015-06-10 06:19:48 -07002005} __packed;
2006
2007struct mwifiex_ie_types_btcoex_aggr_win_size {
2008 struct mwifiex_ie_types_header header;
2009 u8 coex_win_size;
2010 u8 tx_win_size;
2011 u8 rx_win_size;
2012 u8 reserved;
2013} __packed;
2014
Amitkumar Karwar46dbe242015-10-09 04:26:23 -07002015struct mwifiex_ie_types_robust_coex {
2016 struct mwifiex_ie_types_header header;
2017 __le32 mode;
2018} __packed;
2019
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002020struct host_cmd_ds_version_ext {
2021 u8 version_str_sel;
2022 char version_str[128];
2023} __packed;
2024
Stone Piao3cec6872012-09-25 20:23:34 -07002025struct host_cmd_ds_mgmt_frame_reg {
2026 __le16 action;
2027 __le32 mask;
2028} __packed;
2029
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07002030struct host_cmd_ds_p2p_mode_cfg {
2031 __le16 action;
2032 __le16 mode;
2033} __packed;
2034
Stone Piao7feb4c42012-09-25 20:23:36 -07002035struct host_cmd_ds_remain_on_chan {
2036 __le16 action;
2037 u8 status;
2038 u8 reserved;
2039 u8 band_cfg;
2040 u8 channel;
2041 __le32 duration;
2042} __packed;
2043
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002044struct host_cmd_ds_802_11_ibss_status {
2045 __le16 action;
2046 __le16 enable;
2047 u8 bssid[ETH_ALEN];
2048 __le16 beacon_interval;
2049 __le16 atim_window;
2050 __le16 use_g_rate_protect;
2051} __packed;
2052
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08002053struct mwifiex_fw_mef_entry {
2054 u8 mode;
2055 u8 action;
2056 __le16 exprsize;
2057 u8 expr[0];
2058} __packed;
2059
2060struct host_cmd_ds_mef_cfg {
2061 __le32 criteria;
2062 __le16 num_entries;
2063 struct mwifiex_fw_mef_entry mef_entry[0];
2064} __packed;
2065
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002066#define CONNECTION_TYPE_INFRA 0
2067#define CONNECTION_TYPE_ADHOC 1
Stone Piao9197ab92012-09-25 20:23:42 -07002068#define CONNECTION_TYPE_AP 2
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002069
2070struct host_cmd_ds_set_bss_mode {
2071 u8 con_type;
2072} __packed;
2073
Amitkumar Karward930fae2011-10-11 17:41:21 -07002074struct host_cmd_ds_pcie_details {
2075 /* TX buffer descriptor ring address */
Karthik D A902831a2016-07-25 21:21:04 +05302076 __le32 txbd_addr_lo;
2077 __le32 txbd_addr_hi;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002078 /* TX buffer descriptor ring count */
Karthik D A902831a2016-07-25 21:21:04 +05302079 __le32 txbd_count;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002080
2081 /* RX buffer descriptor ring address */
Karthik D A902831a2016-07-25 21:21:04 +05302082 __le32 rxbd_addr_lo;
2083 __le32 rxbd_addr_hi;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002084 /* RX buffer descriptor ring count */
Karthik D A902831a2016-07-25 21:21:04 +05302085 __le32 rxbd_count;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002086
2087 /* Event buffer descriptor ring address */
Karthik D A902831a2016-07-25 21:21:04 +05302088 __le32 evtbd_addr_lo;
2089 __le32 evtbd_addr_hi;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002090 /* Event buffer descriptor ring count */
Karthik D A902831a2016-07-25 21:21:04 +05302091 __le32 evtbd_count;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002092
2093 /* Sleep cookie buffer physical address */
Karthik D A902831a2016-07-25 21:21:04 +05302094 __le32 sleep_cookie_addr_lo;
2095 __le32 sleep_cookie_addr_hi;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002096} __packed;
2097
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07002098struct mwifiex_ie_types_rssi_threshold {
2099 struct mwifiex_ie_types_header header;
2100 u8 abs_value;
2101 u8 evt_freq;
2102} __packed;
2103
Avinash Patil3b57c1a2015-01-28 15:54:23 +05302104#define MWIFIEX_DFS_REC_HDR_LEN 8
2105#define MWIFIEX_DFS_REC_HDR_NUM 10
2106#define MWIFIEX_BIN_COUNTER_LEN 7
2107
2108struct mwifiex_radar_det_event {
2109 __le32 detect_count;
2110 u8 reg_domain; /*1=fcc, 2=etsi, 3=mic*/
2111 u8 det_type; /*0=none, 1=pw(chirp), 2=pri(radar)*/
2112 __le16 pw_chirp_type;
2113 u8 pw_chirp_idx;
2114 u8 pw_value;
2115 u8 pri_radar_type;
2116 u8 pri_bincnt;
2117 u8 bin_counter[MWIFIEX_BIN_COUNTER_LEN];
2118 u8 num_dfs_records;
2119 u8 dfs_record_hdr[MWIFIEX_DFS_REC_HDR_NUM][MWIFIEX_DFS_REC_HDR_LEN];
2120 __le32 passed;
2121} __packed;
2122
Avinash Patil8d6b5382015-06-22 19:06:23 +05302123struct mwifiex_ie_types_multi_chan_info {
2124 struct mwifiex_ie_types_header header;
2125 __le16 status;
2126 u8 tlv_buffer[0];
2127} __packed;
2128
Zhaoyang Liu2b0f9972015-09-18 06:32:15 -07002129struct mwifiex_ie_types_mc_group_info {
2130 struct mwifiex_ie_types_header header;
2131 u8 chan_group_id;
2132 u8 chan_buf_weight;
2133 u8 band_config;
2134 u8 chan_num;
Karthik D A902831a2016-07-25 21:21:04 +05302135 __le32 chan_time;
2136 __le32 reserved;
Zhaoyang Liu2b0f9972015-09-18 06:32:15 -07002137 union {
2138 u8 sdio_func_num;
2139 u8 usb_ep_num;
2140 } hid_num;
2141 u8 intf_num;
2142 u8 bss_type_numlist[0];
2143} __packed;
2144
Avinash Patil0a694d62015-01-28 15:54:22 +05302145struct meas_rpt_map {
2146 u8 rssi:3;
2147 u8 unmeasured:1;
2148 u8 radar:1;
2149 u8 unidentified_sig:1;
2150 u8 ofdm_preamble:1;
2151 u8 bss:1;
2152} __packed;
2153
2154struct mwifiex_ie_types_chan_rpt_data {
2155 struct mwifiex_ie_types_header header;
2156 struct meas_rpt_map map;
2157} __packed;
2158
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07002159struct host_cmd_ds_802_11_subsc_evt {
2160 __le16 action;
2161 __le16 events;
2162} __packed;
2163
Xinming Huf7669872015-06-22 19:06:11 +05302164struct chan_switch_result {
2165 u8 cur_chan;
2166 u8 status;
2167 u8 reason;
2168} __packed;
2169
Avinash Patil79ff4342014-05-06 22:02:44 -07002170struct mwifiex_tdls_generic_event {
2171 __le16 type;
2172 u8 peer_mac[ETH_ALEN];
2173 union {
Xinming Huf7669872015-06-22 19:06:11 +05302174 struct chan_switch_result switch_result;
2175 u8 cs_stop_reason;
Avinash Patil79ff4342014-05-06 22:02:44 -07002176 __le16 reason_code;
2177 __le16 reserved;
2178 } u;
2179} __packed;
2180
Avinash Patilede98bf2012-05-08 18:30:28 -07002181struct mwifiex_ie {
2182 __le16 ie_index;
2183 __le16 mgmt_subtype_mask;
2184 __le16 ie_length;
2185 u8 ie_buffer[IEEE_MAX_IE_SIZE];
2186} __packed;
2187
2188#define MAX_MGMT_IE_INDEX 16
2189struct mwifiex_ie_list {
2190 __le16 type;
2191 __le16 len;
2192 struct mwifiex_ie ie_list[MAX_MGMT_IE_INDEX];
2193} __packed;
2194
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07002195struct coalesce_filt_field_param {
2196 u8 operation;
2197 u8 operand_len;
2198 __le16 offset;
2199 u8 operand_byte_stream[4];
2200};
2201
2202struct coalesce_receive_filt_rule {
2203 struct mwifiex_ie_types_header header;
2204 u8 num_of_fields;
2205 u8 pkt_type;
2206 __le16 max_coalescing_delay;
2207 struct coalesce_filt_field_param params[0];
2208} __packed;
2209
2210struct host_cmd_ds_coalesce_cfg {
2211 __le16 action;
2212 __le16 num_of_rules;
2213 struct coalesce_receive_filt_rule rule[0];
2214} __packed;
2215
Avinash Patild5b036c2015-06-22 19:06:20 +05302216struct host_cmd_ds_multi_chan_policy {
2217 __le16 action;
2218 __le16 policy;
2219} __packed;
2220
Amitkumar Karwar46dbe242015-10-09 04:26:23 -07002221struct host_cmd_ds_robust_coex {
2222 __le16 action;
2223 __le16 reserved;
2224} __packed;
2225
chunfan chen8de00f12016-01-13 01:26:55 -08002226struct host_cmd_ds_wakeup_reason {
Karthik D A902831a2016-07-25 21:21:04 +05302227 __le16 wakeup_reason;
chunfan chen8de00f12016-01-13 01:26:55 -08002228} __packed;
2229
Ganapathi Bhatf6b1cbe2016-04-05 01:04:34 -07002230struct host_cmd_ds_gtk_rekey_params {
2231 __le16 action;
2232 u8 kck[NL80211_KCK_LEN];
2233 u8 kek[NL80211_KEK_LEN];
2234 __le32 replay_ctr_low;
2235 __le32 replay_ctr_high;
2236} __packed;
2237
Amitkumar Karwar41960b42016-08-09 20:20:45 +05302238struct host_cmd_ds_chan_region_cfg {
2239 __le16 action;
2240} __packed;
2241
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002242struct host_cmd_ds_command {
2243 __le16 command;
2244 __le16 size;
2245 __le16 seq_num;
2246 __le16 result;
2247 union {
2248 struct host_cmd_ds_get_hw_spec hw_spec;
2249 struct host_cmd_ds_mac_control mac_ctrl;
2250 struct host_cmd_ds_802_11_mac_address mac_addr;
2251 struct host_cmd_ds_mac_multicast_adr mc_addr;
2252 struct host_cmd_ds_802_11_get_log get_log;
2253 struct host_cmd_ds_802_11_rssi_info rssi_info;
2254 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
2255 struct host_cmd_ds_802_11_snmp_mib smib;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002256 struct host_cmd_ds_tx_rate_query tx_rate;
2257 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
2258 struct host_cmd_ds_txpwr_cfg txp_cfg;
Amitkumar Karwarcaa89842012-06-27 19:57:57 -07002259 struct host_cmd_ds_rf_tx_pwr txp;
Amitkumar Karwar8a279d52012-07-02 19:32:33 -07002260 struct host_cmd_ds_rf_ant_mimo ant_mimo;
2261 struct host_cmd_ds_rf_ant_siso ant_siso;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002262 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
2263 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
2264 struct host_cmd_ds_802_11_scan scan;
Amitkumar Karwar21f58d202014-02-11 18:39:56 -08002265 struct host_cmd_ds_802_11_scan_ext ext_scan;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002266 struct host_cmd_ds_802_11_scan_rsp scan_resp;
Xinming Hu0c9b7f22016-01-13 01:26:52 -08002267 struct host_cmd_ds_802_11_bg_scan_config bg_scan_config;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002268 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
2269 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
2270 struct host_cmd_ds_802_11_associate associate;
2271 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
2272 struct host_cmd_ds_802_11_deauthenticate deauth;
2273 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
Amitkumar Karward5556e82015-12-04 06:13:02 -08002274 struct host_cmd_ds_802_11_ad_hoc_start_result start_result;
2275 struct host_cmd_ds_802_11_ad_hoc_join_result join_result;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002276 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
2277 struct host_cmd_ds_802_11d_domain_info domain_info;
2278 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
2279 struct host_cmd_ds_11n_addba_req add_ba_req;
2280 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
2281 struct host_cmd_ds_11n_delba del_ba;
2282 struct host_cmd_ds_txbuf_cfg tx_buf;
2283 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
2284 struct host_cmd_ds_11n_cfg htcfg;
2285 struct host_cmd_ds_wmm_get_status get_wmm_status;
2286 struct host_cmd_ds_802_11_key_material key_material;
Avinash Patile57f1732014-02-07 16:32:35 -08002287 struct host_cmd_ds_802_11_key_material_v2 key_material_v2;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002288 struct host_cmd_ds_version_ext verext;
Stone Piao3cec6872012-09-25 20:23:34 -07002289 struct host_cmd_ds_mgmt_frame_reg reg_mask;
Stone Piao7feb4c42012-09-25 20:23:36 -07002290 struct host_cmd_ds_remain_on_chan roc_cfg;
Stone Piaoe1a2b7a2012-09-25 20:23:41 -07002291 struct host_cmd_ds_p2p_mode_cfg mode_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002292 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
Amitkumar Karwar7da060c2013-03-04 16:27:59 -08002293 struct host_cmd_ds_mef_cfg mef_cfg;
Chin-ran Loc2c6c852015-05-12 00:48:17 +05302294 struct host_cmd_ds_mem_access mem;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002295 struct host_cmd_ds_mac_reg_access mac_reg;
2296 struct host_cmd_ds_bbp_reg_access bbp_reg;
2297 struct host_cmd_ds_rf_reg_access rf_reg;
2298 struct host_cmd_ds_pmic_reg_access pmic_reg;
2299 struct host_cmd_ds_set_bss_mode bss_mode;
Amitkumar Karward930fae2011-10-11 17:41:21 -07002300 struct host_cmd_ds_pcie_details pcie_host_spec;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002301 struct host_cmd_ds_802_11_eeprom_access eeprom;
Amitkumar Karwarfa444bf2012-03-15 20:51:51 -07002302 struct host_cmd_ds_802_11_subsc_evt subsc_evt;
Avinash Patil4db16a12012-05-08 18:30:20 -07002303 struct host_cmd_ds_sys_config uap_sys_config;
Avinash Patil0f9e9b82013-05-17 17:50:23 -07002304 struct host_cmd_ds_sta_deauth sta_deauth;
Xinming Hub21783e2015-06-03 16:59:39 +05302305 struct host_cmd_ds_sta_list sta_list;
Yogesh Ashok Powar83c78da2013-03-18 20:06:03 -07002306 struct host_cmd_11ac_vht_cfg vht_cfg;
Amitkumar Karwar562fc5b2013-08-05 18:52:00 -07002307 struct host_cmd_ds_coalesce_cfg coalesce_cfg;
Xinming Hu449b8bb2015-06-22 19:06:12 +05302308 struct host_cmd_ds_tdls_config tdls_config;
Avinash Patil429d90d2014-02-07 16:27:34 -08002309 struct host_cmd_ds_tdls_oper tdls_oper;
Avinash Patil85afb182015-01-28 15:54:21 +05302310 struct host_cmd_ds_chan_rpt_req chan_rpt_req;
Zhaoyang Liu92263a82015-03-13 17:37:58 +05302311 struct host_cmd_sdio_sp_rx_aggr_cfg sdio_rx_aggr_cfg;
Avinash Patild5b036c2015-06-22 19:06:20 +05302312 struct host_cmd_ds_multi_chan_policy mc_policy;
Amitkumar Karwar46dbe242015-10-09 04:26:23 -07002313 struct host_cmd_ds_robust_coex coex;
chunfan chen8de00f12016-01-13 01:26:55 -08002314 struct host_cmd_ds_wakeup_reason hs_wakeup_reason;
Ganapathi Bhatf6b1cbe2016-04-05 01:04:34 -07002315 struct host_cmd_ds_gtk_rekey_params rekey;
Amitkumar Karwar41960b42016-08-09 20:20:45 +05302316 struct host_cmd_ds_chan_region_cfg reg_cfg;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002317 } params;
2318} __packed;
2319
2320struct mwifiex_opt_sleep_confirm {
2321 __le16 command;
2322 __le16 size;
2323 __le16 seq_num;
2324 __le16 result;
2325 __le16 action;
Marc Yang2b06bdb2011-03-30 18:12:44 -07002326 __le16 resp_ctrl;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002327} __packed;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002328#endif /* !_MWIFIEX_FW_H_ */