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