blob: d9b646f3dcc27ddc6bb39fd1d0c702e059f0ba15 [file] [log] [blame]
Kalle Valof0553ca2019-02-19 19:45:26 +02001/* SPDX-License-Identifier: ISC */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002/*
3 * Copyright (c) 2005-2011 Atheros Communications Inc.
Kalle Valo8b1083d2017-12-22 18:31:13 +02004 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +02005 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
Kalle Valo5e3dd152013-06-12 20:52:10 +03006 */
7
8#ifndef _WMI_H_
9#define _WMI_H_
10
11#include <linux/types.h>
Kalle Valodb3b6282019-02-11 18:48:06 +020012#include <linux/ieee80211.h>
Kalle Valo5e3dd152013-06-12 20:52:10 +030013
14/*
15 * This file specifies the WMI interface for the Unified Software
16 * Architecture.
17 *
18 * It includes definitions of all the commands and events. Commands are
19 * messages from the host to the target. Events and Replies are messages
20 * from the target to the host.
21 *
22 * Ownership of correctness in regards to WMI commands belongs to the host
23 * driver and the target is not required to validate parameters for value,
24 * proper range, or any other checking.
25 *
26 * Guidelines for extending this interface are below.
27 *
28 * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff
29 *
30 * 2. Use ONLY u32 type for defining member variables within WMI
31 * command/event structures. Do not use u8, u16, bool or
32 * enum types within these structures.
33 *
34 * 3. DO NOT define bit fields within structures. Implement bit fields
35 * using masks if necessary. Do not use the programming language's bit
36 * field definition.
37 *
38 * 4. Define macros for encode/decode of u8, u16 fields within
39 * the u32 variables. Use these macros for set/get of these fields.
40 * Try to use this to optimize the structure without bloating it with
41 * u32 variables for every lower sized field.
42 *
43 * 5. Do not use PACK/UNPACK attributes for the structures as each member
44 * variable is already 4-byte aligned by virtue of being a u32
45 * type.
46 *
47 * 6. Comment each parameter part of the WMI command/event structure by
Joe Perchese13dbea2016-09-26 21:56:21 +030048 * using the 2 stars at the beginning of C comment instead of one star to
Kalle Valo5e3dd152013-06-12 20:52:10 +030049 * enable HTML document generation using Doxygen.
50 *
51 */
52
53/* Control Path */
54struct wmi_cmd_hdr {
55 __le32 cmd_id;
56} __packed;
57
58#define WMI_CMD_HDR_CMD_ID_MASK 0x00FFFFFF
59#define WMI_CMD_HDR_CMD_ID_LSB 0
60#define WMI_CMD_HDR_PLT_PRIV_MASK 0xFF000000
61#define WMI_CMD_HDR_PLT_PRIV_LSB 24
62
63#define HTC_PROTOCOL_VERSION 0x0002
64#define WMI_PROTOCOL_VERSION 0x0002
65
Kalle Valo3b8fc902015-10-05 17:56:37 +030066/*
67 * There is no signed version of __le32, so for a temporary solution come
Amadeusz Sławiński6d219112017-02-13 12:38:39 +020068 * up with our own version. The idea is from fs/ntfs/endian.h.
Kalle Valo3b8fc902015-10-05 17:56:37 +030069 *
70 * Use a_ prefix so that it doesn't conflict if we get proper support to
71 * linux/types.h.
72 */
73typedef __s32 __bitwise a_sle32;
74
75static inline a_sle32 a_cpu_to_sle32(s32 val)
76{
77 return (__force a_sle32)cpu_to_le32(val);
78}
79
80static inline s32 a_sle32_to_cpu(a_sle32 val)
81{
82 return le32_to_cpu((__force __le32)val);
83}
84
Michal Kaziorcff990c2014-08-04 09:18:33 +030085enum wmi_service {
86 WMI_SERVICE_BEACON_OFFLOAD = 0,
87 WMI_SERVICE_SCAN_OFFLOAD,
88 WMI_SERVICE_ROAM_OFFLOAD,
89 WMI_SERVICE_BCN_MISS_OFFLOAD,
90 WMI_SERVICE_STA_PWRSAVE,
91 WMI_SERVICE_STA_ADVANCED_PWRSAVE,
92 WMI_SERVICE_AP_UAPSD,
93 WMI_SERVICE_AP_DFS,
94 WMI_SERVICE_11AC,
95 WMI_SERVICE_BLOCKACK,
96 WMI_SERVICE_PHYERR,
97 WMI_SERVICE_BCN_FILTER,
98 WMI_SERVICE_RTT,
99 WMI_SERVICE_RATECTRL,
100 WMI_SERVICE_WOW,
101 WMI_SERVICE_RATECTRL_CACHE,
102 WMI_SERVICE_IRAM_TIDS,
103 WMI_SERVICE_ARPNS_OFFLOAD,
104 WMI_SERVICE_NLO,
105 WMI_SERVICE_GTK_OFFLOAD,
106 WMI_SERVICE_SCAN_SCH,
107 WMI_SERVICE_CSA_OFFLOAD,
108 WMI_SERVICE_CHATTER,
109 WMI_SERVICE_COEX_FREQAVOID,
110 WMI_SERVICE_PACKET_POWER_SAVE,
111 WMI_SERVICE_FORCE_FW_HANG,
112 WMI_SERVICE_GPIO,
113 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
114 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
115 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
116 WMI_SERVICE_STA_KEEP_ALIVE,
117 WMI_SERVICE_TX_ENCAP,
118 WMI_SERVICE_BURST,
119 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT,
120 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Michal Kaziorca996ec2014-12-03 10:11:32 +0200121 WMI_SERVICE_ROAM_SCAN_OFFLOAD,
122 WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
123 WMI_SERVICE_EARLY_RX,
124 WMI_SERVICE_STA_SMPS,
125 WMI_SERVICE_FWTEST,
126 WMI_SERVICE_STA_WMMAC,
127 WMI_SERVICE_TDLS,
128 WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE,
129 WMI_SERVICE_ADAPTIVE_OCS,
130 WMI_SERVICE_BA_SSN_SUPPORT,
131 WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE,
132 WMI_SERVICE_WLAN_HB,
133 WMI_SERVICE_LTE_ANT_SHARE_SUPPORT,
134 WMI_SERVICE_BATCH_SCAN,
135 WMI_SERVICE_QPOWER,
136 WMI_SERVICE_PLMREQ,
137 WMI_SERVICE_THERMAL_MGMT,
138 WMI_SERVICE_RMC,
139 WMI_SERVICE_MHF_OFFLOAD,
140 WMI_SERVICE_COEX_SAR,
141 WMI_SERVICE_BCN_TXRATE_OVERRIDE,
142 WMI_SERVICE_NAN,
143 WMI_SERVICE_L1SS_STAT,
144 WMI_SERVICE_ESTIMATE_LINKSPEED,
145 WMI_SERVICE_OBSS_SCAN,
146 WMI_SERVICE_TDLS_OFFCHAN,
147 WMI_SERVICE_TDLS_UAPSD_BUFFER_STA,
148 WMI_SERVICE_TDLS_UAPSD_SLEEP_STA,
149 WMI_SERVICE_IBSS_PWRSAVE,
150 WMI_SERVICE_LPASS,
151 WMI_SERVICE_EXTSCAN,
152 WMI_SERVICE_D0WOW,
153 WMI_SERVICE_HSOFFLOAD,
154 WMI_SERVICE_ROAM_HO_OFFLOAD,
155 WMI_SERVICE_RX_FULL_REORDER,
156 WMI_SERVICE_DHCP_OFFLOAD,
157 WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT,
158 WMI_SERVICE_MDNS_OFFLOAD,
159 WMI_SERVICE_SAP_AUTH_OFFLOAD,
Yanbo Li52c22a62015-04-15 15:28:07 +0300160 WMI_SERVICE_ATF,
Yanbo Lide0c789b2015-04-15 15:28:08 +0300161 WMI_SERVICE_COEX_GPIO,
Raja Mani840357c2015-06-22 20:10:10 +0530162 WMI_SERVICE_ENHANCED_PROXY_STA,
163 WMI_SERVICE_TT,
164 WMI_SERVICE_PEER_CACHING,
165 WMI_SERVICE_AUX_SPECTRAL_INTF,
166 WMI_SERVICE_AUX_CHAN_LOAD_INTF,
167 WMI_SERVICE_BSS_CHANNEL_INFO_64,
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530168 WMI_SERVICE_EXT_RES_CFG_SUPPORT,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800169 WMI_SERVICE_MESH_11S,
170 WMI_SERVICE_MESH_NON_11S,
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530171 WMI_SERVICE_PEER_STATS,
Peter Ohe70e9ba2016-01-28 13:54:08 -0800172 WMI_SERVICE_RESTRT_CHNL_SUPPORT,
Tamizh chelvam64ed57712016-08-02 16:13:14 +0530173 WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT,
Raja Mani7e247a92016-04-12 20:15:53 +0530174 WMI_SERVICE_TX_MODE_PUSH_ONLY,
175 WMI_SERVICE_TX_MODE_PUSH_PULL,
176 WMI_SERVICE_TX_MODE_DYNAMIC,
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300177 WMI_SERVICE_VDEV_RX_FILTER,
178 WMI_SERVICE_BTCOEX,
179 WMI_SERVICE_CHECK_CAL_VERSION,
180 WMI_SERVICE_DBGLOG_WARN2,
181 WMI_SERVICE_BTCOEX_DUTY_CYCLE,
182 WMI_SERVICE_4_WIRE_COEX_SUPPORT,
183 WMI_SERVICE_EXTENDED_NSS_SUPPORT,
184 WMI_SERVICE_PROG_GPIO_BAND_SELECT,
185 WMI_SERVICE_SMART_LOGGING_SUPPORT,
186 WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE,
187 WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY,
Rakesh Pillai229329f2017-12-11 19:52:52 +0530188 WMI_SERVICE_MGMT_TX_WMI,
Balaji Pothunoori14d65772017-12-21 20:00:42 +0530189 WMI_SERVICE_TDLS_WIDER_BANDWIDTH,
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +0200190 WMI_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS,
191 WMI_SERVICE_HOST_DFS_CHECK_SUPPORT,
192 WMI_SERVICE_TPC_STATS_FINAL,
Venkateswara Naralasetty235b9c42018-04-10 18:01:05 +0300193 WMI_SERVICE_RESET_CHIP,
Carl Huangcea19a62018-04-19 19:39:38 +0300194 WMI_SERVICE_SPOOF_MAC_SUPPORT,
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +0300195 WMI_SERVICE_TX_DATA_ACK_RSSI,
Maharaja Kennadyrajan46005632018-09-18 17:37:26 +0530196 WMI_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT,
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +0200197 WMI_SERVICE_VDEV_DISABLE_4_ADDR_SRC_LRN_SUPPORT,
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +0200198 WMI_SERVICE_BB_TIMING_CONFIG_SUPPORT,
Rakesh Pillai53884572018-12-14 12:17:46 +0200199 WMI_SERVICE_THERM_THROT,
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +0200200 WMI_SERVICE_RTT_RESPONDER_ROLE,
Manikanta Pubbisetty4920ce32019-02-11 18:47:56 +0200201 WMI_SERVICE_PER_PACKET_SW_ENCRYPT,
Manikanta Pubbisettybb31b7c2019-02-11 18:47:59 +0200202 WMI_SERVICE_REPORT_AIRTIME,
Michal Kaziorc4f8c832014-09-04 10:18:32 +0200203
Kalle Valo95cccf42019-02-11 18:48:04 +0200204 /* Remember to add the new value to wmi_service_name()! */
205
Michal Kaziorc4f8c832014-09-04 10:18:32 +0200206 /* keep last */
207 WMI_SERVICE_MAX,
Michal Kaziorcff990c2014-08-04 09:18:33 +0300208};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300209
Michal Kaziorcff990c2014-08-04 09:18:33 +0300210enum wmi_10x_service {
211 WMI_10X_SERVICE_BEACON_OFFLOAD = 0,
212 WMI_10X_SERVICE_SCAN_OFFLOAD,
213 WMI_10X_SERVICE_ROAM_OFFLOAD,
214 WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
215 WMI_10X_SERVICE_STA_PWRSAVE,
216 WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
217 WMI_10X_SERVICE_AP_UAPSD,
218 WMI_10X_SERVICE_AP_DFS,
219 WMI_10X_SERVICE_11AC,
220 WMI_10X_SERVICE_BLOCKACK,
221 WMI_10X_SERVICE_PHYERR,
222 WMI_10X_SERVICE_BCN_FILTER,
223 WMI_10X_SERVICE_RTT,
224 WMI_10X_SERVICE_RATECTRL,
225 WMI_10X_SERVICE_WOW,
226 WMI_10X_SERVICE_RATECTRL_CACHE,
227 WMI_10X_SERVICE_IRAM_TIDS,
228 WMI_10X_SERVICE_BURST,
229
230 /* introduced in 10.2 */
231 WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
232 WMI_10X_SERVICE_FORCE_FW_HANG,
233 WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Yanbo Li52c22a62015-04-15 15:28:07 +0300234 WMI_10X_SERVICE_ATF,
Yanbo Lide0c789b2015-04-15 15:28:08 +0300235 WMI_10X_SERVICE_COEX_GPIO,
Peter Oh20fa2f72015-11-24 09:37:33 -0800236 WMI_10X_SERVICE_AUX_SPECTRAL_INTF,
237 WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF,
238 WMI_10X_SERVICE_BSS_CHANNEL_INFO_64,
239 WMI_10X_SERVICE_MESH,
240 WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT,
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530241 WMI_10X_SERVICE_PEER_STATS,
Venkateswara Naralasetty235b9c42018-04-10 18:01:05 +0300242 WMI_10X_SERVICE_RESET_CHIP,
243 WMI_10X_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS,
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +0200244 WMI_10X_SERVICE_VDEV_BCN_RATE_CONTROL,
245 WMI_10X_SERVICE_PER_PACKET_SW_ENCRYPT,
246 WMI_10X_SERVICE_BB_TIMING_CONFIG_SUPPORT,
Michal Kaziorcff990c2014-08-04 09:18:33 +0300247};
248
249enum wmi_main_service {
250 WMI_MAIN_SERVICE_BEACON_OFFLOAD = 0,
251 WMI_MAIN_SERVICE_SCAN_OFFLOAD,
252 WMI_MAIN_SERVICE_ROAM_OFFLOAD,
253 WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
254 WMI_MAIN_SERVICE_STA_PWRSAVE,
255 WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
256 WMI_MAIN_SERVICE_AP_UAPSD,
257 WMI_MAIN_SERVICE_AP_DFS,
258 WMI_MAIN_SERVICE_11AC,
259 WMI_MAIN_SERVICE_BLOCKACK,
260 WMI_MAIN_SERVICE_PHYERR,
261 WMI_MAIN_SERVICE_BCN_FILTER,
262 WMI_MAIN_SERVICE_RTT,
263 WMI_MAIN_SERVICE_RATECTRL,
264 WMI_MAIN_SERVICE_WOW,
265 WMI_MAIN_SERVICE_RATECTRL_CACHE,
266 WMI_MAIN_SERVICE_IRAM_TIDS,
267 WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
268 WMI_MAIN_SERVICE_NLO,
269 WMI_MAIN_SERVICE_GTK_OFFLOAD,
270 WMI_MAIN_SERVICE_SCAN_SCH,
271 WMI_MAIN_SERVICE_CSA_OFFLOAD,
272 WMI_MAIN_SERVICE_CHATTER,
273 WMI_MAIN_SERVICE_COEX_FREQAVOID,
274 WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
275 WMI_MAIN_SERVICE_FORCE_FW_HANG,
276 WMI_MAIN_SERVICE_GPIO,
277 WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
278 WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
279 WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
280 WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
281 WMI_MAIN_SERVICE_TX_ENCAP,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300282};
283
Raja Mani840357c2015-06-22 20:10:10 +0530284enum wmi_10_4_service {
285 WMI_10_4_SERVICE_BEACON_OFFLOAD = 0,
286 WMI_10_4_SERVICE_SCAN_OFFLOAD,
287 WMI_10_4_SERVICE_ROAM_OFFLOAD,
288 WMI_10_4_SERVICE_BCN_MISS_OFFLOAD,
289 WMI_10_4_SERVICE_STA_PWRSAVE,
290 WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE,
291 WMI_10_4_SERVICE_AP_UAPSD,
292 WMI_10_4_SERVICE_AP_DFS,
293 WMI_10_4_SERVICE_11AC,
294 WMI_10_4_SERVICE_BLOCKACK,
295 WMI_10_4_SERVICE_PHYERR,
296 WMI_10_4_SERVICE_BCN_FILTER,
297 WMI_10_4_SERVICE_RTT,
298 WMI_10_4_SERVICE_RATECTRL,
299 WMI_10_4_SERVICE_WOW,
300 WMI_10_4_SERVICE_RATECTRL_CACHE,
301 WMI_10_4_SERVICE_IRAM_TIDS,
302 WMI_10_4_SERVICE_BURST,
303 WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT,
304 WMI_10_4_SERVICE_GTK_OFFLOAD,
305 WMI_10_4_SERVICE_SCAN_SCH,
306 WMI_10_4_SERVICE_CSA_OFFLOAD,
307 WMI_10_4_SERVICE_CHATTER,
308 WMI_10_4_SERVICE_COEX_FREQAVOID,
309 WMI_10_4_SERVICE_PACKET_POWER_SAVE,
310 WMI_10_4_SERVICE_FORCE_FW_HANG,
311 WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT,
312 WMI_10_4_SERVICE_GPIO,
313 WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
314 WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
315 WMI_10_4_SERVICE_STA_KEEP_ALIVE,
316 WMI_10_4_SERVICE_TX_ENCAP,
317 WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
318 WMI_10_4_SERVICE_EARLY_RX,
319 WMI_10_4_SERVICE_ENHANCED_PROXY_STA,
320 WMI_10_4_SERVICE_TT,
321 WMI_10_4_SERVICE_ATF,
322 WMI_10_4_SERVICE_PEER_CACHING,
323 WMI_10_4_SERVICE_COEX_GPIO,
324 WMI_10_4_SERVICE_AUX_SPECTRAL_INTF,
325 WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF,
326 WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64,
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530327 WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800328 WMI_10_4_SERVICE_MESH_NON_11S,
Peter Ohe70e9ba2016-01-28 13:54:08 -0800329 WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT,
330 WMI_10_4_SERVICE_PEER_STATS,
331 WMI_10_4_SERVICE_MESH_11S,
Tamizh chelvam64ed57712016-08-02 16:13:14 +0530332 WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT,
Raja Mani7e247a92016-04-12 20:15:53 +0530333 WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY,
334 WMI_10_4_SERVICE_TX_MODE_PUSH_PULL,
335 WMI_10_4_SERVICE_TX_MODE_DYNAMIC,
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300336 WMI_10_4_SERVICE_VDEV_RX_FILTER,
337 WMI_10_4_SERVICE_BTCOEX,
338 WMI_10_4_SERVICE_CHECK_CAL_VERSION,
339 WMI_10_4_SERVICE_DBGLOG_WARN2,
340 WMI_10_4_SERVICE_BTCOEX_DUTY_CYCLE,
341 WMI_10_4_SERVICE_4_WIRE_COEX_SUPPORT,
342 WMI_10_4_SERVICE_EXTENDED_NSS_SUPPORT,
343 WMI_10_4_SERVICE_PROG_GPIO_BAND_SELECT,
344 WMI_10_4_SERVICE_SMART_LOGGING_SUPPORT,
345 WMI_10_4_SERVICE_TDLS,
346 WMI_10_4_SERVICE_TDLS_OFFCHAN,
347 WMI_10_4_SERVICE_TDLS_UAPSD_BUFFER_STA,
348 WMI_10_4_SERVICE_TDLS_UAPSD_SLEEP_STA,
349 WMI_10_4_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE,
350 WMI_10_4_SERVICE_TDLS_EXPLICIT_MODE_ONLY,
Balaji Pothunoori14d65772017-12-21 20:00:42 +0530351 WMI_10_4_SERVICE_TDLS_WIDER_BANDWIDTH,
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +0200352 WMI_10_4_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS,
353 WMI_10_4_SERVICE_HOST_DFS_CHECK_SUPPORT,
354 WMI_10_4_SERVICE_TPC_STATS_FINAL,
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +0300355 WMI_10_4_SERVICE_CFR_CAPTURE_SUPPORT,
356 WMI_10_4_SERVICE_TX_DATA_ACK_RSSI,
Maharaja Kennadyrajan46005632018-09-18 17:37:26 +0530357 WMI_10_4_SERVICE_CFR_CAPTURE_IND_MSG_TYPE_LEGACY,
358 WMI_10_4_SERVICE_PER_PACKET_SW_ENCRYPT,
359 WMI_10_4_SERVICE_PEER_TID_CONFIGS_SUPPORT,
360 WMI_10_4_SERVICE_VDEV_BCN_RATE_CONTROL,
361 WMI_10_4_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT,
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +0200362 WMI_10_4_SERVICE_HTT_ASSERT_TRIGGER_SUPPORT,
363 WMI_10_4_SERVICE_VDEV_FILTER_NEIGHBOR_RX_PACKETS,
364 WMI_10_4_SERVICE_VDEV_DISABLE_4_ADDR_SRC_LRN_SUPPORT,
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +0200365 WMI_10_4_SERVICE_PEER_CHWIDTH_CHANGE,
366 WMI_10_4_SERVICE_RX_FILTER_OUT_COUNT,
367 WMI_10_4_SERVICE_RTT_RESPONDER_ROLE,
368 WMI_10_4_SERVICE_EXT_PEER_TID_CONFIGS_SUPPORT,
Manikanta Pubbisettybb31b7c2019-02-11 18:47:59 +0200369 WMI_10_4_SERVICE_REPORT_AIRTIME,
Raja Mani840357c2015-06-22 20:10:10 +0530370};
371
Kalle Valo95cccf42019-02-11 18:48:04 +0200372static inline char *wmi_service_name(enum wmi_service service_id)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300373{
Michal Kaziorcff990c2014-08-04 09:18:33 +0300374#define SVCSTR(x) case x: return #x
375
Kalle Valo5e3dd152013-06-12 20:52:10 +0300376 switch (service_id) {
Michal Kaziorcff990c2014-08-04 09:18:33 +0300377 SVCSTR(WMI_SERVICE_BEACON_OFFLOAD);
378 SVCSTR(WMI_SERVICE_SCAN_OFFLOAD);
379 SVCSTR(WMI_SERVICE_ROAM_OFFLOAD);
380 SVCSTR(WMI_SERVICE_BCN_MISS_OFFLOAD);
381 SVCSTR(WMI_SERVICE_STA_PWRSAVE);
382 SVCSTR(WMI_SERVICE_STA_ADVANCED_PWRSAVE);
383 SVCSTR(WMI_SERVICE_AP_UAPSD);
384 SVCSTR(WMI_SERVICE_AP_DFS);
385 SVCSTR(WMI_SERVICE_11AC);
386 SVCSTR(WMI_SERVICE_BLOCKACK);
387 SVCSTR(WMI_SERVICE_PHYERR);
388 SVCSTR(WMI_SERVICE_BCN_FILTER);
389 SVCSTR(WMI_SERVICE_RTT);
390 SVCSTR(WMI_SERVICE_RATECTRL);
391 SVCSTR(WMI_SERVICE_WOW);
392 SVCSTR(WMI_SERVICE_RATECTRL_CACHE);
393 SVCSTR(WMI_SERVICE_IRAM_TIDS);
394 SVCSTR(WMI_SERVICE_ARPNS_OFFLOAD);
395 SVCSTR(WMI_SERVICE_NLO);
396 SVCSTR(WMI_SERVICE_GTK_OFFLOAD);
397 SVCSTR(WMI_SERVICE_SCAN_SCH);
398 SVCSTR(WMI_SERVICE_CSA_OFFLOAD);
399 SVCSTR(WMI_SERVICE_CHATTER);
400 SVCSTR(WMI_SERVICE_COEX_FREQAVOID);
401 SVCSTR(WMI_SERVICE_PACKET_POWER_SAVE);
402 SVCSTR(WMI_SERVICE_FORCE_FW_HANG);
403 SVCSTR(WMI_SERVICE_GPIO);
404 SVCSTR(WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM);
405 SVCSTR(WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG);
406 SVCSTR(WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG);
407 SVCSTR(WMI_SERVICE_STA_KEEP_ALIVE);
408 SVCSTR(WMI_SERVICE_TX_ENCAP);
409 SVCSTR(WMI_SERVICE_BURST);
410 SVCSTR(WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT);
411 SVCSTR(WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT);
Michal Kaziorca996ec2014-12-03 10:11:32 +0200412 SVCSTR(WMI_SERVICE_ROAM_SCAN_OFFLOAD);
413 SVCSTR(WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC);
414 SVCSTR(WMI_SERVICE_EARLY_RX);
415 SVCSTR(WMI_SERVICE_STA_SMPS);
416 SVCSTR(WMI_SERVICE_FWTEST);
417 SVCSTR(WMI_SERVICE_STA_WMMAC);
418 SVCSTR(WMI_SERVICE_TDLS);
419 SVCSTR(WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE);
420 SVCSTR(WMI_SERVICE_ADAPTIVE_OCS);
421 SVCSTR(WMI_SERVICE_BA_SSN_SUPPORT);
422 SVCSTR(WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE);
423 SVCSTR(WMI_SERVICE_WLAN_HB);
424 SVCSTR(WMI_SERVICE_LTE_ANT_SHARE_SUPPORT);
425 SVCSTR(WMI_SERVICE_BATCH_SCAN);
426 SVCSTR(WMI_SERVICE_QPOWER);
427 SVCSTR(WMI_SERVICE_PLMREQ);
428 SVCSTR(WMI_SERVICE_THERMAL_MGMT);
429 SVCSTR(WMI_SERVICE_RMC);
430 SVCSTR(WMI_SERVICE_MHF_OFFLOAD);
431 SVCSTR(WMI_SERVICE_COEX_SAR);
432 SVCSTR(WMI_SERVICE_BCN_TXRATE_OVERRIDE);
433 SVCSTR(WMI_SERVICE_NAN);
434 SVCSTR(WMI_SERVICE_L1SS_STAT);
435 SVCSTR(WMI_SERVICE_ESTIMATE_LINKSPEED);
436 SVCSTR(WMI_SERVICE_OBSS_SCAN);
437 SVCSTR(WMI_SERVICE_TDLS_OFFCHAN);
438 SVCSTR(WMI_SERVICE_TDLS_UAPSD_BUFFER_STA);
439 SVCSTR(WMI_SERVICE_TDLS_UAPSD_SLEEP_STA);
440 SVCSTR(WMI_SERVICE_IBSS_PWRSAVE);
441 SVCSTR(WMI_SERVICE_LPASS);
442 SVCSTR(WMI_SERVICE_EXTSCAN);
443 SVCSTR(WMI_SERVICE_D0WOW);
444 SVCSTR(WMI_SERVICE_HSOFFLOAD);
445 SVCSTR(WMI_SERVICE_ROAM_HO_OFFLOAD);
446 SVCSTR(WMI_SERVICE_RX_FULL_REORDER);
447 SVCSTR(WMI_SERVICE_DHCP_OFFLOAD);
448 SVCSTR(WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT);
449 SVCSTR(WMI_SERVICE_MDNS_OFFLOAD);
450 SVCSTR(WMI_SERVICE_SAP_AUTH_OFFLOAD);
Yanbo Li52c22a62015-04-15 15:28:07 +0300451 SVCSTR(WMI_SERVICE_ATF);
Yanbo Lide0c789b2015-04-15 15:28:08 +0300452 SVCSTR(WMI_SERVICE_COEX_GPIO);
Raja Mani840357c2015-06-22 20:10:10 +0530453 SVCSTR(WMI_SERVICE_ENHANCED_PROXY_STA);
454 SVCSTR(WMI_SERVICE_TT);
455 SVCSTR(WMI_SERVICE_PEER_CACHING);
456 SVCSTR(WMI_SERVICE_AUX_SPECTRAL_INTF);
457 SVCSTR(WMI_SERVICE_AUX_CHAN_LOAD_INTF);
458 SVCSTR(WMI_SERVICE_BSS_CHANNEL_INFO_64);
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530459 SVCSTR(WMI_SERVICE_EXT_RES_CFG_SUPPORT);
Peter Oh0b3d76e2016-01-28 13:54:07 -0800460 SVCSTR(WMI_SERVICE_MESH_11S);
461 SVCSTR(WMI_SERVICE_MESH_NON_11S);
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530462 SVCSTR(WMI_SERVICE_PEER_STATS);
Peter Ohe70e9ba2016-01-28 13:54:08 -0800463 SVCSTR(WMI_SERVICE_RESTRT_CHNL_SUPPORT);
Tamizh chelvam64ed57712016-08-02 16:13:14 +0530464 SVCSTR(WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT);
Raja Mani7e247a92016-04-12 20:15:53 +0530465 SVCSTR(WMI_SERVICE_TX_MODE_PUSH_ONLY);
466 SVCSTR(WMI_SERVICE_TX_MODE_PUSH_PULL);
467 SVCSTR(WMI_SERVICE_TX_MODE_DYNAMIC);
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300468 SVCSTR(WMI_SERVICE_VDEV_RX_FILTER);
Kalle Valo2321dd52019-02-11 18:48:01 +0200469 SVCSTR(WMI_SERVICE_BTCOEX);
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300470 SVCSTR(WMI_SERVICE_CHECK_CAL_VERSION);
471 SVCSTR(WMI_SERVICE_DBGLOG_WARN2);
472 SVCSTR(WMI_SERVICE_BTCOEX_DUTY_CYCLE);
473 SVCSTR(WMI_SERVICE_4_WIRE_COEX_SUPPORT);
474 SVCSTR(WMI_SERVICE_EXTENDED_NSS_SUPPORT);
475 SVCSTR(WMI_SERVICE_PROG_GPIO_BAND_SELECT);
476 SVCSTR(WMI_SERVICE_SMART_LOGGING_SUPPORT);
477 SVCSTR(WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE);
478 SVCSTR(WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY);
Kalle Valo2321dd52019-02-11 18:48:01 +0200479 SVCSTR(WMI_SERVICE_MGMT_TX_WMI);
Balaji Pothunoori14d65772017-12-21 20:00:42 +0530480 SVCSTR(WMI_SERVICE_TDLS_WIDER_BANDWIDTH);
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +0200481 SVCSTR(WMI_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS);
482 SVCSTR(WMI_SERVICE_HOST_DFS_CHECK_SUPPORT);
483 SVCSTR(WMI_SERVICE_TPC_STATS_FINAL);
Maharaja Kennadyrajandb251d72018-07-18 19:04:20 +0530484 SVCSTR(WMI_SERVICE_RESET_CHIP);
Kalle Valo2321dd52019-02-11 18:48:01 +0200485 SVCSTR(WMI_SERVICE_SPOOF_MAC_SUPPORT);
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +0300486 SVCSTR(WMI_SERVICE_TX_DATA_ACK_RSSI);
Maharaja Kennadyrajan46005632018-09-18 17:37:26 +0530487 SVCSTR(WMI_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT);
Kalle Valo2321dd52019-02-11 18:48:01 +0200488 SVCSTR(WMI_SERVICE_VDEV_DISABLE_4_ADDR_SRC_LRN_SUPPORT);
489 SVCSTR(WMI_SERVICE_BB_TIMING_CONFIG_SUPPORT);
490 SVCSTR(WMI_SERVICE_THERM_THROT);
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +0200491 SVCSTR(WMI_SERVICE_RTT_RESPONDER_ROLE);
Manikanta Pubbisetty4920ce32019-02-11 18:47:56 +0200492 SVCSTR(WMI_SERVICE_PER_PACKET_SW_ENCRYPT);
Manikanta Pubbisettybb31b7c2019-02-11 18:47:59 +0200493 SVCSTR(WMI_SERVICE_REPORT_AIRTIME);
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +0200494
Kalle Valo95cccf42019-02-11 18:48:04 +0200495 case WMI_SERVICE_MAX:
Michal Kaziorcff990c2014-08-04 09:18:33 +0300496 return NULL;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300497 }
Michal Kaziorcff990c2014-08-04 09:18:33 +0300498
499#undef SVCSTR
Kalle Valo95cccf42019-02-11 18:48:04 +0200500
501 return NULL;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300502}
503
Michal Kazior37b9f932014-11-27 10:11:16 +0100504#define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
505 ((svc_id) < (len) && \
Kalle Valo14e105c2016-04-13 14:13:21 +0300506 __le32_to_cpu((wmi_svc_bmap)[(svc_id) / (sizeof(u32))]) & \
507 BIT((svc_id) % (sizeof(u32))))
Michal Kaziorcff990c2014-08-04 09:18:33 +0300508
Manikanta Pubbisetty810fe812017-07-28 15:15:41 +0300509/* This extension is required to accommodate new services, current limit
510 * for wmi_services is 64 as target is using only 4-bits of each 32-bit
511 * wmi_service word. Extending this to make use of remaining unused bits
512 * for new services.
513 */
514#define WMI_EXT_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
515 ((svc_id) >= (len) && \
516 __le32_to_cpu((wmi_svc_bmap)[((svc_id) - (len)) / 28]) & \
517 BIT(((((svc_id) - (len)) % 28) & 0x1f) + 4))
518
Michal Kazior37b9f932014-11-27 10:11:16 +0100519#define SVCMAP(x, y, len) \
Michal Kaziorcff990c2014-08-04 09:18:33 +0300520 do { \
Manikanta Pubbisetty810fe812017-07-28 15:15:41 +0300521 if ((WMI_SERVICE_IS_ENABLED((in), (x), (len))) || \
522 (WMI_EXT_SERVICE_IS_ENABLED((in), (x), (len)))) \
Michal Kaziorcff990c2014-08-04 09:18:33 +0300523 __set_bit(y, out); \
524 } while (0)
525
Michal Kazior37b9f932014-11-27 10:11:16 +0100526static inline void wmi_10x_svc_map(const __le32 *in, unsigned long *out,
527 size_t len)
Michal Kaziorcff990c2014-08-04 09:18:33 +0300528{
529 SVCMAP(WMI_10X_SERVICE_BEACON_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100530 WMI_SERVICE_BEACON_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300531 SVCMAP(WMI_10X_SERVICE_SCAN_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100532 WMI_SERVICE_SCAN_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300533 SVCMAP(WMI_10X_SERVICE_ROAM_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100534 WMI_SERVICE_ROAM_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300535 SVCMAP(WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100536 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300537 SVCMAP(WMI_10X_SERVICE_STA_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100538 WMI_SERVICE_STA_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300539 SVCMAP(WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100540 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300541 SVCMAP(WMI_10X_SERVICE_AP_UAPSD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100542 WMI_SERVICE_AP_UAPSD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300543 SVCMAP(WMI_10X_SERVICE_AP_DFS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100544 WMI_SERVICE_AP_DFS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300545 SVCMAP(WMI_10X_SERVICE_11AC,
Michal Kazior37b9f932014-11-27 10:11:16 +0100546 WMI_SERVICE_11AC, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300547 SVCMAP(WMI_10X_SERVICE_BLOCKACK,
Michal Kazior37b9f932014-11-27 10:11:16 +0100548 WMI_SERVICE_BLOCKACK, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300549 SVCMAP(WMI_10X_SERVICE_PHYERR,
Michal Kazior37b9f932014-11-27 10:11:16 +0100550 WMI_SERVICE_PHYERR, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300551 SVCMAP(WMI_10X_SERVICE_BCN_FILTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100552 WMI_SERVICE_BCN_FILTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300553 SVCMAP(WMI_10X_SERVICE_RTT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100554 WMI_SERVICE_RTT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300555 SVCMAP(WMI_10X_SERVICE_RATECTRL,
Michal Kazior37b9f932014-11-27 10:11:16 +0100556 WMI_SERVICE_RATECTRL, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300557 SVCMAP(WMI_10X_SERVICE_WOW,
Michal Kazior37b9f932014-11-27 10:11:16 +0100558 WMI_SERVICE_WOW, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300559 SVCMAP(WMI_10X_SERVICE_RATECTRL_CACHE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100560 WMI_SERVICE_RATECTRL_CACHE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300561 SVCMAP(WMI_10X_SERVICE_IRAM_TIDS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100562 WMI_SERVICE_IRAM_TIDS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300563 SVCMAP(WMI_10X_SERVICE_BURST,
Michal Kazior37b9f932014-11-27 10:11:16 +0100564 WMI_SERVICE_BURST, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300565 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100566 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300567 SVCMAP(WMI_10X_SERVICE_FORCE_FW_HANG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100568 WMI_SERVICE_FORCE_FW_HANG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300569 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100570 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len);
Yanbo Li52c22a62015-04-15 15:28:07 +0300571 SVCMAP(WMI_10X_SERVICE_ATF,
572 WMI_SERVICE_ATF, len);
Yanbo Lide0c789b2015-04-15 15:28:08 +0300573 SVCMAP(WMI_10X_SERVICE_COEX_GPIO,
574 WMI_SERVICE_COEX_GPIO, len);
Peter Oh20fa2f72015-11-24 09:37:33 -0800575 SVCMAP(WMI_10X_SERVICE_AUX_SPECTRAL_INTF,
576 WMI_SERVICE_AUX_SPECTRAL_INTF, len);
577 SVCMAP(WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF,
578 WMI_SERVICE_AUX_CHAN_LOAD_INTF, len);
579 SVCMAP(WMI_10X_SERVICE_BSS_CHANNEL_INFO_64,
580 WMI_SERVICE_BSS_CHANNEL_INFO_64, len);
581 SVCMAP(WMI_10X_SERVICE_MESH,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800582 WMI_SERVICE_MESH_11S, len);
Peter Oh20fa2f72015-11-24 09:37:33 -0800583 SVCMAP(WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT,
584 WMI_SERVICE_EXT_RES_CFG_SUPPORT, len);
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530585 SVCMAP(WMI_10X_SERVICE_PEER_STATS,
586 WMI_SERVICE_PEER_STATS, len);
Venkateswara Naralasetty235b9c42018-04-10 18:01:05 +0300587 SVCMAP(WMI_10X_SERVICE_RESET_CHIP,
588 WMI_SERVICE_RESET_CHIP, len);
589 SVCMAP(WMI_10X_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS,
590 WMI_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS, len);
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +0200591 SVCMAP(WMI_10X_SERVICE_BB_TIMING_CONFIG_SUPPORT,
592 WMI_SERVICE_BB_TIMING_CONFIG_SUPPORT, len);
Manikanta Pubbisetty4920ce32019-02-11 18:47:56 +0200593 SVCMAP(WMI_10X_SERVICE_PER_PACKET_SW_ENCRYPT,
594 WMI_SERVICE_PER_PACKET_SW_ENCRYPT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300595}
596
Michal Kazior37b9f932014-11-27 10:11:16 +0100597static inline void wmi_main_svc_map(const __le32 *in, unsigned long *out,
598 size_t len)
Michal Kaziorcff990c2014-08-04 09:18:33 +0300599{
600 SVCMAP(WMI_MAIN_SERVICE_BEACON_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100601 WMI_SERVICE_BEACON_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300602 SVCMAP(WMI_MAIN_SERVICE_SCAN_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100603 WMI_SERVICE_SCAN_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300604 SVCMAP(WMI_MAIN_SERVICE_ROAM_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100605 WMI_SERVICE_ROAM_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300606 SVCMAP(WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100607 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300608 SVCMAP(WMI_MAIN_SERVICE_STA_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100609 WMI_SERVICE_STA_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300610 SVCMAP(WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100611 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300612 SVCMAP(WMI_MAIN_SERVICE_AP_UAPSD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100613 WMI_SERVICE_AP_UAPSD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300614 SVCMAP(WMI_MAIN_SERVICE_AP_DFS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100615 WMI_SERVICE_AP_DFS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300616 SVCMAP(WMI_MAIN_SERVICE_11AC,
Michal Kazior37b9f932014-11-27 10:11:16 +0100617 WMI_SERVICE_11AC, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300618 SVCMAP(WMI_MAIN_SERVICE_BLOCKACK,
Michal Kazior37b9f932014-11-27 10:11:16 +0100619 WMI_SERVICE_BLOCKACK, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300620 SVCMAP(WMI_MAIN_SERVICE_PHYERR,
Michal Kazior37b9f932014-11-27 10:11:16 +0100621 WMI_SERVICE_PHYERR, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300622 SVCMAP(WMI_MAIN_SERVICE_BCN_FILTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100623 WMI_SERVICE_BCN_FILTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300624 SVCMAP(WMI_MAIN_SERVICE_RTT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100625 WMI_SERVICE_RTT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300626 SVCMAP(WMI_MAIN_SERVICE_RATECTRL,
Michal Kazior37b9f932014-11-27 10:11:16 +0100627 WMI_SERVICE_RATECTRL, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300628 SVCMAP(WMI_MAIN_SERVICE_WOW,
Michal Kazior37b9f932014-11-27 10:11:16 +0100629 WMI_SERVICE_WOW, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300630 SVCMAP(WMI_MAIN_SERVICE_RATECTRL_CACHE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100631 WMI_SERVICE_RATECTRL_CACHE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300632 SVCMAP(WMI_MAIN_SERVICE_IRAM_TIDS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100633 WMI_SERVICE_IRAM_TIDS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300634 SVCMAP(WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100635 WMI_SERVICE_ARPNS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300636 SVCMAP(WMI_MAIN_SERVICE_NLO,
Michal Kazior37b9f932014-11-27 10:11:16 +0100637 WMI_SERVICE_NLO, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300638 SVCMAP(WMI_MAIN_SERVICE_GTK_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100639 WMI_SERVICE_GTK_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300640 SVCMAP(WMI_MAIN_SERVICE_SCAN_SCH,
Michal Kazior37b9f932014-11-27 10:11:16 +0100641 WMI_SERVICE_SCAN_SCH, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300642 SVCMAP(WMI_MAIN_SERVICE_CSA_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100643 WMI_SERVICE_CSA_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300644 SVCMAP(WMI_MAIN_SERVICE_CHATTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100645 WMI_SERVICE_CHATTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300646 SVCMAP(WMI_MAIN_SERVICE_COEX_FREQAVOID,
Michal Kazior37b9f932014-11-27 10:11:16 +0100647 WMI_SERVICE_COEX_FREQAVOID, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300648 SVCMAP(WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100649 WMI_SERVICE_PACKET_POWER_SAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300650 SVCMAP(WMI_MAIN_SERVICE_FORCE_FW_HANG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100651 WMI_SERVICE_FORCE_FW_HANG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300652 SVCMAP(WMI_MAIN_SERVICE_GPIO,
Michal Kazior37b9f932014-11-27 10:11:16 +0100653 WMI_SERVICE_GPIO, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300654 SVCMAP(WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
Michal Kazior37b9f932014-11-27 10:11:16 +0100655 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300656 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100657 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300658 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100659 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300660 SVCMAP(WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100661 WMI_SERVICE_STA_KEEP_ALIVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300662 SVCMAP(WMI_MAIN_SERVICE_TX_ENCAP,
Michal Kazior37b9f932014-11-27 10:11:16 +0100663 WMI_SERVICE_TX_ENCAP, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300664}
665
Raja Mani840357c2015-06-22 20:10:10 +0530666static inline void wmi_10_4_svc_map(const __le32 *in, unsigned long *out,
667 size_t len)
668{
669 SVCMAP(WMI_10_4_SERVICE_BEACON_OFFLOAD,
670 WMI_SERVICE_BEACON_OFFLOAD, len);
671 SVCMAP(WMI_10_4_SERVICE_SCAN_OFFLOAD,
672 WMI_SERVICE_SCAN_OFFLOAD, len);
673 SVCMAP(WMI_10_4_SERVICE_ROAM_OFFLOAD,
674 WMI_SERVICE_ROAM_OFFLOAD, len);
675 SVCMAP(WMI_10_4_SERVICE_BCN_MISS_OFFLOAD,
676 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
677 SVCMAP(WMI_10_4_SERVICE_STA_PWRSAVE,
678 WMI_SERVICE_STA_PWRSAVE, len);
679 SVCMAP(WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE,
680 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
681 SVCMAP(WMI_10_4_SERVICE_AP_UAPSD,
682 WMI_SERVICE_AP_UAPSD, len);
683 SVCMAP(WMI_10_4_SERVICE_AP_DFS,
684 WMI_SERVICE_AP_DFS, len);
685 SVCMAP(WMI_10_4_SERVICE_11AC,
686 WMI_SERVICE_11AC, len);
687 SVCMAP(WMI_10_4_SERVICE_BLOCKACK,
688 WMI_SERVICE_BLOCKACK, len);
689 SVCMAP(WMI_10_4_SERVICE_PHYERR,
690 WMI_SERVICE_PHYERR, len);
691 SVCMAP(WMI_10_4_SERVICE_BCN_FILTER,
692 WMI_SERVICE_BCN_FILTER, len);
693 SVCMAP(WMI_10_4_SERVICE_RTT,
694 WMI_SERVICE_RTT, len);
695 SVCMAP(WMI_10_4_SERVICE_RATECTRL,
696 WMI_SERVICE_RATECTRL, len);
697 SVCMAP(WMI_10_4_SERVICE_WOW,
698 WMI_SERVICE_WOW, len);
699 SVCMAP(WMI_10_4_SERVICE_RATECTRL_CACHE,
700 WMI_SERVICE_RATECTRL_CACHE, len);
701 SVCMAP(WMI_10_4_SERVICE_IRAM_TIDS,
702 WMI_SERVICE_IRAM_TIDS, len);
703 SVCMAP(WMI_10_4_SERVICE_BURST,
704 WMI_SERVICE_BURST, len);
705 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT,
706 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len);
707 SVCMAP(WMI_10_4_SERVICE_GTK_OFFLOAD,
708 WMI_SERVICE_GTK_OFFLOAD, len);
709 SVCMAP(WMI_10_4_SERVICE_SCAN_SCH,
710 WMI_SERVICE_SCAN_SCH, len);
711 SVCMAP(WMI_10_4_SERVICE_CSA_OFFLOAD,
712 WMI_SERVICE_CSA_OFFLOAD, len);
713 SVCMAP(WMI_10_4_SERVICE_CHATTER,
714 WMI_SERVICE_CHATTER, len);
715 SVCMAP(WMI_10_4_SERVICE_COEX_FREQAVOID,
716 WMI_SERVICE_COEX_FREQAVOID, len);
717 SVCMAP(WMI_10_4_SERVICE_PACKET_POWER_SAVE,
718 WMI_SERVICE_PACKET_POWER_SAVE, len);
719 SVCMAP(WMI_10_4_SERVICE_FORCE_FW_HANG,
720 WMI_SERVICE_FORCE_FW_HANG, len);
721 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT,
722 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len);
723 SVCMAP(WMI_10_4_SERVICE_GPIO,
724 WMI_SERVICE_GPIO, len);
725 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
726 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len);
727 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
728 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len);
729 SVCMAP(WMI_10_4_SERVICE_STA_KEEP_ALIVE,
730 WMI_SERVICE_STA_KEEP_ALIVE, len);
731 SVCMAP(WMI_10_4_SERVICE_TX_ENCAP,
732 WMI_SERVICE_TX_ENCAP, len);
733 SVCMAP(WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
734 WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, len);
735 SVCMAP(WMI_10_4_SERVICE_EARLY_RX,
736 WMI_SERVICE_EARLY_RX, len);
737 SVCMAP(WMI_10_4_SERVICE_ENHANCED_PROXY_STA,
738 WMI_SERVICE_ENHANCED_PROXY_STA, len);
739 SVCMAP(WMI_10_4_SERVICE_TT,
740 WMI_SERVICE_TT, len);
741 SVCMAP(WMI_10_4_SERVICE_ATF,
742 WMI_SERVICE_ATF, len);
743 SVCMAP(WMI_10_4_SERVICE_PEER_CACHING,
744 WMI_SERVICE_PEER_CACHING, len);
745 SVCMAP(WMI_10_4_SERVICE_COEX_GPIO,
746 WMI_SERVICE_COEX_GPIO, len);
747 SVCMAP(WMI_10_4_SERVICE_AUX_SPECTRAL_INTF,
748 WMI_SERVICE_AUX_SPECTRAL_INTF, len);
749 SVCMAP(WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF,
750 WMI_SERVICE_AUX_CHAN_LOAD_INTF, len);
751 SVCMAP(WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64,
752 WMI_SERVICE_BSS_CHANNEL_INFO_64, len);
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530753 SVCMAP(WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT,
754 WMI_SERVICE_EXT_RES_CFG_SUPPORT, len);
Peter Oh0b3d76e2016-01-28 13:54:07 -0800755 SVCMAP(WMI_10_4_SERVICE_MESH_NON_11S,
756 WMI_SERVICE_MESH_NON_11S, len);
Peter Ohe70e9ba2016-01-28 13:54:08 -0800757 SVCMAP(WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT,
758 WMI_SERVICE_RESTRT_CHNL_SUPPORT, len);
759 SVCMAP(WMI_10_4_SERVICE_PEER_STATS,
760 WMI_SERVICE_PEER_STATS, len);
761 SVCMAP(WMI_10_4_SERVICE_MESH_11S,
762 WMI_SERVICE_MESH_11S, len);
Tamizh chelvam64ed57712016-08-02 16:13:14 +0530763 SVCMAP(WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT,
764 WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT, len);
Raja Mani7e247a92016-04-12 20:15:53 +0530765 SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY,
766 WMI_SERVICE_TX_MODE_PUSH_ONLY, len);
767 SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_PULL,
768 WMI_SERVICE_TX_MODE_PUSH_PULL, len);
769 SVCMAP(WMI_10_4_SERVICE_TX_MODE_DYNAMIC,
770 WMI_SERVICE_TX_MODE_DYNAMIC, len);
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300771 SVCMAP(WMI_10_4_SERVICE_VDEV_RX_FILTER,
772 WMI_SERVICE_VDEV_RX_FILTER, len);
773 SVCMAP(WMI_10_4_SERVICE_BTCOEX,
774 WMI_SERVICE_BTCOEX, len);
775 SVCMAP(WMI_10_4_SERVICE_CHECK_CAL_VERSION,
776 WMI_SERVICE_CHECK_CAL_VERSION, len);
777 SVCMAP(WMI_10_4_SERVICE_DBGLOG_WARN2,
778 WMI_SERVICE_DBGLOG_WARN2, len);
779 SVCMAP(WMI_10_4_SERVICE_BTCOEX_DUTY_CYCLE,
780 WMI_SERVICE_BTCOEX_DUTY_CYCLE, len);
781 SVCMAP(WMI_10_4_SERVICE_4_WIRE_COEX_SUPPORT,
782 WMI_SERVICE_4_WIRE_COEX_SUPPORT, len);
783 SVCMAP(WMI_10_4_SERVICE_EXTENDED_NSS_SUPPORT,
784 WMI_SERVICE_EXTENDED_NSS_SUPPORT, len);
785 SVCMAP(WMI_10_4_SERVICE_PROG_GPIO_BAND_SELECT,
786 WMI_SERVICE_PROG_GPIO_BAND_SELECT, len);
787 SVCMAP(WMI_10_4_SERVICE_SMART_LOGGING_SUPPORT,
788 WMI_SERVICE_SMART_LOGGING_SUPPORT, len);
789 SVCMAP(WMI_10_4_SERVICE_TDLS,
790 WMI_SERVICE_TDLS, len);
791 SVCMAP(WMI_10_4_SERVICE_TDLS_OFFCHAN,
792 WMI_SERVICE_TDLS_OFFCHAN, len);
793 SVCMAP(WMI_10_4_SERVICE_TDLS_UAPSD_BUFFER_STA,
794 WMI_SERVICE_TDLS_UAPSD_BUFFER_STA, len);
795 SVCMAP(WMI_10_4_SERVICE_TDLS_UAPSD_SLEEP_STA,
796 WMI_SERVICE_TDLS_UAPSD_SLEEP_STA, len);
797 SVCMAP(WMI_10_4_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE,
798 WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE, len);
799 SVCMAP(WMI_10_4_SERVICE_TDLS_EXPLICIT_MODE_ONLY,
800 WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY, len);
Balaji Pothunoori14d65772017-12-21 20:00:42 +0530801 SVCMAP(WMI_10_4_SERVICE_TDLS_WIDER_BANDWIDTH,
802 WMI_SERVICE_TDLS_WIDER_BANDWIDTH, len);
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +0200803 SVCMAP(WMI_10_4_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS,
804 WMI_SERVICE_HTT_MGMT_TX_COMP_VALID_FLAGS, len);
805 SVCMAP(WMI_10_4_SERVICE_HOST_DFS_CHECK_SUPPORT,
806 WMI_SERVICE_HOST_DFS_CHECK_SUPPORT, len);
807 SVCMAP(WMI_10_4_SERVICE_TPC_STATS_FINAL,
808 WMI_SERVICE_TPC_STATS_FINAL, len);
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +0300809 SVCMAP(WMI_10_4_SERVICE_TX_DATA_ACK_RSSI,
810 WMI_SERVICE_TX_DATA_ACK_RSSI, len);
Maharaja Kennadyrajan46005632018-09-18 17:37:26 +0530811 SVCMAP(WMI_10_4_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT,
812 WMI_SERVICE_VDEV_DIFFERENT_BEACON_INTERVAL_SUPPORT, len);
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +0200813 SVCMAP(WMI_10_4_SERVICE_VDEV_DISABLE_4_ADDR_SRC_LRN_SUPPORT,
814 WMI_SERVICE_VDEV_DISABLE_4_ADDR_SRC_LRN_SUPPORT, len);
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +0200815 SVCMAP(WMI_10_4_SERVICE_RTT_RESPONDER_ROLE,
816 WMI_SERVICE_RTT_RESPONDER_ROLE, len);
Manikanta Pubbisetty4920ce32019-02-11 18:47:56 +0200817 SVCMAP(WMI_10_4_SERVICE_PER_PACKET_SW_ENCRYPT,
818 WMI_SERVICE_PER_PACKET_SW_ENCRYPT, len);
Manikanta Pubbisettybb31b7c2019-02-11 18:47:59 +0200819 SVCMAP(WMI_10_4_SERVICE_REPORT_AIRTIME,
820 WMI_SERVICE_REPORT_AIRTIME, len);
Raja Mani840357c2015-06-22 20:10:10 +0530821}
822
Michal Kaziorcff990c2014-08-04 09:18:33 +0300823#undef SVCMAP
Kalle Valo5e3dd152013-06-12 20:52:10 +0300824
Kalle Valo5e3dd152013-06-12 20:52:10 +0300825/* 2 word representation of MAC addr */
826struct wmi_mac_addr {
827 union {
828 u8 addr[6];
829 struct {
830 u32 word0;
831 u32 word1;
832 } __packed;
833 } __packed;
834} __packed;
835
Bartosz Markowskice428702013-09-26 17:47:05 +0200836struct wmi_cmd_map {
837 u32 init_cmdid;
838 u32 start_scan_cmdid;
839 u32 stop_scan_cmdid;
840 u32 scan_chan_list_cmdid;
841 u32 scan_sch_prio_tbl_cmdid;
Carl Huang60e1d0f2018-04-19 19:39:40 +0300842 u32 scan_prob_req_oui_cmdid;
Bartosz Markowskice428702013-09-26 17:47:05 +0200843 u32 pdev_set_regdomain_cmdid;
844 u32 pdev_set_channel_cmdid;
845 u32 pdev_set_param_cmdid;
846 u32 pdev_pktlog_enable_cmdid;
847 u32 pdev_pktlog_disable_cmdid;
848 u32 pdev_set_wmm_params_cmdid;
849 u32 pdev_set_ht_cap_ie_cmdid;
850 u32 pdev_set_vht_cap_ie_cmdid;
851 u32 pdev_set_dscp_tid_map_cmdid;
852 u32 pdev_set_quiet_mode_cmdid;
853 u32 pdev_green_ap_ps_enable_cmdid;
854 u32 pdev_get_tpc_config_cmdid;
855 u32 pdev_set_base_macaddr_cmdid;
856 u32 vdev_create_cmdid;
857 u32 vdev_delete_cmdid;
858 u32 vdev_start_request_cmdid;
859 u32 vdev_restart_request_cmdid;
860 u32 vdev_up_cmdid;
861 u32 vdev_stop_cmdid;
862 u32 vdev_down_cmdid;
863 u32 vdev_set_param_cmdid;
864 u32 vdev_install_key_cmdid;
865 u32 peer_create_cmdid;
866 u32 peer_delete_cmdid;
867 u32 peer_flush_tids_cmdid;
868 u32 peer_set_param_cmdid;
869 u32 peer_assoc_cmdid;
870 u32 peer_add_wds_entry_cmdid;
871 u32 peer_remove_wds_entry_cmdid;
872 u32 peer_mcast_group_cmdid;
873 u32 bcn_tx_cmdid;
874 u32 pdev_send_bcn_cmdid;
875 u32 bcn_tmpl_cmdid;
876 u32 bcn_filter_rx_cmdid;
877 u32 prb_req_filter_rx_cmdid;
878 u32 mgmt_tx_cmdid;
Rakesh Pillai1807da42017-12-11 19:52:53 +0530879 u32 mgmt_tx_send_cmdid;
Bartosz Markowskice428702013-09-26 17:47:05 +0200880 u32 prb_tmpl_cmdid;
881 u32 addba_clear_resp_cmdid;
882 u32 addba_send_cmdid;
883 u32 addba_status_cmdid;
884 u32 delba_send_cmdid;
885 u32 addba_set_resp_cmdid;
886 u32 send_singleamsdu_cmdid;
887 u32 sta_powersave_mode_cmdid;
888 u32 sta_powersave_param_cmdid;
889 u32 sta_mimo_ps_mode_cmdid;
890 u32 pdev_dfs_enable_cmdid;
891 u32 pdev_dfs_disable_cmdid;
892 u32 roam_scan_mode;
893 u32 roam_scan_rssi_threshold;
894 u32 roam_scan_period;
895 u32 roam_scan_rssi_change_threshold;
896 u32 roam_ap_profile;
897 u32 ofl_scan_add_ap_profile;
898 u32 ofl_scan_remove_ap_profile;
899 u32 ofl_scan_period;
900 u32 p2p_dev_set_device_info;
901 u32 p2p_dev_set_discoverability;
902 u32 p2p_go_set_beacon_ie;
903 u32 p2p_go_set_probe_resp_ie;
904 u32 p2p_set_vendor_ie_data_cmdid;
905 u32 ap_ps_peer_param_cmdid;
906 u32 ap_ps_peer_uapsd_coex_cmdid;
907 u32 peer_rate_retry_sched_cmdid;
908 u32 wlan_profile_trigger_cmdid;
909 u32 wlan_profile_set_hist_intvl_cmdid;
910 u32 wlan_profile_get_profile_data_cmdid;
911 u32 wlan_profile_enable_profile_id_cmdid;
912 u32 wlan_profile_list_profile_id_cmdid;
913 u32 pdev_suspend_cmdid;
914 u32 pdev_resume_cmdid;
915 u32 add_bcn_filter_cmdid;
916 u32 rmv_bcn_filter_cmdid;
917 u32 wow_add_wake_pattern_cmdid;
918 u32 wow_del_wake_pattern_cmdid;
919 u32 wow_enable_disable_wake_event_cmdid;
920 u32 wow_enable_cmdid;
921 u32 wow_hostwakeup_from_sleep_cmdid;
922 u32 rtt_measreq_cmdid;
923 u32 rtt_tsf_cmdid;
924 u32 vdev_spectral_scan_configure_cmdid;
925 u32 vdev_spectral_scan_enable_cmdid;
926 u32 request_stats_cmdid;
927 u32 set_arp_ns_offload_cmdid;
928 u32 network_list_offload_config_cmdid;
929 u32 gtk_offload_cmdid;
930 u32 csa_offload_enable_cmdid;
931 u32 csa_offload_chanswitch_cmdid;
932 u32 chatter_set_mode_cmdid;
933 u32 peer_tid_addba_cmdid;
934 u32 peer_tid_delba_cmdid;
935 u32 sta_dtim_ps_method_cmdid;
936 u32 sta_uapsd_auto_trig_cmdid;
937 u32 sta_keepalive_cmd;
938 u32 echo_cmdid;
939 u32 pdev_utf_cmdid;
940 u32 dbglog_cfg_cmdid;
941 u32 pdev_qvit_cmdid;
942 u32 pdev_ftm_intg_cmdid;
943 u32 vdev_set_keepalive_cmdid;
944 u32 vdev_get_keepalive_cmdid;
945 u32 force_fw_hang_cmdid;
946 u32 gpio_config_cmdid;
947 u32 gpio_output_cmdid;
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +0200948 u32 pdev_get_temperature_cmdid;
Michal Kazior6d492fe2015-01-28 09:57:22 +0200949 u32 vdev_set_wmm_params_cmdid;
Marek Puzyniakad45c882015-03-30 09:51:53 +0300950 u32 tdls_set_state_cmdid;
951 u32 tdls_peer_update_cmdid;
Michal Kazior5b272e32015-03-31 10:26:22 +0000952 u32 adaptive_qcs_cmdid;
Raja Mani2d491e62015-06-22 20:10:11 +0530953 u32 scan_update_request_cmdid;
954 u32 vdev_standby_response_cmdid;
955 u32 vdev_resume_response_cmdid;
956 u32 wlan_peer_caching_add_peer_cmdid;
957 u32 wlan_peer_caching_evict_peer_cmdid;
958 u32 wlan_peer_caching_restore_peer_cmdid;
959 u32 wlan_peer_caching_print_all_peers_info_cmdid;
960 u32 peer_update_wds_entry_cmdid;
961 u32 peer_add_proxy_sta_entry_cmdid;
962 u32 rtt_keepalive_cmdid;
963 u32 oem_req_cmdid;
964 u32 nan_cmdid;
965 u32 vdev_ratemask_cmdid;
966 u32 qboost_cfg_cmdid;
967 u32 pdev_smart_ant_enable_cmdid;
968 u32 pdev_smart_ant_set_rx_antenna_cmdid;
969 u32 peer_smart_ant_set_tx_antenna_cmdid;
970 u32 peer_smart_ant_set_train_info_cmdid;
971 u32 peer_smart_ant_set_node_config_ops_cmdid;
972 u32 pdev_set_antenna_switch_table_cmdid;
973 u32 pdev_set_ctl_table_cmdid;
974 u32 pdev_set_mimogain_table_cmdid;
975 u32 pdev_ratepwr_table_cmdid;
976 u32 pdev_ratepwr_chainmsk_table_cmdid;
977 u32 pdev_fips_cmdid;
978 u32 tt_set_conf_cmdid;
979 u32 fwtest_cmdid;
980 u32 vdev_atf_request_cmdid;
981 u32 peer_atf_request_cmdid;
982 u32 pdev_get_ani_cck_config_cmdid;
983 u32 pdev_get_ani_ofdm_config_cmdid;
984 u32 pdev_reserve_ast_entry_cmdid;
985 u32 pdev_get_nfcal_power_cmdid;
986 u32 pdev_get_tpc_cmdid;
987 u32 pdev_get_ast_info_cmdid;
988 u32 vdev_set_dscp_tid_map_cmdid;
989 u32 pdev_get_info_cmdid;
990 u32 vdev_get_info_cmdid;
991 u32 vdev_filter_neighbor_rx_packets_cmdid;
992 u32 mu_cal_start_cmdid;
993 u32 set_cca_params_cmdid;
994 u32 pdev_bss_chan_info_request_cmdid;
Maharaja62f77f02015-10-21 11:49:18 +0300995 u32 pdev_enable_adaptive_cca_cmdid;
Raja Mani47771902016-03-16 18:13:33 +0530996 u32 ext_resource_cfg_cmdid;
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +0300997 u32 vdev_set_ie_cmdid;
998 u32 set_lteu_config_cmdid;
999 u32 atf_ssid_grouping_request_cmdid;
1000 u32 peer_atf_ext_request_cmdid;
1001 u32 set_periodic_channel_stats_cfg_cmdid;
1002 u32 peer_bwf_request_cmdid;
1003 u32 btcoex_cfg_cmdid;
1004 u32 peer_tx_mu_txmit_count_cmdid;
1005 u32 peer_tx_mu_txmit_rstcnt_cmdid;
1006 u32 peer_gid_userpos_list_cmdid;
1007 u32 pdev_check_cal_version_cmdid;
1008 u32 coex_version_cfg_cmid;
1009 u32 pdev_get_rx_filter_cmdid;
1010 u32 pdev_extended_nss_cfg_cmdid;
1011 u32 vdev_set_scan_nac_rssi_cmdid;
1012 u32 prog_gpio_band_select_cmdid;
1013 u32 config_smart_logging_cmdid;
1014 u32 debug_fatal_condition_cmdid;
1015 u32 get_tsf_timer_cmdid;
1016 u32 pdev_get_tpc_table_cmdid;
1017 u32 vdev_sifs_trigger_time_cmdid;
1018 u32 pdev_wds_entry_list_cmdid;
1019 u32 tdls_set_offchan_mode_cmdid;
Sriram R6f6eb1b2018-05-15 14:39:49 +05301020 u32 radar_found_cmdid;
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +02001021 u32 set_bb_timing_cmdid;
Bartosz Markowskice428702013-09-26 17:47:05 +02001022};
1023
Kalle Valo5e3dd152013-06-12 20:52:10 +03001024/*
1025 * wmi command groups.
1026 */
1027enum wmi_cmd_group {
1028 /* 0 to 2 are reserved */
1029 WMI_GRP_START = 0x3,
1030 WMI_GRP_SCAN = WMI_GRP_START,
1031 WMI_GRP_PDEV,
1032 WMI_GRP_VDEV,
1033 WMI_GRP_PEER,
1034 WMI_GRP_MGMT,
1035 WMI_GRP_BA_NEG,
1036 WMI_GRP_STA_PS,
1037 WMI_GRP_DFS,
1038 WMI_GRP_ROAM,
1039 WMI_GRP_OFL_SCAN,
1040 WMI_GRP_P2P,
1041 WMI_GRP_AP_PS,
1042 WMI_GRP_RATE_CTRL,
1043 WMI_GRP_PROFILE,
1044 WMI_GRP_SUSPEND,
1045 WMI_GRP_BCN_FILTER,
1046 WMI_GRP_WOW,
1047 WMI_GRP_RTT,
1048 WMI_GRP_SPECTRAL,
1049 WMI_GRP_STATS,
1050 WMI_GRP_ARP_NS_OFL,
1051 WMI_GRP_NLO_OFL,
1052 WMI_GRP_GTK_OFL,
1053 WMI_GRP_CSA_OFL,
1054 WMI_GRP_CHATTER,
1055 WMI_GRP_TID_ADDBA,
1056 WMI_GRP_MISC,
1057 WMI_GRP_GPIO,
1058};
1059
1060#define WMI_CMD_GRP(grp_id) (((grp_id) << 12) | 0x1)
1061#define WMI_EVT_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1)
1062
Bartosz Markowski34957b22013-10-15 09:55:31 +02001063#define WMI_CMD_UNSUPPORTED 0
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +02001064
1065/* Command IDs and command events for MAIN FW. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001066enum wmi_cmd_id {
1067 WMI_INIT_CMDID = 0x1,
1068
1069 /* Scan specific commands */
1070 WMI_START_SCAN_CMDID = WMI_CMD_GRP(WMI_GRP_SCAN),
1071 WMI_STOP_SCAN_CMDID,
1072 WMI_SCAN_CHAN_LIST_CMDID,
1073 WMI_SCAN_SCH_PRIO_TBL_CMDID,
1074
1075 /* PDEV (physical device) specific commands */
1076 WMI_PDEV_SET_REGDOMAIN_CMDID = WMI_CMD_GRP(WMI_GRP_PDEV),
1077 WMI_PDEV_SET_CHANNEL_CMDID,
1078 WMI_PDEV_SET_PARAM_CMDID,
1079 WMI_PDEV_PKTLOG_ENABLE_CMDID,
1080 WMI_PDEV_PKTLOG_DISABLE_CMDID,
1081 WMI_PDEV_SET_WMM_PARAMS_CMDID,
1082 WMI_PDEV_SET_HT_CAP_IE_CMDID,
1083 WMI_PDEV_SET_VHT_CAP_IE_CMDID,
1084 WMI_PDEV_SET_DSCP_TID_MAP_CMDID,
1085 WMI_PDEV_SET_QUIET_MODE_CMDID,
1086 WMI_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1087 WMI_PDEV_GET_TPC_CONFIG_CMDID,
1088 WMI_PDEV_SET_BASE_MACADDR_CMDID,
1089
1090 /* VDEV (virtual device) specific commands */
1091 WMI_VDEV_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_VDEV),
1092 WMI_VDEV_DELETE_CMDID,
1093 WMI_VDEV_START_REQUEST_CMDID,
1094 WMI_VDEV_RESTART_REQUEST_CMDID,
1095 WMI_VDEV_UP_CMDID,
1096 WMI_VDEV_STOP_CMDID,
1097 WMI_VDEV_DOWN_CMDID,
1098 WMI_VDEV_SET_PARAM_CMDID,
1099 WMI_VDEV_INSTALL_KEY_CMDID,
1100
1101 /* peer specific commands */
1102 WMI_PEER_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_PEER),
1103 WMI_PEER_DELETE_CMDID,
1104 WMI_PEER_FLUSH_TIDS_CMDID,
1105 WMI_PEER_SET_PARAM_CMDID,
1106 WMI_PEER_ASSOC_CMDID,
1107 WMI_PEER_ADD_WDS_ENTRY_CMDID,
1108 WMI_PEER_REMOVE_WDS_ENTRY_CMDID,
1109 WMI_PEER_MCAST_GROUP_CMDID,
1110
1111 /* beacon/management specific commands */
1112 WMI_BCN_TX_CMDID = WMI_CMD_GRP(WMI_GRP_MGMT),
1113 WMI_PDEV_SEND_BCN_CMDID,
1114 WMI_BCN_TMPL_CMDID,
1115 WMI_BCN_FILTER_RX_CMDID,
1116 WMI_PRB_REQ_FILTER_RX_CMDID,
1117 WMI_MGMT_TX_CMDID,
1118 WMI_PRB_TMPL_CMDID,
1119
1120 /* commands to directly control BA negotiation directly from host. */
1121 WMI_ADDBA_CLEAR_RESP_CMDID = WMI_CMD_GRP(WMI_GRP_BA_NEG),
1122 WMI_ADDBA_SEND_CMDID,
1123 WMI_ADDBA_STATUS_CMDID,
1124 WMI_DELBA_SEND_CMDID,
1125 WMI_ADDBA_SET_RESP_CMDID,
1126 WMI_SEND_SINGLEAMSDU_CMDID,
1127
1128 /* Station power save specific config */
1129 WMI_STA_POWERSAVE_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_STA_PS),
1130 WMI_STA_POWERSAVE_PARAM_CMDID,
1131 WMI_STA_MIMO_PS_MODE_CMDID,
1132
1133 /** DFS-specific commands */
1134 WMI_PDEV_DFS_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_DFS),
1135 WMI_PDEV_DFS_DISABLE_CMDID,
1136
1137 /* Roaming specific commands */
1138 WMI_ROAM_SCAN_MODE = WMI_CMD_GRP(WMI_GRP_ROAM),
1139 WMI_ROAM_SCAN_RSSI_THRESHOLD,
1140 WMI_ROAM_SCAN_PERIOD,
1141 WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1142 WMI_ROAM_AP_PROFILE,
1143
1144 /* offload scan specific commands */
1145 WMI_OFL_SCAN_ADD_AP_PROFILE = WMI_CMD_GRP(WMI_GRP_OFL_SCAN),
1146 WMI_OFL_SCAN_REMOVE_AP_PROFILE,
1147 WMI_OFL_SCAN_PERIOD,
1148
1149 /* P2P specific commands */
1150 WMI_P2P_DEV_SET_DEVICE_INFO = WMI_CMD_GRP(WMI_GRP_P2P),
1151 WMI_P2P_DEV_SET_DISCOVERABILITY,
1152 WMI_P2P_GO_SET_BEACON_IE,
1153 WMI_P2P_GO_SET_PROBE_RESP_IE,
1154 WMI_P2P_SET_VENDOR_IE_DATA_CMDID,
1155
1156 /* AP power save specific config */
1157 WMI_AP_PS_PEER_PARAM_CMDID = WMI_CMD_GRP(WMI_GRP_AP_PS),
1158 WMI_AP_PS_PEER_UAPSD_COEX_CMDID,
1159
1160 /* Rate-control specific commands */
1161 WMI_PEER_RATE_RETRY_SCHED_CMDID =
1162 WMI_CMD_GRP(WMI_GRP_RATE_CTRL),
1163
1164 /* WLAN Profiling commands. */
1165 WMI_WLAN_PROFILE_TRIGGER_CMDID = WMI_CMD_GRP(WMI_GRP_PROFILE),
1166 WMI_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1167 WMI_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1168 WMI_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1169 WMI_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1170
1171 /* Suspend resume command Ids */
1172 WMI_PDEV_SUSPEND_CMDID = WMI_CMD_GRP(WMI_GRP_SUSPEND),
1173 WMI_PDEV_RESUME_CMDID,
1174
1175 /* Beacon filter commands */
1176 WMI_ADD_BCN_FILTER_CMDID = WMI_CMD_GRP(WMI_GRP_BCN_FILTER),
1177 WMI_RMV_BCN_FILTER_CMDID,
1178
1179 /* WOW Specific WMI commands*/
1180 WMI_WOW_ADD_WAKE_PATTERN_CMDID = WMI_CMD_GRP(WMI_GRP_WOW),
1181 WMI_WOW_DEL_WAKE_PATTERN_CMDID,
1182 WMI_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1183 WMI_WOW_ENABLE_CMDID,
1184 WMI_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1185
1186 /* RTT measurement related cmd */
1187 WMI_RTT_MEASREQ_CMDID = WMI_CMD_GRP(WMI_GRP_RTT),
1188 WMI_RTT_TSF_CMDID,
1189
1190 /* spectral scan commands */
1191 WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID = WMI_CMD_GRP(WMI_GRP_SPECTRAL),
1192 WMI_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1193
1194 /* F/W stats */
1195 WMI_REQUEST_STATS_CMDID = WMI_CMD_GRP(WMI_GRP_STATS),
1196
1197 /* ARP OFFLOAD REQUEST*/
1198 WMI_SET_ARP_NS_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_ARP_NS_OFL),
1199
1200 /* NS offload confid*/
1201 WMI_NETWORK_LIST_OFFLOAD_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_NLO_OFL),
1202
1203 /* GTK offload Specific WMI commands*/
1204 WMI_GTK_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_GTK_OFL),
1205
1206 /* CSA offload Specific WMI commands*/
1207 WMI_CSA_OFFLOAD_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_CSA_OFL),
1208 WMI_CSA_OFFLOAD_CHANSWITCH_CMDID,
1209
1210 /* Chatter commands*/
1211 WMI_CHATTER_SET_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_CHATTER),
1212
1213 /* addba specific commands */
1214 WMI_PEER_TID_ADDBA_CMDID = WMI_CMD_GRP(WMI_GRP_TID_ADDBA),
1215 WMI_PEER_TID_DELBA_CMDID,
1216
1217 /* set station mimo powersave method */
1218 WMI_STA_DTIM_PS_METHOD_CMDID,
1219 /* Configure the Station UAPSD AC Auto Trigger Parameters */
1220 WMI_STA_UAPSD_AUTO_TRIG_CMDID,
1221
1222 /* STA Keep alive parameter configuration,
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01001223 * Requires WMI_SERVICE_STA_KEEP_ALIVE
1224 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001225 WMI_STA_KEEPALIVE_CMD,
1226
1227 /* misc command group */
1228 WMI_ECHO_CMDID = WMI_CMD_GRP(WMI_GRP_MISC),
1229 WMI_PDEV_UTF_CMDID,
1230 WMI_DBGLOG_CFG_CMDID,
1231 WMI_PDEV_QVIT_CMDID,
1232 WMI_PDEV_FTM_INTG_CMDID,
1233 WMI_VDEV_SET_KEEPALIVE_CMDID,
1234 WMI_VDEV_GET_KEEPALIVE_CMDID,
Michal Kazior9cfbce72013-07-16 09:54:36 +02001235 WMI_FORCE_FW_HANG_CMDID,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001236
1237 /* GPIO Configuration */
1238 WMI_GPIO_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_GPIO),
1239 WMI_GPIO_OUTPUT_CMDID,
1240};
1241
1242enum wmi_event_id {
1243 WMI_SERVICE_READY_EVENTID = 0x1,
1244 WMI_READY_EVENTID,
Carl Huangcea19a62018-04-19 19:39:38 +03001245 WMI_SERVICE_AVAILABLE_EVENTID,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001246
1247 /* Scan specific events */
1248 WMI_SCAN_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_SCAN),
1249
1250 /* PDEV specific events */
1251 WMI_PDEV_TPC_CONFIG_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PDEV),
1252 WMI_CHAN_INFO_EVENTID,
1253 WMI_PHYERR_EVENTID,
1254
1255 /* VDEV specific events */
1256 WMI_VDEV_START_RESP_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_VDEV),
1257 WMI_VDEV_STOPPED_EVENTID,
1258 WMI_VDEV_INSTALL_KEY_COMPLETE_EVENTID,
1259
1260 /* peer specific events */
1261 WMI_PEER_STA_KICKOUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PEER),
1262
1263 /* beacon/mgmt specific events */
1264 WMI_MGMT_RX_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MGMT),
1265 WMI_HOST_SWBA_EVENTID,
1266 WMI_TBTTOFFSET_UPDATE_EVENTID,
1267
1268 /* ADDBA Related WMI Events*/
1269 WMI_TX_DELBA_COMPLETE_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_BA_NEG),
1270 WMI_TX_ADDBA_COMPLETE_EVENTID,
1271
1272 /* Roam event to trigger roaming on host */
1273 WMI_ROAM_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_ROAM),
1274 WMI_PROFILE_MATCH,
1275
1276 /* WoW */
1277 WMI_WOW_WAKEUP_HOST_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_WOW),
1278
1279 /* RTT */
1280 WMI_RTT_MEASUREMENT_REPORT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_RTT),
1281 WMI_TSF_MEASUREMENT_REPORT_EVENTID,
1282 WMI_RTT_ERROR_REPORT_EVENTID,
1283
1284 /* GTK offload */
1285 WMI_GTK_OFFLOAD_STATUS_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GTK_OFL),
1286 WMI_GTK_REKEY_FAIL_EVENTID,
1287
1288 /* CSA IE received event */
1289 WMI_CSA_HANDLING_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_CSA_OFL),
1290
1291 /* Misc events */
1292 WMI_ECHO_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MISC),
1293 WMI_PDEV_UTF_EVENTID,
1294 WMI_DEBUG_MESG_EVENTID,
1295 WMI_UPDATE_STATS_EVENTID,
1296 WMI_DEBUG_PRINT_EVENTID,
1297 WMI_DCS_INTERFERENCE_EVENTID,
1298 WMI_PDEV_QVIT_EVENTID,
1299 WMI_WLAN_PROFILE_DATA_EVENTID,
1300 WMI_PDEV_FTM_INTG_EVENTID,
1301 WMI_WLAN_FREQ_AVOID_EVENTID,
1302 WMI_VDEV_GET_KEEPALIVE_EVENTID,
1303
1304 /* GPIO Event */
1305 WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO),
1306};
1307
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +02001308/* Command IDs and command events for 10.X firmware */
1309enum wmi_10x_cmd_id {
1310 WMI_10X_START_CMDID = 0x9000,
1311 WMI_10X_END_CMDID = 0x9FFF,
1312
1313 /* initialize the wlan sub system */
1314 WMI_10X_INIT_CMDID,
1315
1316 /* Scan specific commands */
1317
1318 WMI_10X_START_SCAN_CMDID = WMI_10X_START_CMDID,
1319 WMI_10X_STOP_SCAN_CMDID,
1320 WMI_10X_SCAN_CHAN_LIST_CMDID,
1321 WMI_10X_ECHO_CMDID,
1322
1323 /* PDEV(physical device) specific commands */
1324 WMI_10X_PDEV_SET_REGDOMAIN_CMDID,
1325 WMI_10X_PDEV_SET_CHANNEL_CMDID,
1326 WMI_10X_PDEV_SET_PARAM_CMDID,
1327 WMI_10X_PDEV_PKTLOG_ENABLE_CMDID,
1328 WMI_10X_PDEV_PKTLOG_DISABLE_CMDID,
1329 WMI_10X_PDEV_SET_WMM_PARAMS_CMDID,
1330 WMI_10X_PDEV_SET_HT_CAP_IE_CMDID,
1331 WMI_10X_PDEV_SET_VHT_CAP_IE_CMDID,
1332 WMI_10X_PDEV_SET_BASE_MACADDR_CMDID,
1333 WMI_10X_PDEV_SET_DSCP_TID_MAP_CMDID,
1334 WMI_10X_PDEV_SET_QUIET_MODE_CMDID,
1335 WMI_10X_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1336 WMI_10X_PDEV_GET_TPC_CONFIG_CMDID,
1337
1338 /* VDEV(virtual device) specific commands */
1339 WMI_10X_VDEV_CREATE_CMDID,
1340 WMI_10X_VDEV_DELETE_CMDID,
1341 WMI_10X_VDEV_START_REQUEST_CMDID,
1342 WMI_10X_VDEV_RESTART_REQUEST_CMDID,
1343 WMI_10X_VDEV_UP_CMDID,
1344 WMI_10X_VDEV_STOP_CMDID,
1345 WMI_10X_VDEV_DOWN_CMDID,
1346 WMI_10X_VDEV_STANDBY_RESPONSE_CMDID,
1347 WMI_10X_VDEV_RESUME_RESPONSE_CMDID,
1348 WMI_10X_VDEV_SET_PARAM_CMDID,
1349 WMI_10X_VDEV_INSTALL_KEY_CMDID,
1350
1351 /* peer specific commands */
1352 WMI_10X_PEER_CREATE_CMDID,
1353 WMI_10X_PEER_DELETE_CMDID,
1354 WMI_10X_PEER_FLUSH_TIDS_CMDID,
1355 WMI_10X_PEER_SET_PARAM_CMDID,
1356 WMI_10X_PEER_ASSOC_CMDID,
1357 WMI_10X_PEER_ADD_WDS_ENTRY_CMDID,
1358 WMI_10X_PEER_REMOVE_WDS_ENTRY_CMDID,
1359 WMI_10X_PEER_MCAST_GROUP_CMDID,
1360
1361 /* beacon/management specific commands */
1362
1363 WMI_10X_BCN_TX_CMDID,
1364 WMI_10X_BCN_PRB_TMPL_CMDID,
1365 WMI_10X_BCN_FILTER_RX_CMDID,
1366 WMI_10X_PRB_REQ_FILTER_RX_CMDID,
1367 WMI_10X_MGMT_TX_CMDID,
1368
1369 /* commands to directly control ba negotiation directly from host. */
1370 WMI_10X_ADDBA_CLEAR_RESP_CMDID,
1371 WMI_10X_ADDBA_SEND_CMDID,
1372 WMI_10X_ADDBA_STATUS_CMDID,
1373 WMI_10X_DELBA_SEND_CMDID,
1374 WMI_10X_ADDBA_SET_RESP_CMDID,
1375 WMI_10X_SEND_SINGLEAMSDU_CMDID,
1376
1377 /* Station power save specific config */
1378 WMI_10X_STA_POWERSAVE_MODE_CMDID,
1379 WMI_10X_STA_POWERSAVE_PARAM_CMDID,
1380 WMI_10X_STA_MIMO_PS_MODE_CMDID,
1381
1382 /* set debug log config */
1383 WMI_10X_DBGLOG_CFG_CMDID,
1384
1385 /* DFS-specific commands */
1386 WMI_10X_PDEV_DFS_ENABLE_CMDID,
1387 WMI_10X_PDEV_DFS_DISABLE_CMDID,
1388
1389 /* QVIT specific command id */
1390 WMI_10X_PDEV_QVIT_CMDID,
1391
1392 /* Offload Scan and Roaming related commands */
1393 WMI_10X_ROAM_SCAN_MODE,
1394 WMI_10X_ROAM_SCAN_RSSI_THRESHOLD,
1395 WMI_10X_ROAM_SCAN_PERIOD,
1396 WMI_10X_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1397 WMI_10X_ROAM_AP_PROFILE,
1398 WMI_10X_OFL_SCAN_ADD_AP_PROFILE,
1399 WMI_10X_OFL_SCAN_REMOVE_AP_PROFILE,
1400 WMI_10X_OFL_SCAN_PERIOD,
1401
1402 /* P2P specific commands */
1403 WMI_10X_P2P_DEV_SET_DEVICE_INFO,
1404 WMI_10X_P2P_DEV_SET_DISCOVERABILITY,
1405 WMI_10X_P2P_GO_SET_BEACON_IE,
1406 WMI_10X_P2P_GO_SET_PROBE_RESP_IE,
1407
1408 /* AP power save specific config */
1409 WMI_10X_AP_PS_PEER_PARAM_CMDID,
1410 WMI_10X_AP_PS_PEER_UAPSD_COEX_CMDID,
1411
1412 /* Rate-control specific commands */
1413 WMI_10X_PEER_RATE_RETRY_SCHED_CMDID,
1414
1415 /* WLAN Profiling commands. */
1416 WMI_10X_WLAN_PROFILE_TRIGGER_CMDID,
1417 WMI_10X_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1418 WMI_10X_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1419 WMI_10X_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1420 WMI_10X_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1421
1422 /* Suspend resume command Ids */
1423 WMI_10X_PDEV_SUSPEND_CMDID,
1424 WMI_10X_PDEV_RESUME_CMDID,
1425
1426 /* Beacon filter commands */
1427 WMI_10X_ADD_BCN_FILTER_CMDID,
1428 WMI_10X_RMV_BCN_FILTER_CMDID,
1429
1430 /* WOW Specific WMI commands*/
1431 WMI_10X_WOW_ADD_WAKE_PATTERN_CMDID,
1432 WMI_10X_WOW_DEL_WAKE_PATTERN_CMDID,
1433 WMI_10X_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1434 WMI_10X_WOW_ENABLE_CMDID,
1435 WMI_10X_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1436
1437 /* RTT measurement related cmd */
1438 WMI_10X_RTT_MEASREQ_CMDID,
1439 WMI_10X_RTT_TSF_CMDID,
1440
1441 /* transmit beacon by value */
1442 WMI_10X_PDEV_SEND_BCN_CMDID,
1443
1444 /* F/W stats */
1445 WMI_10X_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1446 WMI_10X_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1447 WMI_10X_REQUEST_STATS_CMDID,
1448
1449 /* GPIO Configuration */
1450 WMI_10X_GPIO_CONFIG_CMDID,
1451 WMI_10X_GPIO_OUTPUT_CMDID,
1452
1453 WMI_10X_PDEV_UTF_CMDID = WMI_10X_END_CMDID - 1,
1454};
1455
1456enum wmi_10x_event_id {
1457 WMI_10X_SERVICE_READY_EVENTID = 0x8000,
1458 WMI_10X_READY_EVENTID,
1459 WMI_10X_START_EVENTID = 0x9000,
1460 WMI_10X_END_EVENTID = 0x9FFF,
1461
1462 /* Scan specific events */
1463 WMI_10X_SCAN_EVENTID = WMI_10X_START_EVENTID,
1464 WMI_10X_ECHO_EVENTID,
1465 WMI_10X_DEBUG_MESG_EVENTID,
1466 WMI_10X_UPDATE_STATS_EVENTID,
1467
1468 /* Instantaneous RSSI event */
1469 WMI_10X_INST_RSSI_STATS_EVENTID,
1470
1471 /* VDEV specific events */
1472 WMI_10X_VDEV_START_RESP_EVENTID,
1473 WMI_10X_VDEV_STANDBY_REQ_EVENTID,
1474 WMI_10X_VDEV_RESUME_REQ_EVENTID,
1475 WMI_10X_VDEV_STOPPED_EVENTID,
1476
1477 /* peer specific events */
1478 WMI_10X_PEER_STA_KICKOUT_EVENTID,
1479
1480 /* beacon/mgmt specific events */
1481 WMI_10X_HOST_SWBA_EVENTID,
1482 WMI_10X_TBTTOFFSET_UPDATE_EVENTID,
1483 WMI_10X_MGMT_RX_EVENTID,
1484
1485 /* Channel stats event */
1486 WMI_10X_CHAN_INFO_EVENTID,
1487
1488 /* PHY Error specific WMI event */
1489 WMI_10X_PHYERR_EVENTID,
1490
1491 /* Roam event to trigger roaming on host */
1492 WMI_10X_ROAM_EVENTID,
1493
1494 /* matching AP found from list of profiles */
1495 WMI_10X_PROFILE_MATCH,
1496
1497 /* debug print message used for tracing FW code while debugging */
1498 WMI_10X_DEBUG_PRINT_EVENTID,
1499 /* VI spoecific event */
1500 WMI_10X_PDEV_QVIT_EVENTID,
1501 /* FW code profile data in response to profile request */
1502 WMI_10X_WLAN_PROFILE_DATA_EVENTID,
1503
1504 /*RTT related event ID*/
1505 WMI_10X_RTT_MEASUREMENT_REPORT_EVENTID,
1506 WMI_10X_TSF_MEASUREMENT_REPORT_EVENTID,
1507 WMI_10X_RTT_ERROR_REPORT_EVENTID,
1508
1509 WMI_10X_WOW_WAKEUP_HOST_EVENTID,
1510 WMI_10X_DCS_INTERFERENCE_EVENTID,
1511
1512 /* TPC config for the current operating channel */
1513 WMI_10X_PDEV_TPC_CONFIG_EVENTID,
1514
1515 WMI_10X_GPIO_INPUT_EVENTID,
Kalle Valo14e105c2016-04-13 14:13:21 +03001516 WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID - 1,
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +02001517};
1518
Michal Kazior24c88f72014-07-25 13:32:17 +02001519enum wmi_10_2_cmd_id {
1520 WMI_10_2_START_CMDID = 0x9000,
1521 WMI_10_2_END_CMDID = 0x9FFF,
1522 WMI_10_2_INIT_CMDID,
1523 WMI_10_2_START_SCAN_CMDID = WMI_10_2_START_CMDID,
1524 WMI_10_2_STOP_SCAN_CMDID,
1525 WMI_10_2_SCAN_CHAN_LIST_CMDID,
1526 WMI_10_2_ECHO_CMDID,
1527 WMI_10_2_PDEV_SET_REGDOMAIN_CMDID,
1528 WMI_10_2_PDEV_SET_CHANNEL_CMDID,
1529 WMI_10_2_PDEV_SET_PARAM_CMDID,
1530 WMI_10_2_PDEV_PKTLOG_ENABLE_CMDID,
1531 WMI_10_2_PDEV_PKTLOG_DISABLE_CMDID,
1532 WMI_10_2_PDEV_SET_WMM_PARAMS_CMDID,
1533 WMI_10_2_PDEV_SET_HT_CAP_IE_CMDID,
1534 WMI_10_2_PDEV_SET_VHT_CAP_IE_CMDID,
1535 WMI_10_2_PDEV_SET_BASE_MACADDR_CMDID,
1536 WMI_10_2_PDEV_SET_QUIET_MODE_CMDID,
1537 WMI_10_2_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1538 WMI_10_2_PDEV_GET_TPC_CONFIG_CMDID,
1539 WMI_10_2_VDEV_CREATE_CMDID,
1540 WMI_10_2_VDEV_DELETE_CMDID,
1541 WMI_10_2_VDEV_START_REQUEST_CMDID,
1542 WMI_10_2_VDEV_RESTART_REQUEST_CMDID,
1543 WMI_10_2_VDEV_UP_CMDID,
1544 WMI_10_2_VDEV_STOP_CMDID,
1545 WMI_10_2_VDEV_DOWN_CMDID,
1546 WMI_10_2_VDEV_STANDBY_RESPONSE_CMDID,
1547 WMI_10_2_VDEV_RESUME_RESPONSE_CMDID,
1548 WMI_10_2_VDEV_SET_PARAM_CMDID,
1549 WMI_10_2_VDEV_INSTALL_KEY_CMDID,
1550 WMI_10_2_VDEV_SET_DSCP_TID_MAP_CMDID,
1551 WMI_10_2_PEER_CREATE_CMDID,
1552 WMI_10_2_PEER_DELETE_CMDID,
1553 WMI_10_2_PEER_FLUSH_TIDS_CMDID,
1554 WMI_10_2_PEER_SET_PARAM_CMDID,
1555 WMI_10_2_PEER_ASSOC_CMDID,
1556 WMI_10_2_PEER_ADD_WDS_ENTRY_CMDID,
1557 WMI_10_2_PEER_UPDATE_WDS_ENTRY_CMDID,
1558 WMI_10_2_PEER_REMOVE_WDS_ENTRY_CMDID,
1559 WMI_10_2_PEER_MCAST_GROUP_CMDID,
1560 WMI_10_2_BCN_TX_CMDID,
1561 WMI_10_2_BCN_PRB_TMPL_CMDID,
1562 WMI_10_2_BCN_FILTER_RX_CMDID,
1563 WMI_10_2_PRB_REQ_FILTER_RX_CMDID,
1564 WMI_10_2_MGMT_TX_CMDID,
1565 WMI_10_2_ADDBA_CLEAR_RESP_CMDID,
1566 WMI_10_2_ADDBA_SEND_CMDID,
1567 WMI_10_2_ADDBA_STATUS_CMDID,
1568 WMI_10_2_DELBA_SEND_CMDID,
1569 WMI_10_2_ADDBA_SET_RESP_CMDID,
1570 WMI_10_2_SEND_SINGLEAMSDU_CMDID,
1571 WMI_10_2_STA_POWERSAVE_MODE_CMDID,
1572 WMI_10_2_STA_POWERSAVE_PARAM_CMDID,
1573 WMI_10_2_STA_MIMO_PS_MODE_CMDID,
1574 WMI_10_2_DBGLOG_CFG_CMDID,
1575 WMI_10_2_PDEV_DFS_ENABLE_CMDID,
1576 WMI_10_2_PDEV_DFS_DISABLE_CMDID,
1577 WMI_10_2_PDEV_QVIT_CMDID,
1578 WMI_10_2_ROAM_SCAN_MODE,
1579 WMI_10_2_ROAM_SCAN_RSSI_THRESHOLD,
1580 WMI_10_2_ROAM_SCAN_PERIOD,
1581 WMI_10_2_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1582 WMI_10_2_ROAM_AP_PROFILE,
1583 WMI_10_2_OFL_SCAN_ADD_AP_PROFILE,
1584 WMI_10_2_OFL_SCAN_REMOVE_AP_PROFILE,
1585 WMI_10_2_OFL_SCAN_PERIOD,
1586 WMI_10_2_P2P_DEV_SET_DEVICE_INFO,
1587 WMI_10_2_P2P_DEV_SET_DISCOVERABILITY,
1588 WMI_10_2_P2P_GO_SET_BEACON_IE,
1589 WMI_10_2_P2P_GO_SET_PROBE_RESP_IE,
1590 WMI_10_2_AP_PS_PEER_PARAM_CMDID,
1591 WMI_10_2_AP_PS_PEER_UAPSD_COEX_CMDID,
1592 WMI_10_2_PEER_RATE_RETRY_SCHED_CMDID,
1593 WMI_10_2_WLAN_PROFILE_TRIGGER_CMDID,
1594 WMI_10_2_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1595 WMI_10_2_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1596 WMI_10_2_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1597 WMI_10_2_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1598 WMI_10_2_PDEV_SUSPEND_CMDID,
1599 WMI_10_2_PDEV_RESUME_CMDID,
1600 WMI_10_2_ADD_BCN_FILTER_CMDID,
1601 WMI_10_2_RMV_BCN_FILTER_CMDID,
1602 WMI_10_2_WOW_ADD_WAKE_PATTERN_CMDID,
1603 WMI_10_2_WOW_DEL_WAKE_PATTERN_CMDID,
1604 WMI_10_2_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1605 WMI_10_2_WOW_ENABLE_CMDID,
1606 WMI_10_2_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1607 WMI_10_2_RTT_MEASREQ_CMDID,
1608 WMI_10_2_RTT_TSF_CMDID,
1609 WMI_10_2_RTT_KEEPALIVE_CMDID,
1610 WMI_10_2_PDEV_SEND_BCN_CMDID,
1611 WMI_10_2_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1612 WMI_10_2_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1613 WMI_10_2_REQUEST_STATS_CMDID,
1614 WMI_10_2_GPIO_CONFIG_CMDID,
1615 WMI_10_2_GPIO_OUTPUT_CMDID,
1616 WMI_10_2_VDEV_RATEMASK_CMDID,
1617 WMI_10_2_PDEV_SMART_ANT_ENABLE_CMDID,
1618 WMI_10_2_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID,
1619 WMI_10_2_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID,
1620 WMI_10_2_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID,
1621 WMI_10_2_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID,
1622 WMI_10_2_FORCE_FW_HANG_CMDID,
1623 WMI_10_2_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID,
1624 WMI_10_2_PDEV_SET_CTL_TABLE_CMDID,
1625 WMI_10_2_PDEV_SET_MIMOGAIN_TABLE_CMDID,
1626 WMI_10_2_PDEV_RATEPWR_TABLE_CMDID,
1627 WMI_10_2_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID,
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02001628 WMI_10_2_PDEV_GET_INFO,
1629 WMI_10_2_VDEV_GET_INFO,
1630 WMI_10_2_VDEV_ATF_REQUEST_CMDID,
1631 WMI_10_2_PEER_ATF_REQUEST_CMDID,
1632 WMI_10_2_PDEV_GET_TEMPERATURE_CMDID,
Maharaja62f77f02015-10-21 11:49:18 +03001633 WMI_10_2_MU_CAL_START_CMDID,
1634 WMI_10_2_SET_LTEU_CONFIG_CMDID,
1635 WMI_10_2_SET_CCA_PARAMS,
Rajkumar Manoharandd2c5fc2016-04-27 16:23:19 +05301636 WMI_10_2_PDEV_BSS_CHAN_INFO_REQUEST_CMDID,
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +02001637 WMI_10_2_FWTEST_CMDID,
1638 WMI_10_2_PDEV_SET_BB_TIMING_CONFIG_CMDID,
Michal Kazior24c88f72014-07-25 13:32:17 +02001639 WMI_10_2_PDEV_UTF_CMDID = WMI_10_2_END_CMDID - 1,
1640};
1641
1642enum wmi_10_2_event_id {
1643 WMI_10_2_SERVICE_READY_EVENTID = 0x8000,
1644 WMI_10_2_READY_EVENTID,
1645 WMI_10_2_DEBUG_MESG_EVENTID,
1646 WMI_10_2_START_EVENTID = 0x9000,
1647 WMI_10_2_END_EVENTID = 0x9FFF,
1648 WMI_10_2_SCAN_EVENTID = WMI_10_2_START_EVENTID,
1649 WMI_10_2_ECHO_EVENTID,
1650 WMI_10_2_UPDATE_STATS_EVENTID,
1651 WMI_10_2_INST_RSSI_STATS_EVENTID,
1652 WMI_10_2_VDEV_START_RESP_EVENTID,
1653 WMI_10_2_VDEV_STANDBY_REQ_EVENTID,
1654 WMI_10_2_VDEV_RESUME_REQ_EVENTID,
1655 WMI_10_2_VDEV_STOPPED_EVENTID,
1656 WMI_10_2_PEER_STA_KICKOUT_EVENTID,
1657 WMI_10_2_HOST_SWBA_EVENTID,
1658 WMI_10_2_TBTTOFFSET_UPDATE_EVENTID,
1659 WMI_10_2_MGMT_RX_EVENTID,
1660 WMI_10_2_CHAN_INFO_EVENTID,
1661 WMI_10_2_PHYERR_EVENTID,
1662 WMI_10_2_ROAM_EVENTID,
1663 WMI_10_2_PROFILE_MATCH,
1664 WMI_10_2_DEBUG_PRINT_EVENTID,
1665 WMI_10_2_PDEV_QVIT_EVENTID,
1666 WMI_10_2_WLAN_PROFILE_DATA_EVENTID,
1667 WMI_10_2_RTT_MEASUREMENT_REPORT_EVENTID,
1668 WMI_10_2_TSF_MEASUREMENT_REPORT_EVENTID,
1669 WMI_10_2_RTT_ERROR_REPORT_EVENTID,
1670 WMI_10_2_RTT_KEEPALIVE_EVENTID,
1671 WMI_10_2_WOW_WAKEUP_HOST_EVENTID,
1672 WMI_10_2_DCS_INTERFERENCE_EVENTID,
1673 WMI_10_2_PDEV_TPC_CONFIG_EVENTID,
1674 WMI_10_2_GPIO_INPUT_EVENTID,
1675 WMI_10_2_PEER_RATECODE_LIST_EVENTID,
1676 WMI_10_2_GENERIC_BUFFER_EVENTID,
1677 WMI_10_2_MCAST_BUF_RELEASE_EVENTID,
1678 WMI_10_2_MCAST_LIST_AGEOUT_EVENTID,
1679 WMI_10_2_WDS_PEER_EVENTID,
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02001680 WMI_10_2_PEER_STA_PS_STATECHG_EVENTID,
1681 WMI_10_2_PDEV_TEMPERATURE_EVENTID,
Rajkumar Manoharandd2c5fc2016-04-27 16:23:19 +05301682 WMI_10_2_MU_REPORT_EVENTID,
1683 WMI_10_2_PDEV_BSS_CHAN_INFO_EVENTID,
Michal Kazior24c88f72014-07-25 13:32:17 +02001684 WMI_10_2_PDEV_UTF_EVENTID = WMI_10_2_END_EVENTID - 1,
1685};
1686
Raja Mani2d491e62015-06-22 20:10:11 +05301687enum wmi_10_4_cmd_id {
1688 WMI_10_4_START_CMDID = 0x9000,
1689 WMI_10_4_END_CMDID = 0x9FFF,
1690 WMI_10_4_INIT_CMDID,
1691 WMI_10_4_START_SCAN_CMDID = WMI_10_4_START_CMDID,
1692 WMI_10_4_STOP_SCAN_CMDID,
1693 WMI_10_4_SCAN_CHAN_LIST_CMDID,
1694 WMI_10_4_SCAN_SCH_PRIO_TBL_CMDID,
1695 WMI_10_4_SCAN_UPDATE_REQUEST_CMDID,
1696 WMI_10_4_ECHO_CMDID,
1697 WMI_10_4_PDEV_SET_REGDOMAIN_CMDID,
1698 WMI_10_4_PDEV_SET_CHANNEL_CMDID,
1699 WMI_10_4_PDEV_SET_PARAM_CMDID,
1700 WMI_10_4_PDEV_PKTLOG_ENABLE_CMDID,
1701 WMI_10_4_PDEV_PKTLOG_DISABLE_CMDID,
1702 WMI_10_4_PDEV_SET_WMM_PARAMS_CMDID,
1703 WMI_10_4_PDEV_SET_HT_CAP_IE_CMDID,
1704 WMI_10_4_PDEV_SET_VHT_CAP_IE_CMDID,
1705 WMI_10_4_PDEV_SET_BASE_MACADDR_CMDID,
1706 WMI_10_4_PDEV_SET_DSCP_TID_MAP_CMDID,
1707 WMI_10_4_PDEV_SET_QUIET_MODE_CMDID,
1708 WMI_10_4_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1709 WMI_10_4_PDEV_GET_TPC_CONFIG_CMDID,
1710 WMI_10_4_VDEV_CREATE_CMDID,
1711 WMI_10_4_VDEV_DELETE_CMDID,
1712 WMI_10_4_VDEV_START_REQUEST_CMDID,
1713 WMI_10_4_VDEV_RESTART_REQUEST_CMDID,
1714 WMI_10_4_VDEV_UP_CMDID,
1715 WMI_10_4_VDEV_STOP_CMDID,
1716 WMI_10_4_VDEV_DOWN_CMDID,
1717 WMI_10_4_VDEV_STANDBY_RESPONSE_CMDID,
1718 WMI_10_4_VDEV_RESUME_RESPONSE_CMDID,
1719 WMI_10_4_VDEV_SET_PARAM_CMDID,
1720 WMI_10_4_VDEV_INSTALL_KEY_CMDID,
1721 WMI_10_4_WLAN_PEER_CACHING_ADD_PEER_CMDID,
1722 WMI_10_4_WLAN_PEER_CACHING_EVICT_PEER_CMDID,
1723 WMI_10_4_WLAN_PEER_CACHING_RESTORE_PEER_CMDID,
1724 WMI_10_4_WLAN_PEER_CACHING_PRINT_ALL_PEERS_INFO_CMDID,
1725 WMI_10_4_PEER_CREATE_CMDID,
1726 WMI_10_4_PEER_DELETE_CMDID,
1727 WMI_10_4_PEER_FLUSH_TIDS_CMDID,
1728 WMI_10_4_PEER_SET_PARAM_CMDID,
1729 WMI_10_4_PEER_ASSOC_CMDID,
1730 WMI_10_4_PEER_ADD_WDS_ENTRY_CMDID,
1731 WMI_10_4_PEER_UPDATE_WDS_ENTRY_CMDID,
1732 WMI_10_4_PEER_REMOVE_WDS_ENTRY_CMDID,
1733 WMI_10_4_PEER_ADD_PROXY_STA_ENTRY_CMDID,
1734 WMI_10_4_PEER_MCAST_GROUP_CMDID,
1735 WMI_10_4_BCN_TX_CMDID,
1736 WMI_10_4_PDEV_SEND_BCN_CMDID,
1737 WMI_10_4_BCN_PRB_TMPL_CMDID,
1738 WMI_10_4_BCN_FILTER_RX_CMDID,
1739 WMI_10_4_PRB_REQ_FILTER_RX_CMDID,
1740 WMI_10_4_MGMT_TX_CMDID,
1741 WMI_10_4_PRB_TMPL_CMDID,
1742 WMI_10_4_ADDBA_CLEAR_RESP_CMDID,
1743 WMI_10_4_ADDBA_SEND_CMDID,
1744 WMI_10_4_ADDBA_STATUS_CMDID,
1745 WMI_10_4_DELBA_SEND_CMDID,
1746 WMI_10_4_ADDBA_SET_RESP_CMDID,
1747 WMI_10_4_SEND_SINGLEAMSDU_CMDID,
1748 WMI_10_4_STA_POWERSAVE_MODE_CMDID,
1749 WMI_10_4_STA_POWERSAVE_PARAM_CMDID,
1750 WMI_10_4_STA_MIMO_PS_MODE_CMDID,
1751 WMI_10_4_DBGLOG_CFG_CMDID,
1752 WMI_10_4_PDEV_DFS_ENABLE_CMDID,
1753 WMI_10_4_PDEV_DFS_DISABLE_CMDID,
1754 WMI_10_4_PDEV_QVIT_CMDID,
1755 WMI_10_4_ROAM_SCAN_MODE,
1756 WMI_10_4_ROAM_SCAN_RSSI_THRESHOLD,
1757 WMI_10_4_ROAM_SCAN_PERIOD,
1758 WMI_10_4_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1759 WMI_10_4_ROAM_AP_PROFILE,
1760 WMI_10_4_OFL_SCAN_ADD_AP_PROFILE,
1761 WMI_10_4_OFL_SCAN_REMOVE_AP_PROFILE,
1762 WMI_10_4_OFL_SCAN_PERIOD,
1763 WMI_10_4_P2P_DEV_SET_DEVICE_INFO,
1764 WMI_10_4_P2P_DEV_SET_DISCOVERABILITY,
1765 WMI_10_4_P2P_GO_SET_BEACON_IE,
1766 WMI_10_4_P2P_GO_SET_PROBE_RESP_IE,
1767 WMI_10_4_P2P_SET_VENDOR_IE_DATA_CMDID,
1768 WMI_10_4_AP_PS_PEER_PARAM_CMDID,
1769 WMI_10_4_AP_PS_PEER_UAPSD_COEX_CMDID,
1770 WMI_10_4_PEER_RATE_RETRY_SCHED_CMDID,
1771 WMI_10_4_WLAN_PROFILE_TRIGGER_CMDID,
1772 WMI_10_4_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1773 WMI_10_4_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1774 WMI_10_4_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1775 WMI_10_4_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1776 WMI_10_4_PDEV_SUSPEND_CMDID,
1777 WMI_10_4_PDEV_RESUME_CMDID,
1778 WMI_10_4_ADD_BCN_FILTER_CMDID,
1779 WMI_10_4_RMV_BCN_FILTER_CMDID,
1780 WMI_10_4_WOW_ADD_WAKE_PATTERN_CMDID,
1781 WMI_10_4_WOW_DEL_WAKE_PATTERN_CMDID,
1782 WMI_10_4_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1783 WMI_10_4_WOW_ENABLE_CMDID,
1784 WMI_10_4_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1785 WMI_10_4_RTT_MEASREQ_CMDID,
1786 WMI_10_4_RTT_TSF_CMDID,
1787 WMI_10_4_RTT_KEEPALIVE_CMDID,
1788 WMI_10_4_OEM_REQ_CMDID,
1789 WMI_10_4_NAN_CMDID,
1790 WMI_10_4_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1791 WMI_10_4_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1792 WMI_10_4_REQUEST_STATS_CMDID,
1793 WMI_10_4_GPIO_CONFIG_CMDID,
1794 WMI_10_4_GPIO_OUTPUT_CMDID,
1795 WMI_10_4_VDEV_RATEMASK_CMDID,
1796 WMI_10_4_CSA_OFFLOAD_ENABLE_CMDID,
1797 WMI_10_4_GTK_OFFLOAD_CMDID,
1798 WMI_10_4_QBOOST_CFG_CMDID,
1799 WMI_10_4_CSA_OFFLOAD_CHANSWITCH_CMDID,
1800 WMI_10_4_PDEV_SMART_ANT_ENABLE_CMDID,
1801 WMI_10_4_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID,
1802 WMI_10_4_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID,
1803 WMI_10_4_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID,
1804 WMI_10_4_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID,
1805 WMI_10_4_VDEV_SET_KEEPALIVE_CMDID,
1806 WMI_10_4_VDEV_GET_KEEPALIVE_CMDID,
1807 WMI_10_4_FORCE_FW_HANG_CMDID,
1808 WMI_10_4_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID,
1809 WMI_10_4_PDEV_SET_CTL_TABLE_CMDID,
1810 WMI_10_4_PDEV_SET_MIMOGAIN_TABLE_CMDID,
1811 WMI_10_4_PDEV_RATEPWR_TABLE_CMDID,
1812 WMI_10_4_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID,
1813 WMI_10_4_PDEV_FIPS_CMDID,
1814 WMI_10_4_TT_SET_CONF_CMDID,
1815 WMI_10_4_FWTEST_CMDID,
1816 WMI_10_4_VDEV_ATF_REQUEST_CMDID,
1817 WMI_10_4_PEER_ATF_REQUEST_CMDID,
1818 WMI_10_4_PDEV_GET_ANI_CCK_CONFIG_CMDID,
1819 WMI_10_4_PDEV_GET_ANI_OFDM_CONFIG_CMDID,
1820 WMI_10_4_PDEV_RESERVE_AST_ENTRY_CMDID,
1821 WMI_10_4_PDEV_GET_NFCAL_POWER_CMDID,
1822 WMI_10_4_PDEV_GET_TPC_CMDID,
1823 WMI_10_4_PDEV_GET_AST_INFO_CMDID,
1824 WMI_10_4_VDEV_SET_DSCP_TID_MAP_CMDID,
1825 WMI_10_4_PDEV_GET_TEMPERATURE_CMDID,
1826 WMI_10_4_PDEV_GET_INFO_CMDID,
1827 WMI_10_4_VDEV_GET_INFO_CMDID,
1828 WMI_10_4_VDEV_FILTER_NEIGHBOR_RX_PACKETS_CMDID,
1829 WMI_10_4_MU_CAL_START_CMDID,
1830 WMI_10_4_SET_CCA_PARAMS_CMDID,
1831 WMI_10_4_PDEV_BSS_CHAN_INFO_REQUEST_CMDID,
Vasanthakumar Thiagarajan69d43152015-10-29 19:11:33 +05301832 WMI_10_4_EXT_RESOURCE_CFG_CMDID,
1833 WMI_10_4_VDEV_SET_IE_CMDID,
1834 WMI_10_4_SET_LTEU_CONFIG_CMDID,
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03001835 WMI_10_4_ATF_SSID_GROUPING_REQUEST_CMDID,
1836 WMI_10_4_PEER_ATF_EXT_REQUEST_CMDID,
1837 WMI_10_4_SET_PERIODIC_CHANNEL_STATS_CONFIG,
1838 WMI_10_4_PEER_BWF_REQUEST_CMDID,
1839 WMI_10_4_BTCOEX_CFG_CMDID,
1840 WMI_10_4_PEER_TX_MU_TXMIT_COUNT_CMDID,
1841 WMI_10_4_PEER_TX_MU_TXMIT_RSTCNT_CMDID,
1842 WMI_10_4_PEER_GID_USERPOS_LIST_CMDID,
1843 WMI_10_4_PDEV_CHECK_CAL_VERSION_CMDID,
1844 WMI_10_4_COEX_VERSION_CFG_CMID,
1845 WMI_10_4_PDEV_GET_RX_FILTER_CMDID,
1846 WMI_10_4_PDEV_EXTENDED_NSS_CFG_CMDID,
1847 WMI_10_4_VDEV_SET_SCAN_NAC_RSSI_CMDID,
1848 WMI_10_4_PROG_GPIO_BAND_SELECT_CMDID,
1849 WMI_10_4_CONFIG_SMART_LOGGING_CMDID,
1850 WMI_10_4_DEBUG_FATAL_CONDITION_CMDID,
1851 WMI_10_4_GET_TSF_TIMER_CMDID,
1852 WMI_10_4_PDEV_GET_TPC_TABLE_CMDID,
1853 WMI_10_4_VDEV_SIFS_TRIGGER_TIME_CMDID,
1854 WMI_10_4_PDEV_WDS_ENTRY_LIST_CMDID,
1855 WMI_10_4_TDLS_SET_STATE_CMDID,
1856 WMI_10_4_TDLS_PEER_UPDATE_CMDID,
1857 WMI_10_4_TDLS_SET_OFFCHAN_MODE_CMDID,
Sriram R6f6eb1b2018-05-15 14:39:49 +05301858 WMI_10_4_PDEV_SEND_FD_CMDID,
1859 WMI_10_4_ENABLE_FILS_CMDID,
1860 WMI_10_4_PDEV_SET_BRIDGE_MACADDR_CMDID,
1861 WMI_10_4_ATF_GROUP_WMM_AC_CONFIG_REQUEST_CMDID,
1862 WMI_10_4_RADAR_FOUND_CMDID,
Raja Mani2d491e62015-06-22 20:10:11 +05301863 WMI_10_4_PDEV_UTF_CMDID = WMI_10_4_END_CMDID - 1,
1864};
1865
1866enum wmi_10_4_event_id {
1867 WMI_10_4_SERVICE_READY_EVENTID = 0x8000,
1868 WMI_10_4_READY_EVENTID,
1869 WMI_10_4_DEBUG_MESG_EVENTID,
1870 WMI_10_4_START_EVENTID = 0x9000,
1871 WMI_10_4_END_EVENTID = 0x9FFF,
1872 WMI_10_4_SCAN_EVENTID = WMI_10_4_START_EVENTID,
1873 WMI_10_4_ECHO_EVENTID,
1874 WMI_10_4_UPDATE_STATS_EVENTID,
1875 WMI_10_4_INST_RSSI_STATS_EVENTID,
1876 WMI_10_4_VDEV_START_RESP_EVENTID,
1877 WMI_10_4_VDEV_STANDBY_REQ_EVENTID,
1878 WMI_10_4_VDEV_RESUME_REQ_EVENTID,
1879 WMI_10_4_VDEV_STOPPED_EVENTID,
1880 WMI_10_4_PEER_STA_KICKOUT_EVENTID,
1881 WMI_10_4_HOST_SWBA_EVENTID,
1882 WMI_10_4_TBTTOFFSET_UPDATE_EVENTID,
1883 WMI_10_4_MGMT_RX_EVENTID,
1884 WMI_10_4_CHAN_INFO_EVENTID,
1885 WMI_10_4_PHYERR_EVENTID,
1886 WMI_10_4_ROAM_EVENTID,
1887 WMI_10_4_PROFILE_MATCH,
1888 WMI_10_4_DEBUG_PRINT_EVENTID,
1889 WMI_10_4_PDEV_QVIT_EVENTID,
1890 WMI_10_4_WLAN_PROFILE_DATA_EVENTID,
1891 WMI_10_4_RTT_MEASUREMENT_REPORT_EVENTID,
1892 WMI_10_4_TSF_MEASUREMENT_REPORT_EVENTID,
1893 WMI_10_4_RTT_ERROR_REPORT_EVENTID,
1894 WMI_10_4_RTT_KEEPALIVE_EVENTID,
1895 WMI_10_4_OEM_CAPABILITY_EVENTID,
1896 WMI_10_4_OEM_MEASUREMENT_REPORT_EVENTID,
1897 WMI_10_4_OEM_ERROR_REPORT_EVENTID,
1898 WMI_10_4_NAN_EVENTID,
1899 WMI_10_4_WOW_WAKEUP_HOST_EVENTID,
1900 WMI_10_4_GTK_OFFLOAD_STATUS_EVENTID,
1901 WMI_10_4_GTK_REKEY_FAIL_EVENTID,
1902 WMI_10_4_DCS_INTERFERENCE_EVENTID,
1903 WMI_10_4_PDEV_TPC_CONFIG_EVENTID,
1904 WMI_10_4_CSA_HANDLING_EVENTID,
1905 WMI_10_4_GPIO_INPUT_EVENTID,
1906 WMI_10_4_PEER_RATECODE_LIST_EVENTID,
1907 WMI_10_4_GENERIC_BUFFER_EVENTID,
1908 WMI_10_4_MCAST_BUF_RELEASE_EVENTID,
1909 WMI_10_4_MCAST_LIST_AGEOUT_EVENTID,
1910 WMI_10_4_VDEV_GET_KEEPALIVE_EVENTID,
1911 WMI_10_4_WDS_PEER_EVENTID,
1912 WMI_10_4_PEER_STA_PS_STATECHG_EVENTID,
1913 WMI_10_4_PDEV_FIPS_EVENTID,
1914 WMI_10_4_TT_STATS_EVENTID,
1915 WMI_10_4_PDEV_CHANNEL_HOPPING_EVENTID,
1916 WMI_10_4_PDEV_ANI_CCK_LEVEL_EVENTID,
1917 WMI_10_4_PDEV_ANI_OFDM_LEVEL_EVENTID,
1918 WMI_10_4_PDEV_RESERVE_AST_ENTRY_EVENTID,
1919 WMI_10_4_PDEV_NFCAL_POWER_EVENTID,
1920 WMI_10_4_PDEV_TPC_EVENTID,
1921 WMI_10_4_PDEV_GET_AST_INFO_EVENTID,
1922 WMI_10_4_PDEV_TEMPERATURE_EVENTID,
1923 WMI_10_4_PDEV_NFCAL_POWER_ALL_CHANNELS_EVENTID,
1924 WMI_10_4_PDEV_BSS_CHAN_INFO_EVENTID,
Vasanthakumar Thiagarajan69d43152015-10-29 19:11:33 +05301925 WMI_10_4_MU_REPORT_EVENTID,
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03001926 WMI_10_4_TX_DATA_TRAFFIC_CTRL_EVENTID,
1927 WMI_10_4_PEER_TX_MU_TXMIT_COUNT_EVENTID,
1928 WMI_10_4_PEER_GID_USERPOS_LIST_EVENTID,
1929 WMI_10_4_PDEV_CHECK_CAL_VERSION_EVENTID,
1930 WMI_10_4_ATF_PEER_STATS_EVENTID,
1931 WMI_10_4_PDEV_GET_RX_FILTER_EVENTID,
1932 WMI_10_4_NAC_RSSI_EVENTID,
1933 WMI_10_4_DEBUG_FATAL_CONDITION_EVENTID,
1934 WMI_10_4_GET_TSF_TIMER_RESP_EVENTID,
1935 WMI_10_4_PDEV_TPC_TABLE_EVENTID,
1936 WMI_10_4_PDEV_WDS_ENTRY_LIST_EVENTID,
1937 WMI_10_4_TDLS_PEER_EVENTID,
Sriram R6f6eb1b2018-05-15 14:39:49 +05301938 WMI_10_4_HOST_SWFDA_EVENTID,
1939 WMI_10_4_ESP_ESTIMATE_EVENTID,
1940 WMI_10_4_DFS_STATUS_CHECK_EVENTID,
Raja Mani2d491e62015-06-22 20:10:11 +05301941 WMI_10_4_PDEV_UTF_EVENTID = WMI_10_4_END_EVENTID - 1,
1942};
1943
Kalle Valo5e3dd152013-06-12 20:52:10 +03001944enum wmi_phy_mode {
1945 MODE_11A = 0, /* 11a Mode */
1946 MODE_11G = 1, /* 11b/g Mode */
1947 MODE_11B = 2, /* 11b Mode */
1948 MODE_11GONLY = 3, /* 11g only Mode */
1949 MODE_11NA_HT20 = 4, /* 11a HT20 mode */
1950 MODE_11NG_HT20 = 5, /* 11g HT20 mode */
1951 MODE_11NA_HT40 = 6, /* 11a HT40 mode */
1952 MODE_11NG_HT40 = 7, /* 11g HT40 mode */
1953 MODE_11AC_VHT20 = 8,
1954 MODE_11AC_VHT40 = 9,
1955 MODE_11AC_VHT80 = 10,
1956 /* MODE_11AC_VHT160 = 11, */
1957 MODE_11AC_VHT20_2G = 11,
1958 MODE_11AC_VHT40_2G = 12,
1959 MODE_11AC_VHT80_2G = 13,
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02001960 MODE_11AC_VHT80_80 = 14,
1961 MODE_11AC_VHT160 = 15,
1962 MODE_UNKNOWN = 16,
1963 MODE_MAX = 16
Kalle Valo5e3dd152013-06-12 20:52:10 +03001964};
1965
Kalle Valo38a1d472013-09-08 17:56:14 +03001966static inline const char *ath10k_wmi_phymode_str(enum wmi_phy_mode mode)
1967{
1968 switch (mode) {
1969 case MODE_11A:
1970 return "11a";
1971 case MODE_11G:
1972 return "11g";
1973 case MODE_11B:
1974 return "11b";
1975 case MODE_11GONLY:
1976 return "11gonly";
1977 case MODE_11NA_HT20:
1978 return "11na-ht20";
1979 case MODE_11NG_HT20:
1980 return "11ng-ht20";
1981 case MODE_11NA_HT40:
1982 return "11na-ht40";
1983 case MODE_11NG_HT40:
1984 return "11ng-ht40";
1985 case MODE_11AC_VHT20:
1986 return "11ac-vht20";
1987 case MODE_11AC_VHT40:
1988 return "11ac-vht40";
1989 case MODE_11AC_VHT80:
1990 return "11ac-vht80";
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02001991 case MODE_11AC_VHT160:
1992 return "11ac-vht160";
1993 case MODE_11AC_VHT80_80:
1994 return "11ac-vht80+80";
Kalle Valo38a1d472013-09-08 17:56:14 +03001995 case MODE_11AC_VHT20_2G:
1996 return "11ac-vht20-2g";
1997 case MODE_11AC_VHT40_2G:
1998 return "11ac-vht40-2g";
1999 case MODE_11AC_VHT80_2G:
2000 return "11ac-vht80-2g";
2001 case MODE_UNKNOWN:
2002 /* skip */
2003 break;
2004
2005 /* no default handler to allow compiler to check that the
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01002006 * enum is fully handled
2007 */
YueHaibing999eb682019-01-18 11:32:15 +08002008 }
Kalle Valo38a1d472013-09-08 17:56:14 +03002009
2010 return "<unknown>";
2011}
2012
Kalle Valo5e3dd152013-06-12 20:52:10 +03002013#define WMI_CHAN_LIST_TAG 0x1
2014#define WMI_SSID_LIST_TAG 0x2
2015#define WMI_BSSID_LIST_TAG 0x3
2016#define WMI_IE_TAG 0x4
2017
2018struct wmi_channel {
2019 __le32 mhz;
2020 __le32 band_center_freq1;
2021 __le32 band_center_freq2; /* valid for 11ac, 80plus80 */
2022 union {
2023 __le32 flags; /* WMI_CHAN_FLAG_ */
2024 struct {
2025 u8 mode; /* only 6 LSBs */
2026 } __packed;
2027 } __packed;
2028 union {
2029 __le32 reginfo0;
2030 struct {
Michal Kazior02256932013-10-23 04:02:14 -07002031 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002032 u8 min_power;
2033 u8 max_power;
2034 u8 reg_power;
2035 u8 reg_classid;
2036 } __packed;
2037 } __packed;
2038 union {
2039 __le32 reginfo1;
2040 struct {
2041 u8 antenna_max;
Alan Liu513527c2016-04-26 14:41:33 +03002042 u8 max_tx_power;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002043 } __packed;
2044 } __packed;
2045} __packed;
2046
2047struct wmi_channel_arg {
2048 u32 freq;
2049 u32 band_center_freq1;
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02002050 u32 band_center_freq2;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002051 bool passive;
2052 bool allow_ibss;
2053 bool allow_ht;
2054 bool allow_vht;
2055 bool ht40plus;
Marek Puzyniake8a50f82013-11-20 09:59:47 +02002056 bool chan_radar;
Michal Kazior02256932013-10-23 04:02:14 -07002057 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002058 u32 min_power;
2059 u32 max_power;
2060 u32 max_reg_power;
2061 u32 max_antenna_gain;
2062 u32 reg_class_id;
2063 enum wmi_phy_mode mode;
2064};
2065
2066enum wmi_channel_change_cause {
2067 WMI_CHANNEL_CHANGE_CAUSE_NONE = 0,
2068 WMI_CHANNEL_CHANGE_CAUSE_CSA,
2069};
2070
2071#define WMI_CHAN_FLAG_HT40_PLUS (1 << 6)
2072#define WMI_CHAN_FLAG_PASSIVE (1 << 7)
2073#define WMI_CHAN_FLAG_ADHOC_ALLOWED (1 << 8)
2074#define WMI_CHAN_FLAG_AP_DISABLED (1 << 9)
2075#define WMI_CHAN_FLAG_DFS (1 << 10)
2076#define WMI_CHAN_FLAG_ALLOW_HT (1 << 11)
2077#define WMI_CHAN_FLAG_ALLOW_VHT (1 << 12)
2078
2079/* Indicate reason for channel switch */
2080#define WMI_CHANNEL_CHANGE_CAUSE_CSA (1 << 13)
2081
Raja Mani5c8726e2015-06-22 20:22:26 +05302082#define WMI_MAX_SPATIAL_STREAM 3 /* default max ss */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002083
2084/* HT Capabilities*/
2085#define WMI_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
2086#define WMI_HT_CAP_HT20_SGI 0x0002 /* Short Guard Interval with HT20 */
2087#define WMI_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
2088#define WMI_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
2089#define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3
2090#define WMI_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
2091#define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4
2092#define WMI_HT_CAP_LDPC 0x0040 /* LDPC supported */
2093#define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
2094#define WMI_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
2095#define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
2096#define WMI_HT_CAP_HT40_SGI 0x0800
Surabhi Vishnoiff488d02019-02-01 11:04:22 +05302097#define WMI_HT_CAP_RX_LDPC 0x1000 /* LDPC RX support */
2098#define WMI_HT_CAP_TX_LDPC 0x2000 /* LDPC TX support */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002099
2100#define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \
2101 WMI_HT_CAP_HT20_SGI | \
2102 WMI_HT_CAP_HT40_SGI | \
2103 WMI_HT_CAP_TX_STBC | \
2104 WMI_HT_CAP_RX_STBC | \
2105 WMI_HT_CAP_LDPC)
2106
Kalle Valo5e3dd152013-06-12 20:52:10 +03002107/*
2108 * WMI_VHT_CAP_* these maps to ieee 802.11ac vht capability information
2109 * field. The fields not defined here are not supported, or reserved.
2110 * Do not change these masks and if you have to add new one follow the
2111 * bitmask as specified by 802.11ac draft.
2112 */
2113
2114#define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
2115#define WMI_VHT_CAP_RX_LDPC 0x00000010
2116#define WMI_VHT_CAP_SGI_80MHZ 0x00000020
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02002117#define WMI_VHT_CAP_SGI_160MHZ 0x00000040
Kalle Valo5e3dd152013-06-12 20:52:10 +03002118#define WMI_VHT_CAP_TX_STBC 0x00000080
2119#define WMI_VHT_CAP_RX_STBC_MASK 0x00000300
2120#define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02002121#define WMI_VHT_CAP_SU_BFER 0x00000800
2122#define WMI_VHT_CAP_SU_BFEE 0x00001000
2123#define WMI_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000
2124#define WMI_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13
2125#define WMI_VHT_CAP_MAX_SND_DIM_MASK 0x00070000
2126#define WMI_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16
2127#define WMI_VHT_CAP_MU_BFER 0x00080000
2128#define WMI_VHT_CAP_MU_BFEE 0x00100000
Kalle Valo5e3dd152013-06-12 20:52:10 +03002129#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
2130#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT 23
2131#define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000
2132#define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000
2133
2134/* The following also refer for max HT AMSDU */
2135#define WMI_VHT_CAP_MAX_MPDU_LEN_3839 0x00000000
2136#define WMI_VHT_CAP_MAX_MPDU_LEN_7935 0x00000001
2137#define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
2138
2139#define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \
2140 WMI_VHT_CAP_RX_LDPC | \
2141 WMI_VHT_CAP_SGI_80MHZ | \
2142 WMI_VHT_CAP_TX_STBC | \
2143 WMI_VHT_CAP_RX_STBC_MASK | \
2144 WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \
2145 WMI_VHT_CAP_RX_FIXED_ANT | \
2146 WMI_VHT_CAP_TX_FIXED_ANT)
2147
2148/*
2149 * Interested readers refer to Rx/Tx MCS Map definition as defined in
2150 * 802.11ac
2151 */
2152#define WMI_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
2153#define WMI_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
2154#define WMI_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
2155
2156enum {
2157 REGDMN_MODE_11A = 0x00001, /* 11a channels */
2158 REGDMN_MODE_TURBO = 0x00002, /* 11a turbo-only channels */
2159 REGDMN_MODE_11B = 0x00004, /* 11b channels */
2160 REGDMN_MODE_PUREG = 0x00008, /* 11g channels (OFDM only) */
2161 REGDMN_MODE_11G = 0x00008, /* XXX historical */
2162 REGDMN_MODE_108G = 0x00020, /* 11a+Turbo channels */
2163 REGDMN_MODE_108A = 0x00040, /* 11g+Turbo channels */
2164 REGDMN_MODE_XR = 0x00100, /* XR channels */
2165 REGDMN_MODE_11A_HALF_RATE = 0x00200, /* 11A half rate channels */
2166 REGDMN_MODE_11A_QUARTER_RATE = 0x00400, /* 11A quarter rate channels */
2167 REGDMN_MODE_11NG_HT20 = 0x00800, /* 11N-G HT20 channels */
2168 REGDMN_MODE_11NA_HT20 = 0x01000, /* 11N-A HT20 channels */
2169 REGDMN_MODE_11NG_HT40PLUS = 0x02000, /* 11N-G HT40 + channels */
2170 REGDMN_MODE_11NG_HT40MINUS = 0x04000, /* 11N-G HT40 - channels */
2171 REGDMN_MODE_11NA_HT40PLUS = 0x08000, /* 11N-A HT40 + channels */
2172 REGDMN_MODE_11NA_HT40MINUS = 0x10000, /* 11N-A HT40 - channels */
2173 REGDMN_MODE_11AC_VHT20 = 0x20000, /* 5Ghz, VHT20 */
2174 REGDMN_MODE_11AC_VHT40PLUS = 0x40000, /* 5Ghz, VHT40 + channels */
2175 REGDMN_MODE_11AC_VHT40MINUS = 0x80000, /* 5Ghz VHT40 - channels */
2176 REGDMN_MODE_11AC_VHT80 = 0x100000, /* 5Ghz, VHT80 channels */
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02002177 REGDMN_MODE_11AC_VHT160 = 0x200000, /* 5Ghz, VHT160 channels */
2178 REGDMN_MODE_11AC_VHT80_80 = 0x400000, /* 5Ghz, VHT80+80 channels */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002179 REGDMN_MODE_ALL = 0xffffffff
2180};
2181
2182#define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
2183#define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
2184#define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
2185
2186/* regulatory capabilities */
2187#define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
2188#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
2189#define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
2190#define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
2191#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
2192#define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
2193
2194struct hal_reg_capabilities {
2195 /* regdomain value specified in EEPROM */
2196 __le32 eeprom_rd;
2197 /*regdomain */
2198 __le32 eeprom_rd_ext;
2199 /* CAP1 capabilities bit map. */
2200 __le32 regcap1;
2201 /* REGDMN EEPROM CAP. */
2202 __le32 regcap2;
2203 /* REGDMN MODE */
2204 __le32 wireless_modes;
2205 __le32 low_2ghz_chan;
2206 __le32 high_2ghz_chan;
2207 __le32 low_5ghz_chan;
2208 __le32 high_5ghz_chan;
2209} __packed;
2210
2211enum wlan_mode_capability {
2212 WHAL_WLAN_11A_CAPABILITY = 0x1,
2213 WHAL_WLAN_11G_CAPABILITY = 0x2,
2214 WHAL_WLAN_11AG_CAPABILITY = 0x3,
2215};
2216
2217/* structure used by FW for requesting host memory */
2218struct wlan_host_mem_req {
2219 /* ID of the request */
2220 __le32 req_id;
2221 /* size of the of each unit */
2222 __le32 unit_size;
2223 /* flags to indicate that
2224 * the number units is dependent
2225 * on number of resources(num vdevs num peers .. etc)
2226 */
2227 __le32 num_unit_info;
2228 /*
2229 * actual number of units to allocate . if flags in the num_unit_info
2230 * indicate that number of units is tied to number of a particular
2231 * resource to allocate then num_units filed is set to 0 and host
2232 * will derive the number units from number of the resources it is
2233 * requesting.
2234 */
2235 __le32 num_units;
2236} __packed;
2237
Kalle Valo5e3dd152013-06-12 20:52:10 +03002238/*
2239 * The following struct holds optional payload for
2240 * wmi_service_ready_event,e.g., 11ac pass some of the
2241 * device capability to the host.
2242 */
2243struct wmi_service_ready_event {
2244 __le32 sw_version;
2245 __le32 sw_version_1;
2246 __le32 abi_version;
2247 /* WMI_PHY_CAPABILITY */
2248 __le32 phy_capability;
2249 /* Maximum number of frag table entries that SW will populate less 1 */
2250 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02002251 __le32 wmi_service_bitmap[16];
Kalle Valo5e3dd152013-06-12 20:52:10 +03002252 __le32 num_rf_chains;
2253 /*
2254 * The following field is only valid for service type
2255 * WMI_SERVICE_11AC
2256 */
2257 __le32 ht_cap_info; /* WMI HT Capability */
2258 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
2259 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
2260 __le32 hw_min_tx_power;
2261 __le32 hw_max_tx_power;
2262 struct hal_reg_capabilities hal_reg_capabilities;
2263 __le32 sys_cap_info;
2264 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
2265 /*
2266 * Max beacon and Probe Response IE offload size
2267 * (includes optional P2P IEs)
2268 */
2269 __le32 max_bcn_ie_size;
2270 /*
2271 * request to host to allocate a chuck of memory and pss it down to FW
2272 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
2273 * data structures. Only valid for low latency interfaces like PCIE
2274 * where FW can access this memory directly (or) by DMA.
2275 */
2276 __le32 num_mem_reqs;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02002277 struct wlan_host_mem_req mem_reqs[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03002278} __packed;
2279
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002280/* This is the definition from 10.X firmware branch */
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02002281struct wmi_10x_service_ready_event {
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002282 __le32 sw_version;
2283 __le32 abi_version;
2284
2285 /* WMI_PHY_CAPABILITY */
2286 __le32 phy_capability;
2287
2288 /* Maximum number of frag table entries that SW will populate less 1 */
2289 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02002290 __le32 wmi_service_bitmap[16];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002291 __le32 num_rf_chains;
2292
2293 /*
2294 * The following field is only valid for service type
2295 * WMI_SERVICE_11AC
2296 */
2297 __le32 ht_cap_info; /* WMI HT Capability */
2298 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
2299 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
2300 __le32 hw_min_tx_power;
2301 __le32 hw_max_tx_power;
2302
2303 struct hal_reg_capabilities hal_reg_capabilities;
2304
2305 __le32 sys_cap_info;
2306 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
2307
2308 /*
2309 * request to host to allocate a chuck of memory and pss it down to FW
2310 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
2311 * data structures. Only valid for low latency interfaces like PCIE
2312 * where FW can access this memory directly (or) by DMA.
2313 */
2314 __le32 num_mem_reqs;
2315
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02002316 struct wlan_host_mem_req mem_reqs[0];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002317} __packed;
2318
Kalle Valo14e105c2016-04-13 14:13:21 +03002319#define WMI_SERVICE_READY_TIMEOUT_HZ (5 * HZ)
2320#define WMI_UNIFIED_READY_TIMEOUT_HZ (5 * HZ)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002321
2322struct wmi_ready_event {
2323 __le32 sw_version;
2324 __le32 abi_version;
2325 struct wmi_mac_addr mac_addr;
2326 __le32 status;
2327} __packed;
2328
2329struct wmi_resource_config {
2330 /* number of virtual devices (VAPs) to support */
2331 __le32 num_vdevs;
2332
2333 /* number of peer nodes to support */
2334 __le32 num_peers;
2335
2336 /*
2337 * In offload mode target supports features like WOW, chatter and
2338 * other protocol offloads. In order to support them some
2339 * functionalities like reorder buffering, PN checking need to be
Joe Perchese13dbea2016-09-26 21:56:21 +03002340 * done in target. This determines maximum number of peers supported
Kalle Valo5e3dd152013-06-12 20:52:10 +03002341 * by target in offload mode
2342 */
2343 __le32 num_offload_peers;
2344
2345 /* For target-based RX reordering */
2346 __le32 num_offload_reorder_bufs;
2347
2348 /* number of keys per peer */
2349 __le32 num_peer_keys;
2350
2351 /* total number of TX/RX data TIDs */
2352 __le32 num_tids;
2353
2354 /*
2355 * max skid for resolving hash collisions
2356 *
2357 * The address search table is sparse, so that if two MAC addresses
2358 * result in the same hash value, the second of these conflicting
2359 * entries can slide to the next index in the address search table,
2360 * and use it, if it is unoccupied. This ast_skid_limit parameter
2361 * specifies the upper bound on how many subsequent indices to search
2362 * over to find an unoccupied space.
2363 */
2364 __le32 ast_skid_limit;
2365
2366 /*
2367 * the nominal chain mask for transmit
2368 *
2369 * The chain mask may be modified dynamically, e.g. to operate AP
2370 * tx with a reduced number of chains if no clients are associated.
2371 * This configuration parameter specifies the nominal chain-mask that
2372 * should be used when not operating with a reduced set of tx chains.
2373 */
2374 __le32 tx_chain_mask;
2375
2376 /*
2377 * the nominal chain mask for receive
2378 *
2379 * The chain mask may be modified dynamically, e.g. for a client
2380 * to use a reduced number of chains for receive if the traffic to
2381 * the client is low enough that it doesn't require downlink MIMO
2382 * or antenna diversity.
2383 * This configuration parameter specifies the nominal chain-mask that
2384 * should be used when not operating with a reduced set of rx chains.
2385 */
2386 __le32 rx_chain_mask;
2387
2388 /*
2389 * what rx reorder timeout (ms) to use for the AC
2390 *
2391 * Each WMM access class (voice, video, best-effort, background) will
2392 * have its own timeout value to dictate how long to wait for missing
2393 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2394 * already been received.
2395 * This parameter specifies the timeout in milliseconds for each
2396 * class.
2397 */
2398 __le32 rx_timeout_pri_vi;
2399 __le32 rx_timeout_pri_vo;
2400 __le32 rx_timeout_pri_be;
2401 __le32 rx_timeout_pri_bk;
2402
2403 /*
2404 * what mode the rx should decap packets to
2405 *
2406 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2407 * THis setting also determines the default TX behavior, however TX
2408 * behavior can be modified on a per VAP basis during VAP init
2409 */
2410 __le32 rx_decap_mode;
2411
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01002412 /* what is the maximum number of scan requests that can be queued */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002413 __le32 scan_max_pending_reqs;
2414
2415 /* maximum VDEV that could use BMISS offload */
2416 __le32 bmiss_offload_max_vdev;
2417
2418 /* maximum VDEV that could use offload roaming */
2419 __le32 roam_offload_max_vdev;
2420
2421 /* maximum AP profiles that would push to offload roaming */
2422 __le32 roam_offload_max_ap_profiles;
2423
2424 /*
2425 * how many groups to use for mcast->ucast conversion
2426 *
2427 * The target's WAL maintains a table to hold information regarding
2428 * which peers belong to a given multicast group, so that if
2429 * multicast->unicast conversion is enabled, the target can convert
2430 * multicast tx frames to a series of unicast tx frames, to each
2431 * peer within the multicast group.
2432 This num_mcast_groups configuration parameter tells the target how
2433 * many multicast groups to provide storage for within its multicast
2434 * group membership table.
2435 */
2436 __le32 num_mcast_groups;
2437
2438 /*
2439 * size to alloc for the mcast membership table
2440 *
2441 * This num_mcast_table_elems configuration parameter tells the
2442 * target how many peer elements it needs to provide storage for in
2443 * its multicast group membership table.
2444 * These multicast group membership table elements are shared by the
2445 * multicast groups stored within the table.
2446 */
2447 __le32 num_mcast_table_elems;
2448
2449 /*
2450 * whether/how to do multicast->unicast conversion
2451 *
2452 * This configuration parameter specifies whether the target should
2453 * perform multicast --> unicast conversion on transmit, and if so,
2454 * what to do if it finds no entries in its multicast group
2455 * membership table for the multicast IP address in the tx frame.
2456 * Configuration value:
2457 * 0 -> Do not perform multicast to unicast conversion.
2458 * 1 -> Convert multicast frames to unicast, if the IP multicast
2459 * address from the tx frame is found in the multicast group
2460 * membership table. If the IP multicast address is not found,
2461 * drop the frame.
2462 * 2 -> Convert multicast frames to unicast, if the IP multicast
2463 * address from the tx frame is found in the multicast group
2464 * membership table. If the IP multicast address is not found,
2465 * transmit the frame as multicast.
2466 */
2467 __le32 mcast2ucast_mode;
2468
2469 /*
2470 * how much memory to allocate for a tx PPDU dbg log
2471 *
2472 * This parameter controls how much memory the target will allocate
2473 * to store a log of tx PPDU meta-information (how large the PPDU
2474 * was, when it was sent, whether it was successful, etc.)
2475 */
2476 __le32 tx_dbg_log_size;
2477
2478 /* how many AST entries to be allocated for WDS */
2479 __le32 num_wds_entries;
2480
2481 /*
2482 * MAC DMA burst size, e.g., For target PCI limit can be
2483 * 0 -default, 1 256B
2484 */
2485 __le32 dma_burst_size;
2486
2487 /*
2488 * Fixed delimiters to be inserted after every MPDU to
2489 * account for interface latency to avoid underrun.
2490 */
2491 __le32 mac_aggr_delim;
2492
2493 /*
2494 * determine whether target is responsible for detecting duplicate
2495 * non-aggregate MPDU and timing out stale fragments.
2496 *
2497 * A-MPDU reordering is always performed on the target.
2498 *
2499 * 0: target responsible for frag timeout and dup checking
2500 * 1: host responsible for frag timeout and dup checking
2501 */
2502 __le32 rx_skip_defrag_timeout_dup_detection_check;
2503
2504 /*
2505 * Configuration for VoW :
2506 * No of Video Nodes to be supported
2507 * and Max no of descriptors for each Video link (node).
2508 */
2509 __le32 vow_config;
2510
2511 /* maximum VDEV that could use GTK offload */
2512 __le32 gtk_offload_max_vdev;
2513
2514 /* Number of msdu descriptors target should use */
2515 __le32 num_msdu_desc;
2516
2517 /*
2518 * Max. number of Tx fragments per MSDU
2519 * This parameter controls the max number of Tx fragments per MSDU.
2520 * This is sent by the target as part of the WMI_SERVICE_READY event
Joe Perchese13dbea2016-09-26 21:56:21 +03002521 * and is overridden by the OS shim as required.
Kalle Valo5e3dd152013-06-12 20:52:10 +03002522 */
2523 __le32 max_frag_entries;
2524} __packed;
2525
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002526struct wmi_resource_config_10x {
2527 /* number of virtual devices (VAPs) to support */
2528 __le32 num_vdevs;
2529
2530 /* number of peer nodes to support */
2531 __le32 num_peers;
2532
2533 /* number of keys per peer */
2534 __le32 num_peer_keys;
2535
2536 /* total number of TX/RX data TIDs */
2537 __le32 num_tids;
2538
2539 /*
2540 * max skid for resolving hash collisions
2541 *
2542 * The address search table is sparse, so that if two MAC addresses
2543 * result in the same hash value, the second of these conflicting
2544 * entries can slide to the next index in the address search table,
2545 * and use it, if it is unoccupied. This ast_skid_limit parameter
2546 * specifies the upper bound on how many subsequent indices to search
2547 * over to find an unoccupied space.
2548 */
2549 __le32 ast_skid_limit;
2550
2551 /*
2552 * the nominal chain mask for transmit
2553 *
2554 * The chain mask may be modified dynamically, e.g. to operate AP
2555 * tx with a reduced number of chains if no clients are associated.
2556 * This configuration parameter specifies the nominal chain-mask that
2557 * should be used when not operating with a reduced set of tx chains.
2558 */
2559 __le32 tx_chain_mask;
2560
2561 /*
2562 * the nominal chain mask for receive
2563 *
2564 * The chain mask may be modified dynamically, e.g. for a client
2565 * to use a reduced number of chains for receive if the traffic to
2566 * the client is low enough that it doesn't require downlink MIMO
2567 * or antenna diversity.
2568 * This configuration parameter specifies the nominal chain-mask that
2569 * should be used when not operating with a reduced set of rx chains.
2570 */
2571 __le32 rx_chain_mask;
2572
2573 /*
2574 * what rx reorder timeout (ms) to use for the AC
2575 *
2576 * Each WMM access class (voice, video, best-effort, background) will
2577 * have its own timeout value to dictate how long to wait for missing
2578 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2579 * already been received.
2580 * This parameter specifies the timeout in milliseconds for each
2581 * class.
2582 */
2583 __le32 rx_timeout_pri_vi;
2584 __le32 rx_timeout_pri_vo;
2585 __le32 rx_timeout_pri_be;
2586 __le32 rx_timeout_pri_bk;
2587
2588 /*
2589 * what mode the rx should decap packets to
2590 *
2591 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2592 * THis setting also determines the default TX behavior, however TX
2593 * behavior can be modified on a per VAP basis during VAP init
2594 */
2595 __le32 rx_decap_mode;
2596
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01002597 /* what is the maximum number of scan requests that can be queued */
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002598 __le32 scan_max_pending_reqs;
2599
2600 /* maximum VDEV that could use BMISS offload */
2601 __le32 bmiss_offload_max_vdev;
2602
2603 /* maximum VDEV that could use offload roaming */
2604 __le32 roam_offload_max_vdev;
2605
2606 /* maximum AP profiles that would push to offload roaming */
2607 __le32 roam_offload_max_ap_profiles;
2608
2609 /*
2610 * how many groups to use for mcast->ucast conversion
2611 *
2612 * The target's WAL maintains a table to hold information regarding
2613 * which peers belong to a given multicast group, so that if
2614 * multicast->unicast conversion is enabled, the target can convert
2615 * multicast tx frames to a series of unicast tx frames, to each
2616 * peer within the multicast group.
2617 This num_mcast_groups configuration parameter tells the target how
2618 * many multicast groups to provide storage for within its multicast
2619 * group membership table.
2620 */
2621 __le32 num_mcast_groups;
2622
2623 /*
2624 * size to alloc for the mcast membership table
2625 *
2626 * This num_mcast_table_elems configuration parameter tells the
2627 * target how many peer elements it needs to provide storage for in
2628 * its multicast group membership table.
2629 * These multicast group membership table elements are shared by the
2630 * multicast groups stored within the table.
2631 */
2632 __le32 num_mcast_table_elems;
2633
2634 /*
2635 * whether/how to do multicast->unicast conversion
2636 *
2637 * This configuration parameter specifies whether the target should
2638 * perform multicast --> unicast conversion on transmit, and if so,
2639 * what to do if it finds no entries in its multicast group
2640 * membership table for the multicast IP address in the tx frame.
2641 * Configuration value:
2642 * 0 -> Do not perform multicast to unicast conversion.
2643 * 1 -> Convert multicast frames to unicast, if the IP multicast
2644 * address from the tx frame is found in the multicast group
2645 * membership table. If the IP multicast address is not found,
2646 * drop the frame.
2647 * 2 -> Convert multicast frames to unicast, if the IP multicast
2648 * address from the tx frame is found in the multicast group
2649 * membership table. If the IP multicast address is not found,
2650 * transmit the frame as multicast.
2651 */
2652 __le32 mcast2ucast_mode;
2653
2654 /*
2655 * how much memory to allocate for a tx PPDU dbg log
2656 *
2657 * This parameter controls how much memory the target will allocate
2658 * to store a log of tx PPDU meta-information (how large the PPDU
2659 * was, when it was sent, whether it was successful, etc.)
2660 */
2661 __le32 tx_dbg_log_size;
2662
2663 /* how many AST entries to be allocated for WDS */
2664 __le32 num_wds_entries;
2665
2666 /*
2667 * MAC DMA burst size, e.g., For target PCI limit can be
2668 * 0 -default, 1 256B
2669 */
2670 __le32 dma_burst_size;
2671
2672 /*
2673 * Fixed delimiters to be inserted after every MPDU to
2674 * account for interface latency to avoid underrun.
2675 */
2676 __le32 mac_aggr_delim;
2677
2678 /*
2679 * determine whether target is responsible for detecting duplicate
2680 * non-aggregate MPDU and timing out stale fragments.
2681 *
2682 * A-MPDU reordering is always performed on the target.
2683 *
2684 * 0: target responsible for frag timeout and dup checking
2685 * 1: host responsible for frag timeout and dup checking
2686 */
2687 __le32 rx_skip_defrag_timeout_dup_detection_check;
2688
2689 /*
2690 * Configuration for VoW :
2691 * No of Video Nodes to be supported
2692 * and Max no of descriptors for each Video link (node).
2693 */
2694 __le32 vow_config;
2695
2696 /* Number of msdu descriptors target should use */
2697 __le32 num_msdu_desc;
2698
2699 /*
2700 * Max. number of Tx fragments per MSDU
2701 * This parameter controls the max number of Tx fragments per MSDU.
2702 * This is sent by the target as part of the WMI_SERVICE_READY event
Joe Perchese13dbea2016-09-26 21:56:21 +03002703 * and is overridden by the OS shim as required.
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002704 */
2705 __le32 max_frag_entries;
2706} __packed;
2707
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002708enum wmi_10_2_feature_mask {
2709 WMI_10_2_RX_BATCH_MODE = BIT(0),
2710 WMI_10_2_ATF_CONFIG = BIT(1),
Yanbo Lide0c789b2015-04-15 15:28:08 +03002711 WMI_10_2_COEX_GPIO = BIT(3),
Rajkumar Manoharandd2c5fc2016-04-27 16:23:19 +05302712 WMI_10_2_BSS_CHAN_INFO = BIT(6),
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +05302713 WMI_10_2_PEER_STATS = BIT(7),
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002714};
2715
Michal Kazior24c88f72014-07-25 13:32:17 +02002716struct wmi_resource_config_10_2 {
2717 struct wmi_resource_config_10x common;
2718 __le32 max_peer_ext_stats;
2719 __le32 smart_ant_cap; /* 0-disable, 1-enable */
2720 __le32 bk_min_free;
2721 __le32 be_min_free;
2722 __le32 vi_min_free;
2723 __le32 vo_min_free;
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002724 __le32 feature_mask;
Michal Kazior24c88f72014-07-25 13:32:17 +02002725} __packed;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002726
Raja Manib0399412015-06-22 20:10:17 +05302727#define NUM_UNITS_IS_NUM_VDEVS BIT(0)
2728#define NUM_UNITS_IS_NUM_PEERS BIT(1)
2729#define NUM_UNITS_IS_NUM_ACTIVE_PEERS BIT(2)
Bartosz Markowskib3effe62013-09-26 17:47:11 +02002730
Raja Manid1e52a82015-06-22 20:10:15 +05302731struct wmi_resource_config_10_4 {
2732 /* Number of virtual devices (VAPs) to support */
2733 __le32 num_vdevs;
2734
2735 /* Number of peer nodes to support */
2736 __le32 num_peers;
2737
2738 /* Number of active peer nodes to support */
2739 __le32 num_active_peers;
2740
2741 /* In offload mode, target supports features like WOW, chatter and other
2742 * protocol offloads. In order to support them some functionalities like
2743 * reorder buffering, PN checking need to be done in target.
2744 * This determines maximum number of peers supported by target in
2745 * offload mode.
2746 */
2747 __le32 num_offload_peers;
2748
2749 /* Number of reorder buffers available for doing target based reorder
2750 * Rx reorder buffering
2751 */
2752 __le32 num_offload_reorder_buffs;
2753
2754 /* Number of keys per peer */
2755 __le32 num_peer_keys;
2756
2757 /* Total number of TX/RX data TIDs */
2758 __le32 num_tids;
2759
2760 /* Max skid for resolving hash collisions.
2761 * The address search table is sparse, so that if two MAC addresses
2762 * result in the same hash value, the second of these conflicting
2763 * entries can slide to the next index in the address search table,
2764 * and use it, if it is unoccupied. This ast_skid_limit parameter
2765 * specifies the upper bound on how many subsequent indices to search
2766 * over to find an unoccupied space.
2767 */
2768 __le32 ast_skid_limit;
2769
2770 /* The nominal chain mask for transmit.
2771 * The chain mask may be modified dynamically, e.g. to operate AP tx
2772 * with a reduced number of chains if no clients are associated.
2773 * This configuration parameter specifies the nominal chain-mask that
2774 * should be used when not operating with a reduced set of tx chains.
2775 */
2776 __le32 tx_chain_mask;
2777
2778 /* The nominal chain mask for receive.
2779 * The chain mask may be modified dynamically, e.g. for a client to use
2780 * a reduced number of chains for receive if the traffic to the client
2781 * is low enough that it doesn't require downlink MIMO or antenna
2782 * diversity. This configuration parameter specifies the nominal
2783 * chain-mask that should be used when not operating with a reduced
2784 * set of rx chains.
2785 */
2786 __le32 rx_chain_mask;
2787
2788 /* What rx reorder timeout (ms) to use for the AC.
2789 * Each WMM access class (voice, video, best-effort, background) will
2790 * have its own timeout value to dictate how long to wait for missing
2791 * rx MPDUs to arrive before flushing subsequent MPDUs that have already
2792 * been received. This parameter specifies the timeout in milliseconds
2793 * for each class.
2794 */
2795 __le32 rx_timeout_pri[4];
2796
2797 /* What mode the rx should decap packets to.
2798 * MAC can decap to RAW (no decap), native wifi or Ethernet types.
2799 * This setting also determines the default TX behavior, however TX
2800 * behavior can be modified on a per VAP basis during VAP init
2801 */
2802 __le32 rx_decap_mode;
2803
2804 __le32 scan_max_pending_req;
2805
2806 __le32 bmiss_offload_max_vdev;
2807
2808 __le32 roam_offload_max_vdev;
2809
2810 __le32 roam_offload_max_ap_profiles;
2811
2812 /* How many groups to use for mcast->ucast conversion.
2813 * The target's WAL maintains a table to hold information regarding
2814 * which peers belong to a given multicast group, so that if
2815 * multicast->unicast conversion is enabled, the target can convert
2816 * multicast tx frames to a series of unicast tx frames, to each peer
2817 * within the multicast group. This num_mcast_groups configuration
2818 * parameter tells the target how many multicast groups to provide
2819 * storage for within its multicast group membership table.
2820 */
2821 __le32 num_mcast_groups;
2822
2823 /* Size to alloc for the mcast membership table.
2824 * This num_mcast_table_elems configuration parameter tells the target
2825 * how many peer elements it needs to provide storage for in its
2826 * multicast group membership table. These multicast group membership
2827 * table elements are shared by the multicast groups stored within
2828 * the table.
2829 */
2830 __le32 num_mcast_table_elems;
2831
2832 /* Whether/how to do multicast->unicast conversion.
2833 * This configuration parameter specifies whether the target should
2834 * perform multicast --> unicast conversion on transmit, and if so,
2835 * what to do if it finds no entries in its multicast group membership
2836 * table for the multicast IP address in the tx frame.
2837 * Configuration value:
2838 * 0 -> Do not perform multicast to unicast conversion.
2839 * 1 -> Convert multicast frames to unicast, if the IP multicast address
2840 * from the tx frame is found in the multicast group membership
2841 * table. If the IP multicast address is not found, drop the frame
2842 * 2 -> Convert multicast frames to unicast, if the IP multicast address
2843 * from the tx frame is found in the multicast group membership
2844 * table. If the IP multicast address is not found, transmit the
2845 * frame as multicast.
2846 */
2847 __le32 mcast2ucast_mode;
2848
2849 /* How much memory to allocate for a tx PPDU dbg log.
2850 * This parameter controls how much memory the target will allocate to
2851 * store a log of tx PPDU meta-information (how large the PPDU was,
2852 * when it was sent, whether it was successful, etc.)
2853 */
2854 __le32 tx_dbg_log_size;
2855
2856 /* How many AST entries to be allocated for WDS */
2857 __le32 num_wds_entries;
2858
2859 /* MAC DMA burst size. 0 -default, 1 -256B */
2860 __le32 dma_burst_size;
2861
2862 /* Fixed delimiters to be inserted after every MPDU to account for
2863 * interface latency to avoid underrun.
2864 */
2865 __le32 mac_aggr_delim;
2866
2867 /* Determine whether target is responsible for detecting duplicate
2868 * non-aggregate MPDU and timing out stale fragments. A-MPDU reordering
2869 * is always performed on the target.
2870 *
2871 * 0: target responsible for frag timeout and dup checking
2872 * 1: host responsible for frag timeout and dup checking
2873 */
2874 __le32 rx_skip_defrag_timeout_dup_detection_check;
2875
2876 /* Configuration for VoW : No of Video nodes to be supported and max
2877 * no of descriptors for each video link (node).
2878 */
2879 __le32 vow_config;
2880
2881 /* Maximum vdev that could use gtk offload */
2882 __le32 gtk_offload_max_vdev;
2883
2884 /* Number of msdu descriptors target should use */
2885 __le32 num_msdu_desc;
2886
2887 /* Max number of tx fragments per MSDU.
2888 * This parameter controls the max number of tx fragments per MSDU.
2889 * This will passed by target as part of the WMI_SERVICE_READY event
2890 * and is overridden by the OS shim as required.
2891 */
2892 __le32 max_frag_entries;
2893
2894 /* Max number of extended peer stats.
2895 * This parameter controls the max number of peers for which extended
2896 * statistics are supported by target
2897 */
2898 __le32 max_peer_ext_stats;
2899
2900 /* Smart antenna capabilities information.
2901 * 1 - Smart antenna is enabled
2902 * 0 - Smart antenna is disabled
2903 * In future this can contain smart antenna specific capabilities.
2904 */
2905 __le32 smart_ant_cap;
2906
2907 /* User can configure the buffers allocated for each AC (BE, BK, VI, VO)
2908 * during init.
2909 */
2910 __le32 bk_minfree;
2911 __le32 be_minfree;
2912 __le32 vi_minfree;
2913 __le32 vo_minfree;
2914
2915 /* Rx batch mode capability.
2916 * 1 - Rx batch mode enabled
2917 * 0 - Rx batch mode disabled
2918 */
2919 __le32 rx_batchmode;
2920
2921 /* Thermal throttling capability.
2922 * 1 - Capable of thermal throttling
2923 * 0 - Not capable of thermal throttling
2924 */
2925 __le32 tt_support;
2926
2927 /* ATF configuration.
2928 * 1 - Enable ATF
2929 * 0 - Disable ATF
2930 */
2931 __le32 atf_config;
2932
2933 /* Configure padding to manage IP header un-alignment
2934 * 1 - Enable padding
2935 * 0 - Disable padding
2936 */
2937 __le32 iphdr_pad_config;
2938
Ben Greear169ff6d2016-02-05 15:10:02 -08002939 /* qwrap configuration (bits 15-0)
Raja Manid1e52a82015-06-22 20:10:15 +05302940 * 1 - This is qwrap configuration
2941 * 0 - This is not qwrap
Ben Greear169ff6d2016-02-05 15:10:02 -08002942 *
2943 * Bits 31-16 is alloc_frag_desc_for_data_pkt (1 enables, 0 disables)
2944 * In order to get ack-RSSI reporting and to specify the tx-rate for
2945 * individual frames, this option must be enabled. This uses an extra
2946 * 4 bytes per tx-msdu descriptor, so don't enable it unless you need it.
Raja Manid1e52a82015-06-22 20:10:15 +05302947 */
2948 __le32 qwrap_config;
2949} __packed;
2950
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03002951enum wmi_coex_version {
2952 WMI_NO_COEX_VERSION_SUPPORT = 0,
2953 /* 3 wire coex support*/
2954 WMI_COEX_VERSION_1 = 1,
2955 /* 2.5 wire coex support*/
2956 WMI_COEX_VERSION_2 = 2,
2957 /* 2.5 wire coex with duty cycle support */
2958 WMI_COEX_VERSION_3 = 3,
2959 /* 4 wire coex support*/
2960 WMI_COEX_VERSION_4 = 4,
2961};
2962
Raja Mani47771902016-03-16 18:13:33 +05302963/**
2964 * enum wmi_10_4_feature_mask - WMI 10.4 feature enable/disable flags
2965 * @WMI_10_4_LTEU_SUPPORT: LTEU config
2966 * @WMI_10_4_COEX_GPIO_SUPPORT: COEX GPIO config
2967 * @WMI_10_4_AUX_RADIO_SPECTRAL_INTF: AUX Radio Enhancement for spectral scan
2968 * @WMI_10_4_AUX_RADIO_CHAN_LOAD_INTF: AUX Radio Enhancement for chan load scan
2969 * @WMI_10_4_BSS_CHANNEL_INFO_64: BSS channel info stats
2970 * @WMI_10_4_PEER_STATS: Per station stats
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03002971 * @WMI_10_4_VDEV_STATS: Per vdev stats
2972 * @WMI_10_4_TDLS: Implicit TDLS support in firmware enable/disable
2973 * @WMI_10_4_TDLS_OFFCHAN: TDLS offchannel support enable/disable
2974 * @WMI_10_4_TDLS_UAPSD_BUFFER_STA: TDLS buffer sta support enable/disable
2975 * @WMI_10_4_TDLS_UAPSD_SLEEP_STA: TDLS sleep sta support enable/disable
2976 * @WMI_10_4_TDLS_CONN_TRACKER_IN_HOST_MODE: TDLS connection tracker in host
2977 * enable/disable
2978 * @WMI_10_4_TDLS_EXPLICIT_MODE_ONLY:Explicit TDLS mode enable/disable
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +03002979 * @WMI_10_4_TX_DATA_ACK_RSSI: Enable DATA ACK RSSI if firmware is capable
Raja Mani47771902016-03-16 18:13:33 +05302980 */
2981enum wmi_10_4_feature_mask {
2982 WMI_10_4_LTEU_SUPPORT = BIT(0),
2983 WMI_10_4_COEX_GPIO_SUPPORT = BIT(1),
2984 WMI_10_4_AUX_RADIO_SPECTRAL_INTF = BIT(2),
2985 WMI_10_4_AUX_RADIO_CHAN_LOAD_INTF = BIT(3),
2986 WMI_10_4_BSS_CHANNEL_INFO_64 = BIT(4),
2987 WMI_10_4_PEER_STATS = BIT(5),
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03002988 WMI_10_4_VDEV_STATS = BIT(6),
2989 WMI_10_4_TDLS = BIT(7),
2990 WMI_10_4_TDLS_OFFCHAN = BIT(8),
2991 WMI_10_4_TDLS_UAPSD_BUFFER_STA = BIT(9),
2992 WMI_10_4_TDLS_UAPSD_SLEEP_STA = BIT(10),
2993 WMI_10_4_TDLS_CONN_TRACKER_IN_HOST_MODE = BIT(11),
2994 WMI_10_4_TDLS_EXPLICIT_MODE_ONLY = BIT(12),
Balaji Pothunooric7fd8d22018-09-04 12:52:18 +03002995 WMI_10_4_TX_DATA_ACK_RSSI = BIT(16),
Manikanta Pubbisettybb31b7c2019-02-11 18:47:59 +02002996 WMI_10_4_EXT_PEER_TID_CONFIGS_SUPPORT = BIT(17),
2997 WMI_10_4_REPORT_AIRTIME = BIT(18),
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03002998
Raja Mani47771902016-03-16 18:13:33 +05302999};
3000
3001struct wmi_ext_resource_config_10_4_cmd {
3002 /* contains enum wmi_host_platform_type */
3003 __le32 host_platform_config;
3004 /* see enum wmi_10_4_feature_mask */
3005 __le32 fw_feature_bitmap;
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03003006 /* WLAN priority GPIO number */
3007 __le32 wlan_gpio_priority;
3008 /* see enum wmi_coex_version */
3009 __le32 coex_version;
3010 /* COEX GPIO config */
3011 __le32 coex_gpio_pin1;
3012 __le32 coex_gpio_pin2;
3013 __le32 coex_gpio_pin3;
3014 /* number of vdevs allowed to perform tdls */
3015 __le32 num_tdls_vdevs;
3016 /* number of peers to track per TDLS vdev */
3017 __le32 num_tdls_conn_table_entries;
3018 /* number of tdls sleep sta supported */
3019 __le32 max_tdls_concurrent_sleep_sta;
3020 /* number of tdls buffer sta supported */
3021 __le32 max_tdls_concurrent_buffer_sta;
Raja Mani47771902016-03-16 18:13:33 +05303022};
3023
Erik Stromdahl5c9f0712017-12-28 20:06:43 +01003024/* structure describing host memory chunk. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003025struct host_memory_chunk {
3026 /* id of the request that is passed up in service ready */
3027 __le32 req_id;
3028 /* the physical address the memory chunk */
3029 __le32 ptr;
3030 /* size of the chunk */
3031 __le32 size;
3032} __packed;
3033
Michal Kaziorcf9fca82014-09-18 15:21:22 +02003034struct wmi_host_mem_chunks {
3035 __le32 count;
3036 /* some fw revisions require at least 1 chunk regardless of count */
3037 struct host_memory_chunk items[1];
3038} __packed;
3039
Kalle Valo5e3dd152013-06-12 20:52:10 +03003040struct wmi_init_cmd {
3041 struct wmi_resource_config resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02003042 struct wmi_host_mem_chunks mem_chunks;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003043} __packed;
3044
Joe Perchese13dbea2016-09-26 21:56:21 +03003045/* _10x structure is from 10.X FW API */
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02003046struct wmi_init_cmd_10x {
3047 struct wmi_resource_config_10x resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02003048 struct wmi_host_mem_chunks mem_chunks;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02003049} __packed;
3050
Michal Kazior24c88f72014-07-25 13:32:17 +02003051struct wmi_init_cmd_10_2 {
3052 struct wmi_resource_config_10_2 resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02003053 struct wmi_host_mem_chunks mem_chunks;
Michal Kazior24c88f72014-07-25 13:32:17 +02003054} __packed;
3055
Raja Manid1e52a82015-06-22 20:10:15 +05303056struct wmi_init_cmd_10_4 {
3057 struct wmi_resource_config_10_4 resource_config;
3058 struct wmi_host_mem_chunks mem_chunks;
3059} __packed;
3060
Michal Kazior24c88f72014-07-25 13:32:17 +02003061struct wmi_chan_list_entry {
3062 __le16 freq;
3063 u8 phy_mode; /* valid for 10.2 only */
3064 u8 reserved;
3065} __packed;
3066
Kalle Valo5e3dd152013-06-12 20:52:10 +03003067/* TLV for channel list */
3068struct wmi_chan_list {
3069 __le32 tag; /* WMI_CHAN_LIST_TAG */
3070 __le32 num_chan;
Michal Kazior24c88f72014-07-25 13:32:17 +02003071 struct wmi_chan_list_entry channel_list[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003072} __packed;
3073
3074struct wmi_bssid_list {
3075 __le32 tag; /* WMI_BSSID_LIST_TAG */
3076 __le32 num_bssid;
3077 struct wmi_mac_addr bssid_list[0];
3078} __packed;
3079
3080struct wmi_ie_data {
3081 __le32 tag; /* WMI_IE_TAG */
3082 __le32 ie_len;
3083 u8 ie_data[0];
3084} __packed;
3085
3086struct wmi_ssid {
3087 __le32 ssid_len;
3088 u8 ssid[32];
3089} __packed;
3090
3091struct wmi_ssid_list {
3092 __le32 tag; /* WMI_SSID_LIST_TAG */
3093 __le32 num_ssids;
3094 struct wmi_ssid ssids[0];
3095} __packed;
3096
3097/* prefix used by scan requestor ids on the host */
3098#define WMI_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000
3099
3100/* prefix used by scan request ids generated on the host */
3101/* host cycles through the lower 12 bits to generate ids */
3102#define WMI_HOST_SCAN_REQ_ID_PREFIX 0xA000
3103
3104#define WLAN_SCAN_PARAMS_MAX_SSID 16
3105#define WLAN_SCAN_PARAMS_MAX_BSSID 4
3106#define WLAN_SCAN_PARAMS_MAX_IE_LEN 256
3107
Michal Kaziordcca0bd2014-11-24 14:58:32 +01003108/* Values lower than this may be refused by some firmware revisions with a scan
3109 * completion with a timedout reason.
3110 */
3111#define WMI_SCAN_CHAN_MIN_TIME_MSEC 40
3112
Kalle Valo5e3dd152013-06-12 20:52:10 +03003113/* Scan priority numbers must be sequential, starting with 0 */
3114enum wmi_scan_priority {
3115 WMI_SCAN_PRIORITY_VERY_LOW = 0,
3116 WMI_SCAN_PRIORITY_LOW,
3117 WMI_SCAN_PRIORITY_MEDIUM,
3118 WMI_SCAN_PRIORITY_HIGH,
3119 WMI_SCAN_PRIORITY_VERY_HIGH,
3120 WMI_SCAN_PRIORITY_COUNT /* number of priorities supported */
3121};
3122
Michal Kaziora6aa5da2014-09-18 15:21:27 +02003123struct wmi_start_scan_common {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003124 /* Scan ID */
3125 __le32 scan_id;
3126 /* Scan requestor ID */
3127 __le32 scan_req_id;
3128 /* VDEV id(interface) that is requesting scan */
3129 __le32 vdev_id;
3130 /* Scan Priority, input to scan scheduler */
3131 __le32 scan_priority;
3132 /* Scan events subscription */
3133 __le32 notify_scan_events;
3134 /* dwell time in msec on active channels */
3135 __le32 dwell_time_active;
3136 /* dwell time in msec on passive channels */
3137 __le32 dwell_time_passive;
3138 /*
3139 * min time in msec on the BSS channel,only valid if atleast one
3140 * VDEV is active
3141 */
3142 __le32 min_rest_time;
3143 /*
3144 * max rest time in msec on the BSS channel,only valid if at least
3145 * one VDEV is active
3146 */
3147 /*
3148 * the scanner will rest on the bss channel at least min_rest_time
3149 * after min_rest_time the scanner will start checking for tx/rx
3150 * activity on all VDEVs. if there is no activity the scanner will
3151 * switch to off channel. if there is activity the scanner will let
3152 * the radio on the bss channel until max_rest_time expires.at
3153 * max_rest_time scanner will switch to off channel irrespective of
3154 * activity. activity is determined by the idle_time parameter.
3155 */
3156 __le32 max_rest_time;
3157 /*
3158 * time before sending next set of probe requests.
3159 * The scanner keeps repeating probe requests transmission with
3160 * period specified by repeat_probe_time.
3161 * The number of probe requests specified depends on the ssid_list
3162 * and bssid_list
3163 */
3164 __le32 repeat_probe_time;
3165 /* time in msec between 2 consequetive probe requests with in a set. */
3166 __le32 probe_spacing_time;
3167 /*
3168 * data inactivity time in msec on bss channel that will be used by
3169 * scanner for measuring the inactivity.
3170 */
3171 __le32 idle_time;
3172 /* maximum time in msec allowed for scan */
3173 __le32 max_scan_time;
3174 /*
3175 * delay in msec before sending first probe request after switching
3176 * to a channel
3177 */
3178 __le32 probe_delay;
3179 /* Scan control flags */
3180 __le32 scan_ctrl_flags;
Michal Kaziora6aa5da2014-09-18 15:21:27 +02003181} __packed;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003182
Michal Kaziora6aa5da2014-09-18 15:21:27 +02003183struct wmi_start_scan_tlvs {
3184 /* TLV parameters. These includes channel list, ssid list, bssid list,
3185 * extra ies.
Kalle Valo5e3dd152013-06-12 20:52:10 +03003186 */
Michal Kaziora6aa5da2014-09-18 15:21:27 +02003187 u8 tlvs[0];
3188} __packed;
3189
3190struct wmi_start_scan_cmd {
3191 struct wmi_start_scan_common common;
3192 __le32 burst_duration_ms;
3193 struct wmi_start_scan_tlvs tlvs;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003194} __packed;
3195
Bartosz Markowski89b7e762013-09-26 17:47:17 +02003196/* This is the definition from 10.X firmware branch */
Michal Kaziora6aa5da2014-09-18 15:21:27 +02003197struct wmi_10x_start_scan_cmd {
3198 struct wmi_start_scan_common common;
3199 struct wmi_start_scan_tlvs tlvs;
Bartosz Markowski89b7e762013-09-26 17:47:17 +02003200} __packed;
3201
Kalle Valo5e3dd152013-06-12 20:52:10 +03003202struct wmi_ssid_arg {
3203 int len;
3204 const u8 *ssid;
3205};
3206
3207struct wmi_bssid_arg {
3208 const u8 *bssid;
3209};
3210
3211struct wmi_start_scan_arg {
3212 u32 scan_id;
3213 u32 scan_req_id;
3214 u32 vdev_id;
3215 u32 scan_priority;
3216 u32 notify_scan_events;
3217 u32 dwell_time_active;
3218 u32 dwell_time_passive;
3219 u32 min_rest_time;
3220 u32 max_rest_time;
3221 u32 repeat_probe_time;
3222 u32 probe_spacing_time;
3223 u32 idle_time;
3224 u32 max_scan_time;
3225 u32 probe_delay;
3226 u32 scan_ctrl_flags;
Michal Kaziordbd3f9f2015-03-31 11:03:48 +00003227 u32 burst_duration_ms;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003228
3229 u32 ie_len;
3230 u32 n_channels;
3231 u32 n_ssids;
3232 u32 n_bssids;
3233
3234 u8 ie[WLAN_SCAN_PARAMS_MAX_IE_LEN];
Michal Kazior24c88f72014-07-25 13:32:17 +02003235 u16 channels[64];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003236 struct wmi_ssid_arg ssids[WLAN_SCAN_PARAMS_MAX_SSID];
3237 struct wmi_bssid_arg bssids[WLAN_SCAN_PARAMS_MAX_BSSID];
Carl Huang60e1d0f2018-04-19 19:39:40 +03003238 struct wmi_mac_addr mac_addr;
3239 struct wmi_mac_addr mac_mask;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003240};
3241
3242/* scan control flags */
3243
3244/* passively scan all channels including active channels */
3245#define WMI_SCAN_FLAG_PASSIVE 0x1
3246/* add wild card ssid probe request even though ssid_list is specified. */
3247#define WMI_SCAN_ADD_BCAST_PROBE_REQ 0x2
3248/* add cck rates to rates/xrate ie for the generated probe request */
3249#define WMI_SCAN_ADD_CCK_RATES 0x4
3250/* add ofdm rates to rates/xrate ie for the generated probe request */
3251#define WMI_SCAN_ADD_OFDM_RATES 0x8
3252/* To enable indication of Chan load and Noise floor to host */
3253#define WMI_SCAN_CHAN_STAT_EVENT 0x10
3254/* Filter Probe request frames */
3255#define WMI_SCAN_FILTER_PROBE_REQ 0x20
3256/* When set, DFS channels will not be scanned */
3257#define WMI_SCAN_BYPASS_DFS_CHN 0x40
3258/* Different FW scan engine may choose to bail out on errors.
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01003259 * Allow the driver to have influence over that.
3260 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003261#define WMI_SCAN_CONTINUE_ON_ERROR 0x80
3262
Carl Huang60e1d0f2018-04-19 19:39:40 +03003263/* Use random MAC address for TA for Probe Request frame and add
3264 * OUI specified by WMI_SCAN_PROB_REQ_OUI_CMDID to the Probe Request frame.
3265 * if OUI is not set by WMI_SCAN_PROB_REQ_OUI_CMDID then the flag is ignored.
3266 */
3267#define WMI_SCAN_ADD_SPOOFED_MAC_IN_PROBE_REQ 0x1000
3268
Kalle Valo5e3dd152013-06-12 20:52:10 +03003269/* WMI_SCAN_CLASS_MASK must be the same value as IEEE80211_SCAN_CLASS_MASK */
3270#define WMI_SCAN_CLASS_MASK 0xFF000000
3271
Kalle Valo5e3dd152013-06-12 20:52:10 +03003272enum wmi_stop_scan_type {
3273 WMI_SCAN_STOP_ONE = 0x00000000, /* stop by scan_id */
3274 WMI_SCAN_STOP_VDEV_ALL = 0x01000000, /* stop by vdev_id */
3275 WMI_SCAN_STOP_ALL = 0x04000000, /* stop all scans */
3276};
3277
3278struct wmi_stop_scan_cmd {
3279 __le32 scan_req_id;
3280 __le32 scan_id;
3281 __le32 req_type;
3282 __le32 vdev_id;
3283} __packed;
3284
3285struct wmi_stop_scan_arg {
3286 u32 req_id;
3287 enum wmi_stop_scan_type req_type;
3288 union {
3289 u32 scan_id;
3290 u32 vdev_id;
3291 } u;
3292};
3293
3294struct wmi_scan_chan_list_cmd {
3295 __le32 num_scan_chans;
3296 struct wmi_channel chan_info[0];
3297} __packed;
3298
3299struct wmi_scan_chan_list_arg {
3300 u32 n_channels;
3301 struct wmi_channel_arg *channels;
3302};
3303
3304enum wmi_bss_filter {
3305 WMI_BSS_FILTER_NONE = 0, /* no beacons forwarded */
3306 WMI_BSS_FILTER_ALL, /* all beacons forwarded */
3307 WMI_BSS_FILTER_PROFILE, /* only beacons matching profile */
3308 WMI_BSS_FILTER_ALL_BUT_PROFILE, /* all but beacons matching profile */
3309 WMI_BSS_FILTER_CURRENT_BSS, /* only beacons matching current BSS */
3310 WMI_BSS_FILTER_ALL_BUT_BSS, /* all but beacons matching BSS */
3311 WMI_BSS_FILTER_PROBED_SSID, /* beacons matching probed ssid */
3312 WMI_BSS_FILTER_LAST_BSS, /* marker only */
3313};
3314
3315enum wmi_scan_event_type {
Raja Manib2297ba2015-06-22 20:22:23 +05303316 WMI_SCAN_EVENT_STARTED = BIT(0),
3317 WMI_SCAN_EVENT_COMPLETED = BIT(1),
3318 WMI_SCAN_EVENT_BSS_CHANNEL = BIT(2),
3319 WMI_SCAN_EVENT_FOREIGN_CHANNEL = BIT(3),
3320 WMI_SCAN_EVENT_DEQUEUED = BIT(4),
3321 /* possibly by high-prio scan */
3322 WMI_SCAN_EVENT_PREEMPTED = BIT(5),
3323 WMI_SCAN_EVENT_START_FAILED = BIT(6),
3324 WMI_SCAN_EVENT_RESTARTED = BIT(7),
3325 WMI_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = BIT(8),
3326 WMI_SCAN_EVENT_MAX = BIT(15),
Kalle Valo5e3dd152013-06-12 20:52:10 +03003327};
3328
3329enum wmi_scan_completion_reason {
3330 WMI_SCAN_REASON_COMPLETED,
3331 WMI_SCAN_REASON_CANCELLED,
3332 WMI_SCAN_REASON_PREEMPTED,
3333 WMI_SCAN_REASON_TIMEDOUT,
Raja Manib2297ba2015-06-22 20:22:23 +05303334 WMI_SCAN_REASON_INTERNAL_FAILURE,
Kalle Valo5e3dd152013-06-12 20:52:10 +03003335 WMI_SCAN_REASON_MAX,
3336};
3337
3338struct wmi_scan_event {
3339 __le32 event_type; /* %WMI_SCAN_EVENT_ */
3340 __le32 reason; /* %WMI_SCAN_REASON_ */
3341 __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
3342 __le32 scan_req_id;
3343 __le32 scan_id;
3344 __le32 vdev_id;
3345} __packed;
3346
3347/*
3348 * This defines how much headroom is kept in the
3349 * receive frame between the descriptor and the
3350 * payload, in order for the WMI PHY error and
3351 * management handler to insert header contents.
3352 *
3353 * This is in bytes.
3354 */
3355#define WMI_MGMT_RX_HDR_HEADROOM 52
3356
3357/*
3358 * This event will be used for sending scan results
3359 * as well as rx mgmt frames to the host. The rx buffer
3360 * will be sent as part of this WMI event. It would be a
3361 * good idea to pass all the fields in the RX status
3362 * descriptor up to the host.
3363 */
Michal Kazior0d9b0432013-08-09 10:13:33 +02003364struct wmi_mgmt_rx_hdr_v1 {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003365 __le32 channel;
3366 __le32 snr;
3367 __le32 rate;
3368 __le32 phy_mode;
3369 __le32 buf_len;
3370 __le32 status; /* %WMI_RX_STATUS_ */
3371} __packed;
3372
Michal Kazior0d9b0432013-08-09 10:13:33 +02003373struct wmi_mgmt_rx_hdr_v2 {
3374 struct wmi_mgmt_rx_hdr_v1 v1;
3375 __le32 rssi_ctl[4];
3376} __packed;
3377
3378struct wmi_mgmt_rx_event_v1 {
3379 struct wmi_mgmt_rx_hdr_v1 hdr;
3380 u8 buf[0];
3381} __packed;
3382
3383struct wmi_mgmt_rx_event_v2 {
3384 struct wmi_mgmt_rx_hdr_v2 hdr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003385 u8 buf[0];
3386} __packed;
3387
Raja Mani1c092962015-06-22 20:10:16 +05303388struct wmi_10_4_mgmt_rx_hdr {
3389 __le32 channel;
3390 __le32 snr;
3391 u8 rssi_ctl[4];
3392 __le32 rate;
3393 __le32 phy_mode;
3394 __le32 buf_len;
3395 __le32 status;
3396} __packed;
3397
3398struct wmi_10_4_mgmt_rx_event {
3399 struct wmi_10_4_mgmt_rx_hdr hdr;
3400 u8 buf[0];
3401} __packed;
3402
Peter Oh8d130962016-03-01 09:52:49 -08003403struct wmi_mgmt_rx_ext_info {
3404 __le64 rx_mac_timestamp;
3405} __packed __aligned(4);
3406
Kalle Valo5e3dd152013-06-12 20:52:10 +03003407#define WMI_RX_STATUS_OK 0x00
3408#define WMI_RX_STATUS_ERR_CRC 0x01
3409#define WMI_RX_STATUS_ERR_DECRYPT 0x08
3410#define WMI_RX_STATUS_ERR_MIC 0x10
3411#define WMI_RX_STATUS_ERR_KEY_CACHE_MISS 0x20
Peter Oh8d130962016-03-01 09:52:49 -08003412/* Extension data at the end of mgmt frame */
3413#define WMI_RX_STATUS_EXT_INFO 0x40
Kalle Valo5e3dd152013-06-12 20:52:10 +03003414
Raja Mani991adf72015-08-14 11:13:29 +03003415#define PHY_ERROR_GEN_SPECTRAL_SCAN 0x26
3416#define PHY_ERROR_GEN_FALSE_RADAR_EXT 0x24
3417#define PHY_ERROR_GEN_RADAR 0x05
3418
Raja Mani2b0a2e02015-08-14 11:13:34 +03003419#define PHY_ERROR_10_4_RADAR_MASK 0x4
3420#define PHY_ERROR_10_4_SPECTRAL_SCAN_MASK 0x4000000
3421
Raja Mani991adf72015-08-14 11:13:29 +03003422enum phy_err_type {
3423 PHY_ERROR_UNKNOWN,
3424 PHY_ERROR_SPECTRAL_SCAN,
3425 PHY_ERROR_FALSE_RADAR_EXT,
3426 PHY_ERROR_RADAR
3427};
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003428
Michal Kazior2332d0a2014-09-18 15:21:25 +02003429struct wmi_phyerr {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003430 __le32 tsf_timestamp;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003431 __le16 freq1;
3432 __le16 freq2;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003433 u8 rssi_combined;
3434 u8 chan_width_mhz;
3435 u8 phy_err_code;
3436 u8 rsvd0;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003437 __le32 rssi_chains[4];
3438 __le16 nf_chains[4];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003439 __le32 buf_len;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003440 u8 buf[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003441} __packed;
3442
Michal Kazior2332d0a2014-09-18 15:21:25 +02003443struct wmi_phyerr_event {
3444 __le32 num_phyerrs;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003445 __le32 tsf_l32;
3446 __le32 tsf_u32;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003447 struct wmi_phyerr phyerrs[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003448} __packed;
3449
Raja Mani2b0a2e02015-08-14 11:13:34 +03003450struct wmi_10_4_phyerr_event {
3451 __le32 tsf_l32;
3452 __le32 tsf_u32;
3453 __le16 freq1;
3454 __le16 freq2;
3455 u8 rssi_combined;
3456 u8 chan_width_mhz;
3457 u8 phy_err_code;
3458 u8 rsvd0;
3459 __le32 rssi_chains[4];
3460 __le16 nf_chains[4];
3461 __le32 phy_err_mask[2];
3462 __le32 tsf_timestamp;
3463 __le32 buf_len;
3464 u8 buf[0];
3465} __packed;
3466
Sriram R6f6eb1b2018-05-15 14:39:49 +05303467struct wmi_radar_found_info {
3468 __le32 pri_min;
3469 __le32 pri_max;
3470 __le32 width_min;
3471 __le32 width_max;
3472 __le32 sidx_min;
3473 __le32 sidx_max;
3474} __packed;
3475
3476enum wmi_radar_confirmation_status {
3477 /* Detected radar was due to SW pulses */
3478 WMI_SW_RADAR_DETECTED = 0,
3479
3480 WMI_RADAR_DETECTION_FAIL = 1,
3481
3482 /* Real radar detected */
3483 WMI_HW_RADAR_DETECTED = 2,
3484};
3485
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003486#define PHYERR_TLV_SIG 0xBB
3487#define PHYERR_TLV_TAG_SEARCH_FFT_REPORT 0xFB
3488#define PHYERR_TLV_TAG_RADAR_PULSE_SUMMARY 0xF8
Simon Wunderlich855aed12014-08-02 09:12:54 +03003489#define PHYERR_TLV_TAG_SPECTRAL_SUMMARY_REPORT 0xF9
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003490
3491struct phyerr_radar_report {
3492 __le32 reg0; /* RADAR_REPORT_REG0_* */
Mohammed Shafi Shajakhan0a7d88e2017-03-14 17:03:24 +05303493 __le32 reg1; /* RADAR_REPORT_REG1_* */
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003494} __packed;
3495
3496#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_MASK 0x80000000
3497#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_LSB 31
3498
3499#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_MASK 0x40000000
3500#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_LSB 30
3501
3502#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_MASK 0x3FF00000
3503#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_LSB 20
3504
3505#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_MASK 0x000F0000
3506#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_LSB 16
3507
3508#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_MASK 0x0000FC00
3509#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_LSB 10
3510
3511#define RADAR_REPORT_REG0_PULSE_SIDX_MASK 0x000003FF
3512#define RADAR_REPORT_REG0_PULSE_SIDX_LSB 0
3513
3514#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_MASK 0x80000000
3515#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_LSB 31
3516
3517#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_MASK 0x7F000000
3518#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_LSB 24
3519
3520#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_MASK 0x00FF0000
3521#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_LSB 16
3522
3523#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_MASK 0x0000FF00
3524#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_LSB 8
3525
3526#define RADAR_REPORT_REG1_PULSE_DUR_MASK 0x000000FF
3527#define RADAR_REPORT_REG1_PULSE_DUR_LSB 0
3528
3529struct phyerr_fft_report {
3530 __le32 reg0; /* SEARCH_FFT_REPORT_REG0_ * */
3531 __le32 reg1; /* SEARCH_FFT_REPORT_REG1_ * */
3532} __packed;
3533
3534#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_MASK 0xFF800000
3535#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_LSB 23
3536
3537#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_MASK 0x007FC000
3538#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_LSB 14
3539
3540#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_MASK 0x00003000
3541#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_LSB 12
3542
3543#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_MASK 0x00000FFF
3544#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_LSB 0
3545
3546#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_MASK 0xFC000000
3547#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_LSB 26
3548
3549#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_MASK 0x03FC0000
3550#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_LSB 18
3551
3552#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_MASK 0x0003FF00
3553#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_LSB 8
3554
3555#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_MASK 0x000000FF
3556#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_LSB 0
3557
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003558struct phyerr_tlv {
3559 __le16 len;
3560 u8 tag;
3561 u8 sig;
3562} __packed;
3563
3564#define DFS_RSSI_POSSIBLY_FALSE 50
3565#define DFS_PEAK_MAG_THOLD_POSSIBLY_FALSE 40
3566
Kalle Valo5e3dd152013-06-12 20:52:10 +03003567struct wmi_mgmt_tx_hdr {
3568 __le32 vdev_id;
3569 struct wmi_mac_addr peer_macaddr;
3570 __le32 tx_rate;
3571 __le32 tx_power;
3572 __le32 buf_len;
3573} __packed;
3574
3575struct wmi_mgmt_tx_cmd {
3576 struct wmi_mgmt_tx_hdr hdr;
3577 u8 buf[0];
3578} __packed;
3579
3580struct wmi_echo_event {
3581 __le32 value;
3582} __packed;
3583
3584struct wmi_echo_cmd {
3585 __le32 value;
3586} __packed;
3587
Kalle Valo5e3dd152013-06-12 20:52:10 +03003588struct wmi_pdev_set_regdomain_cmd {
3589 __le32 reg_domain;
3590 __le32 reg_domain_2G;
3591 __le32 reg_domain_5G;
3592 __le32 conformance_test_limit_2G;
3593 __le32 conformance_test_limit_5G;
3594} __packed;
3595
Marek Puzyniak821af6a2014-03-21 17:46:57 +02003596enum wmi_dfs_region {
3597 /* Uninitialized dfs domain */
3598 WMI_UNINIT_DFS_DOMAIN = 0,
3599
3600 /* FCC3 dfs domain */
3601 WMI_FCC_DFS_DOMAIN = 1,
3602
3603 /* ETSI dfs domain */
3604 WMI_ETSI_DFS_DOMAIN = 2,
3605
3606 /*Japan dfs domain */
3607 WMI_MKK4_DFS_DOMAIN = 3,
3608};
3609
3610struct wmi_pdev_set_regdomain_cmd_10x {
3611 __le32 reg_domain;
3612 __le32 reg_domain_2G;
3613 __le32 reg_domain_5G;
3614 __le32 conformance_test_limit_2G;
3615 __le32 conformance_test_limit_5G;
3616
3617 /* dfs domain from wmi_dfs_region */
3618 __le32 dfs_domain;
3619} __packed;
3620
Kalle Valo5e3dd152013-06-12 20:52:10 +03003621/* Command to set/unset chip in quiet mode */
3622struct wmi_pdev_set_quiet_cmd {
3623 /* period in TUs */
3624 __le32 period;
3625
3626 /* duration in TUs */
3627 __le32 duration;
3628
3629 /* offset in TUs */
3630 __le32 next_start;
3631
3632 /* enable/disable */
3633 __le32 enabled;
3634} __packed;
3635
Kalle Valo5e3dd152013-06-12 20:52:10 +03003636/*
3637 * 802.11g protection mode.
3638 */
3639enum ath10k_protmode {
3640 ATH10K_PROT_NONE = 0, /* no protection */
3641 ATH10K_PROT_CTSONLY = 1, /* CTS to self */
3642 ATH10K_PROT_RTSCTS = 2, /* RTS-CTS */
3643};
3644
Marek Kwaczynskie81bd102014-03-11 12:58:00 +02003645enum wmi_rtscts_profile {
3646 WMI_RTSCTS_FOR_NO_RATESERIES = 0,
3647 WMI_RTSCTS_FOR_SECOND_RATESERIES,
3648 WMI_RTSCTS_ACROSS_SW_RETRIES
3649};
3650
3651#define WMI_RTSCTS_ENABLED 1
3652#define WMI_RTSCTS_SET_MASK 0x0f
3653#define WMI_RTSCTS_SET_LSB 0
3654
3655#define WMI_RTSCTS_PROFILE_MASK 0xf0
3656#define WMI_RTSCTS_PROFILE_LSB 4
3657
Kalle Valo5e3dd152013-06-12 20:52:10 +03003658enum wmi_beacon_gen_mode {
3659 WMI_BEACON_STAGGERED_MODE = 0,
3660 WMI_BEACON_BURST_MODE = 1
3661};
3662
3663enum wmi_csa_event_ies_present_flag {
3664 WMI_CSA_IE_PRESENT = 0x00000001,
3665 WMI_XCSA_IE_PRESENT = 0x00000002,
3666 WMI_WBW_IE_PRESENT = 0x00000004,
3667 WMI_CSWARP_IE_PRESENT = 0x00000008,
3668};
3669
3670/* wmi CSA receive event from beacon frame */
3671struct wmi_csa_event {
3672 __le32 i_fc_dur;
3673 /* Bit 0-15: FC */
3674 /* Bit 16-31: DUR */
3675 struct wmi_mac_addr i_addr1;
3676 struct wmi_mac_addr i_addr2;
3677 __le32 csa_ie[2];
3678 __le32 xcsa_ie[2];
3679 __le32 wb_ie[2];
3680 __le32 cswarp_ie;
3681 __le32 ies_present_flag; /* wmi_csa_event_ies_present_flag */
3682} __packed;
3683
3684/* the definition of different PDEV parameters */
3685#define PDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3686#define VDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3687#define PEER_DEFAULT_STATS_UPDATE_PERIOD 500
3688
Bartosz Markowski226a3392013-09-26 17:47:16 +02003689struct wmi_pdev_param_map {
3690 u32 tx_chain_mask;
3691 u32 rx_chain_mask;
3692 u32 txpower_limit2g;
3693 u32 txpower_limit5g;
3694 u32 txpower_scale;
3695 u32 beacon_gen_mode;
3696 u32 beacon_tx_mode;
3697 u32 resmgr_offchan_mode;
3698 u32 protection_mode;
3699 u32 dynamic_bw;
3700 u32 non_agg_sw_retry_th;
3701 u32 agg_sw_retry_th;
3702 u32 sta_kickout_th;
3703 u32 ac_aggrsize_scaling;
3704 u32 ltr_enable;
3705 u32 ltr_ac_latency_be;
3706 u32 ltr_ac_latency_bk;
3707 u32 ltr_ac_latency_vi;
3708 u32 ltr_ac_latency_vo;
3709 u32 ltr_ac_latency_timeout;
3710 u32 ltr_sleep_override;
3711 u32 ltr_rx_override;
3712 u32 ltr_tx_activity_timeout;
3713 u32 l1ss_enable;
3714 u32 dsleep_enable;
3715 u32 pcielp_txbuf_flush;
3716 u32 pcielp_txbuf_watermark;
3717 u32 pcielp_txbuf_tmo_en;
3718 u32 pcielp_txbuf_tmo_value;
3719 u32 pdev_stats_update_period;
3720 u32 vdev_stats_update_period;
3721 u32 peer_stats_update_period;
3722 u32 bcnflt_stats_update_period;
3723 u32 pmf_qos;
3724 u32 arp_ac_override;
Bartosz Markowski226a3392013-09-26 17:47:16 +02003725 u32 dcs;
3726 u32 ani_enable;
3727 u32 ani_poll_period;
3728 u32 ani_listen_period;
3729 u32 ani_ofdm_level;
3730 u32 ani_cck_level;
3731 u32 dyntxchain;
3732 u32 proxy_sta;
3733 u32 idle_ps_config;
3734 u32 power_gating_sleep;
3735 u32 fast_channel_reset;
3736 u32 burst_dur;
3737 u32 burst_enable;
Peter Oha7bd3e92014-12-02 13:07:14 +02003738 u32 cal_period;
Raja Manid86561f2015-06-22 20:10:14 +05303739 u32 aggr_burst;
3740 u32 rx_decap_mode;
3741 u32 smart_antenna_default_antenna;
3742 u32 igmpmld_override;
3743 u32 igmpmld_tid;
3744 u32 antenna_gain;
3745 u32 rx_filter;
3746 u32 set_mcast_to_ucast_tid;
3747 u32 proxy_sta_mode;
3748 u32 set_mcast2ucast_mode;
3749 u32 set_mcast2ucast_buffer;
3750 u32 remove_mcast2ucast_buffer;
3751 u32 peer_sta_ps_statechg_enable;
3752 u32 igmpmld_ac_override;
3753 u32 block_interbss;
3754 u32 set_disable_reset_cmdid;
3755 u32 set_msdu_ttl_cmdid;
3756 u32 set_ppdu_duration_cmdid;
3757 u32 txbf_sound_period_cmdid;
3758 u32 set_promisc_mode_cmdid;
3759 u32 set_burst_mode_cmdid;
3760 u32 en_stats;
3761 u32 mu_group_policy;
3762 u32 noise_detection;
3763 u32 noise_threshold;
3764 u32 dpd_enable;
3765 u32 set_mcast_bcast_echo;
3766 u32 atf_strict_sch;
3767 u32 atf_sched_duration;
3768 u32 ant_plzn;
3769 u32 mgmt_retry_limit;
3770 u32 sensitivity_level;
3771 u32 signed_txpower_2g;
3772 u32 signed_txpower_5g;
3773 u32 enable_per_tid_amsdu;
3774 u32 enable_per_tid_ampdu;
3775 u32 cca_threshold;
3776 u32 rts_fixed_rate;
3777 u32 pdev_reset;
3778 u32 wapi_mbssid_offset;
3779 u32 arp_srcaddr;
3780 u32 arp_dstaddr;
Rajkumar Manoharan39136242016-05-27 20:15:59 +05303781 u32 enable_btcoex;
Bartosz Markowski226a3392013-09-26 17:47:16 +02003782};
3783
3784#define WMI_PDEV_PARAM_UNSUPPORTED 0
3785
Kalle Valo5e3dd152013-06-12 20:52:10 +03003786enum wmi_pdev_param {
Ben Greeard0e0a552014-05-14 16:56:14 +03003787 /* TX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003788 WMI_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
Ben Greeard0e0a552014-05-14 16:56:14 +03003789 /* RX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003790 WMI_PDEV_PARAM_RX_CHAIN_MASK,
3791 /* TX power limit for 2G Radio */
3792 WMI_PDEV_PARAM_TXPOWER_LIMIT2G,
3793 /* TX power limit for 5G Radio */
3794 WMI_PDEV_PARAM_TXPOWER_LIMIT5G,
3795 /* TX power scale */
3796 WMI_PDEV_PARAM_TXPOWER_SCALE,
3797 /* Beacon generation mode . 0: host, 1: target */
3798 WMI_PDEV_PARAM_BEACON_GEN_MODE,
3799 /* Beacon generation mode . 0: staggered 1: bursted */
3800 WMI_PDEV_PARAM_BEACON_TX_MODE,
3801 /*
3802 * Resource manager off chan mode .
3803 * 0: turn off off chan mode. 1: turn on offchan mode
3804 */
3805 WMI_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
3806 /*
3807 * Protection mode:
3808 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3809 */
3810 WMI_PDEV_PARAM_PROTECTION_MODE,
Michal Kaziorc4dd0d02013-11-13 11:05:10 +01003811 /*
3812 * Dynamic bandwidth - 0: disable, 1: enable
3813 *
3814 * When enabled HW rate control tries different bandwidths when
3815 * retransmitting frames.
3816 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003817 WMI_PDEV_PARAM_DYNAMIC_BW,
3818 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3819 WMI_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
3820 /* aggregrate sw retry threshold. 0-disable*/
3821 WMI_PDEV_PARAM_AGG_SW_RETRY_TH,
3822 /* Station kickout threshold (non of consecutive failures).0-disable */
3823 WMI_PDEV_PARAM_STA_KICKOUT_TH,
3824 /* Aggerate size scaling configuration per AC */
3825 WMI_PDEV_PARAM_AC_AGGRSIZE_SCALING,
3826 /* LTR enable */
3827 WMI_PDEV_PARAM_LTR_ENABLE,
3828 /* LTR latency for BE, in us */
3829 WMI_PDEV_PARAM_LTR_AC_LATENCY_BE,
3830 /* LTR latency for BK, in us */
3831 WMI_PDEV_PARAM_LTR_AC_LATENCY_BK,
3832 /* LTR latency for VI, in us */
3833 WMI_PDEV_PARAM_LTR_AC_LATENCY_VI,
3834 /* LTR latency for VO, in us */
3835 WMI_PDEV_PARAM_LTR_AC_LATENCY_VO,
3836 /* LTR AC latency timeout, in ms */
3837 WMI_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
3838 /* LTR platform latency override, in us */
3839 WMI_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
3840 /* LTR-RX override, in us */
3841 WMI_PDEV_PARAM_LTR_RX_OVERRIDE,
3842 /* Tx activity timeout for LTR, in us */
3843 WMI_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
3844 /* L1SS state machine enable */
3845 WMI_PDEV_PARAM_L1SS_ENABLE,
3846 /* Deep sleep state machine enable */
3847 WMI_PDEV_PARAM_DSLEEP_ENABLE,
3848 /* RX buffering flush enable */
3849 WMI_PDEV_PARAM_PCIELP_TXBUF_FLUSH,
3850 /* RX buffering matermark */
3851 WMI_PDEV_PARAM_PCIELP_TXBUF_WATERMARK,
3852 /* RX buffering timeout enable */
3853 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_EN,
3854 /* RX buffering timeout value */
3855 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE,
3856 /* pdev level stats update period in ms */
3857 WMI_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
3858 /* vdev level stats update period in ms */
3859 WMI_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
3860 /* peer level stats update period in ms */
3861 WMI_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
3862 /* beacon filter status update period */
3863 WMI_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
3864 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3865 WMI_PDEV_PARAM_PMF_QOS,
3866 /* Access category on which ARP frames are sent */
3867 WMI_PDEV_PARAM_ARP_AC_OVERRIDE,
3868 /* DCS configuration */
3869 WMI_PDEV_PARAM_DCS,
3870 /* Enable/Disable ANI on target */
3871 WMI_PDEV_PARAM_ANI_ENABLE,
3872 /* configure the ANI polling period */
3873 WMI_PDEV_PARAM_ANI_POLL_PERIOD,
3874 /* configure the ANI listening period */
3875 WMI_PDEV_PARAM_ANI_LISTEN_PERIOD,
3876 /* configure OFDM immunity level */
3877 WMI_PDEV_PARAM_ANI_OFDM_LEVEL,
3878 /* configure CCK immunity level */
3879 WMI_PDEV_PARAM_ANI_CCK_LEVEL,
3880 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3881 WMI_PDEV_PARAM_DYNTXCHAIN,
3882 /* Enable/Disable proxy STA */
3883 WMI_PDEV_PARAM_PROXY_STA,
3884 /* Enable/Disable low power state when all VDEVs are inactive/idle. */
3885 WMI_PDEV_PARAM_IDLE_PS_CONFIG,
3886 /* Enable/Disable power gating sleep */
3887 WMI_PDEV_PARAM_POWER_GATING_SLEEP,
3888};
3889
Bartosz Markowski226a3392013-09-26 17:47:16 +02003890enum wmi_10x_pdev_param {
3891 /* TX chian mask */
3892 WMI_10X_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
3893 /* RX chian mask */
3894 WMI_10X_PDEV_PARAM_RX_CHAIN_MASK,
3895 /* TX power limit for 2G Radio */
3896 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT2G,
3897 /* TX power limit for 5G Radio */
3898 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT5G,
3899 /* TX power scale */
3900 WMI_10X_PDEV_PARAM_TXPOWER_SCALE,
3901 /* Beacon generation mode . 0: host, 1: target */
3902 WMI_10X_PDEV_PARAM_BEACON_GEN_MODE,
3903 /* Beacon generation mode . 0: staggered 1: bursted */
3904 WMI_10X_PDEV_PARAM_BEACON_TX_MODE,
3905 /*
3906 * Resource manager off chan mode .
3907 * 0: turn off off chan mode. 1: turn on offchan mode
3908 */
3909 WMI_10X_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
3910 /*
3911 * Protection mode:
3912 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3913 */
3914 WMI_10X_PDEV_PARAM_PROTECTION_MODE,
3915 /* Dynamic bandwidth 0: disable 1: enable */
3916 WMI_10X_PDEV_PARAM_DYNAMIC_BW,
3917 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3918 WMI_10X_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
3919 /* aggregrate sw retry threshold. 0-disable*/
3920 WMI_10X_PDEV_PARAM_AGG_SW_RETRY_TH,
3921 /* Station kickout threshold (non of consecutive failures).0-disable */
3922 WMI_10X_PDEV_PARAM_STA_KICKOUT_TH,
3923 /* Aggerate size scaling configuration per AC */
3924 WMI_10X_PDEV_PARAM_AC_AGGRSIZE_SCALING,
3925 /* LTR enable */
3926 WMI_10X_PDEV_PARAM_LTR_ENABLE,
3927 /* LTR latency for BE, in us */
3928 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BE,
3929 /* LTR latency for BK, in us */
3930 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BK,
3931 /* LTR latency for VI, in us */
3932 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VI,
3933 /* LTR latency for VO, in us */
3934 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VO,
3935 /* LTR AC latency timeout, in ms */
3936 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
3937 /* LTR platform latency override, in us */
3938 WMI_10X_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
3939 /* LTR-RX override, in us */
3940 WMI_10X_PDEV_PARAM_LTR_RX_OVERRIDE,
3941 /* Tx activity timeout for LTR, in us */
3942 WMI_10X_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
3943 /* L1SS state machine enable */
3944 WMI_10X_PDEV_PARAM_L1SS_ENABLE,
3945 /* Deep sleep state machine enable */
3946 WMI_10X_PDEV_PARAM_DSLEEP_ENABLE,
3947 /* pdev level stats update period in ms */
3948 WMI_10X_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
3949 /* vdev level stats update period in ms */
3950 WMI_10X_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
3951 /* peer level stats update period in ms */
3952 WMI_10X_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
3953 /* beacon filter status update period */
3954 WMI_10X_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
3955 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3956 WMI_10X_PDEV_PARAM_PMF_QOS,
3957 /* Access category on which ARP and DHCP frames are sent */
3958 WMI_10X_PDEV_PARAM_ARPDHCP_AC_OVERRIDE,
3959 /* DCS configuration */
3960 WMI_10X_PDEV_PARAM_DCS,
3961 /* Enable/Disable ANI on target */
3962 WMI_10X_PDEV_PARAM_ANI_ENABLE,
3963 /* configure the ANI polling period */
3964 WMI_10X_PDEV_PARAM_ANI_POLL_PERIOD,
3965 /* configure the ANI listening period */
3966 WMI_10X_PDEV_PARAM_ANI_LISTEN_PERIOD,
3967 /* configure OFDM immunity level */
3968 WMI_10X_PDEV_PARAM_ANI_OFDM_LEVEL,
3969 /* configure CCK immunity level */
3970 WMI_10X_PDEV_PARAM_ANI_CCK_LEVEL,
3971 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3972 WMI_10X_PDEV_PARAM_DYNTXCHAIN,
3973 /* Enable/Disable Fast channel reset*/
3974 WMI_10X_PDEV_PARAM_FAST_CHANNEL_RESET,
3975 /* Set Bursting DUR */
3976 WMI_10X_PDEV_PARAM_BURST_DUR,
3977 /* Set Bursting Enable*/
3978 WMI_10X_PDEV_PARAM_BURST_ENABLE,
Michal Kazior24c88f72014-07-25 13:32:17 +02003979
3980 /* following are available as of firmware 10.2 */
3981 WMI_10X_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA,
3982 WMI_10X_PDEV_PARAM_IGMPMLD_OVERRIDE,
3983 WMI_10X_PDEV_PARAM_IGMPMLD_TID,
3984 WMI_10X_PDEV_PARAM_ANTENNA_GAIN,
3985 WMI_10X_PDEV_PARAM_RX_DECAP_MODE,
3986 WMI_10X_PDEV_PARAM_RX_FILTER,
3987 WMI_10X_PDEV_PARAM_SET_MCAST_TO_UCAST_TID,
3988 WMI_10X_PDEV_PARAM_PROXY_STA_MODE,
3989 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_MODE,
3990 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_BUFFER,
3991 WMI_10X_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER,
Peter Ohb43bf972014-12-02 13:06:53 +02003992 WMI_10X_PDEV_PARAM_PEER_STA_PS_STATECHG_ENABLE,
3993 WMI_10X_PDEV_PARAM_RTS_FIXED_RATE,
Maharaja Kennadyrajandb251d72018-07-18 19:04:20 +05303994 WMI_10X_PDEV_PARAM_CAL_PERIOD,
3995 WMI_10X_PDEV_PARAM_ATF_STRICT_SCH,
3996 WMI_10X_PDEV_PARAM_ATF_SCHED_DURATION,
3997 WMI_10X_PDEV_PARAM_SET_PROMISC_MODE_CMDID,
3998 WMI_10X_PDEV_PARAM_PDEV_RESET
Bartosz Markowski226a3392013-09-26 17:47:16 +02003999};
4000
Raja Manid86561f2015-06-22 20:10:14 +05304001enum wmi_10_4_pdev_param {
4002 WMI_10_4_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
4003 WMI_10_4_PDEV_PARAM_RX_CHAIN_MASK,
4004 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT2G,
4005 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT5G,
4006 WMI_10_4_PDEV_PARAM_TXPOWER_SCALE,
4007 WMI_10_4_PDEV_PARAM_BEACON_GEN_MODE,
4008 WMI_10_4_PDEV_PARAM_BEACON_TX_MODE,
4009 WMI_10_4_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
4010 WMI_10_4_PDEV_PARAM_PROTECTION_MODE,
4011 WMI_10_4_PDEV_PARAM_DYNAMIC_BW,
4012 WMI_10_4_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
4013 WMI_10_4_PDEV_PARAM_AGG_SW_RETRY_TH,
4014 WMI_10_4_PDEV_PARAM_STA_KICKOUT_TH,
4015 WMI_10_4_PDEV_PARAM_AC_AGGRSIZE_SCALING,
4016 WMI_10_4_PDEV_PARAM_LTR_ENABLE,
4017 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BE,
4018 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BK,
4019 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VI,
4020 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VO,
4021 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
4022 WMI_10_4_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
4023 WMI_10_4_PDEV_PARAM_LTR_RX_OVERRIDE,
4024 WMI_10_4_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
4025 WMI_10_4_PDEV_PARAM_L1SS_ENABLE,
4026 WMI_10_4_PDEV_PARAM_DSLEEP_ENABLE,
4027 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_FLUSH,
4028 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_WATERMARK,
4029 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_EN,
4030 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE,
4031 WMI_10_4_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
4032 WMI_10_4_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
4033 WMI_10_4_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
4034 WMI_10_4_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
4035 WMI_10_4_PDEV_PARAM_PMF_QOS,
4036 WMI_10_4_PDEV_PARAM_ARP_AC_OVERRIDE,
4037 WMI_10_4_PDEV_PARAM_DCS,
4038 WMI_10_4_PDEV_PARAM_ANI_ENABLE,
4039 WMI_10_4_PDEV_PARAM_ANI_POLL_PERIOD,
4040 WMI_10_4_PDEV_PARAM_ANI_LISTEN_PERIOD,
4041 WMI_10_4_PDEV_PARAM_ANI_OFDM_LEVEL,
4042 WMI_10_4_PDEV_PARAM_ANI_CCK_LEVEL,
4043 WMI_10_4_PDEV_PARAM_DYNTXCHAIN,
4044 WMI_10_4_PDEV_PARAM_PROXY_STA,
4045 WMI_10_4_PDEV_PARAM_IDLE_PS_CONFIG,
4046 WMI_10_4_PDEV_PARAM_POWER_GATING_SLEEP,
4047 WMI_10_4_PDEV_PARAM_AGGR_BURST,
4048 WMI_10_4_PDEV_PARAM_RX_DECAP_MODE,
4049 WMI_10_4_PDEV_PARAM_FAST_CHANNEL_RESET,
4050 WMI_10_4_PDEV_PARAM_BURST_DUR,
4051 WMI_10_4_PDEV_PARAM_BURST_ENABLE,
4052 WMI_10_4_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA,
4053 WMI_10_4_PDEV_PARAM_IGMPMLD_OVERRIDE,
4054 WMI_10_4_PDEV_PARAM_IGMPMLD_TID,
4055 WMI_10_4_PDEV_PARAM_ANTENNA_GAIN,
4056 WMI_10_4_PDEV_PARAM_RX_FILTER,
4057 WMI_10_4_PDEV_SET_MCAST_TO_UCAST_TID,
4058 WMI_10_4_PDEV_PARAM_PROXY_STA_MODE,
4059 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_MODE,
4060 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_BUFFER,
4061 WMI_10_4_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER,
4062 WMI_10_4_PDEV_PEER_STA_PS_STATECHG_ENABLE,
4063 WMI_10_4_PDEV_PARAM_IGMPMLD_AC_OVERRIDE,
4064 WMI_10_4_PDEV_PARAM_BLOCK_INTERBSS,
4065 WMI_10_4_PDEV_PARAM_SET_DISABLE_RESET_CMDID,
4066 WMI_10_4_PDEV_PARAM_SET_MSDU_TTL_CMDID,
4067 WMI_10_4_PDEV_PARAM_SET_PPDU_DURATION_CMDID,
4068 WMI_10_4_PDEV_PARAM_TXBF_SOUND_PERIOD_CMDID,
4069 WMI_10_4_PDEV_PARAM_SET_PROMISC_MODE_CMDID,
4070 WMI_10_4_PDEV_PARAM_SET_BURST_MODE_CMDID,
4071 WMI_10_4_PDEV_PARAM_EN_STATS,
4072 WMI_10_4_PDEV_PARAM_MU_GROUP_POLICY,
4073 WMI_10_4_PDEV_PARAM_NOISE_DETECTION,
4074 WMI_10_4_PDEV_PARAM_NOISE_THRESHOLD,
4075 WMI_10_4_PDEV_PARAM_DPD_ENABLE,
4076 WMI_10_4_PDEV_PARAM_SET_MCAST_BCAST_ECHO,
4077 WMI_10_4_PDEV_PARAM_ATF_STRICT_SCH,
4078 WMI_10_4_PDEV_PARAM_ATF_SCHED_DURATION,
4079 WMI_10_4_PDEV_PARAM_ANT_PLZN,
4080 WMI_10_4_PDEV_PARAM_MGMT_RETRY_LIMIT,
4081 WMI_10_4_PDEV_PARAM_SENSITIVITY_LEVEL,
4082 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_2G,
4083 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_5G,
4084 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMSDU,
4085 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMPDU,
4086 WMI_10_4_PDEV_PARAM_CCA_THRESHOLD,
4087 WMI_10_4_PDEV_PARAM_RTS_FIXED_RATE,
4088 WMI_10_4_PDEV_PARAM_CAL_PERIOD,
4089 WMI_10_4_PDEV_PARAM_PDEV_RESET,
4090 WMI_10_4_PDEV_PARAM_WAPI_MBSSID_OFFSET,
4091 WMI_10_4_PDEV_PARAM_ARP_SRCADDR,
4092 WMI_10_4_PDEV_PARAM_ARP_DSTADDR,
Vasanthakumar Thiagarajan52e8ce12015-10-29 19:11:34 +05304093 WMI_10_4_PDEV_PARAM_TXPOWER_DECR_DB,
4094 WMI_10_4_PDEV_PARAM_RX_BATCHMODE,
4095 WMI_10_4_PDEV_PARAM_PACKET_AGGR_DELAY,
4096 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCH,
4097 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCALING_FACTOR,
4098 WMI_10_4_PDEV_PARAM_CUST_TXPOWER_SCALE,
Rajkumar Manoharan39136242016-05-27 20:15:59 +05304099 WMI_10_4_PDEV_PARAM_ATF_DYNAMIC_ENABLE,
4100 WMI_10_4_PDEV_PARAM_ATF_SSID_GROUP_POLICY,
4101 WMI_10_4_PDEV_PARAM_ENABLE_BTCOEX,
Raja Manid86561f2015-06-22 20:10:14 +05304102};
4103
Kalle Valo5e3dd152013-06-12 20:52:10 +03004104struct wmi_pdev_set_param_cmd {
4105 __le32 param_id;
4106 __le32 param_value;
4107} __packed;
4108
Christian Lamparter05e7ba22019-02-08 14:55:28 +02004109struct wmi_pdev_set_base_macaddr_cmd {
4110 struct wmi_mac_addr mac_addr;
4111} __packed;
4112
Peter Oha7bd3e92014-12-02 13:07:14 +02004113/* valid period is 1 ~ 60000ms, unit in millisecond */
4114#define WMI_PDEV_PARAM_CAL_PERIOD_MAX 60000
4115
Kalle Valo5e3dd152013-06-12 20:52:10 +03004116struct wmi_pdev_get_tpc_config_cmd {
4117 /* parameter */
4118 __le32 param;
4119} __packed;
4120
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03004121#define WMI_TPC_CONFIG_PARAM 1
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +02004122#define WMI_TPC_FINAL_RATE_MAX 240
Kalle Valo5e3dd152013-06-12 20:52:10 +03004123#define WMI_TPC_TX_N_CHAIN 4
Tamizh Chelvam4b190672018-04-25 11:36:44 +03004124#define WMI_TPC_RATE_MAX (WMI_TPC_TX_N_CHAIN * 65)
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03004125#define WMI_TPC_PREAM_TABLE_MAX 10
4126#define WMI_TPC_FLAG 3
4127#define WMI_TPC_BUF_SIZE 10
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +02004128#define WMI_TPC_BEAMFORMING 2
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03004129
4130enum wmi_tpc_table_type {
4131 WMI_TPC_TABLE_TYPE_CDD = 0,
4132 WMI_TPC_TABLE_TYPE_STBC = 1,
4133 WMI_TPC_TABLE_TYPE_TXBF = 2,
4134};
Kalle Valo5e3dd152013-06-12 20:52:10 +03004135
4136enum wmi_tpc_config_event_flag {
4137 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1,
4138 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2,
4139 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4,
4140};
4141
4142struct wmi_pdev_tpc_config_event {
4143 __le32 reg_domain;
4144 __le32 chan_freq;
4145 __le32 phy_mode;
4146 __le32 twice_antenna_reduction;
4147 __le32 twice_max_rd_power;
Kalle Valo3b8fc902015-10-05 17:56:37 +03004148 a_sle32 twice_antenna_gain;
Kalle Valo5e3dd152013-06-12 20:52:10 +03004149 __le32 power_limit;
4150 __le32 rate_max;
4151 __le32 num_tx_chain;
4152 __le32 ctl;
4153 __le32 flags;
4154 s8 max_reg_allow_pow[WMI_TPC_TX_N_CHAIN];
4155 s8 max_reg_allow_pow_agcdd[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4156 s8 max_reg_allow_pow_agstbc[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4157 s8 max_reg_allow_pow_agtxbf[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4158 u8 rates_array[WMI_TPC_RATE_MAX];
4159} __packed;
4160
4161/* Transmit power scale factor. */
4162enum wmi_tp_scale {
4163 WMI_TP_SCALE_MAX = 0, /* no scaling (default) */
4164 WMI_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */
4165 WMI_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */
4166 WMI_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */
4167 WMI_TP_SCALE_MIN = 4, /* min, but still on */
4168 WMI_TP_SCALE_SIZE = 5, /* max num of enum */
4169};
4170
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +02004171struct wmi_pdev_tpc_final_table_event {
4172 __le32 reg_domain;
4173 __le32 chan_freq;
4174 __le32 phy_mode;
4175 __le32 twice_antenna_reduction;
4176 __le32 twice_max_rd_power;
4177 a_sle32 twice_antenna_gain;
4178 __le32 power_limit;
4179 __le32 rate_max;
4180 __le32 num_tx_chain;
4181 __le32 ctl;
4182 __le32 flags;
4183 s8 max_reg_allow_pow[WMI_TPC_TX_N_CHAIN];
4184 s8 max_reg_allow_pow_agcdd[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4185 s8 max_reg_allow_pow_agstbc[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4186 s8 max_reg_allow_pow_agtxbf[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
4187 u8 rates_array[WMI_TPC_FINAL_RATE_MAX];
4188 u8 ctl_power_table[WMI_TPC_BEAMFORMING][WMI_TPC_TX_N_CHAIN]
4189 [WMI_TPC_TX_N_CHAIN];
4190} __packed;
4191
4192struct wmi_pdev_get_tpc_table_cmd {
4193 __le32 param;
4194} __packed;
4195
4196enum wmi_tpc_pream_2ghz {
4197 WMI_TPC_PREAM_2GHZ_CCK = 0,
4198 WMI_TPC_PREAM_2GHZ_OFDM,
4199 WMI_TPC_PREAM_2GHZ_HT20,
4200 WMI_TPC_PREAM_2GHZ_HT40,
4201 WMI_TPC_PREAM_2GHZ_VHT20,
4202 WMI_TPC_PREAM_2GHZ_VHT40,
4203 WMI_TPC_PREAM_2GHZ_VHT80,
4204};
4205
4206enum wmi_tpc_pream_5ghz {
4207 WMI_TPC_PREAM_5GHZ_OFDM = 1,
4208 WMI_TPC_PREAM_5GHZ_HT20,
4209 WMI_TPC_PREAM_5GHZ_HT40,
4210 WMI_TPC_PREAM_5GHZ_VHT20,
4211 WMI_TPC_PREAM_5GHZ_VHT40,
4212 WMI_TPC_PREAM_5GHZ_VHT80,
4213 WMI_TPC_PREAM_5GHZ_HTCUP,
4214};
4215
Maharaja Kennadyrajand70c0d42018-09-18 12:04:27 +05304216#define WMI_PEER_PS_STATE_DISABLED 2
4217
4218struct wmi_peer_sta_ps_state_chg_event {
4219 struct wmi_mac_addr peer_macaddr;
4220 __le32 peer_ps_state;
4221} __packed;
4222
Kalle Valo5e3dd152013-06-12 20:52:10 +03004223struct wmi_pdev_chanlist_update_event {
4224 /* number of channels */
4225 __le32 num_chan;
4226 /* array of channels */
4227 struct wmi_channel channel_list[1];
4228} __packed;
4229
4230#define WMI_MAX_DEBUG_MESG (sizeof(u32) * 32)
4231
4232struct wmi_debug_mesg_event {
4233 /* message buffer, NULL terminated */
4234 char bufp[WMI_MAX_DEBUG_MESG];
4235} __packed;
4236
4237enum {
4238 /* P2P device */
4239 VDEV_SUBTYPE_P2PDEV = 0,
4240 /* P2P client */
4241 VDEV_SUBTYPE_P2PCLI,
4242 /* P2P GO */
4243 VDEV_SUBTYPE_P2PGO,
4244 /* BT3.0 HS */
4245 VDEV_SUBTYPE_BT,
4246};
4247
4248struct wmi_pdev_set_channel_cmd {
4249 /* idnore power , only use flags , mode and freq */
4250 struct wmi_channel chan;
4251} __packed;
4252
Rajkumar Manoharan90174452014-10-03 08:02:33 +03004253struct wmi_pdev_pktlog_enable_cmd {
4254 __le32 ev_bitmap;
4255} __packed;
4256
Kalle Valo5e3dd152013-06-12 20:52:10 +03004257/* Customize the DSCP (bit) to TID (0-7) mapping for QOS */
4258#define WMI_DSCP_MAP_MAX (64)
4259struct wmi_pdev_set_dscp_tid_map_cmd {
4260 /* map indicating DSCP to TID conversion */
4261 __le32 dscp_to_tid_map[WMI_DSCP_MAP_MAX];
4262} __packed;
4263
4264enum mcast_bcast_rate_id {
4265 WMI_SET_MCAST_RATE,
4266 WMI_SET_BCAST_RATE
4267};
4268
4269struct mcast_bcast_rate {
4270 enum mcast_bcast_rate_id rate_id;
4271 __le32 rate;
4272} __packed;
4273
4274struct wmi_wmm_params {
4275 __le32 cwmin;
4276 __le32 cwmax;
4277 __le32 aifs;
4278 __le32 txop;
4279 __le32 acm;
4280 __le32 no_ack;
4281} __packed;
4282
4283struct wmi_pdev_set_wmm_params {
4284 struct wmi_wmm_params ac_be;
4285 struct wmi_wmm_params ac_bk;
4286 struct wmi_wmm_params ac_vi;
4287 struct wmi_wmm_params ac_vo;
4288} __packed;
4289
4290struct wmi_wmm_params_arg {
4291 u32 cwmin;
4292 u32 cwmax;
4293 u32 aifs;
4294 u32 txop;
4295 u32 acm;
4296 u32 no_ack;
4297};
4298
Michal Kazior5e752e42015-01-19 09:53:41 +01004299struct wmi_wmm_params_all_arg {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004300 struct wmi_wmm_params_arg ac_be;
4301 struct wmi_wmm_params_arg ac_bk;
4302 struct wmi_wmm_params_arg ac_vi;
4303 struct wmi_wmm_params_arg ac_vo;
4304};
4305
Michal Kaziorb91251f2015-01-24 12:14:49 +02004306struct wmi_pdev_stats_tx {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004307 /* Num HTT cookies queued to dispatch list */
4308 __le32 comp_queued;
4309
4310 /* Num HTT cookies dispatched */
4311 __le32 comp_delivered;
4312
4313 /* Num MSDU queued to WAL */
4314 __le32 msdu_enqued;
4315
4316 /* Num MPDU queue to WAL */
4317 __le32 mpdu_enqued;
4318
4319 /* Num MSDUs dropped by WMM limit */
4320 __le32 wmm_drop;
4321
4322 /* Num Local frames queued */
4323 __le32 local_enqued;
4324
4325 /* Num Local frames done */
4326 __le32 local_freed;
4327
4328 /* Num queued to HW */
4329 __le32 hw_queued;
4330
4331 /* Num PPDU reaped from HW */
4332 __le32 hw_reaped;
4333
4334 /* Num underruns */
4335 __le32 underrun;
4336
4337 /* Num PPDUs cleaned up in TX abort */
4338 __le32 tx_abort;
4339
4340 /* Num MPDUs requed by SW */
4341 __le32 mpdus_requed;
4342
4343 /* excessive retries */
4344 __le32 tx_ko;
4345
4346 /* data hw rate code */
4347 __le32 data_rc;
4348
4349 /* Scheduler self triggers */
4350 __le32 self_triggers;
4351
4352 /* frames dropped due to excessive sw retries */
4353 __le32 sw_retry_failure;
4354
4355 /* illegal rate phy errors */
4356 __le32 illgl_rate_phy_err;
4357
Joe Perchese13dbea2016-09-26 21:56:21 +03004358 /* wal pdev continuous xretry */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004359 __le32 pdev_cont_xretry;
4360
4361 /* wal pdev continous xretry */
4362 __le32 pdev_tx_timeout;
4363
4364 /* wal pdev resets */
4365 __le32 pdev_resets;
4366
Bartosz Markowski34d714e2014-03-28 14:35:16 +02004367 /* frames dropped due to non-availability of stateless TIDs */
4368 __le32 stateless_tid_alloc_failure;
4369
Kalle Valo5e3dd152013-06-12 20:52:10 +03004370 __le32 phy_underrun;
4371
4372 /* MPDU is more than txop limit */
4373 __le32 txop_ovf;
4374} __packed;
4375
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02004376struct wmi_10_4_pdev_stats_tx {
4377 /* Num HTT cookies queued to dispatch list */
4378 __le32 comp_queued;
4379
4380 /* Num HTT cookies dispatched */
4381 __le32 comp_delivered;
4382
4383 /* Num MSDU queued to WAL */
4384 __le32 msdu_enqued;
4385
4386 /* Num MPDU queue to WAL */
4387 __le32 mpdu_enqued;
4388
4389 /* Num MSDUs dropped by WMM limit */
4390 __le32 wmm_drop;
4391
4392 /* Num Local frames queued */
4393 __le32 local_enqued;
4394
4395 /* Num Local frames done */
4396 __le32 local_freed;
4397
4398 /* Num queued to HW */
4399 __le32 hw_queued;
4400
4401 /* Num PPDU reaped from HW */
4402 __le32 hw_reaped;
4403
4404 /* Num underruns */
4405 __le32 underrun;
4406
4407 /* HW Paused. */
4408 __le32 hw_paused;
4409
4410 /* Num PPDUs cleaned up in TX abort */
4411 __le32 tx_abort;
4412
4413 /* Num MPDUs requed by SW */
4414 __le32 mpdus_requed;
4415
4416 /* excessive retries */
4417 __le32 tx_ko;
4418
4419 /* data hw rate code */
4420 __le32 data_rc;
4421
4422 /* Scheduler self triggers */
4423 __le32 self_triggers;
4424
4425 /* frames dropped due to excessive sw retries */
4426 __le32 sw_retry_failure;
4427
4428 /* illegal rate phy errors */
4429 __le32 illgl_rate_phy_err;
4430
4431 /* wal pdev continuous xretry */
4432 __le32 pdev_cont_xretry;
4433
4434 /* wal pdev tx timeouts */
4435 __le32 pdev_tx_timeout;
4436
4437 /* wal pdev resets */
4438 __le32 pdev_resets;
4439
4440 /* frames dropped due to non-availability of stateless TIDs */
4441 __le32 stateless_tid_alloc_failure;
4442
4443 __le32 phy_underrun;
4444
4445 /* MPDU is more than txop limit */
4446 __le32 txop_ovf;
4447
4448 /* Number of Sequences posted */
4449 __le32 seq_posted;
4450
4451 /* Number of Sequences failed queueing */
4452 __le32 seq_failed_queueing;
4453
4454 /* Number of Sequences completed */
4455 __le32 seq_completed;
4456
4457 /* Number of Sequences restarted */
4458 __le32 seq_restarted;
4459
4460 /* Number of MU Sequences posted */
4461 __le32 mu_seq_posted;
4462
4463 /* Num MPDUs flushed by SW, HWPAUSED,SW TXABORT(Reset,channel change) */
4464 __le32 mpdus_sw_flush;
4465
4466 /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
4467 __le32 mpdus_hw_filter;
4468
4469 /* Num MPDUs truncated by PDG
4470 * (TXOP, TBTT, PPDU_duration based on rate, dyn_bw)
4471 */
4472 __le32 mpdus_truncated;
4473
4474 /* Num MPDUs that was tried but didn't receive ACK or BA */
4475 __le32 mpdus_ack_failed;
4476
4477 /* Num MPDUs that was dropped due to expiry. */
4478 __le32 mpdus_expired;
4479} __packed;
4480
Michal Kaziorb91251f2015-01-24 12:14:49 +02004481struct wmi_pdev_stats_rx {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004482 /* Cnts any change in ring routing mid-ppdu */
4483 __le32 mid_ppdu_route_change;
4484
4485 /* Total number of statuses processed */
4486 __le32 status_rcvd;
4487
4488 /* Extra frags on rings 0-3 */
4489 __le32 r0_frags;
4490 __le32 r1_frags;
4491 __le32 r2_frags;
4492 __le32 r3_frags;
4493
4494 /* MSDUs / MPDUs delivered to HTT */
4495 __le32 htt_msdus;
4496 __le32 htt_mpdus;
4497
4498 /* MSDUs / MPDUs delivered to local stack */
4499 __le32 loc_msdus;
4500 __le32 loc_mpdus;
4501
4502 /* AMSDUs that have more MSDUs than the status ring size */
4503 __le32 oversize_amsdu;
4504
4505 /* Number of PHY errors */
4506 __le32 phy_errs;
4507
4508 /* Number of PHY errors drops */
4509 __le32 phy_err_drop;
4510
4511 /* Number of mpdu errors - FCS, MIC, ENC etc. */
4512 __le32 mpdu_errs;
4513} __packed;
4514
Michal Kaziorb91251f2015-01-24 12:14:49 +02004515struct wmi_pdev_stats_peer {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004516 /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
4517 __le32 dummy;
4518} __packed;
4519
Kalle Valo5e3dd152013-06-12 20:52:10 +03004520enum wmi_stats_id {
Michal Kazioreed55412015-02-15 16:50:41 +02004521 WMI_STAT_PEER = BIT(0),
4522 WMI_STAT_AP = BIT(1),
4523 WMI_STAT_PDEV = BIT(2),
4524 WMI_STAT_VDEV = BIT(3),
4525 WMI_STAT_BCNFLT = BIT(4),
4526 WMI_STAT_VDEV_RATE = BIT(5),
Kalle Valo5e3dd152013-06-12 20:52:10 +03004527};
4528
Mohammed Shafi Shajakhanf9575792016-03-16 18:13:34 +05304529enum wmi_10_4_stats_id {
4530 WMI_10_4_STAT_PEER = BIT(0),
4531 WMI_10_4_STAT_AP = BIT(1),
4532 WMI_10_4_STAT_INST = BIT(2),
4533 WMI_10_4_STAT_PEER_EXTD = BIT(3),
Rajkumar Manoharan1b3fdb52018-03-28 12:40:24 +03004534 WMI_10_4_STAT_VDEV_EXTD = BIT(4),
Mohammed Shafi Shajakhanf9575792016-03-16 18:13:34 +05304535};
4536
Ben Greeardb9cdda2014-03-28 14:35:15 +02004537struct wlan_inst_rssi_args {
4538 __le16 cfg_retry_count;
4539 __le16 retry_count;
4540};
4541
Kalle Valo5e3dd152013-06-12 20:52:10 +03004542struct wmi_request_stats_cmd {
4543 __le32 stats_id;
4544
Ben Greeardb9cdda2014-03-28 14:35:15 +02004545 __le32 vdev_id;
4546
4547 /* peer MAC address */
4548 struct wmi_mac_addr peer_macaddr;
4549
4550 /* Instantaneous RSSI arguments */
4551 struct wlan_inst_rssi_args inst_rssi_args;
Kalle Valo5e3dd152013-06-12 20:52:10 +03004552} __packed;
4553
4554/* Suspend option */
4555enum {
4556 /* suspend */
4557 WMI_PDEV_SUSPEND,
4558
4559 /* suspend and disable all interrupts */
4560 WMI_PDEV_SUSPEND_AND_DISABLE_INTR,
4561};
4562
4563struct wmi_pdev_suspend_cmd {
4564 /* suspend option sent to target */
4565 __le32 suspend_opt;
4566} __packed;
4567
4568struct wmi_stats_event {
Michal Kazioreed55412015-02-15 16:50:41 +02004569 __le32 stats_id; /* WMI_STAT_ */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004570 /*
4571 * number of pdev stats event structures
4572 * (wmi_pdev_stats) 0 or 1
4573 */
4574 __le32 num_pdev_stats;
4575 /*
4576 * number of vdev stats event structures
4577 * (wmi_vdev_stats) 0 or max vdevs
4578 */
4579 __le32 num_vdev_stats;
4580 /*
4581 * number of peer stats event structures
4582 * (wmi_peer_stats) 0 or max peers
4583 */
4584 __le32 num_peer_stats;
4585 __le32 num_bcnflt_stats;
4586 /*
4587 * followed by
4588 * num_pdev_stats * size of(struct wmi_pdev_stats)
4589 * num_vdev_stats * size of(struct wmi_vdev_stats)
4590 * num_peer_stats * size of(struct wmi_peer_stats)
4591 *
4592 * By having a zero sized array, the pointer to data area
4593 * becomes available without increasing the struct size
4594 */
4595 u8 data[0];
4596} __packed;
4597
Michal Kazior20de2222015-01-24 12:14:49 +02004598struct wmi_10_2_stats_event {
4599 __le32 stats_id; /* %WMI_REQUEST_ */
4600 __le32 num_pdev_stats;
4601 __le32 num_pdev_ext_stats;
4602 __le32 num_vdev_stats;
4603 __le32 num_peer_stats;
4604 __le32 num_bcnflt_stats;
4605 u8 data[0];
4606} __packed;
4607
Kalle Valo5e3dd152013-06-12 20:52:10 +03004608/*
4609 * PDEV statistics
4610 * TODO: add all PDEV stats here
4611 */
Michal Kaziorb91251f2015-01-24 12:14:49 +02004612struct wmi_pdev_stats_base {
4613 __le32 chan_nf;
Ben Greear15138fd2016-09-26 21:56:26 +03004614 __le32 tx_frame_count; /* Cycles spent transmitting frames */
4615 __le32 rx_frame_count; /* Cycles spent receiving frames */
4616 __le32 rx_clear_count; /* Total channel busy time, evidently */
4617 __le32 cycle_count; /* Total on-channel time */
Michal Kaziorb91251f2015-01-24 12:14:49 +02004618 __le32 phy_err_count;
4619 __le32 chan_tx_pwr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03004620} __packed;
4621
Michal Kaziorb91251f2015-01-24 12:14:49 +02004622struct wmi_pdev_stats {
4623 struct wmi_pdev_stats_base base;
4624 struct wmi_pdev_stats_tx tx;
4625 struct wmi_pdev_stats_rx rx;
4626 struct wmi_pdev_stats_peer peer;
4627} __packed;
4628
4629struct wmi_pdev_stats_extra {
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +02004630 __le32 ack_rx_bad;
4631 __le32 rts_bad;
4632 __le32 rts_good;
4633 __le32 fcs_bad;
4634 __le32 no_beacons;
4635 __le32 mib_int_count;
4636} __packed;
4637
Michal Kaziorb91251f2015-01-24 12:14:49 +02004638struct wmi_10x_pdev_stats {
4639 struct wmi_pdev_stats_base base;
4640 struct wmi_pdev_stats_tx tx;
4641 struct wmi_pdev_stats_rx rx;
4642 struct wmi_pdev_stats_peer peer;
4643 struct wmi_pdev_stats_extra extra;
4644} __packed;
4645
Michal Kazior20de2222015-01-24 12:14:49 +02004646struct wmi_pdev_stats_mem {
4647 __le32 dram_free;
4648 __le32 iram_free;
4649} __packed;
4650
4651struct wmi_10_2_pdev_stats {
4652 struct wmi_pdev_stats_base base;
4653 struct wmi_pdev_stats_tx tx;
4654 __le32 mc_drop;
4655 struct wmi_pdev_stats_rx rx;
4656 __le32 pdev_rx_timeout;
4657 struct wmi_pdev_stats_mem mem;
4658 struct wmi_pdev_stats_peer peer;
4659 struct wmi_pdev_stats_extra extra;
4660} __packed;
4661
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02004662struct wmi_10_4_pdev_stats {
4663 struct wmi_pdev_stats_base base;
4664 struct wmi_10_4_pdev_stats_tx tx;
4665 struct wmi_pdev_stats_rx rx;
4666 __le32 rx_ovfl_errs;
4667 struct wmi_pdev_stats_mem mem;
4668 __le32 sram_free_size;
4669 struct wmi_pdev_stats_extra extra;
4670} __packed;
4671
Kalle Valo5e3dd152013-06-12 20:52:10 +03004672/*
4673 * VDEV statistics
Kalle Valo5e3dd152013-06-12 20:52:10 +03004674 */
Rajkumar Manoharan1b3fdb52018-03-28 12:40:24 +03004675
4676#define WMI_VDEV_STATS_FTM_COUNT_VALID BIT(31)
4677#define WMI_VDEV_STATS_FTM_COUNT_LSB 0
4678#define WMI_VDEV_STATS_FTM_COUNT_MASK 0x7fffffff
4679
Kalle Valo5e3dd152013-06-12 20:52:10 +03004680struct wmi_vdev_stats {
4681 __le32 vdev_id;
4682} __packed;
4683
Rajkumar Manoharan1b3fdb52018-03-28 12:40:24 +03004684struct wmi_vdev_stats_extd {
4685 __le32 vdev_id;
4686 __le32 ppdu_aggr_cnt;
4687 __le32 ppdu_noack;
4688 __le32 mpdu_queued;
4689 __le32 ppdu_nonaggr_cnt;
4690 __le32 mpdu_sw_requeued;
4691 __le32 mpdu_suc_retry;
4692 __le32 mpdu_suc_multitry;
4693 __le32 mpdu_fail_retry;
4694 __le32 tx_ftm_suc;
4695 __le32 tx_ftm_suc_retry;
4696 __le32 tx_ftm_fail;
4697 __le32 rx_ftmr_cnt;
4698 __le32 rx_ftmr_dup_cnt;
4699 __le32 rx_iftmr_cnt;
4700 __le32 rx_iftmr_dup_cnt;
4701 __le32 reserved[6];
4702} __packed;
4703
Kalle Valo5e3dd152013-06-12 20:52:10 +03004704/*
4705 * peer statistics.
4706 * TODO: add more stats
4707 */
Michal Kaziord15fb522014-09-25 12:33:47 +02004708struct wmi_peer_stats {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004709 struct wmi_mac_addr peer_macaddr;
4710 __le32 peer_rssi;
4711 __le32 peer_tx_rate;
4712} __packed;
4713
Michal Kaziord15fb522014-09-25 12:33:47 +02004714struct wmi_10x_peer_stats {
4715 struct wmi_peer_stats old;
Ben Greear23c3aae2014-03-28 14:35:15 +02004716 __le32 peer_rx_rate;
4717} __packed;
4718
Michal Kazior20de2222015-01-24 12:14:49 +02004719struct wmi_10_2_peer_stats {
4720 struct wmi_peer_stats old;
4721 __le32 peer_rx_rate;
4722 __le32 current_per;
4723 __le32 retries;
4724 __le32 tx_rate_count;
4725 __le32 max_4ms_frame_len;
4726 __le32 total_sub_frames;
4727 __le32 tx_bytes;
4728 __le32 num_pkt_loss_overflow[4];
4729 __le32 num_pkt_loss_excess_retry[4];
4730} __packed;
4731
4732struct wmi_10_2_4_peer_stats {
4733 struct wmi_10_2_peer_stats common;
Mohammed Shafi Shajakhan774e6562016-01-13 21:16:29 +05304734 __le32 peer_rssi_changed;
Michal Kazior20de2222015-01-24 12:14:49 +02004735} __packed;
4736
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +05304737struct wmi_10_2_4_ext_peer_stats {
4738 struct wmi_10_2_peer_stats common;
4739 __le32 peer_rssi_changed;
4740 __le32 rx_duration;
4741} __packed;
4742
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02004743struct wmi_10_4_peer_stats {
4744 struct wmi_mac_addr peer_macaddr;
4745 __le32 peer_rssi;
4746 __le32 peer_rssi_seq_num;
4747 __le32 peer_tx_rate;
4748 __le32 peer_rx_rate;
4749 __le32 current_per;
4750 __le32 retries;
4751 __le32 tx_rate_count;
4752 __le32 max_4ms_frame_len;
4753 __le32 total_sub_frames;
4754 __le32 tx_bytes;
4755 __le32 num_pkt_loss_overflow[4];
4756 __le32 num_pkt_loss_excess_retry[4];
4757 __le32 peer_rssi_changed;
4758} __packed;
4759
Mohammed Shafi Shajakhanf9575792016-03-16 18:13:34 +05304760struct wmi_10_4_peer_extd_stats {
Mohammed Shafi Shajakhanf9575792016-03-16 18:13:34 +05304761 struct wmi_mac_addr peer_macaddr;
4762 __le32 inactive_time;
4763 __le32 peer_chain_rssi;
4764 __le32 rx_duration;
4765 __le32 reserved[10];
4766} __packed;
4767
Mohammed Shafi Shajakhan4a49ae92016-06-30 15:23:47 +03004768struct wmi_10_4_bss_bcn_stats {
4769 __le32 vdev_id;
4770 __le32 bss_bcns_dropped;
4771 __le32 bss_bcn_delivered;
4772} __packed;
4773
4774struct wmi_10_4_bss_bcn_filter_stats {
4775 __le32 bcns_dropped;
4776 __le32 bcns_delivered;
4777 __le32 active_filters;
4778 struct wmi_10_4_bss_bcn_stats bss_stats;
4779} __packed;
4780
Michal Kazior20de2222015-01-24 12:14:49 +02004781struct wmi_10_2_pdev_ext_stats {
4782 __le32 rx_rssi_comb;
4783 __le32 rx_rssi[4];
4784 __le32 rx_mcs[10];
4785 __le32 tx_mcs[10];
4786 __le32 ack_rssi;
4787} __packed;
4788
Kalle Valo5e3dd152013-06-12 20:52:10 +03004789struct wmi_vdev_create_cmd {
4790 __le32 vdev_id;
4791 __le32 vdev_type;
4792 __le32 vdev_subtype;
4793 struct wmi_mac_addr vdev_macaddr;
4794} __packed;
4795
4796enum wmi_vdev_type {
4797 WMI_VDEV_TYPE_AP = 1,
4798 WMI_VDEV_TYPE_STA = 2,
4799 WMI_VDEV_TYPE_IBSS = 3,
4800 WMI_VDEV_TYPE_MONITOR = 4,
4801};
4802
4803enum wmi_vdev_subtype {
Peter Oh6e4de1a2016-01-28 13:54:10 -08004804 WMI_VDEV_SUBTYPE_NONE,
4805 WMI_VDEV_SUBTYPE_P2P_DEVICE,
4806 WMI_VDEV_SUBTYPE_P2P_CLIENT,
4807 WMI_VDEV_SUBTYPE_P2P_GO,
4808 WMI_VDEV_SUBTYPE_PROXY_STA,
4809 WMI_VDEV_SUBTYPE_MESH_11S,
4810 WMI_VDEV_SUBTYPE_MESH_NON_11S,
4811};
4812
4813enum wmi_vdev_subtype_legacy {
4814 WMI_VDEV_SUBTYPE_LEGACY_NONE = 0,
4815 WMI_VDEV_SUBTYPE_LEGACY_P2P_DEV = 1,
4816 WMI_VDEV_SUBTYPE_LEGACY_P2P_CLI = 2,
4817 WMI_VDEV_SUBTYPE_LEGACY_P2P_GO = 3,
4818 WMI_VDEV_SUBTYPE_LEGACY_PROXY_STA = 4,
4819};
4820
4821enum wmi_vdev_subtype_10_2_4 {
4822 WMI_VDEV_SUBTYPE_10_2_4_NONE = 0,
4823 WMI_VDEV_SUBTYPE_10_2_4_P2P_DEV = 1,
4824 WMI_VDEV_SUBTYPE_10_2_4_P2P_CLI = 2,
4825 WMI_VDEV_SUBTYPE_10_2_4_P2P_GO = 3,
4826 WMI_VDEV_SUBTYPE_10_2_4_PROXY_STA = 4,
4827 WMI_VDEV_SUBTYPE_10_2_4_MESH_11S = 5,
4828};
4829
4830enum wmi_vdev_subtype_10_4 {
4831 WMI_VDEV_SUBTYPE_10_4_NONE = 0,
4832 WMI_VDEV_SUBTYPE_10_4_P2P_DEV = 1,
4833 WMI_VDEV_SUBTYPE_10_4_P2P_CLI = 2,
4834 WMI_VDEV_SUBTYPE_10_4_P2P_GO = 3,
4835 WMI_VDEV_SUBTYPE_10_4_PROXY_STA = 4,
4836 WMI_VDEV_SUBTYPE_10_4_MESH_NON_11S = 5,
4837 WMI_VDEV_SUBTYPE_10_4_MESH_11S = 6,
Kalle Valo5e3dd152013-06-12 20:52:10 +03004838};
4839
4840/* values for vdev_subtype */
4841
4842/* values for vdev_start_request flags */
4843/*
4844 * Indicates that AP VDEV uses hidden ssid. only valid for
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01004845 * AP/GO
4846 */
Kalle Valo14e105c2016-04-13 14:13:21 +03004847#define WMI_VDEV_START_HIDDEN_SSID (1 << 0)
Kalle Valo5e3dd152013-06-12 20:52:10 +03004848/*
4849 * Indicates if robust management frame/management frame
4850 * protection is enabled. For GO/AP vdevs, it indicates that
4851 * it may support station/client associations with RMF enabled.
4852 * For STA/client vdevs, it indicates that sta will
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01004853 * associate with AP with RMF enabled.
4854 */
Kalle Valo14e105c2016-04-13 14:13:21 +03004855#define WMI_VDEV_START_PMF_ENABLED (1 << 1)
Kalle Valo5e3dd152013-06-12 20:52:10 +03004856
4857struct wmi_p2p_noa_descriptor {
4858 __le32 type_count; /* 255: continuous schedule, 0: reserved */
4859 __le32 duration; /* Absent period duration in micro seconds */
4860 __le32 interval; /* Absent period interval in micro seconds */
4861 __le32 start_time; /* 32 bit tsf time when in starts */
4862} __packed;
4863
4864struct wmi_vdev_start_request_cmd {
4865 /* WMI channel */
4866 struct wmi_channel chan;
4867 /* unique id identifying the VDEV, generated by the caller */
4868 __le32 vdev_id;
4869 /* requestor id identifying the caller module */
4870 __le32 requestor_id;
4871 /* beacon interval from received beacon */
4872 __le32 beacon_interval;
4873 /* DTIM Period from the received beacon */
4874 __le32 dtim_period;
4875 /* Flags */
4876 __le32 flags;
4877 /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */
4878 struct wmi_ssid ssid;
Joe Perchese13dbea2016-09-26 21:56:21 +03004879 /* beacon/probe response xmit rate. Applicable for SoftAP. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004880 __le32 bcn_tx_rate;
Joe Perchese13dbea2016-09-26 21:56:21 +03004881 /* beacon/probe response xmit power. Applicable for SoftAP. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004882 __le32 bcn_tx_power;
4883 /* number of p2p NOA descriptor(s) from scan entry */
4884 __le32 num_noa_descriptors;
4885 /*
4886 * Disable H/W ack. This used by WMI_VDEV_RESTART_REQUEST_CMDID.
4887 * During CAC, Our HW shouldn't ack ditected frames
4888 */
4889 __le32 disable_hw_ack;
4890 /* actual p2p NOA descriptor from scan entry */
4891 struct wmi_p2p_noa_descriptor noa_descriptors[2];
4892} __packed;
4893
4894struct wmi_vdev_restart_request_cmd {
4895 struct wmi_vdev_start_request_cmd vdev_start_request_cmd;
4896} __packed;
4897
4898struct wmi_vdev_start_request_arg {
4899 u32 vdev_id;
4900 struct wmi_channel_arg channel;
4901 u32 bcn_intval;
4902 u32 dtim_period;
4903 u8 *ssid;
4904 u32 ssid_len;
4905 u32 bcn_tx_rate;
4906 u32 bcn_tx_power;
4907 bool disable_hw_ack;
4908 bool hidden_ssid;
4909 bool pmf_enabled;
4910};
4911
4912struct wmi_vdev_delete_cmd {
4913 /* unique id identifying the VDEV, generated by the caller */
4914 __le32 vdev_id;
4915} __packed;
4916
4917struct wmi_vdev_up_cmd {
4918 __le32 vdev_id;
4919 __le32 vdev_assoc_id;
4920 struct wmi_mac_addr vdev_bssid;
4921} __packed;
4922
4923struct wmi_vdev_stop_cmd {
4924 __le32 vdev_id;
4925} __packed;
4926
4927struct wmi_vdev_down_cmd {
4928 __le32 vdev_id;
4929} __packed;
4930
4931struct wmi_vdev_standby_response_cmd {
4932 /* unique id identifying the VDEV, generated by the caller */
4933 __le32 vdev_id;
4934} __packed;
4935
4936struct wmi_vdev_resume_response_cmd {
4937 /* unique id identifying the VDEV, generated by the caller */
4938 __le32 vdev_id;
4939} __packed;
4940
4941struct wmi_vdev_set_param_cmd {
4942 __le32 vdev_id;
4943 __le32 param_id;
4944 __le32 param_value;
4945} __packed;
4946
4947#define WMI_MAX_KEY_INDEX 3
4948#define WMI_MAX_KEY_LEN 32
4949
4950#define WMI_KEY_PAIRWISE 0x00
4951#define WMI_KEY_GROUP 0x01
4952#define WMI_KEY_TX_USAGE 0x02 /* default tx key - static wep */
4953
4954struct wmi_key_seq_counter {
4955 __le32 key_seq_counter_l;
4956 __le32 key_seq_counter_h;
4957} __packed;
4958
Abhishek Ambure7d94f862019-02-08 14:55:26 +02004959enum wmi_cipher_suites {
4960 WMI_CIPHER_NONE,
4961 WMI_CIPHER_WEP,
4962 WMI_CIPHER_TKIP,
4963 WMI_CIPHER_AES_OCB,
4964 WMI_CIPHER_AES_CCM,
4965 WMI_CIPHER_WAPI,
4966 WMI_CIPHER_CKIP,
4967 WMI_CIPHER_AES_CMAC,
4968 WMI_CIPHER_AES_GCM,
4969};
4970
4971enum wmi_tlv_cipher_suites {
4972 WMI_TLV_CIPHER_NONE,
4973 WMI_TLV_CIPHER_WEP,
4974 WMI_TLV_CIPHER_TKIP,
4975 WMI_TLV_CIPHER_AES_OCB,
4976 WMI_TLV_CIPHER_AES_CCM,
4977 WMI_TLV_CIPHER_WAPI,
4978 WMI_TLV_CIPHER_CKIP,
4979 WMI_TLV_CIPHER_AES_CMAC,
4980 WMI_TLV_CIPHER_ANY,
4981 WMI_TLV_CIPHER_AES_GCM,
4982};
Kalle Valo5e3dd152013-06-12 20:52:10 +03004983
4984struct wmi_vdev_install_key_cmd {
4985 __le32 vdev_id;
4986 struct wmi_mac_addr peer_macaddr;
4987 __le32 key_idx;
4988 __le32 key_flags;
4989 __le32 key_cipher; /* %WMI_CIPHER_ */
4990 struct wmi_key_seq_counter key_rsc_counter;
4991 struct wmi_key_seq_counter key_global_rsc_counter;
4992 struct wmi_key_seq_counter key_tsc_counter;
4993 u8 wpi_key_rsc_counter[16];
4994 u8 wpi_key_tsc_counter[16];
4995 __le32 key_len;
4996 __le32 key_txmic_len;
4997 __le32 key_rxmic_len;
4998
4999 /* contains key followed by tx mic followed by rx mic */
5000 u8 key_data[0];
5001} __packed;
5002
5003struct wmi_vdev_install_key_arg {
5004 u32 vdev_id;
5005 const u8 *macaddr;
5006 u32 key_idx;
5007 u32 key_flags;
5008 u32 key_cipher;
5009 u32 key_len;
5010 u32 key_txmic_len;
5011 u32 key_rxmic_len;
5012 const void *key_data;
5013};
5014
Janusz Dziedzic51ab1a02014-01-08 09:08:33 +01005015/*
5016 * vdev fixed rate format:
5017 * - preamble - b7:b6 - see WMI_RATE_PREMABLE_
5018 * - nss - b5:b4 - ss number (0 mean 1ss)
5019 * - rate_mcs - b3:b0 - as below
5020 * CCK: 0 - 11Mbps, 1 - 5,5Mbps, 2 - 2Mbps, 3 - 1Mbps,
5021 * 4 - 11Mbps (s), 5 - 5,5Mbps (s), 6 - 2Mbps (s)
5022 * OFDM: 0 - 48Mbps, 1 - 24Mbps, 2 - 12Mbps, 3 - 6Mbps,
5023 * 4 - 54Mbps, 5 - 36Mbps, 6 - 18Mbps, 7 - 9Mbps
5024 * HT/VHT: MCS index
5025 */
5026
Kalle Valo5e3dd152013-06-12 20:52:10 +03005027/* Preamble types to be used with VDEV fixed rate configuration */
5028enum wmi_rate_preamble {
5029 WMI_RATE_PREAMBLE_OFDM,
5030 WMI_RATE_PREAMBLE_CCK,
5031 WMI_RATE_PREAMBLE_HT,
5032 WMI_RATE_PREAMBLE_VHT,
5033};
5034
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03005035#define ATH10K_HW_NSS(rate) (1 + (((rate) >> 4) & 0x3))
5036#define ATH10K_HW_PREAMBLE(rate) (((rate) >> 6) & 0x3)
Anilkumar Kollicec17c32016-11-23 16:58:10 +02005037#define ATH10K_HW_MCS_RATE(rate) ((rate) & 0xf)
5038#define ATH10K_HW_LEGACY_RATE(rate) ((rate) & 0x3f)
5039#define ATH10K_HW_BW(flags) (((flags) >> 3) & 0x3)
5040#define ATH10K_HW_GI(flags) (((flags) >> 5) & 0x1)
5041#define ATH10K_HW_RATECODE(rate, nss, preamble) \
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03005042 (((preamble) << 6) | ((nss) << 4) | (rate))
Anilkumar Kollia9044172018-09-04 12:15:15 +05305043#define ATH10K_HW_AMPDU(flags) ((flags) & 0x1)
5044#define ATH10K_HW_BA_FAIL(flags) (((flags) >> 1) & 0x3)
Anilkumar Kolli9a9cf0e2018-12-20 09:53:28 +02005045#define ATH10K_FW_SKIPPED_RATE_CTRL(flags) (((flags) >> 6) & 0x1)
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03005046
Anilkumar Kollia9044172018-09-04 12:15:15 +05305047#define ATH10K_VHT_MCS_NUM 10
5048#define ATH10K_BW_NUM 4
5049#define ATH10K_NSS_NUM 4
5050#define ATH10K_LEGACY_NUM 12
5051#define ATH10K_GI_NUM 2
5052#define ATH10K_HT_MCS_NUM 32
Anilkumar Kollie88975c2018-10-12 11:33:28 +05305053#define ATH10K_RATE_TABLE_NUM 320
Anilkumar Kollicec17c32016-11-23 16:58:10 +02005054
Kalle Valo5e3dd152013-06-12 20:52:10 +03005055/* Value to disable fixed rate setting */
5056#define WMI_FIXED_RATE_NONE (0xff)
5057
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005058struct wmi_vdev_param_map {
5059 u32 rts_threshold;
5060 u32 fragmentation_threshold;
5061 u32 beacon_interval;
5062 u32 listen_interval;
5063 u32 multicast_rate;
5064 u32 mgmt_tx_rate;
5065 u32 slot_time;
5066 u32 preamble;
5067 u32 swba_time;
5068 u32 wmi_vdev_stats_update_period;
5069 u32 wmi_vdev_pwrsave_ageout_time;
5070 u32 wmi_vdev_host_swba_interval;
5071 u32 dtim_period;
5072 u32 wmi_vdev_oc_scheduler_air_time_limit;
5073 u32 wds;
5074 u32 atim_window;
5075 u32 bmiss_count_max;
5076 u32 bmiss_first_bcnt;
5077 u32 bmiss_final_bcnt;
5078 u32 feature_wmm;
5079 u32 chwidth;
5080 u32 chextoffset;
5081 u32 disable_htprotection;
5082 u32 sta_quickkickout;
5083 u32 mgmt_rate;
5084 u32 protection_mode;
5085 u32 fixed_rate;
5086 u32 sgi;
5087 u32 ldpc;
5088 u32 tx_stbc;
5089 u32 rx_stbc;
5090 u32 intra_bss_fwd;
5091 u32 def_keyid;
5092 u32 nss;
5093 u32 bcast_data_rate;
5094 u32 mcast_data_rate;
5095 u32 mcast_indicate;
5096 u32 dhcp_indicate;
5097 u32 unknown_dest_indicate;
5098 u32 ap_keepalive_min_idle_inactive_time_secs;
5099 u32 ap_keepalive_max_idle_inactive_time_secs;
5100 u32 ap_keepalive_max_unresponsive_time_secs;
5101 u32 ap_enable_nawds;
5102 u32 mcast2ucast_set;
5103 u32 enable_rtscts;
5104 u32 txbf;
5105 u32 packet_powersave;
5106 u32 drop_unencry;
5107 u32 tx_encap_type;
5108 u32 ap_detect_out_of_sync_sleeping_sta_time_secs;
Raja Mani93841a12015-06-22 20:10:13 +05305109 u32 rc_num_retries;
5110 u32 cabq_maxdur;
5111 u32 mfptest_set;
5112 u32 rts_fixed_rate;
5113 u32 vht_sgimask;
5114 u32 vht80_ratemask;
5115 u32 early_rx_adjust_enable;
5116 u32 early_rx_tgt_bmiss_num;
5117 u32 early_rx_bmiss_sample_cycle;
5118 u32 early_rx_slop_step;
5119 u32 early_rx_init_slop;
5120 u32 early_rx_adjust_pause;
5121 u32 proxy_sta;
5122 u32 meru_vc;
5123 u32 rx_decap_type;
5124 u32 bw_nss_ratemask;
Pedersen, Thomas973324f2016-09-28 16:56:29 -07005125 u32 inc_tsf;
5126 u32 dec_tsf;
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +02005127 u32 disable_4addr_src_lrn;
Pradeep Kumar Chitrapu059104b2019-02-11 18:47:54 +02005128 u32 rtt_responder_role;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005129};
5130
5131#define WMI_VDEV_PARAM_UNSUPPORTED 0
5132
Kalle Valo5e3dd152013-06-12 20:52:10 +03005133/* the definition of different VDEV parameters */
5134enum wmi_vdev_param {
5135 /* RTS Threshold */
5136 WMI_VDEV_PARAM_RTS_THRESHOLD = 0x1,
5137 /* Fragmentation threshold */
5138 WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
5139 /* beacon interval in TUs */
5140 WMI_VDEV_PARAM_BEACON_INTERVAL,
5141 /* Listen interval in TUs */
5142 WMI_VDEV_PARAM_LISTEN_INTERVAL,
Joe Perchese13dbea2016-09-26 21:56:21 +03005143 /* multicast rate in Mbps */
Kalle Valo5e3dd152013-06-12 20:52:10 +03005144 WMI_VDEV_PARAM_MULTICAST_RATE,
5145 /* management frame rate in Mbps */
5146 WMI_VDEV_PARAM_MGMT_TX_RATE,
5147 /* slot time (long vs short) */
5148 WMI_VDEV_PARAM_SLOT_TIME,
5149 /* preamble (long vs short) */
5150 WMI_VDEV_PARAM_PREAMBLE,
5151 /* SWBA time (time before tbtt in msec) */
5152 WMI_VDEV_PARAM_SWBA_TIME,
5153 /* time period for updating VDEV stats */
5154 WMI_VDEV_STATS_UPDATE_PERIOD,
5155 /* age out time in msec for frames queued for station in power save */
5156 WMI_VDEV_PWRSAVE_AGEOUT_TIME,
5157 /*
5158 * Host SWBA interval (time in msec before tbtt for SWBA event
5159 * generation).
5160 */
5161 WMI_VDEV_HOST_SWBA_INTERVAL,
5162 /* DTIM period (specified in units of num beacon intervals) */
5163 WMI_VDEV_PARAM_DTIM_PERIOD,
5164 /*
5165 * scheduler air time limit for this VDEV. used by off chan
5166 * scheduler.
5167 */
5168 WMI_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
5169 /* enable/dsiable WDS for this VDEV */
5170 WMI_VDEV_PARAM_WDS,
5171 /* ATIM Window */
5172 WMI_VDEV_PARAM_ATIM_WINDOW,
5173 /* BMISS max */
5174 WMI_VDEV_PARAM_BMISS_COUNT_MAX,
5175 /* BMISS first time */
5176 WMI_VDEV_PARAM_BMISS_FIRST_BCNT,
5177 /* BMISS final time */
5178 WMI_VDEV_PARAM_BMISS_FINAL_BCNT,
5179 /* WMM enables/disabled */
5180 WMI_VDEV_PARAM_FEATURE_WMM,
5181 /* Channel width */
5182 WMI_VDEV_PARAM_CHWIDTH,
5183 /* Channel Offset */
5184 WMI_VDEV_PARAM_CHEXTOFFSET,
5185 /* Disable HT Protection */
5186 WMI_VDEV_PARAM_DISABLE_HTPROTECTION,
5187 /* Quick STA Kickout */
5188 WMI_VDEV_PARAM_STA_QUICKKICKOUT,
5189 /* Rate to be used with Management frames */
5190 WMI_VDEV_PARAM_MGMT_RATE,
5191 /* Protection Mode */
5192 WMI_VDEV_PARAM_PROTECTION_MODE,
5193 /* Fixed rate setting */
5194 WMI_VDEV_PARAM_FIXED_RATE,
5195 /* Short GI Enable/Disable */
5196 WMI_VDEV_PARAM_SGI,
5197 /* Enable LDPC */
5198 WMI_VDEV_PARAM_LDPC,
5199 /* Enable Tx STBC */
5200 WMI_VDEV_PARAM_TX_STBC,
5201 /* Enable Rx STBC */
5202 WMI_VDEV_PARAM_RX_STBC,
5203 /* Intra BSS forwarding */
5204 WMI_VDEV_PARAM_INTRA_BSS_FWD,
5205 /* Setting Default xmit key for Vdev */
5206 WMI_VDEV_PARAM_DEF_KEYID,
5207 /* NSS width */
5208 WMI_VDEV_PARAM_NSS,
5209 /* Set the custom rate for the broadcast data frames */
5210 WMI_VDEV_PARAM_BCAST_DATA_RATE,
5211 /* Set the custom rate (rate-code) for multicast data frames */
5212 WMI_VDEV_PARAM_MCAST_DATA_RATE,
5213 /* Tx multicast packet indicate Enable/Disable */
5214 WMI_VDEV_PARAM_MCAST_INDICATE,
5215 /* Tx DHCP packet indicate Enable/Disable */
5216 WMI_VDEV_PARAM_DHCP_INDICATE,
5217 /* Enable host inspection of Tx unicast packet to unknown destination */
5218 WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
5219
5220 /* The minimum amount of time AP begins to consider STA inactive */
5221 WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
5222
5223 /*
5224 * An associated STA is considered inactive when there is no recent
5225 * TX/RX activity and no downlink frames are buffered for it. Once a
5226 * STA exceeds the maximum idle inactive time, the AP will send an
5227 * 802.11 data-null as a keep alive to verify the STA is still
5228 * associated. If the STA does ACK the data-null, or if the data-null
5229 * is buffered and the STA does not retrieve it, the STA will be
5230 * considered unresponsive
5231 * (see WMI_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
5232 */
5233 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
5234
5235 /*
5236 * An associated STA is considered unresponsive if there is no recent
5237 * TX/RX activity and downlink frames are buffered for it. Once a STA
5238 * exceeds the maximum unresponsive time, the AP will send a
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01005239 * WMI_STA_KICKOUT event to the host so the STA can be deleted.
5240 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03005241 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
5242
5243 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
5244 WMI_VDEV_PARAM_AP_ENABLE_NAWDS,
5245 /* Enable/Disable RTS-CTS */
5246 WMI_VDEV_PARAM_ENABLE_RTSCTS,
5247 /* Enable TXBFee/er */
5248 WMI_VDEV_PARAM_TXBF,
5249
5250 /* Set packet power save */
5251 WMI_VDEV_PARAM_PACKET_POWERSAVE,
5252
5253 /*
5254 * Drops un-encrypted packets if eceived in an encrypted connection
5255 * otherwise forwards to host.
5256 */
5257 WMI_VDEV_PARAM_DROP_UNENCRY,
5258
5259 /*
5260 * Set the encapsulation type for frames.
5261 */
5262 WMI_VDEV_PARAM_TX_ENCAP_TYPE,
5263};
5264
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005265/* the definition of different VDEV parameters */
5266enum wmi_10x_vdev_param {
5267 /* RTS Threshold */
5268 WMI_10X_VDEV_PARAM_RTS_THRESHOLD = 0x1,
5269 /* Fragmentation threshold */
5270 WMI_10X_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
5271 /* beacon interval in TUs */
5272 WMI_10X_VDEV_PARAM_BEACON_INTERVAL,
5273 /* Listen interval in TUs */
5274 WMI_10X_VDEV_PARAM_LISTEN_INTERVAL,
Joe Perchese13dbea2016-09-26 21:56:21 +03005275 /* multicast rate in Mbps */
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005276 WMI_10X_VDEV_PARAM_MULTICAST_RATE,
5277 /* management frame rate in Mbps */
5278 WMI_10X_VDEV_PARAM_MGMT_TX_RATE,
5279 /* slot time (long vs short) */
5280 WMI_10X_VDEV_PARAM_SLOT_TIME,
5281 /* preamble (long vs short) */
5282 WMI_10X_VDEV_PARAM_PREAMBLE,
5283 /* SWBA time (time before tbtt in msec) */
5284 WMI_10X_VDEV_PARAM_SWBA_TIME,
5285 /* time period for updating VDEV stats */
5286 WMI_10X_VDEV_STATS_UPDATE_PERIOD,
5287 /* age out time in msec for frames queued for station in power save */
5288 WMI_10X_VDEV_PWRSAVE_AGEOUT_TIME,
5289 /*
5290 * Host SWBA interval (time in msec before tbtt for SWBA event
5291 * generation).
5292 */
5293 WMI_10X_VDEV_HOST_SWBA_INTERVAL,
5294 /* DTIM period (specified in units of num beacon intervals) */
5295 WMI_10X_VDEV_PARAM_DTIM_PERIOD,
5296 /*
5297 * scheduler air time limit for this VDEV. used by off chan
5298 * scheduler.
5299 */
5300 WMI_10X_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
5301 /* enable/dsiable WDS for this VDEV */
5302 WMI_10X_VDEV_PARAM_WDS,
5303 /* ATIM Window */
5304 WMI_10X_VDEV_PARAM_ATIM_WINDOW,
5305 /* BMISS max */
5306 WMI_10X_VDEV_PARAM_BMISS_COUNT_MAX,
5307 /* WMM enables/disabled */
5308 WMI_10X_VDEV_PARAM_FEATURE_WMM,
5309 /* Channel width */
5310 WMI_10X_VDEV_PARAM_CHWIDTH,
5311 /* Channel Offset */
5312 WMI_10X_VDEV_PARAM_CHEXTOFFSET,
5313 /* Disable HT Protection */
5314 WMI_10X_VDEV_PARAM_DISABLE_HTPROTECTION,
5315 /* Quick STA Kickout */
5316 WMI_10X_VDEV_PARAM_STA_QUICKKICKOUT,
5317 /* Rate to be used with Management frames */
5318 WMI_10X_VDEV_PARAM_MGMT_RATE,
5319 /* Protection Mode */
5320 WMI_10X_VDEV_PARAM_PROTECTION_MODE,
5321 /* Fixed rate setting */
5322 WMI_10X_VDEV_PARAM_FIXED_RATE,
5323 /* Short GI Enable/Disable */
5324 WMI_10X_VDEV_PARAM_SGI,
5325 /* Enable LDPC */
5326 WMI_10X_VDEV_PARAM_LDPC,
5327 /* Enable Tx STBC */
5328 WMI_10X_VDEV_PARAM_TX_STBC,
5329 /* Enable Rx STBC */
5330 WMI_10X_VDEV_PARAM_RX_STBC,
5331 /* Intra BSS forwarding */
5332 WMI_10X_VDEV_PARAM_INTRA_BSS_FWD,
5333 /* Setting Default xmit key for Vdev */
5334 WMI_10X_VDEV_PARAM_DEF_KEYID,
5335 /* NSS width */
5336 WMI_10X_VDEV_PARAM_NSS,
5337 /* Set the custom rate for the broadcast data frames */
5338 WMI_10X_VDEV_PARAM_BCAST_DATA_RATE,
5339 /* Set the custom rate (rate-code) for multicast data frames */
5340 WMI_10X_VDEV_PARAM_MCAST_DATA_RATE,
5341 /* Tx multicast packet indicate Enable/Disable */
5342 WMI_10X_VDEV_PARAM_MCAST_INDICATE,
5343 /* Tx DHCP packet indicate Enable/Disable */
5344 WMI_10X_VDEV_PARAM_DHCP_INDICATE,
5345 /* Enable host inspection of Tx unicast packet to unknown destination */
5346 WMI_10X_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
5347
5348 /* The minimum amount of time AP begins to consider STA inactive */
5349 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
5350
5351 /*
5352 * An associated STA is considered inactive when there is no recent
5353 * TX/RX activity and no downlink frames are buffered for it. Once a
5354 * STA exceeds the maximum idle inactive time, the AP will send an
5355 * 802.11 data-null as a keep alive to verify the STA is still
5356 * associated. If the STA does ACK the data-null, or if the data-null
5357 * is buffered and the STA does not retrieve it, the STA will be
5358 * considered unresponsive
5359 * (see WMI_10X_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
5360 */
5361 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
5362
5363 /*
5364 * An associated STA is considered unresponsive if there is no recent
5365 * TX/RX activity and downlink frames are buffered for it. Once a STA
5366 * exceeds the maximum unresponsive time, the AP will send a
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01005367 * WMI_10X_STA_KICKOUT event to the host so the STA can be deleted.
5368 */
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005369 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
5370
5371 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
5372 WMI_10X_VDEV_PARAM_AP_ENABLE_NAWDS,
5373
5374 WMI_10X_VDEV_PARAM_MCAST2UCAST_SET,
5375 /* Enable/Disable RTS-CTS */
5376 WMI_10X_VDEV_PARAM_ENABLE_RTSCTS,
5377
5378 WMI_10X_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS,
Michal Kazior24c88f72014-07-25 13:32:17 +02005379
5380 /* following are available as of firmware 10.2 */
5381 WMI_10X_VDEV_PARAM_TX_ENCAP_TYPE,
5382 WMI_10X_VDEV_PARAM_CABQ_MAXDUR,
5383 WMI_10X_VDEV_PARAM_MFPTEST_SET,
5384 WMI_10X_VDEV_PARAM_RTS_FIXED_RATE,
5385 WMI_10X_VDEV_PARAM_VHT_SGIMASK,
5386 WMI_10X_VDEV_PARAM_VHT80_RATEMASK,
Peter Oh9f0b7e72016-04-04 16:19:14 -07005387 WMI_10X_VDEV_PARAM_TSF_INCREMENT,
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02005388};
5389
Raja Mani93841a12015-06-22 20:10:13 +05305390enum wmi_10_4_vdev_param {
5391 WMI_10_4_VDEV_PARAM_RTS_THRESHOLD = 0x1,
5392 WMI_10_4_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
5393 WMI_10_4_VDEV_PARAM_BEACON_INTERVAL,
5394 WMI_10_4_VDEV_PARAM_LISTEN_INTERVAL,
5395 WMI_10_4_VDEV_PARAM_MULTICAST_RATE,
5396 WMI_10_4_VDEV_PARAM_MGMT_TX_RATE,
5397 WMI_10_4_VDEV_PARAM_SLOT_TIME,
5398 WMI_10_4_VDEV_PARAM_PREAMBLE,
5399 WMI_10_4_VDEV_PARAM_SWBA_TIME,
5400 WMI_10_4_VDEV_STATS_UPDATE_PERIOD,
5401 WMI_10_4_VDEV_PWRSAVE_AGEOUT_TIME,
5402 WMI_10_4_VDEV_HOST_SWBA_INTERVAL,
5403 WMI_10_4_VDEV_PARAM_DTIM_PERIOD,
5404 WMI_10_4_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
5405 WMI_10_4_VDEV_PARAM_WDS,
5406 WMI_10_4_VDEV_PARAM_ATIM_WINDOW,
5407 WMI_10_4_VDEV_PARAM_BMISS_COUNT_MAX,
5408 WMI_10_4_VDEV_PARAM_BMISS_FIRST_BCNT,
5409 WMI_10_4_VDEV_PARAM_BMISS_FINAL_BCNT,
5410 WMI_10_4_VDEV_PARAM_FEATURE_WMM,
5411 WMI_10_4_VDEV_PARAM_CHWIDTH,
5412 WMI_10_4_VDEV_PARAM_CHEXTOFFSET,
5413 WMI_10_4_VDEV_PARAM_DISABLE_HTPROTECTION,
5414 WMI_10_4_VDEV_PARAM_STA_QUICKKICKOUT,
5415 WMI_10_4_VDEV_PARAM_MGMT_RATE,
5416 WMI_10_4_VDEV_PARAM_PROTECTION_MODE,
5417 WMI_10_4_VDEV_PARAM_FIXED_RATE,
5418 WMI_10_4_VDEV_PARAM_SGI,
5419 WMI_10_4_VDEV_PARAM_LDPC,
5420 WMI_10_4_VDEV_PARAM_TX_STBC,
5421 WMI_10_4_VDEV_PARAM_RX_STBC,
5422 WMI_10_4_VDEV_PARAM_INTRA_BSS_FWD,
5423 WMI_10_4_VDEV_PARAM_DEF_KEYID,
5424 WMI_10_4_VDEV_PARAM_NSS,
5425 WMI_10_4_VDEV_PARAM_BCAST_DATA_RATE,
5426 WMI_10_4_VDEV_PARAM_MCAST_DATA_RATE,
5427 WMI_10_4_VDEV_PARAM_MCAST_INDICATE,
5428 WMI_10_4_VDEV_PARAM_DHCP_INDICATE,
5429 WMI_10_4_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
5430 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
5431 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
5432 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
5433 WMI_10_4_VDEV_PARAM_AP_ENABLE_NAWDS,
5434 WMI_10_4_VDEV_PARAM_MCAST2UCAST_SET,
5435 WMI_10_4_VDEV_PARAM_ENABLE_RTSCTS,
5436 WMI_10_4_VDEV_PARAM_RC_NUM_RETRIES,
5437 WMI_10_4_VDEV_PARAM_TXBF,
5438 WMI_10_4_VDEV_PARAM_PACKET_POWERSAVE,
5439 WMI_10_4_VDEV_PARAM_DROP_UNENCRY,
5440 WMI_10_4_VDEV_PARAM_TX_ENCAP_TYPE,
5441 WMI_10_4_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS,
5442 WMI_10_4_VDEV_PARAM_CABQ_MAXDUR,
5443 WMI_10_4_VDEV_PARAM_MFPTEST_SET,
5444 WMI_10_4_VDEV_PARAM_RTS_FIXED_RATE,
5445 WMI_10_4_VDEV_PARAM_VHT_SGIMASK,
5446 WMI_10_4_VDEV_PARAM_VHT80_RATEMASK,
5447 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_ENABLE,
5448 WMI_10_4_VDEV_PARAM_EARLY_RX_TGT_BMISS_NUM,
5449 WMI_10_4_VDEV_PARAM_EARLY_RX_BMISS_SAMPLE_CYCLE,
5450 WMI_10_4_VDEV_PARAM_EARLY_RX_SLOP_STEP,
5451 WMI_10_4_VDEV_PARAM_EARLY_RX_INIT_SLOP,
5452 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_PAUSE,
5453 WMI_10_4_VDEV_PARAM_PROXY_STA,
5454 WMI_10_4_VDEV_PARAM_MERU_VC,
5455 WMI_10_4_VDEV_PARAM_RX_DECAP_TYPE,
5456 WMI_10_4_VDEV_PARAM_BW_NSS_RATEMASK,
Peter Oh4857dd12016-04-04 16:19:15 -07005457 WMI_10_4_VDEV_PARAM_SENSOR_AP,
5458 WMI_10_4_VDEV_PARAM_BEACON_RATE,
5459 WMI_10_4_VDEV_PARAM_DTIM_ENABLE_CTS,
5460 WMI_10_4_VDEV_PARAM_STA_KICKOUT,
5461 WMI_10_4_VDEV_PARAM_CAPABILITIES,
5462 WMI_10_4_VDEV_PARAM_TSF_INCREMENT,
Pedersen, Thomas973324f2016-09-28 16:56:29 -07005463 WMI_10_4_VDEV_PARAM_RX_FILTER,
5464 WMI_10_4_VDEV_PARAM_MGMT_TX_POWER,
5465 WMI_10_4_VDEV_PARAM_ATF_SSID_SCHED_POLICY,
5466 WMI_10_4_VDEV_PARAM_DISABLE_DYN_BW_RTS,
5467 WMI_10_4_VDEV_PARAM_TSF_DECREMENT,
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +02005468 WMI_10_4_VDEV_PARAM_SELFGEN_FIXED_RATE,
5469 WMI_10_4_VDEV_PARAM_AMPDU_SUBFRAME_SIZE_PER_AC,
5470 WMI_10_4_VDEV_PARAM_NSS_VHT160,
5471 WMI_10_4_VDEV_PARAM_NSS_VHT80_80,
5472 WMI_10_4_VDEV_PARAM_AMSDU_SUBFRAME_SIZE_PER_AC,
5473 WMI_10_4_VDEV_PARAM_DISABLE_CABQ,
5474 WMI_10_4_VDEV_PARAM_SIFS_TRIGGER_RATE,
5475 WMI_10_4_VDEV_PARAM_TX_POWER,
5476 WMI_10_4_VDEV_PARAM_ENABLE_DISABLE_RTT_RESPONDER_ROLE,
5477 WMI_10_4_VDEV_PARAM_DISABLE_4_ADDR_SRC_LRN,
Raja Mani93841a12015-06-22 20:10:13 +05305478};
5479
Sathishkumar Muruganandam68c295f2018-12-20 09:53:30 +02005480#define WMI_VDEV_DISABLE_4_ADDR_SRC_LRN 1
5481
Michal Kazior139e1702015-02-15 16:50:42 +02005482#define WMI_VDEV_PARAM_TXBF_SU_TX_BFEE BIT(0)
5483#define WMI_VDEV_PARAM_TXBF_MU_TX_BFEE BIT(1)
5484#define WMI_VDEV_PARAM_TXBF_SU_TX_BFER BIT(2)
5485#define WMI_VDEV_PARAM_TXBF_MU_TX_BFER BIT(3)
5486
Vivek Natarajana48e2cc2015-08-04 10:45:12 +05305487#define WMI_TXBF_STS_CAP_OFFSET_LSB 4
Ben Greear8cec57f52017-12-02 16:50:49 +02005488#define WMI_TXBF_STS_CAP_OFFSET_MASK 0x70
5489#define WMI_TXBF_CONF_IMPLICIT_BF BIT(7)
Vivek Natarajana48e2cc2015-08-04 10:45:12 +05305490#define WMI_BF_SOUND_DIM_OFFSET_LSB 8
5491#define WMI_BF_SOUND_DIM_OFFSET_MASK 0xf00
5492
Kalle Valo5e3dd152013-06-12 20:52:10 +03005493/* slot time long */
5494#define WMI_VDEV_SLOT_TIME_LONG 0x1
5495/* slot time short */
5496#define WMI_VDEV_SLOT_TIME_SHORT 0x2
5497/* preablbe long */
5498#define WMI_VDEV_PREAMBLE_LONG 0x1
5499/* preablbe short */
5500#define WMI_VDEV_PREAMBLE_SHORT 0x2
5501
5502enum wmi_start_event_param {
5503 WMI_VDEV_RESP_START_EVENT = 0,
5504 WMI_VDEV_RESP_RESTART_EVENT,
5505};
5506
5507struct wmi_vdev_start_response_event {
5508 __le32 vdev_id;
5509 __le32 req_id;
5510 __le32 resp_type; /* %WMI_VDEV_RESP_ */
5511 __le32 status;
5512} __packed;
5513
5514struct wmi_vdev_standby_req_event {
5515 /* unique id identifying the VDEV, generated by the caller */
5516 __le32 vdev_id;
5517} __packed;
5518
5519struct wmi_vdev_resume_req_event {
5520 /* unique id identifying the VDEV, generated by the caller */
5521 __le32 vdev_id;
5522} __packed;
5523
5524struct wmi_vdev_stopped_event {
5525 /* unique id identifying the VDEV, generated by the caller */
5526 __le32 vdev_id;
5527} __packed;
5528
5529/*
5530 * common structure used for simple events
5531 * (stopped, resume_req, standby response)
5532 */
5533struct wmi_vdev_simple_event {
5534 /* unique id identifying the VDEV, generated by the caller */
5535 __le32 vdev_id;
5536} __packed;
5537
5538/* VDEV start response status codes */
Joe Perchese13dbea2016-09-26 21:56:21 +03005539/* VDEV successfully started */
Kalle Valo5e3dd152013-06-12 20:52:10 +03005540#define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0
5541
5542/* requested VDEV not found */
5543#define WMI_INIFIED_VDEV_START_RESPONSE_INVALID_VDEVID 0x1
5544
5545/* unsupported VDEV combination */
5546#define WMI_INIFIED_VDEV_START_RESPONSE_NOT_SUPPORTED 0x2
5547
Simon Wunderlich855aed12014-08-02 09:12:54 +03005548/* TODO: please add more comments if you have in-depth information */
5549struct wmi_vdev_spectral_conf_cmd {
5550 __le32 vdev_id;
5551
5552 /* number of fft samples to send (0 for infinite) */
5553 __le32 scan_count;
5554 __le32 scan_period;
5555 __le32 scan_priority;
5556
5557 /* number of bins in the FFT: 2^(fft_size - bin_scale) */
5558 __le32 scan_fft_size;
5559 __le32 scan_gc_ena;
5560 __le32 scan_restart_ena;
5561 __le32 scan_noise_floor_ref;
5562 __le32 scan_init_delay;
5563 __le32 scan_nb_tone_thr;
5564 __le32 scan_str_bin_thr;
5565 __le32 scan_wb_rpt_mode;
5566 __le32 scan_rssi_rpt_mode;
5567 __le32 scan_rssi_thr;
5568 __le32 scan_pwr_format;
5569
5570 /* rpt_mode: Format of FFT report to software for spectral scan
5571 * triggered FFTs:
5572 * 0: No FFT report (only spectral scan summary report)
5573 * 1: 2-dword summary of metrics for each completed FFT + spectral
5574 * scan summary report
5575 * 2: 2-dword summary of metrics for each completed FFT +
5576 * 1x- oversampled bins(in-band) per FFT + spectral scan summary
5577 * report
5578 * 3: 2-dword summary of metrics for each completed FFT +
5579 * 2x- oversampled bins (all) per FFT + spectral scan summary
5580 */
5581 __le32 scan_rpt_mode;
5582 __le32 scan_bin_scale;
5583 __le32 scan_dbm_adj;
5584 __le32 scan_chn_mask;
5585} __packed;
5586
5587struct wmi_vdev_spectral_conf_arg {
5588 u32 vdev_id;
5589 u32 scan_count;
5590 u32 scan_period;
5591 u32 scan_priority;
5592 u32 scan_fft_size;
5593 u32 scan_gc_ena;
5594 u32 scan_restart_ena;
5595 u32 scan_noise_floor_ref;
5596 u32 scan_init_delay;
5597 u32 scan_nb_tone_thr;
5598 u32 scan_str_bin_thr;
5599 u32 scan_wb_rpt_mode;
5600 u32 scan_rssi_rpt_mode;
5601 u32 scan_rssi_thr;
5602 u32 scan_pwr_format;
5603 u32 scan_rpt_mode;
5604 u32 scan_bin_scale;
5605 u32 scan_dbm_adj;
5606 u32 scan_chn_mask;
5607};
5608
5609#define WMI_SPECTRAL_ENABLE_DEFAULT 0
5610#define WMI_SPECTRAL_COUNT_DEFAULT 0
5611#define WMI_SPECTRAL_PERIOD_DEFAULT 35
5612#define WMI_SPECTRAL_PRIORITY_DEFAULT 1
5613#define WMI_SPECTRAL_FFT_SIZE_DEFAULT 7
5614#define WMI_SPECTRAL_GC_ENA_DEFAULT 1
5615#define WMI_SPECTRAL_RESTART_ENA_DEFAULT 0
5616#define WMI_SPECTRAL_NOISE_FLOOR_REF_DEFAULT -96
5617#define WMI_SPECTRAL_INIT_DELAY_DEFAULT 80
5618#define WMI_SPECTRAL_NB_TONE_THR_DEFAULT 12
5619#define WMI_SPECTRAL_STR_BIN_THR_DEFAULT 8
5620#define WMI_SPECTRAL_WB_RPT_MODE_DEFAULT 0
5621#define WMI_SPECTRAL_RSSI_RPT_MODE_DEFAULT 0
5622#define WMI_SPECTRAL_RSSI_THR_DEFAULT 0xf0
5623#define WMI_SPECTRAL_PWR_FORMAT_DEFAULT 0
5624#define WMI_SPECTRAL_RPT_MODE_DEFAULT 2
5625#define WMI_SPECTRAL_BIN_SCALE_DEFAULT 1
5626#define WMI_SPECTRAL_DBM_ADJ_DEFAULT 1
5627#define WMI_SPECTRAL_CHN_MASK_DEFAULT 1
5628
5629struct wmi_vdev_spectral_enable_cmd {
5630 __le32 vdev_id;
5631 __le32 trigger_cmd;
5632 __le32 enable_cmd;
5633} __packed;
5634
5635#define WMI_SPECTRAL_TRIGGER_CMD_TRIGGER 1
5636#define WMI_SPECTRAL_TRIGGER_CMD_CLEAR 2
5637#define WMI_SPECTRAL_ENABLE_CMD_ENABLE 1
5638#define WMI_SPECTRAL_ENABLE_CMD_DISABLE 2
5639
Kalle Valo5e3dd152013-06-12 20:52:10 +03005640/* Beacon processing related command and event structures */
5641struct wmi_bcn_tx_hdr {
5642 __le32 vdev_id;
5643 __le32 tx_rate;
5644 __le32 tx_power;
5645 __le32 bcn_len;
5646} __packed;
5647
5648struct wmi_bcn_tx_cmd {
5649 struct wmi_bcn_tx_hdr hdr;
5650 u8 *bcn[0];
5651} __packed;
5652
5653struct wmi_bcn_tx_arg {
5654 u32 vdev_id;
5655 u32 tx_rate;
5656 u32 tx_power;
5657 u32 bcn_len;
5658 const void *bcn;
5659};
5660
Michal Kazior748afc42014-01-23 12:48:21 +01005661enum wmi_bcn_tx_ref_flags {
5662 WMI_BCN_TX_REF_FLAG_DTIM_ZERO = 0x1,
5663 WMI_BCN_TX_REF_FLAG_DELIVER_CAB = 0x2,
5664};
5665
Michal Kazior24c88f72014-07-25 13:32:17 +02005666/* TODO: It is unclear why "no antenna" works while any other seemingly valid
5667 * chainmask yields no beacons on the air at all.
5668 */
5669#define WMI_BCN_TX_REF_DEF_ANTENNA 0
5670
Michal Kazior748afc42014-01-23 12:48:21 +01005671struct wmi_bcn_tx_ref_cmd {
5672 __le32 vdev_id;
5673 __le32 data_len;
5674 /* physical address of the frame - dma pointer */
5675 __le32 data_ptr;
5676 /* id for host to track */
5677 __le32 msdu_id;
5678 /* frame ctrl to setup PPDU desc */
5679 __le32 frame_control;
5680 /* to control CABQ traffic: WMI_BCN_TX_REF_FLAG_ */
5681 __le32 flags;
Michal Kazior24c88f72014-07-25 13:32:17 +02005682 /* introduced in 10.2 */
5683 __le32 antenna_mask;
Michal Kazior748afc42014-01-23 12:48:21 +01005684} __packed;
5685
Kalle Valo5e3dd152013-06-12 20:52:10 +03005686/* Beacon filter */
5687#define WMI_BCN_FILTER_ALL 0 /* Filter all beacons */
5688#define WMI_BCN_FILTER_NONE 1 /* Pass all beacons */
5689#define WMI_BCN_FILTER_RSSI 2 /* Pass Beacons RSSI >= RSSI threshold */
5690#define WMI_BCN_FILTER_BSSID 3 /* Pass Beacons with matching BSSID */
5691#define WMI_BCN_FILTER_SSID 4 /* Pass Beacons with matching SSID */
5692
5693struct wmi_bcn_filter_rx_cmd {
5694 /* Filter ID */
5695 __le32 bcn_filter_id;
5696 /* Filter type - wmi_bcn_filter */
5697 __le32 bcn_filter;
5698 /* Buffer len */
5699 __le32 bcn_filter_len;
5700 /* Filter info (threshold, BSSID, RSSI) */
5701 u8 *bcn_filter_buf;
5702} __packed;
5703
5704/* Capabilities and IEs to be passed to firmware */
5705struct wmi_bcn_prb_info {
5706 /* Capabilities */
5707 __le32 caps;
5708 /* ERP info */
5709 __le32 erp;
5710 /* Advanced capabilities */
5711 /* HT capabilities */
5712 /* HT Info */
5713 /* ibss_dfs */
5714 /* wpa Info */
5715 /* rsn Info */
5716 /* rrm info */
5717 /* ath_ext */
5718 /* app IE */
5719} __packed;
5720
5721struct wmi_bcn_tmpl_cmd {
5722 /* unique id identifying the VDEV, generated by the caller */
5723 __le32 vdev_id;
5724 /* TIM IE offset from the beginning of the template. */
5725 __le32 tim_ie_offset;
5726 /* beacon probe capabilities and IEs */
5727 struct wmi_bcn_prb_info bcn_prb_info;
5728 /* beacon buffer length */
5729 __le32 buf_len;
5730 /* variable length data */
5731 u8 data[1];
5732} __packed;
5733
5734struct wmi_prb_tmpl_cmd {
5735 /* unique id identifying the VDEV, generated by the caller */
5736 __le32 vdev_id;
5737 /* beacon probe capabilities and IEs */
5738 struct wmi_bcn_prb_info bcn_prb_info;
5739 /* beacon buffer length */
5740 __le32 buf_len;
5741 /* Variable length data */
5742 u8 data[1];
5743} __packed;
5744
5745enum wmi_sta_ps_mode {
5746 /* enable power save for the given STA VDEV */
5747 WMI_STA_PS_MODE_DISABLED = 0,
5748 /* disable power save for a given STA VDEV */
5749 WMI_STA_PS_MODE_ENABLED = 1,
5750};
5751
5752struct wmi_sta_powersave_mode_cmd {
5753 /* unique id identifying the VDEV, generated by the caller */
5754 __le32 vdev_id;
5755
5756 /*
5757 * Power save mode
5758 * (see enum wmi_sta_ps_mode)
5759 */
5760 __le32 sta_ps_mode;
5761} __packed;
5762
5763enum wmi_csa_offload_en {
5764 WMI_CSA_OFFLOAD_DISABLE = 0,
5765 WMI_CSA_OFFLOAD_ENABLE = 1,
5766};
5767
5768struct wmi_csa_offload_enable_cmd {
5769 __le32 vdev_id;
5770 __le32 csa_offload_enable;
5771} __packed;
5772
5773struct wmi_csa_offload_chanswitch_cmd {
5774 __le32 vdev_id;
5775 struct wmi_channel chan;
5776} __packed;
5777
5778/*
5779 * This parameter controls the policy for retrieving frames from AP while the
5780 * STA is in sleep state.
5781 *
5782 * Only takes affect if the sta_ps_mode is enabled
5783 */
5784enum wmi_sta_ps_param_rx_wake_policy {
5785 /*
5786 * Wake up when ever there is an RX activity on the VDEV. In this mode
5787 * the Power save SM(state machine) will come out of sleep by either
5788 * sending null frame (or) a data frame (with PS==0) in response to TIM
5789 * bit set in the received beacon frame from AP.
5790 */
5791 WMI_STA_PS_RX_WAKE_POLICY_WAKE = 0,
5792
5793 /*
5794 * Here the power save state machine will not wakeup in response to TIM
5795 * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
5796 * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
5797 * access categories are delivery-enabled, the station will send a
5798 * UAPSD trigger frame, otherwise it will send a PS-Poll.
5799 */
5800 WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1,
5801};
5802
5803/*
5804 * Number of tx frames/beacon that cause the power save SM to wake up.
5805 *
5806 * Value 1 causes the SM to wake up for every TX. Value 0 has a special
5807 * meaning, It will cause the SM to never wake up. This is useful if you want
5808 * to keep the system to sleep all the time for some kind of test mode . host
5809 * can change this parameter any time. It will affect at the next tx frame.
5810 */
5811enum wmi_sta_ps_param_tx_wake_threshold {
5812 WMI_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0,
5813 WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1,
5814
5815 /*
5816 * Values greater than one indicate that many TX attempts per beacon
5817 * interval before the STA will wake up
5818 */
5819};
5820
5821/*
5822 * The maximum number of PS-Poll frames the FW will send in response to
5823 * traffic advertised in TIM before waking up (by sending a null frame with PS
5824 * = 0). Value 0 has a special meaning: there is no maximum count and the FW
5825 * will send as many PS-Poll as are necessary to retrieve buffered BU. This
5826 * parameter is used when the RX wake policy is
5827 * WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD and ignored when the RX wake
5828 * policy is WMI_STA_PS_RX_WAKE_POLICY_WAKE.
5829 */
5830enum wmi_sta_ps_param_pspoll_count {
5831 WMI_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
5832 /*
5833 * Values greater than 0 indicate the maximum numer of PS-Poll frames
5834 * FW will send before waking up.
5835 */
Michal Kazior9f9b5742014-12-12 12:41:36 +01005836
5837 /* When u-APSD is enabled the firmware will be very reluctant to exit
5838 * STA PS. This could result in very poor Rx performance with STA doing
5839 * PS-Poll for each and every buffered frame. This value is a bit
5840 * arbitrary.
5841 */
5842 WMI_STA_PS_PSPOLL_COUNT_UAPSD = 3,
Kalle Valo5e3dd152013-06-12 20:52:10 +03005843};
5844
5845/*
5846 * This will include the delivery and trigger enabled state for every AC.
5847 * This is the negotiated state with AP. The host MLME needs to set this based
5848 * on AP capability and the state Set in the association request by the
5849 * station MLME.Lower 8 bits of the value specify the UAPSD configuration.
5850 */
5851#define WMI_UAPSD_AC_TYPE_DELI 0
5852#define WMI_UAPSD_AC_TYPE_TRIG 1
5853
5854#define WMI_UAPSD_AC_BIT_MASK(ac, type) \
Joe Perchese13dbea2016-09-26 21:56:21 +03005855 (type == WMI_UAPSD_AC_TYPE_DELI ? 1 << (ac << 1) : 1 << ((ac << 1) + 1))
Kalle Valo5e3dd152013-06-12 20:52:10 +03005856
5857enum wmi_sta_ps_param_uapsd {
5858 WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
5859 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
5860 WMI_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
5861 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
5862 WMI_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
5863 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
5864 WMI_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
5865 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
5866};
5867
Janusz Dziedzic0c7e4772015-01-24 12:14:52 +02005868#define WMI_STA_UAPSD_MAX_INTERVAL_MSEC UINT_MAX
5869
5870struct wmi_sta_uapsd_auto_trig_param {
5871 __le32 wmm_ac;
5872 __le32 user_priority;
5873 __le32 service_interval;
5874 __le32 suspend_interval;
5875 __le32 delay_interval;
5876};
5877
5878struct wmi_sta_uapsd_auto_trig_cmd_fixed_param {
5879 __le32 vdev_id;
5880 struct wmi_mac_addr peer_macaddr;
5881 __le32 num_ac;
5882};
5883
5884struct wmi_sta_uapsd_auto_trig_arg {
5885 u32 wmm_ac;
5886 u32 user_priority;
5887 u32 service_interval;
5888 u32 suspend_interval;
5889 u32 delay_interval;
5890};
5891
Kalle Valo5e3dd152013-06-12 20:52:10 +03005892enum wmi_sta_powersave_param {
5893 /*
5894 * Controls how frames are retrievd from AP while STA is sleeping
5895 *
5896 * (see enum wmi_sta_ps_param_rx_wake_policy)
5897 */
5898 WMI_STA_PS_PARAM_RX_WAKE_POLICY = 0,
5899
5900 /*
5901 * The STA will go active after this many TX
5902 *
5903 * (see enum wmi_sta_ps_param_tx_wake_threshold)
5904 */
5905 WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1,
5906
5907 /*
5908 * Number of PS-Poll to send before STA wakes up
5909 *
5910 * (see enum wmi_sta_ps_param_pspoll_count)
5911 *
5912 */
5913 WMI_STA_PS_PARAM_PSPOLL_COUNT = 2,
5914
5915 /*
5916 * TX/RX inactivity time in msec before going to sleep.
5917 *
5918 * The power save SM will monitor tx/rx activity on the VDEV, if no
5919 * activity for the specified msec of the parameter the Power save
5920 * SM will go to sleep.
5921 */
5922 WMI_STA_PS_PARAM_INACTIVITY_TIME = 3,
5923
5924 /*
5925 * Set uapsd configuration.
5926 *
5927 * (see enum wmi_sta_ps_param_uapsd)
5928 */
5929 WMI_STA_PS_PARAM_UAPSD = 4,
5930};
5931
5932struct wmi_sta_powersave_param_cmd {
5933 __le32 vdev_id;
5934 __le32 param_id; /* %WMI_STA_PS_PARAM_ */
5935 __le32 param_value;
5936} __packed;
5937
5938/* No MIMO power save */
5939#define WMI_STA_MIMO_PS_MODE_DISABLE
5940/* mimo powersave mode static*/
5941#define WMI_STA_MIMO_PS_MODE_STATIC
5942/* mimo powersave mode dynamic */
5943#define WMI_STA_MIMO_PS_MODE_DYNAMIC
5944
5945struct wmi_sta_mimo_ps_mode_cmd {
5946 /* unique id identifying the VDEV, generated by the caller */
5947 __le32 vdev_id;
5948 /* mimo powersave mode as defined above */
5949 __le32 mimo_pwrsave_mode;
5950} __packed;
5951
5952/* U-APSD configuration of peer station from (re)assoc request and TSPECs */
5953enum wmi_ap_ps_param_uapsd {
5954 WMI_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
5955 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
5956 WMI_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
5957 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
5958 WMI_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
5959 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
5960 WMI_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
5961 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
5962};
5963
5964/* U-APSD maximum service period of peer station */
5965enum wmi_ap_ps_peer_param_max_sp {
5966 WMI_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0,
5967 WMI_AP_PS_PEER_PARAM_MAX_SP_2 = 1,
5968 WMI_AP_PS_PEER_PARAM_MAX_SP_4 = 2,
5969 WMI_AP_PS_PEER_PARAM_MAX_SP_6 = 3,
5970 MAX_WMI_AP_PS_PEER_PARAM_MAX_SP,
5971};
5972
5973/*
5974 * AP power save parameter
5975 * Set a power save specific parameter for a peer station
5976 */
5977enum wmi_ap_ps_peer_param {
5978 /* Set uapsd configuration for a given peer.
5979 *
5980 * Include the delivery and trigger enabled state for every AC.
5981 * The host MLME needs to set this based on AP capability and stations
5982 * request Set in the association request received from the station.
5983 *
5984 * Lower 8 bits of the value specify the UAPSD configuration.
5985 *
5986 * (see enum wmi_ap_ps_param_uapsd)
5987 * The default value is 0.
5988 */
5989 WMI_AP_PS_PEER_PARAM_UAPSD = 0,
5990
5991 /*
5992 * Set the service period for a UAPSD capable station
5993 *
5994 * The service period from wme ie in the (re)assoc request frame.
5995 *
5996 * (see enum wmi_ap_ps_peer_param_max_sp)
5997 */
5998 WMI_AP_PS_PEER_PARAM_MAX_SP = 1,
5999
6000 /* Time in seconds for aging out buffered frames for STA in PS */
6001 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME = 2,
6002};
6003
6004struct wmi_ap_ps_peer_cmd {
6005 /* unique id identifying the VDEV, generated by the caller */
6006 __le32 vdev_id;
6007
6008 /* peer MAC address */
6009 struct wmi_mac_addr peer_macaddr;
6010
6011 /* AP powersave param (see enum wmi_ap_ps_peer_param) */
6012 __le32 param_id;
6013
6014 /* AP powersave param value */
6015 __le32 param_value;
6016} __packed;
6017
6018/* 128 clients = 4 words */
6019#define WMI_TIM_BITMAP_ARRAY_SIZE 4
6020
6021struct wmi_tim_info {
6022 __le32 tim_len;
6023 __le32 tim_mcast;
6024 __le32 tim_bitmap[WMI_TIM_BITMAP_ARRAY_SIZE];
6025 __le32 tim_changed;
6026 __le32 tim_num_ps_pending;
6027} __packed;
6028
Raja Mania03fee32015-06-22 20:22:20 +05306029struct wmi_tim_info_arg {
6030 __le32 tim_len;
6031 __le32 tim_mcast;
6032 const __le32 *tim_bitmap;
6033 __le32 tim_changed;
6034 __le32 tim_num_ps_pending;
6035} __packed;
6036
Kalle Valo5e3dd152013-06-12 20:52:10 +03006037/* Maximum number of NOA Descriptors supported */
6038#define WMI_P2P_MAX_NOA_DESCRIPTORS 4
6039#define WMI_P2P_OPPPS_ENABLE_BIT BIT(0)
6040#define WMI_P2P_OPPPS_CTWINDOW_OFFSET 1
6041#define WMI_P2P_NOA_CHANGED_BIT BIT(0)
6042
6043struct wmi_p2p_noa_info {
6044 /* Bit 0 - Flag to indicate an update in NOA schedule
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01006045 * Bits 7-1 - Reserved
6046 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006047 u8 changed;
6048 /* NOA index */
6049 u8 index;
6050 /* Bit 0 - Opp PS state of the AP
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01006051 * Bits 1-7 - Ctwindow in TUs
6052 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006053 u8 ctwindow_oppps;
6054 /* Number of NOA descriptors */
6055 u8 num_descriptors;
6056
6057 struct wmi_p2p_noa_descriptor descriptors[WMI_P2P_MAX_NOA_DESCRIPTORS];
6058} __packed;
6059
6060struct wmi_bcn_info {
6061 struct wmi_tim_info tim_info;
6062 struct wmi_p2p_noa_info p2p_noa_info;
6063} __packed;
6064
6065struct wmi_host_swba_event {
6066 __le32 vdev_map;
Michal Kazior32653cf2014-12-03 10:10:26 +02006067 struct wmi_bcn_info bcn_info[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03006068} __packed;
6069
Yanbo Li8b019fb2016-01-14 15:39:19 -08006070struct wmi_10_2_4_bcn_info {
6071 struct wmi_tim_info tim_info;
6072 /* The 10.2.4 FW doesn't have p2p NOA info */
6073} __packed;
6074
6075struct wmi_10_2_4_host_swba_event {
6076 __le32 vdev_map;
6077 struct wmi_10_2_4_bcn_info bcn_info[0];
6078} __packed;
6079
Raja Mani3cec3be2015-06-22 20:22:21 +05306080/* 16 words = 512 client + 1 word = for guard */
6081#define WMI_10_4_TIM_BITMAP_ARRAY_SIZE 17
6082
6083struct wmi_10_4_tim_info {
6084 __le32 tim_len;
6085 __le32 tim_mcast;
6086 __le32 tim_bitmap[WMI_10_4_TIM_BITMAP_ARRAY_SIZE];
6087 __le32 tim_changed;
6088 __le32 tim_num_ps_pending;
6089} __packed;
6090
6091#define WMI_10_4_P2P_MAX_NOA_DESCRIPTORS 1
6092
6093struct wmi_10_4_p2p_noa_info {
6094 /* Bit 0 - Flag to indicate an update in NOA schedule
6095 * Bits 7-1 - Reserved
6096 */
6097 u8 changed;
6098 /* NOA index */
6099 u8 index;
6100 /* Bit 0 - Opp PS state of the AP
6101 * Bits 1-7 - Ctwindow in TUs
6102 */
6103 u8 ctwindow_oppps;
6104 /* Number of NOA descriptors */
6105 u8 num_descriptors;
6106
6107 struct wmi_p2p_noa_descriptor
6108 noa_descriptors[WMI_10_4_P2P_MAX_NOA_DESCRIPTORS];
6109} __packed;
6110
6111struct wmi_10_4_bcn_info {
6112 struct wmi_10_4_tim_info tim_info;
6113 struct wmi_10_4_p2p_noa_info p2p_noa_info;
6114} __packed;
6115
6116struct wmi_10_4_host_swba_event {
6117 __le32 vdev_map;
6118 struct wmi_10_4_bcn_info bcn_info[0];
6119} __packed;
6120
Kalle Valo5e3dd152013-06-12 20:52:10 +03006121#define WMI_MAX_AP_VDEV 16
6122
6123struct wmi_tbtt_offset_event {
6124 __le32 vdev_map;
6125 __le32 tbttoffset_list[WMI_MAX_AP_VDEV];
6126} __packed;
6127
Kalle Valo5e3dd152013-06-12 20:52:10 +03006128struct wmi_peer_create_cmd {
6129 __le32 vdev_id;
6130 struct wmi_mac_addr peer_macaddr;
Manikanta Pubbisettybe5b4f42017-07-28 15:15:43 +03006131 __le32 peer_type;
Kalle Valo5e3dd152013-06-12 20:52:10 +03006132} __packed;
6133
Marek Puzyniak7390ed32015-03-30 09:51:52 +03006134enum wmi_peer_type {
6135 WMI_PEER_TYPE_DEFAULT = 0,
6136 WMI_PEER_TYPE_BSS = 1,
6137 WMI_PEER_TYPE_TDLS = 2,
6138};
6139
Kalle Valo5e3dd152013-06-12 20:52:10 +03006140struct wmi_peer_delete_cmd {
6141 __le32 vdev_id;
6142 struct wmi_mac_addr peer_macaddr;
6143} __packed;
6144
6145struct wmi_peer_flush_tids_cmd {
6146 __le32 vdev_id;
6147 struct wmi_mac_addr peer_macaddr;
6148 __le32 peer_tid_bitmap;
6149} __packed;
6150
6151struct wmi_fixed_rate {
6152 /*
6153 * rate mode . 0: disable fixed rate (auto rate)
6154 * 1: legacy (non 11n) rate specified as ieee rate 2*Mbps
6155 * 2: ht20 11n rate specified as mcs index
6156 * 3: ht40 11n rate specified as mcs index
6157 */
6158 __le32 rate_mode;
6159 /*
6160 * 4 rate values for 4 rate series. series 0 is stored in byte 0 (LSB)
6161 * and series 3 is stored at byte 3 (MSB)
6162 */
6163 __le32 rate_series;
6164 /*
6165 * 4 retry counts for 4 rate series. retry count for rate 0 is stored
6166 * in byte 0 (LSB) and retry count for rate 3 is stored at byte 3
6167 * (MSB)
6168 */
6169 __le32 rate_retries;
6170} __packed;
6171
6172struct wmi_peer_fixed_rate_cmd {
6173 /* unique id identifying the VDEV, generated by the caller */
6174 __le32 vdev_id;
6175 /* peer MAC address */
6176 struct wmi_mac_addr peer_macaddr;
6177 /* fixed rate */
6178 struct wmi_fixed_rate peer_fixed_rate;
6179} __packed;
6180
6181#define WMI_MGMT_TID 17
6182
6183struct wmi_addba_clear_resp_cmd {
6184 /* unique id identifying the VDEV, generated by the caller */
6185 __le32 vdev_id;
6186 /* peer MAC address */
6187 struct wmi_mac_addr peer_macaddr;
6188} __packed;
6189
6190struct wmi_addba_send_cmd {
6191 /* unique id identifying the VDEV, generated by the caller */
6192 __le32 vdev_id;
6193 /* peer MAC address */
6194 struct wmi_mac_addr peer_macaddr;
6195 /* Tid number */
6196 __le32 tid;
6197 /* Buffer/Window size*/
6198 __le32 buffersize;
6199} __packed;
6200
6201struct wmi_delba_send_cmd {
6202 /* unique id identifying the VDEV, generated by the caller */
6203 __le32 vdev_id;
6204 /* peer MAC address */
6205 struct wmi_mac_addr peer_macaddr;
6206 /* Tid number */
6207 __le32 tid;
6208 /* Is Initiator */
6209 __le32 initiator;
6210 /* Reason code */
6211 __le32 reasoncode;
6212} __packed;
6213
6214struct wmi_addba_setresponse_cmd {
6215 /* unique id identifying the vdev, generated by the caller */
6216 __le32 vdev_id;
6217 /* peer mac address */
6218 struct wmi_mac_addr peer_macaddr;
6219 /* Tid number */
6220 __le32 tid;
6221 /* status code */
6222 __le32 statuscode;
6223} __packed;
6224
6225struct wmi_send_singleamsdu_cmd {
6226 /* unique id identifying the vdev, generated by the caller */
6227 __le32 vdev_id;
6228 /* peer mac address */
6229 struct wmi_mac_addr peer_macaddr;
6230 /* Tid number */
6231 __le32 tid;
6232} __packed;
6233
6234enum wmi_peer_smps_state {
6235 WMI_PEER_SMPS_PS_NONE = 0x0,
6236 WMI_PEER_SMPS_STATIC = 0x1,
6237 WMI_PEER_SMPS_DYNAMIC = 0x2
6238};
6239
Michal Kazior9797feb2014-02-14 14:49:48 +01006240enum wmi_peer_chwidth {
6241 WMI_PEER_CHWIDTH_20MHZ = 0,
6242 WMI_PEER_CHWIDTH_40MHZ = 1,
6243 WMI_PEER_CHWIDTH_80MHZ = 2,
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02006244 WMI_PEER_CHWIDTH_160MHZ = 3,
Michal Kazior9797feb2014-02-14 14:49:48 +01006245};
6246
Kalle Valo5e3dd152013-06-12 20:52:10 +03006247enum wmi_peer_param {
6248 WMI_PEER_SMPS_STATE = 0x1, /* see %wmi_peer_smps_state */
6249 WMI_PEER_AMPDU = 0x2,
6250 WMI_PEER_AUTHORIZE = 0x3,
6251 WMI_PEER_CHAN_WIDTH = 0x4,
6252 WMI_PEER_NSS = 0x5,
Michal Kazior0a987fb2015-02-13 13:30:15 +01006253 WMI_PEER_USE_4ADDR = 0x6,
Maharaja Kennadyrajanee8b08a2017-02-02 08:32:19 +02006254 WMI_PEER_DEBUG = 0xa,
Ryan Hsu9191fc2a2018-06-18 17:00:04 +03006255 WMI_PEER_PHYMODE = 0xd,
Michal Kazior0a987fb2015-02-13 13:30:15 +01006256 WMI_PEER_DUMMY_VAR = 0xff, /* dummy parameter for STA PS workaround */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006257};
6258
6259struct wmi_peer_set_param_cmd {
6260 __le32 vdev_id;
6261 struct wmi_mac_addr peer_macaddr;
6262 __le32 param_id;
6263 __le32 param_value;
6264} __packed;
6265
6266#define MAX_SUPPORTED_RATES 128
6267
6268struct wmi_rate_set {
6269 /* total number of rates */
6270 __le32 num_rates;
6271 /*
6272 * rates (each 8bit value) packed into a 32 bit word.
6273 * the rates are filled from least significant byte to most
6274 * significant byte.
6275 */
Kalle Valo14e105c2016-04-13 14:13:21 +03006276 __le32 rates[(MAX_SUPPORTED_RATES / 4) + 1];
Kalle Valo5e3dd152013-06-12 20:52:10 +03006277} __packed;
6278
6279struct wmi_rate_set_arg {
6280 unsigned int num_rates;
6281 u8 rates[MAX_SUPPORTED_RATES];
6282};
6283
6284/*
6285 * NOTE: It would bea good idea to represent the Tx MCS
6286 * info in one word and Rx in another word. This is split
6287 * into multiple words for convenience
6288 */
6289struct wmi_vht_rate_set {
6290 __le32 rx_max_rate; /* Max Rx data rate */
6291 __le32 rx_mcs_set; /* Negotiated RX VHT rates */
6292 __le32 tx_max_rate; /* Max Tx data rate */
6293 __le32 tx_mcs_set; /* Negotiated TX VHT rates */
6294} __packed;
6295
6296struct wmi_vht_rate_set_arg {
6297 u32 rx_max_rate;
6298 u32 rx_mcs_set;
6299 u32 tx_max_rate;
6300 u32 tx_mcs_set;
6301};
6302
6303struct wmi_peer_set_rates_cmd {
6304 /* peer MAC address */
6305 struct wmi_mac_addr peer_macaddr;
6306 /* legacy rate set */
6307 struct wmi_rate_set peer_legacy_rates;
6308 /* ht rate set */
6309 struct wmi_rate_set peer_ht_rates;
6310} __packed;
6311
6312struct wmi_peer_set_q_empty_callback_cmd {
6313 /* unique id identifying the VDEV, generated by the caller */
6314 __le32 vdev_id;
6315 /* peer MAC address */
6316 struct wmi_mac_addr peer_macaddr;
6317 __le32 callback_enable;
6318} __packed;
6319
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02006320struct wmi_peer_flags_map {
6321 u32 auth;
6322 u32 qos;
6323 u32 need_ptk_4_way;
6324 u32 need_gtk_2_way;
6325 u32 apsd;
6326 u32 ht;
6327 u32 bw40;
6328 u32 stbc;
6329 u32 ldbc;
6330 u32 dyn_mimops;
6331 u32 static_mimops;
6332 u32 spatial_mux;
6333 u32 vht;
6334 u32 bw80;
6335 u32 vht_2g;
6336 u32 pmf;
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02006337 u32 bw160;
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02006338};
6339
6340enum wmi_peer_flags {
6341 WMI_PEER_AUTH = 0x00000001,
6342 WMI_PEER_QOS = 0x00000002,
6343 WMI_PEER_NEED_PTK_4_WAY = 0x00000004,
6344 WMI_PEER_NEED_GTK_2_WAY = 0x00000010,
6345 WMI_PEER_APSD = 0x00000800,
6346 WMI_PEER_HT = 0x00001000,
6347 WMI_PEER_40MHZ = 0x00002000,
6348 WMI_PEER_STBC = 0x00008000,
6349 WMI_PEER_LDPC = 0x00010000,
6350 WMI_PEER_DYN_MIMOPS = 0x00020000,
6351 WMI_PEER_STATIC_MIMOPS = 0x00040000,
6352 WMI_PEER_SPATIAL_MUX = 0x00200000,
6353 WMI_PEER_VHT = 0x02000000,
6354 WMI_PEER_80MHZ = 0x04000000,
6355 WMI_PEER_VHT_2G = 0x08000000,
6356 WMI_PEER_PMF = 0x10000000,
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02006357 WMI_PEER_160MHZ = 0x20000000
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02006358};
6359
6360enum wmi_10x_peer_flags {
6361 WMI_10X_PEER_AUTH = 0x00000001,
6362 WMI_10X_PEER_QOS = 0x00000002,
6363 WMI_10X_PEER_NEED_PTK_4_WAY = 0x00000004,
6364 WMI_10X_PEER_NEED_GTK_2_WAY = 0x00000010,
6365 WMI_10X_PEER_APSD = 0x00000800,
6366 WMI_10X_PEER_HT = 0x00001000,
6367 WMI_10X_PEER_40MHZ = 0x00002000,
6368 WMI_10X_PEER_STBC = 0x00008000,
6369 WMI_10X_PEER_LDPC = 0x00010000,
6370 WMI_10X_PEER_DYN_MIMOPS = 0x00020000,
6371 WMI_10X_PEER_STATIC_MIMOPS = 0x00040000,
6372 WMI_10X_PEER_SPATIAL_MUX = 0x00200000,
6373 WMI_10X_PEER_VHT = 0x02000000,
6374 WMI_10X_PEER_80MHZ = 0x04000000,
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02006375 WMI_10X_PEER_160MHZ = 0x20000000
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02006376};
6377
6378enum wmi_10_2_peer_flags {
6379 WMI_10_2_PEER_AUTH = 0x00000001,
6380 WMI_10_2_PEER_QOS = 0x00000002,
6381 WMI_10_2_PEER_NEED_PTK_4_WAY = 0x00000004,
6382 WMI_10_2_PEER_NEED_GTK_2_WAY = 0x00000010,
6383 WMI_10_2_PEER_APSD = 0x00000800,
6384 WMI_10_2_PEER_HT = 0x00001000,
6385 WMI_10_2_PEER_40MHZ = 0x00002000,
6386 WMI_10_2_PEER_STBC = 0x00008000,
6387 WMI_10_2_PEER_LDPC = 0x00010000,
6388 WMI_10_2_PEER_DYN_MIMOPS = 0x00020000,
6389 WMI_10_2_PEER_STATIC_MIMOPS = 0x00040000,
6390 WMI_10_2_PEER_SPATIAL_MUX = 0x00200000,
6391 WMI_10_2_PEER_VHT = 0x02000000,
6392 WMI_10_2_PEER_80MHZ = 0x04000000,
6393 WMI_10_2_PEER_VHT_2G = 0x08000000,
6394 WMI_10_2_PEER_PMF = 0x10000000,
Sebastian Gottschallbc1efd72017-01-12 13:02:12 +02006395 WMI_10_2_PEER_160MHZ = 0x20000000
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02006396};
Kalle Valo5e3dd152013-06-12 20:52:10 +03006397
6398/*
6399 * Peer rate capabilities.
6400 *
6401 * This is of interest to the ratecontrol
6402 * module which resides in the firmware. The bit definitions are
6403 * consistent with that defined in if_athrate.c.
6404 */
6405#define WMI_RC_DS_FLAG 0x01
6406#define WMI_RC_CW40_FLAG 0x02
6407#define WMI_RC_SGI_FLAG 0x04
6408#define WMI_RC_HT_FLAG 0x08
6409#define WMI_RC_RTSCTS_FLAG 0x10
6410#define WMI_RC_TX_STBC_FLAG 0x20
6411#define WMI_RC_RX_STBC_FLAG 0xC0
6412#define WMI_RC_RX_STBC_FLAG_S 6
6413#define WMI_RC_WEP_TKIP_FLAG 0x100
6414#define WMI_RC_TS_FLAG 0x200
6415#define WMI_RC_UAPSD_FLAG 0x400
6416
6417/* Maximum listen interval supported by hw in units of beacon interval */
6418#define ATH10K_MAX_HW_LISTEN_INTERVAL 5
6419
Michal Kazior24c88f72014-07-25 13:32:17 +02006420struct wmi_common_peer_assoc_complete_cmd {
Kalle Valo5e3dd152013-06-12 20:52:10 +03006421 struct wmi_mac_addr peer_macaddr;
6422 __le32 vdev_id;
6423 __le32 peer_new_assoc; /* 1=assoc, 0=reassoc */
6424 __le32 peer_associd; /* 16 LSBs */
6425 __le32 peer_flags;
6426 __le32 peer_caps; /* 16 LSBs */
6427 __le32 peer_listen_intval;
6428 __le32 peer_ht_caps;
6429 __le32 peer_max_mpdu;
6430 __le32 peer_mpdu_density; /* 0..16 */
6431 __le32 peer_rate_caps;
6432 struct wmi_rate_set peer_legacy_rates;
6433 struct wmi_rate_set peer_ht_rates;
6434 __le32 peer_nss; /* num of spatial streams */
6435 __le32 peer_vht_caps;
6436 __le32 peer_phymode;
6437 struct wmi_vht_rate_set peer_vht_rates;
Michal Kazior24c88f72014-07-25 13:32:17 +02006438};
6439
6440struct wmi_main_peer_assoc_complete_cmd {
6441 struct wmi_common_peer_assoc_complete_cmd cmd;
6442
Kalle Valo5e3dd152013-06-12 20:52:10 +03006443 /* HT Operation Element of the peer. Five bytes packed in 2
Marcin Rokicki37ff1b02017-02-20 15:38:50 +01006444 * INT32 array and filled from lsb to msb.
6445 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006446 __le32 peer_ht_info[2];
6447} __packed;
6448
Michal Kazior24c88f72014-07-25 13:32:17 +02006449struct wmi_10_1_peer_assoc_complete_cmd {
6450 struct wmi_common_peer_assoc_complete_cmd cmd;
6451} __packed;
6452
6453#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_LSB 0
6454#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_MASK 0x0f
6455#define WMI_PEER_ASSOC_INFO0_MAX_NSS_LSB 4
6456#define WMI_PEER_ASSOC_INFO0_MAX_NSS_MASK 0xf0
6457
6458struct wmi_10_2_peer_assoc_complete_cmd {
6459 struct wmi_common_peer_assoc_complete_cmd cmd;
6460 __le32 info0; /* WMI_PEER_ASSOC_INFO0_ */
6461} __packed;
6462
Ben Greearcc914a52017-06-16 10:37:45 +03006463#define PEER_BW_RXNSS_OVERRIDE_OFFSET 31
6464
Vasanthakumar Thiagarajanb54e16f2015-11-05 11:33:58 +05306465struct wmi_10_4_peer_assoc_complete_cmd {
6466 struct wmi_10_2_peer_assoc_complete_cmd cmd;
6467 __le32 peer_bw_rxnss_override;
6468} __packed;
6469
Kalle Valo5e3dd152013-06-12 20:52:10 +03006470struct wmi_peer_assoc_complete_arg {
6471 u8 addr[ETH_ALEN];
6472 u32 vdev_id;
6473 bool peer_reassoc;
6474 u16 peer_aid;
6475 u32 peer_flags; /* see %WMI_PEER_ */
6476 u16 peer_caps;
6477 u32 peer_listen_intval;
6478 u32 peer_ht_caps;
6479 u32 peer_max_mpdu;
6480 u32 peer_mpdu_density; /* 0..16 */
6481 u32 peer_rate_caps; /* see %WMI_RC_ */
6482 struct wmi_rate_set_arg peer_legacy_rates;
6483 struct wmi_rate_set_arg peer_ht_rates;
6484 u32 peer_num_spatial_streams;
6485 u32 peer_vht_caps;
6486 enum wmi_phy_mode peer_phymode;
6487 struct wmi_vht_rate_set_arg peer_vht_rates;
Ben Greearcc914a52017-06-16 10:37:45 +03006488 u32 peer_bw_rxnss_override;
Kalle Valo5e3dd152013-06-12 20:52:10 +03006489};
6490
6491struct wmi_peer_add_wds_entry_cmd {
6492 /* peer MAC address */
6493 struct wmi_mac_addr peer_macaddr;
6494 /* wds MAC addr */
6495 struct wmi_mac_addr wds_macaddr;
6496} __packed;
6497
6498struct wmi_peer_remove_wds_entry_cmd {
6499 /* wds MAC addr */
6500 struct wmi_mac_addr wds_macaddr;
6501} __packed;
6502
6503struct wmi_peer_q_empty_callback_event {
6504 /* peer MAC address */
6505 struct wmi_mac_addr peer_macaddr;
6506} __packed;
6507
6508/*
6509 * Channel info WMI event
6510 */
6511struct wmi_chan_info_event {
6512 __le32 err_code;
6513 __le32 freq;
6514 __le32 cmd_flags;
6515 __le32 noise_floor;
6516 __le32 rx_clear_count;
6517 __le32 cycle_count;
Rakesh Pillai13104922018-10-17 16:50:03 +05306518 __le32 chan_tx_pwr_range;
6519 __le32 chan_tx_pwr_tp;
6520 __le32 rx_frame_count;
6521 __le32 my_bss_rx_cycle_count;
6522 __le32 rx_11b_mode_data_duration;
6523 __le32 tx_frame_cnt;
6524 __le32 mac_clk_mhz;
6525
Kalle Valo5e3dd152013-06-12 20:52:10 +03006526} __packed;
6527
Raja Manib2297ba2015-06-22 20:22:23 +05306528struct wmi_10_4_chan_info_event {
6529 __le32 err_code;
6530 __le32 freq;
6531 __le32 cmd_flags;
6532 __le32 noise_floor;
6533 __le32 rx_clear_count;
6534 __le32 cycle_count;
6535 __le32 chan_tx_pwr_range;
6536 __le32 chan_tx_pwr_tp;
6537 __le32 rx_frame_count;
6538} __packed;
6539
Kalle Valo5a13e762014-01-20 11:01:46 +02006540struct wmi_peer_sta_kickout_event {
6541 struct wmi_mac_addr peer_macaddr;
6542} __packed;
6543
Michal Kazior2e1dea42013-07-31 10:32:40 +02006544#define WMI_CHAN_INFO_FLAG_COMPLETE BIT(0)
Vasanthakumar Thiagarajan3d2a2e22015-08-12 16:24:04 +05306545#define WMI_CHAN_INFO_FLAG_PRE_COMPLETE BIT(1)
Michal Kazior2e1dea42013-07-31 10:32:40 +02006546
Kalle Valo5e3dd152013-06-12 20:52:10 +03006547/* Beacon filter wmi command info */
6548#define BCN_FLT_MAX_SUPPORTED_IES 256
6549#define BCN_FLT_MAX_ELEMS_IE_LIST (BCN_FLT_MAX_SUPPORTED_IES / 32)
6550
6551struct bss_bcn_stats {
6552 __le32 vdev_id;
6553 __le32 bss_bcnsdropped;
6554 __le32 bss_bcnsdelivered;
6555} __packed;
6556
6557struct bcn_filter_stats {
6558 __le32 bcns_dropped;
6559 __le32 bcns_delivered;
6560 __le32 activefilters;
6561 struct bss_bcn_stats bss_stats;
6562} __packed;
6563
6564struct wmi_add_bcn_filter_cmd {
6565 u32 vdev_id;
6566 u32 ie_map[BCN_FLT_MAX_ELEMS_IE_LIST];
6567} __packed;
6568
6569enum wmi_sta_keepalive_method {
6570 WMI_STA_KEEPALIVE_METHOD_NULL_FRAME = 1,
6571 WMI_STA_KEEPALIVE_METHOD_UNSOLICITATED_ARP_RESPONSE = 2,
6572};
6573
Michal Kazior46725b152015-01-28 09:57:49 +02006574#define WMI_STA_KEEPALIVE_INTERVAL_DISABLE 0
6575
6576/* Firmware crashes if keepalive interval exceeds this limit */
6577#define WMI_STA_KEEPALIVE_INTERVAL_MAX_SECONDS 0xffff
6578
Kalle Valo5e3dd152013-06-12 20:52:10 +03006579/* note: ip4 addresses are in network byte order, i.e. big endian */
6580struct wmi_sta_keepalive_arp_resp {
6581 __be32 src_ip4_addr;
6582 __be32 dest_ip4_addr;
6583 struct wmi_mac_addr dest_mac_addr;
6584} __packed;
6585
6586struct wmi_sta_keepalive_cmd {
6587 __le32 vdev_id;
6588 __le32 enabled;
6589 __le32 method; /* WMI_STA_KEEPALIVE_METHOD_ */
6590 __le32 interval; /* in seconds */
6591 struct wmi_sta_keepalive_arp_resp arp_resp;
6592} __packed;
6593
Janusz Dziedzic6e8b1882015-01-28 09:57:39 +02006594struct wmi_sta_keepalive_arg {
6595 u32 vdev_id;
6596 u32 enabled;
6597 u32 method;
6598 u32 interval;
6599 __be32 src_ip4_addr;
6600 __be32 dest_ip4_addr;
6601 const u8 dest_mac_addr[ETH_ALEN];
6602};
6603
Michal Kazior9cfbce72013-07-16 09:54:36 +02006604enum wmi_force_fw_hang_type {
6605 WMI_FORCE_FW_HANG_ASSERT = 1,
6606 WMI_FORCE_FW_HANG_NO_DETECT,
6607 WMI_FORCE_FW_HANG_CTRL_EP_FULL,
6608 WMI_FORCE_FW_HANG_EMPTY_POINT,
6609 WMI_FORCE_FW_HANG_STACK_OVERFLOW,
6610 WMI_FORCE_FW_HANG_INFINITE_LOOP,
6611};
6612
6613#define WMI_FORCE_FW_HANG_RANDOM_TIME 0xFFFFFFFF
6614
6615struct wmi_force_fw_hang_cmd {
6616 __le32 type;
6617 __le32 delay_ms;
6618} __packed;
6619
Maharaja Kennadyrajandb251d72018-07-18 19:04:20 +05306620enum wmi_pdev_reset_mode_type {
6621 WMI_RST_MODE_TX_FLUSH = 1,
6622 WMI_RST_MODE_WARM_RESET,
6623 WMI_RST_MODE_COLD_RESET,
6624 WMI_RST_MODE_WARM_RESET_RESTORE_CAL,
6625 WMI_RST_MODE_COLD_RESET_RESTORE_CAL,
6626 WMI_RST_MODE_MAX,
6627};
6628
Kalle Valof118a3e2014-01-03 12:59:31 +02006629enum ath10k_dbglog_level {
6630 ATH10K_DBGLOG_LEVEL_VERBOSE = 0,
6631 ATH10K_DBGLOG_LEVEL_INFO = 1,
6632 ATH10K_DBGLOG_LEVEL_WARN = 2,
6633 ATH10K_DBGLOG_LEVEL_ERR = 3,
6634};
6635
6636/* VAP ids to enable dbglog */
6637#define ATH10K_DBGLOG_CFG_VAP_LOG_LSB 0
6638#define ATH10K_DBGLOG_CFG_VAP_LOG_MASK 0x0000ffff
6639
6640/* to enable dbglog in the firmware */
6641#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_LSB 16
6642#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_MASK 0x00010000
6643
6644/* timestamp resolution */
6645#define ATH10K_DBGLOG_CFG_RESOLUTION_LSB 17
6646#define ATH10K_DBGLOG_CFG_RESOLUTION_MASK 0x000E0000
6647
6648/* number of queued messages before sending them to the host */
6649#define ATH10K_DBGLOG_CFG_REPORT_SIZE_LSB 20
6650#define ATH10K_DBGLOG_CFG_REPORT_SIZE_MASK 0x0ff00000
6651
6652/*
6653 * Log levels to enable. This defines the minimum level to enable, this is
6654 * not a bitmask. See enum ath10k_dbglog_level for the values.
6655 */
6656#define ATH10K_DBGLOG_CFG_LOG_LVL_LSB 28
6657#define ATH10K_DBGLOG_CFG_LOG_LVL_MASK 0x70000000
6658
6659/*
6660 * Note: this is a cleaned up version of a struct firmware uses. For
6661 * example, config_valid was hidden inside an array.
6662 */
6663struct wmi_dbglog_cfg_cmd {
6664 /* bitmask to hold mod id config*/
6665 __le32 module_enable;
6666
6667 /* see ATH10K_DBGLOG_CFG_ */
6668 __le32 config_enable;
6669
6670 /* mask of module id bits to be changed */
6671 __le32 module_valid;
6672
6673 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
6674 __le32 config_valid;
6675} __packed;
6676
Maharaja Kennadyrajanafcbc822016-08-23 15:35:36 +05306677struct wmi_10_4_dbglog_cfg_cmd {
6678 /* bitmask to hold mod id config*/
6679 __le64 module_enable;
6680
6681 /* see ATH10K_DBGLOG_CFG_ */
6682 __le32 config_enable;
6683
6684 /* mask of module id bits to be changed */
6685 __le64 module_valid;
6686
6687 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
6688 __le32 config_valid;
6689} __packed;
6690
Michal Kaziorc1a46542015-03-10 16:21:54 +02006691enum wmi_roam_reason {
6692 WMI_ROAM_REASON_BETTER_AP = 1,
6693 WMI_ROAM_REASON_BEACON_MISS = 2,
6694 WMI_ROAM_REASON_LOW_RSSI = 3,
6695 WMI_ROAM_REASON_SUITABLE_AP_FOUND = 4,
6696 WMI_ROAM_REASON_HO_FAILED = 5,
6697
6698 /* keep last */
6699 WMI_ROAM_REASON_MAX,
6700};
6701
6702struct wmi_roam_ev {
6703 __le32 vdev_id;
6704 __le32 reason;
6705} __packed;
6706
Kalle Valo5e3dd152013-06-12 20:52:10 +03006707#define ATH10K_FRAGMT_THRESHOLD_MIN 540
6708#define ATH10K_FRAGMT_THRESHOLD_MAX 2346
6709
6710#define WMI_MAX_EVENT 0x1000
6711/* Maximum number of pending TXed WMI packets */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006712#define WMI_SKB_HEADROOM sizeof(struct wmi_cmd_hdr)
6713
6714/* By default disable power save for IBSS */
6715#define ATH10K_DEFAULT_ATIM 0
6716
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006717#define WMI_MAX_MEM_REQS 16
6718
Michal Kazior32653cf2014-12-03 10:10:26 +02006719struct wmi_scan_ev_arg {
6720 __le32 event_type; /* %WMI_SCAN_EVENT_ */
6721 __le32 reason; /* %WMI_SCAN_REASON_ */
6722 __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
6723 __le32 scan_req_id;
6724 __le32 scan_id;
6725 __le32 vdev_id;
6726};
6727
Rakesh Pillaidc405152018-07-25 10:59:45 +03006728struct wmi_tlv_mgmt_tx_compl_ev_arg {
6729 __le32 desc_id;
6730 __le32 status;
6731 __le32 pdev_id;
6732};
6733
Rakesh Pillaicc123fa2019-01-25 09:40:01 +05306734struct wmi_tlv_mgmt_tx_bundle_compl_ev_arg {
6735 __le32 num_reports;
6736 const __le32 *desc_ids;
6737 const __le32 *status;
6738};
6739
Michal Kazior32653cf2014-12-03 10:10:26 +02006740struct wmi_mgmt_rx_ev_arg {
6741 __le32 channel;
6742 __le32 snr;
6743 __le32 rate;
6744 __le32 phy_mode;
6745 __le32 buf_len;
6746 __le32 status; /* %WMI_RX_STATUS_ */
Peter Oh8d130962016-03-01 09:52:49 -08006747 struct wmi_mgmt_rx_ext_info ext_info;
Michal Kazior32653cf2014-12-03 10:10:26 +02006748};
6749
6750struct wmi_ch_info_ev_arg {
6751 __le32 err_code;
6752 __le32 freq;
6753 __le32 cmd_flags;
6754 __le32 noise_floor;
6755 __le32 rx_clear_count;
6756 __le32 cycle_count;
Raja Manib2297ba2015-06-22 20:22:23 +05306757 __le32 chan_tx_pwr_range;
6758 __le32 chan_tx_pwr_tp;
6759 __le32 rx_frame_count;
Rakesh Pillai13104922018-10-17 16:50:03 +05306760 __le32 my_bss_rx_cycle_count;
6761 __le32 rx_11b_mode_data_duration;
6762 __le32 tx_frame_cnt;
6763 __le32 mac_clk_mhz;
Michal Kazior32653cf2014-12-03 10:10:26 +02006764};
6765
Ben Greear833fd342018-09-06 19:46:20 +03006766/* From 10.4 firmware, not sure all have the same values. */
6767enum wmi_vdev_start_status {
6768 WMI_VDEV_START_OK = 0,
6769 WMI_VDEV_START_CHAN_INVALID,
6770};
6771
Michal Kazior32653cf2014-12-03 10:10:26 +02006772struct wmi_vdev_start_ev_arg {
6773 __le32 vdev_id;
6774 __le32 req_id;
6775 __le32 resp_type; /* %WMI_VDEV_RESP_ */
Ben Greear833fd342018-09-06 19:46:20 +03006776 __le32 status; /* See wmi_vdev_start_status enum above */
Michal Kazior32653cf2014-12-03 10:10:26 +02006777};
6778
6779struct wmi_peer_kick_ev_arg {
6780 const u8 *mac_addr;
6781};
6782
6783struct wmi_swba_ev_arg {
6784 __le32 vdev_map;
Raja Mania03fee32015-06-22 20:22:20 +05306785 struct wmi_tim_info_arg tim_info[WMI_MAX_AP_VDEV];
Michal Kazior32653cf2014-12-03 10:10:26 +02006786 const struct wmi_p2p_noa_info *noa_info[WMI_MAX_AP_VDEV];
6787};
6788
6789struct wmi_phyerr_ev_arg {
Raja Mani991adf72015-08-14 11:13:29 +03006790 u32 tsf_timestamp;
6791 u16 freq1;
6792 u16 freq2;
6793 u8 rssi_combined;
6794 u8 chan_width_mhz;
6795 u8 phy_err_code;
6796 u16 nf_chains[4];
6797 u32 buf_len;
6798 const u8 *buf;
6799 u8 hdr_len;
6800};
6801
6802struct wmi_phyerr_hdr_arg {
6803 u32 num_phyerrs;
6804 u32 tsf_l32;
6805 u32 tsf_u32;
6806 u32 buf_len;
6807 const void *phyerrs;
Michal Kazior32653cf2014-12-03 10:10:26 +02006808};
6809
Sriram R6f6eb1b2018-05-15 14:39:49 +05306810struct wmi_dfs_status_ev_arg {
6811 u32 status;
6812};
6813
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006814struct wmi_svc_rdy_ev_arg {
6815 __le32 min_tx_power;
6816 __le32 max_tx_power;
6817 __le32 ht_cap;
6818 __le32 vht_cap;
6819 __le32 sw_ver0;
6820 __le32 sw_ver1;
Michal Kaziorca996ec2014-12-03 10:11:32 +02006821 __le32 fw_build;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006822 __le32 phy_capab;
6823 __le32 num_rf_chains;
6824 __le32 eeprom_rd;
6825 __le32 num_mem_reqs;
Tamizh chelvam523f6702017-02-23 18:48:22 +05306826 __le32 low_5ghz_chan;
6827 __le32 high_5ghz_chan;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006828 const __le32 *service_map;
Michal Kazior2a3e60d2014-11-27 10:11:15 +01006829 size_t service_map_len;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006830 const struct wlan_host_mem_req *mem_reqs[WMI_MAX_MEM_REQS];
6831};
6832
Carl Huangcea19a62018-04-19 19:39:38 +03006833struct wmi_svc_avail_ev_arg {
6834 __le32 service_map_ext_len;
6835 const __le32 *service_map_ext;
6836};
6837
Michal Kazior32653cf2014-12-03 10:10:26 +02006838struct wmi_rdy_ev_arg {
6839 __le32 sw_version;
6840 __le32 abi_version;
6841 __le32 status;
6842 const u8 *mac_addr;
6843};
6844
Michal Kaziorc1a46542015-03-10 16:21:54 +02006845struct wmi_roam_ev_arg {
6846 __le32 vdev_id;
6847 __le32 reason;
6848 __le32 rssi;
6849};
6850
Michal Kazior84d49112016-08-19 13:37:42 +03006851struct wmi_echo_ev_arg {
6852 __le32 value;
6853};
6854
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02006855struct wmi_pdev_temperature_event {
6856 /* temperature value in Celcius degree */
6857 __le32 temperature;
6858} __packed;
6859
Rajkumar Manoharan89d2d182016-04-27 16:23:21 +05306860struct wmi_pdev_bss_chan_info_event {
6861 __le32 freq;
6862 __le32 noise_floor;
6863 __le64 cycle_busy;
6864 __le64 cycle_total;
6865 __le64 cycle_tx;
6866 __le64 cycle_rx;
6867 __le64 cycle_rx_bss;
6868 __le32 reserved;
6869} __packed;
6870
Janusz Dziedzicf5431e82015-03-23 17:32:53 +02006871/* WOW structures */
6872enum wmi_wow_wakeup_event {
6873 WOW_BMISS_EVENT = 0,
6874 WOW_BETTER_AP_EVENT,
6875 WOW_DEAUTH_RECVD_EVENT,
6876 WOW_MAGIC_PKT_RECVD_EVENT,
6877 WOW_GTK_ERR_EVENT,
6878 WOW_FOURWAY_HSHAKE_EVENT,
6879 WOW_EAPOL_RECVD_EVENT,
6880 WOW_NLO_DETECTED_EVENT,
6881 WOW_DISASSOC_RECVD_EVENT,
6882 WOW_PATTERN_MATCH_EVENT,
6883 WOW_CSA_IE_EVENT,
6884 WOW_PROBE_REQ_WPS_IE_EVENT,
6885 WOW_AUTH_REQ_EVENT,
6886 WOW_ASSOC_REQ_EVENT,
6887 WOW_HTT_EVENT,
6888 WOW_RA_MATCH_EVENT,
6889 WOW_HOST_AUTO_SHUTDOWN_EVENT,
6890 WOW_IOAC_MAGIC_EVENT,
6891 WOW_IOAC_SHORT_EVENT,
6892 WOW_IOAC_EXTEND_EVENT,
6893 WOW_IOAC_TIMER_EVENT,
6894 WOW_DFS_PHYERR_RADAR_EVENT,
6895 WOW_BEACON_EVENT,
6896 WOW_CLIENT_KICKOUT_EVENT,
6897 WOW_EVENT_MAX,
6898};
6899
6900#define C2S(x) case x: return #x
6901
6902static inline const char *wow_wakeup_event(enum wmi_wow_wakeup_event ev)
6903{
6904 switch (ev) {
6905 C2S(WOW_BMISS_EVENT);
6906 C2S(WOW_BETTER_AP_EVENT);
6907 C2S(WOW_DEAUTH_RECVD_EVENT);
6908 C2S(WOW_MAGIC_PKT_RECVD_EVENT);
6909 C2S(WOW_GTK_ERR_EVENT);
6910 C2S(WOW_FOURWAY_HSHAKE_EVENT);
6911 C2S(WOW_EAPOL_RECVD_EVENT);
6912 C2S(WOW_NLO_DETECTED_EVENT);
6913 C2S(WOW_DISASSOC_RECVD_EVENT);
6914 C2S(WOW_PATTERN_MATCH_EVENT);
6915 C2S(WOW_CSA_IE_EVENT);
6916 C2S(WOW_PROBE_REQ_WPS_IE_EVENT);
6917 C2S(WOW_AUTH_REQ_EVENT);
6918 C2S(WOW_ASSOC_REQ_EVENT);
6919 C2S(WOW_HTT_EVENT);
6920 C2S(WOW_RA_MATCH_EVENT);
6921 C2S(WOW_HOST_AUTO_SHUTDOWN_EVENT);
6922 C2S(WOW_IOAC_MAGIC_EVENT);
6923 C2S(WOW_IOAC_SHORT_EVENT);
6924 C2S(WOW_IOAC_EXTEND_EVENT);
6925 C2S(WOW_IOAC_TIMER_EVENT);
6926 C2S(WOW_DFS_PHYERR_RADAR_EVENT);
6927 C2S(WOW_BEACON_EVENT);
6928 C2S(WOW_CLIENT_KICKOUT_EVENT);
6929 C2S(WOW_EVENT_MAX);
6930 default:
6931 return NULL;
6932 }
6933}
6934
6935enum wmi_wow_wake_reason {
6936 WOW_REASON_UNSPECIFIED = -1,
6937 WOW_REASON_NLOD = 0,
6938 WOW_REASON_AP_ASSOC_LOST,
6939 WOW_REASON_LOW_RSSI,
6940 WOW_REASON_DEAUTH_RECVD,
6941 WOW_REASON_DISASSOC_RECVD,
6942 WOW_REASON_GTK_HS_ERR,
6943 WOW_REASON_EAP_REQ,
6944 WOW_REASON_FOURWAY_HS_RECV,
6945 WOW_REASON_TIMER_INTR_RECV,
6946 WOW_REASON_PATTERN_MATCH_FOUND,
6947 WOW_REASON_RECV_MAGIC_PATTERN,
6948 WOW_REASON_P2P_DISC,
6949 WOW_REASON_WLAN_HB,
6950 WOW_REASON_CSA_EVENT,
6951 WOW_REASON_PROBE_REQ_WPS_IE_RECV,
6952 WOW_REASON_AUTH_REQ_RECV,
6953 WOW_REASON_ASSOC_REQ_RECV,
6954 WOW_REASON_HTT_EVENT,
6955 WOW_REASON_RA_MATCH,
6956 WOW_REASON_HOST_AUTO_SHUTDOWN,
6957 WOW_REASON_IOAC_MAGIC_EVENT,
6958 WOW_REASON_IOAC_SHORT_EVENT,
6959 WOW_REASON_IOAC_EXTEND_EVENT,
6960 WOW_REASON_IOAC_TIMER_EVENT,
6961 WOW_REASON_ROAM_HO,
6962 WOW_REASON_DFS_PHYERR_RADADR_EVENT,
6963 WOW_REASON_BEACON_RECV,
6964 WOW_REASON_CLIENT_KICKOUT_EVENT,
6965 WOW_REASON_DEBUG_TEST = 0xFF,
6966};
6967
6968static inline const char *wow_reason(enum wmi_wow_wake_reason reason)
6969{
6970 switch (reason) {
6971 C2S(WOW_REASON_UNSPECIFIED);
6972 C2S(WOW_REASON_NLOD);
6973 C2S(WOW_REASON_AP_ASSOC_LOST);
6974 C2S(WOW_REASON_LOW_RSSI);
6975 C2S(WOW_REASON_DEAUTH_RECVD);
6976 C2S(WOW_REASON_DISASSOC_RECVD);
6977 C2S(WOW_REASON_GTK_HS_ERR);
6978 C2S(WOW_REASON_EAP_REQ);
6979 C2S(WOW_REASON_FOURWAY_HS_RECV);
6980 C2S(WOW_REASON_TIMER_INTR_RECV);
6981 C2S(WOW_REASON_PATTERN_MATCH_FOUND);
6982 C2S(WOW_REASON_RECV_MAGIC_PATTERN);
6983 C2S(WOW_REASON_P2P_DISC);
6984 C2S(WOW_REASON_WLAN_HB);
6985 C2S(WOW_REASON_CSA_EVENT);
6986 C2S(WOW_REASON_PROBE_REQ_WPS_IE_RECV);
6987 C2S(WOW_REASON_AUTH_REQ_RECV);
6988 C2S(WOW_REASON_ASSOC_REQ_RECV);
6989 C2S(WOW_REASON_HTT_EVENT);
6990 C2S(WOW_REASON_RA_MATCH);
6991 C2S(WOW_REASON_HOST_AUTO_SHUTDOWN);
6992 C2S(WOW_REASON_IOAC_MAGIC_EVENT);
6993 C2S(WOW_REASON_IOAC_SHORT_EVENT);
6994 C2S(WOW_REASON_IOAC_EXTEND_EVENT);
6995 C2S(WOW_REASON_IOAC_TIMER_EVENT);
6996 C2S(WOW_REASON_ROAM_HO);
6997 C2S(WOW_REASON_DFS_PHYERR_RADADR_EVENT);
6998 C2S(WOW_REASON_BEACON_RECV);
6999 C2S(WOW_REASON_CLIENT_KICKOUT_EVENT);
7000 C2S(WOW_REASON_DEBUG_TEST);
7001 default:
7002 return NULL;
7003 }
7004}
7005
7006#undef C2S
7007
7008struct wmi_wow_ev_arg {
7009 u32 vdev_id;
7010 u32 flag;
7011 enum wmi_wow_wake_reason wake_reason;
7012 u32 data_len;
7013};
7014
Janusz Dziedzic25c86612015-03-23 17:32:54 +02007015#define WOW_MIN_PATTERN_SIZE 1
7016#define WOW_MAX_PATTERN_SIZE 148
7017#define WOW_MAX_PKT_OFFSET 128
Wen Gongfa3440f2018-04-19 19:40:07 +03007018#define WOW_HDR_LEN (sizeof(struct ieee80211_hdr_3addr) + \
7019 sizeof(struct rfc1042_hdr))
7020#define WOW_MAX_REDUCE (WOW_HDR_LEN - sizeof(struct ethhdr) - \
7021 offsetof(struct ieee80211_hdr_3addr, addr1))
Janusz Dziedzic25c86612015-03-23 17:32:54 +02007022
Marek Puzyniakad45c882015-03-30 09:51:53 +03007023enum wmi_tdls_state {
7024 WMI_TDLS_DISABLE,
7025 WMI_TDLS_ENABLE_PASSIVE,
7026 WMI_TDLS_ENABLE_ACTIVE,
Yingying Tang4c9f8d12018-03-28 12:13:07 +03007027 WMI_TDLS_ENABLE_ACTIVE_EXTERNAL_CONTROL,
Marek Puzyniakad45c882015-03-30 09:51:53 +03007028};
7029
7030enum wmi_tdls_peer_state {
7031 WMI_TDLS_PEER_STATE_PEERING,
7032 WMI_TDLS_PEER_STATE_CONNECTED,
7033 WMI_TDLS_PEER_STATE_TEARDOWN,
7034};
7035
7036struct wmi_tdls_peer_update_cmd_arg {
7037 u32 vdev_id;
7038 enum wmi_tdls_peer_state peer_state;
7039 u8 addr[ETH_ALEN];
7040};
7041
7042#define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32
7043
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03007044#define WMI_TDLS_PEER_SP_MASK 0x60
7045#define WMI_TDLS_PEER_SP_LSB 5
7046
7047enum wmi_tdls_options {
7048 WMI_TDLS_OFFCHAN_EN = BIT(0),
7049 WMI_TDLS_BUFFER_STA_EN = BIT(1),
7050 WMI_TDLS_SLEEP_STA_EN = BIT(2),
7051};
7052
7053enum {
7054 WMI_TDLS_PEER_QOS_AC_VO = BIT(0),
7055 WMI_TDLS_PEER_QOS_AC_VI = BIT(1),
7056 WMI_TDLS_PEER_QOS_AC_BK = BIT(2),
7057 WMI_TDLS_PEER_QOS_AC_BE = BIT(3),
7058};
7059
Marek Puzyniakad45c882015-03-30 09:51:53 +03007060struct wmi_tdls_peer_capab_arg {
7061 u8 peer_uapsd_queues;
7062 u8 peer_max_sp;
7063 u32 buff_sta_support;
7064 u32 off_chan_support;
7065 u32 peer_curr_operclass;
7066 u32 self_curr_operclass;
7067 u32 peer_chan_len;
7068 u32 peer_operclass_len;
7069 u8 peer_operclass[WMI_TDLS_MAX_SUPP_OPER_CLASSES];
7070 u32 is_peer_responder;
7071 u32 pref_offchan_num;
7072 u32 pref_offchan_bw;
7073};
7074
Manikanta Pubbisettyadd6cd82017-07-28 15:15:42 +03007075struct wmi_10_4_tdls_set_state_cmd {
7076 __le32 vdev_id;
7077 __le32 state;
7078 __le32 notification_interval_ms;
7079 __le32 tx_discovery_threshold;
7080 __le32 tx_teardown_threshold;
7081 __le32 rssi_teardown_threshold;
7082 __le32 rssi_delta;
7083 __le32 tdls_options;
7084 __le32 tdls_peer_traffic_ind_window;
7085 __le32 tdls_peer_traffic_response_timeout_ms;
7086 __le32 tdls_puapsd_mask;
7087 __le32 tdls_puapsd_inactivity_time_ms;
7088 __le32 tdls_puapsd_rx_frame_threshold;
7089 __le32 teardown_notification_ms;
7090 __le32 tdls_peer_kickout_threshold;
7091} __packed;
7092
7093struct wmi_tdls_peer_capabilities {
7094 __le32 peer_qos;
7095 __le32 buff_sta_support;
7096 __le32 off_chan_support;
7097 __le32 peer_curr_operclass;
7098 __le32 self_curr_operclass;
7099 __le32 peer_chan_len;
7100 __le32 peer_operclass_len;
7101 u8 peer_operclass[WMI_TDLS_MAX_SUPP_OPER_CLASSES];
7102 __le32 is_peer_responder;
7103 __le32 pref_offchan_num;
7104 __le32 pref_offchan_bw;
7105 struct wmi_channel peer_chan_list[1];
7106} __packed;
7107
7108struct wmi_10_4_tdls_peer_update_cmd {
7109 __le32 vdev_id;
7110 struct wmi_mac_addr peer_macaddr;
7111 __le32 peer_state;
7112 __le32 reserved[4];
7113 struct wmi_tdls_peer_capabilities peer_capab;
7114} __packed;
7115
7116enum wmi_tdls_peer_reason {
7117 WMI_TDLS_TEARDOWN_REASON_TX,
7118 WMI_TDLS_TEARDOWN_REASON_RSSI,
7119 WMI_TDLS_TEARDOWN_REASON_SCAN,
7120 WMI_TDLS_DISCONNECTED_REASON_PEER_DELETE,
7121 WMI_TDLS_TEARDOWN_REASON_PTR_TIMEOUT,
7122 WMI_TDLS_TEARDOWN_REASON_BAD_PTR,
7123 WMI_TDLS_TEARDOWN_REASON_NO_RESPONSE,
7124 WMI_TDLS_ENTER_BUF_STA,
7125 WMI_TDLS_EXIT_BUF_STA,
7126 WMI_TDLS_ENTER_BT_BUSY_MODE,
7127 WMI_TDLS_EXIT_BT_BUSY_MODE,
7128 WMI_TDLS_SCAN_STARTED_EVENT,
7129 WMI_TDLS_SCAN_COMPLETED_EVENT,
7130};
7131
7132enum wmi_tdls_peer_notification {
7133 WMI_TDLS_SHOULD_DISCOVER,
7134 WMI_TDLS_SHOULD_TEARDOWN,
7135 WMI_TDLS_PEER_DISCONNECTED,
7136 WMI_TDLS_CONNECTION_TRACKER_NOTIFICATION,
7137};
7138
7139struct wmi_tdls_peer_event {
7140 struct wmi_mac_addr peer_macaddr;
7141 /* see enum wmi_tdls_peer_notification*/
7142 __le32 peer_status;
7143 /* see enum wmi_tdls_peer_reason */
7144 __le32 peer_reason;
7145 __le32 vdev_id;
7146} __packed;
7147
Vivek Natarajan08e75ea2015-08-04 10:45:11 +05307148enum wmi_txbf_conf {
7149 WMI_TXBF_CONF_UNSUPPORTED,
7150 WMI_TXBF_CONF_BEFORE_ASSOC,
7151 WMI_TXBF_CONF_AFTER_ASSOC,
7152};
7153
Maharaja62f77f02015-10-21 11:49:18 +03007154#define WMI_CCA_DETECT_LEVEL_AUTO 0
7155#define WMI_CCA_DETECT_MARGIN_AUTO 0
7156
7157struct wmi_pdev_set_adaptive_cca_params {
7158 __le32 enable;
7159 __le32 cca_detect_level;
7160 __le32 cca_detect_margin;
7161} __packed;
7162
Wen Gongce834e22018-10-04 08:45:31 +03007163#define WMI_PNO_MAX_SCHED_SCAN_PLANS 2
7164#define WMI_PNO_MAX_SCHED_SCAN_PLAN_INT 7200
7165#define WMI_PNO_MAX_SCHED_SCAN_PLAN_ITRNS 100
7166#define WMI_PNO_MAX_NETW_CHANNELS 26
7167#define WMI_PNO_MAX_NETW_CHANNELS_EX 60
7168#define WMI_PNO_MAX_SUPP_NETWORKS WLAN_SCAN_PARAMS_MAX_SSID
7169#define WMI_PNO_MAX_IE_LENGTH WLAN_SCAN_PARAMS_MAX_IE_LEN
7170
7171/*size based of dot11 declaration without extra IEs as we will not carry those for PNO*/
7172#define WMI_PNO_MAX_PB_REQ_SIZE 450
7173
7174#define WMI_PNO_24G_DEFAULT_CH 1
7175#define WMI_PNO_5G_DEFAULT_CH 36
7176
7177#define WMI_ACTIVE_MAX_CHANNEL_TIME 40
7178#define WMI_PASSIVE_MAX_CHANNEL_TIME 110
7179
7180/* SSID broadcast type */
7181enum wmi_SSID_bcast_type {
7182 BCAST_UNKNOWN = 0,
7183 BCAST_NORMAL = 1,
7184 BCAST_HIDDEN = 2,
7185};
7186
7187struct wmi_network_type {
7188 struct wmi_ssid ssid;
7189 u32 authentication;
7190 u32 encryption;
7191 u32 bcast_nw_type;
7192 u8 channel_count;
7193 u16 channels[WMI_PNO_MAX_NETW_CHANNELS_EX];
7194 s32 rssi_threshold;
7195} __packed;
7196
7197struct wmi_pno_scan_req {
7198 u8 enable;
7199 u8 vdev_id;
7200 u8 uc_networks_count;
7201 struct wmi_network_type a_networks[WMI_PNO_MAX_SUPP_NETWORKS];
7202 u32 fast_scan_period;
7203 u32 slow_scan_period;
7204 u8 fast_scan_max_cycles;
7205
7206 bool do_passive_scan;
7207
7208 u32 delay_start_time;
7209 u32 active_min_time;
7210 u32 active_max_time;
7211 u32 passive_min_time;
7212 u32 passive_max_time;
7213
7214 /* mac address randomization attributes */
7215 u32 enable_pno_scan_randomization;
7216 u8 mac_addr[ETH_ALEN];
7217 u8 mac_addr_mask[ETH_ALEN];
7218} __packed;
7219
Raja Mani47771902016-03-16 18:13:33 +05307220enum wmi_host_platform_type {
7221 WMI_HOST_PLATFORM_HIGH_PERF,
7222 WMI_HOST_PLATFORM_LOW_PERF,
7223};
7224
Rajkumar Manoharan8a0b4592016-04-27 16:23:20 +05307225enum wmi_bss_survey_req_type {
7226 WMI_BSS_SURVEY_REQ_TYPE_READ = 1,
7227 WMI_BSS_SURVEY_REQ_TYPE_READ_CLEAR,
7228};
7229
7230struct wmi_pdev_chan_info_req_cmd {
7231 __le32 type;
7232 __le32 reserved;
7233} __packed;
7234
Bhagavathi Perumal S84758d42018-12-20 14:26:00 +02007235/* bb timing register configurations */
7236struct wmi_bb_timing_cfg_arg {
7237 /* Tx_end to pa off timing */
7238 u32 bb_tx_timing;
7239
7240 /* Tx_end to external pa off timing */
7241 u32 bb_xpa_timing;
7242};
7243
7244struct wmi_pdev_bb_timing_cfg_cmd {
7245 /* Tx_end to pa off timing */
7246 __le32 bb_tx_timing;
7247
7248 /* Tx_end to external pa off timing */
7249 __le32 bb_xpa_timing;
7250} __packed;
7251
Kalle Valo5e3dd152013-06-12 20:52:10 +03007252struct ath10k;
7253struct ath10k_vif;
Michal Kazior0226d602014-12-03 10:11:22 +02007254struct ath10k_fw_stats_pdev;
7255struct ath10k_fw_stats_peer;
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03007256struct ath10k_fw_stats;
Kalle Valo5e3dd152013-06-12 20:52:10 +03007257
7258int ath10k_wmi_attach(struct ath10k *ar);
7259void ath10k_wmi_detach(struct ath10k *ar);
Vasanthakumar Thiagarajana925a372015-08-28 17:21:34 +05307260void ath10k_wmi_free_host_mem(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03007261int ath10k_wmi_wait_for_service_ready(struct ath10k *ar);
7262int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03007263
Michal Kazior0226d602014-12-03 10:11:22 +02007264struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
Michal Kazior95bf21f2014-05-16 17:15:39 +03007265int ath10k_wmi_connect(struct ath10k *ar);
Kalle Valo666a73f32014-09-10 18:23:23 +03007266
7267struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
7268int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
Michal Kaziord7579d12014-12-03 10:10:54 +02007269int ath10k_wmi_cmd_send_nowait(struct ath10k *ar, struct sk_buff *skb,
7270 u32 cmd_id);
Kalle Valo019e4282017-02-02 12:47:56 +02007271void ath10k_wmi_start_scan_init(struct ath10k *ar, struct wmi_start_scan_arg *arg);
Kalle Valo5e3dd152013-06-12 20:52:10 +03007272
Michal Kaziorb91251f2015-01-24 12:14:49 +02007273void ath10k_wmi_pull_pdev_stats_base(const struct wmi_pdev_stats_base *src,
7274 struct ath10k_fw_stats_pdev *dst);
7275void ath10k_wmi_pull_pdev_stats_tx(const struct wmi_pdev_stats_tx *src,
7276 struct ath10k_fw_stats_pdev *dst);
7277void ath10k_wmi_pull_pdev_stats_rx(const struct wmi_pdev_stats_rx *src,
7278 struct ath10k_fw_stats_pdev *dst);
7279void ath10k_wmi_pull_pdev_stats_extra(const struct wmi_pdev_stats_extra *src,
7280 struct ath10k_fw_stats_pdev *dst);
Michal Kazior0226d602014-12-03 10:11:22 +02007281void ath10k_wmi_pull_peer_stats(const struct wmi_peer_stats *src,
7282 struct ath10k_fw_stats_peer *dst);
7283void ath10k_wmi_put_host_mem_chunks(struct ath10k *ar,
7284 struct wmi_host_mem_chunks *chunks);
7285void ath10k_wmi_put_start_scan_common(struct wmi_start_scan_common *cmn,
7286 const struct wmi_start_scan_arg *arg);
Michal Kazior5e752e42015-01-19 09:53:41 +01007287void ath10k_wmi_set_wmm_param(struct wmi_wmm_params *params,
7288 const struct wmi_wmm_params_arg *arg);
Michal Kazior0226d602014-12-03 10:11:22 +02007289void ath10k_wmi_put_wmi_channel(struct wmi_channel *ch,
7290 const struct wmi_channel_arg *arg);
7291int ath10k_wmi_start_scan_verify(const struct wmi_start_scan_arg *arg);
7292
7293int ath10k_wmi_event_scan(struct ath10k *ar, struct sk_buff *skb);
7294int ath10k_wmi_event_mgmt_rx(struct ath10k *ar, struct sk_buff *skb);
Rakesh Pillaidc405152018-07-25 10:59:45 +03007295int ath10k_wmi_event_mgmt_tx_compl(struct ath10k *ar, struct sk_buff *skb);
Rakesh Pillaicc123fa2019-01-25 09:40:01 +05307296int ath10k_wmi_event_mgmt_tx_bundle_compl(struct ath10k *ar, struct sk_buff *skb);
Michal Kazior0226d602014-12-03 10:11:22 +02007297void ath10k_wmi_event_chan_info(struct ath10k *ar, struct sk_buff *skb);
7298void ath10k_wmi_event_echo(struct ath10k *ar, struct sk_buff *skb);
7299int ath10k_wmi_event_debug_mesg(struct ath10k *ar, struct sk_buff *skb);
7300void ath10k_wmi_event_update_stats(struct ath10k *ar, struct sk_buff *skb);
7301void ath10k_wmi_event_vdev_start_resp(struct ath10k *ar, struct sk_buff *skb);
7302void ath10k_wmi_event_vdev_stopped(struct ath10k *ar, struct sk_buff *skb);
7303void ath10k_wmi_event_peer_sta_kickout(struct ath10k *ar, struct sk_buff *skb);
7304void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb);
7305void ath10k_wmi_event_tbttoffset_update(struct ath10k *ar, struct sk_buff *skb);
7306void ath10k_wmi_event_dfs(struct ath10k *ar,
Raja Mani991adf72015-08-14 11:13:29 +03007307 struct wmi_phyerr_ev_arg *phyerr, u64 tsf);
Michal Kazior0226d602014-12-03 10:11:22 +02007308void ath10k_wmi_event_spectral_scan(struct ath10k *ar,
Raja Mani991adf72015-08-14 11:13:29 +03007309 struct wmi_phyerr_ev_arg *phyerr,
Michal Kazior0226d602014-12-03 10:11:22 +02007310 u64 tsf);
7311void ath10k_wmi_event_phyerr(struct ath10k *ar, struct sk_buff *skb);
7312void ath10k_wmi_event_roam(struct ath10k *ar, struct sk_buff *skb);
7313void ath10k_wmi_event_profile_match(struct ath10k *ar, struct sk_buff *skb);
7314void ath10k_wmi_event_debug_print(struct ath10k *ar, struct sk_buff *skb);
7315void ath10k_wmi_event_pdev_qvit(struct ath10k *ar, struct sk_buff *skb);
7316void ath10k_wmi_event_wlan_profile_data(struct ath10k *ar, struct sk_buff *skb);
7317void ath10k_wmi_event_rtt_measurement_report(struct ath10k *ar,
7318 struct sk_buff *skb);
7319void ath10k_wmi_event_tsf_measurement_report(struct ath10k *ar,
7320 struct sk_buff *skb);
7321void ath10k_wmi_event_rtt_error_report(struct ath10k *ar, struct sk_buff *skb);
7322void ath10k_wmi_event_wow_wakeup_host(struct ath10k *ar, struct sk_buff *skb);
7323void ath10k_wmi_event_dcs_interference(struct ath10k *ar, struct sk_buff *skb);
7324void ath10k_wmi_event_pdev_tpc_config(struct ath10k *ar, struct sk_buff *skb);
7325void ath10k_wmi_event_pdev_ftm_intg(struct ath10k *ar, struct sk_buff *skb);
7326void ath10k_wmi_event_gtk_offload_status(struct ath10k *ar,
7327 struct sk_buff *skb);
7328void ath10k_wmi_event_gtk_rekey_fail(struct ath10k *ar, struct sk_buff *skb);
7329void ath10k_wmi_event_delba_complete(struct ath10k *ar, struct sk_buff *skb);
7330void ath10k_wmi_event_addba_complete(struct ath10k *ar, struct sk_buff *skb);
7331void ath10k_wmi_event_vdev_install_key_complete(struct ath10k *ar,
7332 struct sk_buff *skb);
7333void ath10k_wmi_event_inst_rssi_stats(struct ath10k *ar, struct sk_buff *skb);
7334void ath10k_wmi_event_vdev_standby_req(struct ath10k *ar, struct sk_buff *skb);
7335void ath10k_wmi_event_vdev_resume_req(struct ath10k *ar, struct sk_buff *skb);
7336void ath10k_wmi_event_service_ready(struct ath10k *ar, struct sk_buff *skb);
7337int ath10k_wmi_event_ready(struct ath10k *ar, struct sk_buff *skb);
Carl Huangcea19a62018-04-19 19:39:38 +03007338void ath10k_wmi_event_service_available(struct ath10k *ar, struct sk_buff *skb);
Raja Mani991adf72015-08-14 11:13:29 +03007339int ath10k_wmi_op_pull_phyerr_ev(struct ath10k *ar, const void *phyerr_buf,
7340 int left_len, struct wmi_phyerr_ev_arg *arg);
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03007341void ath10k_wmi_main_op_fw_stats_fill(struct ath10k *ar,
7342 struct ath10k_fw_stats *fw_stats,
7343 char *buf);
7344void ath10k_wmi_10x_op_fw_stats_fill(struct ath10k *ar,
7345 struct ath10k_fw_stats *fw_stats,
7346 char *buf);
7347size_t ath10k_wmi_fw_stats_num_peers(struct list_head *head);
7348size_t ath10k_wmi_fw_stats_num_vdevs(struct list_head *head);
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02007349void ath10k_wmi_10_4_op_fw_stats_fill(struct ath10k *ar,
7350 struct ath10k_fw_stats *fw_stats,
7351 char *buf);
Peter Oh6e4de1a2016-01-28 13:54:10 -08007352int ath10k_wmi_op_get_vdev_subtype(struct ath10k *ar,
7353 enum wmi_vdev_subtype subtype);
Michal Kazior20ddca22016-08-19 13:37:42 +03007354int ath10k_wmi_barrier(struct ath10k *ar);
Maharaja Kennadyrajanbc64d052018-03-14 12:14:08 +02007355void ath10k_wmi_tpc_config_get_rate_code(u8 *rate_code, u16 *pream_table,
7356 u32 num_tx_chain);
7357void ath10k_wmi_event_tpc_final_table(struct ath10k *ar, struct sk_buff *skb);
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03007358
Kalle Valo5e3dd152013-06-12 20:52:10 +03007359#endif /* _WMI_H_ */