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