blob: da06b0ef6acab1a002b5be4ffe7fe556d459e1a6 [file] [log] [blame]
Govind Singh3ddda1f2016-03-09 11:34:12 +05301/*
Nachiket Kukadee42cd4b2017-12-20 17:28:29 +05302 * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
Govind Singh3ddda1f2016-03-09 11:34:12 +05303 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28/*
29 * This file contains the API definitions for the Unified Wireless Module
30 * Interface (WMI).
31 */
32
33#ifndef _WMI_UNIFIED_PARAM_H_
34#define _WMI_UNIFIED_PARAM_H_
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +053035
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +053036#include <wlan_scan_public_structs.h>
Frank Liu0ba573b2017-03-15 17:51:43 +080037#ifdef CONVERGED_TDLS_ENABLE
38#include <wlan_tdls_public_structs.h>
39#endif
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +053040
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +053041#define MAC_MAX_KEY_LENGTH 32
42#define MAC_PN_LENGTH 8
43#define MAX_MAC_HEADER_LEN 32
44#define MIN_MAC_HEADER_LEN 24
45#define QOS_CONTROL_LEN 2
46
Govind Singh3ddda1f2016-03-09 11:34:12 +053047#define IEEE80211_ADDR_LEN 6 /* size of 802.11 address */
Govind Singh3ddda1f2016-03-09 11:34:12 +053048#define WMI_MAC_MAX_SSID_LENGTH 32
49#define WMI_SCAN_MAX_NUM_SSID 0x0A
50#define mgmt_tx_dl_frm_len 64
51#define WMI_SMPS_MASK_LOWER_16BITS 0xFF
52#define WMI_SMPS_MASK_UPPER_3BITS 0x7
53#define WMI_SMPS_PARAM_VALUE_S 29
Shaakir Mohamede2bc1b32018-01-19 15:49:23 -080054#define WMI_UNIT_TEST_MAX_NUM_ARGS 100
Govind Singhe7b800c2016-03-01 15:30:53 +053055/* The size of the utc time in bytes. */
56#define WMI_SIZE_UTC_TIME (10)
57/* The size of the utc time error in bytes. */
58#define WMI_SIZE_UTC_TIME_ERROR (5)
Govind Singh9bad0002016-03-01 15:54:59 +053059#define WMI_MCC_MIN_CHANNEL_QUOTA 20
60#define WMI_MCC_MAX_CHANNEL_QUOTA 80
61#define WMI_MCC_MIN_NON_ZERO_CHANNEL_LATENCY 30
62#define WMI_BEACON_TX_BUFFER_SIZE (512)
63#define WMI_WIFI_SCANNING_MAC_OUI_LENGTH 3
64#define WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64
65#define WMI_RSSI_THOLD_DEFAULT -300
66#define WMI_NLO_FREQ_THRESH 1000
67#define WMI_SEC_TO_MSEC(sec) (sec * 1000)
68#define WMI_MSEC_TO_USEC(msec) (msec * 1000)
69#define WMI_ETH_LEN 64
70#define WMI_QOS_NUM_TSPEC_MAX 2
71#define WMI_QOS_NUM_AC_MAX 4
Govind Singhae855362016-03-07 14:24:22 +053072#define WMI_IPV4_ADDR_LEN 4
73#define WMI_KEEP_ALIVE_NULL_PKT 1
74#define WMI_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +053075#define WMI_MAC_MAX_KEY_LENGTH 32
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +053076#define WMI_KRK_KEY_LEN 16
77#ifdef WLAN_FEATURE_ROAM_OFFLOAD
78#define WMI_BTK_KEY_LEN 32
79#define WMI_ROAM_R0KH_ID_MAX_LEN 48
80#define WMI_ROAM_SCAN_PSK_SIZE 32
81#endif
82#define WMI_NOISE_FLOOR_DBM_DEFAULT (-96)
Govind Singhae855362016-03-07 14:24:22 +053083#define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8
84#define WMI_ROAM_MAX_CHANNELS 80
Govind Singhd7468a52016-03-09 14:32:57 +053085#ifdef FEATURE_WLAN_EXTSCAN
86#define WMI_MAX_EXTSCAN_MSG_SIZE 1536
87#define WMI_EXTSCAN_REST_TIME 100
88#define WMI_EXTSCAN_MAX_SCAN_TIME 50000
89#define WMI_EXTSCAN_BURST_DURATION 150
90#endif
91#define WMI_SCAN_NPROBES_DEFAULT (2)
92#define WMI_SEC_TO_MSEC(sec) (sec * 1000) /* sec to msec */
93#define WMI_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */
94#define WMI_NLO_FREQ_THRESH 1000 /* in MHz */
Govind Singh89727882016-04-15 13:58:27 +053095
Varun Reddy Yeturu1aa91d92017-08-20 13:41:02 -070096#define WMI_SVC_MSG_MAX_SIZE 1536
Govind Singh89727882016-04-15 13:58:27 +053097#define MAX_UTF_EVENT_LENGTH 2048
98#define MAX_WMI_UTF_LEN 252
99#define MAX_WMI_QVIT_LEN 252
100#define THERMAL_LEVELS 4
101#define WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES 256
102#define WMI_HOST_BCN_FLT_MAX_ELEMS_IE_LIST \
103 (WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES/32)
104#define LTEU_MAX_BINS 10
105#define ATF_ACTIVED_MAX_CLIENTS 50
106#define ATF_ACTIVED_MAX_ATFGROUPS 8
107#define CTL_5G_SIZE 1536
108#define CTL_2G_SIZE 684
109#define MAX_CTL_SIZE (CTL_5G_SIZE > CTL_2G_SIZE ? CTL_5G_SIZE : CTL_2G_SIZE)
110#define IEEE80211_MICBUF_SIZE (8+8)
111#define IEEE80211_TID_SIZE 17
112#define WME_NUM_AC 4
113#define SMART_ANT_MODE_SERIAL 0
114#define SMART_ANT_MODE_PARALLEL 1
115#define IEEE80211_WEP_NKID 4 /* number of key ids */
116#define WPI_IV_LEN 16
117#define WMI_SCAN_MAX_NUM_BSSID 10
118#define MAX_CHANS 1023
119#define TARGET_OEM_CONFIGURE_LCI 0x0A
120#define RTT_LCI_ALTITUDE_MASK 0x3FFFFFFF
121#define TARGET_OEM_CONFIGURE_LCR 0x09
122#define RTT_TIMEOUT_MS 180
123#define MAX_SUPPORTED_RATES 128
124#define WMI_HOST_MAX_BUFFER_SIZE 1712
Govind Singh41da3152016-05-06 20:20:25 +0530125#define WMI_HAL_MAX_SANTENNA 4
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530126#define WMI_HOST_PDEV_VI_PRIORITY_BIT (1<<2)
127#define WMI_HOST_PDEV_BEACON_PRIORITY_BIT (1<<4)
128#define WMI_HOST_PDEV_MGMT_PRIORITY_BIT (1<<5)
Surabhi Vishnoib1a06b72018-02-20 18:08:35 +0530129#define WMI_MAX_CMDS 1024
Govind Singh89727882016-04-15 13:58:27 +0530130
Govind Singhec1401a2016-07-08 19:00:56 +0530131#define FIPS_ALIGN 4
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +0530132#define FIPS_ALIGNTO(__addr, __to) \
133 ((((unsigned long int)(__addr)) + (__to) - 1) & ~((__to) - 1))
134#define FIPS_IS_ALIGNED(__addr, __to) \
135 (!(((unsigned long int)(__addr)) & ((__to)-1)))
Govind Singhec1401a2016-07-08 19:00:56 +0530136
Sathish Kumardcc75292017-03-01 14:02:36 +0530137#define WMI_HOST_MAX_SERIAL_ANTENNA 2
138#define WMI_SMART_ANT_MAX_RATE_SERIES 2
139
Govind Singh89727882016-04-15 13:58:27 +0530140#define WMI_HOST_F_MS(_v, _f) \
141 (((_v) & (_f)) >> (_f##_S))
142
143#define WMI_HOST_F_RMW(_var, _v, _f) \
144 do { \
145 (_var) &= ~(_f); \
146 (_var) |= (((_v) << (_f##_S)) & (_f)); \
147 } while (0)
148
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530149/* vdev capabilities bit mask */
150#define WMI_HOST_VDEV_BEACON_SUPPORT 0x1
151#define WMI_HOST_VDEV_WDS_LRN_ENABLED 0x2
152#define WMI_HOST_VDEV_VOW_ENABLED 0x4
153#define WMI_HOST_VDEV_IS_BEACON_SUPPORTED(param) \
154 ((param) & WMI_HOST_VDEV_BEACON_SUPPORT)
155#define WMI_HOST_VDEV_IS_WDS_LRN_ENABLED(param) \
156 ((param) & WMI_HOST_VDEV_WDS_LRN_ENABLED)
157#define WMI_HOST_VDEV_IS_VOW_ENABLED(param) \
158 ((param) & WMI_HOST_VDEV_VOW_ENABLED)
159
Govind Singh89727882016-04-15 13:58:27 +0530160/* TXBF capabilities masks */
161#define WMI_HOST_TXBF_CONF_SU_TX_BFEE_S 0
162#define WMI_HOST_TXBF_CONF_SU_TX_BFEE_M 0x1
163#define WMI_HOST_TXBF_CONF_SU_TX_BFEE \
164 (WMI_HOST_TXBF_CONF_SU_TX_BFEE_M << WMI_HOST_TXBF_CONF_SU_TX_BFEE_S)
165#define WMI_HOST_TXBF_CONF_SU_TX_BFEE_GET(x) \
166 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFEE)
167#define WMI_HOST_TXBF_CONF_SU_TX_BFEE_SET(x, z) \
168 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFEE)
169
Gyanranjan Hazarika0378c0e2017-10-13 16:04:39 -0700170
Govind Singh89727882016-04-15 13:58:27 +0530171#define WMI_HOST_TXBF_CONF_MU_TX_BFEE_S 1
172#define WMI_HOST_TXBF_CONF_MU_TX_BFEE_M 0x1
173#define WMI_HOST_TXBF_CONF_MU_TX_BFEE \
174 (WMI_HOST_TXBF_CONF_MU_TX_BFEE_M << WMI_HOST_TXBF_CONF_MU_TX_BFEE_S)
175#define WMI_HOST_TXBF_CONF_MU_TX_BFEE_GET(x) \
176 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFEE)
177#define WMI_HOST_TXBF_CONF_MU_TX_BFEE_SET(x, z) \
178 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFEE)
179
180#define WMI_HOST_TXBF_CONF_SU_TX_BFER_S 2
181#define WMI_HOST_TXBF_CONF_SU_TX_BFER_M 0x1
182#define WMI_HOST_TXBF_CONF_SU_TX_BFER \
183 (WMI_HOST_TXBF_CONF_SU_TX_BFER_M << WMI_HOST_TXBF_CONF_SU_TX_BFER_S)
184#define WMI_HOST_TXBF_CONF_SU_TX_BFER_GET(x) \
185 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFER)
186#define WMI_HOST_TXBF_CONF_SU_TX_BFER_SET(x, z) \
187 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFER)
188
189#define WMI_HOST_TXBF_CONF_MU_TX_BFER_S 3
190#define WMI_HOST_TXBF_CONF_MU_TX_BFER_M 0x1
191#define WMI_HOST_TXBF_CONF_MU_TX_BFER \
192 (WMI_HOST_TXBF_CONF_MU_TX_BFER_M << WMI_HOST_TXBF_CONF_MU_TX_BFER_S)
193#define WMI_HOST_TXBF_CONF_MU_TX_BFER_GET(x) \
194 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFER)
195#define WMI_HOST_TXBF_CONF_MU_TX_BFER_SET(x, z) \
196 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFER)
197
198#define WMI_HOST_TXBF_CONF_STS_CAP_S 4
199#define WMI_HOST_TXBF_CONF_STS_CAP_M 0x7
200#define WMI_HOST_TXBF_CONF_STS_CAP \
201 (WMI_HOST_TXBF_CONF_STS_CAP_M << WMI_HOST_TXBF_CONF_STS_CAP_S)
202#define WMI_HOST_TXBF_CONF_STS_CAP_GET(x) \
203 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_STS_CAP);
204#define WMI_HOST_TXBF_CONF_STS_CAP_SET(x, z) \
205 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_STS_CAP)
206
207#define WMI_HOST_TXBF_CONF_IMPLICIT_BF_S 7
208#define WMI_HOST_TXBF_CONF_IMPLICIT_BF_M 0x1
209#define WMI_HOST_TXBF_CONF_IMPLICIT_BF \
210 (WMI_HOST_TXBF_CONF_IMPLICIT_BF_M << WMI_HOST_TXBF_CONF_IMPLICIT_BF_S)
211#define WMI_HOST_TXBF_CONF_IMPLICIT_BF_GET(x) \
212 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_IMPLICIT_BF)
213#define WMI_HOST_TXBF_CONF_IMPLICIT_BF_SET(x, z) \
214 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_IMPLICIT_BF)
215
216#define WMI_HOST_TXBF_CONF_BF_SND_DIM_S 8
217#define WMI_HOST_TXBF_CONF_BF_SND_DIM_M 0x7
218#define WMI_HOST_TXBF_CONF_BF_SND_DIM \
219 (WMI_HOST_TXBF_CONF_BF_SND_DIM_M << WMI_HOST_TXBF_CONF_BF_SND_DIM_S)
220#define WMI_HOST_TXBF_CONF_BF_SND_DIM_GET(x) \
221 WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_BF_SND_DIM)
222#define WMI_HOST_TXBF_CONF_BF_SND_DIM_SET(x, z) \
223 WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_BF_SND_DIM)
224
Rhythm Patwad054b2f2018-03-30 16:57:17 -0700225/* The following WMI_HOST_HEOPS_BSSCOLOR_XXX macros correspond to the
226 * WMI_HEOPS_COLOR_XXX macros in the FW wmi_unified.h */
227#define WMI_HOST_HEOPS_BSSCOLOR_S 0
228#define WMI_HOST_HEOPS_BSSCOLOR_M 0x3f
229#define WMI_HOST_HEOPS_BSSCOLOR \
230 (WMI_HOST_HEOPS_BSSCOLOR_M << WMI_HOST_HEOPS_BSSCOLOR_S)
231#define WMI_HOST_HEOPS_BSSCOLOR_GET(x) \
232 WMI_HOST_F_MS(x, WMI_HOST_HEOPS_BSSCOLOR)
233#define WMI_HOST_HEOPS_BSSCOLOR_SET(x, z) \
234 WMI_HOST_F_RMW(x, z, WMI_HOST_HEOPS_BSSCOLOR)
235
236/* The following WMI_HOST_HEOPS_BSSCOLOR_DISABLE_XXX macros correspond to the
237 * WMI_HEOPS_BSSCOLORDISABLE_XXX macros in the FW wmi_unified.h */
238#define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_S 30
239#define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_M 0x1
240#define WMI_HOST_HEOPS_BSSCOLOR_DISABLE \
241 (WMI_HOST_HEOPS_BSSCOLOR_DISABLE_M << WMI_HOST_HEOPS_BSSCOLOR_DISABLE_S)
242#define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_GET(x) \
243 WMI_HOST_F_MS(x, WMI_HOST_HEOPS_BSSCOLOR_DISABLE)
244#define WMI_HOST_HEOPS_BSSCOLOR_DISABLE_SET(x, z) \
245 WMI_HOST_F_RMW(x, z, WMI_HOST_HEOPS_BSSCOLOR_DISABLE)
246
Gyanranjan Hazarika0378c0e2017-10-13 16:04:39 -0700247/* HE BF capabilities mask */
248#define WMI_HOST_HE_BF_CONF_SU_BFEE_S 0
249#define WMI_HOST_HE_BF_CONF_SU_BFEE_M 0x1
250#define WMI_HOST_HE_BF_CONF_SU_BFEE \
251 (WMI_HOST_HE_BF_CONF_SU_BFEE_M << WMI_HOST_HE_BF_CONF_SU_BFEE_S)
252#define WMI_HOST_HE_BF_CONF_SU_BFEE_GET(x) \
253 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_SU_BFEE)
254#define WMI_HOST_HE_BF_CONF_SU_BFEE_SET(x, z) \
255 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_SU_BFEE)
256
257#define WMI_HOST_HE_BF_CONF_SU_BFER_S 1
258#define WMI_HOST_HE_BF_CONF_SU_BFER_M 0x1
259#define WMI_HOST_HE_BF_CONF_SU_BFER \
260 (WMI_HOST_HE_BF_CONF_SU_BFER_M << WMI_HOST_HE_BF_CONF_SU_BFER_S)
261#define WMI_HOST_HE_BF_CONF_SU_BFER_GET(x) \
262 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_SU_BFER)
263#define WMI_HOST_HE_BF_CONF_SU_BFER_SET(x, z) \
264 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_SU_BFER)
265
266#define WMI_HOST_HE_BF_CONF_MU_BFEE_S 2
267#define WMI_HOST_HE_BF_CONF_MU_BFEE_M 0x1
268#define WMI_HOST_HE_BF_CONF_MU_BFEE \
269 (WMI_HOST_HE_BF_CONF_MU_BFEE_M << WMI_HOST_HE_BF_CONF_MU_BFEE_S)
270#define WMI_HOST_HE_BF_CONF_MU_BFEE_GET(x) \
271 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_MU_BFEE)
272#define WMI_HOST_HE_BF_CONF_MU_BFEE_SET(x, z) \
273 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_MU_BFEE)
274
275#define WMI_HOST_HE_BF_CONF_MU_BFER_S 3
276#define WMI_HOST_HE_BF_CONF_MU_BFER_M 0x1
277#define WMI_HOST_HE_BF_CONF_MU_BFER \
278 (WMI_HOST_HE_BF_CONF_MU_BFER_M << WMI_HOST_HE_BF_CONF_MU_BFER_S)
279#define WMI_HOST_HE_BF_CONF_MU_BFER_GET(x) \
280 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_MU_BFER)
281#define WMI_HOST_HE_BF_CONF_MU_BFER_SET(x, z) \
282 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_MU_BFER)
283
284#define WMI_HOST_HE_BF_CONF_DL_OFDMA_S 4
285#define WMI_HOST_HE_BF_CONF_DL_OFDMA_M 0x1
286#define WMI_HOST_HE_BF_CONF_DL_OFDMA \
287 (WMI_HOST_HE_BF_CONF_DL_OFDMA_M << WMI_HOST_HE_BF_CONF_DL_OFDMA_S)
288#define WMI_HOST_HE_BF_CONF_DL_OFDMA_GET(x) \
289 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_DL_OFDMA)
290#define WMI_HOST_HE_BF_CONF_DL_OFDMA_SET(x, z) \
291 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_DL_OFDMA)
292
293#define WMI_HOST_HE_BF_CONF_UL_OFDMA_S 5
294#define WMI_HOST_HE_BF_CONF_UL_OFDMA_M 0x1
295#define WMI_HOST_HE_BF_CONF_UL_OFDMA \
296 (WMI_HOST_HE_BF_CONF_UL_OFDMA_M << WMI_HOST_HE_BF_CONF_UL_OFDMA_S)
297#define WMI_HOST_HE_BF_CONF_UL_OFDMA_GET(x) \
298 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_UL_OFDMA)
299#define WMI_HOST_HE_BF_CONF_UL_OFDMA_SET(x, z) \
300 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_UL_OFDMA)
301
302#define WMI_HOST_HE_BF_CONF_UL_MUMIMO_S 6
303#define WMI_HOST_HE_BF_CONF_UL_MUMIMO_M 0x1
304#define WMI_HOST_HE_BF_CONF_UL_MUMIMO \
305 (WMI_HOST_HE_BF_CONF_UL_MUMIMO_M << WMI_HOST_HE_BF_CONF_UL_MUMIMO_S)
306#define WMI_HOST_HE_BF_CONF_UL_MUMIMO_GET(x) \
307 WMI_HOST_F_MS(x, WMI_HOST_HE_BF_CONF_UL_MUMIMO)
308#define WMI_HOST_HE_BF_CONF_UL_MUMIMO_SET(x, z) \
309 WMI_HOST_F_RMW(x, z, WMI_HOST_HE_BF_CONF_UL_MUMIMO)
310
Govind Singh89727882016-04-15 13:58:27 +0530311#define WMI_HOST_TPC_RATE_MAX 160
312#define WMI_HOST_TPC_TX_NUM_CHAIN 4
nobeljd9c2dc82018-01-25 16:35:36 -0800313#define WMI_HOST_RXG_CAL_CHAN_MAX 8
314#define WMI_HOST_MAX_NUM_CHAINS 8
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530315#define WMI_MAX_NUM_OF_RATE_THRESH 4
Govind Singh89727882016-04-15 13:58:27 +0530316
Sathish Kumar907a7462017-02-27 10:35:40 +0530317#define WMI_HOST_PDEV_MAX_VDEVS 17
318
Sathish Kumardcc75292017-03-01 14:02:36 +0530319/* for QC98XX only */
320/*6 modes (A, HT20, HT40, VHT20, VHT40, VHT80) * 3 reg dommains
321 */
322#define WMI_HOST_NUM_CTLS_5G 18
323/*6 modes (B, G, HT20, HT40, VHT20, VHT40) * 3 reg domains */
324#define WMI_HOST_NUM_CTLS_2G 18
325#define WMI_HOST_NUM_BAND_EDGES_5G 8
326#define WMI_HOST_NUM_BAND_EDGES_2G 4
327
328/*Beelinier 5G*/
329#define WMI_HOST_NUM_CTLS_5G_11A 9
330#define WMI_HOST_NUM_BAND_EDGES_5G_11A 25
331#define WMI_HOST_NUM_CTLS_5G_HT20 24
332#define WMI_HOST_NUM_BAND_EDGES_5G_HT20 25
333#define WMI_HOST_NUM_CTLS_5G_HT40 18
334#define WMI_HOST_NUM_BAND_EDGES_5G_HT40 12
335#define WMI_HOST_NUM_CTLS_5G_HT80 18
336#define WMI_HOST_NUM_BAND_EDGES_5G_HT80 6
337#define WMI_HOST_NUM_CTLS_5G_HT160 9
338#define WMI_HOST_NUM_BAND_EDGES_5G_HT160 2
339
340/* Beeliner 2G */
341#define WMI_HOST_NUM_CTLS_2G_11B 6
342#define WMI_HOST_NUM_BAND_EDGES_2G_11B 9
343#define WMI_HOST_NUM_CTLS_2G_20MHZ 30
344#define WMI_HOST_NUM_BAND_EDGES_2G_20MHZ 11
345#define WMI_HOST_NUM_CTLS_2G_40MHZ 18
346#define WMI_HOST_NUM_BAND_EDGES_2G_40MHZ 6
347
348/* for QC98XX only */
349#define WMI_HOST_TX_NUM_CHAIN 0x3
350#define WMI_HOST_TPC_REGINDEX_MAX 4
351#define WMI_HOST_ARRAY_GAIN_NUM_STREAMS 2
352
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530353#include "qdf_atomic.h"
Govind Singhd7468a52016-03-09 14:32:57 +0530354
Govind Singh89727882016-04-15 13:58:27 +0530355#ifdef BIG_ENDIAN_HOST
356 /* This API is used in copying in elements to WMI message,
357 since WMI message uses multilpes of 4 bytes, This API
358 converts length into multiples of 4 bytes, and performs copy
359 */
360#define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) do { \
361 int j; \
362 u_int32_t *src, *dest; \
363 src = (u_int32_t *)srcp; \
364 dest = (u_int32_t *)destp; \
365 for (j = 0; j < roundup(len, sizeof(u_int32_t))/4; j++) { \
366 *(dest+j) = qdf_le32_to_cpu(*(src+j)); \
367 } \
368} while (0)
369#else
370
371#define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) OS_MEMCPY(destp,\
372 srcp, len)
373
374#endif
375
376/** macro to convert MAC address from WMI word format to char array */
377#define WMI_HOST_MAC_ADDR_TO_CHAR_ARRAY(pwmi_mac_addr, c_macaddr) do { \
378 (c_macaddr)[0] = ((pwmi_mac_addr)->mac_addr31to0) & 0xff; \
379 (c_macaddr)[1] = (((pwmi_mac_addr)->mac_addr31to0) >> 8) & 0xff; \
380 (c_macaddr)[2] = (((pwmi_mac_addr)->mac_addr31to0) >> 16) & 0xff; \
381 (c_macaddr)[3] = (((pwmi_mac_addr)->mac_addr31to0) >> 24) & 0xff; \
382 (c_macaddr)[4] = ((pwmi_mac_addr)->mac_addr47to32) & 0xff; \
383 (c_macaddr)[5] = (((pwmi_mac_addr)->mac_addr47to32) >> 8) & 0xff; \
384 } while (0)
385
386#define TARGET_INIT_STATUS_SUCCESS 0x0
387#define TARGET_INIT_STATUS_GEN_FAILED 0x1
388#define TARGET_GET_INIT_STATUS_REASON(status) ((status) & 0xffff)
389#define TARGET_GET_INIT_STATUS_MODULE_ID(status) (((status) >> 16) & 0xffff)
Selvaraj, Sridhar0a1427f2016-07-04 21:40:23 +0530390
391#define MAX_ASSOC_IE_LENGTH 1024
Govind Singh89727882016-04-15 13:58:27 +0530392typedef uint32_t TARGET_INIT_STATUS;
393
Govind Singh33aab8e2017-03-21 12:49:10 +0530394/**
395 * @brief Opaque handle of wmi structure
396 */
397struct wmi_unified;
398typedef struct wmi_unified *wmi_unified_t;
399
400typedef void *ol_scn_t;
401/**
402 * @wmi_event_handler function prototype
403 */
404typedef int (*wmi_unified_event_handler)(ol_scn_t scn_handle,
405 uint8_t *event_buf, uint32_t len);
406
Naveen Rawat13dbfb72018-02-02 15:18:33 -0800407/**
408 * @WMI_HOST_WLAN_PHY_MODE: Host based enum ID for corresponding in
409 * WLAN_PHY_MODE. This should be consistent with WLAN_PHY_MODE always to avoid
410 * breaking the WMI
411 */
Govind Singh89727882016-04-15 13:58:27 +0530412typedef enum {
413 WMI_HOST_MODE_11A = 0, /* 11a Mode */
414 WMI_HOST_MODE_11G = 1, /* 11b/g Mode */
415 WMI_HOST_MODE_11B = 2, /* 11b Mode */
416 WMI_HOST_MODE_11GONLY = 3, /* 11g only Mode */
417 WMI_HOST_MODE_11NA_HT20 = 4, /* 11a HT20 mode */
418 WMI_HOST_MODE_11NG_HT20 = 5, /* 11g HT20 mode */
419 WMI_HOST_MODE_11NA_HT40 = 6, /* 11a HT40 mode */
420 WMI_HOST_MODE_11NG_HT40 = 7, /* 11g HT40 mode */
421 WMI_HOST_MODE_11AC_VHT20 = 8,
422 WMI_HOST_MODE_11AC_VHT40 = 9,
423 WMI_HOST_MODE_11AC_VHT80 = 10,
424 WMI_HOST_MODE_11AC_VHT20_2G = 11,
425 WMI_HOST_MODE_11AC_VHT40_2G = 12,
426 WMI_HOST_MODE_11AC_VHT80_2G = 13,
427 WMI_HOST_MODE_11AC_VHT80_80 = 14,
428 WMI_HOST_MODE_11AC_VHT160 = 15,
Krishna Raoc5a97ba2017-01-12 18:05:02 +0530429 WMI_HOST_MODE_11AX_HE20 = 16,
430 WMI_HOST_MODE_11AX_HE40 = 17,
431 WMI_HOST_MODE_11AX_HE80 = 18,
432 WMI_HOST_MODE_11AX_HE80_80 = 19,
433 WMI_HOST_MODE_11AX_HE160 = 20,
434 WMI_HOST_MODE_11AX_HE20_2G = 21,
435 WMI_HOST_MODE_11AX_HE40_2G = 22,
436 WMI_HOST_MODE_11AX_HE80_2G = 23,
437 WMI_HOST_MODE_UNKNOWN = 24,
438 WMI_HOST_MODE_MAX = 24
Govind Singh89727882016-04-15 13:58:27 +0530439} WMI_HOST_WLAN_PHY_MODE;
440
Sathish Kumar753eb7d2016-10-25 18:47:52 +0530441typedef enum {
442 WMI_HOST_VDEV_START_OK = 0,
443 WMI_HOST_VDEV_START_CHAN_INVALID,
444} WMI_HOST_VDEV_START_STATUS;
445
446/*
447 * Needs to be removed and use channel_param based
448 * on how it is processed
449 */
450typedef struct {
451 /** primary 20 MHz channel frequency in mhz */
452 uint32_t mhz;
453 /** Center frequency 1 in MHz*/
454 uint32_t band_center_freq1;
455 /** Center frequency 2 in MHz - valid only for 11acvht 80plus80 mode*/
456 uint32_t band_center_freq2;
457 /** channel info described below */
458 uint32_t info;
459 /** contains min power, max power, reg power and reg class id. */
460 uint32_t reg_info_1;
461 /** contains antennamax */
462 uint32_t reg_info_2;
463} wmi_host_channel;
Govind Singh89727882016-04-15 13:58:27 +0530464
Gupta, Kapil7b768002016-04-25 19:14:19 +0530465/**
Pratik Gandhi74ff2e52017-01-05 19:38:41 +0530466 * enum WMI_HOST_REGDMN_MODE:
467 * @WMI_HOST_REGDMN_MODE_11A: 11a channels
468 * @WMI_HOST_REGDMN_MODE_TURBO: 11a turbo-only channels
469 * @WMI_HOST_REGDMN_MODE_11B: 11b channels
470 * @WMI_HOST_REGDMN_MODE_PUREG: 11g channels (OFDM only)
471 * @WMI_HOST_REGDMN_MODE_11G: historical
472 * @WMI_HOST_REGDMN_MODE_108G: 11g+Turbo channels
473 * @WMI_HOST_REGDMN_MODE_108A: 11a+Turbo channels
474 * @WMI_HOST_REGDMN_MODE_XR: XR channels
475 * @WMI_HOST_REGDMN_MODE_11A_HALF_RATE: 11a half rate channels
476 * @WMI_HOST_REGDMN_MODE_11A_QUARTER_RATE: 11a quarter rate channels
477 * @WMI_HOST_REGDMN_MODE_11NG_HT20: 11ng HT20 channels
478 * @WMI_HOST_REGDMN_MODE_11NA_HT20: 11na HT20 channels
479 * @WMI_HOST_REGDMN_MODE_11NG_HT40PLUS: 11ng HT40+ channels
480 * @WMI_HOST_REGDMN_MODE_11NG_HT40MINUS: 11ng HT40- channels
481 * @WMI_HOST_REGDMN_MODE_11NA_HT40PLUS: 11na HT40+ channels
482 * @WMI_HOST_REGDMN_MODE_11NA_HT40MINUS: 11na HT40- channels
483 * @WMI_HOST_REGDMN_MODE_11AC_VHT20: 5GHz, VHT20
484 * @WMI_HOST_REGDMN_MODE_11AC_VHT40PLUS: 5GHz, VHT40+ channels
485 * @WMI_HOST_REGDMN_MODE_11AC_VHT40MINUS: 5GHz, VHT40- channels
486 * @WMI_HOST_REGDMN_MODE_11AC_VHT80: 5GHz, VHT80 channels
487 * @WMI_HOST_REGDMN_MODE_11AC_VHT160: 5GHz, VHT160 channels
488 * @WMI_HOST_REGDMN_MODE_11AC_VHT80_80: 5GHz, VHT80+80 channels
489 * @WMI_HOST_REGDMN_MODE_11AXG_HE20: 11ax 2.4GHz, HE20 channels
490 * @WMI_HOST_REGDMN_MODE_11AXA_HE20: 11ax 5GHz, HE20 channels
491 * @WMI_HOST_REGDMN_MODE_11AXG_HE40PLUS: 11ax 2.4GHz, HE40+ channels
492 * @WMI_HOST_REGDMN_MODE_11AXG_HE40MINUS: 11ax 2.4GHz, HE40- channels
493 * @WMI_HOST_REGDMN_MODE_11AXA_HE40PLUS: 11ax 5GHz, HE40+ channels
494 * @WMI_HOST_REGDMN_MODE_11AXA_HE40MINUS: 11ax 5GHz, HE40- channels
495 * @WMI_HOST_REGDMN_MODE_11AXA_HE80: 11ax 5GHz, HE80 channels
496 * @WMI_HOST_REGDMN_MODE_11AXA_HE160: 11ax 5GHz, HE160 channels
497 * @WMI_HOST_REGDMN_MODE_11AXA_HE80_80: 11ax 5GHz, HE80+80 channels
498 */
499typedef enum {
500 WMI_HOST_REGDMN_MODE_11A = 0x00000001,
501 WMI_HOST_REGDMN_MODE_TURBO = 0x00000002,
502 WMI_HOST_REGDMN_MODE_11B = 0x00000004,
503 WMI_HOST_REGDMN_MODE_PUREG = 0x00000008,
504 WMI_HOST_REGDMN_MODE_11G = 0x00000008,
505 WMI_HOST_REGDMN_MODE_108G = 0x00000020,
506 WMI_HOST_REGDMN_MODE_108A = 0x00000040,
507 WMI_HOST_REGDMN_MODE_XR = 0x00000100,
508 WMI_HOST_REGDMN_MODE_11A_HALF_RATE = 0x00000200,
509 WMI_HOST_REGDMN_MODE_11A_QUARTER_RATE = 0x00000400,
510 WMI_HOST_REGDMN_MODE_11NG_HT20 = 0x00000800,
511 WMI_HOST_REGDMN_MODE_11NA_HT20 = 0x00001000,
512 WMI_HOST_REGDMN_MODE_11NG_HT40PLUS = 0x00002000,
513 WMI_HOST_REGDMN_MODE_11NG_HT40MINUS = 0x00004000,
514 WMI_HOST_REGDMN_MODE_11NA_HT40PLUS = 0x00008000,
515 WMI_HOST_REGDMN_MODE_11NA_HT40MINUS = 0x00010000,
516 WMI_HOST_REGDMN_MODE_11AC_VHT20 = 0x00020000,
517 WMI_HOST_REGDMN_MODE_11AC_VHT40PLUS = 0x00040000,
518 WMI_HOST_REGDMN_MODE_11AC_VHT40MINUS = 0x00080000,
519 WMI_HOST_REGDMN_MODE_11AC_VHT80 = 0x00100000,
520 WMI_HOST_REGDMN_MODE_11AC_VHT160 = 0x00200000,
521 WMI_HOST_REGDMN_MODE_11AC_VHT80_80 = 0x00400000,
522 WMI_HOST_REGDMN_MODE_11AXG_HE20 = 0x00800000,
523 WMI_HOST_REGDMN_MODE_11AXA_HE20 = 0x01000000,
524 WMI_HOST_REGDMN_MODE_11AXG_HE40PLUS = 0x02000000,
525 WMI_HOST_REGDMN_MODE_11AXG_HE40MINUS = 0x04000000,
526 WMI_HOST_REGDMN_MODE_11AXA_HE40PLUS = 0x08000000,
527 WMI_HOST_REGDMN_MODE_11AXA_HE40MINUS = 0x10000000,
528 WMI_HOST_REGDMN_MODE_11AXA_HE80 = 0x20000000,
529 WMI_HOST_REGDMN_MODE_11AXA_HE160 = 0x40000000,
530 WMI_HOST_REGDMN_MODE_11AXA_HE80_80 = 0x80000000,
531 WMI_HOST_REGDMN_MODE_ALL = 0xffffffff
532} WMI_HOST_REGDMN_MODE;
533
534/**
Krishna Rao7462a8a2017-02-13 15:14:11 +0530535 * enum WMI_HOST_WLAN_BAND_CAPABILITY: Band capability (2.4 GHz, 5 GHz). Maps to
536 * WLAN_BAND_CAPABILITY used in firmware header file(s).
537 * @WMI_HOST_WLAN_2G_CAPABILITY: 2.4 GHz capable
538 * @WMI_HOST_WLAN_5G_CAPABILITY: 5 GHz capable
539 */
540typedef enum {
541 WMI_HOST_WLAN_2G_CAPABILITY = 0x1,
542 WMI_HOST_WLAN_5G_CAPABILITY = 0x2,
543} WMI_HOST_WLAN_BAND_CAPABILITY;
544
545/**
546 * enum wmi_host_channel_width: Channel operating width. Maps to
547 * wmi_channel_width used in firmware header file(s).
548 * @WMI_HOST_CHAN_WIDTH_20: 20 MHz channel operating width
549 * @WMI_HOST_CHAN_WIDTH_40: 40 MHz channel operating width
550 * @WMI_HOST_CHAN_WIDTH_80: 80 MHz channel operating width
551 * @WMI_HOST_CHAN_WIDTH_160: 160 MHz channel operating width
552 * @WMI_HOST_CHAN_WIDTH_80P80: 80+80 MHz channel operating width
553 * @WMI_HOST_CHAN_WIDTH_5: 5 MHz channel operating width
554 * @WMI_HOST_CHAN_WIDTH_10: 10 MHz channel operating width
555 */
556typedef enum {
557 WMI_HOST_CHAN_WIDTH_20 = 0,
558 WMI_HOST_CHAN_WIDTH_40 = 1,
559 WMI_HOST_CHAN_WIDTH_80 = 2,
560 WMI_HOST_CHAN_WIDTH_160 = 3,
561 WMI_HOST_CHAN_WIDTH_80P80 = 4,
562 WMI_HOST_CHAN_WIDTH_5 = 5,
563 WMI_HOST_CHAN_WIDTH_10 = 6,
564} wmi_host_channel_width;
565
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530566#define MAX_NUM_CHAN 128
567
Sathish Kumar376aebc2017-03-21 17:37:50 +0530568#define ATH_EXPONENT_TO_VALUE(v) ((1<<v)-1)
569#define ATH_TXOP_TO_US(v) (v<<5)
Govind Singhc7cd2d62016-06-21 14:33:26 +0530570/* WME stream classes */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530571#define WMI_HOST_AC_BE 0 /* best effort */
572#define WMI_HOST_AC_BK 1 /* background */
573#define WMI_HOST_AC_VI 2 /* video */
574#define WMI_HOST_AC_VO 3 /* voice */
Govind Singhc7cd2d62016-06-21 14:33:26 +0530575#define WMI_TID_TO_AC(_tid) (\
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530576 (((_tid) == 0) || ((_tid) == 3)) ? WMI_HOST_AC_BE : \
577 (((_tid) == 1) || ((_tid) == 2)) ? WMI_HOST_AC_BK : \
578 (((_tid) == 4) || ((_tid) == 5)) ? WMI_HOST_AC_VI : \
579 WMI_HOST_AC_VO)
Govind Singhc7cd2d62016-06-21 14:33:26 +0530580
Govind Singh3ddda1f2016-03-09 11:34:12 +0530581/**
582 * struct vdev_create_params - vdev create cmd parameter
583 * @if_id: interface id
584 * @type: interface type
585 * @subtype: interface subtype
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +0530586 * @nss_2g: NSS for 2G
587 * @nss_5g: NSS for 5G
588 * @pdev_id: pdev id on pdev for this vdev
Govind Singh3ddda1f2016-03-09 11:34:12 +0530589 */
590struct vdev_create_params {
591 uint8_t if_id;
592 uint32_t type;
593 uint32_t subtype;
Kiran Kumar Lokere0ae9fb92016-05-02 12:32:27 -0700594 uint8_t nss_2g;
595 uint8_t nss_5g;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +0530596 uint32_t pdev_id;
Govind Singh3ddda1f2016-03-09 11:34:12 +0530597};
598
599/**
600 * struct vdev_delete_params - vdev delete cmd parameter
601 * @if_id: interface id
602 */
603struct vdev_delete_params {
604 uint8_t if_id;
605};
606
607/**
Jeff Johnson81cf6832018-05-06 15:28:56 -0700608 * struct channel_param - Channel parameters with all
Govind Singh89727882016-04-15 13:58:27 +0530609 * info required by target.
610 * @chan_id: channel id
611 * @pwr: channel power
612 * @mhz: channel frequency
613 * @half_rate: is half rate
614 * @quarter_rate: is quarter rate
615 * @dfs_set: is dfs channel
616 * @dfs_set_cfreq2: is secondary freq dfs channel
617 * @is_chan_passive: is this passive channel
618 * @allow_ht: HT allowed in chan
619 * @allow_vht: VHT allowed on chan
Nandha Kishore Easwaran3f1115a2016-11-10 16:01:07 +0530620 * @set_agile: is agile mode
Govind Singh89727882016-04-15 13:58:27 +0530621 * @phy_mode: phymode (vht80 or ht40 or ...)
622 * @cfreq1: centre frequency on primary
623 * @cfreq2: centre frequency on secondary
624 * @maxpower: max power for channel
625 * @minpower: min power for channel
626 * @maxreqpower: Max regulatory power
627 * @antennamac: Max antenna
628 * @reg_class_id: Regulatory class id.
629 */
630
631struct channel_param {
632 uint8_t chan_id;
633 uint8_t pwr;
634 uint32_t mhz;
635 uint32_t half_rate:1,
636 quarter_rate:1,
637 dfs_set:1,
638 dfs_set_cfreq2:1,
639 is_chan_passive:1,
640 allow_ht:1,
Nandha Kishore Easwaran5bee1432016-10-18 10:30:14 +0530641 allow_vht:1,
Nandha Kishore Easwaran3f1115a2016-11-10 16:01:07 +0530642 set_agile:1;
Govind Singh89727882016-04-15 13:58:27 +0530643 uint32_t phy_mode;
644 uint32_t cfreq1;
645 uint32_t cfreq2;
646 int8_t maxpower;
647 int8_t minpower;
648 int8_t maxregpower;
649 uint8_t antennamax;
650 uint8_t reg_class_id;
651};
652
653/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530654 * struct vdev_stop_params - vdev stop cmd parameter
655 * @vdev_id: vdev id
656 */
657struct vdev_stop_params {
658 uint8_t vdev_id;
659};
660
661/**
662 * struct vdev_up_params - vdev up cmd parameter
663 * @vdev_id: vdev id
664 * @assoc_id: association id
665 */
666struct vdev_up_params {
667 uint8_t vdev_id;
668 uint16_t assoc_id;
669};
670
671/**
672 * struct vdev_down_params - vdev down cmd parameter
673 * @vdev_id: vdev id
674 */
675struct vdev_down_params {
676 uint8_t vdev_id;
677};
678
679/**
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530680 * struct mac_ssid - mac ssid structure
681 * @length:
682 * @mac_ssid[WMI_MAC_MAX_SSID_LENGTH]:
683 */
684struct mac_ssid {
685 uint8_t length;
686 uint8_t mac_ssid[WMI_MAC_MAX_SSID_LENGTH];
687} qdf_packed;
688
689/**
Jiachao Wu40d6b112017-08-23 15:27:11 +0800690 * enum wmi_bcn_tx_rate_code - beacon tx rate code
691 */
692enum wmi_bcn_tx_rate_code {
693 WMI_BCN_TX_RATE_CODE_1_M = 0x43,
694 WMI_BCN_TX_RATE_CODE_2_M = 0x42,
695 WMI_BCN_TX_RATE_CODE_5_5_M = 0x41,
696 WMI_BCN_TX_RATE_CODE_6_M = 0x03,
697 WMI_BCN_TX_RATE_CODE_9_M = 0x07,
698 WMI_BCN_TX_RATE_CODE_11M = 0x40,
699 WMI_BCN_TX_RATE_CODE_12_M = 0x02,
700 WMI_BCN_TX_RATE_CODE_18_M = 0x06,
701 WMI_BCN_TX_RATE_CODE_24_M = 0x01,
702 WMI_BCN_TX_RATE_CODE_36_M = 0x05,
703 WMI_BCN_TX_RATE_CODE_48_M = 0x00,
704 WMI_BCN_TX_RATE_CODE_54_M = 0x04,
705};
706
707/**
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530708 * struct vdev_start_params - vdev start cmd parameter
709 * @vdev_id: vdev id
710 * @chan_freq: channel frequency
711 * @chan_mode: channel mode
712 * @band_center_freq1: center freq 1
713 * @band_center_freq2: center freq 2
714 * @flags: flags to set like pmf_enabled etc.
715 * @is_dfs: flag to check if dfs enabled
716 * @beacon_intval: beacon interval
717 * @dtim_period: dtim period
718 * @max_txpow: max tx power
719 * @is_restart: flag to check if it is vdev
720 * @ssid: ssid and ssid length info
721 * @preferred_tx_streams: preferred tx streams
722 * @preferred_rx_streams: preferred rx streams
723 * @intr_update: flag to check if need to update
724 * required wma interface params
725 * @intr_ssid: pointer to wma interface ssid
726 * @intr_flags: poiter to wma interface flags
727 * @requestor_id: to update requestor id
728 * @disable_hw_ack: to update disable hw ack flag
729 * @info: to update channel info
730 * @reg_info_1: to update min power, max power,
731 * reg power and reg class id
732 * @reg_info_2: to update antennamax
Arif Hussain29b78212017-03-13 15:42:20 -0700733 * @cac_duration_ms: cac duration in milliseconds
734 * @regdomain: Regulatory domain
Govind Singh89727882016-04-15 13:58:27 +0530735 * @oper_mode: Operating mode
736 * @dfs_pri_multiplier: DFS primary multiplier
737 * allow pulse if they are within multiple of PRI for the radar type
738 * @dot11_mode: Phy mode (VHT20/VHT80...)
739 * @disable_hw_ack: Disable hw ack if chan is dfs channel for cac
740 * @channel_param: Channel params required by target.
Jiachao Wu40d6b112017-08-23 15:27:11 +0800741 * @bcn_tx_rate_code: Beacon tx rate code.
Varun Reddy Yeturu5fe013d2017-03-20 17:28:42 -0700742 * @ldpc_rx_enabled: Enable/Disable LDPC RX for this vdev
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530743 */
744struct vdev_start_params {
745 uint8_t vdev_id;
746 uint32_t chan_freq;
747 uint32_t chan_mode;
748 uint32_t band_center_freq1;
749 uint32_t band_center_freq2;
750 uint32_t flags;
751 bool is_dfs;
752 uint32_t beacon_intval;
753 uint32_t dtim_period;
754 int32_t max_txpow;
755 bool is_restart;
Siddarth Poddar466963e2016-03-29 15:13:26 +0530756 bool is_half_rate;
757 bool is_quarter_rate;
758 uint32_t dis_hw_ack;
759 uint32_t flag_dfs;
760 uint8_t hidden_ssid;
761 uint8_t pmf_enabled;
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530762 struct mac_ssid ssid;
Siddarth Poddar466963e2016-03-29 15:13:26 +0530763 uint32_t num_noa_descriptors;
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530764 uint32_t preferred_rx_streams;
765 uint32_t preferred_tx_streams;
Arif Hussain29b78212017-03-13 15:42:20 -0700766 uint32_t cac_duration_ms;
767 uint32_t regdomain;
Krishna Kumaar Natarajan3f301ca2016-09-29 14:20:54 -0700768 uint32_t he_ops;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530769#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530770 uint8_t oper_mode;
771 int32_t dfs_pri_multiplier;
772 uint8_t dot11_mode;
773 uint8_t disable_hw_ack;
774 struct channel_param channel;
775#endif
Jiachao Wu40d6b112017-08-23 15:27:11 +0800776 enum wmi_bcn_tx_rate_code bcn_tx_rate_code;
Varun Reddy Yeturu5fe013d2017-03-20 17:28:42 -0700777 bool ldpc_rx_enabled;
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530778};
779
780/**
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +0530781 * struct vdev_scan_nac_rssi_params - NAC_RSSI cmd parameter
782 * @vdev_id: vdev id
783 * @bssid_addr: BSSID address
784 * @client_addr: client address
785 * @chan_num: channel number
786 * @action:NAC_RSSI action,
787 */
788struct vdev_scan_nac_rssi_params {
789 uint32_t vdev_id;
790 uint8_t bssid_addr[IEEE80211_ADDR_LEN];
791 uint8_t client_addr[IEEE80211_ADDR_LEN];
792 uint32_t chan_num;
793 uint32_t action; /* WMI_FILTER_NAC_RSSI_ACTION */
794};
795
796/**
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530797 * struct hidden_ssid_vdev_restart_params -
798 * vdev restart cmd parameter
799 * @session_id: session id
800 * @ssid_len: ssid length
801 * @ssid: ssid
802 * @flags: flags
803 * @requestor_id: requestor id
804 * @disable_hw_ack: flag to disable hw ack feature
805 * @mhz: channel frequency
806 * @band_center_freq1: center freq 1
807 * @band_center_freq2: center freq 2
808 * @info: channel info
809 * @reg_info_1: contains min power, max power,
810 * reg power and reg class id
811 * @reg_info_2: contains antennamax
812 * @hidden_ssid_restart_in_progress:
813 * flag to check if restart is in progress
814 */
815struct hidden_ssid_vdev_restart_params {
816 uint8_t session_id;
817 uint32_t ssid_len;
818 uint32_t ssid[8];
819 uint32_t flags;
820 uint32_t requestor_id;
821 uint32_t disable_hw_ack;
822 uint32_t mhz;
823 uint32_t band_center_freq1;
824 uint32_t band_center_freq2;
825 uint32_t info;
826 uint32_t reg_info_1;
827 uint32_t reg_info_2;
828 qdf_atomic_t hidden_ssid_restart_in_progress;
829};
830
831/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530832 * struct vdev_set_params - vdev set cmd parameter
833 * @if_id: vdev id
834 * @param_id: parameter id
835 * @param_value: parameter value
836 */
837struct vdev_set_params {
838 uint32_t if_id;
839 uint32_t param_id;
840 uint32_t param_value;
841};
842
Govind Singh89727882016-04-15 13:58:27 +0530843
844/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530845 * struct peer_delete_params - peer delete cmd parameter
846 * @vdev_id: vdev id
847 */
848struct peer_delete_params {
849 uint8_t vdev_id;
850};
851
852/**
853 * struct peer_flush_params - peer flush cmd parameter
854 * @peer_tid_bitmap: peer tid bitmap
855 * @vdev_id: vdev id
856 */
857struct peer_flush_params {
858 uint32_t peer_tid_bitmap;
859 uint8_t vdev_id;
860};
861
862/**
863 * struct peer_set_params - peer set cmd parameter
864 * @param_id: parameter id
865 * @param_value: parameter value
866 * @vdev_id: vdev id
867 */
868struct peer_set_params {
869 uint32_t param_id;
870 uint32_t param_value;
871 uint32_t vdev_id;
872};
873
874/**
875 * struct peer_create_params - peer create cmd parameter
876 * @peer_addr: peer mac addr
877 * @peer_type: peer type
878 * @vdev_id: vdev id
879 */
880struct peer_create_params {
881 const uint8_t *peer_addr;
882 uint32_t peer_type;
883 uint32_t vdev_id;
884};
885
886/**
887 * struct peer_remove_params - peer remove cmd parameter
888 * @bssid: bss id
889 * @vdev_id: vdev id
890 * @roam_synch_in_progress: flag to indicate if roaming is in progress
891 */
892struct peer_remove_params {
893 uint8_t *bssid;
894 uint8_t vdev_id;
895 bool roam_synch_in_progress;
896};
897
898/**
Govind Singh89727882016-04-15 13:58:27 +0530899 * Stats ID enums defined in host
900 */
901typedef enum {
902 WMI_HOST_REQUEST_PEER_STAT = 0x01,
903 WMI_HOST_REQUEST_AP_STAT = 0x02,
904 WMI_HOST_REQUEST_PDEV_STAT = 0x04,
905 WMI_HOST_REQUEST_VDEV_STAT = 0x08,
906 WMI_HOST_REQUEST_BCNFLT_STAT = 0x10,
907 WMI_HOST_REQUEST_VDEV_RATE_STAT = 0x20,
908 WMI_HOST_REQUEST_INST_STAT = 0x40,
909 WMI_HOST_REQUEST_PEER_EXTD_STAT = 0x80,
910 WMI_HOST_REQUEST_VDEV_EXTD_STAT = 0x100,
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +0530911 WMI_HOST_REQUEST_NAC_RSSI = 0x200,
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +0530912 WMI_HOST_REQUEST_BCN_STAT = 0x800,
Govind Singh89727882016-04-15 13:58:27 +0530913} wmi_host_stats_id;
914
Gurumoorthi Gnanasambandhan0a0e7272017-10-13 12:40:06 +0530915typedef struct {
916 uint16_t cfg_retry_count;
917 uint16_t retry_count;
918} wmi_host_inst_rssi_args;
Govind Singh89727882016-04-15 13:58:27 +0530919
920/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530921 * struct stats_request_params - stats_request cmd parameter
Gurumoorthi Gnanasambandhan7e23dd52017-08-10 22:12:36 +0530922 * @stats_id: Bit mask of all the STATS request are specified with values from wmi_host_stats_id
Govind Singh3ddda1f2016-03-09 11:34:12 +0530923 * @vdev_id: vdev id
Gurumoorthi Gnanasambandhan7e23dd52017-08-10 22:12:36 +0530924 * @pdev_id: pdev_id
Gurumoorthi Gnanasambandhan0a0e7272017-10-13 12:40:06 +0530925 * @wmi_host_inst_rssi_args: Instantaneous rssi stats args
Govind Singh3ddda1f2016-03-09 11:34:12 +0530926 */
927struct stats_request_params {
928 uint32_t stats_id;
Gurumoorthi Gnanasambandhan7e23dd52017-08-10 22:12:36 +0530929 uint8_t vdev_id;
930 uint8_t pdev_id;
Gurumoorthi Gnanasambandhan0a0e7272017-10-13 12:40:06 +0530931 wmi_host_inst_rssi_args rssi_args;
Govind Singh89727882016-04-15 13:58:27 +0530932};
933
934/**
935 * struct bss_chan_info_request_params - BSS chan info params
936 * @param: parameter value
937 */
938struct bss_chan_info_request_params {
939 uint32_t param;
Govind Singh3ddda1f2016-03-09 11:34:12 +0530940};
941
942/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530943 * struct wow_cmd_params - wow cmd parameter
944 * @enable: wow enable or disable flag
945 * @can_suspend_link: flag to indicate if link can be suspended
946 * @pause_iface_config: interface config
947 */
948struct wow_cmd_params {
949 bool enable;
950 bool can_suspend_link;
951 uint8_t pause_iface_config;
Dustin Browndee95c72016-11-10 11:25:36 -0800952 uint32_t flags;
Govind Singh3ddda1f2016-03-09 11:34:12 +0530953};
954
955/**
Govind Singh89727882016-04-15 13:58:27 +0530956 * struct wow_add_wakeup_params - wow wakeup parameter
957 * @type: param type
958 */
959struct wow_add_wakeup_params {
960 uint32_t type;
961};
962
963/**
964 * struct wow_add_wakeup_pattern_params - Add WoW pattern params
965 * @pattern_bytes: pointer to pattern bytes
966 * @mask_bytes: pointer to mask bytes
967 * @pattern_len: pattern length
968 * @pattern_id: pattern id
969 */
970struct wow_add_wakeup_pattern_params {
971 uint8_t *pattern_bytes;
972 uint8_t *mask_bytes;
973 uint32_t pattern_len;
974 uint32_t pattern_id;
975};
976
977/**
978 * struct wow_remove_wakeup_pattern params - WoW remove pattern param
979 * @pattern_bytes: pointer to pattern bytes
980 * @mask_bytes: Mask bytes
981 * @pattern_id: pattern identifier
982 */
983struct wow_remove_wakeup_pattern_params {
984 uint32_t *pattern_bytes;
985 uint32_t *mask_bytes;
986 uint32_t pattern_id;
987};
988
989
990/**
Govind Singh3ddda1f2016-03-09 11:34:12 +0530991 * struct packet_enable_params - packet enable cmd parameter
992 * @vdev_id: vdev id
993 * @enable: flag to indicate if parameter can be enabled or disabled
994 */
995struct packet_enable_params {
996 uint8_t vdev_id;
997 bool enable;
998};
999
1000/**
1001 * struct suspend_params - suspend cmd parameter
1002 * @disable_target_intr: disable target interrupt
1003 */
1004struct suspend_params {
1005 uint8_t disable_target_intr;
1006};
1007
1008/**
1009 * struct pdev_params - pdev set cmd parameter
1010 * @param_id: parameter id
1011 * @param_value: parameter value
1012 */
1013struct pdev_params {
1014 uint32_t param_id;
1015 uint32_t param_value;
1016};
1017
1018/**
Govind Singh89727882016-04-15 13:58:27 +05301019 * struct beacon_tmpl_params - beacon template cmd parameter
1020 * @vdev_id: vdev id
1021 * @tim_ie_offset: tim ie offset
1022 * @tmpl_len: beacon template length
1023 * @tmpl_len_aligned: beacon template alignment
Sathish Kumar907a7462017-02-27 10:35:40 +05301024 * @csa_switch_count_offset: CSA swith count offset in beacon frame
1025 * @ext_csa_switch_count_offset: ECSA switch count offset in beacon frame
Govind Singh89727882016-04-15 13:58:27 +05301026 * @frm: beacon template parameter
1027 */
1028struct beacon_tmpl_params {
1029 uint8_t vdev_id;
1030 uint32_t tim_ie_offset;
1031 uint32_t tmpl_len;
1032 uint32_t tmpl_len_aligned;
Sathish Kumar907a7462017-02-27 10:35:40 +05301033 uint32_t csa_switch_count_offset;
1034 uint32_t ext_csa_switch_count_offset;
Govind Singh89727882016-04-15 13:58:27 +05301035 uint8_t *frm;
1036};
1037
Govind Singh89727882016-04-15 13:58:27 +05301038/**
1039 * struct beacon_params - beacon cmd parameter
1040 * @vdev_id: vdev id
1041 * @beaconInterval: Beacon interval
1042 * @wbuf: beacon buffer
1043 * @frame_ctrl: frame control field
1044 * @bcn_txant: beacon antenna
1045 * @is_dtim_count_zero: is it dtim beacon
1046 * @is_bitctl_reqd: is Bit control required
1047 * @is_high_latency: Is this high latency target
1048 */
1049struct beacon_params {
1050 uint8_t vdev_id;
1051 uint16_t beaconInterval;
1052 qdf_nbuf_t wbuf;
1053 uint16_t frame_ctrl;
1054 uint32_t bcn_txant;
1055 bool is_dtim_count_zero;
1056 bool is_bitctl_reqd;
1057 bool is_high_latency;
1058};
Govind Singh89727882016-04-15 13:58:27 +05301059
1060/**
Subrat Mishra7c9427e2017-09-27 14:41:20 +05301061 * struct fd_params - FD cmd parameter
1062 * @vdev_id: vdev id
1063 * @wbuf: FD buffer
1064 * @frame_ctrl: frame control field
1065 */
1066struct fd_params {
1067 uint8_t vdev_id;
1068 qdf_nbuf_t wbuf;
1069 uint16_t frame_ctrl;
1070};
1071
1072/**
Govind Singh89727882016-04-15 13:58:27 +05301073 * struct bcn_prb_template_params - beacon probe template parameter
1074 * @vdev_id: vdev id
1075 * @buf_len: Template length
1076 * @caps: capabilities field
1077 * @erp: ERP field
1078 */
1079struct bcn_prb_template_params {
1080 uint8_t vdev_id;
1081 int buf_len;
1082 uint16_t caps;
1083 uint8_t erp;
1084};
1085
1086#define WMI_MAX_SUPPORTED_RATES 128
1087/**
1088 * struct target_rate_set - Rate set bitmap
1089 * @num_rate: number of rates in rates bitmap
1090 * @rates: rates (each 8bit value) packed into a 32 bit word.
1091 * the rates are filled from least significant byte to most
1092 * significant byte.
1093 */
1094typedef struct {
1095 uint32_t num_rates;
1096 uint32_t rates[(WMI_MAX_SUPPORTED_RATES / 4) + 1];
1097} target_rate_set;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301098
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001099
Kris Muthusamyf575e2e2017-03-28 12:03:50 -07001100#define WMI_HOST_MAX_NUM_SS 8
1101#define WMI_HOST_MAX_HECAP_PHY_SIZE 3
Gyanranjan Hazarikaef7ebfe2017-08-29 03:52:18 -07001102#define WMI_HOST_MAX_HE_RATE_SET 3
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001103/**
Krishna Kumaar Natarajan3f301ca2016-09-29 14:20:54 -07001104 * struct wmi_host_ppe_threshold -PPE threshold
1105 * @numss_m1: NSS - 1
1106 * @ru_bit_mask: RU bit mask indicating the supported RU's
1107 * @ppet16_ppet8_ru3_ru0: ppet8 and ppet16 for max num ss
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001108 */
1109struct wmi_host_ppe_threshold {
1110 uint32_t numss_m1;
Krishna Kumaar Natarajan3f301ca2016-09-29 14:20:54 -07001111 uint32_t ru_bit_mask;
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001112 uint32_t ppet16_ppet8_ru3_ru0[WMI_HOST_MAX_NUM_SS];
1113};
1114
Govind Singh3ddda1f2016-03-09 11:34:12 +05301115/**
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301116 * struct wmi_host_mac_addr - host mac addr 2 word representation of MAC addr
1117 * @mac_addr31to0: upper 4 bytes of MAC address
1118 * @mac_addr47to32: lower 2 bytes of MAC address
1119 */
1120typedef struct {
1121 uint32_t mac_addr31to0;
1122 uint32_t mac_addr47to32;
1123} wmi_host_mac_addr;
1124
1125/**
Govind Singh3ddda1f2016-03-09 11:34:12 +05301126 * struct peer_assoc_params - peer assoc cmd parameter
1127 * @peer_macaddr: peer mac address
1128 * @vdev_id: vdev id
1129 * @peer_new_assoc: peer association type
1130 * @peer_associd: peer association id
1131 * @peer_flags: peer flags
1132 * @peer_caps: peer capabalities
1133 * @peer_listen_intval: peer listen interval
1134 * @peer_ht_caps: HT capabalities
1135 * @peer_max_mpdu: 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k
1136 * @peer_mpdu_density: 3 : 0~7 : 2^(11nAMPDUdensity -4)
1137 * @peer_rate_caps: peer rate capabalities
1138 * @peer_nss: peer nss
1139 * @peer_phymode: peer phymode
1140 * @peer_ht_info: peer HT info
1141 * @peer_legacy_rates: peer legacy rates
1142 * @peer_ht_rates: peer ht rates
Govind Singh3ddda1f2016-03-09 11:34:12 +05301143 * @rx_max_rate: max rx rates
1144 * @rx_mcs_set: rx mcs
1145 * @tx_max_rate: max tx rates
1146 * @tx_mcs_set: tx mcs
1147 * @vht_capable: VHT capabalities
Govind Singh89727882016-04-15 13:58:27 +05301148 * @tx_max_mcs_nss: max tx MCS and NSS
1149 * @peer_bw_rxnss_override: Peer BW RX NSS overriden or not.
1150 * @is_pmf_enabled: PMF enabled
1151 * @is_wme_set: WME enabled
1152 * @qos_flag: QoS Flags
1153 * @apsd_flag: APSD flags
1154 * @ht_flag: HT flags
1155 * @bw_40: 40 capabale
1156 * @bw_80: 80 capabale
1157 * @bw_160: 160 capabale
1158 * @stbc_flag: STBC flag
1159 * @ldpc_flag: LDPC flag
1160 * @static_mimops_flag: statis MIMO PS flags
1161 * @dynamic_mimops_flag: Dynamic MIMO PS flags
1162 * @spatial_mux_flag: spatial MUX flags
1163 * @vht_flag: VHT flags
1164 * @vht_ng_flag: VHT on 11N/G flags
1165 * @need_ptk_4_way: Needs 4 way handshake
1166 * @need_gtk_2_way: Needs 2 way GTK
1167 * @auth_flag: Is peer authenticated
1168 * @safe_mode_enabled: Safe enabled for this peer
1169 * @amsdu_disable: AMSDU disble
1170 * @peer_mac: Peer mac address
Kris Muthusamye66c6bf2017-02-20 20:21:04 -08001171 * @he_flag: HE flags
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001172 * @peer_he_cap_macinfo: Peer HE Cap MAC info
1173 * @peer_he_ops: Peer HE operation info
1174 * @peer_he_cap_phyinfo: Peer HE Cap PHY info
Kris Muthusamyf575e2e2017-03-28 12:03:50 -07001175 * @peer_he_mcs_count: Peer HE MCS TX/RX MAP count
1176 * @peer_he_rx_mcs_set: Peer HE RX MCS MAP
1177 * @peer_he_tx_mcs_set: Peer HE TX MCS MAP
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001178 * @peer_ppet: Peer HE PPET info
Govind Singh3ddda1f2016-03-09 11:34:12 +05301179 */
1180struct peer_assoc_params {
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301181 wmi_host_mac_addr peer_macaddr;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301182 uint32_t vdev_id;
1183 uint32_t peer_new_assoc;
1184 uint32_t peer_associd;
1185 uint32_t peer_flags;
1186 uint32_t peer_caps;
1187 uint32_t peer_listen_intval;
1188 uint32_t peer_ht_caps;
1189 uint32_t peer_max_mpdu;
1190 uint32_t peer_mpdu_density;
1191 uint32_t peer_rate_caps;
1192 uint32_t peer_nss;
1193 uint32_t peer_vht_caps;
1194 uint32_t peer_phymode;
1195 uint32_t peer_ht_info[2];
Govind Singh89727882016-04-15 13:58:27 +05301196 target_rate_set peer_legacy_rates;
1197 target_rate_set peer_ht_rates;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301198 uint32_t rx_max_rate;
1199 uint32_t rx_mcs_set;
1200 uint32_t tx_max_rate;
1201 uint32_t tx_mcs_set;
1202 uint8_t vht_capable;
Krishna Rao938daa82017-03-20 13:30:10 +05301203 uint32_t peer_bw_rxnss_override;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301204#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +05301205 uint32_t tx_max_mcs_nss;
Govind Singh89727882016-04-15 13:58:27 +05301206 bool is_pmf_enabled;
1207 bool is_wme_set;
1208 bool qos_flag;
1209 bool apsd_flag;
1210 bool ht_flag;
1211 bool bw_40;
1212 bool bw_80;
1213 bool bw_160;
1214 bool stbc_flag;
1215 bool ldpc_flag;
1216 bool static_mimops_flag;
1217 bool dynamic_mimops_flag;
1218 bool spatial_mux_flag;
1219 bool vht_flag;
1220 bool vht_ng_flag;
1221 bool need_ptk_4_way;
1222 bool need_gtk_2_way;
1223 bool auth_flag;
1224 bool safe_mode_enabled;
1225 bool amsdu_disable;
1226 /* Use common structure */
1227 uint8_t peer_mac[IEEE80211_ADDR_LEN];
1228#endif
Kris Muthusamye66c6bf2017-02-20 20:21:04 -08001229 bool he_flag;
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001230 uint32_t peer_he_cap_macinfo;
1231 uint32_t peer_he_ops;
Kris Muthusamye66c6bf2017-02-20 20:21:04 -08001232 uint32_t peer_he_cap_phyinfo[WMI_HOST_MAX_HECAP_PHY_SIZE];
Kris Muthusamyf575e2e2017-03-28 12:03:50 -07001233 uint32_t peer_he_mcs_count;
1234 uint32_t peer_he_rx_mcs_set[WMI_HOST_MAX_HE_RATE_SET];
1235 uint32_t peer_he_tx_mcs_set[WMI_HOST_MAX_HE_RATE_SET];
Kris Muthusamy1499bac2017-02-20 02:35:47 -08001236 struct wmi_host_ppe_threshold peer_ppet;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301237};
1238
1239/**
1240 * struct sta_ps_params - sta ps cmd parameter
1241 * @vdev_id: vdev id
1242 * @param: sta ps paramter
1243 * @value: sta ps parameter value
1244 */
1245struct sta_ps_params {
1246 uint32_t vdev_id;
1247 uint32_t param;
1248 uint32_t value;
1249};
1250
1251/**
1252 * struct ap_ps_params - ap ps cmd parameter
1253 * @vdev_id: vdev id
1254 * @param: ap ps paramter
1255 * @value: ap ps paramter value
1256 */
1257struct ap_ps_params {
1258 uint32_t vdev_id;
1259 uint32_t param;
1260 uint32_t value;
1261};
1262
Govind Singh89727882016-04-15 13:58:27 +05301263#define WMI_HOST_SCAN_CHAN_FREQ_SHIFT 0
1264#define WMI_HOST_SCAN_CHAN_FREQ_MASK 0xffff
1265#define WMI_HOST_SCAN_CHAN_MODE_SHIFT 16
1266#define WMI_HOST_SCAN_CHAN_MODE_MASK 0xff
1267
Om Prakash Tripathi0d0976b2017-12-15 17:29:55 +05301268#define WMI_HOST_MAX_CHANS_PER_WMI_CMD 58
1269
Govind Singh3ddda1f2016-03-09 11:34:12 +05301270/**
Govind Singh3ddda1f2016-03-09 11:34:12 +05301271 * struct scan_chan_list_params - scan channel list cmd parameter
1272 * @num_scan_chans: no of scan channels
1273 * @chan_info: pointer to wmi channel info
1274 */
Govind Singhfa201d92016-06-08 19:40:11 +05301275#ifdef CONFIG_MCL
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301276/* TODO: This needs clean-up based on how its processed. */
1277typedef struct {
1278 /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_channel */
1279 uint32_t tlv_header;
1280 /** primary 20 MHz channel frequency in mhz */
1281 uint32_t mhz;
1282 /** Center frequency 1 in MHz*/
1283 uint32_t band_center_freq1;
1284 /** Center frequency 2 in MHz - valid only for 11acvht 80plus80 mode*/
1285 uint32_t band_center_freq2;
1286 /** channel info described below */
1287 uint32_t info;
1288 /** contains min power, max power, reg power and reg class id. */
1289 uint32_t reg_info_1;
1290 /** contains antennamax */
1291 uint32_t reg_info_2;
1292} wmi_channel_param;
1293
Govind Singh3ddda1f2016-03-09 11:34:12 +05301294struct scan_chan_list_params {
Anish Nataraj61e4f4c2017-03-20 12:49:08 +05301295 uint32_t pdev_id;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301296 uint8_t num_scan_chans;
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301297 wmi_channel_param *chan_info;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301298};
Govind Singh89727882016-04-15 13:58:27 +05301299#else
1300/**
1301 * struct scan_chan_list_params - scan channel list cmd parameter
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05301302 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05301303 * @num_chan: no of scan channels
1304 * @nallchans: nall chans
Om Prakash Tripathi0d0976b2017-12-15 17:29:55 +05301305 * @append: append to existing chan list
Govind Singh89727882016-04-15 13:58:27 +05301306 * @ch_param: pointer to channel_paramw
1307 */
1308struct scan_chan_list_params {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05301309 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05301310 uint16_t nallchans;
Om Prakash Tripathi0d0976b2017-12-15 17:29:55 +05301311 bool append;
Govind Singh89727882016-04-15 13:58:27 +05301312 struct channel_param ch_param[1];
1313};
1314#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +05301315
1316/**
Sathish Kumar907a7462017-02-27 10:35:40 +05301317 * struct multiple_vdev_restart_params - Multiple vdev restart cmd parameter
1318 * @pdev_id: Pdev identifier
1319 * @requestor_id: Unique id identifying the module
1320 * @disable_hw_ack: Flag to indicate disabling HW ACK during CAC
1321 * @cac_duration_ms: CAC duration on the given channel
1322 * @num_vdevs: No. of vdevs that need to be restarted
1323 * @ch_param: Pointer to channel_param
1324 * @vdev_ids: Pointer to array of vdev_ids
1325 */
1326struct multiple_vdev_restart_params {
1327 uint32_t pdev_id;
1328 uint32_t requestor_id;
1329 uint32_t disable_hw_ack;
1330 uint32_t cac_duration_ms;
1331 uint32_t num_vdevs;
1332 struct channel_param ch_param;
1333 uint32_t vdev_ids[WMI_HOST_PDEV_MAX_VDEVS];
1334};
1335/**
Govind Singh3ddda1f2016-03-09 11:34:12 +05301336 * struct fw_hang_params - fw hang command parameters
1337 * @type: 0:unused 1: ASSERT, 2:not respond detect command, 3:simulate ep-full
1338 * @delay_time_ms: 0xffffffff means the simulate will delay for random time (0 ~0xffffffff ms)
1339 */
1340struct fw_hang_params {
1341 uint32_t type;
1342 uint32_t delay_time_ms;
1343};
1344
1345/**
1346 * struct pdev_utf_params - pdev utf command parameters
1347 * @utf_payload:
1348 * @len:
Govind Singh89727882016-04-15 13:58:27 +05301349 * @is_ar900b: is it 900b target
Govind Singh3ddda1f2016-03-09 11:34:12 +05301350 */
1351struct pdev_utf_params {
1352 uint8_t *utf_payload;
1353 uint32_t len;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301354#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +05301355 bool is_ar900b;
1356#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +05301357};
1358
Govind Singh89727882016-04-15 13:58:27 +05301359/*Adding this due to dependency on wmi_unified.h
1360 */
1361typedef struct {
1362 uint32_t len;
1363 uint32_t msgref;
1364 uint32_t segmentInfo;
1365} QVIT_SEG_HDR_INFO_STRUCT;
1366
1367struct pdev_qvit_params {
1368 uint8_t *utf_payload;
1369 uint32_t len;
1370};
Govind Singh3ddda1f2016-03-09 11:34:12 +05301371/**
1372 * struct crash_inject - crash inject command parameters
1373 * @type: crash inject type
1374 * @delay_time_ms: time in milliseconds for FW to delay the crash
1375 */
1376struct crash_inject {
1377 uint32_t type;
1378 uint32_t delay_time_ms;
1379};
1380
1381/**
1382 * struct dbglog_params - fw deboglog command parameters
1383 * @param: command parameter
1384 * @val: parameter value
1385 * @module_id_bitmap: fixed length module id bitmap
1386 * @bitmap_len: module id bitmap length
Govind Singh89727882016-04-15 13:58:27 +05301387 * @cfgvalid: cfgvalid
Govind Singh3ddda1f2016-03-09 11:34:12 +05301388 */
1389struct dbglog_params {
1390 uint32_t param;
1391 uint32_t val;
1392 uint32_t *module_id_bitmap;
1393 uint32_t bitmap_len;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301394#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +05301395 uint32_t cfgvalid[2];
1396#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +05301397};
1398
1399/**
1400 * struct seg_hdr_info - header info
1401 * @len: length
1402 * @msgref: message refrence
1403 * @segmentInfo: segment info
1404 * @pad: padding
1405 */
1406struct seg_hdr_info {
1407 uint32_t len;
1408 uint32_t msgref;
1409 uint32_t segmentInfo;
1410 uint32_t pad;
1411};
1412
1413/**
Sathish Kumare10a1c52017-06-28 14:40:32 +05301414 * struct tx_send_params - TX parameters
1415 * @pwr: Tx frame transmission power
1416 * @mcs_mask: Modulation and coding index mask for transmission
1417 * bit 0 -> CCK 1 Mbps rate is allowed
1418 * bit 1 -> CCK 2 Mbps rate is allowed
1419 * bit 2 -> CCK 5.5 Mbps rate is allowed
1420 * bit 3 -> CCK 11 Mbps rate is allowed
1421 * bit 4 -> OFDM BPSK modulation, 1/2 coding rate is allowed
1422 * bit 5 -> OFDM BPSK modulation, 3/4 coding rate is allowed
1423 * bit 6 -> OFDM QPSK modulation, 1/2 coding rate is allowed
1424 * bit 7 -> OFDM QPSK modulation, 3/4 coding rate is allowed
1425 * bit 8 -> OFDM 16-QAM modulation, 1/2 coding rate is allowed
1426 * bit 9 -> OFDM 16-QAM modulation, 3/4 coding rate is allowed
1427 * bit 10 -> OFDM 64-QAM modulation, 2/3 coding rate is allowed
1428 * bit 11 -> OFDM 64-QAM modulation, 3/4 coding rate is allowed
1429 * @nss_mask: Spatial streams permitted
1430 * bit 0: if set, Nss = 1 (non-MIMO) is permitted
1431 * bit 1: if set, Nss = 2 (2x2 MIMO) is permitted
1432 * bit 2: if set, Nss = 3 (3x3 MIMO) is permitted
1433 * bit 3: if set, Nss = 4 (4x4 MIMO) is permitted
1434 * bit 4: if set, Nss = 5 (5x5 MIMO) is permitted
1435 * bit 5: if set, Nss = 6 (6x6 MIMO) is permitted
1436 * bit 6: if set, Nss = 7 (7x7 MIMO) is permitted
1437 * bit 7: if set, Nss = 8 (8x8 MIMO) is permitted
1438 * If no bits are set, target will choose what NSS type to use
1439 * @retry_limit: Maximum number of retries before ACK
1440 * @chain_mask: Chains to be used for transmission
1441 * @bw_mask: Bandwidth to be used for transmission
1442 * bit 0 -> 5MHz
1443 * bit 1 -> 10MHz
1444 * bit 2 -> 20MHz
1445 * bit 3 -> 40MHz
1446 * bit 4 -> 80MHz
1447 * bit 5 -> 160MHz
1448 * bit 6 -> 80_80MHz
1449 * @preamble_type: Preamble types for transmission
1450 * bit 0: if set, OFDM
1451 * bit 1: if set, CCK
1452 * bit 2: if set, HT
1453 * bit 3: if set, VHT
1454 * bit 4: if set, HE
1455 * @frame_type: Data or Management frame
1456 * Data:1 Mgmt:0
1457 */
1458struct tx_send_params {
1459 uint32_t pwr:8,
1460 mcs_mask:12,
1461 nss_mask:8,
1462 retry_limit:4;
1463 uint32_t chain_mask:8,
1464 bw_mask:7,
1465 preamble_type:5,
1466 frame_type:1,
1467 reserved:11;
1468};
1469
1470/**
Jeff Johnson81cf6832018-05-06 15:28:56 -07001471 * struct wmi_mgmt_params - wmi mgmt cmd parameters
Govind Singh3ddda1f2016-03-09 11:34:12 +05301472 * @tx_frame: management tx frame
Govind Singh89727882016-04-15 13:58:27 +05301473 * @frm_len: frame length
Govind Singh3ddda1f2016-03-09 11:34:12 +05301474 * @vdev_id: vdev id
Govind Singh3ddda1f2016-03-09 11:34:12 +05301475 * @chanfreq: channel frequency
1476 * @pdata: frame data
Govind Singh89727882016-04-15 13:58:27 +05301477 * @desc_id: descriptor id relyaed back by target
Sravan Kumar Kairam290dc362017-07-19 17:38:20 +05301478 * @macaddr: macaddr of peer
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301479 * @qdf_ctx: qdf context for qdf_nbuf_map
Sathish Kumare10a1c52017-06-28 14:40:32 +05301480 * @tx_param: TX send parameters
1481 * @tx_params_valid: Flag that indicates if TX params are valid
Sravan Kumar Kairam290dc362017-07-19 17:38:20 +05301482 * @use_6mbps: specify whether management frame to transmit should
1483 * use 6 Mbps rather than 1 Mbps min rate(for 5GHz band or P2P)
1484 * @tx_type: type of managment frame (determines what callback to use)
Govind Singh3ddda1f2016-03-09 11:34:12 +05301485 */
1486struct wmi_mgmt_params {
1487 void *tx_frame;
1488 uint16_t frm_len;
1489 uint8_t vdev_id;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301490 uint16_t chanfreq;
1491 void *pdata;
Govind Singh89727882016-04-15 13:58:27 +05301492 uint16_t desc_id;
1493 uint8_t *macaddr;
Govind Singhd7468a52016-03-09 14:32:57 +05301494 void *qdf_ctx;
Sathish Kumare10a1c52017-06-28 14:40:32 +05301495 struct tx_send_params tx_param;
1496 bool tx_params_valid;
Sravan Kumar Kairam290dc362017-07-19 17:38:20 +05301497 uint8_t use_6mbps;
1498 uint8_t tx_type;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301499};
Govind Singhbffe4de2016-02-26 17:50:39 +05301500
1501/**
Jeff Johnson81cf6832018-05-06 15:28:56 -07001502 * struct wmi_offchan_data_tx_params - wmi offchan data tx cmd parameters
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301503 * @tx_frame: management tx frame
1504 * @frm_len: frame length
1505 * @vdev_id: vdev id
1506 * @chanfreq: channel frequency
1507 * @pdata: frame data
1508 * @desc_id: descriptor id relyaed back by target
1509 * @macaddr: macaddr of peer
1510 * @qdf_ctx: qdf context for qdf_nbuf_map
Sathish Kumare10a1c52017-06-28 14:40:32 +05301511 * @tx_param: TX send parameters
1512 * @tx_params_valid: Flag that indicates if TX params are valid
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301513 */
1514struct wmi_offchan_data_tx_params {
1515 void *tx_frame;
1516 uint16_t frm_len;
1517 uint8_t vdev_id;
1518 uint16_t chanfreq;
1519 void *pdata;
1520 uint16_t desc_id;
1521 uint8_t *macaddr;
1522 void *qdf_ctx;
Sathish Kumare10a1c52017-06-28 14:40:32 +05301523 struct tx_send_params tx_param;
1524 bool tx_params_valid;
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301525};
1526
1527/**
Govind Singhbffe4de2016-02-26 17:50:39 +05301528 * struct p2p_ps_params - P2P powersave related params
1529 * @opp_ps: opportunistic power save
1530 * @ctwindow: CT window
1531 * @count: count
1532 * @duration: duration
1533 * @interval: interval
1534 * @single_noa_duration: single shot noa duration
1535 * @ps_selection: power save selection
1536 * @session_id: session id
1537 */
1538struct p2p_ps_params {
1539 uint8_t opp_ps;
1540 uint32_t ctwindow;
1541 uint8_t count;
1542 uint32_t duration;
1543 uint32_t interval;
1544 uint32_t single_noa_duration;
1545 uint8_t ps_selection;
1546 uint8_t session_id;
1547};
1548
Frank Liu0ba573b2017-03-15 17:51:43 +08001549#ifndef CONVERGED_TDLS_ENABLE
1550/**
1551 * struct sta_uapsd_params - uapsd auto trig params
1552 * @wmm_ac: WMM access category from 0 to 3
1553 * @user_priority: User priority to use in trigger frames
1554 * @service_interval: service interval
1555 * @suspend_interval: suspend interval
1556 * @delay_interval: delay interval
1557 */
1558struct sta_uapsd_params {
1559 uint32_t wmm_ac;
1560 uint32_t user_priority;
1561 uint32_t service_interval;
1562 uint32_t suspend_interval;
1563 uint32_t delay_interval;
1564};
Govind Singhbffe4de2016-02-26 17:50:39 +05301565
1566/**
1567 * struct ta_uapsd_trig_params - uapsd trigger parameter
1568 * @vdevid: vdev id
1569 * @peer_addr: peer address
1570 * @auto_triggerparam: trigger parameters
1571 * @num_ac: no of access category
1572 */
1573struct sta_uapsd_trig_params {
1574 uint32_t vdevid;
1575 uint8_t peer_addr[IEEE80211_ADDR_LEN];
Frank Liu0ba573b2017-03-15 17:51:43 +08001576 struct sta_uapsd_params *auto_triggerparam;
Govind Singhbffe4de2016-02-26 17:50:39 +05301577 uint32_t num_ac;
1578};
Frank Liu0ba573b2017-03-15 17:51:43 +08001579#endif
Govind Singhe7b800c2016-03-01 15:30:53 +05301580
Zhang Qian74a66aa2018-01-05 16:50:53 +08001581#define WMI_NUM_AC (4)
Govind Singhe7b800c2016-03-01 15:30:53 +05301582#define WMI_MAX_NUM_AC 4
Govind Singhe7b800c2016-03-01 15:30:53 +05301583
Govind Singh9bad0002016-03-01 15:54:59 +05301584
Poddar, Siddarth794b9962016-04-28 15:49:11 +05301585enum wmi_peer_rate_report_cond_phy_type {
1586 WMI_PEER_RATE_REPORT_COND_11B = 0,
1587 WMI_PEER_RATE_REPORT_COND_11A_G,
1588 WMI_PEER_RATE_REPORT_COND_11N,
1589 WMI_PEER_RATE_REPORT_COND_11AC,
1590 WMI_PEER_RATE_REPORT_COND_MAX_NUM
1591};
1592
1593/**
1594 * struct report_rate_delta - peer specific parameters
1595 * @percent: percentage
1596 * @delta_min: rate min delta
1597 */
1598struct report_rate_delta {
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301599 uint32_t percent; /* in unit of 12.5% */
1600 uint32_t delta_min; /* in unit of Mbps */
Poddar, Siddarth794b9962016-04-28 15:49:11 +05301601};
1602
1603/**
1604 * struct report_rate_per_phy - per phy report parameters
1605 * @cond_flags: condition flag val
1606 * @delta: rate delta
1607 * @report_rate_threshold: rate threshold
1608 */
1609struct report_rate_per_phy {
1610 /*
1611 * PEER_RATE_REPORT_COND_FLAG_DELTA,
1612 * PEER_RATE_REPORT_COND_FLAG_THRESHOLD
1613 * Any of these two conditions or both of
1614 * them can be set.
1615 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301616 uint32_t cond_flags;
Poddar, Siddarth794b9962016-04-28 15:49:11 +05301617 struct report_rate_delta delta;
1618 /*
1619 * In unit of Mbps. There are at most 4 thresholds
1620 * If the threshold count is less than 4, set zero to
1621 * the one following the last threshold
1622 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301623 uint32_t report_rate_threshold[WMI_MAX_NUM_OF_RATE_THRESH];
Poddar, Siddarth794b9962016-04-28 15:49:11 +05301624};
1625
1626/**
1627 * struct peer_rate_report_params - peer rate report parameters
1628 * @rate_report_enable: enable rate report param
1629 * @backoff_time: backoff time
1630 * @timer_period: timer
1631 * @report_per_phy: report per phy type
1632 */
1633struct wmi_peer_rate_report_params {
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301634 uint32_t rate_report_enable;
1635 uint32_t backoff_time; /* in unit of msecond */
1636 uint32_t timer_period; /* in unit of msecond */
Poddar, Siddarth794b9962016-04-28 15:49:11 +05301637 /*
1638 *In the following field, the array index means the phy type,
1639 * please see enum wmi_peer_rate_report_cond_phy_type for detail
1640 */
1641 struct report_rate_per_phy report_per_phy[
1642 WMI_PEER_RATE_REPORT_COND_MAX_NUM];
1643
1644};
1645
Govind Singh9bad0002016-03-01 15:54:59 +05301646/**
1647 * struct t_thermal_cmd_params - thermal command parameters
1648 * @min_temp: minimum temprature
1649 * @max_temp: maximum temprature
1650 * @thermal_enable: thermal enable
1651 */
1652struct thermal_cmd_params {
1653 uint16_t min_temp;
1654 uint16_t max_temp;
1655 uint8_t thermal_enable;
1656};
1657
1658#define WMI_LRO_IPV4_SEED_ARR_SZ 5
1659#define WMI_LRO_IPV6_SEED_ARR_SZ 11
1660
1661/**
1662 * struct wmi_lro_config_cmd_t - set LRO init parameters
1663 * @lro_enable: indicates whether lro is enabled
1664 * @tcp_flag: If the TCP flags from the packet do not match
1665 * the values in this field after masking with TCP flags mask
1666 * below, packet is not LRO eligible
1667 * @tcp_flag_mask: field for comparing the TCP values provided
1668 * above with the TCP flags field in the received packet
1669 * @toeplitz_hash_ipv4: contains seed needed to compute the flow id
1670 * 5-tuple toeplitz hash for ipv4 packets
1671 * @toeplitz_hash_ipv6: contains seed needed to compute the flow id
1672 * 5-tuple toeplitz hash for ipv6 packets
1673 */
1674struct wmi_lro_config_cmd_t {
1675 uint32_t lro_enable;
1676 uint32_t tcp_flag:9,
1677 tcp_flag_mask:9;
1678 uint32_t toeplitz_hash_ipv4[WMI_LRO_IPV4_SEED_ARR_SZ];
1679 uint32_t toeplitz_hash_ipv6[WMI_LRO_IPV6_SEED_ARR_SZ];
1680};
Govind Singhae855362016-03-07 14:24:22 +05301681
1682/**
1683 * struct gtx_config_t - GTX config
1684 * @gtx_rt_mask: for HT and VHT rate masks
1685 * @gtx_usrcfg: host request for GTX mask
1686 * @gtx_threshold: PER Threshold (default: 10%)
1687 * @gtx_margin: PER margin (default: 2%)
1688 * @gtx_tcpstep: TCP step (default: 1)
1689 * @gtx_tpcMin: TCP min (default: 5)
1690 * @gtx_bwmask: BW mask (20/40/80/160 Mhz)
1691 */
1692struct wmi_gtx_config {
1693 uint32_t gtx_rt_mask[2];
1694 uint32_t gtx_usrcfg;
1695 uint32_t gtx_threshold;
1696 uint32_t gtx_margin;
1697 uint32_t gtx_tpcstep;
1698 uint32_t gtx_tpcmin;
1699 uint32_t gtx_bwmask;
1700};
1701
1702/**
1703 * struct wmi_probe_resp_params - send probe response parameters
Krunal Soni36f17d42017-11-14 15:42:48 -08001704 * @prb_rsp_template_frm: pointer to template probe response template
1705 * @prb_rsp_template_len: length of probe response template
Govind Singhae855362016-03-07 14:24:22 +05301706 */
1707struct wmi_probe_resp_params {
Krunal Soni36f17d42017-11-14 15:42:48 -08001708 uint8_t *prb_rsp_template_frm;
1709 uint32_t prb_rsp_template_len;
Govind Singhae855362016-03-07 14:24:22 +05301710};
1711
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +05301712/* struct set_key_params: structure containing
1713 * installation key parameters
1714 * @vdev_id: vdev id
1715 * @key_len: key length
1716 * @key_idx: key index
1717 * @peer_mac: peer mac address
1718 * @key_flags: key flags, 0:pairwise key, 1:group key, 2:static key
1719 * @key_cipher: key cipher based on security mode
1720 * @key_txmic_len: tx mic length
1721 * @key_rxmic_len: rx mic length
Gurumoorthi Gnanasambandhan0d283282017-01-10 20:51:02 +05301722 * @key_tsc_counter: key tx sc counter
1723 * @key_rsc_counter: key rx sc counter
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +05301724 * @rx_iv: receive IV, applicable only in case of WAPI
1725 * @tx_iv: transmit IV, applicable only in case of WAPI
1726 * @key_data: key data
1727 */
1728struct set_key_params {
1729 uint8_t vdev_id;
1730 uint16_t key_len;
1731 uint32_t key_idx;
1732 uint8_t peer_mac[IEEE80211_ADDR_LEN];
1733 uint32_t key_flags;
1734 uint32_t key_cipher;
1735 uint32_t key_txmic_len;
1736 uint32_t key_rxmic_len;
Gurumoorthi Gnanasambandhan0d283282017-01-10 20:51:02 +05301737 uint64_t key_tsc_counter;
1738 uint64_t *key_rsc_counter;
1739#if defined(ATH_SUPPORT_WAPI) || defined(FEATURE_WLAN_WAPI)
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +05301740 uint8_t rx_iv[16];
1741 uint8_t tx_iv[16];
1742#endif
1743 uint8_t key_data[WMI_MAC_MAX_KEY_LENGTH];
1744};
1745
Govind Singhae855362016-03-07 14:24:22 +05301746/**
1747 * struct sta_params - sta keep alive parameters
1748 * @vdev_id: vdev id
1749 * @method: keep alive method
1750 * @timeperiod: time to keep alive
1751 * @hostv4addr: host ipv4 address
1752 * @destv4addr: destination ipv4 address
1753 * @destmac: destination mac address
1754 */
1755struct sta_params {
1756 uint8_t vdev_id;
1757 uint32_t method;
1758 uint32_t timeperiod;
1759 uint8_t *hostv4addr;
1760 uint8_t *destv4addr;
1761 uint8_t *destmac;
1762};
1763
1764/**
1765 * struct gateway_update_req_param - gateway parameter update request
1766 * @request_id: request id
1767 * @session_id: session id
1768 * @max_retries: Max ARP/NS retry attempts
1769 * @timeout: Retry interval
1770 * @ipv4_addr_type: on ipv4 network
1771 * @ipv6_addr_type: on ipv6 network
1772 * @gw_mac_addr: gateway mac addr
1773 * @ipv4_addr: ipv4 addr
1774 * @ipv6_addr: ipv6 addr
1775 */
1776struct gateway_update_req_param {
1777 uint32_t request_id;
1778 uint32_t session_id;
1779 uint32_t max_retries;
1780 uint32_t timeout;
1781 uint32_t ipv4_addr_type;
1782 uint32_t ipv6_addr_type;
Govind Singhd7468a52016-03-09 14:32:57 +05301783 struct qdf_mac_addr gw_mac_addr;
1784 uint8_t ipv4_addr[QDF_IPV4_ADDR_SIZE];
1785 uint8_t ipv6_addr[QDF_IPV6_ADDR_SIZE];
Govind Singhae855362016-03-07 14:24:22 +05301786};
1787
1788/**
1789 * struct rssi_monitor_param - rssi monitoring
1790 * @request_id: request id
1791 * @session_id: session id
1792 * @min_rssi: minimum rssi
1793 * @max_rssi: maximum rssi
1794 * @control: flag to indicate start or stop
1795 */
1796struct rssi_monitor_param {
1797 uint32_t request_id;
1798 uint32_t session_id;
1799 int8_t min_rssi;
1800 int8_t max_rssi;
1801 bool control;
1802};
1803
1804/**
Jeff Johnson81cf6832018-05-06 15:28:56 -07001805 * struct scan_mac_oui - oui parameters
Govind Singhae855362016-03-07 14:24:22 +05301806 * @oui: oui parameters
Rajeev Kumar Sirasanagandlad84e7e92017-06-08 18:12:50 +05301807 * @vdev_id: interface id
1808 * @enb_probe_req_sno_randomization: control probe req sequence no randomization
Rajeev Kumar Sirasanagandlaf3aaa332017-06-21 12:01:22 +05301809 * @ie_whitelist: probe req IE whitelist attrs
Govind Singhae855362016-03-07 14:24:22 +05301810 */
1811struct scan_mac_oui {
1812 uint8_t oui[WMI_WIFI_SCANNING_MAC_OUI_LENGTH];
Rajeev Kumar Sirasanagandlad84e7e92017-06-08 18:12:50 +05301813 uint32_t vdev_id;
1814 bool enb_probe_req_sno_randomization;
Rajeev Kumar Sirasanagandlaf3aaa332017-06-21 12:01:22 +05301815 struct probe_req_whitelist_attr ie_whitelist;
Govind Singhae855362016-03-07 14:24:22 +05301816};
1817
1818#define WMI_PASSPOINT_REALM_LEN 256
1819#define WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM 16
1820#define WMI_PASSPOINT_PLMN_LEN 3
1821/**
1822 * struct wifi_passpoint_network_param - passpoint network block
1823 * @id: identifier of this network block
1824 * @realm: null terminated UTF8 encoded realm, 0 if unspecified
1825 * @roaming_consortium_ids: roaming consortium ids to match, 0s if unspecified
1826 * @plmn: mcc/mnc combination as per rules, 0s if unspecified
1827 */
1828struct wifi_passpoint_network_param {
1829 uint32_t id;
1830 uint8_t realm[WMI_PASSPOINT_REALM_LEN];
1831 int64_t roaming_consortium_ids[WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM];
1832 uint8_t plmn[WMI_PASSPOINT_PLMN_LEN];
1833};
1834
1835/**
1836 * struct wifi_passpoint_req_param - passpoint request
1837 * @request_id: request identifier
1838 * @num_networks: number of networks
1839 * @networks: passpoint networks
1840 */
1841struct wifi_passpoint_req_param {
1842 uint32_t request_id;
1843 uint32_t session_id;
1844 uint32_t num_networks;
1845 struct wifi_passpoint_network_param networks[];
1846};
1847
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301848/* struct mobility_domain_info - structure containing
1849 * mobility domain info
1850 * @mdie_present: mobility domain present or not
1851 * @mobility_domain: mobility domain
1852 */
1853struct mobility_domain_info {
1854 uint8_t mdie_present;
1855 uint16_t mobility_domain;
1856};
1857
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301858#define WMI_HOST_ROAM_OFFLOAD_NUM_MCS_SET (16)
1859
1860/* This TLV will be filled only in case roam offload
Deepak Dhamdherea65998e2017-02-09 19:40:26 -08001861 * for wpa2-psk/pmkid/ese/11r is enabled */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301862typedef struct {
1863 /*
1864 * TLV tag and len; tag equals
1865 * WMITLV_TAG_STRUC_wmi_roam_offload_fixed_param
1866 */
1867 uint32_t tlv_header;
1868 uint32_t rssi_cat_gap; /* gap for every category bucket */
1869 uint32_t prefer_5g; /* prefer select 5G candidate */
1870 uint32_t select_5g_margin;
1871 uint32_t reassoc_failure_timeout; /* reassoc failure timeout */
1872 uint32_t capability;
1873 uint32_t ht_caps_info;
1874 uint32_t ampdu_param;
1875 uint32_t ht_ext_cap;
1876 uint32_t ht_txbf;
1877 uint32_t asel_cap;
1878 uint32_t qos_enabled;
1879 uint32_t qos_caps;
1880 uint32_t wmm_caps;
1881 /* since this is 4 byte aligned, we don't declare it as tlv array */
1882 uint32_t mcsset[WMI_HOST_ROAM_OFFLOAD_NUM_MCS_SET >> 2];
Abhinav Kumar8dcdbde2018-04-05 18:53:39 +05301883 uint32_t ho_delay_for_rx;
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301884} roam_offload_param;
1885
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301886#define WMI_FILS_MAX_RRK_LENGTH 64
1887#define WMI_FILS_MAX_RIK_LENGTH WMI_FILS_MAX_RRK_LENGTH
1888#define WMI_FILS_MAX_REALM_LENGTH 256
1889#define WMI_FILS_MAX_USERNAME_LENGTH 16
1890
1891/**
1892 * struct roam_fils_params - Roam FILS params
1893 * @username: username
1894 * @username_length: username length
1895 * @next_erp_seq_num: next ERP sequence number
1896 * @rrk: RRK
1897 * @rrk_length: length of @rrk
1898 * @rik: RIK
1899 * @rik_length: length of @rik
1900 * @realm: realm
1901 * @realm_len: length of @realm
1902 */
1903struct roam_fils_params {
1904 uint8_t username[WMI_FILS_MAX_USERNAME_LENGTH];
1905 uint32_t username_length;
1906 uint32_t next_erp_seq_num;
1907 uint8_t rrk[WMI_FILS_MAX_RRK_LENGTH];
1908 uint32_t rrk_length;
1909 uint8_t rik[WMI_FILS_MAX_RIK_LENGTH];
1910 uint32_t rik_length;
1911 uint8_t realm[WMI_FILS_MAX_REALM_LENGTH];
1912 uint32_t realm_len;
1913};
1914
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301915/* struct roam_offload_scan_params - structure
1916 * containing roaming offload scan parameters
1917 * @is_roam_req_valid: flag to tell whether roam req
1918 * is valid or NULL
1919 * @mode: stores flags for scan
1920 * @vdev_id: vdev id
1921 * @roam_offload_enabled: flag for offload enable
1922 * @psk_pmk: pre shared key/pairwise master key
1923 * @pmk_len: length of PMK
1924 * @prefer_5ghz: prefer select 5G candidate
1925 * @roam_rssi_cat_gap: gap for every category bucket
1926 * @select_5ghz_margin: select 5 Ghz margin
1927 * @krk: KRK
1928 * @btk: BTK
1929 * @reassoc_failure_timeout: reassoc failure timeout
1930 * @rokh_id_length: r0kh id length
1931 * @rokh_id: r0kh id
1932 * @roam_key_mgmt_offload_enabled: roam offload flag
1933 * @auth_mode: authentication mode
Deepak Dhamdherea65998e2017-02-09 19:40:26 -08001934 * @fw_okc: use OKC in firmware
1935 * @fw_pmksa_cache: use PMKSA cache in firmware
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301936 * @is_ese_assoc: flag to determine ese assoc
1937 * @mdid: mobility domain info
1938 * @roam_offload_params: roam offload tlv params
Abhinav Kumare59492a2018-04-06 17:18:52 +05301939 * @min_delay_btw_roam_scans: Delay btw two scans
1940 * @roam_trigger_reason_bitmask: Roam reason bitmark
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301941 * @assoc_ie_length: Assoc IE length
1942 * @assoc_ie: Assoc IE buffer
1943 * @add_fils_tlv: add FILS TLV boolean
1944 * @roam_fils_params: roam fils params
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301945 */
1946struct roam_offload_scan_params {
1947 uint8_t is_roam_req_valid;
1948 uint32_t mode;
1949 uint32_t vdev_id;
1950#ifdef WLAN_FEATURE_ROAM_OFFLOAD
1951 uint8_t roam_offload_enabled;
1952 uint8_t psk_pmk[WMI_ROAM_SCAN_PSK_SIZE];
1953 uint32_t pmk_len;
1954 uint8_t prefer_5ghz;
1955 uint8_t roam_rssi_cat_gap;
1956 uint8_t select_5ghz_margin;
1957 uint8_t krk[WMI_KRK_KEY_LEN];
1958 uint8_t btk[WMI_BTK_KEY_LEN];
1959 uint32_t reassoc_failure_timeout;
1960 uint32_t rokh_id_length;
1961 uint8_t rokh_id[WMI_ROAM_R0KH_ID_MAX_LEN];
1962 uint8_t roam_key_mgmt_offload_enabled;
1963 int auth_mode;
Deepak Dhamdherea65998e2017-02-09 19:40:26 -08001964 bool fw_okc;
1965 bool fw_pmksa_cache;
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301966#endif
Abhinav Kumare59492a2018-04-06 17:18:52 +05301967 uint32_t min_delay_btw_roam_scans;
1968 uint32_t roam_trigger_reason_bitmask;
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301969 bool is_ese_assoc;
Abhinav Kumarbb433b22018-03-27 17:06:59 +05301970 bool is_11r_assoc;
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301971 struct mobility_domain_info mdid;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301972#ifdef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +05301973 /* THis is not available in non tlv target.
1974 * please remove this and replace with a host based
1975 * structure */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301976 roam_offload_param roam_offload_params;
Govind Singh89727882016-04-15 13:58:27 +05301977#endif
Selvaraj, Sridhar0a1427f2016-07-04 21:40:23 +05301978 uint32_t assoc_ie_length;
1979 uint8_t assoc_ie[MAX_ASSOC_IE_LENGTH];
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301980 bool add_fils_tlv;
1981#ifdef WLAN_FEATURE_FILS_SK
1982 struct roam_fils_params roam_fils_params;
1983#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05301984};
1985
1986/* struct roam_offload_scan_rssi_params - structure containing
1987 * parameters for roam offload scan based on RSSI
1988 * @rssi_thresh: rssi threshold
1989 * @rssi_thresh_diff: difference in rssi threshold
1990 * @hi_rssi_scan_max_count: 5G scan max count
1991 * @hi_rssi_scan_rssi_delta: 5G scan rssi change threshold value
1992 * @hi_rssi_scan_rssi_ub: 5G scan upper bound
1993 * @raise_rssi_thresh_5g: flag to determine penalty and boost thresholds
1994 * @session_id: vdev id
1995 * @penalty_threshold_5g: RSSI threshold below which 5GHz RSSI is penalized
1996 * @boost_threshold_5g: RSSI threshold above which 5GHz RSSI is favored
1997 * @raise_factor_5g: factor by which 5GHz RSSI is boosted
1998 * @drop_factor_5g: factor by which 5GHz RSSI is penalized
1999 * @max_raise_rssi_5g: maximum boost that can be applied to a 5GHz RSSI
2000 * @max_drop_rssi_5g: maximum penalty that can be applied to a 5GHz RSSI
2001 * @good_rssi_threshold: RSSI below which roam is kicked in by background
2002 * scan although rssi is still good
2003 * @roam_earlystop_thres_min: Minimum RSSI threshold value for early stop,
2004 * unit is dB above NF
2005 * @roam_earlystop_thres_max: Maximum RSSI threshold value for early stop,
2006 * unit is dB above NF
Gupta, Kapil1f4a4c32016-04-12 15:02:00 +05302007 * @dense_rssi_thresh_offset: dense roam RSSI threshold difference
2008 * @dense_min_aps_cnt: dense roam minimum APs
2009 * @initial_dense_status: dense status detected by host
2010 * @traffic_threshold: dense roam RSSI threshold
Varun Reddy Yeturu05c775b2017-07-26 10:59:39 -07002011 * @bg_scan_bad_rssi_thresh: Bad RSSI threshold to perform bg scan
Vignesh Viswanathan1384bb02017-09-07 18:58:08 +05302012 * @roam_bad_rssi_thresh_offset_2g: Offset from Bad RSSI threshold for 2G to 5G Roam
Varun Reddy Yeturu05c775b2017-07-26 10:59:39 -07002013 * @bg_scan_client_bitmap: Bitmap used to identify the client scans to snoop
Vignesh Viswanathan1384bb02017-09-07 18:58:08 +05302014 * @flags: Flags for Background Roaming
2015 * Bit 0 : BG roaming enabled when we connect to 2G AP only and roaming to 5G AP only.
2016 * Bit 1-31: Reserved
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05302017 */
2018struct roam_offload_scan_rssi_params {
2019 int8_t rssi_thresh;
2020 uint8_t rssi_thresh_diff;
2021 uint32_t hi_rssi_scan_max_count;
2022 uint32_t hi_rssi_scan_rssi_delta;
2023 int32_t hi_rssi_scan_rssi_ub;
2024 int raise_rssi_thresh_5g;
2025 uint8_t session_id;
2026 uint32_t penalty_threshold_5g;
2027 uint32_t boost_threshold_5g;
2028 uint8_t raise_factor_5g;
2029 uint8_t drop_factor_5g;
2030 int max_raise_rssi_5g;
2031 int max_drop_rssi_5g;
2032 uint32_t good_rssi_threshold;
2033 uint32_t roam_earlystop_thres_min;
2034 uint32_t roam_earlystop_thres_max;
Gupta, Kapil1f4a4c32016-04-12 15:02:00 +05302035 int dense_rssi_thresh_offset;
2036 int dense_min_aps_cnt;
2037 int initial_dense_status;
2038 int traffic_threshold;
Varun Reddy Yeturu51d211b2017-06-26 13:53:17 -07002039 int32_t rssi_thresh_offset_5g;
Varun Reddy Yeturu05c775b2017-07-26 10:59:39 -07002040 int8_t bg_scan_bad_rssi_thresh;
Vignesh Viswanathan1384bb02017-09-07 18:58:08 +05302041 uint8_t roam_bad_rssi_thresh_offset_2g;
Varun Reddy Yeturu05c775b2017-07-26 10:59:39 -07002042 uint32_t bg_scan_client_bitmap;
Vignesh Viswanathan1384bb02017-09-07 18:58:08 +05302043 uint32_t flags;
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05302044};
2045
Govind Singhae855362016-03-07 14:24:22 +05302046/**
Himanshu Agarwalf9524e12017-09-28 11:51:35 +05302047 * struct ap_profile - Structure ap profile to match candidate
2048 * @flags: flags
2049 * @rssi_threshold: the value of the the candidate AP should higher by this
2050 * threshold than the rssi of the currrently associated AP
2051 * @ssid: ssid vlaue to be matched
2052 * @rsn_authmode: security params to be matched
2053 * @rsn_ucastcipherset: unicast cipher set
2054 * @rsn_mcastcipherset: mcast/group cipher set
2055 * @rsn_mcastmgmtcipherset: mcast/group management frames cipher set
2056 * @rssi_abs_thresh: the value of the candidate AP should higher than this
2057 * absolute RSSI threshold. Zero means no absolute minimum
2058 * RSSI is required. units are the offset from the noise
2059 * floor in dB
2060 */
2061struct ap_profile {
2062 uint32_t flags;
2063 uint32_t rssi_threshold;
2064 struct mac_ssid ssid;
2065 uint32_t rsn_authmode;
2066 uint32_t rsn_ucastcipherset;
2067 uint32_t rsn_mcastcipherset;
2068 uint32_t rsn_mcastmgmtcipherset;
2069 uint32_t rssi_abs_thresh;
2070};
2071
2072/**
2073 * struct rssi_scoring - rssi scoring param to sortlist selected AP
2074 * @best_rssi_threshold: Roamable AP RSSI equal or better than this threshold,
2075 * full rssi score 100. Units in dBm.
2076 * @good_rssi_threshold: Below threshold, scoring linear percentage between
2077 * rssi_good_pnt and 100. Units in dBm.
2078 * @bad_rssi_threshold: Between good and bad rssi threshold, scoring linear
2079 * % between rssi_bad_pcnt and rssi_good_pct in dBm.
2080 * @good_rssi_pcnt: Used to assigned scoring percentage of each slot between
2081 * best to good rssi threshold. Units in percentage.
2082 * @bad_rssi_pcnt: Used to assigned scoring percentage of each slot between good
2083 * to bad rssi threshold. Unites in percentage.
2084 * @good_bucket_size : bucket size of slot in good zone
2085 * @bad_bucket_size : bucket size of slot in bad zone
2086 * @rssi_pref_5g_rssi_thresh: Below rssi threshold, 5G AP have given preference
2087 * of band percentage. Units in dBm.
2088 */
2089struct rssi_scoring {
2090 int32_t best_rssi_threshold;
2091 int32_t good_rssi_threshold;
2092 int32_t bad_rssi_threshold;
2093 uint32_t good_rssi_pcnt;
2094 uint32_t bad_rssi_pcnt;
2095 uint32_t good_bucket_size;
2096 uint32_t bad_bucket_size;
2097 int32_t rssi_pref_5g_rssi_thresh;
2098};
2099
2100/**
2101 * struct param_slot_scoring - define % score for differents slots for a
2102 * scoring param.
2103 * @num_slot: number of slots in which the param will be divided.
2104 * Max 15. index 0 is used for 'not_present. Num_slot will
2105 * equally divide 100. e.g, if num_slot = 4 slot 0 = 0-25%, slot
2106 * 1 = 26-50% slot 2 = 51-75%, slot 3 = 76-100%
2107 * @score_pcnt3_to_0: Conatins score percentage for slot 0-3
2108 * BITS 0-7 :- the scoring pcnt when not present
2109 * BITS 8-15 :- SLOT_1
2110 * BITS 16-23 :- SLOT_2
2111 * BITS 24-31 :- SLOT_3
2112 * @score_pcnt7_to_4: Conatins score percentage for slot 4-7
2113 * BITS 0-7 :- SLOT_4
2114 * BITS 8-15 :- SLOT_5
2115 * BITS 16-23 :- SLOT_6
2116 * BITS 24-31 :- SLOT_7
2117 * @score_pcnt11_to_8: Conatins score percentage for slot 8-11
2118 * BITS 0-7 :- SLOT_8
2119 * BITS 8-15 :- SLOT_9
2120 * BITS 16-23 :- SLOT_10
2121 * BITS 24-31 :- SLOT_11
2122 * @score_pcnt15_to_12: Conatins score percentage for slot 12-15
2123 * BITS 0-7 :- SLOT_12
2124 * BITS 8-15 :- SLOT_13
2125 * BITS 16-23 :- SLOT_14
2126 * BITS 24-31 :- SLOT_15
2127 */
2128struct param_slot_scoring {
2129 uint32_t num_slot;
2130 uint32_t score_pcnt3_to_0;
2131 uint32_t score_pcnt7_to_4;
2132 uint32_t score_pcnt11_to_8;
2133 uint32_t score_pcnt15_to_12;
2134};
2135
2136/**
2137 * struct scoring_param - scoring param to sortlist selected AP
2138 * @disable_bitmap: Each bit will be either allow(0)/disallow(1) to
2139 * considered the roam score param.
2140 * @rssi_weightage: RSSI weightage out of total score in %
2141 * @ht_weightage: HT weightage out of total score in %.
2142 * @vht_weightage: VHT weightage out of total score in %.
2143 * @he_weightaget: 11ax weightage out of total score in %.
2144 * @bw_weightage: Bandwidth weightage out of total score in %.
2145 * @band_weightage: Band(2G/5G) weightage out of total score in %.
2146 * @nss_weightage: NSS(1x1 / 2x2)weightage out of total score in %.
2147 * @esp_qbss_weightage: ESP/QBSS weightage out of total score in %.
2148 * @beamforming_weightage: Beamforming weightage out of total score in %.
2149 * @pcl_weightage: PCL weightage out of total score in %.
2150 * @oce_wan_weightage OCE WAN metrics weightage out of total score in %.
2151 * @bw_index_score: channel BW scoring percentage information.
2152 * BITS 0-7 :- It contains scoring percentage of 20MHz BW
2153 * BITS 8-15 :- It contains scoring percentage of 40MHz BW
2154 * BITS 16-23 :- It contains scoring percentage of 80MHz BW
2155 * BITS 24-31 :- It contains scoring percentage of 1600MHz BW
2156 * The value of each index must be 0-100
2157 * @band_index_score: band scording percentage information.
2158 * BITS 0-7 :- It contains scoring percentage of 2G
2159 * BITS 8-15 :- It contains scoring percentage of 5G
2160 * BITS 16-23 :- reserved
2161 * BITS 24-31 :- reserved
2162 * The value of each index must be 0-100
2163 * @nss_index_score: NSS scoring percentage information.
2164 * BITS 0-7 :- It contains scoring percentage of 1x1
2165 * BITS 8-15 :- It contains scoring percentage of 2x2
2166 * BITS 16-23 :- It contains scoring percentage of 3x3
2167 * BITS 24-31 :- It contains scoring percentage of 4x4
2168 * The value of each index must be 0-100
2169 * @rssi_scoring: RSSI scoring information.
2170 * @esp_qbss_scoring: ESP/QBSS scoring percentage information
2171 * @oce_wan_scoring: OCE WAN metrics percentage information
2172*/
2173struct scoring_param {
2174 uint32_t disable_bitmap;
2175 int32_t rssi_weightage;
2176 int32_t ht_weightage;
2177 int32_t vht_weightage;
2178 int32_t he_weightage;
2179 int32_t bw_weightage;
2180 int32_t band_weightage;
2181 int32_t nss_weightage;
2182 int32_t esp_qbss_weightage;
2183 int32_t beamforming_weightage;
2184 int32_t pcl_weightage;
2185 int32_t oce_wan_weightage;
2186 uint32_t bw_index_score;
2187 uint32_t band_index_score;
2188 uint32_t nss_index_score;
2189 struct rssi_scoring rssi_scoring;
2190 struct param_slot_scoring esp_qbss_scoring;
2191 struct param_slot_scoring oce_wan_scoring;
2192};
2193
2194/**
2195 * struct ap_profile_params - ap profile params
2196 * @vdev_id: vdev id
2197 * @profile: ap profile to match candidate
2198 * @param: scoring params to short candidate
2199 */
2200struct ap_profile_params {
2201 uint8_t vdev_id;
2202 struct ap_profile profile;
2203 struct scoring_param param;
2204};
2205
2206/**
Govind Singhae855362016-03-07 14:24:22 +05302207 * struct wifi_epno_network - enhanced pno network block
2208 * @ssid: ssid
2209 * @rssi_threshold: threshold for considering this SSID as found, required
2210 * granularity for this threshold is 4dBm to 8dBm
2211 * @flags: WIFI_PNO_FLAG_XXX
2212 * @auth_bit_field: auth bit field for matching WPA IE
2213 */
2214struct wifi_epno_network_params {
2215 struct mac_ssid ssid;
2216 int8_t rssi_threshold;
2217 uint8_t flags;
2218 uint8_t auth_bit_field;
2219};
2220
2221/**
2222 * struct wifi_enhanched_pno_params - enhanced pno network params
Mukul Sharma90bc73b2016-10-03 15:04:20 +05302223 * @request_id: request id number
2224 * @session_id: session_id number
2225 * @min_5ghz_rssi: minimum 5GHz RSSI for a BSSID to be considered
2226 * @min_24ghz_rssi: minimum 2.4GHz RSSI for a BSSID to be considered
2227 * @initial_score_max: maximum score that a network can have before bonuses
2228 * @current_connection_bonus: only report when there is a network's score this
2229 * much higher than the current connection
2230 * @same_network_bonus: score bonus for all n/w with the same network flag
2231 * @secure_bonus: score bonus for networks that are not open
2232 * @band_5ghz_bonus: 5GHz RSSI score bonus (applied to all 5GHz networks)
Govind Singhae855362016-03-07 14:24:22 +05302233 * @num_networks: number of ssids
Mukul Sharma90bc73b2016-10-03 15:04:20 +05302234 * @networks: EPNO networks
Govind Singhae855362016-03-07 14:24:22 +05302235 */
2236struct wifi_enhanched_pno_params {
2237 uint32_t request_id;
2238 uint32_t session_id;
Mukul Sharma90bc73b2016-10-03 15:04:20 +05302239 uint32_t min_5ghz_rssi;
2240 uint32_t min_24ghz_rssi;
2241 uint32_t initial_score_max;
2242 uint32_t current_connection_bonus;
2243 uint32_t same_network_bonus;
2244 uint32_t secure_bonus;
2245 uint32_t band_5ghz_bonus;
Govind Singhae855362016-03-07 14:24:22 +05302246 uint32_t num_networks;
2247 struct wifi_epno_network_params networks[];
2248};
2249
2250enum {
2251 WMI_AP_RX_DATA_OFFLOAD = 0x00,
2252 WMI_STA_RX_DATA_OFFLOAD = 0x01,
2253};
2254
2255/**
Govind Singhc7cd2d62016-06-21 14:33:26 +05302256 * enum extscan_configuration_flags - extscan config flags
2257 * @WMI_EXTSCAN_LP_EXTENDED_BATCHING: extended batching
2258 */
2259enum wmi_extscan_configuration_flags {
2260 WMI_EXTSCAN_LP_EXTENDED_BATCHING = 0x00000001,
2261};
2262
2263/**
Govind Singhae855362016-03-07 14:24:22 +05302264 * enum extscan_report_events_type - extscan report events type
2265 * @EXTSCAN_REPORT_EVENTS_BUFFER_FULL: report only when scan history is % full
2266 * @EXTSCAN_REPORT_EVENTS_EACH_SCAN: report a scan completion event after scan
2267 * @EXTSCAN_REPORT_EVENTS_FULL_RESULTS: forward scan results
2268 * (beacons/probe responses + IEs)
2269 * in real time to HAL, in addition to completion events.
2270 * Note: To keep backward compatibility,
2271 * fire completion events regardless of REPORT_EVENTS_EACH_SCAN.
2272 * @EXTSCAN_REPORT_EVENTS_NO_BATCH: controls batching,
2273 * 0 => batching, 1 => no batching
2274 */
2275enum wmi_extscan_report_events_type {
2276 WMI_EXTSCAN_REPORT_EVENTS_BUFFER_FULL = 0x00,
2277 WMI_EXTSCAN_REPORT_EVENTS_EACH_SCAN = 0x01,
2278 WMI_EXTSCAN_REPORT_EVENTS_FULL_RESULTS = 0x02,
2279 WMI_EXTSCAN_REPORT_EVENTS_NO_BATCH = 0x04,
2280};
2281
2282/**
Govind Singhae855362016-03-07 14:24:22 +05302283 * struct extscan_capabilities_params - ext scan capablities
2284 * @request_id: request_id
2285 * @session_id: session_id
2286 */
2287struct extscan_capabilities_params {
2288 uint32_t request_id;
2289 uint8_t session_id;
2290};
2291
2292/**
2293 * struct extscan_capabilities_reset_params - ext scan capablities reset parameter
2294 * @request_id: request_id
2295 * @session_id: session_id
2296 */
2297struct extscan_capabilities_reset_params {
2298 uint32_t request_id;
2299 uint8_t session_id;
2300};
2301
2302/**
2303 * struct extscan_bssid_hotlist_reset_params - ext scan hotlist reset parameter
2304 * @request_id: request_id
2305 * @session_id: session_id
2306 */
2307struct extscan_bssid_hotlist_reset_params {
2308 uint32_t request_id;
2309 uint8_t session_id;
2310};
2311
2312/**
2313 * struct extscan_stop_req_params - ext scan stop parameter
2314 * @request_id: request_id
2315 * @session_id: session_id
2316 */
2317struct extscan_stop_req_params {
2318 uint32_t request_id;
2319 uint8_t session_id;
2320};
2321
2322/**
2323 * struct ap_threshold_params - ap threshold parameter
2324 * @bssid: mac address
2325 * @low: low threshold
2326 * @high: high threshold
2327 */
2328struct ap_threshold_params {
Govind Singhd7468a52016-03-09 14:32:57 +05302329 struct qdf_mac_addr bssid;
Govind Singhae855362016-03-07 14:24:22 +05302330 int32_t low;
2331 int32_t high;
2332};
2333
2334/**
2335 * struct extscan_set_sig_changereq_params - ext scan channel parameter
2336 * @request_id: mac address
2337 * @session_id: low threshold
2338 * @rssi_sample_size: Number of samples for averaging RSSI
2339 * @lostap_sample_size: Number of missed samples to confirm AP loss
2340 * @min_breaching: Number of APs breaching threshold required for firmware
2341 * @num_ap: no of scanned ap
2342 * @ap: ap threshold parameter
2343 */
2344struct extscan_set_sig_changereq_params {
2345 uint32_t request_id;
2346 uint8_t session_id;
2347 uint32_t rssi_sample_size;
2348 uint32_t lostap_sample_size;
2349 uint32_t min_breaching;
2350 uint32_t num_ap;
2351 struct ap_threshold_params ap[WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS];
2352};
2353
2354/**
2355 * struct extscan_cached_result_params - ext scan cached parameter
2356 * @request_id: mac address
2357 * @session_id: low threshold
2358 * @flush: cached results flush
2359 */
2360struct extscan_cached_result_params {
2361 uint32_t request_id;
2362 uint8_t session_id;
2363 bool flush;
2364};
2365
Govind Singhae855362016-03-07 14:24:22 +05302366#define WMI_WLAN_EXTSCAN_MAX_CHANNELS 36
2367#define WMI_WLAN_EXTSCAN_MAX_BUCKETS 16
2368#define WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS 128
2369#define WMI_WLAN_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64
2370#define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8
2371
2372/**
2373 * struct wifi_scan_channelspec_params - wifi scan channel parameter
2374 * @channel: Frequency in MHz
2375 * @dwellTimeMs: dwell time
2376 * @flush: cached results flush
2377 * @passive: passive scan
2378 * @chnlClass: channel class
2379 */
2380struct wifi_scan_channelspec_params {
2381 uint32_t channel;
2382 uint32_t dwellTimeMs;
2383 bool passive;
2384 uint8_t chnlClass;
2385};
2386
2387/**
2388 * enum wmi_wifi_band - wifi band
2389 * @WMI_WIFI_BAND_UNSPECIFIED: unspecified band
2390 * @WMI_WIFI_BAND_BG: 2.4 GHz
2391 * @WMI_WIFI_BAND_A: 5 GHz without DFS
2392 * @WMI_WIFI_BAND_ABG: 2.4 GHz + 5 GHz; no DFS
2393 * @WMI_WIFI_BAND_A_DFS_ONLY: 5 GHz DFS only
2394 * @WMI_WIFI_BAND_A_WITH_DFS: 5 GHz with DFS
2395 * @WMI_WIFI_BAND_ABG_WITH_DFS: 2.4 GHz + 5 GHz with DFS
2396 * @WMI_WIFI_BAND_MAX: max range
2397 */
2398enum wmi_wifi_band {
2399 WMI_WIFI_BAND_UNSPECIFIED,
2400 WMI_WIFI_BAND_BG = 1,
2401 WMI_WIFI_BAND_A = 2,
2402 WMI_WIFI_BAND_ABG = 3,
2403 WMI_WIFI_BAND_A_DFS_ONLY = 4,
2404 /* 5 is reserved */
2405 WMI_WIFI_BAND_A_WITH_DFS = 6,
2406 WMI_WIFI_BAND_ABG_WITH_DFS = 7,
2407 /* Keep it last */
2408 WMI_WIFI_BAND_MAX
2409};
2410
2411/**
2412 * struct wifi_scan_bucket_params - wifi scan bucket spec
2413 * @bucket: bucket identifier
2414 * @band: wifi band
2415 * @period: Desired period, in millisecond; if this is too
2416 * low, the firmware should choose to generate results as fast as
2417 * it can instead of failing the command byte
2418 * for exponential backoff bucket this is the min_period
2419 * @reportEvents: 0 => normal reporting (reporting rssi history
2420 * only, when rssi history buffer is % full)
2421 * 1 => same as 0 + report a scan completion event after scanning
2422 * this bucket
2423 * 2 => same as 1 + forward scan results
2424 * (beacons/probe responses + IEs) in real time to HAL
2425 * @max_period: if max_period is non zero or different than period,
2426 * then this bucket is an exponential backoff bucket and
2427 * the scan period will grow exponentially as per formula:
2428 * actual_period(N) = period ^ (N/(step_count+1)) to a
2429 * maximum period of max_period
2430 * @exponent: for exponential back off bucket: multiplier:
2431 * new_period = old_period * exponent
2432 * @step_count: for exponential back off bucket, number of scans performed
2433 * at a given period and until the exponent is applied
2434 * @numChannels: channels to scan; these may include DFS channels
2435 * Note that a given channel may appear in multiple buckets
2436 * @min_dwell_time_active: per bucket minimum active dwell time
2437 * @max_dwell_time_active: per bucket maximum active dwell time
2438 * @min_dwell_time_passive: per bucket minimum passive dwell time
2439 * @max_dwell_time_passive: per bucket maximum passive dwell time
2440 * @channels: Channel list
2441 */
2442struct wifi_scan_bucket_params {
2443 uint8_t bucket;
2444 enum wmi_wifi_band band;
2445 uint32_t period;
2446 uint32_t reportEvents;
2447 uint32_t max_period;
2448 uint32_t exponent;
2449 uint32_t step_count;
2450 uint32_t numChannels;
2451 uint32_t min_dwell_time_active;
2452 uint32_t max_dwell_time_active;
2453 uint32_t min_dwell_time_passive;
2454 uint32_t max_dwell_time_passive;
2455 struct wifi_scan_channelspec_params channels[WMI_WLAN_EXTSCAN_MAX_CHANNELS];
2456};
2457
2458/**
2459 * struct wifi_scan_cmd_req_params - wifi scan command request params
2460 * @basePeriod: base timer period
2461 * @maxAPperScan: max ap per scan
2462 * @report_threshold_percent: report threshold
2463 * in %, when buffer is this much full, wake up host
2464 * @report_threshold_num_scans: report threshold number of scans
2465 * in number of scans, wake up host after these many scans
2466 * @requestId: request id
2467 * @sessionId: session id
2468 * @numBuckets: number of buckets
2469 * @min_dwell_time_active: per bucket minimum active dwell time
2470 * @max_dwell_time_active: per bucket maximum active dwell time
2471 * @min_dwell_time_passive: per bucket minimum passive dwell time
2472 * @max_dwell_time_passive: per bucket maximum passive dwell time
2473 * @configuration_flags: configuration flags
Gupta, Kapil7b768002016-04-25 19:14:19 +05302474 * @extscan_adaptive_dwell_mode: adaptive dwelltime mode for extscan
Govind Singhae855362016-03-07 14:24:22 +05302475 * @buckets: buckets array
2476 */
2477struct wifi_scan_cmd_req_params {
2478 uint32_t basePeriod;
2479 uint32_t maxAPperScan;
2480
2481 uint32_t report_threshold_percent;
2482 uint32_t report_threshold_num_scans;
2483
2484 uint32_t requestId;
2485 uint8_t sessionId;
2486 uint32_t numBuckets;
2487
2488 uint32_t min_dwell_time_active;
2489 uint32_t max_dwell_time_active;
2490 uint32_t min_dwell_time_passive;
2491 uint32_t max_dwell_time_passive;
2492 uint32_t configuration_flags;
Sandeep Puligillaae328c82018-03-26 16:39:28 -07002493 enum scan_dwelltime_adaptive_mode extscan_adaptive_dwell_mode;
Govind Singhae855362016-03-07 14:24:22 +05302494 struct wifi_scan_bucket_params buckets[WMI_WLAN_EXTSCAN_MAX_BUCKETS];
2495};
2496
Govind Singhae855362016-03-07 14:24:22 +05302497#define WMI_CFG_VALID_CHANNEL_LIST_LEN 100
Govind Singhc7cd2d62016-06-21 14:33:26 +05302498/* Occupied channel list remains static */
2499#define WMI_CHANNEL_LIST_STATIC 1
2500/* Occupied channel list can be learnt after init */
2501#define WMI_CHANNEL_LIST_DYNAMIC_INIT 2
2502/* Occupied channel list can be learnt after flush */
2503#define WMI_CHANNEL_LIST_DYNAMIC_FLUSH 3
2504/* Occupied channel list can be learnt after update */
2505#define WMI_CHANNEL_LIST_DYNAMIC_UPDATE 4
Govind Singhae855362016-03-07 14:24:22 +05302506
2507/**
2508 * struct plm_req_params - plm req parameter
2509 * @diag_token: Dialog token
2510 * @meas_token: measurement token
2511 * @num_bursts: total number of bursts
2512 * @burst_int: burst interval in seconds
2513 * @meas_duration:in TU's,STA goes off-ch
2514 * @burst_len: no of times the STA should cycle through PLM ch list
2515 * @desired_tx_pwr: desired tx power
2516 * @mac_addr: MC dest addr
2517 * @plm_num_ch: channel numbers
2518 * @plm_ch_list: channel list
2519 * @session_id: session id
2520 * @enable: enable/disable
2521 */
2522struct plm_req_params {
2523 uint16_t diag_token;
2524 uint16_t meas_token;
2525 uint16_t num_bursts;
2526 uint16_t burst_int;
2527 uint16_t meas_duration;
2528 /* no of times the STA should cycle through PLM ch list */
2529 uint8_t burst_len;
2530 int8_t desired_tx_pwr;
Govind Singhd7468a52016-03-09 14:32:57 +05302531 struct qdf_mac_addr mac_addr;
Govind Singhae855362016-03-07 14:24:22 +05302532 /* no of channels */
2533 uint8_t plm_num_ch;
2534 /* channel numbers */
2535 uint8_t plm_ch_list[WMI_CFG_VALID_CHANNEL_LIST_LEN];
2536 uint8_t session_id;
2537 bool enable;
2538};
Naveen Rawatd5ffe152016-04-14 23:42:46 -07002539
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05302540#define MAX_SSID_ALLOWED_LIST 4
2541#define MAX_BSSID_AVOID_LIST 16
2542#define MAX_BSSID_FAVORED 16
Abhishek Singh5fa02552017-07-05 11:21:32 +05302543#define MAX_RSSI_AVOID_BSSID_LIST 10
Govind Singhae855362016-03-07 14:24:22 +05302544
2545/**
2546 * struct mac_ts_info_tfc - mac ts info parameters
2547 * @burstSizeDefn: burst size
2548 * @reserved: reserved
2549 * @ackPolicy: ack policy
2550 * @psb: psb
2551 * @aggregation: aggregation
2552 * @accessPolicy: access policy
2553 * @direction: direction
2554 * @tsid: direction
2555 * @trafficType: traffic type
2556 */
2557struct mac_ts_info_tfc {
2558#ifndef ANI_LITTLE_BIT_ENDIAN
2559 uint8_t burstSizeDefn:1;
2560 uint8_t reserved:7;
2561#else
2562 uint8_t reserved:7;
2563 uint8_t burstSizeDefn:1;
2564#endif
2565
2566#ifndef ANI_LITTLE_BIT_ENDIAN
2567 uint16_t ackPolicy:2;
2568 uint16_t userPrio:3;
2569 uint16_t psb:1;
2570 uint16_t aggregation:1;
2571 uint16_t accessPolicy:2;
2572 uint16_t direction:2;
2573 uint16_t tsid:4;
2574 uint16_t trafficType:1;
2575#else
2576 uint16_t trafficType:1;
2577 uint16_t tsid:4;
2578 uint16_t direction:2;
2579 uint16_t accessPolicy:2;
2580 uint16_t aggregation:1;
2581 uint16_t psb:1;
2582 uint16_t userPrio:3;
2583 uint16_t ackPolicy:2;
2584#endif
Govind Singhd7468a52016-03-09 14:32:57 +05302585} qdf_packed;
Govind Singhae855362016-03-07 14:24:22 +05302586
2587/**
2588 * struct mac_ts_info_sch - mac ts info schedule parameters
2589 * @rsvd: reserved
2590 * @schedule: schedule bit
2591 */
2592struct mac_ts_info_sch {
2593#ifndef ANI_LITTLE_BIT_ENDIAN
2594 uint8_t rsvd:7;
2595 uint8_t schedule:1;
2596#else
2597 uint8_t schedule:1;
2598 uint8_t rsvd:7;
2599#endif
Govind Singhd7468a52016-03-09 14:32:57 +05302600} qdf_packed;
Govind Singhae855362016-03-07 14:24:22 +05302601
2602/**
2603 * struct mac_ts_info_sch - mac ts info schedule parameters
2604 * @traffic: mac tfc parameter
2605 * @schedule: mac schedule parameters
2606 */
2607struct mac_ts_info {
2608 struct mac_ts_info_tfc traffic;
2609 struct mac_ts_info_sch schedule;
Govind Singhd7468a52016-03-09 14:32:57 +05302610} qdf_packed;
Govind Singhae855362016-03-07 14:24:22 +05302611
2612/**
2613 * struct mac_tspec_ie - mac ts spec
2614 * @type: type
2615 * @length: length
2616 * @tsinfo: tsinfo
2617 * @nomMsduSz: nomMsduSz
2618 * @maxMsduSz: maxMsduSz
2619 * @minSvcInterval: minSvcInterval
2620 * @maxSvcInterval: maxSvcInterval
2621 * @inactInterval: inactInterval
2622 * @suspendInterval: suspendInterval
2623 * @svcStartTime: svcStartTime
2624 * @minDataRate: minDataRate
2625 * @meanDataRate: meanDataRate
2626 * @peakDataRate: peakDataRate
2627 * @maxBurstSz: maxBurstSz
2628 * @delayBound: delayBound
2629 * @minPhyRate: minPhyRate
2630 * @surplusBw: surplusBw
2631 * @mediumTime: mediumTime
2632 */
2633struct mac_tspec_ie {
2634 uint8_t type;
2635 uint8_t length;
2636 struct mac_ts_info tsinfo;
2637 uint16_t nomMsduSz;
2638 uint16_t maxMsduSz;
2639 uint32_t minSvcInterval;
2640 uint32_t maxSvcInterval;
2641 uint32_t inactInterval;
2642 uint32_t suspendInterval;
2643 uint32_t svcStartTime;
2644 uint32_t minDataRate;
2645 uint32_t meanDataRate;
2646 uint32_t peakDataRate;
2647 uint32_t maxBurstSz;
2648 uint32_t delayBound;
2649 uint32_t minPhyRate;
2650 uint16_t surplusBw;
2651 uint16_t mediumTime;
Govind Singhd7468a52016-03-09 14:32:57 +05302652} qdf_packed;
Govind Singhae855362016-03-07 14:24:22 +05302653
2654/**
2655 * struct add_ts_param - ADDTS related parameters
2656 * @staIdx: station index
2657 * @tspecIdx: TSPEC handler uniquely identifying a TSPEC for a STA in a BSS
2658 * @tspec: tspec value
2659 * @status: CDF status
2660 * @sessionId: session id
Govind Singhd7468a52016-03-09 14:32:57 +05302661 * @tsm_interval: TSM interval period passed from UMAC to WMI
Govind Singhae855362016-03-07 14:24:22 +05302662 * @setRICparams: RIC parameters
2663 * @sme_session_id: sme session id
2664 */
2665struct add_ts_param {
2666 uint16_t staIdx;
2667 uint16_t tspecIdx;
2668 struct mac_tspec_ie tspec;
Govind Singhd7468a52016-03-09 14:32:57 +05302669 QDF_STATUS status;
Govind Singhae855362016-03-07 14:24:22 +05302670 uint8_t sessionId;
2671#ifdef FEATURE_WLAN_ESE
2672 uint16_t tsm_interval;
2673#endif /* FEATURE_WLAN_ESE */
2674#ifdef WLAN_FEATURE_ROAM_OFFLOAD
2675 uint8_t setRICparams;
2676#endif /* WLAN_FEATURE_ROAM_OFFLOAD */
2677 uint8_t sme_session_id;
2678};
2679
2680/**
2681 * struct delts_req_info - DELTS request parameter
2682 * @tsinfo: ts info
2683 * @tspec: ts spec
2684 * @wmeTspecPresent: wme ts spec flag
2685 * @wsmTspecPresent: wsm ts spec flag
2686 * @lleTspecPresent: lle ts spec flag
2687 */
2688struct delts_req_info {
2689 struct mac_ts_info tsinfo;
2690 struct mac_tspec_ie tspec;
2691 uint8_t wmeTspecPresent:1;
2692 uint8_t wsmTspecPresent:1;
2693 uint8_t lleTspecPresent:1;
2694};
2695
2696/**
2697 * struct del_ts_params - DELTS related parameters
2698 * @staIdx: station index
2699 * @tspecIdx: TSPEC identifier uniquely identifying a TSPEC for a STA in a BSS
2700 * @bssId: BSSID
2701 * @sessionId: session id
2702 * @userPrio: user priority
2703 * @delTsInfo: DELTS info
2704 * @setRICparams: RIC parameters
2705 */
2706struct del_ts_params {
2707 uint16_t staIdx;
2708 uint16_t tspecIdx;
Govind Singh8675b862016-03-28 22:09:18 +05302709 uint8_t bssId[IEEE80211_ADDR_LEN];
Govind Singhae855362016-03-07 14:24:22 +05302710 uint8_t sessionId;
2711 uint8_t userPrio;
2712#ifdef WLAN_FEATURE_ROAM_OFFLOAD
2713 struct delts_req_info delTsInfo;
2714 uint8_t setRICparams;
2715#endif /* WLAN_FEATURE_ROAM_OFFLOAD */
2716};
2717
2718/**
2719 * struct ll_stats_clear_params - ll stats clear parameter
2720 * @req_id: request id
2721 * @sta_id: sta id
2722 * @stats_clear_mask: stats clear mask
2723 * @stop_req: stop request
2724 */
2725struct ll_stats_clear_params {
2726 uint32_t req_id;
2727 uint8_t sta_id;
2728 uint32_t stats_clear_mask;
2729 uint8_t stop_req;
2730};
2731
2732/**
2733 * struct ll_stats_set_params - ll stats get parameter
2734 * @req_id: request id
2735 * @sta_id: sta id
2736 * @mpdu_size_threshold: mpdu sixe threshold
2737 * @aggressive_statistics_gathering: aggressive_statistics_gathering
2738 */
2739struct ll_stats_set_params {
2740 uint32_t req_id;
2741 uint8_t sta_id;
2742 uint32_t mpdu_size_threshold;
2743 uint32_t aggressive_statistics_gathering;
2744};
2745
2746/**
2747 * struct ll_stats_get_params - ll stats parameter
2748 * @req_id: request id
2749 * @sta_id: sta id
2750 * @param_id_mask: param is mask
2751 */
2752struct ll_stats_get_params {
2753 uint32_t req_id;
2754 uint8_t sta_id;
2755 uint32_t param_id_mask;
2756};
2757
Govind Singhae855362016-03-07 14:24:22 +05302758
2759/**
2760 * struct link_status_params - link stats parameter
2761 * @msg_type: message type is same as the request type
2762 * @msg_len: length of the entire request
2763 * @link_status: wme ts spec flag
2764 * @session_id: wsm ts spec flag
2765 */
2766struct link_status_params {
2767 uint16_t msg_type;
2768 uint16_t msg_len;
2769 uint8_t link_status;
2770 uint8_t session_id;
2771};
2772
2773/**
2774 * struct dhcp_stop_ind_params - DHCP Stop indication message
2775 * @msgtype: message type is same as the request type
2776 * @msglen: length of the entire request
2777 * @device_mode: Mode of the device(ex:STA, AP)
2778 * @adapter_macaddr: MAC address of the adapter
2779 * @peer_macaddr: MAC address of the connected peer
2780 */
2781struct dhcp_stop_ind_params {
2782 uint16_t msgtype;
2783 uint16_t msglen;
2784 uint8_t device_mode;
Govind Singhd7468a52016-03-09 14:32:57 +05302785 struct qdf_mac_addr adapter_macaddr;
2786 struct qdf_mac_addr peer_macaddr;
Govind Singhae855362016-03-07 14:24:22 +05302787};
2788
2789/**
2790 * struct aggr_add_ts_param - ADDTS parameters
2791 * @staIdx: station index
2792 * @tspecIdx: TSPEC handler uniquely identifying a TSPEC for a STA in a BSS
2793 * @tspec: tspec value
2794 * @status: CDF status
2795 * @sessionId: session id
2796 */
2797struct aggr_add_ts_param {
2798 uint16_t staIdx;
2799 uint16_t tspecIdx;
2800 struct mac_tspec_ie tspec[WMI_QOS_NUM_AC_MAX];
Govind Singhd7468a52016-03-09 14:32:57 +05302801 QDF_STATUS status[WMI_QOS_NUM_AC_MAX];
Govind Singhae855362016-03-07 14:24:22 +05302802 uint8_t sessionId;
2803};
2804
Paul Zhang6a857a92017-12-08 16:08:00 +08002805
2806/**
2807 * struct wlm_latency_level_param - WLM parameters
2808 * @wlm_latency_level: wlm latency level to set
2809 * 0 - normal, 1 - moderate, 2 - low, 3 - ultralow
2810 * @wlm_latency_flags: wlm latency flags to set
2811 * |31 12| 11 | 10 |9 8|7 6|5 4|3 2| 1 | 0 |
2812 * +------+------+------+------+------+------+------+-----+-----+
2813 * | RSVD | SSLP | CSLP | RSVD | Roam | RSVD | DWLT | DFS | SUP |
2814 * +------+-------------+-------------+-------------------------+
2815 * | WAL | PS | Roam | Scan |
2816 *
2817 * bit 0: Avoid scan request from HLOS if setting
2818 * bit 1: Skip DFS channel SCAN if setting
2819 * bit 2-3: Define policy of dwell time/duration for each foreign channel
2820 * (b2 b3)
2821 * (0 0 ): Default scan dwell time
2822 * (0 1 ): Reserve
2823 * (1 0 ): Shrink off channel dwell time
2824 * (1 1 ): Reserve
2825 * bit 4-5: Reserve for scan
2826 * bit 6-7: Define roaming policy
2827 * (b6 b7)
2828 * (0 0 ): Default roaming behavior, allow roaming in all scenarios
2829 * (0 1 ): Disallow all roaming
2830 * (1 0 ): Allow roaming when final bmissed
2831 * (1 1 ): Reserve
2832 * bit 8-9: Reserve for roaming
2833 * bit 10: Disable css power collapse if setting
2834 * bit 11: Disable sys sleep if setting
2835 * bit 12-31: Reserve for future useage
2836 * @vdev_id: vdev id
2837 */
2838struct wlm_latency_level_param {
2839 uint16_t wlm_latency_level;
2840 uint32_t wlm_latency_flags;
2841 uint16_t vdev_id;
2842};
2843
Govind Singhae855362016-03-07 14:24:22 +05302844#define WMI_MAX_FILTER_TEST_DATA_LEN 8
2845#define WMI_MAX_NUM_MULTICAST_ADDRESS 240
2846#define WMI_MAX_NUM_FILTERS 20
2847#define WMI_MAX_NUM_TESTS_PER_FILTER 10
2848
2849/**
2850 * enum packet_filter_type - packet filter type
2851 * @WMI_RCV_FILTER_TYPE_INVALID: invalid type
2852 * @WMI_RCV_FILTER_TYPE_FILTER_PKT: filter packet type
2853 * @WMI_RCV_FILTER_TYPE_BUFFER_PKT: buffer packet type
2854 * @WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE: max enum size
2855 */
2856enum packet_filter_type {
2857 WMI_RCV_FILTER_TYPE_INVALID,
2858 WMI_RCV_FILTER_TYPE_FILTER_PKT,
2859 WMI_RCV_FILTER_TYPE_BUFFER_PKT,
2860 WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE
2861};
2862
2863/**
2864 * enum packet_protocol_type - packet protocol type
2865 * @WMI_FILTER_HDR_TYPE_INVALID: invalid type
2866 * @WMI_FILTER_HDR_TYPE_MAC: mac type
2867 * @WMI_FILTER_HDR_TYPE_ARP: trp type
2868 * @WMI_FILTER_HDR_TYPE_IPV4: ipv4 type
2869 * @WMI_FILTER_HDR_TYPE_IPV6: ipv6 type
2870 * @WMI_FILTER_HDR_TYPE_UDP: udp type
2871 * @WMI_FILTER_HDR_TYPE_MAX: max type
2872 */
2873enum packet_protocol_type {
2874 WMI_FILTER_HDR_TYPE_INVALID,
2875 WMI_FILTER_HDR_TYPE_MAC,
2876 WMI_FILTER_HDR_TYPE_ARP,
2877 WMI_FILTER_HDR_TYPE_IPV4,
2878 WMI_FILTER_HDR_TYPE_IPV6,
2879 WMI_FILTER_HDR_TYPE_UDP,
2880 WMI_FILTER_HDR_TYPE_MAX
2881};
2882
2883/**
2884 * enum packet_filter_comp_type - packet filter comparison type
2885 * @WMI_FILTER_CMP_TYPE_INVALID: invalid type
2886 * @WMI_FILTER_CMP_TYPE_EQUAL: type equal
2887 * @WMI_FILTER_CMP_TYPE_MASK_EQUAL: mask equal
2888 * @WMI_FILTER_CMP_TYPE_NOT_EQUAL: type not equal
2889 * @WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL: mask not equal
2890 * @WMI_FILTER_CMP_TYPE_MAX: max type
2891 */
2892enum packet_filter_comp_type {
2893 WMI_FILTER_CMP_TYPE_INVALID,
2894 WMI_FILTER_CMP_TYPE_EQUAL,
2895 WMI_FILTER_CMP_TYPE_MASK_EQUAL,
2896 WMI_FILTER_CMP_TYPE_NOT_EQUAL,
2897 WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL,
2898 WMI_FILTER_CMP_TYPE_MAX
2899};
2900
2901/**
Jeff Johnson951133e2018-05-06 16:25:49 -07002902 * struct rcv_pkt_filter_params - receive packet filter parameters
Govind Singhae855362016-03-07 14:24:22 +05302903 * @protocolLayer - protocol layer
2904 * @cmpFlag - comparison flag
2905 * @dataLength - data length
2906 * @dataOffset - data offset
2907 * @reserved - resserved
2908 * @compareData - compare data
2909 * @dataMask - data mask
2910 */
2911struct rcv_pkt_filter_params {
2912 enum packet_protocol_type protocolLayer;
2913 enum packet_filter_comp_type cmpFlag;
2914 uint16_t dataLength;
2915 uint8_t dataOffset;
2916 uint8_t reserved;
2917 uint8_t compareData[WMI_MAX_FILTER_TEST_DATA_LEN];
2918 uint8_t dataMask[WMI_MAX_FILTER_TEST_DATA_LEN];
2919};
2920
2921/**
Jeff Johnson951133e2018-05-06 16:25:49 -07002922 * struct rcv_pkt_filter_config - receive packet filter info
Govind Singhae855362016-03-07 14:24:22 +05302923 * @filterId - filter id
2924 * @filterType - filter type
2925 * @numFieldParams - no of fields
2926 * @coalesceTime - reserved parameter
2927 * @self_macaddr - self mac address
2928 * @bssid - Bssid of the connected AP
2929 * @paramsData - data parameter
2930 */
2931struct rcv_pkt_filter_config {
2932 uint8_t filterId;
2933 enum packet_filter_type filterType;
2934 uint32_t numFieldParams;
2935 uint32_t coalesceTime;
Govind Singhd7468a52016-03-09 14:32:57 +05302936 struct qdf_mac_addr self_macaddr;
2937 struct qdf_mac_addr bssid;
Govind Singhae855362016-03-07 14:24:22 +05302938 struct rcv_pkt_filter_params paramsData[WMI_MAX_NUM_TESTS_PER_FILTER];
2939};
2940
2941/**
2942 * struct vdev_ie_info_param - IE info
2943 * @vdev_id - vdev for which the IE is being sent
2944 * @ie_id - ID of the IE
2945 * @length - length of the IE data
2946 * @data - IE data
2947 *
2948 * This structure is used to store the IE information.
2949 */
2950struct vdev_ie_info_param {
2951 uint32_t vdev_id;
2952 uint32_t ie_id;
2953 uint32_t length;
Selvaraj, Sridharce064292016-07-25 16:25:14 +05302954 uint32_t ie_source;
Naveen Rawat71268882016-08-03 16:41:33 -07002955 uint32_t band;
Govind Singhae855362016-03-07 14:24:22 +05302956 uint8_t *data;
2957};
2958
2959#define WMI_MAX_NUM_FW_SEGMENTS 4
2960
2961/**
2962 * struct fw_dump_seg_req_param - individual segment details
2963 * @seg_id - segment id.
2964 * @seg_start_addr_lo - lower address of the segment.
2965 * @seg_start_addr_hi - higher address of the segment.
2966 * @seg_length - length of the segment.
2967 * @dst_addr_lo - lower address of the destination buffer.
2968 * @dst_addr_hi - higher address of the destination buffer.
2969 *
2970 * This structure carries the information to firmware about the
2971 * individual segments. This structure is part of firmware memory
2972 * dump request.
2973 */
2974struct fw_dump_seg_req_param {
2975 uint8_t seg_id;
2976 uint32_t seg_start_addr_lo;
2977 uint32_t seg_start_addr_hi;
2978 uint32_t seg_length;
2979 uint32_t dst_addr_lo;
2980 uint32_t dst_addr_hi;
2981};
2982
2983/**
2984 * struct fw_dump_req_param - firmware memory dump request details.
2985 * @request_id - request id.
2986 * @num_seg - requested number of segments.
2987 * @fw_dump_seg_req - individual segment information.
2988 *
2989 * This structure carries information about the firmware
2990 * memory dump request.
2991 */
2992struct fw_dump_req_param {
2993 uint32_t request_id;
2994 uint32_t num_seg;
2995 struct fw_dump_seg_req_param segment[WMI_MAX_NUM_FW_SEGMENTS];
2996};
2997
2998#define WMI_TDLS_MAX_SUPP_CHANNELS 128
2999#define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32
3000#define WMI_2_4_GHZ_MAX_FREQ 3000
3001
3002/**
3003 * struct tdls_update_ch_params - channel parameters
3004 * @chanId: ID of the channel
3005 * @pwr: power level
3006 * @dfsSet: is dfs supported or not
3007 * @half_rate: is the channel operating at 10MHz
3008 * @quarter_rate: is the channel operating at 5MHz
3009 */
3010struct tdls_update_ch_params {
3011 uint8_t chanId;
3012 uint8_t pwr;
3013 bool dfsSet;
3014 bool half_rate;
3015 bool quarter_rate;
3016};
3017
3018/**
3019 * struct tdls_peer_cap_params - TDLS peer capablities parameters
3020 * @isPeerResponder: is peer responder or not
3021 * @peerUapsdQueue: peer uapsd queue
3022 * @peerMaxSp: peer max SP value
3023 * @peerBuffStaSupport: peer buffer sta supported or not
3024 * @peerOffChanSupport: peer offchannel support
3025 * @peerCurrOperClass: peer current operating class
3026 * @selfCurrOperClass: self current operating class
3027 * @peerChanLen: peer channel length
3028 * @peerChan: peer channel list
3029 * @peerOperClassLen: peer operating class length
3030 * @peerOperClass: peer operating class
3031 * @prefOffChanNum: peer offchannel number
3032 * @prefOffChanBandwidth: peer offchannel bandwidth
3033 * @opClassForPrefOffChan: operating class for offchannel
3034 */
3035struct tdls_peer_cap_params {
3036 uint8_t isPeerResponder;
3037 uint8_t peerUapsdQueue;
3038 uint8_t peerMaxSp;
3039 uint8_t peerBuffStaSupport;
3040 uint8_t peerOffChanSupport;
3041 uint8_t peerCurrOperClass;
3042 uint8_t selfCurrOperClass;
3043 uint8_t peerChanLen;
3044 struct tdls_update_ch_params peerChan[WMI_TDLS_MAX_SUPP_CHANNELS];
3045 uint8_t peerOperClassLen;
3046 uint8_t peerOperClass[WMI_TDLS_MAX_SUPP_OPER_CLASSES];
3047 uint8_t prefOffChanNum;
3048 uint8_t prefOffChanBandwidth;
3049 uint8_t opClassForPrefOffChan;
3050};
3051
3052/**
3053 * struct tdls_peer_state_params - TDLS peer state parameters
3054 * @vdevId: vdev id
3055 * @peerMacAddr: peer mac address
3056 * @peerCap: peer capabality
3057 */
3058struct tdls_peer_state_params {
3059 uint32_t vdevId;
Govind Singh8675b862016-03-28 22:09:18 +05303060 uint8_t peerMacAddr[IEEE80211_ADDR_LEN];
Govind Singhae855362016-03-07 14:24:22 +05303061 uint32_t peerState;
3062 struct tdls_peer_cap_params peerCap;
3063};
3064
3065/**
3066 * struct wmi_tdls_params - TDLS parameters
3067 * @vdev_id: vdev id
3068 * @tdls_state: TDLS state
3069 * @notification_interval_ms: notification inerval
3070 * @tx_discovery_threshold: tx discovery threshold
3071 * @tx_teardown_threshold: tx teardown threashold
3072 * @rssi_teardown_threshold: RSSI teardown threshold
3073 * @rssi_delta: RSSI delta
3074 * @tdls_options: TDLS options
3075 * @peer_traffic_ind_window: raffic indication window
3076 * @peer_traffic_response_timeout: traffic response timeout
3077 * @puapsd_mask: uapsd mask
3078 * @puapsd_inactivity_time: uapsd inactivity time
3079 * @puapsd_rx_frame_threshold: uapsd rx frame threshold
3080 * @teardown_notification_ms: tdls teardown notification interval
3081 * @tdls_peer_kickout_threshold: tdls packet threshold for
3082 * peer kickout operation
3083 */
3084struct wmi_tdls_params {
3085 uint32_t vdev_id;
3086 uint32_t tdls_state;
3087 uint32_t notification_interval_ms;
3088 uint32_t tx_discovery_threshold;
3089 uint32_t tx_teardown_threshold;
3090 int32_t rssi_teardown_threshold;
3091 int32_t rssi_delta;
3092 uint32_t tdls_options;
3093 uint32_t peer_traffic_ind_window;
3094 uint32_t peer_traffic_response_timeout;
3095 uint32_t puapsd_mask;
3096 uint32_t puapsd_inactivity_time;
3097 uint32_t puapsd_rx_frame_threshold;
3098 uint32_t teardown_notification_ms;
3099 uint32_t tdls_peer_kickout_threshold;
3100};
3101
Frank Liu0ba573b2017-03-15 17:51:43 +08003102#ifndef CONVERGED_TDLS_ENABLE
Govind Singhae855362016-03-07 14:24:22 +05303103/**
3104 * struct tdls_chan_switch_params - channel switch parameter structure
3105 * @vdev_id: vdev ID
3106 * @peer_mac_addr: Peer mac address
3107 * @tdls_off_ch_bw_offset: Target off-channel bandwitdh offset
3108 * @tdls_off_ch: Target Off Channel
3109 * @oper_class: Operating class for target channel
3110 * @is_responder: Responder or initiator
3111 */
3112struct tdls_channel_switch_params {
3113 uint32_t vdev_id;
Govind Singh8675b862016-03-28 22:09:18 +05303114 uint8_t peer_mac_addr[IEEE80211_ADDR_LEN];
Govind Singhae855362016-03-07 14:24:22 +05303115 uint16_t tdls_off_ch_bw_offset;
3116 uint8_t tdls_off_ch;
3117 uint8_t tdls_sw_mode;
3118 uint8_t oper_class;
3119 uint8_t is_responder;
3120};
Frank Liu0ba573b2017-03-15 17:51:43 +08003121#endif
Govind Singhae855362016-03-07 14:24:22 +05303122
3123/**
3124 * struct dhcp_offload_info_params - dhcp offload parameters
3125 * @vdev_id: request data length
Jeff Johnson645f7a12017-10-04 19:19:20 -07003126 * @dhcp_offload_enabled: dhcp offload enabled
3127 * @dhcp_client_num: dhcp client no
3128 * @dhcp_srv_addr: dhcp server ip
Govind Singhae855362016-03-07 14:24:22 +05303129 */
3130struct dhcp_offload_info_params {
3131 uint32_t vdev_id;
Jeff Johnson645f7a12017-10-04 19:19:20 -07003132 bool dhcp_offload_enabled;
3133 uint32_t dhcp_client_num;
3134 uint32_t dhcp_srv_addr;
Govind Singhae855362016-03-07 14:24:22 +05303135};
3136
3137/**
3138 * struct nan_req_params - NAN request params
3139 * @request_data_len: request data length
3140 * @request_data: request data
3141 */
3142struct nan_req_params {
3143 uint16_t request_data_len;
3144 uint8_t request_data[];
3145};
3146
3147
3148/**
3149 * struct app_type2_params - app type2parameter
3150 * @vdev_id: vdev id
3151 * @rc4_key: rc4 key
3152 * @rc4_key_len: rc4 key length
3153 * @ip_id: NC id
3154 * @ip_device_ip: NC IP addres
3155 * @ip_server_ip: Push server IP address
3156 * @tcp_src_port: NC TCP port
3157 * @tcp_dst_port: Push server TCP port
3158 * @tcp_seq: tcp sequence
3159 * @tcp_ack_seq: tcp ack sequence
3160 * @keepalive_init: Initial ping interval
3161 * @keepalive_min: Minimum ping interval
3162 * @keepalive_max: Maximum ping interval
3163 * @keepalive_inc: Increment of ping interval
3164 * @gateway_mac: gateway mac address
3165 * @tcp_tx_timeout_val: tcp tx timeout value
3166 * @tcp_rx_timeout_val: tcp rx timeout value
3167 */
3168struct app_type2_params {
3169 uint8_t vdev_id;
3170 uint8_t rc4_key[16];
3171 uint32_t rc4_key_len;
3172 /** ip header parameter */
3173 uint32_t ip_id;
3174 uint32_t ip_device_ip;
3175 uint32_t ip_server_ip;
3176 /** tcp header parameter */
3177 uint16_t tcp_src_port;
3178 uint16_t tcp_dst_port;
3179 uint32_t tcp_seq;
3180 uint32_t tcp_ack_seq;
3181 uint32_t keepalive_init;
3182 uint32_t keepalive_min;
3183 uint32_t keepalive_max;
3184 uint32_t keepalive_inc;
Govind Singhd7468a52016-03-09 14:32:57 +05303185 struct qdf_mac_addr gateway_mac;
Govind Singhae855362016-03-07 14:24:22 +05303186 uint32_t tcp_tx_timeout_val;
3187 uint32_t tcp_rx_timeout_val;
3188};
3189
3190/**
3191 * struct app_type1_params - app type1 parameter
3192 * @vdev_id: vdev id
3193 * @wakee_mac_addr: mac address
3194 * @identification_id: identification id
3195 * @password: password
3196 * @id_length: id length
3197 * @pass_length: password length
3198 */
3199struct app_type1_params {
3200 uint8_t vdev_id;
Govind Singhd7468a52016-03-09 14:32:57 +05303201 struct qdf_mac_addr wakee_mac_addr;
Govind Singhae855362016-03-07 14:24:22 +05303202 uint8_t identification_id[8];
3203 uint8_t password[16];
3204 uint32_t id_length;
3205 uint32_t pass_length;
3206};
3207
3208/**
3209 * enum wmi_ext_wow_type - wow type
3210 * @WMI_EXT_WOW_TYPE_APP_TYPE1: only enable wakeup for app type1
3211 * @WMI_EXT_WOW_TYPE_APP_TYPE2: only enable wakeup for app type2
3212 * @WMI_EXT_WOW_TYPE_APP_TYPE1_2: enable wakeup for app type1&2
3213 */
3214enum wmi_ext_wow_type {
3215 WMI_EXT_WOW_TYPE_APP_TYPE1,
3216 WMI_EXT_WOW_TYPE_APP_TYPE2,
3217 WMI_EXT_WOW_TYPE_APP_TYPE1_2,
3218};
3219
3220/**
3221 * struct ext_wow_params - ext wow parameters
3222 * @vdev_id: vdev id
3223 * @type: wow type
3224 * @wakeup_pin_num: wake up gpio no
3225 */
3226struct ext_wow_params {
3227 uint8_t vdev_id;
3228 enum wmi_ext_wow_type type;
3229 uint32_t wakeup_pin_num;
3230};
3231
3232/**
3233 * struct stats_ext_params - ext stats request
3234 * @vdev_id: vdev id
3235 * @request_data_len: request data length
3236 * @request_data: request data
3237 */
3238struct stats_ext_params {
3239 uint32_t vdev_id;
3240 uint32_t request_data_len;
3241 uint8_t request_data[];
3242};
3243
3244#define WMI_PERIODIC_TX_PTRN_MAX_SIZE 1536
3245/**
3246 * struct periodic_tx_pattern - periodic tx pattern
3247 * @mac_address: MAC Address for the adapter
3248 * @ucPtrnId: Pattern ID
3249 * @ucPtrnSize: Pattern size
3250 * @usPtrnIntervalMs: in ms
3251 * @ucPattern: Pattern buffer
3252 */
3253struct periodic_tx_pattern {
Govind Singhd7468a52016-03-09 14:32:57 +05303254 struct qdf_mac_addr mac_address;
Govind Singhae855362016-03-07 14:24:22 +05303255 uint8_t ucPtrnId;
3256 uint16_t ucPtrnSize;
3257 uint32_t usPtrnIntervalMs;
3258 uint8_t ucPattern[WMI_PERIODIC_TX_PTRN_MAX_SIZE];
3259};
3260
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05303261#define WMI_GTK_OFFLOAD_KEK_BYTES 64
3262#define WMI_GTK_OFFLOAD_KCK_BYTES 16
3263#define WMI_GTK_OFFLOAD_ENABLE 0
3264#define WMI_GTK_OFFLOAD_DISABLE 1
3265
Govind Singhae855362016-03-07 14:24:22 +05303266/**
3267 * struct flashing_req_params - led flashing parameter
3268 * @reqId: request id
3269 * @pattern_id: pattern identifier. 0: disconnected 1: connected
3270 * @led_x0: led flashing parameter0
3271 * @led_x1: led flashing parameter1
3272 */
3273struct flashing_req_params {
3274 uint32_t req_id;
3275 uint32_t pattern_id;
3276 uint32_t led_x0;
3277 uint32_t led_x1;
3278};
3279
Govind Singh89727882016-04-15 13:58:27 +05303280#define MAX_MEM_CHUNKS 32
3281/**
3282 * struct wmi_host_mem_chunk - host memory chunk structure
3283 * @vaddr: Pointer to virtual address
3284 * @paddr: Physical address
3285 * @memctx: qdf memory context for mapped address.
3286 * @len: length of chunk
3287 * @req_id: request id from target
3288 */
Govind Singhae855362016-03-07 14:24:22 +05303289struct wmi_host_mem_chunk {
3290 uint32_t *vaddr;
3291 uint32_t paddr;
Govind Singhd7468a52016-03-09 14:32:57 +05303292 qdf_dma_mem_context(memctx);
Govind Singhae855362016-03-07 14:24:22 +05303293 uint32_t len;
3294 uint32_t req_id;
3295};
3296
Govind Singh89727882016-04-15 13:58:27 +05303297/**
Govind Singhae855362016-03-07 14:24:22 +05303298 * struct wmi_wifi_start_log - Structure to store the params sent to start/
3299 * stop logging
3300 * @name: Attribute which indicates the type of logging like per packet
3301 * statistics, connectivity etc.
3302 * @verbose_level: Verbose level which can be 0,1,2,3
3303 * @flag: Flag field for future use
3304 */
3305struct wmi_wifi_start_log {
3306 uint32_t ring_id;
3307 uint32_t verbose_level;
3308 uint32_t flag;
3309};
3310
3311/**
3312 * struct wmi_pcl_list - Format of PCL
3313 * @pcl_list: List of preferred channels
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +05303314 * @weight_list: Weights of the PCL
Govind Singhae855362016-03-07 14:24:22 +05303315 * @pcl_len: Number of channels in the PCL
3316 */
3317struct wmi_pcl_list {
3318 uint8_t pcl_list[128];
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +05303319 uint8_t weight_list[128];
Govind Singhae855362016-03-07 14:24:22 +05303320 uint32_t pcl_len;
3321};
3322
3323/**
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +05303324 * struct wmi_pcl_chan_weights - Params to get the valid weighed list
3325 * @pcl_list: Preferred channel list already sorted in the order of preference
3326 * @pcl_len: Length of the PCL
3327 * @saved_chan_list: Valid channel list updated as part of
3328 * WMA_UPDATE_CHAN_LIST_REQ
3329 * @saved_num_chan: Length of the valid channel list
3330 * @weighed_valid_list: Weights of the valid channel list. This will have one
3331 * to one mapping with valid_chan_list. FW expects channel order and size to be
3332 * as per the list provided in WMI_SCAN_CHAN_LIST_CMDID.
3333 * @weight_list: Weights assigned by policy manager
3334 */
3335struct wmi_pcl_chan_weights {
3336 uint8_t pcl_list[MAX_NUM_CHAN];
3337 uint32_t pcl_len;
3338 uint8_t saved_chan_list[MAX_NUM_CHAN];
3339 uint32_t saved_num_chan;
3340 uint8_t weighed_valid_list[MAX_NUM_CHAN];
3341 uint8_t weight_list[MAX_NUM_CHAN];
3342};
3343
3344/**
Govind Singhae855362016-03-07 14:24:22 +05303345 * struct wmi_hw_mode_params - HW mode params
3346 * @mac0_tx_ss: MAC0 Tx spatial stream
3347 * @mac0_rx_ss: MAC0 Rx spatial stream
3348 * @mac1_tx_ss: MAC1 Tx spatial stream
3349 * @mac1_rx_ss: MAC1 Rx spatial stream
3350 * @mac0_bw: MAC0 bandwidth
3351 * @mac1_bw: MAC1 bandwidth
3352 * @dbs_cap: DBS capabality
3353 * @agile_dfs_cap: Agile DFS capabality
3354 */
3355struct wmi_hw_mode_params {
3356 uint8_t mac0_tx_ss;
3357 uint8_t mac0_rx_ss;
3358 uint8_t mac1_tx_ss;
3359 uint8_t mac1_rx_ss;
3360 uint8_t mac0_bw;
3361 uint8_t mac1_bw;
3362 uint8_t dbs_cap;
3363 uint8_t agile_dfs_cap;
3364};
3365
3366/**
Govind Singhae855362016-03-07 14:24:22 +05303367 * struct ssid_hotlist_param - param for SSID Hotlist
3368 * @ssid: SSID which is being hotlisted
3369 * @band: Band in which the given SSID should be scanned
3370 * @rssi_low: Low bound on RSSI
3371 * @rssi_high: High bound on RSSI
3372 */
3373struct ssid_hotlist_param {
3374 struct mac_ssid ssid;
3375 uint8_t band;
3376 int32_t rssi_low;
3377 int32_t rssi_high;
3378};
3379
3380/**
Abhishek Singh5fa02552017-07-05 11:21:32 +05303381 * struct rssi_disallow_bssid - Structure holding Rssi based avoid candidate
3382 * @bssid: BSSID of the AP
3383 * @remaining_duration: remaining disallow duration in ms
3384 * @expected_rssi: RSSI at which STA can initate in dBm
3385 */
3386struct rssi_disallow_bssid {
3387 struct qdf_mac_addr bssid;
3388 uint32_t remaining_duration;
3389 int8_t expected_rssi;
3390};
3391
3392
3393/**
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303394 * struct roam_scan_filter_params - Structure holding roaming scan
3395 * parameters
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303396 * @op_bitmap: bitmap to determine reason of roaming
3397 * @session_id: vdev id
3398 * @num_bssid_black_list: The number of BSSID's that we should
3399 * avoid connecting to. It is like a
3400 * blacklist of BSSID's.
3401 * @num_ssid_white_list: The number of SSID profiles that are
3402 * in the Whitelist. When roaming, we
3403 * consider the BSSID's with this SSID
3404 * also for roaming apart from the connected one's
3405 * @num_bssid_preferred_list: Number of BSSID's which have a preference over
3406 * others
3407 * @bssid_avoid_list: Blacklist SSID's
3408 * @ssid_allowed_list: Whitelist SSID's
3409 * @bssid_favored: Favorable BSSID's
3410 * @bssid_favored_factor: RSSI to be added to this BSSID to prefer it
Selvaraj, Sridhar6edc08b2017-05-29 18:38:52 +05303411 * @lca_disallow_config_present: LCA [Last Connected AP] disallow config present
3412 * @disallow_duration: How long LCA AP will be disallowed before it
3413 * can be a roaming candidate again, in seconds
3414 * @rssi_channel_penalization:How much RSSI will be penalized if candidate(s)
3415 * are found in the same channel as disallowed AP's,
3416 * in units of db
3417 * @num_disallowed_aps: How many APs the target should maintain in its
3418 * LCA list
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303419 *
3420 * This structure holds all the key parameters related to
3421 * initial connection and roaming connections.
3422 */
3423
3424struct roam_scan_filter_params {
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303425 uint32_t op_bitmap;
3426 uint8_t session_id;
3427 uint32_t num_bssid_black_list;
3428 uint32_t num_ssid_white_list;
3429 uint32_t num_bssid_preferred_list;
3430 struct qdf_mac_addr bssid_avoid_list[MAX_BSSID_AVOID_LIST];
3431 struct mac_ssid ssid_allowed_list[MAX_SSID_ALLOWED_LIST];
3432 struct qdf_mac_addr bssid_favored[MAX_BSSID_FAVORED];
3433 uint8_t bssid_favored_factor[MAX_BSSID_FAVORED];
Selvaraj, Sridhar6edc08b2017-05-29 18:38:52 +05303434 uint8_t lca_disallow_config_present;
3435 uint32_t disallow_duration;
3436 uint32_t rssi_channel_penalization;
3437 uint32_t num_disallowed_aps;
Abhishek Singh5fa02552017-07-05 11:21:32 +05303438 uint32_t num_rssi_rejection_ap;
3439 struct rssi_disallow_bssid rssi_rejection_ap[MAX_RSSI_AVOID_BSSID_LIST];
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303440};
3441
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05303442#define WMI_MAX_HLP_IE_LEN 2048
3443/**
3444 * struct hlp_params - HLP info params
3445 * @vdev_id: vdev id
3446 * @hlp_ie_len: HLP IE length
3447 * @hlp_ie: HLP IE
3448 */
3449struct hlp_params {
3450 uint8_t vdev_id;
3451 uint32_t hlp_ie_len;
3452 uint8_t hlp_ie[WMI_MAX_HLP_IE_LEN];
3453};
3454
3455#define WMI_UNIFIED_MAX_PMKID_LEN 16
3456#define WMI_UNIFIED_MAX_PMK_LEN 64
3457
3458/**
3459 * struct wmi_unified_pmk_cache - used to set del pmkid cache
3460 * @tlv_header: TLV header, TLV tag and len; tag equals WMITLV_TAG_ARRAY_UINT32
3461 * @pmk_len: PMK len
3462 * for big-endian hosts, manual endian conversion will be needed to keep
3463 * the array values in their original order in spite of the automatic
3464 * byte-swap applied to WMI messages during download
3465 * @pmk: PMK array
3466 * @pmkid_len: PMK ID Len
3467 * @pmkid: PMK ID Array
3468 * @bssid: BSSID
3469 * @ssid: SSID
3470 * @cache_id: PMK Cache ID
3471 * @cat_flag: whether (bssid) or (ssid,cache_id) is valid
3472 * @action_flag: add/delete the entry
3473 */
3474struct wmi_unified_pmk_cache {
Vivek73465282018-03-22 23:27:21 +05303475 uint32_t tlv_header;
3476 uint32_t pmk_len;
3477 uint8_t session_id;
3478 uint8_t pmk[WMI_UNIFIED_MAX_PMK_LEN];
3479 uint32_t pmkid_len;
3480 uint8_t pmkid[WMI_UNIFIED_MAX_PMKID_LEN];
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05303481 wmi_host_mac_addr bssid;
3482 struct mac_ssid ssid;
Vivek73465282018-03-22 23:27:21 +05303483 uint32_t cache_id;
3484 uint32_t cat_flag;
3485 uint32_t action_flag;
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05303486};
3487
3488
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +05303489/**
Govind Singhae855362016-03-07 14:24:22 +05303490 * struct ssid_hotlist_request_params - set SSID hotlist request struct
3491 * @request_id: ID of the request
3492 * @session_id: ID of the session
3493 * @lost_ssid_sample_size: Number of consecutive scans in which the SSID
3494 * must not be seen in order to consider the SSID "lost"
3495 * @ssid_count: Number of valid entries in the @ssids array
3496 * @ssids: Array that defines the SSIDs that are in the hotlist
3497 */
3498struct ssid_hotlist_request_params {
3499 uint32_t request_id;
3500 uint8_t session_id;
3501 uint32_t lost_ssid_sample_size;
3502 uint32_t ssid_count;
3503 struct ssid_hotlist_param ssids[WMI_EXTSCAN_MAX_HOTLIST_SSIDS];
3504};
3505
3506/**
3507 * struct wmi_unit_test_cmd - unit test command parameters
3508 * @vdev_id: vdev id
3509 * @module_id: module id
3510 * @num_args: number of arguments
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07003511 * @diag_token: dialog token, which identifies the transaction.
3512 * this number is generated by wifitool and may be used to
3513 * identify the transaction in the event path
Govind Singhae855362016-03-07 14:24:22 +05303514 * @args: arguments
3515 */
3516struct wmi_unit_test_cmd {
3517 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303518 uint32_t module_id;
Govind Singhae855362016-03-07 14:24:22 +05303519 uint32_t num_args;
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07003520 uint32_t diag_token;
Shaakir Mohamede2bc1b32018-01-19 15:49:23 -08003521 uint32_t args[WMI_UNIT_TEST_MAX_NUM_ARGS];
Govind Singhae855362016-03-07 14:24:22 +05303522};
3523
3524/**
3525 * struct wmi_roam_invoke_cmd - roam invoke command
3526 * @vdev_id: vdev id
3527 * @bssid: mac address
3528 * @channel: channel
Naveen Rawatccc1b072017-01-20 17:00:07 -08003529 * @frame_len: frame length, includs mac header, fixed params and ies
3530 * @frame_buf: buffer contaning probe response or beacon
Krunal Sonib46f48b2017-07-25 11:23:44 -07003531 * @is_same_bssid: flag to indicate if roaming is requested for same bssid
Govind Singhae855362016-03-07 14:24:22 +05303532 */
3533struct wmi_roam_invoke_cmd {
3534 uint32_t vdev_id;
3535 uint8_t bssid[IEEE80211_ADDR_LEN];
3536 uint32_t channel;
Naveen Rawatccc1b072017-01-20 17:00:07 -08003537 uint32_t frame_len;
3538 uint8_t *frame_buf;
Krunal Sonib46f48b2017-07-25 11:23:44 -07003539 uint8_t is_same_bssid;
Govind Singhae855362016-03-07 14:24:22 +05303540};
3541
3542/**
3543 * struct ext_scan_setbssi_hotlist_params - set hotlist request
3544 * @requestId: request identifier
3545 * @sessionId: session identifier
3546 * @lost_ap_sample_size: number of samples to confirm AP loss
3547 * @numAp: Number of hotlist APs
3548 * @ap: hotlist APs
3549 */
3550struct ext_scan_setbssi_hotlist_params {
3551 uint32_t requestId;
3552 uint8_t sessionId;
3553
3554 uint32_t lost_ap_sample_size;
3555 uint32_t numAp;
3556 struct ap_threshold_params ap[WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS];
3557};
Govind Singh89727882016-04-15 13:58:27 +05303558
3559/**
Govind Singh89727882016-04-15 13:58:27 +05303560 * struct host_mem_req - Host memory request paramseters request by target
3561 * @req_id: Request id to identify the request.
3562 * @unit_size: Size of single unit requested.
3563 * @num_unit_info: Memory chunk info
3564 * @num_units: number of units requested.
3565 */
3566typedef struct {
3567 uint32_t req_id;
3568 uint32_t unit_size;
3569 uint32_t num_unit_info;
3570 uint32_t num_units;
3571} host_mem_req;
3572
3573#define WMI_HOST_DSCP_MAP_MAX (64)
3574
3575/**
3576 * struct wmi_host_ext_resource_config - Extended resource config
3577 * @host_platform_config: Host plaform configuration.
3578 * @fw_featuew_bitmap: FW feature requested bitmap.
3579 */
3580typedef struct {
3581 uint32_t host_platform_config;
3582
3583#define WMI_HOST_FW_FEATURE_LTEU_SUPPORT 0x0001
3584#define WMI_HOST_FW_FEATURE_COEX_GPIO_SUPPORT 0x0002
3585#define WMI_HOST_FW_FEATURE_AUX_RADIO_SPECTRAL_INTF 0x0004
3586#define WMI_HOST_FW_FEATURE_AUX_RADIO_CHAN_LOAD_INTF 0x0008
3587#define WMI_HOST_FW_FEATURE_BSS_CHANNEL_INFO_64 0x0010
3588#define WMI_HOST_FW_FEATURE_PEER_STATS 0x0020
3589#define WMI_HOST_FW_FEATURE_VDEV_STATS 0x0040
3590 /**
3591 * @brief fw_feature_bitmask - Enable/Disable features in FW
3592 * @details
3593 * The bits in fw_feature_bitmask are used as shown by the masks below:
3594 * 0x0001 - LTEU Config enable/disable
3595 * 0x0002 - COEX GPIO Config enable/disable
3596 * 0x0004 - Aux Radio enhancement for spectral scan enable/disable
3597 * 0x0008 - Aux Radio enhancement for chan load scan enable/disable
3598 * 0x0010 - BSS channel info stats enable/disable
3599 * The features in question are enabled by setting
3600 * the feature's bit to 1,
3601 * or disabled by setting the feature's bit to 0.
3602 */
3603 uint32_t fw_feature_bitmap;
3604
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05303605 /* WLAN priority GPIO number
3606 * The target uses a GPIO pin to indicate when it is transmitting
3607 * high-priority traffic (e.g. beacon, management, or AC_VI) or
3608 * low-priority traffic (e.g. AC_BE, AC_BK). The HW uses this
3609 * WLAN GPIO pin to determine whether to abort WLAN tx in favor of
3610 * BT activity.
3611 * Which GPIO is used for this WLAN tx traffic priority specification
3612 * varies between platforms, so the host needs to indicate to the
3613 * target which GPIO to use.
3614 */
3615 uint32_t wlan_priority_gpio;
3616
Sathish Kumar612d0c22017-01-19 14:57:37 +05303617 /* Host will notify target which coex algorithm has to be
3618 * enabled based on HW, FW capability and device tree config.
3619 * Till now the coex algorithms were target specific. Now the
3620 * same target can choose between multiple coex algorithms
3621 * depending on device tree config on host. For backward
3622 * compatibility, version support will have option 0 and will
3623 * rely on FW compile time flags to decide the coex version
3624 * between VERSION_1, VERSION_2 and VERSION_3. Version info is
3625 * mandatory from VERSION_4 onwards for any new coex algorithms.
3626 *
3627 * 0 = no version support
3628 * 1 = COEX_VERSION_1 (3 wire coex)
3629 * 2 = COEX_VERSION_2 (2.5 wire coex)
3630 * 3 = COEX_VERSION_3 (2.5 wire coex+duty cycle)
3631 * 4 = COEX_VERSION_4 (4 wire coex)
3632 */
3633 uint32_t coex_version;
3634
3635 /* There are multiple coex implementations on FW to support different
3636 * hardwares. Since the coex algos are mutually exclusive, host will
3637 * use below fields to send GPIO info to FW and these GPIO pins will
3638 * have different usages depending on the feature enabled. This is to
3639 * avoid adding multiple GPIO fields here for different features.
3640 *
3641 * COEX VERSION_4 (4 wire coex) :
3642 * 4 wire coex feature uses 1 common input request line from BT/ZB/
3643 * Thread which interrupts the WLAN target processor directly, 1 input
3644 * priority line from BT and ZB each, 1 output line to grant access to
3645 * requesting IOT subsystem. WLAN uses the input priority line to
3646 * identify the requesting IOT subsystem. Request is granted based on
3647 * IOT interface priority and WLAN traffic. GPIO pin usage is as below:
3648 * coex_gpio_pin_1 = BT PRIORITY INPUT GPIO
3649 * coex_gpio_pin_2 = ZIGBEE PRIORITY INPUT GPIO
3650 * coex_gpio_pin_3 = GRANT OUTPUT GPIO
3651 * when a BT active interrupt is raised, WLAN reads
3652 * BT and ZB priority input GPIO pins to compare against the coex
3653 * priority table and accordingly sets the grant output GPIO to give
3654 * access to requesting IOT subsystem.
3655 */
3656 uint32_t coex_gpio_pin_1;
3657 uint32_t coex_gpio_pin_2;
3658 uint32_t coex_gpio_pin_3;
3659
Govind Singh89727882016-04-15 13:58:27 +05303660 /* add new members here */
3661} wmi_host_ext_resource_config;
3662
3663/**
3664 * struct set_neighbour_rx_params - Neighbour RX params
3665 * @vdev_id: vdev id
3666 * @idx: index of param
3667 * @action: action
3668 * @type: Type of param
3669 */
3670struct set_neighbour_rx_params {
3671 uint8_t vdev_id;
3672 uint32_t idx;
3673 uint32_t action;
3674 uint32_t type;
3675};
3676
3677/**
3678 * struct set_fwtest_params - FW test params
3679 * @arg: FW param id
3680 * @value: value
3681 */
3682struct set_fwtest_params {
3683 uint32_t arg;
3684 uint32_t value;
3685};
3686
3687/**
Sathish Kumar6190e772017-11-08 14:49:58 +05303688 * struct set_custom_aggr_size_params - custom aggr size params
3689 * @vdev_id : vdev id
3690 * @tx_aggr_size : TX aggr size
3691 * @rx_aggr_size : RX aggr size
3692 * @enable_bitmap: Bitmap for aggr size check
3693 */
3694struct set_custom_aggr_size_params {
3695 uint32_t vdev_id;
3696 uint32_t tx_aggr_size;
3697 uint32_t rx_aggr_size;
3698 uint32_t ac:2,
3699 aggr_type:1,
3700 tx_aggr_size_disable:1,
3701 rx_aggr_size_disable:1,
3702 tx_ac_enable:1,
3703 reserved:26;
3704};
3705
3706/**
3707 * enum wmi_host_custom_aggr_type_t: custon aggregate type
3708 * @WMI_HOST_CUSTOM_AGGR_TYPE_AMPDU: A-MPDU aggregation
3709 * @WMI_HOST_CUSTOM_AGGR_TYPE_AMSDU: A-MSDU aggregation
3710 * @WMI_HOST_CUSTOM_AGGR_TYPE_MAX: Max type
3711 */
3712enum wmi_host_custom_aggr_type_t {
3713 WMI_HOST_CUSTOM_AGGR_TYPE_AMPDU = 0,
3714 WMI_HOST_CUSTOM_AGGR_TYPE_AMSDU = 1,
3715 WMI_HOST_CUSTOM_AGGR_TYPE_MAX,
3716};
3717
Venkateswara Swamy Bandaru81f40dc2017-12-22 17:16:19 +05303718/*
3719 * msduq_update_params - MSDUQ update param structure
3720 * @tid_num: TID number
3721 * @msduq_update_mask: update bit mask
3722 * @qdepth_thresh_value: threshold value for the queue depth
3723 */
3724
3725#define QDEPTH_THRESH_MAX_UPDATES 1
3726
3727typedef struct {
3728 uint32_t tid_num;
3729 uint32_t msduq_update_mask;
3730 uint32_t qdepth_thresh_value;
3731} msduq_update_params;
3732
3733/**
3734 * struct set_qdepth_thresh_params - MSDU Queue Depth Threshold Params
3735 * @vdev_id: vdev id
3736 * @pdev_id: pdev id
3737 * @mac_addr: MAC address
3738 * @num_of_msduq_updates: holds the number of tid updates
3739 */
3740
3741struct set_qdepth_thresh_params {
3742 uint32_t pdev_id;
3743 uint32_t vdev_id;
3744 uint8_t mac_addr[IEEE80211_ADDR_LEN];
3745 uint32_t num_of_msduq_updates;
3746 msduq_update_params update_params[QDEPTH_THRESH_MAX_UPDATES];
3747};
3748
3749
3750
Sathish Kumar6190e772017-11-08 14:49:58 +05303751/**
Govind Singh89727882016-04-15 13:58:27 +05303752 * struct config_ratemask_params - ratemask config parameters
3753 * @vdev_id: vdev id
3754 * @type: Type
3755 * @lower32: Lower 32 bits
3756 * @higher32: Hogher 32 bits
3757 */
3758struct config_ratemask_params {
3759 uint8_t vdev_id;
3760 uint8_t type;
3761 uint32_t lower32;
3762 uint32_t higher32;
3763};
3764
3765/**
Subrat Mishra7c9427e2017-09-27 14:41:20 +05303766 * struct config_fils_params - FILS config params
3767 * @vdev_id: vdev id
3768 * @fd_period: 0 - Disabled, non-zero - Period in ms (mili seconds)
3769 */
3770struct config_fils_params {
3771 uint8_t vdev_id;
3772 uint32_t fd_period;
3773};
3774
3775/**
Govind Singh89727882016-04-15 13:58:27 +05303776 * struct peer_add_wds_entry_params - WDS peer entry add params
3777 * @dest_addr: Pointer to destination macaddr
3778 * @peer_addr: Pointer to peer mac addr
3779 * @flags: flags
Sathish Kumar79fdae42017-02-22 17:28:28 +05303780 * @vdev_id: Vdev id
Govind Singh89727882016-04-15 13:58:27 +05303781 */
3782struct peer_add_wds_entry_params {
3783 const uint8_t *dest_addr;
3784 uint8_t *peer_addr;
3785 uint32_t flags;
Sathish Kumar79fdae42017-02-22 17:28:28 +05303786 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303787};
3788
3789/**
3790 * struct peer_del_wds_entry_params - WDS peer entry del params
3791 * @dest_addr: Pointer to destination macaddr
Sathish Kumar79fdae42017-02-22 17:28:28 +05303792 * @vdev_id: Vdev id
Govind Singh89727882016-04-15 13:58:27 +05303793 */
3794struct peer_del_wds_entry_params {
3795 uint8_t *dest_addr;
Sathish Kumar79fdae42017-02-22 17:28:28 +05303796 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303797};
3798
3799/**
Jeevan Kukkalli28e8a162017-06-16 18:07:28 +05303800 * struct set_bridge_mac_addr_params - set bridge MAC addr params
3801 * @dest_addr: Pointer to bridge macaddr
3802 */
3803struct set_bridge_mac_addr_params {
3804 uint8_t *bridge_addr;
3805};
3806
3807/**
Govind Singh89727882016-04-15 13:58:27 +05303808 * struct peer_updatewds_entry_params - WDS peer entry update params
3809 * @wds_macaddr: Pointer to destination macaddr
3810 * @peer_add: Pointer to peer mac addr
3811 * @flags: flags
Sathish Kumar79fdae42017-02-22 17:28:28 +05303812 * @vdev_id: Vdev id
Govind Singh89727882016-04-15 13:58:27 +05303813 */
3814struct peer_update_wds_entry_params {
3815 uint8_t *wds_macaddr;
3816 uint8_t *peer_macaddr;
3817 uint32_t flags;
Sathish Kumardcc75292017-03-01 14:02:36 +05303818 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303819};
3820
3821/**
3822 * struct set_ps_mode_params - PS mode params
3823 * @vdev_id: vdev id
3824 * @psmode: PS mode
3825 */
3826struct set_ps_mode_params {
3827 uint8_t vdev_id;
3828 uint8_t psmode;
3829};
3830
3831/**
3832 * @struct tt_level_config - Set Thermal throttlling config
3833 * @tmplwm: Temperature low water mark
3834 * @tmphwm: Temperature high water mark
3835 * @dcoffpercent: dc off percentage
3836 * @priority: priority
3837 */
3838typedef struct {
3839 uint32_t tmplwm;
3840 uint32_t tmphwm;
3841 uint32_t dcoffpercent;
3842 uint32_t priority;
3843} tt_level_config;
3844
3845/**
3846 * struct thermal_mitigation_params - Thermal mitigation params
3847 * @enable: Enable/Disable Thermal mitigation
3848 * @dc: DC
3849 * @dc_per_event: DC per event
3850 * @tt_level_config: TT level config params
3851 */
3852struct thermal_mitigation_params {
Om Prakash Tripathi2f54fbb2017-04-19 16:57:31 +05303853 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303854 uint32_t enable;
3855 uint32_t dc;
3856 uint32_t dc_per_event;
3857 tt_level_config levelconf[THERMAL_LEVELS];
3858};
3859
3860/**
3861 * struct smart_ant_enable_params - Smart antenna params
3862 * @enable: Enable/Disable
3863 * @mode: SA mode
3864 * @rx_antenna: RX antenna config
Govind Singh41da3152016-05-06 20:20:25 +05303865 * @gpio_pin : GPIO pin config
3866 * @gpio_func : GPIO function config
Govind Singh89727882016-04-15 13:58:27 +05303867 */
3868struct smart_ant_enable_params {
3869 uint32_t enable;
3870 uint32_t mode;
3871 uint32_t rx_antenna;
Govind Singh41da3152016-05-06 20:20:25 +05303872 uint32_t gpio_pin[WMI_HAL_MAX_SANTENNA];
3873 uint32_t gpio_func[WMI_HAL_MAX_SANTENNA];
Sathish Kumardcc75292017-03-01 14:02:36 +05303874 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303875};
3876
3877/**
3878 * struct smart_ant_rx_ant_params - RX antenna params
3879 * @antenna: RX antenna
3880 */
3881struct smart_ant_rx_ant_params {
3882 uint32_t antenna;
Sathish Kumardcc75292017-03-01 14:02:36 +05303883 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05303884};
3885
3886/**
3887 * struct smart_ant_tx_ant_params - TX antenna param
3888 * @antenna_array: Antenna arry
3889 * @vdev_id: VDEV id
3890 */
3891struct smart_ant_tx_ant_params {
3892 uint32_t *antenna_array;
3893 uint8_t vdev_id;
3894};
3895
3896/**
3897 * struct smart_ant_training_info_params - SA training params
3898 * @vdev_id: VDEV id
3899 * @rate_array: Rates array
3900 * @antenna_array: Antenna array
3901 * @numpkts: num packets for training
3902 */
3903struct smart_ant_training_info_params {
3904 uint8_t vdev_id;
3905 uint32_t *rate_array;
3906 uint32_t *antenna_array;
3907 uint32_t numpkts;
3908};
3909
3910/**
3911 * struct smart_ant_node_config_params - SA node config params
3912 * @vdev_id: VDEV id
3913 * @cmd_id: Command id
3914 * @args_count: Arguments count
3915 */
3916struct smart_ant_node_config_params {
3917 uint8_t vdev_id;
3918 uint32_t cmd_id;
3919 uint16_t args_count;
3920 uint32_t *args_arr;
3921};
3922/**
3923 * struct smart_ant_enable_tx_feedback_params - SA tx feeback params
3924 * @enable: Enable TX feedback for SA
3925 */
3926struct smart_ant_enable_tx_feedback_params {
3927 int enable;
3928};
3929
3930/**
3931 * struct vdev_spectral_configure_params - SPectral config params
3932 * @vdev_id: VDEV id
3933 * @count: count
3934 * @period: period
3935 * @spectral_pri: Spectral priority
3936 * @fft_size: FFT size
3937 * @gc_enable: GC enable
3938 * @restart_enable: restart enabled
3939 * @noise_floor_ref: Noise floor reference
3940 * @init_delay: Init delays
3941 * @nb_tone_thr: NB tone threshold
3942 * @str_bin_thr: STR BIN threshold
3943 * @wb_rpt_mode: WB BIN threshold
3944 * @rssi_rpt_mode: RSSI report mode
3945 * @rssi_thr: RSSI threshold
3946 * @pwr_format: Power format
3947 * @rpt_mode: Report mdoe
3948 * @bin_scale: BIN scale
Shiva Krishna Pittala84073602017-12-18 16:39:20 +05303949 * @dbm_adj: DBM adjust
Govind Singh89727882016-04-15 13:58:27 +05303950 * @chn_mask: chain mask
3951 */
3952struct vdev_spectral_configure_params {
3953 uint8_t vdev_id;
3954 uint16_t count;
3955 uint16_t period;
3956 uint16_t spectral_pri;
3957 uint16_t fft_size;
3958 uint16_t gc_enable;
3959 uint16_t restart_enable;
3960 uint16_t noise_floor_ref;
3961 uint16_t init_delay;
3962 uint16_t nb_tone_thr;
3963 uint16_t str_bin_thr;
3964 uint16_t wb_rpt_mode;
3965 uint16_t rssi_rpt_mode;
3966 uint16_t rssi_thr;
3967 uint16_t pwr_format;
3968 uint16_t rpt_mode;
3969 uint16_t bin_scale;
Shiva Krishna Pittala84073602017-12-18 16:39:20 +05303970 uint16_t dbm_adj;
Govind Singh89727882016-04-15 13:58:27 +05303971 uint16_t chn_mask;
3972};
3973
3974/**
3975 * struct vdev_spectral_enable_params - Spectral enabled params
3976 * @vdev_id: VDEV id
3977 * @active_valid: Active valid
3978 * @active: active
3979 * @enabled_valid: Enabled valid
3980 * @enabled: enabled
3981 */
3982struct vdev_spectral_enable_params {
3983 uint8_t vdev_id;
3984 uint8_t active_valid;
3985 uint8_t active;
3986 uint8_t enabled_valid;
3987 uint8_t enabled;
3988};
3989
3990/**
3991 * struct pdev_set_regdomain_params - PDEV set reg domain params
3992 * @currentRDinuse: Current Reg domain
3993 * @currentRD2G: Current Reg domain 2G
3994 * @currentRD5G: Current Reg domain 5G
3995 * @ctl_2G: CTL 2G
3996 * @ctl_5G: CTL 5G
3997 * @dfsDomain: DFS domain
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05303998 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05303999 */
4000struct pdev_set_regdomain_params {
4001 uint16_t currentRDinuse;
4002 uint16_t currentRD2G;
4003 uint16_t currentRD5G;
4004 uint32_t ctl_2G;
4005 uint32_t ctl_5G;
4006 uint8_t dfsDomain;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05304007 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304008};
4009
4010/**
4011 * struct set_quiet_mode_params - Set quiet mode params
4012 * @enabled: Enabled
4013 * @period: Quite period
4014 * @intval: Quite interval
4015 * @duration: Quite duration
4016 * @offset: offset
4017 */
4018struct set_quiet_mode_params {
4019 uint8_t enabled;
4020 uint8_t period;
4021 uint16_t intval;
4022 uint16_t duration;
4023 uint16_t offset;
4024};
4025
4026/**
4027 * struct set_beacon_filter_params - Set beacon filter params
4028 * @vdev_id: VDEV id
4029 * @ie: Pointer to IE fields
4030 */
4031struct set_beacon_filter_params {
4032 uint8_t vdev_id;
4033 uint32_t *ie;
4034};
4035
4036/**
4037 * struct remove_beacon_filter_params - Remove beacon filter params
4038 * @vdev_id: VDEV id
4039 */
4040struct remove_beacon_filter_params {
4041 uint8_t vdev_id;
4042};
4043
4044/**
4045 * struct mgmt_params - Mgmt params
4046 * @vdev_id: vdev id
Jeff Johnson390679c2018-05-06 15:40:42 -07004047 * @buf_len: length of frame buffer
Govind Singh89727882016-04-15 13:58:27 +05304048 * @wbuf: frame buffer
4049 */
4050struct mgmt_params {
4051 int vdev_id;
4052 uint32_t buf_len;
4053 qdf_nbuf_t wbuf;
4054};
4055
4056/**
4057 * struct addba_clearresponse_params - Addba clear response params
4058 * @vdev_id: VDEV id
4059 */
4060struct addba_clearresponse_params {
4061 uint8_t vdev_id;
4062};
4063
4064/**
4065 * struct addba_send_params - ADDBA send params
4066 * @vdev_id: vdev id
4067 * @tidno: TID
4068 * @buffersize: buffer size
4069 */
4070struct addba_send_params {
4071 uint8_t vdev_id;
4072 uint8_t tidno;
4073 uint16_t buffersize;
4074};
4075
4076/**
4077 * struct delba_send_params - DELBA send params
4078 * @vdev_id: vdev id
4079 * @tidno: TID
4080 * @initiator: initiator
4081 * @reasoncode: reason code
4082 */
4083struct delba_send_params {
4084 uint8_t vdev_id;
4085 uint8_t tidno;
4086 uint8_t initiator;
4087 uint16_t reasoncode;
4088};
4089/**
4090 * struct addba_setresponse_arams - Set ADDBA response params
4091 * @vdev_id: vdev id
4092 * @tidno: TID
4093 * @statuscode: status code in response
4094 */
4095struct addba_setresponse_params {
4096 uint8_t vdev_id;
4097 uint8_t tidno;
4098 uint16_t statuscode;
4099};
4100
4101/**
4102 * struct singleamsdu_params - Single AMSDU params
4103 * @vdev_id: vdev is
4104 * @tidno: TID
4105 */
4106struct singleamsdu_params {
4107 uint8_t vdev_id;
4108 uint8_t tidno;
4109};
4110
4111/**
4112 * struct set_qbosst_params - Set QBOOST params
4113 * @vdev_id: vdev id
4114 * @value: value
4115 */
4116struct set_qboost_params {
4117 uint8_t vdev_id;
4118 uint32_t value;
4119};
4120
4121/**
4122 * struct mu_scan_params - MU scan params
4123 * @id: id
4124 * @type: type
4125 * @duration: Duration
4126 * @lteu_tx_power: LTEU tx power
4127 */
4128struct mu_scan_params {
4129 uint8_t id;
4130 uint8_t type;
4131 uint32_t duration;
4132 uint32_t lteu_tx_power;
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05304133 uint32_t rssi_thr_bssid;
4134 uint32_t rssi_thr_sta;
4135 uint32_t rssi_thr_sc;
4136 uint32_t plmn_id;
4137 uint32_t alpha_num_bssid;
Govind Singh89727882016-04-15 13:58:27 +05304138};
4139
4140/**
4141 * struct lteu_config_params - LTEU config params
4142 * @lteu_gpio_start: start MU/AP scan after GPIO toggle
4143 * @lteu_num_bins: no. of elements in the following arrays
4144 * @use_actual_nf: whether to use the actual NF obtained or a hardcoded one
4145 * @lteu_weight: weights for MU algo
4146 * @lteu_thresh: thresholds for MU algo
4147 * @lteu_gamma: gamma's for MU algo
4148 * @lteu_scan_timeout: timeout in ms to gpio toggle
4149 * @alpha_num_ssid: alpha for num active bssid calculation
4150 * @wifi_tx_power: Wifi Tx power
4151 */
4152struct lteu_config_params {
4153 uint8_t lteu_gpio_start;
4154 uint8_t lteu_num_bins;
4155 uint8_t use_actual_nf;
4156 uint32_t lteu_weight[LTEU_MAX_BINS];
4157 uint32_t lteu_thresh[LTEU_MAX_BINS];
4158 uint32_t lteu_gamma[LTEU_MAX_BINS];
4159 uint32_t lteu_scan_timeout;
4160 uint32_t alpha_num_bssid;
4161 uint32_t wifi_tx_power;
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05304162 uint32_t allow_err_packets;
Govind Singh89727882016-04-15 13:58:27 +05304163};
4164
4165struct wmi_macaddr_t {
4166 /** upper 4 bytes of MAC address */
4167 uint32_t mac_addr31to0;
4168 /** lower 2 bytes of MAC address */
4169 uint32_t mac_addr47to32;
4170};
4171
4172/**
4173 * struct atf_peer_info - ATF peer info params
4174 * @peer_macaddr: peer mac addr
4175 * @percentage_peer: percentage of air time for this peer
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304176 * @vdev_id: Associated vdev id
4177 * @pdev_id: Associated pdev id
Govind Singh89727882016-04-15 13:58:27 +05304178 */
4179typedef struct {
4180 struct wmi_macaddr_t peer_macaddr;
4181 uint32_t percentage_peer;
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304182 uint32_t vdev_id;
4183 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304184} atf_peer_info;
4185
4186/**
Sathish Kumar50232d72016-08-09 16:50:46 +05304187 * struct bwf_peer_info_t - BWF peer info params
4188 * @peer_macaddr: peer mac addr
4189 * @throughput: Throughput
4190 * @max_airtime: Max airtime
4191 * @priority: Priority level
4192 * @reserved: Reserved array
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304193 * @vdev_id: Associated vdev id
4194 * @pdev_id: Associated pdev id
Sathish Kumar50232d72016-08-09 16:50:46 +05304195 */
4196typedef struct {
4197 struct wmi_macaddr_t peer_macaddr;
4198 uint32_t throughput;
4199 uint32_t max_airtime;
4200 uint32_t priority;
4201 uint32_t reserved[4];
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304202 uint32_t vdev_id;
4203 uint32_t pdev_id;
Sathish Kumar50232d72016-08-09 16:50:46 +05304204} bwf_peer_info;
4205
4206/**
4207 * struct set_bwf_params - BWF params
4208 * @num_peers: number of peers
4209 * @atf_peer_info: BWF peer info
4210 */
4211struct set_bwf_params {
4212 uint32_t num_peers;
4213 bwf_peer_info peer_info[1];
4214};
4215
4216/**
Govind Singh89727882016-04-15 13:58:27 +05304217 * struct atf_peer_ext_info - ATF peer ext info params
4218 * @peer_macaddr: peer mac address
4219 * @group_index: group index
4220 * @atf_index_reserved: ATF index rsvd
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304221 * @vdev_id: Associated vdev id
4222 * @pdev_id: Associated pdev id
Govind Singh89727882016-04-15 13:58:27 +05304223 */
4224typedef struct {
4225 struct wmi_macaddr_t peer_macaddr;
4226 uint32_t group_index;
4227 uint32_t atf_index_reserved;
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304228 uint16_t vdev_id;
4229 uint16_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304230} atf_peer_ext_info;
4231
4232/**
Sathish Kumarb597ba42017-02-22 17:24:45 +05304233 * struct set_atf_params - ATF params
4234 * @num_peers: number of peers
4235 * @atf_peer_info: ATF peer info
4236 */
4237struct set_atf_params {
4238 uint32_t num_peers;
4239 atf_peer_info peer_info[ATF_ACTIVED_MAX_CLIENTS];
4240};
4241
4242/**
Govind Singh89727882016-04-15 13:58:27 +05304243 * struct atf_peer_request_params - ATF peer req params
4244 * @num_peers: number of peers
4245 * @atf_peer_ext_info: ATF peer ext info
4246 */
4247struct atf_peer_request_params {
4248 uint32_t num_peers;
4249 atf_peer_ext_info peer_ext_info[ATF_ACTIVED_MAX_CLIENTS];
4250};
4251
4252/**
4253 * struct atf_group_info - ATF group info params
4254 * @percentage_group: Percentage AT for group
4255 * @atf_group_units_reserved: ATF group information
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304256 * @pdev_id: Associated pdev id
Govind Singh89727882016-04-15 13:58:27 +05304257 */
4258typedef struct {
4259 uint32_t percentage_group;
4260 uint32_t atf_group_units_reserved;
Subrat Mishraf02ed8b2017-04-03 12:32:42 +05304261 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304262} atf_group_info;
4263
4264/**
4265 * struct atf_grouping_params - ATF grouping params
4266 * @num_groups: number of groups
4267 * @group_inf: Group informaition
4268 */
4269struct atf_grouping_params {
4270 uint32_t num_groups;
4271 atf_group_info group_info[ATF_ACTIVED_MAX_ATFGROUPS];
4272};
4273
4274/**
4275 * struct wlan_profile_params - WLAN profile params
4276 * @param_id: param id
4277 * @profile_id: profile id
4278 * @enable: enable
4279 */
4280struct wlan_profile_params {
4281 uint32_t param_id;
4282 uint32_t profile_id;
4283 uint32_t enable;
4284};
4285
4286/* struct ht_ie_params - HT IE params
4287 * @ie_len: IE length
4288 * @ie_data: pointer to IE data
Sathish Kumar79fdae42017-02-22 17:28:28 +05304289 * @tx_streams: Tx streams supported for this HT IE
4290 * @rx_streams: Rx streams supported for this HT IE
Govind Singh89727882016-04-15 13:58:27 +05304291 */
4292struct ht_ie_params {
4293 uint32_t ie_len;
4294 uint8_t *ie_data;
Sathish Kumar79fdae42017-02-22 17:28:28 +05304295 uint32_t tx_streams;
4296 uint32_t rx_streams;
Govind Singh89727882016-04-15 13:58:27 +05304297};
4298
4299/* struct vht_ie_params - VHT IE params
4300 * @ie_len: IE length
4301 * @ie_data: pointer to IE data
Sathish Kumar79fdae42017-02-22 17:28:28 +05304302 * @tx_streams: Tx streams supported for this VHT IE
4303 * @rx_streams: Rx streams supported for this VHT IE
Govind Singh89727882016-04-15 13:58:27 +05304304 */
4305struct vht_ie_params {
4306 uint32_t ie_len;
4307 uint8_t *ie_data;
Sathish Kumar79fdae42017-02-22 17:28:28 +05304308 uint32_t tx_streams;
4309 uint32_t rx_streams;
Govind Singh89727882016-04-15 13:58:27 +05304310};
4311
4312/**
4313 * struct wmi_host_wmeParams - WME params
4314 * @wmep_acm: ACM paramete
4315 * @wmep_aifsn: AIFSN parameters
4316 * @wmep_logcwmin: cwmin in exponential form
4317 * @wmep_logcwmax: cwmax in exponential form
4318 * @wmep_txopLimit: txopLimit
4319 * @wmep_noackPolicy: No-Ack Policy: 0=ack, 1=no-ack
4320 */
4321struct wmi_host_wmeParams {
4322 u_int8_t wmep_acm;
4323 u_int8_t wmep_aifsn;
4324 u_int8_t wmep_logcwmin;
4325 u_int8_t wmep_logcwmax;
4326 u_int16_t wmep_txopLimit;
4327 u_int8_t wmep_noackPolicy;
4328};
4329
4330/**
4331 * struct wmm_update_params - WMM update params
4332 * @wmep_array: WME params for each AC
4333 */
4334struct wmm_update_params {
4335 struct wmi_host_wmeParams *wmep_array;
4336};
4337
4338/**
Vikram Kandukurid2e75802017-06-01 16:47:51 +05304339 * struct wmi_host_wmevParams - WME params
4340 * @wmep_acm: ACM paramete
4341 * @wmep_aifsn: AIFSN parameters
4342 * @wmep_logcwmin: cwmin in exponential form
4343 * @wmep_logcwmax: cwmax in exponential form
4344 * @wmep_txopLimit: txopLimit
4345 * @wmep_noackPolicy: No-Ack Policy: 0=ack, 1=no-ack
4346 */
4347struct wmi_host_wme_vparams {
4348 u_int32_t acm;
4349 u_int32_t aifs;
4350 u_int32_t cwmin;
4351 u_int32_t cwmax;
4352 union {
4353 u_int32_t txoplimit;
4354 u_int32_t mu_edca_timer;
4355 };
4356 u_int32_t noackpolicy;
4357};
4358
4359/**
Govind Singh89727882016-04-15 13:58:27 +05304360 * struct ant_switch_tbl_params - Antenna switch table params
4361 * @ant_ctrl_common1: ANtenna control common param 1
4362 * @ant_ctrl_common2: Antenna control commn param 2
4363 */
4364struct ant_switch_tbl_params {
4365 uint32_t ant_ctrl_common1;
4366 uint32_t ant_ctrl_common2;
Sathish Kumarb597ba42017-02-22 17:24:45 +05304367 uint32_t pdev_id;
4368 uint32_t antCtrlChain;
Govind Singh89727882016-04-15 13:58:27 +05304369};
4370
4371/**
4372 * struct ratepwr_table_params - Rate power table params
4373 * @ratepwr_tbl: pointer to rate power table
4374 * @ratepwr_len: rate power table len
4375 */
4376struct ratepwr_table_params {
4377 uint8_t *ratepwr_tbl;
4378 uint16_t ratepwr_len;
4379};
4380
4381/**
4382 * struct ctl_table_params - Ctl table params
4383 * @ctl_array: pointer to ctl array
Sathish Kumar990089f2016-11-09 11:44:50 +05304384 * @ctl_cmd_len: ctl command length
Govind Singh89727882016-04-15 13:58:27 +05304385 * @is_acfg_ctl: is acfg_ctl table
4386 */
4387struct ctl_table_params {
4388 uint8_t *ctl_array;
Sathish Kumar990089f2016-11-09 11:44:50 +05304389 uint16_t ctl_cmd_len;
Nandha Kishore Easwaranda8e13c2016-10-14 15:22:05 +05304390 uint32_t target_type;
4391 bool is_2g;
Sathish Kumar990089f2016-11-09 11:44:50 +05304392 uint32_t ctl_band;
Sathish Kumardcc75292017-03-01 14:02:36 +05304393 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304394};
4395
4396/**
4397 * struct mimogain_table_params - MIMO gain table params
4398 * @array_gain: pointer to array gain table
4399 * @tbl_len: table length
4400 * @multichain_gain_bypass: bypass multichain gain
4401 */
4402struct mimogain_table_params {
4403 uint8_t *array_gain;
4404 uint16_t tbl_len;
4405 bool multichain_gain_bypass;
Sathish Kumardcc75292017-03-01 14:02:36 +05304406 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304407};
4408
4409/**
4410 * struct ratepwr_chainmask_params - Rate power chainmask params
4411 * @ratepwr_chain_tbl: pointer to ratepwr chain table
4412 * @num_rate: number of rate in table
4413 * @pream_type: preamble type
4414 * @ops: ops
4415 */
4416struct ratepwr_chainmsk_params {
4417 uint32_t *ratepwr_chain_tbl;
4418 uint16_t num_rate;
4419 uint8_t pream_type;
4420 uint8_t ops;
4421};
4422
4423struct macaddr_params {
4424 uint8_t *macaddr;
4425};
4426
4427/**
4428 * struct acparams_params - acparams config structure
4429 * @ac: AC to configure
4430 * @use_rts: Use rts for this AC
4431 * @aggrsize_scaling: Aggregrate size scaling for the AC
4432 * @min_kbps: min kbps req
4433 */
4434struct acparams_params {
4435 uint8_t ac;
4436 uint8_t use_rts;
4437 uint8_t aggrsize_scaling;
4438 uint32_t min_kbps;
4439};
4440
4441/**
4442 * struct vap_dscp_tid_map_params - DSCP tid map params
4443 * @vdev_id: vdev id
4444 * @dscp_to_tid_map: pointer to arry of tid to dscp map table
4445 */
4446struct vap_dscp_tid_map_params {
4447 uint8_t vdev_id;
4448 uint32_t *dscp_to_tid_map;
4449};
4450
4451/**
4452 * struct proxy_ast_reserve_params - Proxy AST reserve params
4453 * @macaddr: macaddr for proxy ast entry
4454 */
4455struct proxy_ast_reserve_params {
4456 uint8_t *macaddr;
4457};
4458
4459/**
4460 * struct fips_params - FIPS params config
4461 * @key: pointer to key
4462 * @key_len: length of key
4463 * @data: pointer data buf
Jeff Johnson390679c2018-05-06 15:40:42 -07004464 * @data_len: length of data buf
Govind Singh89727882016-04-15 13:58:27 +05304465 * @mode: mode
4466 * @op: operation
Nandha Kishore Easwaran2ccd4242017-01-09 21:33:00 +05304467 * @pdev_id: pdev_id for identifying the MAC
Govind Singh89727882016-04-15 13:58:27 +05304468 */
4469struct fips_params {
4470 uint8_t *key;
4471 uint32_t key_len;
4472 uint8_t *data;
4473 uint32_t data_len;
4474 uint32_t mode;
4475 uint32_t op;
Nandha Kishore Easwaran2ccd4242017-01-09 21:33:00 +05304476 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304477};
4478
4479/**
4480 * struct mcast_group_update_param - Mcast group table update to target
4481 * @action: Addition/deletion
4482 * @wildcard: iwldcard table entry?
4483 * @mcast_ip_addr: mcast ip address to be updated
4484 * @mcast_ip_addr_bytes: mcast ip addr bytes
4485 * @ucast_mac_addr: ucast peer mac subscribed to mcast ip
4486 * @filter_mode: filter mode
4487 * @nsrcs: number of entries in source list
4488 * @srcs: source mac accpted
4489 * @mask: mask
4490 * @vap_id: vdev id
4491 * @is_action_delete: is delete
4492 * @is_filter_mode_snoop:
4493 * @is_mcast_addr_len:
4494 */
4495struct mcast_group_update_params {
4496 int action;
4497 int wildcard;
4498 uint8_t *mcast_ip_addr;
4499 int mcast_ip_addr_bytes;
4500 uint8_t *ucast_mac_addr;
4501 uint8_t filter_mode;
4502 uint8_t nsrcs;
4503 uint8_t *srcs;
4504 uint8_t *mask;
4505 uint8_t vap_id;
4506 bool is_action_delete;
4507 bool is_filter_mode_snoop;
4508 bool is_mcast_addr_len;
4509};
4510
4511/**
4512 * struct periodic_chan_stats_param - periodic channel stats req param
4513 * @stats_period: stats period update
4514 * @enable: enable/disable
4515 */
4516struct periodic_chan_stats_params {
4517 uint32_t stats_period;
4518 bool enable;
Sathish Kumard1bb0202017-11-02 10:44:39 +05304519 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304520};
4521
4522/**
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05304523 * enum wmi_host_packet_power_rate_flags: packer power rate flags
4524 * @WMI_HOST_FLAG_RTSENA: RTS enabled
4525 * @WMI_HOST_FLAG_CTSENA: CTS enabled
4526 * @WMI_HOST_FLAG_STBC: STBC is set
4527 * @WMI_HOST_FLAG_LDPC: LDPC is set
4528 * @WMI_HOST_FLAG_TXBF: Tx Bf enabled
4529 * @WMI_HOST_FLAG_MU2: MU2 data
4530 * @WMI_HOST_FLAG_MU3: MU3 data
4531 * @WMI_HOST_FLAG_SERIES1: Rate series 1
4532 * @WMI_HOST_FLAG_SGI: Short gaurd interval
4533 */
4534enum wmi_host_packet_power_rate_flags {
4535 WMI_HOST_FLAG_RTSENA = 0x0001,
4536 WMI_HOST_FLAG_CTSENA = 0x0002,
4537 WMI_HOST_FLAG_STBC = 0x0004,
4538 WMI_HOST_FLAG_LDPC = 0x0008,
4539 WMI_HOST_FLAG_TXBF = 0x0010,
4540 WMI_HOST_FLAG_MU2 = 0x0020,
4541 WMI_HOST_FLAG_MU3 = 0x0040,
4542 WMI_HOST_FLAG_SERIES1 = 0x0080,
4543 WMI_HOST_FLAG_SGI = 0x0100,
4544};
4545
4546/**
4547 * enum wmi_host_su_mu_ofdma_flags: packer power su mu ofdma flags
4548 * @WMI_HOST_FLAG_SU: SU Data
4549 * @WMI_HOST_FLAG_DL_MU_MIMO_AC: DL AC MU data
4550 * @WMI_HOST_FLAG_DL_MU_MIMO_AX: DL AX MU data
4551 * @WMI_HOST_FLAG_DL_OFDMA: DL OFDMA data
4552 * @WMI_HOST_FLAG_UL_OFDMA: UL OFDMA data
4553 * @WMI_HOST_FLAG_UL_MU_MIMO: UL MU data
4554 */
4555enum wmi_host_su_mu_ofdma_flags {
4556 WMI_HOST_FLAG_SU = 0x0001,
4557 WMI_HOST_FLAG_DL_MU_MIMO_AC = 0x0002,
4558 WMI_HOST_FLAG_DL_MU_MIMO_AX = 0x0003,
4559 WMI_HOST_FLAG_DL_OFDMA = 0x0004,
4560 WMI_HOST_FLAG_UL_OFDMA = 0x0005,
4561 WMI_HOST_FLAG_UL_MU_MIMO = 0x0006,
4562};
4563
4564/**
4565 * enum wmi_host_preamble_type: preamble type
4566 * @WMI_HOST_PREAMBLE_OFDM: ofdm rate
4567 * @WMI_HOST_PREAMBLE_CCK: cck rate
4568 * @WMI_HOST_PREAMBLE_HT: ht rate
4569 * @WMI_HOST_PREAMBLE_VHT: vht rate
4570 * @WMI_HOST_PREAMBLE_HE: 11ax he rate
4571 */
4572enum wmi_host_preamble_type {
4573 WMI_HOST_PREAMBLE_OFDM = 0,
4574 WMI_HOST_PREAMBLE_CCK = 1,
4575 WMI_HOST_PREAMBLE_HT = 2,
4576 WMI_HOST_PREAMBLE_VHT = 3,
4577 WMI_HOST_PREAMBLE_HE = 4,
4578};
4579
4580/**
Govind Singh89727882016-04-15 13:58:27 +05304581 * struct packet_power_info_params - packet power info params
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05304582 * @chainmask: chain mask
4583 * @chan_width: channel bandwidth
Govind Singh89727882016-04-15 13:58:27 +05304584 * @rate_flags: rate flags
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05304585 * @su_mu_ofdma: su/mu/ofdma flags
Govind Singh89727882016-04-15 13:58:27 +05304586 * @nss: number of spatial streams
4587 * @preamble: preamble
4588 * @hw_rate:
4589 */
4590struct packet_power_info_params {
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05304591 uint16_t chainmask;
4592 uint16_t chan_width;
Govind Singh89727882016-04-15 13:58:27 +05304593 uint16_t rate_flags;
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05304594 uint16_t su_mu_ofdma;
Govind Singh89727882016-04-15 13:58:27 +05304595 uint16_t nss;
4596 uint16_t preamble;
4597 uint16_t hw_rate;
Sathish Kumardcc75292017-03-01 14:02:36 +05304598 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05304599};
4600
4601/**
4602 * WMI_GPIO_CONFIG_CMDID
4603 */
4604enum {
4605 WMI_HOST_GPIO_PULL_NONE,
4606 WMI_HOST_GPIO_PULL_UP,
4607 WMI_HOST_GPIO_PULL_DOWN,
4608};
4609
4610/**
4611 * WMI_GPIO_INTTYPE
4612 */
4613enum {
4614 WMI_HOST_GPIO_INTTYPE_DISABLE,
4615 WMI_HOST_GPIO_INTTYPE_RISING_EDGE,
4616 WMI_HOST_GPIO_INTTYPE_FALLING_EDGE,
4617 WMI_HOST_GPIO_INTTYPE_BOTH_EDGE,
4618 WMI_HOST_GPIO_INTTYPE_LEVEL_LOW,
4619 WMI_HOST_GPIO_INTTYPE_LEVEL_HIGH
4620};
4621
4622/**
4623 * struct wmi_host_gpio_input_event - GPIO input event structure
4624 * @gpio_num: GPIO number which changed state
4625 */
4626typedef struct {
4627 uint32_t gpio_num; /* GPIO number which changed state */
4628} wmi_host_gpio_input_event;
4629
4630/**
4631 * struct gpio_config_params - GPIO config params
4632 * @gpio_num: GPIO number to config
4633 * @input: input/output
4634 * @pull_type: pull type
4635 * @intr_mode: int mode
4636 */
4637struct gpio_config_params {
4638 uint32_t gpio_num;
4639 uint32_t input;
4640 uint32_t pull_type;
4641 uint32_t intr_mode;
4642};
4643
4644/**
4645 * struct gpio_output_params - GPIO output params
4646 * @gpio_num: GPIO number to configure
4647 * @set: set/reset
4648 */
4649struct gpio_output_params {
4650 uint32_t gpio_num;
4651 uint32_t set;
4652};
4653
Sathish Kumar7e566c52016-11-10 15:30:22 +05304654/* flags bit 0: to configure wlan priority bitmap */
4655#define WMI_HOST_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT (1<<0)
4656/* flags bit 1: to configure both period and wlan duration */
4657#define WMI_HOST_BTCOEX_PARAM_FLAGS_DUTY_CYCLE_BIT (1<<1)
4658struct btcoex_cfg_params {
4659 /* WLAN priority bitmask for different frame types */
4660 uint32_t btcoex_wlan_priority_bitmap;
4661 /* This command is used to configure different btcoex params
4662 * in different situations.The host sets the appropriate bit(s)
4663 * in btcoex_param_flags to indicate which configuration parameters
4664 * are valid within a particular BT coex config message, so that one
4665 * BT configuration parameter can be configured without affecting
4666 * other BT configuration parameters.E.g. if the host wants to
4667 * configure only btcoex_wlan_priority_bitmap it sets only
4668 * WMI_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT in
4669 * btcoex_param_flags so that firmware will not overwrite
4670 * other params with default value passed in the command.
4671 * Host can also set multiple bits in btcoex_param_flags
4672 * to configure more than one param in single message.
4673 */
4674 uint32_t btcoex_param_flags;
4675 /* period denotes the total time in milliseconds which WLAN and BT share
4676 * configured percentage for transmission and reception.
4677 */
4678 uint32_t period;
4679 /* wlan duration is the time in milliseconds given for wlan
4680 * in above period.
4681 */
4682 uint32_t wlan_duration;
4683};
4684
Sathish Kumar612d0c22017-01-19 14:57:37 +05304685#define WMI_HOST_COEX_CONFIG_BUF_MAX_LEN 32 /* 128 bytes */
4686/**
4687 * coex_ver_cfg_t
4688 * @coex_version: Version for 4 wire coex
4689 * @length: Length of payload buffer based on version
4690 * @config_buf: Payload Buffer
4691 */
4692typedef struct {
4693 /* VERSION_4 (4 wire coex) */
4694 uint32_t coex_version;
4695
Vivek73465282018-03-22 23:27:21 +05304696 /* No. of uint32_t elements in payload buffer. Will depend on the coex
Sathish Kumar612d0c22017-01-19 14:57:37 +05304697 * version
4698 */
4699 uint32_t length;
4700
4701 /* Payload buffer */
4702 uint32_t config_buf[WMI_HOST_COEX_CONFIG_BUF_MAX_LEN];
4703} coex_ver_cfg_t;
Sathish Kumar7e566c52016-11-10 15:30:22 +05304704
Govind Singh89727882016-04-15 13:58:27 +05304705#define WMI_HOST_RTT_REPORT_CFR 0
4706#define WMI_HOST_RTT_NO_REPORT_CFR 1
4707#define WMI_HOST_RTT_AGGREGATE_REPORT_NON_CFR 2
4708/**
4709 * struct rtt_meas_req_test_params
4710 * @peer: peer mac address
4711 * @req_frame_type: RTT request frame type
4712 * @req_bw: requested bandwidth
4713 * @req_preamble: Preamble
4714 * @req_num_req: num of requests
4715 * @req_report_type: report type
4716 * @num_measurements: number of measurements
4717 * @asap_mode: priority
4718 * @lci_requested: LCI requested
4719 * @loc_civ_requested:
4720 * @channel_param: channel param
4721 * @req_id: requested id
4722 */
4723struct rtt_meas_req_test_params {
4724 uint8_t peer[IEEE80211_ADDR_LEN];
4725 int req_frame_type;
4726 int req_bw;
4727 int req_preamble;
4728 int req_num_req;
4729 int req_report_type;
4730 uint32_t num_measurements;
4731 uint32_t asap_mode;
4732 uint32_t lci_requested;
4733 uint32_t loc_civ_requested;
4734 struct channel_param channel;
4735 uint8_t req_id;
4736};
4737
4738/**
4739 * struct rtt_meas_req_params - RTT measurement request params
4740 * @req_id: Request id
4741 * @vdev_id: vdev id
4742 * @sta_mac_addr: pointer to station mac address
4743 * @spoof_mac_addr: pointer to spoof mac address
4744 * @is_mode_na: 11NA
4745 * @is_mode_ac: AC
4746 * @is_bw_20: 20
4747 * @is_bw_40: 40
4748 * @is_bw_80: 80
4749 * @num_probe_rqst: number of probe request
4750 * @channel_param: channel param
4751 */
4752struct rtt_meas_req_params {
4753 uint8_t req_id;
4754 uint8_t vdev_id;
4755 uint8_t *sta_mac_addr;
4756 uint8_t *spoof_mac_addr;
4757 bool is_mode_na;
4758 bool is_mode_ac;
4759 bool is_bw_20;
4760 bool is_bw_40;
4761 bool is_bw_80;
4762 uint32_t num_probe_rqst;
4763 struct channel_param channel;
4764};
4765
4766/**
4767 * struct lci_set_params - LCI params
4768 * @lci_data: pointer to LCI data
4769 * @latitude_unc: latitude
4770 * @latitude_0_12: bits 0 to 1 of latitude
4771 * @latitude_2_33: bits 2 to 33 of latitude
4772 * @longitude_unc: longitude
4773 * @longitude_0_1: bits 0 to 1 of longitude
4774 * @longitude_2_33: bits 2 to 33 of longitude
4775 * @altitude_type: altitude type
4776 * @altitude_unc_0_3: altitude bits 0 - 3
4777 * @altitude_unc_4_5: altitude bits 4 - 5
4778 * @altitude: altitude
4779 * @datum: dataum
4780 * @reg_loc_agmt:
4781 * @reg_loc_dse:
4782 * @dep_sta:
4783 * @version: version
4784 */
4785struct lci_set_params {
4786 void *lci_data;
4787 uint8_t latitude_unc:6,
4788 latitude_0_1:2;
4789 uint32_t latitude_2_33;
4790 uint8_t longitude_unc:6,
4791 longitude_0_1:2;
4792 uint32_t longitude_2_33;
4793 uint8_t altitude_type:4,
4794 altitude_unc_0_3:4;
4795 uint32_t altitude_unc_4_5:2,
4796 altitude:30;
4797 uint8_t datum:3,
4798 reg_loc_agmt:1,
4799 reg_loc_dse:1,
4800 dep_sta:1,
4801 version:2;
Sathish Kumar38bf0d82016-10-20 14:07:21 +05304802 uint8_t *colocated_bss;
4803 int msg_len;
Govind Singh89727882016-04-15 13:58:27 +05304804};
4805
4806/**
4807 * struct lcr_set_params - LCR params
4808 * @lcr_data: pointer to lcr data
4809 */
4810struct lcr_set_params {
4811 void *lcr_data;
Sathish Kumar38bf0d82016-10-20 14:07:21 +05304812 int msg_len;
Govind Singh89727882016-04-15 13:58:27 +05304813};
4814
4815/**
4816 * struct rtt_keepalive_req_params - RTT keepalive params
4817 * @macaddr: pointer to macaddress
4818 * @req_id: Request id
4819 * @vdev_id: vdev id
4820 * @stop: start/stop
4821 */
4822struct rtt_keepalive_req_params {
4823 uint8_t *macaddr;
4824 uint8_t req_id;
4825 uint8_t vdev_id;
4826 bool stop;
4827};
4828
4829/**
Leo Chang8184e9c2016-09-28 13:43:36 -07004830 * struct rx_reorder_queue_setup_params - Reorder queue setup params
4831 * @peer_mac_addr: Peer mac address
4832 * @tid: TID
4833 * @vdev_id: vdev id
4834 * @hw_qdesc_paddr_lo: lower 32 bits of queue desc adddress
4835 * @hw_qdesc_paddr_hi: upper 32 bits of queue desc adddress
4836 * @queue_no: 16-bit number assigned by host for queue
4837 */
4838struct rx_reorder_queue_setup_params {
4839 uint8_t *peer_macaddr;
4840 uint16_t tid;
4841 uint16_t vdev_id;
4842 uint32_t hw_qdesc_paddr_lo;
4843 uint32_t hw_qdesc_paddr_hi;
4844 uint16_t queue_no;
4845};
4846
4847/**
4848 * struct rx_reorder_queue_remove_params - Reorder queue setup params
4849 * @peer_mac_addr: Peer mac address
4850 * @vdev_id: vdev id
4851 * @peer_tid_bitmap: peer tid bitmap
4852 */
4853struct rx_reorder_queue_remove_params {
4854 uint8_t *peer_macaddr;
4855 uint16_t vdev_id;
4856 uint32_t peer_tid_bitmap;
4857};
4858
4859/**
Govind Singh89727882016-04-15 13:58:27 +05304860 * struct wmi_host_stats_event - Stats event params
4861 * @stats_id: stats id of type wmi_host_stats_event
4862 * @num_pdev_stats: number of pdev stats event structures 0 or 1
4863 * @num_pdev_ext_stats: number of pdev ext stats event structures
4864 * @num_vdev_stats: number of vdev stats
4865 * @num_peer_stats: number of peer stats event structures 0 or max peers
4866 * @num_bcnflt_stats: number of beacon filter stats
4867 * @num_chan_stats: number of channel stats
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05304868 * @pdev_id: device id for the radio
4869 * @num_bcn_stats: number of beacon stats
Naveen Rawata9e0df32018-04-06 10:57:20 -07004870 * @num_rssi_stats: number of rssi stats
Govind Singh89727882016-04-15 13:58:27 +05304871 */
4872typedef struct {
4873 wmi_host_stats_id stats_id;
4874 uint32_t num_pdev_stats;
4875 uint32_t num_pdev_ext_stats;
4876 uint32_t num_vdev_stats;
4877 uint32_t num_peer_stats;
4878 uint32_t num_bcnflt_stats;
4879 uint32_t num_chan_stats;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05304880 uint32_t pdev_id;
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05304881 uint32_t num_bcn_stats;
Naveen Rawata9e0df32018-04-06 10:57:20 -07004882 uint32_t num_rssi_stats;
Govind Singh89727882016-04-15 13:58:27 +05304883} wmi_host_stats_event;
4884
4885/**
Govind Singh89727882016-04-15 13:58:27 +05304886 * struct wmi_host_peer_extd_stats - peer extd stats event structure
4887 * @peer_macaddr: Peer mac address
4888 * @inactive_time: inactive time in secs
4889 * @peer_chain_rssi: peer rssi
4890 * @rx_duration: RX duration
4891 * @peer_tx_bytes: TX bytes
4892 * @peer_rx_bytes: RX bytes
4893 * @last_tx_rate_code: Tx rate code of last frame
4894 * @last_tx_power: Tx power latest
4895 * @atf_tokens_allocated: atf tokens allocated
4896 * @atf_tokens_utilized: atf tokens utilized
4897 * @reserved: for future use
4898 */
4899typedef struct {
4900 wmi_host_mac_addr peer_macaddr;
4901 uint32_t inactive_time;
4902 uint32_t peer_chain_rssi;
4903 uint32_t rx_duration;
4904 uint32_t peer_tx_bytes;
4905 uint32_t peer_rx_bytes;
4906 uint32_t last_tx_rate_code;
4907 uint32_t last_tx_power;
4908 uint32_t atf_tokens_allocated;
4909 uint32_t atf_tokens_utilized;
4910 uint32_t reserved[4];
4911} wmi_host_peer_extd_stats;
4912
4913/**
4914 * struct wmi_host_pdev_ext_stats - peer ext stats structure
4915 * @rx_rssi_comb: RX rssi
4916 * @rx_rssi_chain0: RX rssi chain 0
4917 * @rx_rssi_chain1: RX rssi chain 1
4918 * @rx_rssi_chain2: RX rssi chain 2
4919 * @rx_rssi_chain3: RX rssi chain 3
4920 * @rx_mcs: RX MCS array
4921 * @tx_mcs: TX MCS array
4922 * @ack_rssi: Ack rssi
4923 */
4924typedef struct {
4925 uint32_t rx_rssi_comb;
4926 uint32_t rx_rssi_chain0;
4927 uint32_t rx_rssi_chain1;
4928 uint32_t rx_rssi_chain2;
4929 uint32_t rx_rssi_chain3;
4930 uint32_t rx_mcs[10];
4931 uint32_t tx_mcs[10];
4932 uint32_t ack_rssi;
4933} wmi_host_pdev_ext_stats;
4934
4935/**
4936 * struct wmi_host_dbg_tx_stats - Debug stats
4937 * @comp_queued: Num HTT cookies queued to dispatch list
4938 * @comp_delivered: Num HTT cookies dispatched
4939 * @msdu_enqued: Num MSDU queued to WAL
4940 * @mpdu_enqued: Num MPDU queue to WAL
4941 * @wmm_drop: Num MSDUs dropped by WMM limit
4942 * @local_enqued: Num Local frames queued
4943 * @local_freed: Num Local frames done
4944 * @hw_queued: Num queued to HW
4945 * @hw_reaped: Num PPDU reaped from HW
4946 * @underrun: Num underruns
4947 * @hw_paused: HW Paused.
4948 * @tx_abort: Num PPDUs cleaned up in TX abort
4949 * @mpdus_requed: Num MPDUs requed by SW
4950 * @tx_ko: excessive retries
4951 * @tx_xretry:
4952 * @data_rc: data hw rate code
4953 * @self_triggers: Scheduler self triggers
4954 * @sw_retry_failure: frames dropped due to excessive sw retries
4955 * @illgl_rate_phy_err: illegal rate phy errors
4956 * @pdev_cont_xretry: wal pdev continous xretry
4957 * @pdev_tx_timeout: wal pdev continous xretry
4958 * @pdev_resets: wal pdev resets
4959 * @stateless_tid_alloc_failure: frames dropped due to non-availability of
4960 * stateless TIDs
4961 * @phy_underrun: PhY/BB underrun
4962 * @txop_ovf: MPDU is more than txop limit
4963 * @seq_posted: Number of Sequences posted
4964 * @seq_failed_queueing: Number of Sequences failed queueing
4965 * @seq_completed: Number of Sequences completed
4966 * @seq_restarted: Number of Sequences restarted
4967 * @mu_seq_posted: Number of MU Sequences posted
4968 * @mpdus_sw_flush: Num MPDUs flushed by SW, HWPAUSED, SW TXABORT
4969 * (Reset,channel change)
4970 * @mpdus_hw_filter: Num MPDUs filtered by HW, all filter condition
4971 * (TTL expired)
4972 * @mpdus_truncated: Num MPDUs truncated by PDG (TXOP, TBTT,
4973 * PPDU_duration based on rate, dyn_bw)
4974 * @mpdus_ack_failed: Num MPDUs that was tried but didn't receive ACK or BA
4975 * @mpdus_expired: Num MPDUs that was dropped du to expiry.
4976 * @mc_dropr: Num mc drops
4977 */
4978typedef struct {
4979 int32_t comp_queued;
4980 int32_t comp_delivered;
4981 int32_t msdu_enqued;
4982 int32_t mpdu_enqued;
4983 int32_t wmm_drop;
4984 int32_t local_enqued;
4985 int32_t local_freed;
4986 int32_t hw_queued;
4987 int32_t hw_reaped;
4988 int32_t underrun;
4989 uint32_t hw_paused;
4990 int32_t tx_abort;
4991 int32_t mpdus_requed;
4992 uint32_t tx_ko;
4993 uint32_t tx_xretry;
4994 uint32_t data_rc;
4995 uint32_t self_triggers;
4996 uint32_t sw_retry_failure;
4997 uint32_t illgl_rate_phy_err;
4998 uint32_t pdev_cont_xretry;
4999 uint32_t pdev_tx_timeout;
5000 uint32_t pdev_resets;
5001 uint32_t stateless_tid_alloc_failure;
5002 uint32_t phy_underrun;
5003 uint32_t txop_ovf;
5004 uint32_t seq_posted;
5005 uint32_t seq_failed_queueing;
5006 uint32_t seq_completed;
5007 uint32_t seq_restarted;
5008 uint32_t mu_seq_posted;
5009 int32_t mpdus_sw_flush;
5010 int32_t mpdus_hw_filter;
5011 int32_t mpdus_truncated;
5012 int32_t mpdus_ack_failed;
5013 int32_t mpdus_expired;
5014 uint32_t mc_drop;
5015} wmi_host_dbg_tx_stats;
5016
5017/**
5018 * struct wmi_host_dbg_rx_stats - RX Debug stats
5019 * @mid_ppdu_route_change: Cnts any change in ring routing mid-ppdu
5020 * @status_rcvd: Total number of statuses processed
5021 * @r0_frags: Extra frags on rings 0
5022 * @r1_frags: Extra frags on rings 1
5023 * @r2_frags: Extra frags on rings 2
5024 * @r3_frags: Extra frags on rings 3
5025 * @htt_msdus: MSDUs delivered to HTT
5026 * @htt_mpdus: MPDUs delivered to HTT
5027 * @loc_msdus: MSDUs delivered to local stack
5028 * @loc_mpdus: MPDUS delivered to local stack
5029 * @oversize_amsdu: AMSDUs that have more MSDUs than the status ring size
5030 * @phy_errs: Number of PHY errors
5031 * @phy_err_drop: Number of PHY errors drops
5032 * @mpdu_errs: Number of mpdu errors - FCS, MIC, ENC etc.
5033 * @pdev_rx_timeout: Number of rx inactivity timeouts
5034 * @rx_ovfl_errs: Number of rx overflow errors.
5035 */
5036typedef struct {
5037 int32_t mid_ppdu_route_change;
5038 int32_t status_rcvd;
5039 int32_t r0_frags;
5040 int32_t r1_frags;
5041 int32_t r2_frags;
5042 int32_t r3_frags;
5043 int32_t htt_msdus;
5044 int32_t htt_mpdus;
5045 int32_t loc_msdus;
5046 int32_t loc_mpdus;
5047 int32_t oversize_amsdu;
5048 int32_t phy_errs;
5049 int32_t phy_err_drop;
5050 int32_t mpdu_errs;
5051 uint32_t pdev_rx_timeout;
5052 int32_t rx_ovfl_errs;
5053} wmi_host_dbg_rx_stats;
5054
5055/** struct wmi_host_dbg_mem_stats - memory stats
5056 * @iram_free_size: IRAM free size on target
5057 * @dram_free_size: DRAM free size on target
5058 * @sram_free_size: SRAM free size on target
5059 */
5060typedef struct {
5061 uint32_t iram_free_size;
5062 uint32_t dram_free_size;
5063 /* Only Non-TLV */
5064 uint32_t sram_free_size;
5065} wmi_host_dbg_mem_stats;
5066
5067typedef struct {
5068 /* Only TLV */
5069 int32_t dummy;/* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
5070} wmi_host_dbg_peer_stats;
5071
5072/**
5073 * struct wmi_host_dbg_stats - host debug stats
5074 * @tx: TX stats of type wmi_host_dbg_tx_stats
5075 * @rx: RX stats of type wmi_host_dbg_rx_stats
5076 * @mem: Memory stats of type wmi_host_dbg_mem_stats
5077 * @peer: peer stats of type wmi_host_dbg_peer_stats
5078 */
5079typedef struct {
5080 wmi_host_dbg_tx_stats tx;
5081 wmi_host_dbg_rx_stats rx;
5082 wmi_host_dbg_mem_stats mem;
5083 wmi_host_dbg_peer_stats peer;
5084} wmi_host_dbg_stats;
5085
5086/**
5087 * struct wmi_host_pdev_stats - PDEV stats
5088 * @chan_nf: Channel noise floor
5089 * @tx_frame_count: TX frame count
5090 * @rx_frame_count: RX frame count
5091 * @rx_clear_count: rx clear count
5092 * @cycle_count: cycle count
5093 * @phy_err_count: Phy error count
5094 * @chan_tx_pwr: Channel Tx Power
5095 * @pdev_stats: WAL dbg stats
5096 * @ackRcvBad:
5097 * @rtsBad:
5098 * @rtsGood:
5099 * @fcsBad:
5100 * @noBeacons:
5101 * @mib_int_count:
5102 */
5103typedef struct {
5104 int32_t chan_nf;
5105 uint32_t tx_frame_count;
5106 uint32_t rx_frame_count;
5107 uint32_t rx_clear_count;
5108 uint32_t cycle_count;
5109 uint32_t phy_err_count;
5110 uint32_t chan_tx_pwr;
5111 wmi_host_dbg_stats pdev_stats;
5112 uint32_t ackRcvBad;
5113 uint32_t rtsBad;
5114 uint32_t rtsGood;
5115 uint32_t fcsBad;
5116 uint32_t noBeacons;
5117 uint32_t mib_int_count;
5118} wmi_host_pdev_stats;
5119
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07005120
5121/**
5122 * struct wmi_unit_test_event - Structure corresponding to WMI Unit test event
5123 * @vdev_id: VDEV ID
5124 * @module_id: MODULE ID
5125 * @diag_token: Diag Token (the number that was generated in the unit-test cmd)
5126 * @flag: flag has 2 bits 0x1 indicates status, and 0x2 indicates done-bit
5127 * @payload_len: payload_len (blindly copied from payload_len field in WMI)
5128 * @buffer_len: actual number of data bytes in the variable data size TLV
5129 * buffer_len is likely to be the nearest multiple of 4 (from
5130 * payload_len). both buffer_len and payload_len need to be
5131 * passed to wifitool so that the driver can be agnostic
5132 * regarding these differences.
5133 * @buffer: data buffer
5134 */
5135typedef struct {
5136 uint32_t vdev_id;
5137 uint32_t module_id;
5138 uint32_t diag_token;
5139 uint32_t flag;
5140 uint32_t payload_len;
5141 uint32_t buffer_len;
5142 uint8_t buffer[1];
5143} wmi_unit_test_event;
5144
5145
Govind Singh89727882016-04-15 13:58:27 +05305146/**
5147 * struct wmi_host_snr_info - WMI host Signal to noise ration info
5148 * @bcn_snr: beacon SNR
5149 * @dat_snr: Data frames SNR
5150 */
5151typedef struct {
5152 int32_t bcn_snr;
5153 int32_t dat_snr;
5154} wmi_host_snr_info;
5155
5156#define WMI_HOST_MAX_TX_RATE_VALUES 10 /*Max Tx Rates */
5157#define WMI_HOST_MAX_RSSI_VALUES 10 /*Max Rssi values */
5158
5159/* The WLAN_MAX_AC macro cannot be changed without breaking
5160 * * WMI compatibility.
5161 * * The maximum value of access category
5162 * */
5163#define WMI_HOST_WLAN_MAX_AC 4
5164
Naveen Rawat9734fa92018-04-12 08:17:55 -07005165/* The WMI_HOST_MAX_CHAINS macro cannot be changed without breaking WMI
5166 * compatibility.
5167 * The maximum value of number of chains
5168 */
5169#define WMI_HOST_MAX_CHAINS 8
5170
Govind Singh89727882016-04-15 13:58:27 +05305171/**
5172 * struct wmi_host_vdev_stats - vdev stats structure
5173 * @vdev_id: unique id identifying the VDEV, generated by the caller
5174 * Rest all Only TLV
5175 * @vdev_snr: wmi_host_snr_info
5176 * @tx_frm_cnt: Total number of packets(per AC) that were successfully
5177 * transmitted (with and without retries,
5178 * including multi-cast, broadcast)
5179 * @rx_frm_cnt: Total number of packets that were successfully received
5180 * (after appropriate filter rules including multi-cast, broadcast)
5181 * @multiple_retry_cnt: The number of MSDU packets and MMPDU frames per AC
5182 * that the 802.11 station successfully transmitted after
5183 * more than one retransmission attempt
5184 * @fail_cnt: Total number packets(per AC) failed to transmit
5185 * @rts_fail_cnt: Total number of RTS/CTS sequence failures for transmission
5186 * of a packet
5187 * @rts_succ_cnt: Total number of RTS/CTS sequence success for transmission
5188 * of a packet
5189 * @rx_err_cnt: The receive error count. HAL will provide the
5190 * RxP FCS error global
5191 * @rx_discard_cnt: The sum of the receive error count and
5192 * dropped-receive-buffer error count (FCS error)
5193 * @ack_fail_cnt: Total number packets failed transmit because of no
5194 * ACK from the remote entity
5195 * @tx_rate_history:History of last ten transmit rate, in units of 500 kbit/sec
5196 * @bcn_rssi_history: History of last ten Beacon rssi of the connected Bss
5197 */
5198typedef struct {
5199 uint32_t vdev_id;
5200 /* Rest all Only TLV */
5201 wmi_host_snr_info vdev_snr;
5202 uint32_t tx_frm_cnt[WMI_HOST_WLAN_MAX_AC];
5203 uint32_t rx_frm_cnt;
5204 uint32_t multiple_retry_cnt[WMI_HOST_WLAN_MAX_AC];
5205 uint32_t fail_cnt[WMI_HOST_WLAN_MAX_AC];
5206 uint32_t rts_fail_cnt;
5207 uint32_t rts_succ_cnt;
5208 uint32_t rx_err_cnt;
5209 uint32_t rx_discard_cnt;
5210 uint32_t ack_fail_cnt;
5211 uint32_t tx_rate_history[WMI_HOST_MAX_TX_RATE_VALUES];
5212 uint32_t bcn_rssi_history[WMI_HOST_MAX_RSSI_VALUES];
5213} wmi_host_vdev_stats;
5214
5215/**
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05305216 * struct wmi_host_vdev_stats - vdev stats structure
5217 * @vdev_id: unique id identifying the VDEV, generated by the caller
5218 * @tx_bcn_succ_cnt: Total number of beacon frame transmitted successfully
5219 * @tx_bcn_outage_cnt: Total number of failed beacons
5220 */
5221typedef struct {
5222 uint32_t vdev_id;
5223 uint32_t tx_bcn_succ_cnt;
5224 uint32_t tx_bcn_outage_cnt;
5225} wmi_host_bcn_stats;
5226
5227/**
Govind Singh89727882016-04-15 13:58:27 +05305228 * struct wmi_host_vdev_extd_stats - VDEV extended stats
5229 * @vdev_id: unique id identifying the VDEV, generated by the caller
5230 * @ppdu_aggr_cnt: No of Aggrs Queued to HW
5231 * @ppdu_noack: No of PPDU's not Acked includes both aggr and nonaggr's
5232 * @mpdu_queued: No of MPDU/Subframes's queued to HW in Aggregates
5233 * @ppdu_nonaggr_cnt: No of NonAggr/MPDU/Subframes's queued to HW
5234 * in Legacy NonAggregates
5235 * @mpdu_sw_requed: No of MPDU/Subframes's SW requeued includes
5236 * both Aggr and NonAggr
5237 * @mpdu_suc_retry: No of MPDU/Subframes's transmitted Successfully
5238 * after Single/mul HW retry
5239 * @mpdu_suc_multitry: No of MPDU/Subframes's transmitted Success
5240 * after Multiple HW retry
5241 * @mpdu_fail_retry: No of MPDU/Subframes's failed transmission
5242 * after Multiple HW retry
5243 * @reserved[13]: for future extensions set to 0x0
5244 */
5245typedef struct {
5246 uint32_t vdev_id;
5247 uint32_t ppdu_aggr_cnt;
5248 uint32_t ppdu_noack;
5249 uint32_t mpdu_queued;
5250 uint32_t ppdu_nonaggr_cnt;
5251 uint32_t mpdu_sw_requed;
5252 uint32_t mpdu_suc_retry;
5253 uint32_t mpdu_suc_multitry;
5254 uint32_t mpdu_fail_retry;
5255 uint32_t reserved[13];
5256} wmi_host_vdev_extd_stats;
5257
5258/**
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +05305259 * struct wmi_host_vdev_nac_rssi_event - VDEV nac rssi stats
5260 * @vdev_id: unique id identifying the VDEV, generated by the caller
5261 * @last_rssi: rssi
5262 * @avg_rssi: averge rssi
5263 * @rssi_seq_num: rssi sequence number
5264 */
5265struct wmi_host_vdev_nac_rssi_event {
5266 uint32_t vdev_id;
5267 uint32_t last_rssi;
5268 uint32_t avg_rssi;
5269 uint32_t rssi_seq_num;
5270};
5271
Naveen Rawat9734fa92018-04-12 08:17:55 -07005272
5273/**
5274 * struct wmi_host_per_chain_rssi_stats - VDEV nac rssi stats
5275 * @vdev_id: unique id identifying the VDEV, generated by the caller
5276 * @rssi_avg_beacon: per chain avg rssi for beacon
5277 * @rssi_avg_data: per chain avg rssi for data
5278 * @peer_macaddr: peer macaddr
5279 */
5280struct wmi_host_per_chain_rssi_stats {
5281 uint32_t vdev_id;
5282 int32_t rssi_avg_beacon[WMI_HOST_MAX_CHAINS];
5283 int32_t rssi_avg_data[WMI_HOST_MAX_CHAINS];
5284 wmi_host_mac_addr peer_macaddr;
5285};
5286
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +05305287/**
Govind Singh89727882016-04-15 13:58:27 +05305288 * struct wmi_host_peer_stats - peer stats
5289 * @peer_macaddr: peer MAC address
5290 * @peer_rssi: rssi
5291 * @peer_rssi_seq_num: rssi sequence number
5292 * @peer_tx_rate: last tx data rate used for peer
5293 * @peer_rx_rate: last rx data rate used for peer
5294 * @currentper: Current PER
5295 * @retries: Retries happend during transmission
5296 * @txratecount: Maximum Aggregation Size
5297 * @max4msframelen: Max4msframelen of tx rates used
5298 * @totalsubframes: Total no of subframes
5299 * @txbytes: No of bytes transmitted to the client
5300 * @nobuffs[4]: Packet Loss due to buffer overflows
5301 * @excretries[4]: Packet Loss due to excessive retries
5302 * @peer_rssi_changed: how many times peer's RSSI changed by a
5303 * non-negligible amount
5304 */
5305typedef struct {
5306 wmi_host_mac_addr peer_macaddr;
5307 uint32_t peer_rssi;
5308 uint32_t peer_rssi_seq_num;
5309 uint32_t peer_tx_rate;
5310 uint32_t peer_rx_rate;
5311 uint32_t currentper;
5312 uint32_t retries;
5313 uint32_t txratecount;
5314 uint32_t max4msframelen;
5315 uint32_t totalsubframes;
5316 uint32_t txbytes;
5317 uint32_t nobuffs[4];
5318 uint32_t excretries[4];
5319 uint32_t peer_rssi_changed;
5320} wmi_host_peer_stats;
5321
5322typedef struct {
5323 uint32_t dummy;
5324} wmi_host_bcnflt_stats;
5325
5326/**
5327 * struct wmi_host_chan_stats - WMI chan stats
5328 * @chan_mhz: Primary channel freq of the channel for which stats are sent
5329 * @sampling_period_us: Time spent on the channel
5330 * @rx_clear_count: Aggregate duration over a sampling period for
5331 * which channel activity was observed
5332 * @tx_duration_us: Accumalation of the TX PPDU duration over a sampling period
5333 * @rx_duration_us: Accumalation of the RX PPDU duration over a sampling period
5334 */
5335typedef struct {
5336 uint32_t chan_mhz;
5337 uint32_t sampling_period_us;
5338 uint32_t rx_clear_count;
5339 uint32_t tx_duration_us;
5340 uint32_t rx_duration_us;
5341} wmi_host_chan_stats;
5342
5343#define WMI_EVENT_ID_INVALID 0
5344/**
5345 * Host based ENUM IDs for events to abstract target enums for event_id
5346 */
5347typedef enum {
5348 wmi_service_ready_event_id = 0,
5349 wmi_ready_event_id,
5350 wmi_dbg_msg_event_id,
5351 wmi_scan_event_id,
5352 wmi_echo_event_id,
5353 wmi_update_stats_event_id,
5354 wmi_inst_rssi_stats_event_id,
5355 wmi_vdev_start_resp_event_id,
5356 wmi_vdev_standby_req_event_id,
5357 wmi_vdev_resume_req_event_id,
5358 wmi_vdev_stopped_event_id,
5359 wmi_peer_sta_kickout_event_id,
5360 wmi_host_swba_event_id,
5361 wmi_tbttoffset_update_event_id,
5362 wmi_mgmt_rx_event_id,
5363 wmi_chan_info_event_id,
5364 wmi_phyerr_event_id,
5365 wmi_roam_event_id,
5366 wmi_profile_match,
5367 wmi_debug_print_event_id,
5368 wmi_pdev_qvit_event_id,
5369 wmi_wlan_profile_data_event_id,
5370 wmi_rtt_meas_report_event_id,
5371 wmi_tsf_meas_report_event_id,
5372 wmi_rtt_error_report_event_id,
5373 wmi_rtt_keepalive_event_id,
5374 wmi_oem_cap_event_id,
5375 wmi_oem_meas_report_event_id,
5376 wmi_oem_report_event_id,
5377 wmi_nan_event_id,
5378 wmi_wow_wakeup_host_event_id,
5379 wmi_gtk_offload_status_event_id,
5380 wmi_gtk_rekey_fail_event_id,
5381 wmi_dcs_interference_event_id,
5382 wmi_pdev_tpc_config_event_id,
5383 wmi_csa_handling_event_id,
5384 wmi_gpio_input_event_id,
5385 wmi_peer_ratecode_list_event_id,
5386 wmi_generic_buffer_event_id,
5387 wmi_mcast_buf_release_event_id,
5388 wmi_mcast_list_ageout_event_id,
5389 wmi_vdev_get_keepalive_event_id,
5390 wmi_wds_peer_event_id,
5391 wmi_peer_sta_ps_statechg_event_id,
5392 wmi_pdev_fips_event_id,
5393 wmi_tt_stats_event_id,
5394 wmi_pdev_channel_hopping_event_id,
5395 wmi_pdev_ani_cck_level_event_id,
5396 wmi_pdev_ani_ofdm_level_event_id,
5397 wmi_pdev_reserve_ast_entry_event_id,
5398 wmi_pdev_nfcal_power_event_id,
5399 wmi_pdev_tpc_event_id,
5400 wmi_pdev_get_ast_info_event_id,
5401 wmi_pdev_temperature_event_id,
5402 wmi_pdev_nfcal_power_all_channels_event_id,
5403 wmi_pdev_bss_chan_info_event_id,
5404 wmi_mu_report_event_id,
5405 wmi_pdev_utf_event_id,
5406 wmi_pdev_dump_event_id,
5407 wmi_tx_pause_event_id,
5408 wmi_dfs_radar_event_id,
5409 wmi_pdev_l1ss_track_event_id,
5410 wmi_service_ready_ext_event_id,
5411 wmi_vdev_install_key_complete_event_id,
5412 wmi_vdev_mcc_bcn_intvl_change_req_event_id,
5413 wmi_vdev_tsf_report_event_id,
5414 wmi_peer_info_event_id,
5415 wmi_peer_tx_fail_cnt_thr_event_id,
5416 wmi_peer_estimated_linkspeed_event_id,
5417 wmi_peer_state_event_id,
5418 wmi_offload_bcn_tx_status_event_id,
5419 wmi_offload_prob_resp_tx_status_event_id,
5420 wmi_mgmt_tx_completion_event_id,
5421 wmi_tx_delba_complete_event_id,
5422 wmi_tx_addba_complete_event_id,
5423 wmi_ba_rsp_ssn_event_id,
5424 wmi_aggr_state_trig_event_id,
5425 wmi_roam_synch_event_id,
Padma, Santhosh Kumare0784da2017-10-06 15:42:00 +05305426 wmi_roam_synch_frame_event_id,
Govind Singh89727882016-04-15 13:58:27 +05305427 wmi_p2p_disc_event_id,
5428 wmi_p2p_noa_event_id,
Wu Gaoaf2196b2017-03-15 19:12:20 +08005429 wmi_p2p_lo_stop_event_id,
Govind Singh89727882016-04-15 13:58:27 +05305430 wmi_pdev_resume_event_id,
Will Huang5e78f762017-12-19 10:10:05 +08005431 wmi_d0_wow_disable_ack_event_id,
Govind Singh89727882016-04-15 13:58:27 +05305432 wmi_wow_initial_wakeup_event_id,
5433 wmi_stats_ext_event_id,
5434 wmi_iface_link_stats_event_id,
5435 wmi_peer_link_stats_event_id,
5436 wmi_radio_link_stats_link,
5437 wmi_update_fw_mem_dump_event_id,
5438 wmi_diag_event_id_log_supported_event_id,
5439 wmi_nlo_match_event_id,
5440 wmi_nlo_scan_complete_event_id,
5441 wmi_apfind_event_id,
5442 wmi_passpoint_match_event_id,
5443 wmi_chatter_pc_query_event_id,
5444 wmi_pdev_ftm_intg_event_id,
5445 wmi_wlan_freq_avoid_event_id,
5446 wmi_thermal_mgmt_event_id,
5447 wmi_diag_container_event_id,
5448 wmi_host_auto_shutdown_event_id,
5449 wmi_update_whal_mib_stats_event_id,
5450 wmi_update_vdev_rate_stats_event_id,
5451 wmi_diag_event_id,
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07005452 wmi_unit_test_event_id,
Govind Singh89727882016-04-15 13:58:27 +05305453 wmi_ocb_set_sched_event_id,
5454 wmi_dbg_mesg_flush_complete_event_id,
5455 wmi_rssi_breach_event_id,
5456 wmi_uploadh_event_id,
5457 wmi_captureh_event_id,
5458 wmi_rfkill_state_change_event_id,
5459 wmi_tdls_peer_event_id,
5460 wmi_batch_scan_enabled_event_id,
5461 wmi_batch_scan_result_event_id,
5462 wmi_lpi_result_event_id,
5463 wmi_lpi_status_event_id,
5464 wmi_lpi_handoff_event_id,
5465 wmi_extscan_start_stop_event_id,
5466 wmi_extscan_operation_event_id,
5467 wmi_extscan_table_usage_event_id,
5468 wmi_extscan_cached_results_event_id,
5469 wmi_extscan_wlan_change_results_event_id,
5470 wmi_extscan_hotlist_match_event_id,
5471 wmi_extscan_capabilities_event_id,
5472 wmi_extscan_hotlist_ssid_match_event_id,
5473 wmi_mdns_stats_event_id,
5474 wmi_sap_ofl_add_sta_event_id,
5475 wmi_sap_ofl_del_sta_event_id,
5476 wmi_ocb_set_config_resp_event_id,
5477 wmi_ocb_get_tsf_timer_resp_event_id,
5478 wmi_dcc_get_stats_resp_event_id,
5479 wmi_dcc_update_ndl_resp_event_id,
5480 wmi_dcc_stats_event_id,
5481 wmi_soc_set_hw_mode_resp_event_id,
5482 wmi_soc_hw_mode_transition_event_id,
5483 wmi_soc_set_dual_mac_config_resp_event_id,
5484 wmi_tx_data_traffic_ctrl_event_id,
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05305485 wmi_peer_tx_mu_txmit_count_event_id,
5486 wmi_peer_gid_userpos_list_event_id,
5487 wmi_pdev_check_cal_version_event_id,
5488 wmi_atf_peer_stats_event_id,
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05305489 wmi_peer_delete_response_event_id,
Sathish Kumar907a7462017-02-27 10:35:40 +05305490 wmi_pdev_csa_switch_count_status_event_id,
Baila, Shashikala Prabhu6bad1972017-03-17 10:21:14 +05305491 wmi_reg_chan_list_cc_event_id,
Kiran Venkatappa25c47022017-03-19 22:58:09 +05305492 wmi_offchan_data_tx_completion_event,
Arif Hussaine542fe12017-04-09 01:03:19 -07005493 wmi_dfs_cac_complete_id,
5494 wmi_dfs_radar_detection_event_id,
Sathish Kumar744fbf72017-05-17 18:05:15 +05305495 wmi_ext_tbttoffset_update_event_id,
Amar Singhal1efb08e2017-05-19 16:39:34 -07005496 wmi_11d_new_country_event_id,
Anurag Chouhanc1705422017-09-11 14:56:30 +05305497 wmi_get_arp_stats_req_id,
Kiran Venkatappa34bea522017-09-01 17:02:34 +05305498 wmi_service_available_event_id,
Rajeev Kumar Sirasanagandlacddf6fe2016-11-22 21:28:54 +05305499 wmi_update_rcpi_event_id,
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05305500 wmi_pdev_wds_entry_list_event_id,
Mukul Sharma6faf5a82017-11-03 19:26:54 +05305501 wmi_ndp_initiator_rsp_event_id,
5502 wmi_ndp_indication_event_id,
5503 wmi_ndp_confirm_event_id,
5504 wmi_ndp_responder_rsp_event_id,
5505 wmi_ndp_end_indication_event_id,
5506 wmi_ndp_end_rsp_event_id,
5507 wmi_oem_response_event_id,
5508 wmi_peer_stats_info_event_id,
5509 wmi_pdev_chip_power_stats_event_id,
5510 wmi_ap_ps_egap_info_event_id,
5511 wmi_peer_assoc_conf_event_id,
5512 wmi_vdev_delete_resp_event_id,
5513 wmi_bpf_capability_info_event_id,
5514 wmi_vdev_encrypt_decrypt_data_rsp_event_id,
5515 wmi_report_rx_aggr_failure_event_id,
5516 wmi_pdev_chip_pwr_save_failure_detect_event_id,
5517 wmi_peer_antdiv_info_event_id,
5518 wmi_pdev_set_hw_mode_rsp_event_id,
5519 wmi_pdev_hw_mode_transition_event_id,
5520 wmi_pdev_set_mac_config_resp_event_id,
5521 wmi_coex_bt_activity_event_id,
5522 wmi_mgmt_tx_bundle_completion_event_id,
5523 wmi_radio_tx_power_level_stats_event_id,
5524 wmi_report_stats_event_id,
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05305525 wmi_dma_buf_release_event_id,
Arif Hussain2cfde1d2017-12-27 16:23:45 -08005526 wmi_sap_obss_detection_report_event_id,
Arif Hussainb4da3472018-01-22 01:19:36 -08005527 wmi_obss_color_collision_report_event_id,
Subrat Mishra7c9427e2017-09-27 14:41:20 +05305528 wmi_host_swfda_event_id,
Jeff Johnsonefb43392017-12-14 15:50:16 -08005529 wmi_sar_get_limits_event_id,
lifengbe07fd92018-04-03 19:01:45 +08005530 wmi_pdev_div_rssi_antid_event_id,
Govind Singh89727882016-04-15 13:58:27 +05305531
5532 wmi_events_max,
5533} wmi_conv_event_id;
5534
5535#define WMI_UNAVAILABLE_PARAM 0
5536/**
5537 * Host based ENUM IDs for PDEV params to abstract target enums
5538 */
5539typedef enum {
5540 wmi_pdev_param_tx_chain_mask = 0,
5541 wmi_pdev_param_rx_chain_mask,
5542 wmi_pdev_param_txpower_limit2g,
5543 wmi_pdev_param_txpower_limit5g,
5544 wmi_pdev_param_txpower_scale,
5545 wmi_pdev_param_beacon_gen_mode,
5546 wmi_pdev_param_beacon_tx_mode,
5547 wmi_pdev_param_resmgr_offchan_mode,
5548 wmi_pdev_param_protection_mode,
5549 wmi_pdev_param_dynamic_bw,
5550 wmi_pdev_param_non_agg_sw_retry_th,
5551 wmi_pdev_param_agg_sw_retry_th,
5552 wmi_pdev_param_sta_kickout_th,
5553 wmi_pdev_param_ac_aggrsize_scaling,
5554 wmi_pdev_param_ltr_enable,
5555 wmi_pdev_param_ltr_ac_latency_be,
5556 wmi_pdev_param_ltr_ac_latency_bk,
5557 wmi_pdev_param_ltr_ac_latency_vi,
5558 wmi_pdev_param_ltr_ac_latency_vo,
5559 wmi_pdev_param_ltr_ac_latency_timeout,
5560 wmi_pdev_param_ltr_sleep_override,
5561 wmi_pdev_param_ltr_rx_override,
5562 wmi_pdev_param_ltr_tx_activity_timeout,
5563 wmi_pdev_param_l1ss_enable,
5564 wmi_pdev_param_dsleep_enable,
5565 wmi_pdev_param_pcielp_txbuf_flush,
5566 wmi_pdev_param_pcielp_txbuf_watermark,
5567 wmi_pdev_param_pcielp_txbuf_tmo_en,
5568 wmi_pdev_param_pcielp_txbuf_tmo_value,
5569 wmi_pdev_param_pdev_stats_update_period,
5570 wmi_pdev_param_vdev_stats_update_period,
5571 wmi_pdev_param_peer_stats_update_period,
5572 wmi_pdev_param_bcnflt_stats_update_period,
5573 wmi_pdev_param_pmf_qos,
5574 wmi_pdev_param_arp_ac_override,
5575 wmi_pdev_param_dcs,
5576 wmi_pdev_param_ani_enable,
5577 wmi_pdev_param_ani_poll_period,
5578 wmi_pdev_param_ani_listen_period,
5579 wmi_pdev_param_ani_ofdm_level,
5580 wmi_pdev_param_ani_cck_level,
5581 wmi_pdev_param_dyntxchain,
5582 wmi_pdev_param_proxy_sta,
5583 wmi_pdev_param_idle_ps_config,
5584 wmi_pdev_param_power_gating_sleep,
5585 wmi_pdev_param_aggr_burst,
5586 wmi_pdev_param_rx_decap_mode,
5587 wmi_pdev_param_fast_channel_reset,
5588 wmi_pdev_param_burst_dur,
5589 wmi_pdev_param_burst_enable,
5590 wmi_pdev_param_smart_antenna_default_antenna,
5591 wmi_pdev_param_igmpmld_override,
5592 wmi_pdev_param_igmpmld_tid,
5593 wmi_pdev_param_antenna_gain,
5594 wmi_pdev_param_rx_filter,
5595 wmi_pdev_set_mcast_to_ucast_tid,
5596 wmi_pdev_param_proxy_sta_mode,
5597 wmi_pdev_param_set_mcast2ucast_mode,
5598 wmi_pdev_param_set_mcast2ucast_buffer,
5599 wmi_pdev_param_remove_mcast2ucast_buffer,
5600 wmi_pdev_peer_sta_ps_statechg_enable,
5601 wmi_pdev_param_igmpmld_ac_override,
5602 wmi_pdev_param_block_interbss,
5603 wmi_pdev_param_set_disable_reset_cmdid,
5604 wmi_pdev_param_set_msdu_ttl_cmdid,
5605 wmi_pdev_param_set_ppdu_duration_cmdid,
5606 wmi_pdev_param_txbf_sound_period_cmdid,
5607 wmi_pdev_param_set_promisc_mode_cmdid,
5608 wmi_pdev_param_set_burst_mode_cmdid,
5609 wmi_pdev_param_en_stats,
5610 wmi_pdev_param_mu_group_policy,
5611 wmi_pdev_param_noise_detection,
5612 wmi_pdev_param_noise_threshold,
5613 wmi_pdev_param_dpd_enable,
5614 wmi_pdev_param_set_mcast_bcast_echo,
5615 wmi_pdev_param_atf_strict_sch,
5616 wmi_pdev_param_atf_sched_duration,
5617 wmi_pdev_param_ant_plzn,
5618 wmi_pdev_param_mgmt_retry_limit,
5619 wmi_pdev_param_sensitivity_level,
5620 wmi_pdev_param_signed_txpower_2g,
5621 wmi_pdev_param_signed_txpower_5g,
5622 wmi_pdev_param_enable_per_tid_amsdu,
5623 wmi_pdev_param_enable_per_tid_ampdu,
5624 wmi_pdev_param_cca_threshold,
5625 wmi_pdev_param_rts_fixed_rate,
5626 wmi_pdev_param_cal_period,
5627 wmi_pdev_param_pdev_reset,
5628 wmi_pdev_param_wapi_mbssid_offset,
5629 wmi_pdev_param_arp_srcaddr,
5630 wmi_pdev_param_arp_dstaddr,
5631 wmi_pdev_param_txpower_decr_db,
5632 wmi_pdev_param_rx_batchmode,
5633 wmi_pdev_param_packet_aggr_delay,
5634 wmi_pdev_param_atf_obss_noise_sch,
5635 wmi_pdev_param_atf_obss_noise_scaling_factor,
5636 wmi_pdev_param_cust_txpower_scale,
5637 wmi_pdev_param_atf_dynamic_enable,
5638 wmi_pdev_param_atf_ssid_group_policy,
5639 wmi_pdev_param_rfkill_enable,
5640 wmi_pdev_param_hw_rfkill_config,
5641 wmi_pdev_param_low_power_rf_enable,
5642 wmi_pdev_param_l1ss_track,
5643 wmi_pdev_param_hyst_en,
5644 wmi_pdev_param_power_collapse_enable,
5645 wmi_pdev_param_led_sys_state,
5646 wmi_pdev_param_led_enable,
5647 wmi_pdev_param_audio_over_wlan_latency,
5648 wmi_pdev_param_audio_over_wlan_enable,
5649 wmi_pdev_param_whal_mib_stats_update_enable,
5650 wmi_pdev_param_vdev_rate_stats_update_period,
5651 wmi_pdev_param_cts_cbw,
5652 wmi_pdev_param_wnts_config,
5653 wmi_pdev_param_adaptive_early_rx_enable,
5654 wmi_pdev_param_adaptive_early_rx_min_sleep_slop,
5655 wmi_pdev_param_adaptive_early_rx_inc_dec_step,
5656 wmi_pdev_param_early_rx_fix_sleep_slop,
5657 wmi_pdev_param_bmiss_based_adaptive_bto_enable,
5658 wmi_pdev_param_bmiss_bto_min_bcn_timeout,
5659 wmi_pdev_param_bmiss_bto_inc_dec_step,
5660 wmi_pdev_param_bto_fix_bcn_timeout,
5661 wmi_pdev_param_ce_based_adaptive_bto_enable,
5662 wmi_pdev_param_ce_bto_combo_ce_value,
5663 wmi_pdev_param_tx_chain_mask_2g,
5664 wmi_pdev_param_rx_chain_mask_2g,
5665 wmi_pdev_param_tx_chain_mask_5g,
5666 wmi_pdev_param_rx_chain_mask_5g,
5667 wmi_pdev_param_tx_chain_mask_cck,
5668 wmi_pdev_param_tx_chain_mask_1ss,
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05305669 wmi_pdev_param_enable_btcoex,
5670 wmi_pdev_param_atf_peer_stats,
Sathish Kumar612d0c22017-01-19 14:57:37 +05305671 wmi_pdev_param_btcoex_cfg,
Venkateswara Swamy Bandarud8ac3e72017-02-24 17:09:46 +05305672 wmi_pdev_param_mesh_mcast_enable,
Sathish Kumar262d54a2017-10-04 09:58:00 +05305673 wmi_pdev_param_tx_ack_timeout,
Anirban Sirkhelld40d18f2017-09-26 18:43:06 +05305674 wmi_pdev_param_soft_tx_chain_mask,
Shiva Krishna Pittalaf302c5c2018-02-16 21:28:40 +05305675 wmi_pdev_param_cck_tx_enable,
Govind Singh89727882016-04-15 13:58:27 +05305676
5677 wmi_pdev_param_max,
5678} wmi_conv_pdev_params_id;
5679
5680
5681/**
5682 * Host based ENUM IDs for VDEV params to abstract target enums
5683 */
5684typedef enum {
5685 wmi_vdev_param_rts_threshold = 0,
5686 wmi_vdev_param_fragmentation_threshold,
5687 wmi_vdev_param_beacon_interval,
5688 wmi_vdev_param_listen_interval,
5689 wmi_vdev_param_multicast_rate,
5690 wmi_vdev_param_mgmt_tx_rate,
5691 wmi_vdev_param_slot_time,
5692 wmi_vdev_param_preamble,
5693 wmi_vdev_param_swba_time,
5694 wmi_vdev_stats_update_period,
5695 wmi_vdev_pwrsave_ageout_time,
5696 wmi_vdev_host_swba_interval,
5697 wmi_vdev_param_dtim_period,
5698 wmi_vdev_oc_scheduler_air_time_limit,
5699 wmi_vdev_param_wds,
5700 wmi_vdev_param_atim_window,
5701 wmi_vdev_param_bmiss_count_max,
5702 wmi_vdev_param_bmiss_first_bcnt,
5703 wmi_vdev_param_bmiss_final_bcnt,
5704 wmi_vdev_param_feature_wmm,
5705 wmi_vdev_param_chwidth,
5706 wmi_vdev_param_chextoffset,
5707 wmi_vdev_param_disable_htprotection,
5708 wmi_vdev_param_sta_quickkickout,
5709 wmi_vdev_param_mgmt_rate,
5710 wmi_vdev_param_protection_mode,
5711 wmi_vdev_param_fixed_rate,
5712 wmi_vdev_param_sgi,
5713 wmi_vdev_param_ldpc,
5714 wmi_vdev_param_tx_stbc,
5715 wmi_vdev_param_rx_stbc,
5716 wmi_vdev_param_intra_bss_fwd,
5717 wmi_vdev_param_def_keyid,
5718 wmi_vdev_param_nss,
5719 wmi_vdev_param_bcast_data_rate,
5720 wmi_vdev_param_mcast_data_rate,
5721 wmi_vdev_param_mcast_indicate,
5722 wmi_vdev_param_dhcp_indicate,
5723 wmi_vdev_param_unknown_dest_indicate,
5724 wmi_vdev_param_ap_keepalive_min_idle_inactive_time_secs,
5725 wmi_vdev_param_ap_keepalive_max_idle_inactive_time_secs,
5726 wmi_vdev_param_ap_keepalive_max_unresponsive_time_secs,
5727 wmi_vdev_param_ap_enable_nawds,
5728 wmi_vdev_param_mcast2ucast_set,
5729 wmi_vdev_param_enable_rtscts,
5730 wmi_vdev_param_rc_num_retries,
5731 wmi_vdev_param_txbf,
5732 wmi_vdev_param_packet_powersave,
5733 wmi_vdev_param_drop_unencry,
5734 wmi_vdev_param_tx_encap_type,
5735 wmi_vdev_param_ap_detect_out_of_sync_sleeping_sta_time_secs,
5736 wmi_vdev_param_cabq_maxdur,
5737 wmi_vdev_param_mfptest_set,
5738 wmi_vdev_param_rts_fixed_rate,
5739 wmi_vdev_param_vht_sgimask,
5740 wmi_vdev_param_vht80_ratemask,
5741 wmi_vdev_param_early_rx_adjust_enable,
5742 wmi_vdev_param_early_rx_tgt_bmiss_num,
5743 wmi_vdev_param_early_rx_bmiss_sample_cycle,
5744 wmi_vdev_param_early_rx_slop_step,
5745 wmi_vdev_param_early_rx_init_slop,
5746 wmi_vdev_param_early_rx_adjust_pause,
5747 wmi_vdev_param_proxy_sta,
5748 wmi_vdev_param_meru_vc,
5749 wmi_vdev_param_rx_decap_type,
5750 wmi_vdev_param_bw_nss_ratemask,
5751 wmi_vdev_param_sensor_ap,
5752 wmi_vdev_param_beacon_rate,
5753 wmi_vdev_param_dtim_enable_cts,
5754 wmi_vdev_param_sta_kickout,
5755 wmi_vdev_param_tx_pwrlimit,
5756 wmi_vdev_param_snr_num_for_cal,
5757 wmi_vdev_param_roam_fw_offload,
5758 wmi_vdev_param_enable_rmc,
5759 wmi_vdev_param_ibss_max_bcn_lost_ms,
5760 wmi_vdev_param_max_rate,
5761 wmi_vdev_param_early_rx_drift_sample,
5762 wmi_vdev_param_set_ibss_tx_fail_cnt_thr,
5763 wmi_vdev_param_ebt_resync_timeout,
5764 wmi_vdev_param_aggr_trig_event_enable,
5765 wmi_vdev_param_is_ibss_power_save_allowed,
5766 wmi_vdev_param_is_power_collapse_allowed,
5767 wmi_vdev_param_is_awake_on_txrx_enabled,
5768 wmi_vdev_param_inactivity_cnt,
5769 wmi_vdev_param_txsp_end_inactivity_time_ms,
5770 wmi_vdev_param_dtim_policy,
5771 wmi_vdev_param_ibss_ps_warmup_time_secs,
5772 wmi_vdev_param_ibss_ps_1rx_chain_in_atim_window_enable,
5773 wmi_vdev_param_rx_leak_window,
5774 wmi_vdev_param_stats_avg_factor,
5775 wmi_vdev_param_disconnect_th,
5776 wmi_vdev_param_rtscts_rate,
5777 wmi_vdev_param_mcc_rtscts_protection_enable,
5778 wmi_vdev_param_mcc_broadcast_probe_enable,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05305779 wmi_vdev_param_capabilities,
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05305780 wmi_vdev_param_mgmt_tx_power,
5781 wmi_vdev_param_atf_ssid_sched_policy,
5782 wmi_vdev_param_disable_dyn_bw_rts,
Nandha Kishore Easwaranb3da4222017-02-01 10:59:00 +05305783 wmi_vdev_param_ampdu_subframe_size_per_ac,
Kris Muthusamye66c6bf2017-02-20 20:21:04 -08005784 wmi_vdev_param_he_dcm_enable,
5785 wmi_vdev_param_he_bss_color,
5786 wmi_vdev_param_he_range_ext_enable,
5787 wmi_vdev_param_set_hemu_mode,
Gyanranjan Hazarika9ecfb552017-09-18 15:59:34 -07005788 wmi_vdev_param_set_he_ltf,
Gyanranjan Hazarika9e893852017-10-13 12:36:24 -07005789 wmi_vdev_param_set_heop,
Anirban Sirkhell3c299ba2017-03-01 10:32:33 +08005790 wmi_vdev_param_disable_cabq,
Sathish Kumar6190e772017-11-08 14:49:58 +05305791 wmi_vdev_param_rate_dropdown_bmap,
Anirban Sirkhell679a7102017-04-14 10:02:39 +08005792 wmi_vdev_param_tx_power,
Rhythm Patwa2f088b72018-02-15 13:22:39 -08005793 wmi_vdev_param_set_ba_mode,
Gyanranjan Hazarika56aabf12018-03-13 17:09:08 -07005794 wmi_vdev_param_autorate_misc_cfg,
narayan0faaf6b2018-03-19 21:13:11 +05305795 wmi_vdev_param_amsdu_subframe_size_per_ac,
5796
Govind Singh89727882016-04-15 13:58:27 +05305797 wmi_vdev_param_max,
5798} wmi_conv_vdev_param_id;
5799
5800/**
5801 * Host based ENUM IDs for service bits to abstract target enums
5802 */
5803typedef enum {
5804 wmi_service_beacon_offload = 0,
5805 wmi_service_scan_offload,
5806 wmi_service_roam_offload,
5807 wmi_service_bcn_miss_offload,
5808 wmi_service_sta_pwrsave,
5809 wmi_service_sta_advanced_pwrsave,
5810 wmi_service_ap_uapsd,
5811 wmi_service_ap_dfs,
5812 wmi_service_11ac,
5813 wmi_service_blockack,
5814 wmi_service_phyerr,
5815 wmi_service_bcn_filter,
5816 wmi_service_rtt,
5817 wmi_service_ratectrl,
5818 wmi_service_wow,
5819 wmi_service_ratectrl_cache,
5820 wmi_service_iram_tids,
5821 wmi_service_burst,
5822 wmi_service_smart_antenna_sw_support,
5823 wmi_service_gtk_offload,
5824 wmi_service_scan_sch,
5825 wmi_service_csa_offload,
5826 wmi_service_chatter,
5827 wmi_service_coex_freqavoid,
5828 wmi_service_packet_power_save,
5829 wmi_service_force_fw_hang,
5830 wmi_service_smart_antenna_hw_support,
5831 wmi_service_gpio,
5832 wmi_sta_uapsd_basic_auto_trig,
5833 wmi_sta_uapsd_var_auto_trig,
5834 wmi_service_sta_keep_alive,
5835 wmi_service_tx_encap,
5836 wmi_service_ap_ps_detect_out_of_sync,
5837 wmi_service_early_rx,
5838 wmi_service_enhanced_proxy_sta,
5839 wmi_service_tt,
5840 wmi_service_atf,
5841 wmi_service_peer_caching,
5842 wmi_service_coex_gpio,
5843 wmi_service_aux_spectral_intf,
5844 wmi_service_aux_chan_load_intf,
5845 wmi_service_bss_channel_info_64,
5846 wmi_service_ext_res_cfg_support,
5847 wmi_service_mesh,
5848 wmi_service_restrt_chnl_support,
5849 wmi_service_roam_scan_offload,
5850 wmi_service_arpns_offload,
5851 wmi_service_nlo,
5852 wmi_service_sta_dtim_ps_modulated_dtim,
5853 wmi_service_sta_smps,
5854 wmi_service_fwtest,
5855 wmi_service_sta_wmmac,
5856 wmi_service_tdls,
5857 wmi_service_mcc_bcn_interval_change,
5858 wmi_service_adaptive_ocs,
5859 wmi_service_ba_ssn_support,
5860 wmi_service_filter_ipsec_natkeepalive,
5861 wmi_service_wlan_hb,
5862 wmi_service_lte_ant_share_support,
5863 wmi_service_batch_scan,
5864 wmi_service_qpower,
5865 wmi_service_plmreq,
5866 wmi_service_thermal_mgmt,
5867 wmi_service_rmc,
5868 wmi_service_mhf_offload,
5869 wmi_service_coex_sar,
5870 wmi_service_bcn_txrate_override,
5871 wmi_service_nan,
5872 wmi_service_l1ss_stat,
5873 wmi_service_estimate_linkspeed,
5874 wmi_service_obss_scan,
5875 wmi_service_tdls_offchan,
5876 wmi_service_tdls_uapsd_buffer_sta,
5877 wmi_service_tdls_uapsd_sleep_sta,
5878 wmi_service_ibss_pwrsave,
5879 wmi_service_lpass,
5880 wmi_service_extscan,
5881 wmi_service_d0wow,
5882 wmi_service_hsoffload,
5883 wmi_service_roam_ho_offload,
5884 wmi_service_rx_full_reorder,
5885 wmi_service_dhcp_offload,
5886 wmi_service_sta_rx_ipa_offload_support,
5887 wmi_service_mdns_offload,
5888 wmi_service_sap_auth_offload,
5889 wmi_service_dual_band_simultaneous_support,
5890 wmi_service_ocb,
5891 wmi_service_ap_arpns_offload,
5892 wmi_service_per_band_chainmask_support,
5893 wmi_service_packet_filter_offload,
5894 wmi_service_mgmt_tx_htt,
5895 wmi_service_mgmt_tx_wmi,
5896 wmi_service_ext_msg,
5897 wmi_service_mawc,
5898
5899 wmi_service_peer_stats,
5900 wmi_service_mesh_11s,
5901 wmi_service_periodic_chan_stat_support,
5902 wmi_service_tx_mode_push_only,
5903 wmi_service_tx_mode_push_pull,
5904 wmi_service_tx_mode_dynamic,
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05305905 wmi_service_check_cal_version,
Sathish Kumar7e566c52016-11-10 15:30:22 +05305906 wmi_service_btcoex_duty_cycle,
Sathish Kumar612d0c22017-01-19 14:57:37 +05305907 wmi_service_4_wire_coex_support,
Sathish Kumar907a7462017-02-27 10:35:40 +05305908 wmi_service_multiple_vdev_restart,
Kiran Venkatappa4a56b462017-05-10 14:34:17 +05305909 wmi_service_peer_assoc_conf,
5910 wmi_service_egap,
5911 wmi_service_sta_pmf_offload,
5912 wmi_service_unified_wow_capability,
5913 wmi_service_enterprise_mesh,
5914 wmi_service_bpf_offload,
5915 wmi_service_sync_delete_cmds,
5916 wmi_service_ratectrl_limit_max_min_rates,
5917 wmi_service_nan_data,
5918 wmi_service_nan_rtt,
5919 wmi_service_11ax,
5920 wmi_service_deprecated_replace,
5921 wmi_service_tdls_conn_tracker_in_host_mode,
5922 wmi_service_enhanced_mcast_filter,
5923 wmi_service_half_rate_quarter_rate_support,
5924 wmi_service_vdev_rx_filter,
5925 wmi_service_p2p_listen_offload_support,
5926 wmi_service_mark_first_wakeup_packet,
5927 wmi_service_multiple_mcast_filter_set,
5928 wmi_service_host_managed_rx_reorder,
5929 wmi_service_flash_rdwr_support,
5930 wmi_service_wlan_stats_report,
5931 wmi_service_tx_msdu_id_new_partition_support,
5932 wmi_service_dfs_phyerr_offload,
5933 wmi_service_rcpi_support,
5934 wmi_service_fw_mem_dump_support,
5935 wmi_service_peer_stats_info,
5936 wmi_service_regulatory_db,
5937 wmi_service_11d_offload,
5938 wmi_service_hw_data_filtering,
5939 wmi_service_pkt_routing,
5940 wmi_service_offchan_tx_wmi,
Venkateswara Swamy Bandarufdf80262017-06-07 20:57:28 +05305941 wmi_service_chan_load_info,
Soumya Bhatd2759c62017-08-29 18:49:13 +05305942 wmi_service_extended_nss_support,
Sathish Kumar262d54a2017-10-04 09:58:00 +05305943 wmi_service_ack_timeout,
Om Prakash Tripathi4a4242b2017-11-03 16:11:11 +05305944 wmi_service_widebw_scan,
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05305945 wmi_service_bcn_offload_start_stop_support,
Kiran Venkatappa24d38452017-11-17 17:08:02 +05305946 wmi_service_offchan_data_tid_support,
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05305947 wmi_service_support_dma,
Sourav Mohapatra0e1c2a82017-12-03 11:44:44 +05305948 wmi_service_8ss_tx_bfee,
5949 wmi_service_fils_support,
5950 wmi_service_mawc_support,
5951 wmi_service_wow_wakeup_by_timer_pattern,
Arunk Khandavalli2604ed12018-02-08 11:52:23 +05305952 wmi_service_11k_neighbour_report_support,
Arif Hussain97fd3e62018-02-09 16:42:05 -08005953 wmi_service_ap_obss_detection_offload,
5954 wmi_service_bss_color_offload,
Padma, Santhosh Kumarcc2eea02018-02-02 18:18:34 +05305955 wmi_service_gmac_offload_support,
Govind Singh89727882016-04-15 13:58:27 +05305956
5957 wmi_services_max,
5958} wmi_conv_service_ids;
5959#define WMI_SERVICE_UNAVAILABLE 0xFFFF
5960
5961/**
Sandeep Puligilla82b95ca2017-01-04 16:45:45 -08005962 * enum WMI_DBG_PARAM - Debug params
5963 * @WMI_DBGLOG_LOG_LEVEL: Set the loglevel
5964 * @WMI_DBGLOG_VAP_ENABLE: Enable VAP level debug
5965 * @WMI_DBGLOG_VAP_DISABLE: Disable VAP level debug
5966 * @WMI_DBGLOG_MODULE_ENABLE: Enable MODULE level debug
5967 * @WMI_DBGLOG_MODULE_DISABLE: Disable MODULE level debug
5968 * @WMI_DBGLOG_MOD_LOG_LEVEL: Enable MODULE level debug
5969 * @WMI_DBGLOG_TYPE: set type of the debug output
5970 * @WMI_DBGLOG_REPORT_ENABLE: Enable Disable debug
5971 */
5972typedef enum {
5973 WMI_DBGLOG_LOG_LEVEL = 0x1,
5974 WMI_DBGLOG_VAP_ENABLE,
5975 WMI_DBGLOG_VAP_DISABLE,
5976 WMI_DBGLOG_MODULE_ENABLE,
5977 WMI_DBGLOG_MODULE_DISABLE,
5978 WMI_DBGLOG_MOD_LOG_LEVEL,
5979 WMI_DBGLOG_TYPE,
5980 WMI_DBGLOG_REPORT_ENABLE
5981} WMI_DBG_PARAM;
5982
5983/**
Govind Singh89727882016-04-15 13:58:27 +05305984 * struct wmi_host_fw_ver - FW version in non-tlv target
5985 * @sw_version: Versin info
5986 * @sw_version_1: Second dword of version
5987 */
5988struct wmi_host_fw_ver {
5989 uint32_t sw_version;
5990 uint32_t sw_version_1;
5991};
5992
5993/**
5994 * struct wmi_host_fw_abi_ver - FW version in non-tlv target
5995 * @sw_version: Versin info
5996 * @abi_version: ABI version
5997 */
5998struct wmi_host_fw_abi_ver {
5999 uint32_t sw_version;
6000 uint32_t abi_version;
6001};
6002
6003/**
6004 * struct target_resource_config - Resource config sent from host to target
6005 * abstracted out to include union of both configs
6006 * @num_vdevs: Number vdevs configured
6007 * @num_peers: Number of peers
6008 * @num_active_peers: Number of active peers for peer cache
6009 * @num_offload_peers: Number of offload peers
6010 * @num_offload_reorder_buffs: number of offload reorder buffs
6011 * @num_peer_keys: number of peer keys
6012 * @num_tids: number of tids
6013 * @ast_skid_limit: AST skid limit
6014 * @tx_chain_mask: TX chain mask
6015 * @rx_chain_mask: RX chain mask
6016 * @rx_timeout_pri: RX reorder timeout per AC
6017 * @rx_decap_mode: RX decap mode
6018 * @scan_max_pending_req: Scan mac pending req
6019 * @bmiss_offload_max_vdev: Beacom miss offload max vdevs
6020 * @roam_offload_max_vdev: Roam offload max vdevs
6021 * @roam_offload_max_ap_profiles: roam offload max ap profiles
6022 * @num_mcast_groups: num mcast groups
6023 * @num_mcast_table_elems: number of macst table elems
6024 * @mcast2ucast_mode: mcast enhance mode
6025 * @tx_dbg_log_size: DBG log buf size
6026 * @num_wds_entries: number of WDS entries
6027 * @dma_burst_size: DMA burst size.
6028 * @mac_aggr_delim: Mac aggr delim
6029 * @rx_skip_defrag_timeout_dup_detection_check: Defrag dup check in host?
6030 * @vow_config: vow configuration
6031 * @gtk_offload_max_vdev: Max vdevs for GTK offload
6032 * @num_msdu_desc: Number of msdu desc
6033 * @max_frag_entries: Max frag entries
6034 * End common
6035 * @max_peer_ext_stats: Max peer EXT stats
6036 * @smart_ant_cap: Smart antenna capabilities
6037 * @BK_Minfree: BIN configuration for BK traffic
6038 * @BE_Minfree: BIN configuration for BE traffic
6039 * @VI_Minfree: BIN configuration for VI traffic
6040 * @VO_Minfree: BIN configuration for VO traffic
6041 * @rx_batchmode: RX batch mode
6042 * @tt_support: Thermal throttling support
6043 * @atf_config: ATF config
Mukul Sharma7b7b15e2017-11-02 17:42:36 +05306044 * @mgmt_comp_evt_bundle_support: bundle support required for mgmt complete evt
6045 * @tx_msdu_new_partition_id_support: new partiition id support for tx msdu
Govind Singh89727882016-04-15 13:58:27 +05306046 * @iphdr_pad_config: ipheader pad config
6047 * @qwrap_config: Qwrap configuration
6048 * @alloc_frag_desc_for_data_pkt: Frag desc for data
6049 * Added in MCL
6050 * @num_tdls_vdevs:
6051 * @num_tdls_conn_table_entries:
6052 * @beacon_tx_offload_max_vdev:
6053 * @num_multicast_filter_entries:
6054 * @num_wow_filters:
6055 * @num_keep_alive_pattern:
6056 * @keep_alive_pattern_size:
6057 * @max_tdls_concurrent_sleep_sta:
6058 * @max_tdls_concurrent_buffer_sta:
6059 * @wmi_send_separate:
6060 * @num_ocb_vdevs:
6061 * @num_ocb_channels:
6062 * @num_ocb_schedules:
Dustin Brown29c4cbf2018-03-07 11:48:14 -08006063 * @num_packet_filters: maximum number of packet filter rules to support
6064 * @num_max_sta_vdevs: maximum number of concurrent station vdevs to support
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306065 * @num_ns_ext_tuples_cfg:
6066 * @bpf_instruction_size:
6067 * @max_bssid_rx_filters:
6068 * @use_pdev_id:
Mukul Sharma7b7b15e2017-11-02 17:42:36 +05306069 * @max_num_dbs_scan_duty_cycle: max dbs can duty cycle value
Ruchi, Agrawalbd55f8e2017-11-21 14:39:02 +05306070 * @cce_disable: disable cce component
Kiran Venkatappaffc18df2018-04-04 14:31:43 +05306071 * @twt_ap_pdev_count: Number of MAC on which AP TWT feature is supported
6072 * @twt_ap_sta_count: Max no of STA with which TWT sessions can be formed
6073 * by the AP
Govind Singh89727882016-04-15 13:58:27 +05306074 */
6075typedef struct {
6076 uint32_t num_vdevs;
6077 uint32_t num_peers;
6078 uint32_t num_active_peers;
6079 uint32_t num_offload_peers;
6080 uint32_t num_offload_reorder_buffs;
6081 uint32_t num_peer_keys;
6082 uint32_t num_tids;
6083 uint32_t ast_skid_limit;
6084 uint32_t tx_chain_mask;
6085 uint32_t rx_chain_mask;
6086 uint32_t rx_timeout_pri[4];
6087 uint32_t rx_decap_mode;
6088 uint32_t scan_max_pending_req;
6089 uint32_t bmiss_offload_max_vdev;
6090 uint32_t roam_offload_max_vdev;
6091 uint32_t roam_offload_max_ap_profiles;
6092 uint32_t num_mcast_groups;
6093 uint32_t num_mcast_table_elems;
6094 uint32_t mcast2ucast_mode;
6095 uint32_t tx_dbg_log_size;
6096 uint32_t num_wds_entries;
6097 uint32_t dma_burst_size;
6098 uint32_t mac_aggr_delim;
6099 uint32_t rx_skip_defrag_timeout_dup_detection_check;
6100 uint32_t vow_config;
6101 uint32_t gtk_offload_max_vdev;
6102 uint32_t num_msdu_desc; /* Number of msdu desc */
6103 uint32_t max_frag_entries;
Kris Muthusamya34dfff2017-11-30 01:40:46 -08006104 uint32_t scheduler_params;
Govind Singh89727882016-04-15 13:58:27 +05306105 /* End common */
6106
6107 /* Added for Beeliner */
6108 uint32_t max_peer_ext_stats;
6109 uint32_t smart_ant_cap;
6110 uint32_t BK_Minfree;
6111 uint32_t BE_Minfree;
6112 uint32_t VI_Minfree;
6113 uint32_t VO_Minfree;
6114 uint32_t rx_batchmode;
6115 uint32_t tt_support;
Mukul Sharma7b7b15e2017-11-02 17:42:36 +05306116 uint32_t atf_config:1,
6117 mgmt_comp_evt_bundle_support:1,
6118 tx_msdu_new_partition_id_support:1;
Govind Singh89727882016-04-15 13:58:27 +05306119 uint32_t iphdr_pad_config;
6120 uint32_t
6121 qwrap_config:16,
6122 alloc_frag_desc_for_data_pkt:16;
6123
6124 /* Added in MCL */
6125 uint32_t num_tdls_vdevs;
6126 uint32_t num_tdls_conn_table_entries;
6127 uint32_t beacon_tx_offload_max_vdev;
6128 uint32_t num_multicast_filter_entries;
6129 uint32_t num_wow_filters;
6130 uint32_t num_keep_alive_pattern;
6131 uint32_t keep_alive_pattern_size;
6132 uint32_t max_tdls_concurrent_sleep_sta;
6133 uint32_t max_tdls_concurrent_buffer_sta;
6134 uint32_t wmi_send_separate;
6135 uint32_t num_ocb_vdevs;
6136 uint32_t num_ocb_channels;
6137 uint32_t num_ocb_schedules;
Dustin Brown29c4cbf2018-03-07 11:48:14 -08006138 uint32_t num_packet_filters;
6139 uint32_t num_max_sta_vdevs;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306140 uint32_t num_ns_ext_tuples_cfg;
6141 uint32_t bpf_instruction_size;
6142 uint32_t max_bssid_rx_filters;
6143 uint32_t use_pdev_id;
Mukul Sharma7b7b15e2017-11-02 17:42:36 +05306144 uint32_t max_num_dbs_scan_duty_cycle;
Ruchi, Agrawalbd55f8e2017-11-21 14:39:02 +05306145 bool cce_disable;
Kiran Venkatappaffc18df2018-04-04 14:31:43 +05306146 uint32_t twt_ap_pdev_count;
6147 uint32_t twt_ap_sta_count;
Govind Singh89727882016-04-15 13:58:27 +05306148} target_resource_config;
6149
6150/**
6151 * struct wds_addr_event - WDS addr event structure
6152 * @event_type: event type add/delete
6153 * @peer_mac: peer mac
6154 * @dest_mac: destination mac address
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306155 * @vdev_id: vdev id
Govind Singh89727882016-04-15 13:58:27 +05306156 */
6157typedef struct {
6158 uint32_t event_type[4];
6159 u_int8_t peer_mac[IEEE80211_ADDR_LEN];
6160 u_int8_t dest_mac[IEEE80211_ADDR_LEN];
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306161 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05306162} wds_addr_event_t;
6163/**
6164 * Enum replicated for host abstraction with FW
6165 */
6166typedef enum {
6167 /* Event respose of START CMD */
6168 WMI_HOST_VDEV_START_RESP_EVENT = 0,
6169 /* Event respose of RESTART CMD */
6170 WMI_HOST_VDEV_RESTART_RESP_EVENT,
6171} WMI_HOST_START_EVENT_PARAM;
6172
6173/**
6174 * struct wmi_host_vdev_start_resp - VDEV start response
6175 * @vdev_id: vdev id
6176 * @requestor_id: requestor id that requested the VDEV start request
6177 * @resp_type: Respose of Event type START/RESTART
6178 * @status: status of the response
6179 * @chain_mask: Vdev chain mask
6180 * @smps_mode: Vdev mimo power save mode
6181 * @mac_id: mac_id field contains the MAC identifier that the
6182 * VDEV is bound to. The valid range is 0 to (num_macs-1).
6183 * @cfgd_tx_streams: Configured Transmit Streams
6184 * @cfgd_rx_streams: Configured Receive Streams
6185 */
6186typedef struct {
6187 uint32_t vdev_id;
6188 uint32_t requestor_id;
6189 WMI_HOST_START_EVENT_PARAM resp_type;
6190 uint32_t status;
6191 uint32_t chain_mask;
6192 uint32_t smps_mode;
6193 uint32_t mac_id;
6194 uint32_t cfgd_tx_streams;
6195 uint32_t cfgd_rx_streams;
6196} wmi_host_vdev_start_resp;
6197
Govind Singh89727882016-04-15 13:58:27 +05306198/**
Om Prakash Tripathi105b04b2017-11-24 16:53:07 +05306199 * struct wmi_host_vdev_delete_resp - VDEV delete response
6200 * @vdev_id: vdev id
6201 */
6202struct wmi_host_vdev_delete_resp {
6203 uint32_t vdev_id;
6204};
6205
6206/**
Govind Singh89727882016-04-15 13:58:27 +05306207 * struct wmi_host_roam_event - host roam event param
6208 * @vdev_id: vdev id
6209 * @reason: roam reason
6210 * @rssi: RSSI
6211 */
6212typedef struct {
6213 uint32_t vdev_id;
6214 uint32_t reason;
6215 uint32_t rssi;
6216} wmi_host_roam_event;
6217
6218/**
6219 * ENUM wmi_host_scan_event_type - Scan event type
6220 */
6221enum wmi_host_scan_event_type {
6222 WMI_HOST_SCAN_EVENT_STARTED = 0x1,
6223 WMI_HOST_SCAN_EVENT_COMPLETED = 0x2,
6224 WMI_HOST_SCAN_EVENT_BSS_CHANNEL = 0x4,
6225 WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL = 0x8,
6226 WMI_HOST_SCAN_EVENT_DEQUEUED = 0x10,
6227 WMI_HOST_SCAN_EVENT_PREEMPTED = 0x20,
6228 WMI_HOST_SCAN_EVENT_START_FAILED = 0x40,
6229 WMI_HOST_SCAN_EVENT_RESTARTED = 0x80,
6230 WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = 0x100,
6231 WMI_HOST_SCAN_EVENT_INVALID = 0x200,
Sathish Kumar753eb7d2016-10-25 18:47:52 +05306232 WMI_HOST_SCAN_EVENT_GPIO_TIMEOUT = 0x400,
Govind Singh89727882016-04-15 13:58:27 +05306233 WMI_HOST_SCAN_EVENT_MAX = 0x8000
6234};
6235
6236/**
6237 * ENUM wmi_host_scan_completion_reason - Scan completion event type
6238 */
6239enum wmi_host_scan_completion_reason {
6240 /** scan related events */
6241 WMI_HOST_SCAN_REASON_NONE = 0xFF,
6242 WMI_HOST_SCAN_REASON_COMPLETED = 0,
6243 WMI_HOST_SCAN_REASON_CANCELLED = 1,
6244 WMI_HOST_SCAN_REASON_PREEMPTED = 2,
6245 WMI_HOST_SCAN_REASON_TIMEDOUT = 3,
6246 WMI_HOST_SCAN_REASON_INTERNAL_FAILURE = 4,
6247 WMI_HOST_SCAN_REASON_MAX,
6248};
6249
6250/**
6251 * struct wmi_host_scan_event - Scan event response from target
6252 * @event: event type
6253 * @reason: Reason for event
6254 * @channel_freq: channel frequency
6255 * @requestor: requestor id
6256 * @scan_id: scan id
6257 * @vdev_id: vdev id
6258 */
6259typedef struct {
6260 uint32_t event;
6261 uint32_t reason;
6262 uint32_t channel_freq;
6263 uint32_t requestor;
6264 uint32_t scan_id;
6265 uint32_t vdev_id;
6266} wmi_host_scan_event;
6267
6268/**
6269 * struct wmi_host_pdev_reserve_ast_entry_event - Reserve AST entry
6270 * @result: result
6271 */
6272typedef struct {
6273 uint32_t result;
6274} wmi_host_pdev_reserve_ast_entry_event;
6275
6276/**
6277 * struct wmi_host_mcast_ageout_entry - mcast aged-out entry
6278 * @grp_addr: IPv4/6 mcast group addr
6279 * @vdev_id: vdev id
6280 */
6281typedef struct {
6282 uint8_t grp_addr[16];
6283 uint32_t vdev_id;
6284} wmi_host_mcast_ageout_entry;
6285
6286/**
6287 * struct wmi_host_mcast_list_ageout_event - List of mcast entry aged-out
6288 * @num_entry: Number of mcast entries timed-out
6289 * @entry: List of wmi_host_mcast_ageout_entry
6290 */
6291typedef struct {
6292 uint32_t num_entry;
6293 wmi_host_mcast_ageout_entry entry[1];
6294} wmi_host_mcast_list_ageout_event;
6295
6296/**
6297 * struct wmi_host_pdev_nfcal_power_all_channels_event - NF cal event data
nobeljd9c2dc82018-01-25 16:35:36 -08006298 * @nfdbr:
6299 * chan[0 ~ 7]: {NFCalPower_chain0, NFCalPower_chain1,
6300 * NFCalPower_chain2, NFCalPower_chain3,
6301 * NFCalPower_chain4, NFCalPower_chain5,
6302 * NFCalPower_chain6, NFCalPower_chain7},
6303 * @nfdbm:
6304 * chan[0 ~ 7]: {NFCalPower_chain0, NFCalPower_chain1,
6305 * NFCalPower_chain2, NFCalPower_chain3,
6306 * NFCalPower_chain4, NFCalPower_chain5,
6307 * NFCalPower_chain6, NFCalPower_chain7},
6308 * @freqnum:
6309 * chan[0 ~ 7]: frequency number
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306310 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306311 */
6312typedef struct {
nobeljd9c2dc82018-01-25 16:35:36 -08006313 int8_t nfdbr[WMI_HOST_RXG_CAL_CHAN_MAX * WMI_HOST_MAX_NUM_CHAINS];
6314 int8_t nfdbm[WMI_HOST_RXG_CAL_CHAN_MAX * WMI_HOST_MAX_NUM_CHAINS];
6315 uint32_t freqnum[WMI_HOST_RXG_CAL_CHAN_MAX];
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306316 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05306317} wmi_host_pdev_nfcal_power_all_channels_event;
6318
6319/**
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05306320 * enum wmi_host_pdev_tpc_event_offset: offsets of TPC events
6321 * @WMI_HOST_TX_POWER_MAX: offset of max tx power
6322 * @WMI_HOST_TX_POWER_MIN: offset of min tx power
6323 * @WMI_HOST_TX_POWER_LEN: size of tpc values
6324 */
6325enum wmi_host_pdev_tpc_event_offset {
6326 WMI_HOST_TX_POWER_MAX,
6327 WMI_HOST_TX_POWER_MIN,
6328 WMI_HOST_TX_POWER_LEN,
6329};
6330
6331/**
Govind Singh89727882016-04-15 13:58:27 +05306332 * struct wmi_host_pdev_tpc_event - WMI host pdev TPC event
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306333 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306334 * @tpc:
6335 */
6336typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306337 uint32_t pdev_id;
Om Prakash Tripathi4331e422017-09-06 15:22:04 +05306338 int32_t tpc[WMI_HOST_TX_POWER_LEN];
Govind Singh89727882016-04-15 13:58:27 +05306339} wmi_host_pdev_tpc_event;
6340
6341/**
6342 * struct wmi_host_pdev_generic_buffer_event
6343 * @buf_type: Buffer type
6344 * @frag_id: Frag id
6345 * @more_frag: more frags pending
6346 * @buf_len: buffer length
6347 * @buf_info: variable length buffer
6348 */
6349typedef struct {
6350 uint32_t buf_type;
6351 uint32_t frag_id;
6352 uint32_t more_frag;
6353 uint32_t buf_len;
6354 uint32_t buf_info[1];
6355} wmi_host_pdev_generic_buffer_event;
6356/**
6357 * Enum for host buffer event
6358 */
6359enum {
6360 WMI_HOST_BUFFER_TYPE_RATEPWR_TABLE,
6361 WMI_HOST_BUFFER_TYPE_CTL_TABLE,
6362};
6363
6364/**
6365 * struct wmi_host_pdev_tpc_config_event - host pdev tpc config event
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306366 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306367 * @regDomain:
6368 * @chanFreq:
6369 * @phyMode:
6370 * @twiceAntennaReduction:
6371 * @twiceMaxRDPower:
6372 * @twiceAntennaGain:
6373 * @powerLimit:
6374 * @rateMax:
6375 * @numTxChain:
6376 * @ctl:
6377 * @flags:
6378 * @maxRegAllowedPower:
6379 * @maxRegAllowedPowerAGCDD:
6380 * @maxRegAllowedPowerAGSTBC:
6381 * @maxRegAllowedPowerAGTXBF:
6382 * @ratesArray:
6383 */
6384typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306385 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05306386 uint32_t regDomain;
6387 uint32_t chanFreq;
6388 uint32_t phyMode;
6389 uint32_t twiceAntennaReduction;
6390 uint32_t twiceMaxRDPower;
6391 int32_t twiceAntennaGain;
6392 uint32_t powerLimit;
6393 uint32_t rateMax;
6394 uint32_t numTxChain;
6395 uint32_t ctl;
6396 uint32_t flags;
6397 int8_t maxRegAllowedPower[WMI_HOST_TPC_TX_NUM_CHAIN];
6398 int8_t maxRegAllowedPowerAGCDD[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN];
6399 int8_t maxRegAllowedPowerAGSTBC[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN];
6400 int8_t maxRegAllowedPowerAGTXBF[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN];
6401 uint8_t ratesArray[WMI_HOST_TPC_RATE_MAX];
6402} wmi_host_pdev_tpc_config_event;
6403/**
6404 * Enums for TPC event
6405 */
6406typedef enum {
6407 WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1,
6408 WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2,
6409 WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4,
6410} WMI_HOST_TPC_CONFIG_EVENT_FLAG;
6411
6412/**
6413 * Medium Utilization evaluation algorithms
6414 * These algorithms can be complementary rather than exclusive.
6415 */
6416typedef enum {
6417 WMI_HOST_MU_BASIC_ALGO = 0x1,
6418 WMI_HOST_MU_PER_BSSID_ALGO = 0x2,
6419 WMI_HOST_MU_HIDDEN_NODE_ALGO = 0x4,
6420} WMI_HOST_MU_ALGO_TYPE;
6421/* max MU alg combinations supported by target */
6422#define WMI_HOST_MU_MAX_ALGO_TYPE 3
6423
6424/**
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05306425 * struct wmi_host_mu_db_entry
6426 * @event_type: 0=AP, 1=STA, 2=Small Cell(SC)
6427 * @bssid_mac_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC
6428 * @tx_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC
6429 * @avg_duration_us: Avg. duration for which node was transmitting
6430 * @avg_rssi: Avg. RSSI of all TX packets by node. Unit dBm
6431 * @mu_percent: % medium utilization by node
6432 */
6433typedef struct {
6434 uint32_t entry_type;
6435 wmi_host_mac_addr bssid_mac_addr;
6436 wmi_host_mac_addr tx_addr;
6437 uint32_t avg_duration_us;
6438 uint32_t avg_rssi;
6439 uint32_t mu_percent;
6440} wmi_host_mu_db_entry;
6441
6442/**
Govind Singh89727882016-04-15 13:58:27 +05306443 * struct wmi_host_mu_report_event - WMI_MU_REPORT_EVENTID
6444 * @mu_request_id: request id
6445 * @status_reason: MU_STATUS_REASON
6446 * @total_mu: MU_ALG_TYPE combinations
6447 * @num_active_bssid: number of active bssid
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05306448 * @hidden_node_mu : hidden node algo MU per bin
6449 * @num_TA_entries : No. of entries found in MU db report
Govind Singh89727882016-04-15 13:58:27 +05306450 */
6451typedef struct {
6452 uint32_t mu_request_id;
6453 uint32_t status_reason;
6454 uint32_t total_mu[WMI_HOST_MU_MAX_ALGO_TYPE];
6455 uint32_t num_active_bssid;
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05306456 uint32_t hidden_node_mu[LTEU_MAX_BINS];
6457 uint32_t num_TA_entries;
Govind Singh89727882016-04-15 13:58:27 +05306458} wmi_host_mu_report_event;
6459
6460/**
6461 * struct wmi_host_mgmt_tx_compl_event - TX completion event
6462 * @desc_id: from tx_send_cmd
6463 * @status: WMI_MGMT_TX_COMP_STATUS_TYPE
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306464 * @pdev_id: pdev_id
Soumya Bhat9e1e3992018-03-09 13:04:57 +05306465 * @ppdu_id: ppdu_id
Govind Singh89727882016-04-15 13:58:27 +05306466 */
6467typedef struct {
6468 uint32_t desc_id;
6469 uint32_t status;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306470 uint32_t pdev_id;
Soumya Bhat9e1e3992018-03-09 13:04:57 +05306471 uint32_t ppdu_id;
Govind Singh89727882016-04-15 13:58:27 +05306472} wmi_host_mgmt_tx_compl_event;
6473
Kiran Venkatappa25c47022017-03-19 22:58:09 +05306474/**
6475 * struct wmi_host_offchan_data_tx_compl_event - TX completion event
6476 * @desc_id: from tx_send_cmd
6477 * @status: VWMI_MGMT_TX_COMP_STATUS_TYPE
6478 * @pdev_id: pdev_id
6479 */
6480struct wmi_host_offchan_data_tx_compl_event {
6481 uint32_t desc_id;
6482 uint32_t status;
6483 uint32_t pdev_id;
6484};
6485
Govind Singh89727882016-04-15 13:58:27 +05306486#define WMI_HOST_TIM_BITMAP_ARRAY_SIZE 17
6487
6488/**
6489 * struct wmi_host_tim_info - TIM info in SWBA event
6490 * @tim_len: TIM length
6491 * @tim_mcast:
6492 * @tim_bitmap: TIM bitmap
6493 * @tim_changed: TIM changed
6494 * @tim_num_ps_pending: TIM num PS sta pending
Sathish Kumar744fbf72017-05-17 18:05:15 +05306495 * @vdev_id: Vdev id
Govind Singh89727882016-04-15 13:58:27 +05306496 */
6497typedef struct {
6498 uint32_t tim_len;
6499 uint32_t tim_mcast;
6500 uint32_t tim_bitmap[WMI_HOST_TIM_BITMAP_ARRAY_SIZE];
6501 uint32_t tim_changed;
6502 uint32_t tim_num_ps_pending;
Sathish Kumar744fbf72017-05-17 18:05:15 +05306503 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05306504} wmi_host_tim_info;
6505
6506/**
6507 * struct wmi_host_p2p_noa_descriptor - NoA desc in SWBA event
6508 * @type_count: Absence count
6509 * @duration: NoA duration
6510 * @interval: NoA interval
6511 * @start_time: start time
6512 */
6513typedef struct {
6514 uint32_t type_count;
6515 uint32_t duration;
6516 uint32_t interval;
6517 uint32_t start_time;
6518} wmi_host_p2p_noa_descriptor;
6519/* Maximum number of NOA Descriptors supported */
6520#define WMI_HOST_P2P_MAX_NOA_DESCRIPTORS 4
6521/**
6522 * struct wmi_host_p2p_noa_info - p2p noa information
6523 * @modified: NoA modified
6524 * @index: Index
6525 * @oppPS: Oppurtunstic ps
6526 * @ctwindow: CT window
6527 * @num_descriptors: number of descriptors
6528 * @noa_descriptors: noa descriptors
Sathish Kumar744fbf72017-05-17 18:05:15 +05306529 * @vdev_id: Vdev id
Govind Singh89727882016-04-15 13:58:27 +05306530 */
6531typedef struct {
6532 uint8_t modified;
6533 uint8_t index;
6534 uint8_t oppPS;
6535 uint8_t ctwindow;
6536 uint8_t num_descriptors;
6537 wmi_host_p2p_noa_descriptor
6538 noa_descriptors[WMI_HOST_P2P_MAX_NOA_DESCRIPTORS];
Sathish Kumar744fbf72017-05-17 18:05:15 +05306539 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05306540} wmi_host_p2p_noa_info;
6541
6542/**
6543 * struct wmi_host_peer_sta_kickout_event
6544 * @peer_macaddr: peer mac address
6545 * @reason: kickout reason
6546 * @rssi: rssi
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306547 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306548 */
6549typedef struct {
6550 uint8_t peer_macaddr[IEEE80211_ADDR_LEN];
6551 uint32_t reason;
6552 uint32_t rssi;
6553} wmi_host_peer_sta_kickout_event;
6554
6555/**
6556 * struct wmi_host_peer_sta_ps_statechange_event - ST ps state change event
6557 * @peer_macaddr: peer mac address
6558 * @peer_ps_stats: peer PS state
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306559 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306560 */
6561typedef struct {
6562 uint8_t peer_macaddr[IEEE80211_ADDR_LEN];
6563 uint32_t peer_ps_state;
6564} wmi_host_peer_sta_ps_statechange_event;
6565
6566/* Maximum CCK, OFDM rates supported */
6567#define WMI_SA_MAX_CCK_OFDM_RATES 12
6568/* Maximum MCS rates supported; 4 rates in each dword */
6569#define WMI_SA_MAX_MCS_RATES 40
6570#define WMI_SA_MAX_RATE_COUNTERS 4
6571/* Maximum rate series used for transmission */
6572#define SA_MAX_RATE_SERIES 2
6573
6574#define SA_MAX_LEGACY_RATE_DWORDS 3
6575#define SA_MAX_HT_RATE_DWORDS 10
6576#define SA_BYTES_IN_DWORD 4
6577#define SA_MASK_BYTE 0xff
6578/* TODO: ratecode_160 needs to add for future chips */
6579/**
6580 * struct wmi_sa_rate_cap - smart antenna rat capabilities
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05306581 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05306582 * @ratecode_legacy: Rate code array for CCK OFDM
6583 * @ratecode_20: Rate code array for 20MHz BW
6584 * @ratecode_40: Rate code array for 40MHz BW
6585 * @ratecode_80: Rate code array for 80MHz BW
6586 * @ratecount: Max Rate count for each mode
6587 */
6588typedef struct {
6589 uint8_t ratecode_legacy[WMI_SA_MAX_CCK_OFDM_RATES];
6590 uint8_t ratecode_20[WMI_SA_MAX_MCS_RATES];
6591 uint8_t ratecode_40[WMI_SA_MAX_MCS_RATES];
6592 uint8_t ratecode_80[WMI_SA_MAX_MCS_RATES];
6593 uint8_t ratecount[WMI_SA_MAX_RATE_COUNTERS];
6594} wmi_sa_rate_cap;
6595
6596/** Preamble types to be used with VDEV fixed rate configuration */
6597typedef enum {
6598 WMI_HOST_RATE_PREAMBLE_OFDM,
6599 WMI_HOST_RATE_PREAMBLE_CCK,
6600 WMI_HOST_RATE_PREAMBLE_HT,
6601 WMI_HOST_RATE_PREAMBLE_VHT,
Kris Muthusamye66c6bf2017-02-20 20:21:04 -08006602 WMI_HOST_RATE_PREAMBLE_HE,
Govind Singh89727882016-04-15 13:58:27 +05306603} WMI_HOST_RATE_PREAMBLE;
6604
6605#define WMI_HOST_FIXED_RATE_NONE (0xff)
6606
6607/** slot time long */
6608#define WMI_HOST_VDEV_SLOT_TIME_LONG 0x1
6609/** slot time short */
6610#define WMI_HOST_VDEV_SLOT_TIME_SHORT 0x2
6611/** preablbe long */
6612#define WMI_HOST_VDEV_PREAMBLE_LONG 0x1
6613/** preablbe short */
6614#define WMI_HOST_VDEV_PREAMBLE_SHORT 0x2
6615/** found a better AP */
6616#define WMI_HOST_ROAM_REASON_BETTER_AP 0x1
6617/** beacon miss detected */
6618#define WMI_HOST_ROAM_REASON_BMISS 0x2
6619/** deauth/disassoc received */
6620#define WMI_HOST_ROAM_REASON_DEAUTH 0x2
6621/** connected AP's low rssi condition detected */
6622#define WMI_HOST_ROAM_REASON_LOW_RSSI 0x3
6623/** found another AP that matches SSID and Security profile in
6624 * WMI_ROAM_AP_PROFILE, found during scan triggered upon FINAL_BMISS
6625 */
6626#define WMI_HOST_ROAM_REASON_SUITABLE_AP 0x4
6627/** LFR3.0 roaming failed, indicate the disconnection to host */
6628#define WMI_HOST_ROAM_REASON_HO_FAILED 0x5
6629
6630/** values for vdev_type */
6631#define WMI_HOST_VDEV_TYPE_AP 0x1
6632#define WMI_HOST_VDEV_TYPE_STA 0x2
6633#define WMI_HOST_VDEV_TYPE_IBSS 0x3
6634#define WMI_HOST_VDEV_TYPE_MONITOR 0x4
6635
6636/** values for vdev_subtype */
6637#define WMI_HOST_VDEV_SUBTYPE_P2P_DEVICE 0x1
6638#define WMI_HOST_VDEV_SUBTYPE_P2P_CLIENT 0x2
6639#define WMI_HOST_VDEV_SUBTYPE_P2P_GO 0x3
6640#define WMI_HOST_VDEV_SUBTYPE_PROXY_STA 0x4
6641#define WMI_HOST_VDEV_SUBTYPE_MESH 0x5
6642
6643#define WMI_HOST_MGMT_TID 17
6644/* Disable aging & learning */
6645#define WMI_HOST_WDS_FLAG_STATIC 0x1
6646
6647/**
6648 * Peer param enum abstracted from target
6649 */
6650typedef enum {
6651 /** mimo powersave state */
6652 WMI_HOST_PEER_MIMO_PS_STATE = 0x1,
6653 /** enable/disable AMPDU . initial value (enabled) */
6654 WMI_HOST_PEER_AMPDU = 0x2,
6655 /** authorize/unauthorize peer. initial value is unauthorized (0) */
6656 WMI_HOST_PEER_AUTHORIZE = 0x3,
6657 /** peer channel bandwidth */
6658 WMI_HOST_PEER_CHWIDTH = 0x4,
6659 /** peer NSS */
6660 WMI_HOST_PEER_NSS = 0x5,
6661 /** USE 4 ADDR */
6662 WMI_HOST_PEER_USE_4ADDR = 0x6,
6663 /** Enable extended peer stats */
6664 WMI_HOST_PEER_EXT_STATS_ENABLE = 0x7,
6665 /*Use FIXED Pwr */
6666 WMI_HOST_PEER_USE_FIXED_PWR = 0x8,
6667 /* Set peer fixed rate */
6668 WMI_HOST_PEER_PARAM_FIXED_RATE = 0x9,
6669 /* Whitelist peer TIDs */
6670 WMI_HOST_PEER_SET_MU_WHITELIST = 0xa,
6671 /* set group membership status */
6672 WMI_HOST_PEER_MEMBERSHIP = 0xb,
6673 WMI_HOST_PEER_USERPOS = 0xc,
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05306674 WMI_HOST_PEER_CRIT_PROTO_HINT_ENABLED = 0xd,
6675 WMI_HOST_PEER_TX_FAIL_CNT_THR = 0xe,
6676 WMI_HOST_PEER_SET_HW_RETRY_CTS2S = 0xf,
6677 WMI_HOST_PEER_IBSS_ATIM_WINDOW_LENGTH = 0x10,
6678 WMI_HOST_PEER_PHYMODE = 0x11,
6679 WMI_HOST_PEER_SET_MAC_TX_RATE = 0x12,
6680 /* Set default Rx routing */
6681 WMI_HOST_PEER_SET_DEFAULT_ROUTING = 0x13,
6682 WMI_HOST_PEER_SET_MIN_TX_RATE = 0x14,
Soumya Bhatd2759c62017-08-29 18:49:13 +05306683 /* peer NSS for 160Mhx */
6684 WMI_HOST_PEER_NSS_VHT160 = 0x15,
6685 /* peer NSS for 160Mhx */
6686 WMI_HOST_PEER_NSS_VHT80_80 = 0x16,
Venkateswara Swamy Bandarud037ca72018-01-09 15:52:37 +05306687 /* Set SU sounding interval */
6688 WMI_HOST_PEER_PARAM_SU_TXBF_SOUNDING_INTERVAL = 0x17,
6689 /* Set MU sounding interval */
6690 WMI_HOST_PEER_PARAM_MU_TXBF_SOUNDING_INTERVAL = 0x18,
6691 /* Enable sounding interval set */
6692 WMI_HOST_PEER_PARAM_TXBF_SOUNDING_ENABLE = 0x19,
Venkateswara Swamy Bandaru36dfb3f2018-01-09 15:56:56 +05306693 /* Enable MU support */
6694 WMI_HOST_PEER_PARAM_MU_ENABLE = 0x1a,
6695 /* Enable OFDMA support */
6696 WMI_HOST_PEER_PARAM_OFDMA_ENABLE = 0x1b,
Govind Singh89727882016-04-15 13:58:27 +05306697} PEER_PARAM_ENUM;
6698#define WMI_HOST_PEER_MIMO_PS_NONE 0x0
6699#define WMI_HOST_PEER_MIMO_PS_STATIC 0x1
6700#define WMI_HOST_PEER_MIMO_PS_DYNAMIC 0x2
6701typedef enum {
6702 HOST_PLATFORM_HIGH_PERF,
6703 HOST_PLATFORM_LOW_PERF,
Sathish Kumar41eca492016-09-16 16:55:35 +05306704 HOST_PLATFORM_LOW_PERF_NO_FETCH,
Govind Singh89727882016-04-15 13:58:27 +05306705} HOST_PLATFORM_TYPE;
6706
6707enum wmi_host_sta_ps_mode {
6708 /** enable power save for the given STA VDEV */
6709 WMI_HOST_STA_PS_MODE_DISABLED = 0,
6710 /** disable power save for a given STA VDEV */
6711 WMI_HOST_STA_PS_MODE_ENABLED = 1,
6712};
6713enum wmi_host_sta_powersave_param {
6714 /**
6715 * Controls how frames are retrievd from AP while STA is sleeping
6716 *
6717 * (see enum wmi_sta_ps_param_rx_wake_policy)
6718 */
6719 WMI_HOST_STA_PS_PARAM_RX_WAKE_POLICY = 0,
6720
6721 /**
6722 * The STA will go active after this many TX
6723 *
6724 * (see enum wmi_sta_ps_param_tx_wake_threshold)
6725 */
6726 WMI_HOST_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1,
6727
6728 /**
6729 * Number of PS-Poll to send before STA wakes up
6730 *
6731 * (see enum wmi_sta_ps_param_pspoll_count)
6732 *
6733 */
6734 WMI_HOST_STA_PS_PARAM_PSPOLL_COUNT = 2,
6735
6736 /**
6737 * TX/RX inactivity time in msec before going to sleep.
6738 *
6739 * The power save SM will monitor tx/rx activity on the VDEV, if no
6740 * activity for the specified msec of the parameter
6741 * the Power save SM will go to sleep.
6742 */
6743 WMI_HOST_STA_PS_PARAM_INACTIVITY_TIME = 3,
6744
6745 /**
6746 * Set uapsd configuration.
6747 *
6748 * (see enum wmi_sta_ps_param_uapsd)
6749 */
6750 WMI_HOST_STA_PS_PARAM_UAPSD = 4,
6751};
6752/* prefix used by scan requestor ids on the host
6753 * replicated here form wmi_unified.h*/
6754#define WMI_HOST_P_SCAN_REQUESTOR_ID_PREFIX 0xA000
6755/* prefix used by scan request ids generated on the host */
6756/* host cycles through the lower 12 bits to generate ids */
6757#define WMI_HOST_P_SCAN_REQ_ID_PREFIX 0xA000
6758
6759#define WMI_HOST_RC_DS_FLAG 0x01 /* Dual stream flag */
6760#define WMI_HOST_RC_CW40_FLAG 0x02 /* CW 40 */
6761#define WMI_HOST_RC_SGI_FLAG 0x04 /* Short Guard Interval */
6762#define WMI_HOST_RC_HT_FLAG 0x08 /* HT */
6763#define WMI_HOST_RC_RTSCTS_FLAG 0x10 /* RTS-CTS */
6764#define WMI_HOST_RC_TX_STBC_FLAG 0x20 /* TX STBC */
6765#define WMI_HOST_RC_RX_STBC_FLAG 0xC0 /* RX STBC ,2 bits */
6766#define WMI_HOST_RC_RX_STBC_FLAG_S 6 /* RX STBC ,2 bits */
6767#define WMI_HOST_RC_WEP_TKIP_FLAG 0x100 /* WEP/TKIP encryption */
6768#define WMI_HOST_RC_TS_FLAG 0x200 /* Three stream flag */
6769#define WMI_HOST_RC_UAPSD_FLAG 0x400 /* UAPSD Rate Control */
6770
6771/** HT Capabilities*/
6772#define WMI_HOST_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
6773/* Short Guard Interval with HT20 */
6774#define WMI_HOST_HT_CAP_HT20_SGI 0x0002
6775#define WMI_HOST_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
6776#define WMI_HOST_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
6777#define WMI_HOST_HT_CAP_TX_STBC_MASK_SHIFT 3
6778#define WMI_HOST_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
6779#define WMI_HOST_HT_CAP_RX_STBC_MASK_SHIFT 4
6780#define WMI_HOST_HT_CAP_LDPC 0x0040 /* LDPC supported */
6781#define WMI_HOST_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
6782#define WMI_HOST_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
6783#define WMI_HOST_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
6784#define WMI_HOST_HT_CAP_HT40_SGI 0x0800
Nandha Kishore Easwaran903b5542017-06-15 10:29:29 +05306785#define WMI_HOST_HT_CAP_RX_LDPC 0x1000
6786#define WMI_HOST_HT_CAP_TX_LDPC 0x2000
6787#define WMI_HOST_HT_CAP_IBF_BFER 0x4000
Govind Singh89727882016-04-15 13:58:27 +05306788
6789/* These macros should be used when we wish to advertise STBC support for
6790 * only 1SS or 2SS or 3SS. */
6791#define WMI_HOST_HT_CAP_RX_STBC_1SS 0x0010 /* B4-B5 RX STBC */
6792#define WMI_HOST_HT_CAP_RX_STBC_2SS 0x0020 /* B4-B5 RX STBC */
6793#define WMI_HOST_HT_CAP_RX_STBC_3SS 0x0030 /* B4-B5 RX STBC */
6794
6795
6796#define WMI_HOST_HT_CAP_DEFAULT_ALL (WMI_HOST_HT_CAP_ENABLED | \
6797 WMI_HOST_HT_CAP_HT20_SGI | \
6798 WMI_HOST_HT_CAP_HT40_SGI | \
6799 WMI_HOST_HT_CAP_TX_STBC | \
6800 WMI_HOST_HT_CAP_RX_STBC | \
6801 WMI_HOST_HT_CAP_LDPC)
6802
6803/* WMI_HOST_VHT_CAP_* these maps to ieee 802.11ac vht capability information
6804 field. The fields not defined here are not supported, or reserved.
6805 Do not change these masks and if you have to add new one follow the
6806 bitmask as specified by 802.11ac draft.
6807*/
6808
6809#define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
6810#define WMI_HOST_VHT_CAP_RX_LDPC 0x00000010
6811#define WMI_HOST_VHT_CAP_SGI_80MHZ 0x00000020
6812#define WMI_HOST_VHT_CAP_SGI_160MHZ 0x00000040
6813#define WMI_HOST_VHT_CAP_TX_STBC 0x00000080
6814#define WMI_HOST_VHT_CAP_RX_STBC_MASK 0x00000300
6815#define WMI_HOST_VHT_CAP_RX_STBC_MASK_SHIFT 8
6816#define WMI_HOST_VHT_CAP_SU_BFER 0x00000800
6817#define WMI_HOST_VHT_CAP_SU_BFEE 0x00001000
6818#define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000
6819#define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13
6820#define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK 0x00070000
6821#define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16
6822#define WMI_HOST_VHT_CAP_MU_BFER 0x00080000
6823#define WMI_HOST_VHT_CAP_MU_BFEE 0x00100000
6824#define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
6825#define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIT 23
6826#define WMI_HOST_VHT_CAP_RX_FIXED_ANT 0x10000000
6827#define WMI_HOST_VHT_CAP_TX_FIXED_ANT 0x20000000
6828
6829#define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
6830
6831/* These macros should be used when we wish to advertise STBC support for
6832 * only 1SS or 2SS or 3SS. */
6833#define WMI_HOST_VHT_CAP_RX_STBC_1SS 0x00000100
6834#define WMI_HOST_VHT_CAP_RX_STBC_2SS 0x00000200
6835#define WMI_HOST_VHT_CAP_RX_STBC_3SS 0x00000300
6836
6837#define WMI_HOST_VHT_CAP_DEFAULT_ALL (WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 | \
6838 WMI_HOST_VHT_CAP_SGI_80MHZ | \
6839 WMI_HOST_VHT_CAP_TX_STBC | \
6840 WMI_HOST_VHT_CAP_RX_STBC_MASK | \
6841 WMI_HOST_VHT_CAP_RX_LDPC | \
6842 WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP | \
6843 WMI_HOST_VHT_CAP_RX_FIXED_ANT | \
6844 WMI_HOST_VHT_CAP_TX_FIXED_ANT)
6845
6846/* Interested readers refer to Rx/Tx MCS Map definition as defined in
6847 802.11ac
6848*/
6849#define WMI_HOST_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
6850#define WMI_HOST_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
6851#define WMI_HOST_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
6852
6853/** U-APSD configuration of peer station from (re)assoc request and TSPECs */
6854enum wmi_host_ap_ps_param_uapsd {
6855 WMI_HOST_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
6856 WMI_HOST_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
6857 WMI_HOST_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
6858 WMI_HOST_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
6859 WMI_HOST_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
6860 WMI_HOST_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
6861 WMI_HOST_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
6862 WMI_HOST_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
6863};
6864/** U-APSD maximum service period of peer station */
6865enum wmi_host_ap_ps_peer_param_max_sp {
6866 WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0,
6867 WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_2 = 1,
6868 WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_4 = 2,
6869 WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_6 = 3,
6870
6871 /* keep last! */
6872 MAX_HOST_WMI_AP_PS_PEER_PARAM_MAX_SP,
6873};
6874
6875#define WMI_HOST_UAPSD_AC_TYPE_DELI 0
6876#define WMI_HOST_UAPSD_AC_TYPE_TRIG 1
6877
6878#define WMI_HOST_UAPSD_AC_BIT_MASK(ac, type) \
6879 ((type == WMI_HOST_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) :\
6880 (1<<((ac<<1)+1)))
6881
6882enum wmi_host_ap_ps_peer_param_wnm_sleep {
6883 WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_ENABLE,
6884 WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_DISABLE,
6885};
6886
6887enum wmi_host_ap_ps_peer_param {
6888 /** Set uapsd configuration for a given peer.
6889 *
6890 * This will include the delivery and trigger enabled state for every AC.
6891 * The host MLME needs to set this based on AP capability and stations
6892 * request Set in the association request received from the station.
6893 *
6894 * Lower 8 bits of the value specify the UAPSD configuration.
6895 *
6896 * (see enum wmi_ap_ps_param_uapsd)
6897 * The default value is 0.
6898 */
6899 WMI_HOST_AP_PS_PEER_PARAM_UAPSD = 0,
6900
6901 /**
6902 * Set the service period for a UAPSD capable station
6903 *
6904 * The service period from wme ie in the (re)assoc request frame.
6905 *
6906 * (see enum wmi_ap_ps_peer_param_max_sp)
6907 */
6908 WMI_HOST_AP_PS_PEER_PARAM_MAX_SP = 1,
6909
6910 /** Time in seconds for aging out buffered frames
6911 * for STA in power save */
6912 WMI_HOST_AP_PS_PEER_PARAM_AGEOUT_TIME = 2,
6913
6914 /** Specify frame types that are considered SIFS
6915 * RESP trigger frame */
6916 WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_FRMTYPE = 3,
6917
6918 /** Specifies the trigger state of TID.
6919 * Valid only for UAPSD frame type */
6920 WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_UAPSD = 4,
6921
6922 /** Specifies the WNM sleep state of a STA */
6923 WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP = 5,
6924};
6925#define WMI_HOST_RXERR_CRC 0x01 /* CRC error on frame */
6926#define WMI_HOST_RXERR_DECRYPT 0x08 /* non-Michael decrypt error */
6927#define WMI_HOST_RXERR_MIC 0x10 /* Michael MIC decrypt error */
6928#define WMI_HOST_RXERR_KEY_CACHE_MISS 0x20 /* No/incorrect key matter in h/w */
6929
6930enum wmi_host_sta_ps_param_uapsd {
6931 WMI_HOST_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
6932 WMI_HOST_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
6933 WMI_HOST_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
6934 WMI_HOST_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
6935 WMI_HOST_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
6936 WMI_HOST_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
6937 WMI_HOST_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
6938 WMI_HOST_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
6939};
6940
6941enum wmi_host_sta_ps_param_rx_wake_policy {
6942 /* Wake up when ever there is an RX activity on the VDEV. In this mode
6943 * the Power save SM(state machine) will come out of sleep by either
6944 * sending null frame (or) a data frame (with PS==0) in response to TIM
6945 * bit set in the received beacon frame from AP.
6946 */
6947 WMI_HOST_STA_PS_RX_WAKE_POLICY_WAKE = 0,
6948
6949 /* Here the power save state machine will not wakeup in response to TIM
6950 * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
6951 * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
6952 * access categories are delivery-enabled, the station will send a UAPSD
6953 * trigger frame, otherwise it will send a PS-Poll.
6954 */
6955 WMI_HOST_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1,
6956};
6957enum wmi_host_sta_ps_param_pspoll_count {
6958 WMI_HOST_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
6959 /* Values greater than 0 indicate the maximum numer of PS-Poll frames FW
6960 * will send before waking up.
6961 */
6962};
6963/** Number of tx frames/beacon that cause the power save SM to wake up.
6964 *
6965 * Value 1 causes the SM to wake up for every TX. Value 0 has a special
6966 * meaning, It will cause the SM to never wake up. This is useful if you want
6967 * to keep the system to sleep all the time for some kind of test mode . host
6968 * can change this parameter any time. It will affect at the next tx frame.
6969 */
6970enum wmi_host_sta_ps_param_tx_wake_threshold {
6971 WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0,
6972 WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1,
6973
6974 /* Values greater than one indicate that many TX attempts per beacon
6975 * interval before the STA will wake up
6976 */
6977};
6978/*
6979 * Transmit power scale factor.
6980 *
6981 */
6982typedef enum {
6983 WMI_HOST_TP_SCALE_MAX = 0, /* no scaling (default) */
6984 WMI_HOST_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */
6985 WMI_HOST_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */
6986 WMI_HOST_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */
6987 WMI_HOST_TP_SCALE_MIN = 4, /* min, but still on */
6988 WMI_HOST_TP_SCALE_SIZE = 5, /* max num of enum */
6989} WMI_HOST_TP_SCALE;
6990enum {
6991 WMI_HOST_RATEPWR_TABLE_OPS_SET,
6992 WMI_HOST_RATEPWR_TABLE_OPS_GET,
6993};
6994/* reserved up through 0xF */
6995/**
6996 * struct wmi_host_dcs_mib_stats - WLAN IM stats from target to host
6997 * Below statistics are sent from target to host periodically.
6998 * These are collected at target as long as target is running
6999 * and target chip is not in sleep.
7000 * @listen_time:
7001 * @reg_tx_frame_cnt:
7002 * @reg_rx_frame_cnt:
7003 * @reg_rxclr_cnt:
7004 * @reg_cycle_cnt: delta cycle count
7005 * @reg_rxclr_ext_cnt:
7006 * @reg_ofdm_phyerr_cnt:
7007 * @reg_cck_phyerr_cnt: CCK err count since last reset, read from register
7008 */
7009typedef struct _hp_dcs_mib_stats {
7010 int32_t listen_time;
7011 uint32_t reg_tx_frame_cnt;
7012 uint32_t reg_rx_frame_cnt;
7013 uint32_t reg_rxclr_cnt;
7014 uint32_t reg_cycle_cnt;
7015 uint32_t reg_rxclr_ext_cnt;
7016 uint32_t reg_ofdm_phyerr_cnt;
7017 uint32_t reg_cck_phyerr_cnt;
7018} wmi_host_dcs_mib_stats_t;
7019
7020/**
7021 * struct wmi_host_dcs_im_tgt_stats - DCS IM target stats
7022 * @reg_tsf32: current running TSF from the TSF-1
7023 * @last_ack_rssi: Known last frame rssi, in case of multiple stations, if
7024 * and at different ranges, this would not gaurantee that
7025 * this is the least rssi.
7026 * @tx_waste_time: Sum of all the failed durations in the last
7027 * one second interval.
7028 * @rx_time: count how many times the hal_rxerr_phy is marked, in this
7029 * time period
7030 * @phyerr_cnt:
7031 * @mib_stats: wmi_host_dcs_mib_stats_t - collected mib stats as explained
7032 * in mib structure
Sathish Kumarba2b5da2016-11-08 14:58:29 +05307033 * @chan_nf: Channel noise floor (Units are in dBm)
7034 * @my_bss_rx_cycle_count: BSS rx cycle count
Govind Singh89727882016-04-15 13:58:27 +05307035 */
7036typedef struct _wmi_host_dcs_im_tgt_stats {
7037 uint32_t reg_tsf32;
7038 uint32_t last_ack_rssi;
7039 uint32_t tx_waste_time;
7040 uint32_t rx_time;
7041 uint32_t phyerr_cnt;
7042 wmi_host_dcs_mib_stats_t mib_stats;
Sathish Kumarba2b5da2016-11-08 14:58:29 +05307043 uint32_t chan_nf;
7044 uint32_t my_bss_rx_cycle_count;
Govind Singh89727882016-04-15 13:58:27 +05307045} wmi_host_dcs_im_tgt_stats_t;
7046
7047/**
7048 * Enum for pktlog req
7049 */
7050typedef enum {
7051 WMI_HOST_PKTLOG_EVENT_RX = 0x1,
7052 WMI_HOST_PKTLOG_EVENT_TX = 0x2,
7053 WMI_HOST_PKTLOG_EVENT_RCF = 0x4, /* Rate Control Find */
7054 WMI_HOST_PKTLOG_EVENT_RCU = 0x8, /* Rate Control Update */
7055 WMI_HOST_PKTLOG_EVENT_DBG_PRINT = 0x10, /* DEBUG prints */
7056 /* To support Smart Antenna */
7057 WMI_HOST_PKTLOG_EVENT_SMART_ANTENNA = 0x20,
7058 WMI_HOST_PKTLOG_EVENT_H_INFO = 0x40,
7059 WMI_HOST_PKTLOG_EVENT_STEERING = 0x80,
Sathish Kumar657402a2016-09-26 14:48:09 +05307060 /* To support Tx data Capture */
7061 WMI_HOST_PKTLOG_EVENT_TX_DATA_CAPTURE = 0x100,
Govind Singh89727882016-04-15 13:58:27 +05307062} WMI_HOST_PKTLOG_EVENT;
7063
7064/**
7065 * wmi_host_phyerr
7066 *
7067 */
7068#define WMI_HOST_PHY_ERROR_SPECTRAL_SCAN 0x26
7069#define WMI_HOST_PHY_ERROR_FALSE_RADAR_EXT 0x24
7070
7071#define WMI_HOST_AR900B_DFS_PHYERR_MASK 0x4
7072#define WMI_HOST_AR900B_SPECTRAL_PHYERR_MASK 0x4000000
7073
7074/**
7075 * struct wmi_host_perchain_rssi_info - per chain RSSI info
7076 * @rssi_pri20: RSSI on primary 20
7077 * @rssi_sec20: RSSI on secomdary 20
7078 * @rssi_sec40: RSSI secondary 40
7079 * @rssi_sec80: RSSI secondary 80
7080 */
7081typedef struct wmi_host_perchain_rssi_info {
7082 int8_t rssi_pri20;
7083 int8_t rssi_sec20;
7084 int8_t rssi_sec40;
7085 int8_t rssi_sec80;
7086} wmi_host_perchain_rssi_info_t;
7087
7088/**
7089 * struct _wmi_host_rf_info - RF measurement information
7090 * @rssi_comb: RSSI Information
7091 * @pc_rssi_info[4]: For now, we know we are getting information
7092 * for only 4 chains at max. For future extensions
7093 * use a define
7094 * @noise_floor: Noise floor information
7095 */
7096typedef struct _wmi_host_rf_info {
7097 int8_t rssi_comb;
7098 wmi_host_perchain_rssi_info_t pc_rssi_info[4];
7099 int16_t noise_floor[4];
7100} wmi_host_rf_info_t;
7101
7102/**
7103 * struct _wmi_host_chan_info
7104 * @center_freq1: center frequency 1 in MHz
7105 * @center_freq2: center frequency 2 in MHz -valid only for
7106 * 11ACVHT 80PLUS80 mode
7107 * @chan_width: channel width in MHz
7108 */
7109typedef struct _wmi_host_chan_info {
7110 u_int16_t center_freq1;
7111 u_int16_t center_freq2;
7112 u_int8_t chan_width;
7113} wmi_host_chan_info_t;
7114
7115/**
7116 * struct wmi_host_phyerr
7117 * @rf_info:
7118 * @chan_info:
7119 * @tsf64:
7120 * @phy_err_code:
7121 * @tsf_timestamp:
7122 * @bufp:
7123 * @buf_len:
7124 * @phy_err_mask0:
7125 * @phy_err_mask1:
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307126 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05307127 */
7128typedef struct _wmi_host_phyerr {
7129 wmi_host_rf_info_t rf_info;
7130 wmi_host_chan_info_t chan_info;
7131 uint64_t tsf64;
7132 int32_t phy_err_code;
7133 uint32_t tsf_timestamp;
7134 uint8_t *bufp;
7135 uint32_t buf_len;
7136 uint32_t phy_err_mask0;
7137 uint32_t phy_err_mask1;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307138 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307139} wmi_host_phyerr_t;
7140
7141/**
7142 * struct wmi_host_rtt_event_hdr
7143 * @req_id: request id
7144 * @status: status
7145 * @meas_done: measurement done flag
7146 * @meas_type: measurement type
7147 * @report_type: report type
7148 * @v3_status: v2 status
7149 * @v3_finish:
7150 * @v3_tm_start:
7151 * @num_ap: number of AP
7152 * @result: resuult
7153 * @dest_mac: destination mac
7154 */
7155typedef struct {
7156 uint16_t req_id;
7157 uint16_t status:1,
7158 meas_done:1,
7159 meas_type:3,
7160 report_type:3,
7161 v3_status:2,
7162 v3_finish:1,
7163 v3_tm_start:1,
7164 num_ap:4;
7165 uint16_t result;
7166 uint8_t dest_mac[IEEE80211_ADDR_LEN];
7167} wmi_host_rtt_event_hdr;
7168
7169/**
7170 * struct wmi_host_rtt_meas_event - RTT measurement event
7171 * @chain_mask:
7172 * @bw:
7173 * @rsvd:
7174 * @txrxchain_mask: Bit:0-3:chain mask
7175 * Bit 4-5: band width info
7176 * 00 --Legacy 20, 01 --HT/VHT20
7177 * 10 --HT/VHT40, 11 -- VHT80
7178 * @tod: resolution of 0.1ns
7179 * @toa: resolution of 0.1ns
7180 * @t3:
7181 * @t4:
7182 * @rssi0:
7183 * @rssi1:
7184 * @rssi2:
7185 * @rssi3:
7186 */
7187typedef struct {
7188 uint32_t chain_mask:3,
7189 bw:2,
7190 rsvd:27;
7191 uint32_t txrxchain_mask;
7192 uint64_t tod;
7193 uint64_t toa;
7194 uint64_t t3;
7195 uint64_t t4;
7196 uint32_t rssi0;
7197 uint32_t rssi1;
7198 uint32_t rssi2;
7199 uint32_t rssi3;
7200} wmi_host_rtt_meas_event;
7201
7202/*----RTT Report event definition ----*/
7203typedef enum {
7204 /* rtt cmd header parsing error --terminate */
7205 WMI_HOST_RTT_COMMAND_HEADER_ERROR = 0,
7206 /* rtt body parsing error -- skip current STA REQ */
7207 WMI_HOST_RTT_COMMAND_ERROR,
7208 /* rtt no resource -- terminate */
7209 WMI_HOST_RTT_MODULE_BUSY,
7210 /* STA exceed the support limit -- only server the first n STA */
7211 WMI_HOST_RTT_TOO_MANY_STA,
7212 /* any allocate failure */
7213 WMI_HOST_RTT_NO_RESOURCE,
7214 /* can not find vdev with vdev ID - skip current STA REQ */
7215 WMI_HOST_RTT_VDEV_ERROR,
7216 /* Tx failure -- continiue and measure number */
7217 WMI_HOST_RTT_TRANSIMISSION_ERROR,
7218 /* wait for first TM timer expire-terminate current STA measurement */
7219 WMI_HOST_RTT_TM_TIMER_EXPIRE,
7220 /* we do not support RTT measurement with this type of frame */
7221 WMI_HOST_RTT_FRAME_TYPE_NOSUPPORT,
7222 /* whole RTT measurement timer expire-terminate
7223 ** current STA measurement */
7224 WMI_HOST_RTT_TIMER_EXPIRE,
7225 /* channel swicth failed */
7226 WMI_HOST_RTT_CHAN_SWITCH_ERROR,
7227 /* TMR trans error, this dest peer will be skipped */
7228 WMI_HOST_RTT_TMR_TRANS_ERROR,
7229 /* V3 only. If both CFR and Token mismatch, do not report */
7230 WMI_HOST_RTT_NO_REPORT_BAD_CFR_TOKEN,
7231 /* For First TM, if CFR is bad, then do not report */
7232 WMI_HOST_RTT_NO_REPORT_FIRST_TM_BAD_CFR,
7233 /* do not allow report type2 mix with type 0, 1 */
7234 WMI_HOST_RTT_REPORT_TYPE2_MIX,
7235 /* LCI Configuration OK. - Responder only */
7236 WMI_HOST_RTT_LCI_CFG_OK,
7237 /* LCR configuration OK. - Responder only */
7238 WMI_HOST_RTT_LCR_CFG_OK,
7239 /* Bad configuration LCI (or) LCR request - Responder only */
7240 WMI_HOST_RTT_CFG_ERROR,
7241 WMI_HOST_WMI_RTT_REJECT_MAX,
7242} WMI_HOST_RTT_ERROR_INDICATOR;
7243typedef struct {
7244 wmi_host_rtt_event_hdr hdr;
7245 WMI_HOST_RTT_ERROR_INDICATOR reject_reason;
7246} wmi_host_rtt_error_report_event;
7247
7248#if defined(AR9888)
7249typedef enum {
7250 WMI_HOST_PROF_CPU_IDLE,
7251 WMI_HOST_PROF_PPDU_PROC,
7252 WMI_HOST_PROF_PPDU_POST,
7253 WMI_HOST_PROF_HTT_TX_INPUT,
7254 WMI_HOST_PROF_MSDU_ENQ,
7255 WMI_HOST_PROF_PPDU_POST_HAL,
7256 WMI_HOST_PROF_COMPUTE_TX_TIME,
7257
7258 /* Add new ID's above this. */
7259 WMI_HOST_PROF_MAX_ID,
7260} wmi_host_profile_id_t;
7261#endif
7262
7263#define WMI_HOST_WLAN_PROFILE_MAX_HIST 3
7264#define WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT 32
7265
7266#if defined(AR9888)
7267#define WMI_HOST_MAX_PROFILE WMI_HOST_PROF_MAX_ID
7268#else
7269#define WMI_HOST_MAX_PROFILE WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT
7270#endif
7271
7272/**
7273 * struct wmi_host_wlan_profile - Host profile param
7274 * @id: profile id
7275 * @cnt: Count
7276 * @tot:
7277 * @min: minimum
7278 * @max: Mac
7279 * @hist_intvl: history interval
7280 * @hist: profile data history
7281 */
7282typedef struct {
7283 uint32_t id;
7284 uint32_t cnt;
7285 uint32_t tot;
7286 uint32_t min;
7287 uint32_t max;
7288 uint32_t hist_intvl;
7289 uint32_t hist[WMI_HOST_WLAN_PROFILE_MAX_HIST];
7290} wmi_host_wlan_profile_t;
7291
7292/**
7293 * struct wmi_host_wlan_profile_ctx_t - profile context
7294 * @tot: time in us
7295 * @tx_msdu_cnt: MSDU TX count
7296 * @tx_mpdu_cnt: MPDU tx count
7297 * @tx_ppdu_cnt: PPDU tx count
7298 * @rx_msdu_cnt: MSDU RX count
7299 * @rx_mpdu_cnt: MPDU RXcount
7300 * @bin_count: Bin count
7301 */
7302typedef struct {
7303 uint32_t tot;
7304 uint32_t tx_msdu_cnt;
7305 uint32_t tx_mpdu_cnt;
7306 uint32_t tx_ppdu_cnt;
7307 uint32_t rx_msdu_cnt;
7308 uint32_t rx_mpdu_cnt;
7309 uint32_t bin_count;
7310} wmi_host_wlan_profile_ctx_t;
7311
7312/**
Govind Singh89727882016-04-15 13:58:27 +05307313 * struct wmi_host_chan_info_event - Channel info WMI event
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307314 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05307315 * @err_code: Error code
7316 * @freq: Channel freq
7317 * @cmd_flags: Read flags
7318 * @noise_floor: Noise Floor value
7319 * @rx_clear_count: rx clear count
7320 * @cycle_count: cycle count
7321 * @chan_tx_pwr_range: channel tx power per range
7322 * @chan_tx_pwr_tp: channel tx power per throughput
7323 * @rx_frame_count: rx frame count
7324 * @rx_11b_mode_data_duration: 11b mode data duration
Kiran Venkatappa8747f622017-08-10 17:48:37 +05307325 * @my_bss_rx_cycle_count: BSS rx cycle count
7326 * @tx_frame_cnt: tx frame count
7327 * @mac_clk_mhz: mac clock
7328 * @vdev_id: unique id identifying the VDEV
Govind Singh89727882016-04-15 13:58:27 +05307329 */
7330typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307331 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307332 uint32_t err_code;
7333 uint32_t freq;
7334 uint32_t cmd_flags;
7335 uint32_t noise_floor;
7336 uint32_t rx_clear_count;
7337 uint32_t cycle_count;
7338 uint32_t chan_tx_pwr_range;
7339 uint32_t chan_tx_pwr_tp;
7340 uint32_t rx_frame_count;
7341 uint32_t rx_11b_mode_data_duration;
Kiran Venkatappa8747f622017-08-10 17:48:37 +05307342 uint32_t my_bss_rx_cycle_count;
7343 uint32_t tx_frame_cnt;
7344 uint32_t mac_clk_mhz;
7345 uint32_t vdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307346} wmi_host_chan_info_event;
7347
7348/**
7349 * struct wmi_host_pdev_channel_hopping_event
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307350 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05307351 * @noise_floor_report_iter: Noise threshold iterations with high values
7352 * @noise_floor_total_iter: Total noise threshold iterations
7353 */
7354typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307355 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307356 uint32_t noise_floor_report_iter;
7357 uint32_t noise_floor_total_iter;
7358} wmi_host_pdev_channel_hopping_event;
7359
7360/**
7361 * struct wmi_host_pdev_bss_chan_info_event
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307362 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05307363 * @freq: Units in MHz
7364 * @noise_floor: units are dBm
7365 * @rx_clear_count_low:
7366 * @rx_clear_count_high:
7367 * @cycle_count_low:
7368 * @cycle_count_high:
7369 * @tx_cycle_count_low:
7370 * @tx_cycle_count_high:
7371 * @rx_cycle_count_low:
7372 * @rx_cycle_count_high:
7373 * @rx_bss_cycle_count_low:
7374 * @rx_bss_cycle_count_high:
7375 * @reserved:
7376 */
7377typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307378 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307379 uint32_t freq;
7380 uint32_t noise_floor;
7381 uint32_t rx_clear_count_low;
7382 uint32_t rx_clear_count_high;
7383 uint32_t cycle_count_low;
7384 uint32_t cycle_count_high;
7385 uint32_t tx_cycle_count_low;
7386 uint32_t tx_cycle_count_high;
7387 uint32_t rx_cycle_count_low;
7388 uint32_t rx_cycle_count_high;
7389 uint32_t rx_bss_cycle_count_low;
7390 uint32_t rx_bss_cycle_count_high;
7391 uint32_t reserved;
7392} wmi_host_pdev_bss_chan_info_event;
7393
7394#define WMI_HOST_INST_STATS_INVALID_RSSI 0
7395/**
7396 * struct wmi_host_inst_stats_resp
7397 * @iRSSI: Instantaneous RSSI
7398 * @peer_macaddr: peer mac address
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307399 * @pdev_id: pdev_id
Govind Singh89727882016-04-15 13:58:27 +05307400 */
7401typedef struct {
7402 uint32_t iRSSI;
7403 wmi_host_mac_addr peer_macaddr;
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307404 uint32_t pdev_id;
Govind Singh89727882016-04-15 13:58:27 +05307405} wmi_host_inst_stats_resp;
7406
7407/* Event definition and new structure addition to send event
7408 * to host to block/unblock tx data traffic based on peer_ast_idx or vdev id
7409 */
7410#define WMI_HOST_INVALID_PEER_AST_INDEX 0xffff
7411#define WMI_HOST_TX_DATA_TRAFFIC_CTRL_BLOCK 0x1
7412#define WMI_HOST_TX_DATA_TRAFFIC_CTRL_UNBLOCK 0x2
7413/**
7414 * struct wmi_host_tx_data_traffic_ctrl_event
7415 * @peer_ast_idx: For vdev based control, peer_ast_idx will be
7416 * WMI_INVALID_PEER_AST_INDEX
7417 * @vdev_id: only applies if peer_ast_idx == INVALID
7418 * @ctrl_cmd: WMI_TX_DATA_TRAFFIC_CTRL_BLOCK or
7419 * WMI_TX_DATA_TRAFFIC_CTRL_UNBLOCK
7420 */
7421typedef struct {
7422 uint32_t peer_ast_idx;
7423 uint32_t vdev_id;
7424 uint32_t ctrl_cmd;
7425} wmi_host_tx_data_traffic_ctrl_event;
7426
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307427enum {
7428 WMI_HOST_ATF_PEER_STATS_DISABLED = 0,
7429 WMI_HOST_ATF_PEER_STATS_ENABLED = 1,
7430};
7431
7432#define WMI_HOST_ATF_PEER_STATS_GET_PEER_AST_IDX(token_info) \
7433 (token_info.field1 & 0xffff)
7434
7435#define WMI_HOST_ATF_PEER_STATS_GET_USED_TOKENS(token_info) \
7436 ((token_info.field2 & 0xffff0000) >> 16)
7437
7438#define WMI_HOST_ATF_PEER_STATS_GET_UNUSED_TOKENS(token_info) \
7439 (token_info.field2 & 0xffff)
7440
7441#define WMI_HOST_ATF_PEER_STATS_SET_PEER_AST_IDX(token_info, peer_ast_idx) \
7442 do { \
7443 token_info.field1 &= 0xffff0000; \
7444 token_info.field1 |= ((peer_ast_idx) & 0xffff); \
7445 } while (0)
7446
7447#define WMI_HOST_ATF_PEER_STATS_SET_USED_TOKENS(token_info, used_token) \
7448 do { \
7449 token_info.field2 &= 0x0000ffff; \
7450 token_info.field2 |= (((used_token) & 0xffff) << 16); \
7451 } while (0)
7452
7453#define WMI_HOST_ATF_PEER_STATS_SET_UNUSED_TOKENS(token_info, unused_token) \
7454 do { \
7455 token_info.field2 &= 0xffff0000; \
7456 token_info.field2 |= ((unused_token) & 0xffff); \
7457 } while (0)
7458
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307459/**
7460 * struct wmi_host_atf_peer_stats_info
7461 * @field1: bits 15:0 peer_ast_index WMI_ATF_PEER_STATS_GET_PEER_AST_IDX
7462 * bits 31:16 reserved
7463 * @field2: bits 15:0 used tokens WMI_ATF_PEER_STATS_GET_USED_TOKENS
7464 * bits 31:16 unused tokens WMI_ATF_PEER_STATS_GET_UNUSED_TOKENS
7465 * @field3: for future use
7466 */
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307467typedef struct {
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307468 uint32_t field1;
7469 uint32_t field2;
7470 uint32_t field3;
7471} wmi_host_atf_peer_stats_info;
7472
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307473/**
7474 * struct wmi_host_atf_peer_stats_event
7475 * @pdev_id: pdev_id
7476 * @num_atf_peers: number of peers in token_info_list
7477 * @comp_usable_airtime: computed usable airtime in tokens
7478 * @reserved[4]: reserved for future use
7479 * @wmi_host_atf_peer_stats_info token_info_list: list of num_atf_peers
7480 */
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307481typedef struct {
Kiran Venkatappa6e7bb5e2017-02-08 14:51:13 +05307482 uint32_t pdev_id;
7483 uint32_t num_atf_peers;
7484 uint32_t comp_usable_airtime;
7485 uint32_t reserved[4];
7486 wmi_host_atf_peer_stats_info token_info_list[1];
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307487} wmi_host_atf_peer_stats_event;
7488
Govind Singh89727882016-04-15 13:58:27 +05307489/**
7490 * struct wmi_host_ath_dcs_cw_int
7491 * @channel: either number or freq in mhz
7492 */
7493typedef struct {
7494 uint32_t channel;
7495} wmi_host_ath_dcs_cw_int;
Govind Singhc10bde82016-05-02 17:59:24 +05307496
7497#define WMI_MAX_POWER_DBG_ARGS 8
7498
7499/**
7500 * struct wmi_power_dbg_params - power debug command parameter
7501 * @pdev_id: subsystem identifier
7502 * @module_id: parameter id
7503 * @num_arg: no of arguments
7504 * @args: arguments
7505 */
7506struct wmi_power_dbg_params {
7507 uint32_t pdev_id;
7508 uint32_t module_id;
7509 uint32_t num_args;
7510 uint32_t args[WMI_MAX_POWER_DBG_ARGS];
7511};
7512
Gupta, Kapil7b768002016-04-25 19:14:19 +05307513/**
7514 * struct wmi_adaptive_dwelltime_params - the adaptive dwelltime params
7515 * @vdev_id: vdev id
7516 * @is_enabled: Adaptive dwell time is enabled/disabled
7517 * @dwelltime_mode: global default adaptive dwell mode
7518 * @lpf_weight: weight to calculate the average low pass
7519 * filter for channel congestion
7520 * @passive_mon_intval: intval to monitor wifi activity in passive scan in msec
7521 * @wifi_act_threshold: % of wifi activity used in passive scan 0-100
7522 *
7523 */
7524struct wmi_adaptive_dwelltime_params {
7525 uint32_t vdev_id;
7526 bool is_enabled;
Sandeep Puligillaae328c82018-03-26 16:39:28 -07007527 enum scan_dwelltime_adaptive_mode dwelltime_mode;
Gupta, Kapil7b768002016-04-25 19:14:19 +05307528 uint8_t lpf_weight;
7529 uint8_t passive_mon_intval;
7530 uint8_t wifi_act_threshold;
7531};
Govind Singhc7cd2d62016-06-21 14:33:26 +05307532
7533/**
Kapil Guptaf6eb7312017-02-24 15:50:03 +05307534 * struct wmi_per_roam_config - per based roaming parameters
7535 * @enable: if PER based roaming is enabled/disabled
7536 * @tx_high_rate_thresh: high rate threshold at which PER based
7537 * roam will stop in tx path
7538 * @rx_high_rate_thresh: high rate threshold at which PER based
7539 * roam will stop in rx path
7540 * @tx_low_rate_thresh: rate below which traffic will be considered
7541 * for PER based roaming in Tx path
7542 * @rx_low_rate_thresh: rate below which traffic will be considered
7543 * for PER based roaming in Tx path
7544 * @tx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh
7545 * will be considered for PER based scan in tx path
7546 * @rx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh
7547 * will be considered for PER based scan in rx path
7548 * @per_rest_time: time for which PER based roam will wait once it
7549 * issues a roam scan.
Kapil Gupta7dae4262017-02-13 15:51:52 +05307550 * @tx_per_mon_time: Minimum time required to be considered as valid scenario
7551 * for PER based roam in tx path
7552 * @rx_per_mon_time: Minimum time required to be considered as valid scenario
7553 * for PER based roam in rx path
Selvaraj, Sridharc1a80d02017-05-17 16:05:15 +05307554 * @min_candidate_rssi: Minimum RSSI threshold for candidate AP to be used for
7555 * PER based roaming
Kapil Guptaf6eb7312017-02-24 15:50:03 +05307556 */
7557struct wmi_per_roam_config {
7558 uint32_t enable;
7559 uint32_t tx_high_rate_thresh;
7560 uint32_t rx_high_rate_thresh;
7561 uint32_t tx_low_rate_thresh;
7562 uint32_t rx_low_rate_thresh;
7563 uint32_t tx_rate_thresh_percnt;
7564 uint32_t rx_rate_thresh_percnt;
7565 uint32_t per_rest_time;
Kapil Gupta7dae4262017-02-13 15:51:52 +05307566 uint32_t tx_per_mon_time;
7567 uint32_t rx_per_mon_time;
Selvaraj, Sridharc1a80d02017-05-17 16:05:15 +05307568 uint32_t min_candidate_rssi;
Kapil Guptaf6eb7312017-02-24 15:50:03 +05307569};
7570
7571/**
7572 * struct wmi_per_roam_config_req: PER based roaming config request
7573 * @vdev_id: vdev id on which config needs to be set
7574 * @per_config: PER config
7575 */
7576struct wmi_per_roam_config_req {
7577 uint8_t vdev_id;
7578 struct wmi_per_roam_config per_config;
7579};
7580
7581/**
Govind Singhc7cd2d62016-06-21 14:33:26 +05307582 * struct wmi_fw_dump_seg_req - individual segment details
7583 * @seg_id - segment id.
7584 * @seg_start_addr_lo - lower address of the segment.
7585 * @seg_start_addr_hi - higher address of the segment.
7586 * @seg_length - length of the segment.
7587 * @dst_addr_lo - lower address of the destination buffer.
7588 * @dst_addr_hi - higher address of the destination buffer.
7589 *
7590 * This structure carries the information to firmware about the
7591 * individual segments. This structure is part of firmware memory
7592 * dump request.
7593 */
7594struct wmi_fw_dump_seg_req {
7595 uint8_t seg_id;
7596 uint32_t seg_start_addr_lo;
7597 uint32_t seg_start_addr_hi;
7598 uint32_t seg_length;
7599 uint32_t dst_addr_lo;
7600 uint32_t dst_addr_hi;
7601};
7602
7603/**
7604 * enum wmi_userspace_log_level - Log level at userspace
7605 * @WMI_LOG_LEVEL_NO_COLLECTION: verbose_level 0 corresponds to no collection
7606 * @WMI_LOG_LEVEL_NORMAL_COLLECT: verbose_level 1 correspond to normal log
7607 * level with minimal user impact. This is the default value.
7608 * @WMI_LOG_LEVEL_ISSUE_REPRO: verbose_level 2 are enabled when user is lazily
7609 * trying to reproduce a problem, wifi performances and power can be impacted
7610 * but device should not otherwise be significantly impacted
7611 * @WMI_LOG_LEVEL_ACTIVE: verbose_level 3+ are used when trying to
7612 * actively debug a problem
7613 *
7614 * Various log levels defined in the userspace for logging applications
7615 */
7616enum wmi_userspace_log_level {
7617 WMI_LOG_LEVEL_NO_COLLECTION,
7618 WMI_LOG_LEVEL_NORMAL_COLLECT,
7619 WMI_LOG_LEVEL_ISSUE_REPRO,
7620 WMI_LOG_LEVEL_ACTIVE,
7621};
7622
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +05307623/**
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05307624 * HW mode config type replicated from FW header
7625 * @WMI_HOST_HW_MODE_SINGLE: Only one PHY is active.
7626 * @WMI_HOST_HW_MODE_DBS: Both PHYs are active in different bands,
7627 * one in 2G and another in 5G.
7628 * @WMI_HOST_HW_MODE_SBS_PASSIVE: Both PHYs are in passive mode (only rx) in
7629 * same band; no tx allowed.
7630 * @WMI_HOST_HW_MODE_SBS: Both PHYs are active in the same band.
7631 * Support for both PHYs within one band is planned
7632 * for 5G only(as indicated in WMI_MAC_PHY_CAPABILITIES),
7633 * but could be extended to other bands in the future.
7634 * The separation of the band between the two PHYs needs
7635 * to be communicated separately.
7636 * @WMI_HOST_HW_MODE_DBS_SBS: 3 PHYs, with 2 on the same band doing SBS
7637 * as in WMI_HW_MODE_SBS, and 3rd on the other band
Kiran Venkatappa29d4ef02017-08-02 12:11:09 +05307638 * @WMI_HOST_HW_MODE_DBS_OR_SBS: Two PHY with one PHY capabale of both 2G and
7639 * 5G. It can support SBS (5G + 5G) OR DBS (5G + 2G).
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05307640 * @WMI_HOST_HW_MODE_MAX: Max hw_mode_id. Used to indicate invalid mode.
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05307641 */
7642enum wmi_host_hw_mode_config_type {
7643 WMI_HOST_HW_MODE_SINGLE = 0,
7644 WMI_HOST_HW_MODE_DBS = 1,
7645 WMI_HOST_HW_MODE_SBS_PASSIVE = 2,
7646 WMI_HOST_HW_MODE_SBS = 3,
7647 WMI_HOST_HW_MODE_DBS_SBS = 4,
Kiran Venkatappa29d4ef02017-08-02 12:11:09 +05307648 WMI_HOST_HW_MODE_DBS_OR_SBS = 5,
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05307649 WMI_HOST_HW_MODE_MAX,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05307650};
7651
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307652/*
7653 * struct wmi_host_peer_txmu_cnt_event
7654 * @tx_mu_transmitted - MU-MIMO tx count
7655 */
7656typedef struct {
7657 uint32_t tx_mu_transmitted;
7658} wmi_host_peer_txmu_cnt_event;
7659
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007660#define MAX_SAR_LIMIT_ROWS_SUPPORTED 64
7661/**
Jeff Johnsonefb43392017-12-14 15:50:16 -08007662 * struct sar_limit_cmd_row - sar limits row
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007663 * @band_id: Optional param for frequency band
Jeff Johnsonefb43392017-12-14 15:50:16 -08007664 * See %enum wmi_sar_band_id_flags for possible values
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007665 * @chain_id: Optional param for antenna chain id
7666 * @mod_id: Optional param for modulation scheme
Jeff Johnsonefb43392017-12-14 15:50:16 -08007667 * See %enum wmi_sar_mod_id_flags for possible values
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007668 * @limit_value: Mandatory param providing power limits in steps of 0.5 dbm
7669 * @validity_bitmap: bitmap of valid optional params in sar_limit_cmd_row struct
Jeff Johnsonefb43392017-12-14 15:50:16 -08007670 * See WMI_SAR_*_VALID_MASK for possible values
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007671 */
7672struct sar_limit_cmd_row {
7673 uint32_t band_id;
7674 uint32_t chain_id;
7675 uint32_t mod_id;
7676 uint32_t limit_value;
7677 uint32_t validity_bitmap;
7678};
7679
7680/**
Jeff Johnsonefb43392017-12-14 15:50:16 -08007681 * struct sar_limit_cmd_params - sar limits params
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007682 * @sar_enable: flag to enable SAR
Jeff Johnsonefb43392017-12-14 15:50:16 -08007683 * See %enum wmi_sar_feature_state_flags for possible values
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08007684 * @num_limit_rows: number of items in sar_limits
7685 * @commit_limits: indicates firmware to start apply new SAR values
7686 * @sar_limit_row_list: pointer to array of sar limit rows
7687 */
7688struct sar_limit_cmd_params {
7689 uint32_t sar_enable;
7690 uint32_t num_limit_rows;
7691 uint32_t commit_limits;
7692 struct sar_limit_cmd_row *sar_limit_row_list;
7693};
7694
Jeff Johnsonefb43392017-12-14 15:50:16 -08007695/**
7696 * struct sar_limit_event_row - sar limits row
7697 * @band_id: Frequency band.
7698 * See %enum wmi_sar_band_id_flags for possible values
7699 * @chain_id: Chain id
7700 * @mod_id: Modulation scheme
7701 * See %enum wmi_sar_mod_id_flags for possible values
7702 * @limit_value: Power limits in steps of 0.5 dbm that is currently active for
7703 * the given @band_id, @chain_id, and @mod_id
7704 */
7705struct sar_limit_event_row {
7706 uint32_t band_id;
7707 uint32_t chain_id;
7708 uint32_t mod_id;
7709 uint32_t limit_value;
7710};
7711
7712/**
7713 * struct sar_limit_event - sar limits params
7714 * @sar_enable: Current status of SAR enablement.
7715 * See %enum wmi_sar_feature_state_flags for possible values
7716 * @num_limit_rows: number of items in sar_limits
7717 * @sar_limit_row: array of sar limit rows. Only @num_limit_rows
7718 * should be considered valid.
7719 */
7720struct sar_limit_event {
7721 uint32_t sar_enable;
7722 uint32_t num_limit_rows;
7723 struct sar_limit_event_row
7724 sar_limit_row[MAX_SAR_LIMIT_ROWS_SUPPORTED];
7725};
7726
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307727/*
7728 * struct wmi_peer_gid_userpos_list_event
7729 * @usr_list - User list
7730 */
7731#define GID_OVERLOAD_GROUP_COUNT 15
7732typedef struct {
7733 uint32_t usr_list[GID_OVERLOAD_GROUP_COUNT];
7734} wmi_host_peer_gid_userpos_list_event;
7735
Rajeev Kumar Sirasanagandlacddf6fe2016-11-22 21:28:54 +05307736/**
7737 * enum rcpi_measurement_type - for identifying type of rcpi measurement
7738 * @RCPI_MEASUREMENT_TYPE_AVG_MGMT: avg rcpi of mgmt frames
7739 * @RCPI_MEASUREMENT_TYPE_AVG_DATA: avg rcpi of data frames
7740 * @RCPI_MEASUREMENT_TYPE_LAST_MGMT: rcpi of last mgmt frame
7741 * @RCPI_MEASUREMENT_TYPE_LAST_DATA: rcpi of last data frame
7742 * @RCPI_MEASUREMENT_TYPE_INVALID: invalid rcpi measurement type
7743 */
7744enum rcpi_measurement_type {
7745 RCPI_MEASUREMENT_TYPE_AVG_MGMT = 0x1,
7746 RCPI_MEASUREMENT_TYPE_AVG_DATA = 0x2,
7747 RCPI_MEASUREMENT_TYPE_LAST_MGMT = 0x3,
7748 RCPI_MEASUREMENT_TYPE_LAST_DATA = 0x4,
7749 RCPI_MEASUREMENT_TYPE_INVALID = 0x5,
7750};
7751
7752/**
7753 * struct rcpi_req - RCPI req parameter
7754 * @vdev_id: virtual device id
7755 * @measurement_type: type of rcpi from enum wmi_rcpi_measurement_type
7756 * @mac_addr: peer mac addr for which measurement is required
7757 */
7758struct rcpi_req {
7759 uint32_t vdev_id;
7760 enum rcpi_measurement_type measurement_type;
7761 uint8_t mac_addr[IEEE80211_ADDR_LEN];
7762};
7763
7764/**
7765 * struct rcpi_res - RCPI response parameter
7766 * @vdev_id: virtual device id
7767 * @measurement_type: type of rcpi from enum wmi_rcpi_measurement_type
7768 * @mac_addr: peer mac addr for which measurement is required
7769 * @rcpi_value: value of RCPI computed by firmware
7770 */
7771struct rcpi_res {
7772 uint32_t vdev_id;
7773 enum rcpi_measurement_type measurement_type;
7774 uint8_t mac_addr[IEEE80211_ADDR_LEN];
7775 int32_t rcpi_value;
7776};
7777
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307778#define WMI_HOST_BOARD_MCN_STRING_MAX_SIZE 19
7779#define WMI_HOST_BOARD_MCN_STRING_BUF_SIZE \
7780 (WMI_HOST_BOARD_MCN_STRING_MAX_SIZE+1) /* null-terminator */
7781
7782typedef struct {
7783 uint32_t software_cal_version;
7784 uint32_t board_cal_version;
7785 /* board_mcn_detail:
7786 * Provide a calibration message string for the host to display.
Vivek73465282018-03-22 23:27:21 +05307787 * Note: on a big-endian host, the 4 bytes within each uint32_t portion
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05307788 * of a WMI message will be automatically byteswapped by the copy engine
7789 * as the messages are transferred between host and target, to convert
7790 * between the target's little-endianness and the host's big-endianness.
7791 * Consequently, a big-endian host should manually unswap the bytes
7792 * within the board_mcn_detail string buffer to get the bytes back into
7793 * the desired natural order.
7794 */
7795 uint8_t board_mcn_detail[WMI_HOST_BOARD_MCN_STRING_BUF_SIZE];
7796 uint32_t cal_ok; /* filled with CALIBRATION_STATUS enum value */
7797} wmi_host_pdev_check_cal_version_event;
7798
Kiran Venkatappa4110f0a2016-12-27 22:51:29 +05307799/**
7800 * enum WMI_HOST_CALIBRATION_STATUS - Host defined Enums for cal status
7801 * @WMI_HOST_NO_FEATURE: The board was calibrated with a meta
7802 * which did not have this feature
7803 * @WMI_HOST_CALIBRATION_OK: The calibration status is OK
7804 * @WMI_HOST_CALIBRATION_NOT_OK: The calibration status is NOT OK
7805 */
7806enum WMI_HOST_CALIBRATION_STATUS {
7807 WMI_HOST_NO_FEATURE = 0,
7808 WMI_HOST_CALIBRATION_OK,
7809 WMI_HOST_CALIBRATION_NOT_OK,
7810};
7811
Sathish Kumar617535c2017-01-24 17:51:26 +05307812/**
7813 * struct wmi_host_pdev_utf_event - Host defined struct to hold utf event data
7814 * @data: Pointer to data
7815 * @datalen: Data length
Kiran Venkatappac98badb2017-06-01 16:08:17 +05307816 * @pdev_id: Pdev_id of data
Sathish Kumar617535c2017-01-24 17:51:26 +05307817 *
7818 */
7819struct wmi_host_pdev_utf_event {
7820 uint8_t *data;
7821 uint16_t datalen;
Kiran Venkatappa2a93f6f2017-02-28 12:42:36 +05307822 uint32_t pdev_id;
Sathish Kumar617535c2017-01-24 17:51:26 +05307823};
7824
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05307825/**
Kiran Venkatappac98badb2017-06-01 16:08:17 +05307826 * struct wmi_host_utf_seg_header_info - Host defined struct to map seg info in
7827 * UTF event
7828 * @len: segment length
7829 * @msgref: message reference
7830 * @segment_info: segment info
7831 * @pdev_id: pdev_id
7832 *
7833 */
7834struct wmi_host_utf_seg_header_info {
7835 uint32_t len;
7836 uint32_t msgref;
7837 uint32_t segment_info;
7838 uint32_t pdev_id;
7839};
7840
7841/**
Kiran Venkatappa3d514982017-02-28 14:19:17 +05307842 * struct wmi_host_pdev_qvit_event - Host defined struct to hold qvit event data
7843 * @data: Pointer to data
7844 * @datalen: Data length
7845 *
7846 */
7847struct wmi_host_pdev_qvit_event {
7848 uint8_t *data;
7849 uint16_t datalen;
7850 uint32_t pdev_id;
7851};
7852
7853/**
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05307854 * struct wmi_host_peer_delete_response_event - Peer Delete response event param
7855 * @vdev_id: vdev id
7856 * @mac_address: Peer Mac Address
7857 *
7858 */
7859struct wmi_host_peer_delete_response_event {
7860 uint32_t vdev_id;
7861 struct qdf_mac_addr mac_address;
7862};
7863
7864/**
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05307865 * @struct wmi_host_dcs_interference_param
7866 * @interference_type: Type of DCS Interference
7867 * @uint32_t pdev_id: pdev id
7868 */
7869struct wmi_host_dcs_interference_param {
7870 uint32_t interference_type;
7871 uint32_t pdev_id;
7872};
7873
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05307874/*
7875 * struct wmi_host_fips_event_param: FIPS event param
7876 * @pdev_id: pdev id
7877 * @error_status: Error status: 0 (no err), 1, or OPER_TIMEOUR
Jeff Johnson390679c2018-05-06 15:40:42 -07007878 * @data_len: FIPS data length
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05307879 * @data: pointer to data
7880 */
7881struct wmi_host_fips_event_param {
7882 uint32_t pdev_id;
7883 uint32_t error_status;
7884 uint32_t data_len;
7885 uint32_t *data;
7886};
Kiran Venkatappa3f061a92017-02-08 14:57:16 +05307887
7888/**
7889 * struct wmi_host_proxy_ast_reserve_param
7890 * @pdev_id: pdev id
7891 * @result: result
7892 */
7893struct wmi_host_proxy_ast_reserve_param {
7894 uint32_t pdev_id;
7895 uint32_t result;
7896};
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05307897
7898/**
7899 * struct wmi_host_pdev_band_to_mac - freq range for mac
7900 * @pdev_id: PDEV ID to identifiy mac
7901 * @start_freq: start frequency value
7902 * @end_freq: end frequency value
7903 */
7904struct wmi_host_pdev_band_to_mac {
7905 uint32_t pdev_id;
7906 uint32_t start_freq;
7907 uint32_t end_freq;
7908};
7909#define WMI_HOST_MAX_PDEV 3
7910
7911/**
7912 * struct wmi_init_cmd_param - INIT command params
7913 * @target_resource_config: pointer to resource config
7914 * @num_mem_chunks: number of memory chunks
7915 * @struct wmi_host_mem_chunk: pointer to memory chunks
7916 * @hw_mode_index: HW mode index chosen
7917 * @num_band_to_mac: Number of band to mac setting
7918 * @struct wmi_host_pdev_band_to_mac: band to mac setting
7919 */
7920struct wmi_init_cmd_param {
7921 target_resource_config *res_cfg;
7922 uint8_t num_mem_chunks;
7923 struct wmi_host_mem_chunk *mem_chunks;
7924 uint32_t hw_mode_id;
7925 uint32_t num_band_to_mac;
7926 struct wmi_host_pdev_band_to_mac band_to_mac[WMI_HOST_MAX_PDEV];
7927};
Sathish Kumar907a7462017-02-27 10:35:40 +05307928
7929/**
7930 * struct pdev_csa_switch_count_status - CSA switch count status event param
7931 * @pdev_id: Physical device identifier
7932 * @current_switch_count: Current CSA switch count
7933 * @num_vdevs: Number of vdevs that need restart
7934 * @vdev_ids: Array containing the vdev ids that need restart
7935 */
7936struct pdev_csa_switch_count_status {
7937 uint32_t pdev_id;
7938 uint32_t current_switch_count;
7939 uint32_t num_vdevs;
7940 uint32_t *vdev_ids;
7941};
7942
Dustin Brown4def3162017-01-13 15:24:07 -08007943/**
7944 * enum wmi_host_active-bpf_mode - FW_ACTIVE_BPF_MODE, replicated from FW header
7945 * @WMI_HOST_ACTIVE_BPF_DISABLED: BPF is disabled for all packets in active mode
7946 * @WMI_HOST_ACTIVE_BPF_ENABLED: BPF is enabled for all packets in active mode
7947 * @WMI_HOST_ACTIVE_BPF_ADAPTIVE: BPF is enabled for packets up to some
7948 * threshold in active mode
7949 */
7950enum wmi_host_active_bpf_mode {
7951 WMI_HOST_ACTIVE_BPF_DISABLED = (1 << 1),
7952 WMI_HOST_ACTIVE_BPF_ENABLED = (1 << 2),
7953 WMI_HOST_ACTIVE_BPF_ADAPTIVE = (1 << 3)
7954};
7955
Sathish Kumar125754e2017-04-24 11:36:00 +05307956/**
7957 * struct coex_config_params - Coex config command params
7958 * @vdev_id: Virtual AP device identifier
7959 * @config_type: Configuration type - wmi_coex_config_type enum
7960 * @config_arg1: Configuration argument based on config type
7961 * @config_arg2: Configuration argument based on config type
7962 * @config_arg3: Configuration argument based on config type
7963 * @config_arg4: Configuration argument based on config type
7964 * @config_arg5: Configuration argument based on config type
7965 * @config_arg6: Configuration argument based on config type
7966 */
7967struct coex_config_params {
7968 uint32_t vdev_id;
7969 uint32_t config_type;
7970 uint32_t config_arg1;
7971 uint32_t config_arg2;
7972 uint32_t config_arg3;
7973 uint32_t config_arg4;
7974 uint32_t config_arg5;
7975 uint32_t config_arg6;
7976};
7977
Kiran Venkatappa49341042017-05-10 16:24:51 +05307978#define WMI_HOST_PDEV_ID_SOC 0xFF
7979#define WMI_HOST_PDEV_ID_0 0
7980#define WMI_HOST_PDEV_ID_1 1
7981#define WMI_HOST_PDEV_ID_2 2
Sathish Kumar744fbf72017-05-17 18:05:15 +05307982
7983/**
7984 * struct tbttoffset_params - Tbttoffset event params
7985 * @vdev_id: Virtual AP device identifier
7986 * @tbttoffset : Tbttoffset for the virtual AP device
7987 */
7988struct tbttoffset_params {
7989 uint32_t vdev_id;
7990 uint32_t tbttoffset;
7991};
7992
Nitesh Shahfb9e88b2017-05-22 15:49:00 +05307993#define WMI_SCAN_CLIENT_MAX 7
7994
7995/**
7996 * struct wmi_dbs_scan_sel_params - DBS scan selection params
7997 * @num_clients: Number of scan clients dutycycle
7998 * @pdev_id: pdev_id for identifying the MAC
7999 * @module_id: scan client module id
8000 * @num_dbs_scans: number of DBS scans
8001 * @num_non_dbs_scans: number of non-DBS scans
8002 */
8003struct wmi_dbs_scan_sel_params {
8004 uint32_t num_clients;
8005 uint32_t pdev_id;
8006 uint32_t module_id[WMI_SCAN_CLIENT_MAX];
8007 uint32_t num_dbs_scans[WMI_SCAN_CLIENT_MAX];
8008 uint32_t num_non_dbs_scans[WMI_SCAN_CLIENT_MAX];
8009};
8010
Ganesh Kondabattini20b086b2017-07-10 11:54:11 +05308011/**
8012 * struct wmi_limit_off_chan_param - limit off channel parameters
8013 * @vdev_id: vdev id
8014 * @status: status of the command (enable/disable)
8015 * @max_offchan_time: max off channel time
8016 * @rest_time: home channel time
8017 * @skip_dfs_chans: skip dfs channels during scan
8018 */
8019struct wmi_limit_off_chan_param {
8020 uint32_t vdev_id;
8021 bool status;
8022 uint32_t max_offchan_time;
8023 uint32_t rest_time;
8024 bool skip_dfs_chans;
8025};
8026
Varun Reddy Yeturu4cae4292017-07-20 09:45:01 -07008027/**
8028 * struct wmi_mawc_roam_params - Motion Aided wireless connectivity params
8029 * @vdev_id: VDEV on which the parameters should be applied
8030 * @enable: MAWC roaming feature enable/disable
8031 * @traffic_load_threshold: Traffic threshold in kBps for MAWC roaming
8032 * @best_ap_rssi_threshold: AP RSSI Threshold for MAWC roaming
8033 * @rssi_stationary_high_adjust: High RSSI adjustment value to suppress scan
8034 * @rssi_stationary_low_adjust: Low RSSI adjustment value to suppress scan
8035 */
8036struct wmi_mawc_roam_params {
8037 uint8_t vdev_id;
8038 bool enable;
8039 uint32_t traffic_load_threshold;
8040 uint32_t best_ap_rssi_threshold;
8041 uint8_t rssi_stationary_high_adjust;
8042 uint8_t rssi_stationary_low_adjust;
8043};
yeshwanth sriram guntuka230af892017-09-01 17:56:07 +05308044/**
8045 * struct wmi_btm_config - BSS Transition Management offload params
8046 * @vdev_id: VDEV on which the parameters should be applied
8047 * @btm_offload_config: BTM config
Jiachao Wu26f55de2018-01-08 16:45:09 +08008048 * @btm_solicited_timeout: Timeout value for waiting BTM request
8049 * @btm_max_attempt_cnt: Maximum attempt for sending BTM query to ESS
8050 * @btm_sticky_time: Stick time after roaming to new AP by BTM
yeshwanth sriram guntuka230af892017-09-01 17:56:07 +05308051 */
8052struct wmi_btm_config {
8053 uint8_t vdev_id;
8054 uint32_t btm_offload_config;
Jiachao Wu26f55de2018-01-08 16:45:09 +08008055 uint32_t btm_solicited_timeout;
8056 uint32_t btm_max_attempt_cnt;
8057 uint32_t btm_sticky_time;
yeshwanth sriram guntuka230af892017-09-01 17:56:07 +05308058};
Varun Reddy Yeturu4cae4292017-07-20 09:45:01 -07008059
Anurag Chouhanc1705422017-09-11 14:56:30 +05308060/**
8061 * struct set_arp_stats - set/reset arp stats
8062 * @vdev_id: session id
8063 * @flag: enable/disable stats
8064 * @pkt_type: type of packet(1 - arp)
8065 * @ip_addr: subnet ipv4 address in case of encrypted packets
Poddar, Siddartha11db812018-01-29 17:19:46 +05308066 * @pkt_type_bitmap: pkt bitmap
8067 * @tcp_src_port: tcp src port for pkt tracking
8068 * @tcp_dst_port: tcp dst port for pkt tracking
8069 * @icmp_ipv4: target ipv4 address to track ping packets
8070 * @reserved: reserved
Anurag Chouhanc1705422017-09-11 14:56:30 +05308071 */
8072struct set_arp_stats {
8073 uint32_t vdev_id;
8074 uint8_t flag;
8075 uint8_t pkt_type;
8076 uint32_t ip_addr;
Poddar, Siddartha11db812018-01-29 17:19:46 +05308077 uint32_t pkt_type_bitmap;
8078 uint32_t tcp_src_port;
8079 uint32_t tcp_dst_port;
8080 uint32_t icmp_ipv4;
8081 uint32_t reserved;
Anurag Chouhanc1705422017-09-11 14:56:30 +05308082};
8083
8084/**
8085 * struct get_arp_stats - get arp stats from firmware
8086 * @pkt_type: packet type(1 - ARP)
8087 * @vdev_id: session id
8088 */
8089struct get_arp_stats {
8090 uint8_t pkt_type;
8091 uint32_t vdev_id;
8092};
8093
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05308094/**
8095 * struct wmi_host_ready_ev_param - Data revieved in ready event
Kiran Venkatappae27364f2017-11-28 12:23:24 +05308096 * @status: FW init status. Success or Failure.
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05308097 * @num_dscp_table: Number of DSCP table supported in FW
8098 * @num_extra_mac_addr: Extra mac address present in ready event. Used
8099 * in DBDC mode to provide multiple mac per pdev.
8100 * @num_total_peer: Total number of peers FW could allocate. Zero means
8101 * FW could allocate num peers requested by host in init.
8102 * Otherwise, host need update it max_peer to this value.
Kiran Venkatappae27364f2017-11-28 12:23:24 +05308103 * @num_extra_peer: Number of extra peers created and used within FW. Host
8104 * should expect peer_id can be num_total_peer + num_extra_peer
8105 * but it can create only upto num_total_peer.
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05308106 * @agile_capability: Boolean specification of whether the target supports
8107 * agile DFS, by means of using one 80 MHz radio chain for
8108 * radar detection, concurrently with using another radio
8109 * chain for non-160 MHz regular operation.
8110 */
8111struct wmi_host_ready_ev_param {
Kiran Venkatappae27364f2017-11-28 12:23:24 +05308112 uint32_t status;
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05308113 uint32_t num_dscp_table;
8114 uint32_t num_extra_mac_addr;
8115 uint32_t num_total_peer;
Kiran Venkatappae27364f2017-11-28 12:23:24 +05308116 uint32_t num_extra_peer;
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05308117 bool agile_capability;
8118};
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05308119
Vinay Adella4c217bf2018-04-27 14:49:53 +05308120enum bcn_offload_control_param {
8121 BCN_OFFLD_CTRL_TX_DISABLE = 0,
8122 BCN_OFFLD_CTRL_TX_ENABLE,
8123 BCN_OFFLD_CTRL_SWBA_DISABLE,
8124 BCN_OFFLD_CTRL_SWBA_ENABLE,
8125};
8126
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05308127/**
8128 * struct bcn_offload_control - Beacon offload control params
8129 * @vdev_id: vdev identifer of VAP to control beacon tx
Vinay Adella4c217bf2018-04-27 14:49:53 +05308130 * @bcn_ctrl_op: values from enum bcn_offload_control_param
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05308131 */
8132struct bcn_offload_control {
8133 uint32_t vdev_id;
Vinay Adella4c217bf2018-04-27 14:49:53 +05308134 enum bcn_offload_control_param bcn_ctrl_op;
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05308135};
8136
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05308137/**
8138 * struct wds_entry - WDS entry structure
8139 * @peer_mac: peer mac
8140 * @wds_mac: wds mac address
8141 * @flags: flags
8142 */
8143struct wdsentry {
8144 u_int8_t peer_mac[IEEE80211_ADDR_LEN];
8145 u_int8_t wds_mac[IEEE80211_ADDR_LEN];
Vivek73465282018-03-22 23:27:21 +05308146 uint32_t flags;
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05308147};
8148
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05308149#define WMI_HOST_DBR_RING_ADDR_LO_S 0
8150#define WMI_HOST_DBR_RING_ADDR_LO 0xffffffff
8151
8152#define WMI_HOST_DBR_RING_ADDR_LO_GET(dword) \
8153 WMI_HOST_F_MS(dword, WMI_HOST_DBR_RING_ADDR_LO)
8154#define WMI_HOST_DBR_RING_ADDR_LO_SET(dword, val) \
8155 WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_RING_ADDR_LO)
8156
8157#define WMI_HOST_DBR_RING_ADDR_HI_S 0
8158#define WMI_HOST_DBR_RING_ADDR_HI 0xf
8159
8160#define WMI_HOST_DBR_RING_ADDR_HI_GET(dword) \
8161 WMI_HOST_F_MS(dword, WMI_HOST_DBR_RING_ADDR_HI)
8162#define WMI_HOST_DBR_RING_ADDR_HI_SET(dword, val) \
8163 WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_RING_ADDR_HI)
8164
8165#define WMI_HOST_DBR_DATA_ADDR_LO_S 0
8166#define WMI_HOST_DBR_DATA_ADDR_LO 0xffffffff
8167
8168#define WMI_HOST_DBR_DATA_ADDR_LO_GET(dword) \
8169 WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_LO)
8170#define WMI_HOST_DBR_DATA_ADDR_LO_SET(dword, val) \
8171 WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_LO)
8172
8173#define WMI_HOST_DBR_DATA_ADDR_HI_S 0
8174#define WMI_HOST_DBR_DATA_ADDR_HI 0xf
8175
8176#define WMI_HOST_DBR_DATA_ADDR_HI_GET(dword) \
8177 WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_HI)
8178#define WMI_HOST_DBR_DATA_ADDR_HI_SET(dword, val) \
8179 WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_HI)
8180
8181#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_S 12
8182#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA 0xfffff
8183
8184#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_GET(dword) \
8185 WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA)
8186#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_SET(dword, val) \
8187 WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA)
8188
8189/**
Edayilliam Jayadev42ce0e42018-04-06 16:37:17 +05308190 * struct direct_buf_rx_metadata: direct buffer metadata
8191 *
8192 * @noisefloor: noisefloor
8193 */
8194struct direct_buf_rx_metadata {
8195 int32_t noisefloor[WMI_HOST_MAX_NUM_CHAINS];
8196};
8197
8198/**
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05308199 * struct direct_buf_rx_entry: direct buffer rx release entry structure
8200 *
8201 * @addr_lo: LSB 32-bits of the buffer
8202 * @addr_hi: MSB 32-bits of the buffer
8203 * @len: Length of the buffer
8204 */
8205struct direct_buf_rx_entry {
8206 uint32_t paddr_lo;
8207 uint32_t paddr_hi;
8208 uint32_t len;
8209};
8210
8211/**
8212 * struct direct_buf_rx_rsp: direct buffer rx response structure
8213 *
8214 * @pdev_id: Index of the pdev for which response is received
8215 * @mod_mod: Index of the module for which respone is received
8216 * @num_buf_release_entry: Number of buffers released through event
8217 * @dbr_entries: Pointer to direct buffer rx entry struct
8218 */
8219struct direct_buf_rx_rsp {
8220 uint32_t pdev_id;
8221 uint32_t mod_id;
8222 uint32_t num_buf_release_entry;
Edayilliam Jayadev42ce0e42018-04-06 16:37:17 +05308223 uint32_t num_meta_data_entry;
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05308224 struct direct_buf_rx_entry *dbr_entries;
8225};
8226
8227/**
8228 * struct direct_buf_rx_cfg_req: direct buffer rx config request structure
8229 *
8230 * @pdev_id: Index of the pdev for which response is received
8231 * @mod_id: Index of the module for which respone is received
8232 * @base_paddr_lo: Lower 32bits of ring base address
8233 * @base_paddr_hi: Higher 32bits of ring base address
8234 * @head_idx_paddr_lo: Lower 32bits of head idx register address
8235 * @head_idx_paddr_hi: Higher 32bits of head idx register address
8236 * @tail_idx_paddr_lo: Lower 32bits of tail idx register address
8237 * @tail_idx_paddr_hi: Higher 32bits of tail idx register address
8238 * @buf_size: Size of the buffer for each pointer in the ring
8239 * @num_elems: Number of pointers allocated and part of the source ring
8240 */
8241struct direct_buf_rx_cfg_req {
8242 uint32_t pdev_id;
8243 uint32_t mod_id;
8244 uint32_t base_paddr_lo;
8245 uint32_t base_paddr_hi;
8246 uint32_t head_idx_paddr_lo;
8247 uint32_t head_idx_paddr_hi;
8248 uint32_t tail_idx_paddr_hi;
8249 uint32_t tail_idx_paddr_lo;
8250 uint32_t buf_size;
8251 uint32_t num_elems;
8252 uint32_t event_timeout_ms;
8253 uint32_t num_resp_per_event;
8254};
8255
Arif Hussain2cfde1d2017-12-27 16:23:45 -08008256/**
8257 * struct wmi_obss_detection_cfg_param - obss detection cfg
8258 * @vdev_id: vdev id
8259 * @obss_detect_period_ms: detection period in ms
8260 * @obss_11b_ap_detect_mode: detect whether there is 11b ap/ibss
8261 * @obss_11b_sta_detect_mode: detect whether there is 11b sta
8262 * connected with other APs
8263 * @obss_11g_ap_detect_mode: detect whether there is 11g AP
8264 * @obss_11a_detect_mode: detect whether there is legacy 11a traffic
8265 * @obss_ht_legacy_detect_mode: detect whether there is ap which is
8266 * ht legacy mode
8267 * @obss_ht_mixed_detect_mode: detect whether there is ap which is ht mixed mode
8268 * @obss_ht_20mhz_detect_mode: detect whether there is ap which has 20M only
8269 * station
8270 */
8271struct wmi_obss_detection_cfg_param {
8272 uint32_t vdev_id;
8273 uint32_t obss_detect_period_ms;
8274 uint32_t obss_11b_ap_detect_mode;
8275 uint32_t obss_11b_sta_detect_mode;
8276 uint32_t obss_11g_ap_detect_mode;
8277 uint32_t obss_11a_detect_mode;
8278 uint32_t obss_ht_legacy_detect_mode;
8279 uint32_t obss_ht_mixed_detect_mode;
8280 uint32_t obss_ht_20mhz_detect_mode;
8281};
8282
Arif Hussainf9f26b52018-01-12 13:15:04 -08008283/**
Arif Hussainb4da3472018-01-22 01:19:36 -08008284 * enum wmi_obss_detection_reason - obss detection event reasons
Arif Hussainf9f26b52018-01-12 13:15:04 -08008285 * @OBSS_OFFLOAD_DETECTION_DISABLED: OBSS detection disabled
8286 * @OBSS_OFFLOAD_DETECTION_PRESENT: OBSS present detection
8287 * @OBSS_OFFLOAD_DETECTION_ABSENT: OBSS absent detection
8288 *
8289 * Defines different types of reasons for obss detection event from firmware.
8290 */
8291enum wmi_obss_detection_reason {
8292 OBSS_OFFLOAD_DETECTION_DISABLED = 0,
8293 OBSS_OFFLOAD_DETECTION_PRESENT = 1,
8294 OBSS_OFFLOAD_DETECTION_ABSENT = 2,
8295};
8296
8297/**
8298 * struct wmi_obss_detect_info - OBSS detection info from firmware
Arif Hussainb4da3472018-01-22 01:19:36 -08008299 * @vdev_id: ID of the vdev to which this info belongs.
Arif Hussainf9f26b52018-01-12 13:15:04 -08008300 * @reason: Indicate if present or Absent detection,
8301 * also if not supported offload for this vdev.
8302 * @matched_detection_masks: Detection bit map.
8303 * @matched_bssid_addr: MAC address valid for only if info is present detection.
8304 */
8305struct wmi_obss_detect_info {
8306 uint32_t vdev_id;
8307 enum wmi_obss_detection_reason reason;
8308 uint32_t matched_detection_masks;
8309 uint8_t matched_bssid_addr[IEEE80211_ADDR_LEN];
8310};
8311
Vignesh Viswanathan51994e32018-01-18 19:06:40 +05308312/**
8313 * @time_offset: time offset after 11k offload command to trigger a neighbor
8314 * report request (in seconds)
8315 * @low_rssi_offset: Offset from rssi threshold to trigger a neighbor
8316 * report request (in dBm)
8317 * @bmiss_count_trigger: Number of beacon miss events to trigger neighbor
8318 * report request
8319 * @per_threshold_offset: offset from PER threshold to trigger neighbor
8320 * report request (in %)
8321 * @neighbor_report_cache_timeout: timeout after which new trigger can enable
8322 * sending of a neighbor report request (in seconds)
8323 * @max_neighbor_report_req_cap: max number of neighbor report requests that
8324 * can be sent to the peer in the current session
8325 * @ssid: Current connect SSID info
8326 */
8327struct wmi_11k_offload_neighbor_report_params {
8328 uint32_t time_offset;
8329 uint32_t low_rssi_offset;
8330 uint32_t bmiss_count_trigger;
8331 uint32_t per_threshold_offset;
8332 uint32_t neighbor_report_cache_timeout;
8333 uint32_t max_neighbor_report_req_cap;
8334 struct mac_ssid ssid;
8335};
8336
8337/**
8338 * struct wmi_11k_offload_params - offload 11k features to FW
8339 * @vdev_id: vdev id
8340 * @offload_11k_bitmask: bitmask to specify offloaded features
8341 * B0: Neighbor Report Request offload
8342 * B1-B31: Reserved
8343 * @neighbor_report_params: neighbor report offload params
8344 */
8345struct wmi_11k_offload_params {
8346 uint32_t vdev_id;
8347 uint32_t offload_11k_bitmask;
8348 struct wmi_11k_offload_neighbor_report_params neighbor_report_params;
8349};
8350
8351/**
8352 * struct wmi_invoke_neighbor_report_params - Invoke neighbor report request
8353 * from IW to FW
8354 * @vdev_id: vdev id
8355 * @send_resp_to_host: bool to send response to host or not
8356 * @ssid: ssid given from the IW command
8357 */
8358struct wmi_invoke_neighbor_report_params {
8359 uint32_t vdev_id;
8360 uint32_t send_resp_to_host;
8361 struct mac_ssid ssid;
8362};
8363
Arif Hussainb4da3472018-01-22 01:19:36 -08008364/**
8365 * enum wmi_obss_color_collision_evt_type - bss color collision event type
8366 * @OBSS_COLOR_COLLISION_DETECTION_DISABLE: OBSS color detection disabled
8367 * @OBSS_COLOR_COLLISION_DETECTION: OBSS color collision detection
8368 * @OBSS_COLOR_FREE_SLOT_TIMER_EXPIRY: OBSS free slot detection with
8369 * within expiry period
8370 * @OBSS_COLOR_FREE_SLOT_AVAILABLE: OBSS free slot detection
8371 *
8372 * Defines different types of type for obss color collision event type.
8373 */
8374enum wmi_obss_color_collision_evt_type {
8375 OBSS_COLOR_COLLISION_DETECTION_DISABLE = 0,
8376 OBSS_COLOR_COLLISION_DETECTION = 1,
8377 OBSS_COLOR_FREE_SLOT_TIMER_EXPIRY = 2,
8378 OBSS_COLOR_FREE_SLOT_AVAILABLE = 3,
8379};
8380
8381/**
8382 * struct wmi_obss_color_collision_cfg_param - obss color collision cfg
8383 * @vdev_id: vdev id
8384 * @flags: proposed for future use cases, currently not used.
8385 * @evt_type: bss color collision event.
8386 * @current_bss_color: current bss color.
8387 * @detection_period_ms: scan interval for both AP and STA mode.
8388 * @scan_period_ms: scan period for passive scan to detect collision.
8389 * @free_slot_expiry_time_ms: FW to notify host at timer expiry after
8390 * which Host will disable the bss color.
8391 */
8392struct wmi_obss_color_collision_cfg_param {
8393 uint32_t vdev_id;
8394 uint32_t flags;
8395 enum wmi_obss_color_collision_evt_type evt_type;
8396 uint32_t current_bss_color;
8397 uint32_t detection_period_ms;
8398 uint32_t scan_period_ms;
8399 uint32_t free_slot_expiry_time_ms;
8400};
8401
8402/**
8403 * struct wmi_obss_color_collision_info - bss color detection info from firmware
8404 * @vdev_id: ID of the vdev to which this info belongs.
8405 * @evt_type: bss color collision event.
8406 * @obss_color_bitmap_bit0to31: Bit set indicating BSS color present.
8407 * @obss_color_bitmap_bit32to63: Bit set indicating BSS color present.
8408 */
8409struct wmi_obss_color_collision_info {
8410 uint32_t vdev_id;
8411 enum wmi_obss_color_collision_evt_type evt_type;
8412 uint32_t obss_color_bitmap_bit0to31;
8413 uint32_t obss_color_bitmap_bit32to63;
8414};
Naveen Rawat96afb7f2018-04-13 16:38:36 -07008415
8416#ifdef QCA_SUPPORT_CP_STATS
8417/**
8418 * struct wmi_host_congestion_stats - host definition of congestion stats
8419 * @vdev_id: ID of the vdev to which this info belongs.
8420 * @congestion: This field holds the congestion percentage =
8421 * (busy_time/total_time)*100
8422 * for the interval from when the vdev was started to the current time
8423 * (or the time at which the vdev was stopped).
8424 */
8425struct wmi_host_congestion_stats {
8426 uint32_t vdev_id;
8427 uint32_t congestion;
8428};
8429#endif
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05308430#endif /* _WMI_UNIFIED_PARAM_H_ */