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