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