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