2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
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.
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.
21 #include <linux/types.h>
22 #include <net/mac80211.h>
25 * This file specifies the WMI interface for the Unified Software
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.
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.
36 * Guidelines for extending this interface are below.
38 * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff
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.
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
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.
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
57 * 6. Comment each parameter part of the WMI command/event structure by
58 * using the 2 stars at the beginning of C comment instead of one star to
59 * enable HTML document generation using Doxygen.
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
73 #define HTC_PROTOCOL_VERSION 0x0002
74 #define WMI_PROTOCOL_VERSION 0x0002
77 * There is no signed version of __le32, so for a temporary solution come
78 * up with our own version. The idea is from fs/ntfs/endian.h.
80 * Use a_ prefix so that it doesn't conflict if we get proper support to
83 typedef __s32 __bitwise a_sle32
;
85 static inline a_sle32
a_cpu_to_sle32(s32 val
)
87 return (__force a_sle32
)cpu_to_le32(val
);
90 static inline s32
a_sle32_to_cpu(a_sle32 val
)
92 return le32_to_cpu((__force __le32
)val
);
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
,
105 WMI_SERVICE_BLOCKACK
,
107 WMI_SERVICE_BCN_FILTER
,
109 WMI_SERVICE_RATECTRL
,
111 WMI_SERVICE_RATECTRL_CACHE
,
112 WMI_SERVICE_IRAM_TIDS
,
113 WMI_SERVICE_ARPNS_OFFLOAD
,
115 WMI_SERVICE_GTK_OFFLOAD
,
116 WMI_SERVICE_SCAN_SCH
,
117 WMI_SERVICE_CSA_OFFLOAD
,
119 WMI_SERVICE_COEX_FREQAVOID
,
120 WMI_SERVICE_PACKET_POWER_SAVE
,
121 WMI_SERVICE_FORCE_FW_HANG
,
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
,
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
,
136 WMI_SERVICE_STA_WMMAC
,
138 WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE
,
139 WMI_SERVICE_ADAPTIVE_OCS
,
140 WMI_SERVICE_BA_SSN_SUPPORT
,
141 WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE
,
143 WMI_SERVICE_LTE_ANT_SHARE_SUPPORT
,
144 WMI_SERVICE_BATCH_SCAN
,
147 WMI_SERVICE_THERMAL_MGMT
,
149 WMI_SERVICE_MHF_OFFLOAD
,
150 WMI_SERVICE_COEX_SAR
,
151 WMI_SERVICE_BCN_TXRATE_OVERRIDE
,
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
,
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
,
171 WMI_SERVICE_COEX_GPIO
,
172 WMI_SERVICE_ENHANCED_PROXY_STA
,
174 WMI_SERVICE_PEER_CACHING
,
175 WMI_SERVICE_AUX_SPECTRAL_INTF
,
176 WMI_SERVICE_AUX_CHAN_LOAD_INTF
,
177 WMI_SERVICE_BSS_CHANNEL_INFO_64
,
178 WMI_SERVICE_EXT_RES_CFG_SUPPORT
,
179 WMI_SERVICE_MESH_11S
,
180 WMI_SERVICE_MESH_NON_11S
,
181 WMI_SERVICE_PEER_STATS
,
182 WMI_SERVICE_RESTRT_CHNL_SUPPORT
,
183 WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT
,
184 WMI_SERVICE_TX_MODE_PUSH_ONLY
,
185 WMI_SERVICE_TX_MODE_PUSH_PULL
,
186 WMI_SERVICE_TX_MODE_DYNAMIC
,
187 WMI_SERVICE_VDEV_RX_FILTER
,
189 WMI_SERVICE_CHECK_CAL_VERSION
,
190 WMI_SERVICE_DBGLOG_WARN2
,
191 WMI_SERVICE_BTCOEX_DUTY_CYCLE
,
192 WMI_SERVICE_4_WIRE_COEX_SUPPORT
,
193 WMI_SERVICE_EXTENDED_NSS_SUPPORT
,
194 WMI_SERVICE_PROG_GPIO_BAND_SELECT
,
195 WMI_SERVICE_SMART_LOGGING_SUPPORT
,
196 WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE
,
197 WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY
,
198 WMI_SERVICE_MGMT_TX_WMI
,
199 WMI_SERVICE_TDLS_WIDER_BANDWIDTH
,
205 enum wmi_10x_service
{
206 WMI_10X_SERVICE_BEACON_OFFLOAD
= 0,
207 WMI_10X_SERVICE_SCAN_OFFLOAD
,
208 WMI_10X_SERVICE_ROAM_OFFLOAD
,
209 WMI_10X_SERVICE_BCN_MISS_OFFLOAD
,
210 WMI_10X_SERVICE_STA_PWRSAVE
,
211 WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE
,
212 WMI_10X_SERVICE_AP_UAPSD
,
213 WMI_10X_SERVICE_AP_DFS
,
214 WMI_10X_SERVICE_11AC
,
215 WMI_10X_SERVICE_BLOCKACK
,
216 WMI_10X_SERVICE_PHYERR
,
217 WMI_10X_SERVICE_BCN_FILTER
,
219 WMI_10X_SERVICE_RATECTRL
,
221 WMI_10X_SERVICE_RATECTRL_CACHE
,
222 WMI_10X_SERVICE_IRAM_TIDS
,
223 WMI_10X_SERVICE_BURST
,
225 /* introduced in 10.2 */
226 WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT
,
227 WMI_10X_SERVICE_FORCE_FW_HANG
,
228 WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT
,
230 WMI_10X_SERVICE_COEX_GPIO
,
231 WMI_10X_SERVICE_AUX_SPECTRAL_INTF
,
232 WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF
,
233 WMI_10X_SERVICE_BSS_CHANNEL_INFO_64
,
234 WMI_10X_SERVICE_MESH
,
235 WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT
,
236 WMI_10X_SERVICE_PEER_STATS
,
239 enum wmi_main_service
{
240 WMI_MAIN_SERVICE_BEACON_OFFLOAD
= 0,
241 WMI_MAIN_SERVICE_SCAN_OFFLOAD
,
242 WMI_MAIN_SERVICE_ROAM_OFFLOAD
,
243 WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD
,
244 WMI_MAIN_SERVICE_STA_PWRSAVE
,
245 WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE
,
246 WMI_MAIN_SERVICE_AP_UAPSD
,
247 WMI_MAIN_SERVICE_AP_DFS
,
248 WMI_MAIN_SERVICE_11AC
,
249 WMI_MAIN_SERVICE_BLOCKACK
,
250 WMI_MAIN_SERVICE_PHYERR
,
251 WMI_MAIN_SERVICE_BCN_FILTER
,
252 WMI_MAIN_SERVICE_RTT
,
253 WMI_MAIN_SERVICE_RATECTRL
,
254 WMI_MAIN_SERVICE_WOW
,
255 WMI_MAIN_SERVICE_RATECTRL_CACHE
,
256 WMI_MAIN_SERVICE_IRAM_TIDS
,
257 WMI_MAIN_SERVICE_ARPNS_OFFLOAD
,
258 WMI_MAIN_SERVICE_NLO
,
259 WMI_MAIN_SERVICE_GTK_OFFLOAD
,
260 WMI_MAIN_SERVICE_SCAN_SCH
,
261 WMI_MAIN_SERVICE_CSA_OFFLOAD
,
262 WMI_MAIN_SERVICE_CHATTER
,
263 WMI_MAIN_SERVICE_COEX_FREQAVOID
,
264 WMI_MAIN_SERVICE_PACKET_POWER_SAVE
,
265 WMI_MAIN_SERVICE_FORCE_FW_HANG
,
266 WMI_MAIN_SERVICE_GPIO
,
267 WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM
,
268 WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
,
269 WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
,
270 WMI_MAIN_SERVICE_STA_KEEP_ALIVE
,
271 WMI_MAIN_SERVICE_TX_ENCAP
,
274 enum wmi_10_4_service
{
275 WMI_10_4_SERVICE_BEACON_OFFLOAD
= 0,
276 WMI_10_4_SERVICE_SCAN_OFFLOAD
,
277 WMI_10_4_SERVICE_ROAM_OFFLOAD
,
278 WMI_10_4_SERVICE_BCN_MISS_OFFLOAD
,
279 WMI_10_4_SERVICE_STA_PWRSAVE
,
280 WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE
,
281 WMI_10_4_SERVICE_AP_UAPSD
,
282 WMI_10_4_SERVICE_AP_DFS
,
283 WMI_10_4_SERVICE_11AC
,
284 WMI_10_4_SERVICE_BLOCKACK
,
285 WMI_10_4_SERVICE_PHYERR
,
286 WMI_10_4_SERVICE_BCN_FILTER
,
287 WMI_10_4_SERVICE_RTT
,
288 WMI_10_4_SERVICE_RATECTRL
,
289 WMI_10_4_SERVICE_WOW
,
290 WMI_10_4_SERVICE_RATECTRL_CACHE
,
291 WMI_10_4_SERVICE_IRAM_TIDS
,
292 WMI_10_4_SERVICE_BURST
,
293 WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT
,
294 WMI_10_4_SERVICE_GTK_OFFLOAD
,
295 WMI_10_4_SERVICE_SCAN_SCH
,
296 WMI_10_4_SERVICE_CSA_OFFLOAD
,
297 WMI_10_4_SERVICE_CHATTER
,
298 WMI_10_4_SERVICE_COEX_FREQAVOID
,
299 WMI_10_4_SERVICE_PACKET_POWER_SAVE
,
300 WMI_10_4_SERVICE_FORCE_FW_HANG
,
301 WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT
,
302 WMI_10_4_SERVICE_GPIO
,
303 WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
,
304 WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
,
305 WMI_10_4_SERVICE_STA_KEEP_ALIVE
,
306 WMI_10_4_SERVICE_TX_ENCAP
,
307 WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC
,
308 WMI_10_4_SERVICE_EARLY_RX
,
309 WMI_10_4_SERVICE_ENHANCED_PROXY_STA
,
311 WMI_10_4_SERVICE_ATF
,
312 WMI_10_4_SERVICE_PEER_CACHING
,
313 WMI_10_4_SERVICE_COEX_GPIO
,
314 WMI_10_4_SERVICE_AUX_SPECTRAL_INTF
,
315 WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF
,
316 WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64
,
317 WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT
,
318 WMI_10_4_SERVICE_MESH_NON_11S
,
319 WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT
,
320 WMI_10_4_SERVICE_PEER_STATS
,
321 WMI_10_4_SERVICE_MESH_11S
,
322 WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT
,
323 WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY
,
324 WMI_10_4_SERVICE_TX_MODE_PUSH_PULL
,
325 WMI_10_4_SERVICE_TX_MODE_DYNAMIC
,
326 WMI_10_4_SERVICE_VDEV_RX_FILTER
,
327 WMI_10_4_SERVICE_BTCOEX
,
328 WMI_10_4_SERVICE_CHECK_CAL_VERSION
,
329 WMI_10_4_SERVICE_DBGLOG_WARN2
,
330 WMI_10_4_SERVICE_BTCOEX_DUTY_CYCLE
,
331 WMI_10_4_SERVICE_4_WIRE_COEX_SUPPORT
,
332 WMI_10_4_SERVICE_EXTENDED_NSS_SUPPORT
,
333 WMI_10_4_SERVICE_PROG_GPIO_BAND_SELECT
,
334 WMI_10_4_SERVICE_SMART_LOGGING_SUPPORT
,
335 WMI_10_4_SERVICE_TDLS
,
336 WMI_10_4_SERVICE_TDLS_OFFCHAN
,
337 WMI_10_4_SERVICE_TDLS_UAPSD_BUFFER_STA
,
338 WMI_10_4_SERVICE_TDLS_UAPSD_SLEEP_STA
,
339 WMI_10_4_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE
,
340 WMI_10_4_SERVICE_TDLS_EXPLICIT_MODE_ONLY
,
341 WMI_10_4_SERVICE_TDLS_WIDER_BANDWIDTH
,
344 static inline char *wmi_service_name(int service_id
)
346 #define SVCSTR(x) case x: return #x
348 switch (service_id
) {
349 SVCSTR(WMI_SERVICE_BEACON_OFFLOAD
);
350 SVCSTR(WMI_SERVICE_SCAN_OFFLOAD
);
351 SVCSTR(WMI_SERVICE_ROAM_OFFLOAD
);
352 SVCSTR(WMI_SERVICE_BCN_MISS_OFFLOAD
);
353 SVCSTR(WMI_SERVICE_STA_PWRSAVE
);
354 SVCSTR(WMI_SERVICE_STA_ADVANCED_PWRSAVE
);
355 SVCSTR(WMI_SERVICE_AP_UAPSD
);
356 SVCSTR(WMI_SERVICE_AP_DFS
);
357 SVCSTR(WMI_SERVICE_11AC
);
358 SVCSTR(WMI_SERVICE_BLOCKACK
);
359 SVCSTR(WMI_SERVICE_PHYERR
);
360 SVCSTR(WMI_SERVICE_BCN_FILTER
);
361 SVCSTR(WMI_SERVICE_RTT
);
362 SVCSTR(WMI_SERVICE_RATECTRL
);
363 SVCSTR(WMI_SERVICE_WOW
);
364 SVCSTR(WMI_SERVICE_RATECTRL_CACHE
);
365 SVCSTR(WMI_SERVICE_IRAM_TIDS
);
366 SVCSTR(WMI_SERVICE_ARPNS_OFFLOAD
);
367 SVCSTR(WMI_SERVICE_NLO
);
368 SVCSTR(WMI_SERVICE_GTK_OFFLOAD
);
369 SVCSTR(WMI_SERVICE_SCAN_SCH
);
370 SVCSTR(WMI_SERVICE_CSA_OFFLOAD
);
371 SVCSTR(WMI_SERVICE_CHATTER
);
372 SVCSTR(WMI_SERVICE_COEX_FREQAVOID
);
373 SVCSTR(WMI_SERVICE_PACKET_POWER_SAVE
);
374 SVCSTR(WMI_SERVICE_FORCE_FW_HANG
);
375 SVCSTR(WMI_SERVICE_GPIO
);
376 SVCSTR(WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM
);
377 SVCSTR(WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
);
378 SVCSTR(WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
);
379 SVCSTR(WMI_SERVICE_STA_KEEP_ALIVE
);
380 SVCSTR(WMI_SERVICE_TX_ENCAP
);
381 SVCSTR(WMI_SERVICE_BURST
);
382 SVCSTR(WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT
);
383 SVCSTR(WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT
);
384 SVCSTR(WMI_SERVICE_ROAM_SCAN_OFFLOAD
);
385 SVCSTR(WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC
);
386 SVCSTR(WMI_SERVICE_EARLY_RX
);
387 SVCSTR(WMI_SERVICE_STA_SMPS
);
388 SVCSTR(WMI_SERVICE_FWTEST
);
389 SVCSTR(WMI_SERVICE_STA_WMMAC
);
390 SVCSTR(WMI_SERVICE_TDLS
);
391 SVCSTR(WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE
);
392 SVCSTR(WMI_SERVICE_ADAPTIVE_OCS
);
393 SVCSTR(WMI_SERVICE_BA_SSN_SUPPORT
);
394 SVCSTR(WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE
);
395 SVCSTR(WMI_SERVICE_WLAN_HB
);
396 SVCSTR(WMI_SERVICE_LTE_ANT_SHARE_SUPPORT
);
397 SVCSTR(WMI_SERVICE_BATCH_SCAN
);
398 SVCSTR(WMI_SERVICE_QPOWER
);
399 SVCSTR(WMI_SERVICE_PLMREQ
);
400 SVCSTR(WMI_SERVICE_THERMAL_MGMT
);
401 SVCSTR(WMI_SERVICE_RMC
);
402 SVCSTR(WMI_SERVICE_MHF_OFFLOAD
);
403 SVCSTR(WMI_SERVICE_COEX_SAR
);
404 SVCSTR(WMI_SERVICE_BCN_TXRATE_OVERRIDE
);
405 SVCSTR(WMI_SERVICE_NAN
);
406 SVCSTR(WMI_SERVICE_L1SS_STAT
);
407 SVCSTR(WMI_SERVICE_ESTIMATE_LINKSPEED
);
408 SVCSTR(WMI_SERVICE_OBSS_SCAN
);
409 SVCSTR(WMI_SERVICE_TDLS_OFFCHAN
);
410 SVCSTR(WMI_SERVICE_TDLS_UAPSD_BUFFER_STA
);
411 SVCSTR(WMI_SERVICE_TDLS_UAPSD_SLEEP_STA
);
412 SVCSTR(WMI_SERVICE_IBSS_PWRSAVE
);
413 SVCSTR(WMI_SERVICE_LPASS
);
414 SVCSTR(WMI_SERVICE_EXTSCAN
);
415 SVCSTR(WMI_SERVICE_D0WOW
);
416 SVCSTR(WMI_SERVICE_HSOFFLOAD
);
417 SVCSTR(WMI_SERVICE_ROAM_HO_OFFLOAD
);
418 SVCSTR(WMI_SERVICE_RX_FULL_REORDER
);
419 SVCSTR(WMI_SERVICE_DHCP_OFFLOAD
);
420 SVCSTR(WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT
);
421 SVCSTR(WMI_SERVICE_MDNS_OFFLOAD
);
422 SVCSTR(WMI_SERVICE_SAP_AUTH_OFFLOAD
);
423 SVCSTR(WMI_SERVICE_ATF
);
424 SVCSTR(WMI_SERVICE_COEX_GPIO
);
425 SVCSTR(WMI_SERVICE_ENHANCED_PROXY_STA
);
426 SVCSTR(WMI_SERVICE_TT
);
427 SVCSTR(WMI_SERVICE_PEER_CACHING
);
428 SVCSTR(WMI_SERVICE_AUX_SPECTRAL_INTF
);
429 SVCSTR(WMI_SERVICE_AUX_CHAN_LOAD_INTF
);
430 SVCSTR(WMI_SERVICE_BSS_CHANNEL_INFO_64
);
431 SVCSTR(WMI_SERVICE_EXT_RES_CFG_SUPPORT
);
432 SVCSTR(WMI_SERVICE_MESH_11S
);
433 SVCSTR(WMI_SERVICE_MESH_NON_11S
);
434 SVCSTR(WMI_SERVICE_PEER_STATS
);
435 SVCSTR(WMI_SERVICE_RESTRT_CHNL_SUPPORT
);
436 SVCSTR(WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT
);
437 SVCSTR(WMI_SERVICE_TX_MODE_PUSH_ONLY
);
438 SVCSTR(WMI_SERVICE_TX_MODE_PUSH_PULL
);
439 SVCSTR(WMI_SERVICE_TX_MODE_DYNAMIC
);
440 SVCSTR(WMI_SERVICE_VDEV_RX_FILTER
);
441 SVCSTR(WMI_SERVICE_CHECK_CAL_VERSION
);
442 SVCSTR(WMI_SERVICE_DBGLOG_WARN2
);
443 SVCSTR(WMI_SERVICE_BTCOEX_DUTY_CYCLE
);
444 SVCSTR(WMI_SERVICE_4_WIRE_COEX_SUPPORT
);
445 SVCSTR(WMI_SERVICE_EXTENDED_NSS_SUPPORT
);
446 SVCSTR(WMI_SERVICE_PROG_GPIO_BAND_SELECT
);
447 SVCSTR(WMI_SERVICE_SMART_LOGGING_SUPPORT
);
448 SVCSTR(WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE
);
449 SVCSTR(WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY
);
450 SVCSTR(WMI_SERVICE_TDLS_WIDER_BANDWIDTH
);
458 #define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
459 ((svc_id) < (len) && \
460 __le32_to_cpu((wmi_svc_bmap)[(svc_id) / (sizeof(u32))]) & \
461 BIT((svc_id) % (sizeof(u32))))
463 /* This extension is required to accommodate new services, current limit
464 * for wmi_services is 64 as target is using only 4-bits of each 32-bit
465 * wmi_service word. Extending this to make use of remaining unused bits
468 #define WMI_EXT_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
469 ((svc_id) >= (len) && \
470 __le32_to_cpu((wmi_svc_bmap)[((svc_id) - (len)) / 28]) & \
471 BIT(((((svc_id) - (len)) % 28) & 0x1f) + 4))
473 #define SVCMAP(x, y, len) \
475 if ((WMI_SERVICE_IS_ENABLED((in), (x), (len))) || \
476 (WMI_EXT_SERVICE_IS_ENABLED((in), (x), (len)))) \
480 static inline void wmi_10x_svc_map(const __le32
*in
, unsigned long *out
,
483 SVCMAP(WMI_10X_SERVICE_BEACON_OFFLOAD
,
484 WMI_SERVICE_BEACON_OFFLOAD
, len
);
485 SVCMAP(WMI_10X_SERVICE_SCAN_OFFLOAD
,
486 WMI_SERVICE_SCAN_OFFLOAD
, len
);
487 SVCMAP(WMI_10X_SERVICE_ROAM_OFFLOAD
,
488 WMI_SERVICE_ROAM_OFFLOAD
, len
);
489 SVCMAP(WMI_10X_SERVICE_BCN_MISS_OFFLOAD
,
490 WMI_SERVICE_BCN_MISS_OFFLOAD
, len
);
491 SVCMAP(WMI_10X_SERVICE_STA_PWRSAVE
,
492 WMI_SERVICE_STA_PWRSAVE
, len
);
493 SVCMAP(WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE
,
494 WMI_SERVICE_STA_ADVANCED_PWRSAVE
, len
);
495 SVCMAP(WMI_10X_SERVICE_AP_UAPSD
,
496 WMI_SERVICE_AP_UAPSD
, len
);
497 SVCMAP(WMI_10X_SERVICE_AP_DFS
,
498 WMI_SERVICE_AP_DFS
, len
);
499 SVCMAP(WMI_10X_SERVICE_11AC
,
500 WMI_SERVICE_11AC
, len
);
501 SVCMAP(WMI_10X_SERVICE_BLOCKACK
,
502 WMI_SERVICE_BLOCKACK
, len
);
503 SVCMAP(WMI_10X_SERVICE_PHYERR
,
504 WMI_SERVICE_PHYERR
, len
);
505 SVCMAP(WMI_10X_SERVICE_BCN_FILTER
,
506 WMI_SERVICE_BCN_FILTER
, len
);
507 SVCMAP(WMI_10X_SERVICE_RTT
,
508 WMI_SERVICE_RTT
, len
);
509 SVCMAP(WMI_10X_SERVICE_RATECTRL
,
510 WMI_SERVICE_RATECTRL
, len
);
511 SVCMAP(WMI_10X_SERVICE_WOW
,
512 WMI_SERVICE_WOW
, len
);
513 SVCMAP(WMI_10X_SERVICE_RATECTRL_CACHE
,
514 WMI_SERVICE_RATECTRL_CACHE
, len
);
515 SVCMAP(WMI_10X_SERVICE_IRAM_TIDS
,
516 WMI_SERVICE_IRAM_TIDS
, len
);
517 SVCMAP(WMI_10X_SERVICE_BURST
,
518 WMI_SERVICE_BURST
, len
);
519 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT
,
520 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT
, len
);
521 SVCMAP(WMI_10X_SERVICE_FORCE_FW_HANG
,
522 WMI_SERVICE_FORCE_FW_HANG
, len
);
523 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT
,
524 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT
, len
);
525 SVCMAP(WMI_10X_SERVICE_ATF
,
526 WMI_SERVICE_ATF
, len
);
527 SVCMAP(WMI_10X_SERVICE_COEX_GPIO
,
528 WMI_SERVICE_COEX_GPIO
, len
);
529 SVCMAP(WMI_10X_SERVICE_AUX_SPECTRAL_INTF
,
530 WMI_SERVICE_AUX_SPECTRAL_INTF
, len
);
531 SVCMAP(WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF
,
532 WMI_SERVICE_AUX_CHAN_LOAD_INTF
, len
);
533 SVCMAP(WMI_10X_SERVICE_BSS_CHANNEL_INFO_64
,
534 WMI_SERVICE_BSS_CHANNEL_INFO_64
, len
);
535 SVCMAP(WMI_10X_SERVICE_MESH
,
536 WMI_SERVICE_MESH_11S
, len
);
537 SVCMAP(WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT
,
538 WMI_SERVICE_EXT_RES_CFG_SUPPORT
, len
);
539 SVCMAP(WMI_10X_SERVICE_PEER_STATS
,
540 WMI_SERVICE_PEER_STATS
, len
);
543 static inline void wmi_main_svc_map(const __le32
*in
, unsigned long *out
,
546 SVCMAP(WMI_MAIN_SERVICE_BEACON_OFFLOAD
,
547 WMI_SERVICE_BEACON_OFFLOAD
, len
);
548 SVCMAP(WMI_MAIN_SERVICE_SCAN_OFFLOAD
,
549 WMI_SERVICE_SCAN_OFFLOAD
, len
);
550 SVCMAP(WMI_MAIN_SERVICE_ROAM_OFFLOAD
,
551 WMI_SERVICE_ROAM_OFFLOAD
, len
);
552 SVCMAP(WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD
,
553 WMI_SERVICE_BCN_MISS_OFFLOAD
, len
);
554 SVCMAP(WMI_MAIN_SERVICE_STA_PWRSAVE
,
555 WMI_SERVICE_STA_PWRSAVE
, len
);
556 SVCMAP(WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE
,
557 WMI_SERVICE_STA_ADVANCED_PWRSAVE
, len
);
558 SVCMAP(WMI_MAIN_SERVICE_AP_UAPSD
,
559 WMI_SERVICE_AP_UAPSD
, len
);
560 SVCMAP(WMI_MAIN_SERVICE_AP_DFS
,
561 WMI_SERVICE_AP_DFS
, len
);
562 SVCMAP(WMI_MAIN_SERVICE_11AC
,
563 WMI_SERVICE_11AC
, len
);
564 SVCMAP(WMI_MAIN_SERVICE_BLOCKACK
,
565 WMI_SERVICE_BLOCKACK
, len
);
566 SVCMAP(WMI_MAIN_SERVICE_PHYERR
,
567 WMI_SERVICE_PHYERR
, len
);
568 SVCMAP(WMI_MAIN_SERVICE_BCN_FILTER
,
569 WMI_SERVICE_BCN_FILTER
, len
);
570 SVCMAP(WMI_MAIN_SERVICE_RTT
,
571 WMI_SERVICE_RTT
, len
);
572 SVCMAP(WMI_MAIN_SERVICE_RATECTRL
,
573 WMI_SERVICE_RATECTRL
, len
);
574 SVCMAP(WMI_MAIN_SERVICE_WOW
,
575 WMI_SERVICE_WOW
, len
);
576 SVCMAP(WMI_MAIN_SERVICE_RATECTRL_CACHE
,
577 WMI_SERVICE_RATECTRL_CACHE
, len
);
578 SVCMAP(WMI_MAIN_SERVICE_IRAM_TIDS
,
579 WMI_SERVICE_IRAM_TIDS
, len
);
580 SVCMAP(WMI_MAIN_SERVICE_ARPNS_OFFLOAD
,
581 WMI_SERVICE_ARPNS_OFFLOAD
, len
);
582 SVCMAP(WMI_MAIN_SERVICE_NLO
,
583 WMI_SERVICE_NLO
, len
);
584 SVCMAP(WMI_MAIN_SERVICE_GTK_OFFLOAD
,
585 WMI_SERVICE_GTK_OFFLOAD
, len
);
586 SVCMAP(WMI_MAIN_SERVICE_SCAN_SCH
,
587 WMI_SERVICE_SCAN_SCH
, len
);
588 SVCMAP(WMI_MAIN_SERVICE_CSA_OFFLOAD
,
589 WMI_SERVICE_CSA_OFFLOAD
, len
);
590 SVCMAP(WMI_MAIN_SERVICE_CHATTER
,
591 WMI_SERVICE_CHATTER
, len
);
592 SVCMAP(WMI_MAIN_SERVICE_COEX_FREQAVOID
,
593 WMI_SERVICE_COEX_FREQAVOID
, len
);
594 SVCMAP(WMI_MAIN_SERVICE_PACKET_POWER_SAVE
,
595 WMI_SERVICE_PACKET_POWER_SAVE
, len
);
596 SVCMAP(WMI_MAIN_SERVICE_FORCE_FW_HANG
,
597 WMI_SERVICE_FORCE_FW_HANG
, len
);
598 SVCMAP(WMI_MAIN_SERVICE_GPIO
,
599 WMI_SERVICE_GPIO
, len
);
600 SVCMAP(WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM
,
601 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM
, len
);
602 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
,
603 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
, len
);
604 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
,
605 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
, len
);
606 SVCMAP(WMI_MAIN_SERVICE_STA_KEEP_ALIVE
,
607 WMI_SERVICE_STA_KEEP_ALIVE
, len
);
608 SVCMAP(WMI_MAIN_SERVICE_TX_ENCAP
,
609 WMI_SERVICE_TX_ENCAP
, len
);
612 static inline void wmi_10_4_svc_map(const __le32
*in
, unsigned long *out
,
615 SVCMAP(WMI_10_4_SERVICE_BEACON_OFFLOAD
,
616 WMI_SERVICE_BEACON_OFFLOAD
, len
);
617 SVCMAP(WMI_10_4_SERVICE_SCAN_OFFLOAD
,
618 WMI_SERVICE_SCAN_OFFLOAD
, len
);
619 SVCMAP(WMI_10_4_SERVICE_ROAM_OFFLOAD
,
620 WMI_SERVICE_ROAM_OFFLOAD
, len
);
621 SVCMAP(WMI_10_4_SERVICE_BCN_MISS_OFFLOAD
,
622 WMI_SERVICE_BCN_MISS_OFFLOAD
, len
);
623 SVCMAP(WMI_10_4_SERVICE_STA_PWRSAVE
,
624 WMI_SERVICE_STA_PWRSAVE
, len
);
625 SVCMAP(WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE
,
626 WMI_SERVICE_STA_ADVANCED_PWRSAVE
, len
);
627 SVCMAP(WMI_10_4_SERVICE_AP_UAPSD
,
628 WMI_SERVICE_AP_UAPSD
, len
);
629 SVCMAP(WMI_10_4_SERVICE_AP_DFS
,
630 WMI_SERVICE_AP_DFS
, len
);
631 SVCMAP(WMI_10_4_SERVICE_11AC
,
632 WMI_SERVICE_11AC
, len
);
633 SVCMAP(WMI_10_4_SERVICE_BLOCKACK
,
634 WMI_SERVICE_BLOCKACK
, len
);
635 SVCMAP(WMI_10_4_SERVICE_PHYERR
,
636 WMI_SERVICE_PHYERR
, len
);
637 SVCMAP(WMI_10_4_SERVICE_BCN_FILTER
,
638 WMI_SERVICE_BCN_FILTER
, len
);
639 SVCMAP(WMI_10_4_SERVICE_RTT
,
640 WMI_SERVICE_RTT
, len
);
641 SVCMAP(WMI_10_4_SERVICE_RATECTRL
,
642 WMI_SERVICE_RATECTRL
, len
);
643 SVCMAP(WMI_10_4_SERVICE_WOW
,
644 WMI_SERVICE_WOW
, len
);
645 SVCMAP(WMI_10_4_SERVICE_RATECTRL_CACHE
,
646 WMI_SERVICE_RATECTRL_CACHE
, len
);
647 SVCMAP(WMI_10_4_SERVICE_IRAM_TIDS
,
648 WMI_SERVICE_IRAM_TIDS
, len
);
649 SVCMAP(WMI_10_4_SERVICE_BURST
,
650 WMI_SERVICE_BURST
, len
);
651 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT
,
652 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT
, len
);
653 SVCMAP(WMI_10_4_SERVICE_GTK_OFFLOAD
,
654 WMI_SERVICE_GTK_OFFLOAD
, len
);
655 SVCMAP(WMI_10_4_SERVICE_SCAN_SCH
,
656 WMI_SERVICE_SCAN_SCH
, len
);
657 SVCMAP(WMI_10_4_SERVICE_CSA_OFFLOAD
,
658 WMI_SERVICE_CSA_OFFLOAD
, len
);
659 SVCMAP(WMI_10_4_SERVICE_CHATTER
,
660 WMI_SERVICE_CHATTER
, len
);
661 SVCMAP(WMI_10_4_SERVICE_COEX_FREQAVOID
,
662 WMI_SERVICE_COEX_FREQAVOID
, len
);
663 SVCMAP(WMI_10_4_SERVICE_PACKET_POWER_SAVE
,
664 WMI_SERVICE_PACKET_POWER_SAVE
, len
);
665 SVCMAP(WMI_10_4_SERVICE_FORCE_FW_HANG
,
666 WMI_SERVICE_FORCE_FW_HANG
, len
);
667 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT
,
668 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT
, len
);
669 SVCMAP(WMI_10_4_SERVICE_GPIO
,
670 WMI_SERVICE_GPIO
, len
);
671 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
,
672 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG
, len
);
673 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
,
674 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG
, len
);
675 SVCMAP(WMI_10_4_SERVICE_STA_KEEP_ALIVE
,
676 WMI_SERVICE_STA_KEEP_ALIVE
, len
);
677 SVCMAP(WMI_10_4_SERVICE_TX_ENCAP
,
678 WMI_SERVICE_TX_ENCAP
, len
);
679 SVCMAP(WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC
,
680 WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC
, len
);
681 SVCMAP(WMI_10_4_SERVICE_EARLY_RX
,
682 WMI_SERVICE_EARLY_RX
, len
);
683 SVCMAP(WMI_10_4_SERVICE_ENHANCED_PROXY_STA
,
684 WMI_SERVICE_ENHANCED_PROXY_STA
, len
);
685 SVCMAP(WMI_10_4_SERVICE_TT
,
686 WMI_SERVICE_TT
, len
);
687 SVCMAP(WMI_10_4_SERVICE_ATF
,
688 WMI_SERVICE_ATF
, len
);
689 SVCMAP(WMI_10_4_SERVICE_PEER_CACHING
,
690 WMI_SERVICE_PEER_CACHING
, len
);
691 SVCMAP(WMI_10_4_SERVICE_COEX_GPIO
,
692 WMI_SERVICE_COEX_GPIO
, len
);
693 SVCMAP(WMI_10_4_SERVICE_AUX_SPECTRAL_INTF
,
694 WMI_SERVICE_AUX_SPECTRAL_INTF
, len
);
695 SVCMAP(WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF
,
696 WMI_SERVICE_AUX_CHAN_LOAD_INTF
, len
);
697 SVCMAP(WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64
,
698 WMI_SERVICE_BSS_CHANNEL_INFO_64
, len
);
699 SVCMAP(WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT
,
700 WMI_SERVICE_EXT_RES_CFG_SUPPORT
, len
);
701 SVCMAP(WMI_10_4_SERVICE_MESH_NON_11S
,
702 WMI_SERVICE_MESH_NON_11S
, len
);
703 SVCMAP(WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT
,
704 WMI_SERVICE_RESTRT_CHNL_SUPPORT
, len
);
705 SVCMAP(WMI_10_4_SERVICE_PEER_STATS
,
706 WMI_SERVICE_PEER_STATS
, len
);
707 SVCMAP(WMI_10_4_SERVICE_MESH_11S
,
708 WMI_SERVICE_MESH_11S
, len
);
709 SVCMAP(WMI_10_4_SERVICE_PERIODIC_CHAN_STAT_SUPPORT
,
710 WMI_SERVICE_PERIODIC_CHAN_STAT_SUPPORT
, len
);
711 SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_ONLY
,
712 WMI_SERVICE_TX_MODE_PUSH_ONLY
, len
);
713 SVCMAP(WMI_10_4_SERVICE_TX_MODE_PUSH_PULL
,
714 WMI_SERVICE_TX_MODE_PUSH_PULL
, len
);
715 SVCMAP(WMI_10_4_SERVICE_TX_MODE_DYNAMIC
,
716 WMI_SERVICE_TX_MODE_DYNAMIC
, len
);
717 SVCMAP(WMI_10_4_SERVICE_VDEV_RX_FILTER
,
718 WMI_SERVICE_VDEV_RX_FILTER
, len
);
719 SVCMAP(WMI_10_4_SERVICE_BTCOEX
,
720 WMI_SERVICE_BTCOEX
, len
);
721 SVCMAP(WMI_10_4_SERVICE_CHECK_CAL_VERSION
,
722 WMI_SERVICE_CHECK_CAL_VERSION
, len
);
723 SVCMAP(WMI_10_4_SERVICE_DBGLOG_WARN2
,
724 WMI_SERVICE_DBGLOG_WARN2
, len
);
725 SVCMAP(WMI_10_4_SERVICE_BTCOEX_DUTY_CYCLE
,
726 WMI_SERVICE_BTCOEX_DUTY_CYCLE
, len
);
727 SVCMAP(WMI_10_4_SERVICE_4_WIRE_COEX_SUPPORT
,
728 WMI_SERVICE_4_WIRE_COEX_SUPPORT
, len
);
729 SVCMAP(WMI_10_4_SERVICE_EXTENDED_NSS_SUPPORT
,
730 WMI_SERVICE_EXTENDED_NSS_SUPPORT
, len
);
731 SVCMAP(WMI_10_4_SERVICE_PROG_GPIO_BAND_SELECT
,
732 WMI_SERVICE_PROG_GPIO_BAND_SELECT
, len
);
733 SVCMAP(WMI_10_4_SERVICE_SMART_LOGGING_SUPPORT
,
734 WMI_SERVICE_SMART_LOGGING_SUPPORT
, len
);
735 SVCMAP(WMI_10_4_SERVICE_TDLS
,
736 WMI_SERVICE_TDLS
, len
);
737 SVCMAP(WMI_10_4_SERVICE_TDLS_OFFCHAN
,
738 WMI_SERVICE_TDLS_OFFCHAN
, len
);
739 SVCMAP(WMI_10_4_SERVICE_TDLS_UAPSD_BUFFER_STA
,
740 WMI_SERVICE_TDLS_UAPSD_BUFFER_STA
, len
);
741 SVCMAP(WMI_10_4_SERVICE_TDLS_UAPSD_SLEEP_STA
,
742 WMI_SERVICE_TDLS_UAPSD_SLEEP_STA
, len
);
743 SVCMAP(WMI_10_4_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE
,
744 WMI_SERVICE_TDLS_CONN_TRACKER_IN_HOST_MODE
, len
);
745 SVCMAP(WMI_10_4_SERVICE_TDLS_EXPLICIT_MODE_ONLY
,
746 WMI_SERVICE_TDLS_EXPLICIT_MODE_ONLY
, len
);
747 SVCMAP(WMI_10_4_SERVICE_TDLS_WIDER_BANDWIDTH
,
748 WMI_SERVICE_TDLS_WIDER_BANDWIDTH
, len
);
753 /* 2 word representation of MAC addr */
754 struct wmi_mac_addr
{
766 u32 start_scan_cmdid
;
768 u32 scan_chan_list_cmdid
;
769 u32 scan_sch_prio_tbl_cmdid
;
770 u32 pdev_set_regdomain_cmdid
;
771 u32 pdev_set_channel_cmdid
;
772 u32 pdev_set_param_cmdid
;
773 u32 pdev_pktlog_enable_cmdid
;
774 u32 pdev_pktlog_disable_cmdid
;
775 u32 pdev_set_wmm_params_cmdid
;
776 u32 pdev_set_ht_cap_ie_cmdid
;
777 u32 pdev_set_vht_cap_ie_cmdid
;
778 u32 pdev_set_dscp_tid_map_cmdid
;
779 u32 pdev_set_quiet_mode_cmdid
;
780 u32 pdev_green_ap_ps_enable_cmdid
;
781 u32 pdev_get_tpc_config_cmdid
;
782 u32 pdev_set_base_macaddr_cmdid
;
783 u32 vdev_create_cmdid
;
784 u32 vdev_delete_cmdid
;
785 u32 vdev_start_request_cmdid
;
786 u32 vdev_restart_request_cmdid
;
790 u32 vdev_set_param_cmdid
;
791 u32 vdev_install_key_cmdid
;
792 u32 peer_create_cmdid
;
793 u32 peer_delete_cmdid
;
794 u32 peer_flush_tids_cmdid
;
795 u32 peer_set_param_cmdid
;
796 u32 peer_assoc_cmdid
;
797 u32 peer_add_wds_entry_cmdid
;
798 u32 peer_remove_wds_entry_cmdid
;
799 u32 peer_mcast_group_cmdid
;
801 u32 pdev_send_bcn_cmdid
;
803 u32 bcn_filter_rx_cmdid
;
804 u32 prb_req_filter_rx_cmdid
;
806 u32 mgmt_tx_send_cmdid
;
808 u32 addba_clear_resp_cmdid
;
809 u32 addba_send_cmdid
;
810 u32 addba_status_cmdid
;
811 u32 delba_send_cmdid
;
812 u32 addba_set_resp_cmdid
;
813 u32 send_singleamsdu_cmdid
;
814 u32 sta_powersave_mode_cmdid
;
815 u32 sta_powersave_param_cmdid
;
816 u32 sta_mimo_ps_mode_cmdid
;
817 u32 pdev_dfs_enable_cmdid
;
818 u32 pdev_dfs_disable_cmdid
;
820 u32 roam_scan_rssi_threshold
;
821 u32 roam_scan_period
;
822 u32 roam_scan_rssi_change_threshold
;
824 u32 ofl_scan_add_ap_profile
;
825 u32 ofl_scan_remove_ap_profile
;
827 u32 p2p_dev_set_device_info
;
828 u32 p2p_dev_set_discoverability
;
829 u32 p2p_go_set_beacon_ie
;
830 u32 p2p_go_set_probe_resp_ie
;
831 u32 p2p_set_vendor_ie_data_cmdid
;
832 u32 ap_ps_peer_param_cmdid
;
833 u32 ap_ps_peer_uapsd_coex_cmdid
;
834 u32 peer_rate_retry_sched_cmdid
;
835 u32 wlan_profile_trigger_cmdid
;
836 u32 wlan_profile_set_hist_intvl_cmdid
;
837 u32 wlan_profile_get_profile_data_cmdid
;
838 u32 wlan_profile_enable_profile_id_cmdid
;
839 u32 wlan_profile_list_profile_id_cmdid
;
840 u32 pdev_suspend_cmdid
;
841 u32 pdev_resume_cmdid
;
842 u32 add_bcn_filter_cmdid
;
843 u32 rmv_bcn_filter_cmdid
;
844 u32 wow_add_wake_pattern_cmdid
;
845 u32 wow_del_wake_pattern_cmdid
;
846 u32 wow_enable_disable_wake_event_cmdid
;
847 u32 wow_enable_cmdid
;
848 u32 wow_hostwakeup_from_sleep_cmdid
;
849 u32 rtt_measreq_cmdid
;
851 u32 vdev_spectral_scan_configure_cmdid
;
852 u32 vdev_spectral_scan_enable_cmdid
;
853 u32 request_stats_cmdid
;
854 u32 set_arp_ns_offload_cmdid
;
855 u32 network_list_offload_config_cmdid
;
856 u32 gtk_offload_cmdid
;
857 u32 csa_offload_enable_cmdid
;
858 u32 csa_offload_chanswitch_cmdid
;
859 u32 chatter_set_mode_cmdid
;
860 u32 peer_tid_addba_cmdid
;
861 u32 peer_tid_delba_cmdid
;
862 u32 sta_dtim_ps_method_cmdid
;
863 u32 sta_uapsd_auto_trig_cmdid
;
864 u32 sta_keepalive_cmd
;
867 u32 dbglog_cfg_cmdid
;
869 u32 pdev_ftm_intg_cmdid
;
870 u32 vdev_set_keepalive_cmdid
;
871 u32 vdev_get_keepalive_cmdid
;
872 u32 force_fw_hang_cmdid
;
873 u32 gpio_config_cmdid
;
874 u32 gpio_output_cmdid
;
875 u32 pdev_get_temperature_cmdid
;
876 u32 vdev_set_wmm_params_cmdid
;
877 u32 tdls_set_state_cmdid
;
878 u32 tdls_peer_update_cmdid
;
879 u32 adaptive_qcs_cmdid
;
880 u32 scan_update_request_cmdid
;
881 u32 vdev_standby_response_cmdid
;
882 u32 vdev_resume_response_cmdid
;
883 u32 wlan_peer_caching_add_peer_cmdid
;
884 u32 wlan_peer_caching_evict_peer_cmdid
;
885 u32 wlan_peer_caching_restore_peer_cmdid
;
886 u32 wlan_peer_caching_print_all_peers_info_cmdid
;
887 u32 peer_update_wds_entry_cmdid
;
888 u32 peer_add_proxy_sta_entry_cmdid
;
889 u32 rtt_keepalive_cmdid
;
892 u32 vdev_ratemask_cmdid
;
893 u32 qboost_cfg_cmdid
;
894 u32 pdev_smart_ant_enable_cmdid
;
895 u32 pdev_smart_ant_set_rx_antenna_cmdid
;
896 u32 peer_smart_ant_set_tx_antenna_cmdid
;
897 u32 peer_smart_ant_set_train_info_cmdid
;
898 u32 peer_smart_ant_set_node_config_ops_cmdid
;
899 u32 pdev_set_antenna_switch_table_cmdid
;
900 u32 pdev_set_ctl_table_cmdid
;
901 u32 pdev_set_mimogain_table_cmdid
;
902 u32 pdev_ratepwr_table_cmdid
;
903 u32 pdev_ratepwr_chainmsk_table_cmdid
;
905 u32 tt_set_conf_cmdid
;
907 u32 vdev_atf_request_cmdid
;
908 u32 peer_atf_request_cmdid
;
909 u32 pdev_get_ani_cck_config_cmdid
;
910 u32 pdev_get_ani_ofdm_config_cmdid
;
911 u32 pdev_reserve_ast_entry_cmdid
;
912 u32 pdev_get_nfcal_power_cmdid
;
913 u32 pdev_get_tpc_cmdid
;
914 u32 pdev_get_ast_info_cmdid
;
915 u32 vdev_set_dscp_tid_map_cmdid
;
916 u32 pdev_get_info_cmdid
;
917 u32 vdev_get_info_cmdid
;
918 u32 vdev_filter_neighbor_rx_packets_cmdid
;
919 u32 mu_cal_start_cmdid
;
920 u32 set_cca_params_cmdid
;
921 u32 pdev_bss_chan_info_request_cmdid
;
922 u32 pdev_enable_adaptive_cca_cmdid
;
923 u32 ext_resource_cfg_cmdid
;
924 u32 vdev_set_ie_cmdid
;
925 u32 set_lteu_config_cmdid
;
926 u32 atf_ssid_grouping_request_cmdid
;
927 u32 peer_atf_ext_request_cmdid
;
928 u32 set_periodic_channel_stats_cfg_cmdid
;
929 u32 peer_bwf_request_cmdid
;
930 u32 btcoex_cfg_cmdid
;
931 u32 peer_tx_mu_txmit_count_cmdid
;
932 u32 peer_tx_mu_txmit_rstcnt_cmdid
;
933 u32 peer_gid_userpos_list_cmdid
;
934 u32 pdev_check_cal_version_cmdid
;
935 u32 coex_version_cfg_cmid
;
936 u32 pdev_get_rx_filter_cmdid
;
937 u32 pdev_extended_nss_cfg_cmdid
;
938 u32 vdev_set_scan_nac_rssi_cmdid
;
939 u32 prog_gpio_band_select_cmdid
;
940 u32 config_smart_logging_cmdid
;
941 u32 debug_fatal_condition_cmdid
;
942 u32 get_tsf_timer_cmdid
;
943 u32 pdev_get_tpc_table_cmdid
;
944 u32 vdev_sifs_trigger_time_cmdid
;
945 u32 pdev_wds_entry_list_cmdid
;
946 u32 tdls_set_offchan_mode_cmdid
;
950 * wmi command groups.
953 /* 0 to 2 are reserved */
955 WMI_GRP_SCAN
= WMI_GRP_START
,
985 #define WMI_CMD_GRP(grp_id) (((grp_id) << 12) | 0x1)
986 #define WMI_EVT_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1)
988 #define WMI_CMD_UNSUPPORTED 0
990 /* Command IDs and command events for MAIN FW. */
992 WMI_INIT_CMDID
= 0x1,
994 /* Scan specific commands */
995 WMI_START_SCAN_CMDID
= WMI_CMD_GRP(WMI_GRP_SCAN
),
997 WMI_SCAN_CHAN_LIST_CMDID
,
998 WMI_SCAN_SCH_PRIO_TBL_CMDID
,
1000 /* PDEV (physical device) specific commands */
1001 WMI_PDEV_SET_REGDOMAIN_CMDID
= WMI_CMD_GRP(WMI_GRP_PDEV
),
1002 WMI_PDEV_SET_CHANNEL_CMDID
,
1003 WMI_PDEV_SET_PARAM_CMDID
,
1004 WMI_PDEV_PKTLOG_ENABLE_CMDID
,
1005 WMI_PDEV_PKTLOG_DISABLE_CMDID
,
1006 WMI_PDEV_SET_WMM_PARAMS_CMDID
,
1007 WMI_PDEV_SET_HT_CAP_IE_CMDID
,
1008 WMI_PDEV_SET_VHT_CAP_IE_CMDID
,
1009 WMI_PDEV_SET_DSCP_TID_MAP_CMDID
,
1010 WMI_PDEV_SET_QUIET_MODE_CMDID
,
1011 WMI_PDEV_GREEN_AP_PS_ENABLE_CMDID
,
1012 WMI_PDEV_GET_TPC_CONFIG_CMDID
,
1013 WMI_PDEV_SET_BASE_MACADDR_CMDID
,
1015 /* VDEV (virtual device) specific commands */
1016 WMI_VDEV_CREATE_CMDID
= WMI_CMD_GRP(WMI_GRP_VDEV
),
1017 WMI_VDEV_DELETE_CMDID
,
1018 WMI_VDEV_START_REQUEST_CMDID
,
1019 WMI_VDEV_RESTART_REQUEST_CMDID
,
1021 WMI_VDEV_STOP_CMDID
,
1022 WMI_VDEV_DOWN_CMDID
,
1023 WMI_VDEV_SET_PARAM_CMDID
,
1024 WMI_VDEV_INSTALL_KEY_CMDID
,
1026 /* peer specific commands */
1027 WMI_PEER_CREATE_CMDID
= WMI_CMD_GRP(WMI_GRP_PEER
),
1028 WMI_PEER_DELETE_CMDID
,
1029 WMI_PEER_FLUSH_TIDS_CMDID
,
1030 WMI_PEER_SET_PARAM_CMDID
,
1031 WMI_PEER_ASSOC_CMDID
,
1032 WMI_PEER_ADD_WDS_ENTRY_CMDID
,
1033 WMI_PEER_REMOVE_WDS_ENTRY_CMDID
,
1034 WMI_PEER_MCAST_GROUP_CMDID
,
1036 /* beacon/management specific commands */
1037 WMI_BCN_TX_CMDID
= WMI_CMD_GRP(WMI_GRP_MGMT
),
1038 WMI_PDEV_SEND_BCN_CMDID
,
1040 WMI_BCN_FILTER_RX_CMDID
,
1041 WMI_PRB_REQ_FILTER_RX_CMDID
,
1045 /* commands to directly control BA negotiation directly from host. */
1046 WMI_ADDBA_CLEAR_RESP_CMDID
= WMI_CMD_GRP(WMI_GRP_BA_NEG
),
1047 WMI_ADDBA_SEND_CMDID
,
1048 WMI_ADDBA_STATUS_CMDID
,
1049 WMI_DELBA_SEND_CMDID
,
1050 WMI_ADDBA_SET_RESP_CMDID
,
1051 WMI_SEND_SINGLEAMSDU_CMDID
,
1053 /* Station power save specific config */
1054 WMI_STA_POWERSAVE_MODE_CMDID
= WMI_CMD_GRP(WMI_GRP_STA_PS
),
1055 WMI_STA_POWERSAVE_PARAM_CMDID
,
1056 WMI_STA_MIMO_PS_MODE_CMDID
,
1058 /** DFS-specific commands */
1059 WMI_PDEV_DFS_ENABLE_CMDID
= WMI_CMD_GRP(WMI_GRP_DFS
),
1060 WMI_PDEV_DFS_DISABLE_CMDID
,
1062 /* Roaming specific commands */
1063 WMI_ROAM_SCAN_MODE
= WMI_CMD_GRP(WMI_GRP_ROAM
),
1064 WMI_ROAM_SCAN_RSSI_THRESHOLD
,
1065 WMI_ROAM_SCAN_PERIOD
,
1066 WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD
,
1067 WMI_ROAM_AP_PROFILE
,
1069 /* offload scan specific commands */
1070 WMI_OFL_SCAN_ADD_AP_PROFILE
= WMI_CMD_GRP(WMI_GRP_OFL_SCAN
),
1071 WMI_OFL_SCAN_REMOVE_AP_PROFILE
,
1072 WMI_OFL_SCAN_PERIOD
,
1074 /* P2P specific commands */
1075 WMI_P2P_DEV_SET_DEVICE_INFO
= WMI_CMD_GRP(WMI_GRP_P2P
),
1076 WMI_P2P_DEV_SET_DISCOVERABILITY
,
1077 WMI_P2P_GO_SET_BEACON_IE
,
1078 WMI_P2P_GO_SET_PROBE_RESP_IE
,
1079 WMI_P2P_SET_VENDOR_IE_DATA_CMDID
,
1081 /* AP power save specific config */
1082 WMI_AP_PS_PEER_PARAM_CMDID
= WMI_CMD_GRP(WMI_GRP_AP_PS
),
1083 WMI_AP_PS_PEER_UAPSD_COEX_CMDID
,
1085 /* Rate-control specific commands */
1086 WMI_PEER_RATE_RETRY_SCHED_CMDID
=
1087 WMI_CMD_GRP(WMI_GRP_RATE_CTRL
),
1089 /* WLAN Profiling commands. */
1090 WMI_WLAN_PROFILE_TRIGGER_CMDID
= WMI_CMD_GRP(WMI_GRP_PROFILE
),
1091 WMI_WLAN_PROFILE_SET_HIST_INTVL_CMDID
,
1092 WMI_WLAN_PROFILE_GET_PROFILE_DATA_CMDID
,
1093 WMI_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID
,
1094 WMI_WLAN_PROFILE_LIST_PROFILE_ID_CMDID
,
1096 /* Suspend resume command Ids */
1097 WMI_PDEV_SUSPEND_CMDID
= WMI_CMD_GRP(WMI_GRP_SUSPEND
),
1098 WMI_PDEV_RESUME_CMDID
,
1100 /* Beacon filter commands */
1101 WMI_ADD_BCN_FILTER_CMDID
= WMI_CMD_GRP(WMI_GRP_BCN_FILTER
),
1102 WMI_RMV_BCN_FILTER_CMDID
,
1104 /* WOW Specific WMI commands*/
1105 WMI_WOW_ADD_WAKE_PATTERN_CMDID
= WMI_CMD_GRP(WMI_GRP_WOW
),
1106 WMI_WOW_DEL_WAKE_PATTERN_CMDID
,
1107 WMI_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID
,
1108 WMI_WOW_ENABLE_CMDID
,
1109 WMI_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID
,
1111 /* RTT measurement related cmd */
1112 WMI_RTT_MEASREQ_CMDID
= WMI_CMD_GRP(WMI_GRP_RTT
),
1115 /* spectral scan commands */
1116 WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID
= WMI_CMD_GRP(WMI_GRP_SPECTRAL
),
1117 WMI_VDEV_SPECTRAL_SCAN_ENABLE_CMDID
,
1120 WMI_REQUEST_STATS_CMDID
= WMI_CMD_GRP(WMI_GRP_STATS
),
1122 /* ARP OFFLOAD REQUEST*/
1123 WMI_SET_ARP_NS_OFFLOAD_CMDID
= WMI_CMD_GRP(WMI_GRP_ARP_NS_OFL
),
1125 /* NS offload confid*/
1126 WMI_NETWORK_LIST_OFFLOAD_CONFIG_CMDID
= WMI_CMD_GRP(WMI_GRP_NLO_OFL
),
1128 /* GTK offload Specific WMI commands*/
1129 WMI_GTK_OFFLOAD_CMDID
= WMI_CMD_GRP(WMI_GRP_GTK_OFL
),
1131 /* CSA offload Specific WMI commands*/
1132 WMI_CSA_OFFLOAD_ENABLE_CMDID
= WMI_CMD_GRP(WMI_GRP_CSA_OFL
),
1133 WMI_CSA_OFFLOAD_CHANSWITCH_CMDID
,
1135 /* Chatter commands*/
1136 WMI_CHATTER_SET_MODE_CMDID
= WMI_CMD_GRP(WMI_GRP_CHATTER
),
1138 /* addba specific commands */
1139 WMI_PEER_TID_ADDBA_CMDID
= WMI_CMD_GRP(WMI_GRP_TID_ADDBA
),
1140 WMI_PEER_TID_DELBA_CMDID
,
1142 /* set station mimo powersave method */
1143 WMI_STA_DTIM_PS_METHOD_CMDID
,
1144 /* Configure the Station UAPSD AC Auto Trigger Parameters */
1145 WMI_STA_UAPSD_AUTO_TRIG_CMDID
,
1147 /* STA Keep alive parameter configuration,
1148 * Requires WMI_SERVICE_STA_KEEP_ALIVE
1150 WMI_STA_KEEPALIVE_CMD
,
1152 /* misc command group */
1153 WMI_ECHO_CMDID
= WMI_CMD_GRP(WMI_GRP_MISC
),
1155 WMI_DBGLOG_CFG_CMDID
,
1156 WMI_PDEV_QVIT_CMDID
,
1157 WMI_PDEV_FTM_INTG_CMDID
,
1158 WMI_VDEV_SET_KEEPALIVE_CMDID
,
1159 WMI_VDEV_GET_KEEPALIVE_CMDID
,
1160 WMI_FORCE_FW_HANG_CMDID
,
1162 /* GPIO Configuration */
1163 WMI_GPIO_CONFIG_CMDID
= WMI_CMD_GRP(WMI_GRP_GPIO
),
1164 WMI_GPIO_OUTPUT_CMDID
,
1168 WMI_SERVICE_READY_EVENTID
= 0x1,
1171 /* Scan specific events */
1172 WMI_SCAN_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_SCAN
),
1174 /* PDEV specific events */
1175 WMI_PDEV_TPC_CONFIG_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_PDEV
),
1176 WMI_CHAN_INFO_EVENTID
,
1179 /* VDEV specific events */
1180 WMI_VDEV_START_RESP_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_VDEV
),
1181 WMI_VDEV_STOPPED_EVENTID
,
1182 WMI_VDEV_INSTALL_KEY_COMPLETE_EVENTID
,
1184 /* peer specific events */
1185 WMI_PEER_STA_KICKOUT_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_PEER
),
1187 /* beacon/mgmt specific events */
1188 WMI_MGMT_RX_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_MGMT
),
1189 WMI_HOST_SWBA_EVENTID
,
1190 WMI_TBTTOFFSET_UPDATE_EVENTID
,
1192 /* ADDBA Related WMI Events*/
1193 WMI_TX_DELBA_COMPLETE_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_BA_NEG
),
1194 WMI_TX_ADDBA_COMPLETE_EVENTID
,
1196 /* Roam event to trigger roaming on host */
1197 WMI_ROAM_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_ROAM
),
1201 WMI_WOW_WAKEUP_HOST_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_WOW
),
1204 WMI_RTT_MEASUREMENT_REPORT_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_RTT
),
1205 WMI_TSF_MEASUREMENT_REPORT_EVENTID
,
1206 WMI_RTT_ERROR_REPORT_EVENTID
,
1209 WMI_GTK_OFFLOAD_STATUS_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_GTK_OFL
),
1210 WMI_GTK_REKEY_FAIL_EVENTID
,
1212 /* CSA IE received event */
1213 WMI_CSA_HANDLING_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_CSA_OFL
),
1216 WMI_ECHO_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_MISC
),
1217 WMI_PDEV_UTF_EVENTID
,
1218 WMI_DEBUG_MESG_EVENTID
,
1219 WMI_UPDATE_STATS_EVENTID
,
1220 WMI_DEBUG_PRINT_EVENTID
,
1221 WMI_DCS_INTERFERENCE_EVENTID
,
1222 WMI_PDEV_QVIT_EVENTID
,
1223 WMI_WLAN_PROFILE_DATA_EVENTID
,
1224 WMI_PDEV_FTM_INTG_EVENTID
,
1225 WMI_WLAN_FREQ_AVOID_EVENTID
,
1226 WMI_VDEV_GET_KEEPALIVE_EVENTID
,
1229 WMI_GPIO_INPUT_EVENTID
= WMI_EVT_GRP_START_ID(WMI_GRP_GPIO
),
1232 /* Command IDs and command events for 10.X firmware */
1233 enum wmi_10x_cmd_id
{
1234 WMI_10X_START_CMDID
= 0x9000,
1235 WMI_10X_END_CMDID
= 0x9FFF,
1237 /* initialize the wlan sub system */
1240 /* Scan specific commands */
1242 WMI_10X_START_SCAN_CMDID
= WMI_10X_START_CMDID
,
1243 WMI_10X_STOP_SCAN_CMDID
,
1244 WMI_10X_SCAN_CHAN_LIST_CMDID
,
1247 /* PDEV(physical device) specific commands */
1248 WMI_10X_PDEV_SET_REGDOMAIN_CMDID
,
1249 WMI_10X_PDEV_SET_CHANNEL_CMDID
,
1250 WMI_10X_PDEV_SET_PARAM_CMDID
,
1251 WMI_10X_PDEV_PKTLOG_ENABLE_CMDID
,
1252 WMI_10X_PDEV_PKTLOG_DISABLE_CMDID
,
1253 WMI_10X_PDEV_SET_WMM_PARAMS_CMDID
,
1254 WMI_10X_PDEV_SET_HT_CAP_IE_CMDID
,
1255 WMI_10X_PDEV_SET_VHT_CAP_IE_CMDID
,
1256 WMI_10X_PDEV_SET_BASE_MACADDR_CMDID
,
1257 WMI_10X_PDEV_SET_DSCP_TID_MAP_CMDID
,
1258 WMI_10X_PDEV_SET_QUIET_MODE_CMDID
,
1259 WMI_10X_PDEV_GREEN_AP_PS_ENABLE_CMDID
,
1260 WMI_10X_PDEV_GET_TPC_CONFIG_CMDID
,
1262 /* VDEV(virtual device) specific commands */
1263 WMI_10X_VDEV_CREATE_CMDID
,
1264 WMI_10X_VDEV_DELETE_CMDID
,
1265 WMI_10X_VDEV_START_REQUEST_CMDID
,
1266 WMI_10X_VDEV_RESTART_REQUEST_CMDID
,
1267 WMI_10X_VDEV_UP_CMDID
,
1268 WMI_10X_VDEV_STOP_CMDID
,
1269 WMI_10X_VDEV_DOWN_CMDID
,
1270 WMI_10X_VDEV_STANDBY_RESPONSE_CMDID
,
1271 WMI_10X_VDEV_RESUME_RESPONSE_CMDID
,
1272 WMI_10X_VDEV_SET_PARAM_CMDID
,
1273 WMI_10X_VDEV_INSTALL_KEY_CMDID
,
1275 /* peer specific commands */
1276 WMI_10X_PEER_CREATE_CMDID
,
1277 WMI_10X_PEER_DELETE_CMDID
,
1278 WMI_10X_PEER_FLUSH_TIDS_CMDID
,
1279 WMI_10X_PEER_SET_PARAM_CMDID
,
1280 WMI_10X_PEER_ASSOC_CMDID
,
1281 WMI_10X_PEER_ADD_WDS_ENTRY_CMDID
,
1282 WMI_10X_PEER_REMOVE_WDS_ENTRY_CMDID
,
1283 WMI_10X_PEER_MCAST_GROUP_CMDID
,
1285 /* beacon/management specific commands */
1287 WMI_10X_BCN_TX_CMDID
,
1288 WMI_10X_BCN_PRB_TMPL_CMDID
,
1289 WMI_10X_BCN_FILTER_RX_CMDID
,
1290 WMI_10X_PRB_REQ_FILTER_RX_CMDID
,
1291 WMI_10X_MGMT_TX_CMDID
,
1293 /* commands to directly control ba negotiation directly from host. */
1294 WMI_10X_ADDBA_CLEAR_RESP_CMDID
,
1295 WMI_10X_ADDBA_SEND_CMDID
,
1296 WMI_10X_ADDBA_STATUS_CMDID
,
1297 WMI_10X_DELBA_SEND_CMDID
,
1298 WMI_10X_ADDBA_SET_RESP_CMDID
,
1299 WMI_10X_SEND_SINGLEAMSDU_CMDID
,
1301 /* Station power save specific config */
1302 WMI_10X_STA_POWERSAVE_MODE_CMDID
,
1303 WMI_10X_STA_POWERSAVE_PARAM_CMDID
,
1304 WMI_10X_STA_MIMO_PS_MODE_CMDID
,
1306 /* set debug log config */
1307 WMI_10X_DBGLOG_CFG_CMDID
,
1309 /* DFS-specific commands */
1310 WMI_10X_PDEV_DFS_ENABLE_CMDID
,
1311 WMI_10X_PDEV_DFS_DISABLE_CMDID
,
1313 /* QVIT specific command id */
1314 WMI_10X_PDEV_QVIT_CMDID
,
1316 /* Offload Scan and Roaming related commands */
1317 WMI_10X_ROAM_SCAN_MODE
,
1318 WMI_10X_ROAM_SCAN_RSSI_THRESHOLD
,
1319 WMI_10X_ROAM_SCAN_PERIOD
,
1320 WMI_10X_ROAM_SCAN_RSSI_CHANGE_THRESHOLD
,
1321 WMI_10X_ROAM_AP_PROFILE
,
1322 WMI_10X_OFL_SCAN_ADD_AP_PROFILE
,
1323 WMI_10X_OFL_SCAN_REMOVE_AP_PROFILE
,
1324 WMI_10X_OFL_SCAN_PERIOD
,
1326 /* P2P specific commands */
1327 WMI_10X_P2P_DEV_SET_DEVICE_INFO
,
1328 WMI_10X_P2P_DEV_SET_DISCOVERABILITY
,
1329 WMI_10X_P2P_GO_SET_BEACON_IE
,
1330 WMI_10X_P2P_GO_SET_PROBE_RESP_IE
,
1332 /* AP power save specific config */
1333 WMI_10X_AP_PS_PEER_PARAM_CMDID
,
1334 WMI_10X_AP_PS_PEER_UAPSD_COEX_CMDID
,
1336 /* Rate-control specific commands */
1337 WMI_10X_PEER_RATE_RETRY_SCHED_CMDID
,
1339 /* WLAN Profiling commands. */
1340 WMI_10X_WLAN_PROFILE_TRIGGER_CMDID
,
1341 WMI_10X_WLAN_PROFILE_SET_HIST_INTVL_CMDID
,
1342 WMI_10X_WLAN_PROFILE_GET_PROFILE_DATA_CMDID
,
1343 WMI_10X_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID
,
1344 WMI_10X_WLAN_PROFILE_LIST_PROFILE_ID_CMDID
,
1346 /* Suspend resume command Ids */
1347 WMI_10X_PDEV_SUSPEND_CMDID
,
1348 WMI_10X_PDEV_RESUME_CMDID
,
1350 /* Beacon filter commands */
1351 WMI_10X_ADD_BCN_FILTER_CMDID
,
1352 WMI_10X_RMV_BCN_FILTER_CMDID
,
1354 /* WOW Specific WMI commands*/
1355 WMI_10X_WOW_ADD_WAKE_PATTERN_CMDID
,
1356 WMI_10X_WOW_DEL_WAKE_PATTERN_CMDID
,
1357 WMI_10X_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID
,
1358 WMI_10X_WOW_ENABLE_CMDID
,
1359 WMI_10X_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID
,
1361 /* RTT measurement related cmd */
1362 WMI_10X_RTT_MEASREQ_CMDID
,
1363 WMI_10X_RTT_TSF_CMDID
,
1365 /* transmit beacon by value */
1366 WMI_10X_PDEV_SEND_BCN_CMDID
,
1369 WMI_10X_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID
,
1370 WMI_10X_VDEV_SPECTRAL_SCAN_ENABLE_CMDID
,
1371 WMI_10X_REQUEST_STATS_CMDID
,
1373 /* GPIO Configuration */
1374 WMI_10X_GPIO_CONFIG_CMDID
,
1375 WMI_10X_GPIO_OUTPUT_CMDID
,
1377 WMI_10X_PDEV_UTF_CMDID
= WMI_10X_END_CMDID
- 1,
1380 enum wmi_10x_event_id
{
1381 WMI_10X_SERVICE_READY_EVENTID
= 0x8000,
1382 WMI_10X_READY_EVENTID
,
1383 WMI_10X_START_EVENTID
= 0x9000,
1384 WMI_10X_END_EVENTID
= 0x9FFF,
1386 /* Scan specific events */
1387 WMI_10X_SCAN_EVENTID
= WMI_10X_START_EVENTID
,
1388 WMI_10X_ECHO_EVENTID
,
1389 WMI_10X_DEBUG_MESG_EVENTID
,
1390 WMI_10X_UPDATE_STATS_EVENTID
,
1392 /* Instantaneous RSSI event */
1393 WMI_10X_INST_RSSI_STATS_EVENTID
,
1395 /* VDEV specific events */
1396 WMI_10X_VDEV_START_RESP_EVENTID
,
1397 WMI_10X_VDEV_STANDBY_REQ_EVENTID
,
1398 WMI_10X_VDEV_RESUME_REQ_EVENTID
,
1399 WMI_10X_VDEV_STOPPED_EVENTID
,
1401 /* peer specific events */
1402 WMI_10X_PEER_STA_KICKOUT_EVENTID
,
1404 /* beacon/mgmt specific events */
1405 WMI_10X_HOST_SWBA_EVENTID
,
1406 WMI_10X_TBTTOFFSET_UPDATE_EVENTID
,
1407 WMI_10X_MGMT_RX_EVENTID
,
1409 /* Channel stats event */
1410 WMI_10X_CHAN_INFO_EVENTID
,
1412 /* PHY Error specific WMI event */
1413 WMI_10X_PHYERR_EVENTID
,
1415 /* Roam event to trigger roaming on host */
1416 WMI_10X_ROAM_EVENTID
,
1418 /* matching AP found from list of profiles */
1419 WMI_10X_PROFILE_MATCH
,
1421 /* debug print message used for tracing FW code while debugging */
1422 WMI_10X_DEBUG_PRINT_EVENTID
,
1423 /* VI spoecific event */
1424 WMI_10X_PDEV_QVIT_EVENTID
,
1425 /* FW code profile data in response to profile request */
1426 WMI_10X_WLAN_PROFILE_DATA_EVENTID
,
1428 /*RTT related event ID*/
1429 WMI_10X_RTT_MEASUREMENT_REPORT_EVENTID
,
1430 WMI_10X_TSF_MEASUREMENT_REPORT_EVENTID
,
1431 WMI_10X_RTT_ERROR_REPORT_EVENTID
,
1433 WMI_10X_WOW_WAKEUP_HOST_EVENTID
,
1434 WMI_10X_DCS_INTERFERENCE_EVENTID
,
1436 /* TPC config for the current operating channel */
1437 WMI_10X_PDEV_TPC_CONFIG_EVENTID
,
1439 WMI_10X_GPIO_INPUT_EVENTID
,
1440 WMI_10X_PDEV_UTF_EVENTID
= WMI_10X_END_EVENTID
- 1,
1443 enum wmi_10_2_cmd_id
{
1444 WMI_10_2_START_CMDID
= 0x9000,
1445 WMI_10_2_END_CMDID
= 0x9FFF,
1446 WMI_10_2_INIT_CMDID
,
1447 WMI_10_2_START_SCAN_CMDID
= WMI_10_2_START_CMDID
,
1448 WMI_10_2_STOP_SCAN_CMDID
,
1449 WMI_10_2_SCAN_CHAN_LIST_CMDID
,
1450 WMI_10_2_ECHO_CMDID
,
1451 WMI_10_2_PDEV_SET_REGDOMAIN_CMDID
,
1452 WMI_10_2_PDEV_SET_CHANNEL_CMDID
,
1453 WMI_10_2_PDEV_SET_PARAM_CMDID
,
1454 WMI_10_2_PDEV_PKTLOG_ENABLE_CMDID
,
1455 WMI_10_2_PDEV_PKTLOG_DISABLE_CMDID
,
1456 WMI_10_2_PDEV_SET_WMM_PARAMS_CMDID
,
1457 WMI_10_2_PDEV_SET_HT_CAP_IE_CMDID
,
1458 WMI_10_2_PDEV_SET_VHT_CAP_IE_CMDID
,
1459 WMI_10_2_PDEV_SET_BASE_MACADDR_CMDID
,
1460 WMI_10_2_PDEV_SET_QUIET_MODE_CMDID
,
1461 WMI_10_2_PDEV_GREEN_AP_PS_ENABLE_CMDID
,
1462 WMI_10_2_PDEV_GET_TPC_CONFIG_CMDID
,
1463 WMI_10_2_VDEV_CREATE_CMDID
,
1464 WMI_10_2_VDEV_DELETE_CMDID
,
1465 WMI_10_2_VDEV_START_REQUEST_CMDID
,
1466 WMI_10_2_VDEV_RESTART_REQUEST_CMDID
,
1467 WMI_10_2_VDEV_UP_CMDID
,
1468 WMI_10_2_VDEV_STOP_CMDID
,
1469 WMI_10_2_VDEV_DOWN_CMDID
,
1470 WMI_10_2_VDEV_STANDBY_RESPONSE_CMDID
,
1471 WMI_10_2_VDEV_RESUME_RESPONSE_CMDID
,
1472 WMI_10_2_VDEV_SET_PARAM_CMDID
,
1473 WMI_10_2_VDEV_INSTALL_KEY_CMDID
,
1474 WMI_10_2_VDEV_SET_DSCP_TID_MAP_CMDID
,
1475 WMI_10_2_PEER_CREATE_CMDID
,
1476 WMI_10_2_PEER_DELETE_CMDID
,
1477 WMI_10_2_PEER_FLUSH_TIDS_CMDID
,
1478 WMI_10_2_PEER_SET_PARAM_CMDID
,
1479 WMI_10_2_PEER_ASSOC_CMDID
,
1480 WMI_10_2_PEER_ADD_WDS_ENTRY_CMDID
,
1481 WMI_10_2_PEER_UPDATE_WDS_ENTRY_CMDID
,
1482 WMI_10_2_PEER_REMOVE_WDS_ENTRY_CMDID
,
1483 WMI_10_2_PEER_MCAST_GROUP_CMDID
,
1484 WMI_10_2_BCN_TX_CMDID
,
1485 WMI_10_2_BCN_PRB_TMPL_CMDID
,
1486 WMI_10_2_BCN_FILTER_RX_CMDID
,
1487 WMI_10_2_PRB_REQ_FILTER_RX_CMDID
,
1488 WMI_10_2_MGMT_TX_CMDID
,
1489 WMI_10_2_ADDBA_CLEAR_RESP_CMDID
,
1490 WMI_10_2_ADDBA_SEND_CMDID
,
1491 WMI_10_2_ADDBA_STATUS_CMDID
,
1492 WMI_10_2_DELBA_SEND_CMDID
,
1493 WMI_10_2_ADDBA_SET_RESP_CMDID
,
1494 WMI_10_2_SEND_SINGLEAMSDU_CMDID
,
1495 WMI_10_2_STA_POWERSAVE_MODE_CMDID
,
1496 WMI_10_2_STA_POWERSAVE_PARAM_CMDID
,
1497 WMI_10_2_STA_MIMO_PS_MODE_CMDID
,
1498 WMI_10_2_DBGLOG_CFG_CMDID
,
1499 WMI_10_2_PDEV_DFS_ENABLE_CMDID
,
1500 WMI_10_2_PDEV_DFS_DISABLE_CMDID
,
1501 WMI_10_2_PDEV_QVIT_CMDID
,
1502 WMI_10_2_ROAM_SCAN_MODE
,
1503 WMI_10_2_ROAM_SCAN_RSSI_THRESHOLD
,
1504 WMI_10_2_ROAM_SCAN_PERIOD
,
1505 WMI_10_2_ROAM_SCAN_RSSI_CHANGE_THRESHOLD
,
1506 WMI_10_2_ROAM_AP_PROFILE
,
1507 WMI_10_2_OFL_SCAN_ADD_AP_PROFILE
,
1508 WMI_10_2_OFL_SCAN_REMOVE_AP_PROFILE
,
1509 WMI_10_2_OFL_SCAN_PERIOD
,
1510 WMI_10_2_P2P_DEV_SET_DEVICE_INFO
,
1511 WMI_10_2_P2P_DEV_SET_DISCOVERABILITY
,
1512 WMI_10_2_P2P_GO_SET_BEACON_IE
,
1513 WMI_10_2_P2P_GO_SET_PROBE_RESP_IE
,
1514 WMI_10_2_AP_PS_PEER_PARAM_CMDID
,
1515 WMI_10_2_AP_PS_PEER_UAPSD_COEX_CMDID
,
1516 WMI_10_2_PEER_RATE_RETRY_SCHED_CMDID
,
1517 WMI_10_2_WLAN_PROFILE_TRIGGER_CMDID
,
1518 WMI_10_2_WLAN_PROFILE_SET_HIST_INTVL_CMDID
,
1519 WMI_10_2_WLAN_PROFILE_GET_PROFILE_DATA_CMDID
,
1520 WMI_10_2_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID
,
1521 WMI_10_2_WLAN_PROFILE_LIST_PROFILE_ID_CMDID
,
1522 WMI_10_2_PDEV_SUSPEND_CMDID
,
1523 WMI_10_2_PDEV_RESUME_CMDID
,
1524 WMI_10_2_ADD_BCN_FILTER_CMDID
,
1525 WMI_10_2_RMV_BCN_FILTER_CMDID
,
1526 WMI_10_2_WOW_ADD_WAKE_PATTERN_CMDID
,
1527 WMI_10_2_WOW_DEL_WAKE_PATTERN_CMDID
,
1528 WMI_10_2_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID
,
1529 WMI_10_2_WOW_ENABLE_CMDID
,
1530 WMI_10_2_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID
,
1531 WMI_10_2_RTT_MEASREQ_CMDID
,
1532 WMI_10_2_RTT_TSF_CMDID
,
1533 WMI_10_2_RTT_KEEPALIVE_CMDID
,
1534 WMI_10_2_PDEV_SEND_BCN_CMDID
,
1535 WMI_10_2_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID
,
1536 WMI_10_2_VDEV_SPECTRAL_SCAN_ENABLE_CMDID
,
1537 WMI_10_2_REQUEST_STATS_CMDID
,
1538 WMI_10_2_GPIO_CONFIG_CMDID
,
1539 WMI_10_2_GPIO_OUTPUT_CMDID
,
1540 WMI_10_2_VDEV_RATEMASK_CMDID
,
1541 WMI_10_2_PDEV_SMART_ANT_ENABLE_CMDID
,
1542 WMI_10_2_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID
,
1543 WMI_10_2_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID
,
1544 WMI_10_2_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID
,
1545 WMI_10_2_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID
,
1546 WMI_10_2_FORCE_FW_HANG_CMDID
,
1547 WMI_10_2_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID
,
1548 WMI_10_2_PDEV_SET_CTL_TABLE_CMDID
,
1549 WMI_10_2_PDEV_SET_MIMOGAIN_TABLE_CMDID
,
1550 WMI_10_2_PDEV_RATEPWR_TABLE_CMDID
,
1551 WMI_10_2_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID
,
1552 WMI_10_2_PDEV_GET_INFO
,
1553 WMI_10_2_VDEV_GET_INFO
,
1554 WMI_10_2_VDEV_ATF_REQUEST_CMDID
,
1555 WMI_10_2_PEER_ATF_REQUEST_CMDID
,
1556 WMI_10_2_PDEV_GET_TEMPERATURE_CMDID
,
1557 WMI_10_2_MU_CAL_START_CMDID
,
1558 WMI_10_2_SET_LTEU_CONFIG_CMDID
,
1559 WMI_10_2_SET_CCA_PARAMS
,
1560 WMI_10_2_PDEV_BSS_CHAN_INFO_REQUEST_CMDID
,
1561 WMI_10_2_PDEV_UTF_CMDID
= WMI_10_2_END_CMDID
- 1,
1564 enum wmi_10_2_event_id
{
1565 WMI_10_2_SERVICE_READY_EVENTID
= 0x8000,
1566 WMI_10_2_READY_EVENTID
,
1567 WMI_10_2_DEBUG_MESG_EVENTID
,
1568 WMI_10_2_START_EVENTID
= 0x9000,
1569 WMI_10_2_END_EVENTID
= 0x9FFF,
1570 WMI_10_2_SCAN_EVENTID
= WMI_10_2_START_EVENTID
,
1571 WMI_10_2_ECHO_EVENTID
,
1572 WMI_10_2_UPDATE_STATS_EVENTID
,
1573 WMI_10_2_INST_RSSI_STATS_EVENTID
,
1574 WMI_10_2_VDEV_START_RESP_EVENTID
,
1575 WMI_10_2_VDEV_STANDBY_REQ_EVENTID
,
1576 WMI_10_2_VDEV_RESUME_REQ_EVENTID
,
1577 WMI_10_2_VDEV_STOPPED_EVENTID
,
1578 WMI_10_2_PEER_STA_KICKOUT_EVENTID
,
1579 WMI_10_2_HOST_SWBA_EVENTID
,
1580 WMI_10_2_TBTTOFFSET_UPDATE_EVENTID
,
1581 WMI_10_2_MGMT_RX_EVENTID
,
1582 WMI_10_2_CHAN_INFO_EVENTID
,
1583 WMI_10_2_PHYERR_EVENTID
,
1584 WMI_10_2_ROAM_EVENTID
,
1585 WMI_10_2_PROFILE_MATCH
,
1586 WMI_10_2_DEBUG_PRINT_EVENTID
,
1587 WMI_10_2_PDEV_QVIT_EVENTID
,
1588 WMI_10_2_WLAN_PROFILE_DATA_EVENTID
,
1589 WMI_10_2_RTT_MEASUREMENT_REPORT_EVENTID
,
1590 WMI_10_2_TSF_MEASUREMENT_REPORT_EVENTID
,
1591 WMI_10_2_RTT_ERROR_REPORT_EVENTID
,
1592 WMI_10_2_RTT_KEEPALIVE_EVENTID
,
1593 WMI_10_2_WOW_WAKEUP_HOST_EVENTID
,
1594 WMI_10_2_DCS_INTERFERENCE_EVENTID
,
1595 WMI_10_2_PDEV_TPC_CONFIG_EVENTID
,
1596 WMI_10_2_GPIO_INPUT_EVENTID
,
1597 WMI_10_2_PEER_RATECODE_LIST_EVENTID
,
1598 WMI_10_2_GENERIC_BUFFER_EVENTID
,
1599 WMI_10_2_MCAST_BUF_RELEASE_EVENTID
,
1600 WMI_10_2_MCAST_LIST_AGEOUT_EVENTID
,
1601 WMI_10_2_WDS_PEER_EVENTID
,
1602 WMI_10_2_PEER_STA_PS_STATECHG_EVENTID
,
1603 WMI_10_2_PDEV_TEMPERATURE_EVENTID
,
1604 WMI_10_2_MU_REPORT_EVENTID
,
1605 WMI_10_2_PDEV_BSS_CHAN_INFO_EVENTID
,
1606 WMI_10_2_PDEV_UTF_EVENTID
= WMI_10_2_END_EVENTID
- 1,
1609 enum wmi_10_4_cmd_id
{
1610 WMI_10_4_START_CMDID
= 0x9000,
1611 WMI_10_4_END_CMDID
= 0x9FFF,
1612 WMI_10_4_INIT_CMDID
,
1613 WMI_10_4_START_SCAN_CMDID
= WMI_10_4_START_CMDID
,
1614 WMI_10_4_STOP_SCAN_CMDID
,
1615 WMI_10_4_SCAN_CHAN_LIST_CMDID
,
1616 WMI_10_4_SCAN_SCH_PRIO_TBL_CMDID
,
1617 WMI_10_4_SCAN_UPDATE_REQUEST_CMDID
,
1618 WMI_10_4_ECHO_CMDID
,
1619 WMI_10_4_PDEV_SET_REGDOMAIN_CMDID
,
1620 WMI_10_4_PDEV_SET_CHANNEL_CMDID
,
1621 WMI_10_4_PDEV_SET_PARAM_CMDID
,
1622 WMI_10_4_PDEV_PKTLOG_ENABLE_CMDID
,
1623 WMI_10_4_PDEV_PKTLOG_DISABLE_CMDID
,
1624 WMI_10_4_PDEV_SET_WMM_PARAMS_CMDID
,
1625 WMI_10_4_PDEV_SET_HT_CAP_IE_CMDID
,
1626 WMI_10_4_PDEV_SET_VHT_CAP_IE_CMDID
,
1627 WMI_10_4_PDEV_SET_BASE_MACADDR_CMDID
,
1628 WMI_10_4_PDEV_SET_DSCP_TID_MAP_CMDID
,
1629 WMI_10_4_PDEV_SET_QUIET_MODE_CMDID
,
1630 WMI_10_4_PDEV_GREEN_AP_PS_ENABLE_CMDID
,
1631 WMI_10_4_PDEV_GET_TPC_CONFIG_CMDID
,
1632 WMI_10_4_VDEV_CREATE_CMDID
,
1633 WMI_10_4_VDEV_DELETE_CMDID
,
1634 WMI_10_4_VDEV_START_REQUEST_CMDID
,
1635 WMI_10_4_VDEV_RESTART_REQUEST_CMDID
,
1636 WMI_10_4_VDEV_UP_CMDID
,
1637 WMI_10_4_VDEV_STOP_CMDID
,
1638 WMI_10_4_VDEV_DOWN_CMDID
,
1639 WMI_10_4_VDEV_STANDBY_RESPONSE_CMDID
,
1640 WMI_10_4_VDEV_RESUME_RESPONSE_CMDID
,
1641 WMI_10_4_VDEV_SET_PARAM_CMDID
,
1642 WMI_10_4_VDEV_INSTALL_KEY_CMDID
,
1643 WMI_10_4_WLAN_PEER_CACHING_ADD_PEER_CMDID
,
1644 WMI_10_4_WLAN_PEER_CACHING_EVICT_PEER_CMDID
,
1645 WMI_10_4_WLAN_PEER_CACHING_RESTORE_PEER_CMDID
,
1646 WMI_10_4_WLAN_PEER_CACHING_PRINT_ALL_PEERS_INFO_CMDID
,
1647 WMI_10_4_PEER_CREATE_CMDID
,
1648 WMI_10_4_PEER_DELETE_CMDID
,
1649 WMI_10_4_PEER_FLUSH_TIDS_CMDID
,
1650 WMI_10_4_PEER_SET_PARAM_CMDID
,
1651 WMI_10_4_PEER_ASSOC_CMDID
,
1652 WMI_10_4_PEER_ADD_WDS_ENTRY_CMDID
,
1653 WMI_10_4_PEER_UPDATE_WDS_ENTRY_CMDID
,
1654 WMI_10_4_PEER_REMOVE_WDS_ENTRY_CMDID
,
1655 WMI_10_4_PEER_ADD_PROXY_STA_ENTRY_CMDID
,
1656 WMI_10_4_PEER_MCAST_GROUP_CMDID
,
1657 WMI_10_4_BCN_TX_CMDID
,
1658 WMI_10_4_PDEV_SEND_BCN_CMDID
,
1659 WMI_10_4_BCN_PRB_TMPL_CMDID
,
1660 WMI_10_4_BCN_FILTER_RX_CMDID
,
1661 WMI_10_4_PRB_REQ_FILTER_RX_CMDID
,
1662 WMI_10_4_MGMT_TX_CMDID
,
1663 WMI_10_4_PRB_TMPL_CMDID
,
1664 WMI_10_4_ADDBA_CLEAR_RESP_CMDID
,
1665 WMI_10_4_ADDBA_SEND_CMDID
,
1666 WMI_10_4_ADDBA_STATUS_CMDID
,
1667 WMI_10_4_DELBA_SEND_CMDID
,
1668 WMI_10_4_ADDBA_SET_RESP_CMDID
,
1669 WMI_10_4_SEND_SINGLEAMSDU_CMDID
,
1670 WMI_10_4_STA_POWERSAVE_MODE_CMDID
,
1671 WMI_10_4_STA_POWERSAVE_PARAM_CMDID
,
1672 WMI_10_4_STA_MIMO_PS_MODE_CMDID
,
1673 WMI_10_4_DBGLOG_CFG_CMDID
,
1674 WMI_10_4_PDEV_DFS_ENABLE_CMDID
,
1675 WMI_10_4_PDEV_DFS_DISABLE_CMDID
,
1676 WMI_10_4_PDEV_QVIT_CMDID
,
1677 WMI_10_4_ROAM_SCAN_MODE
,
1678 WMI_10_4_ROAM_SCAN_RSSI_THRESHOLD
,
1679 WMI_10_4_ROAM_SCAN_PERIOD
,
1680 WMI_10_4_ROAM_SCAN_RSSI_CHANGE_THRESHOLD
,
1681 WMI_10_4_ROAM_AP_PROFILE
,
1682 WMI_10_4_OFL_SCAN_ADD_AP_PROFILE
,
1683 WMI_10_4_OFL_SCAN_REMOVE_AP_PROFILE
,
1684 WMI_10_4_OFL_SCAN_PERIOD
,
1685 WMI_10_4_P2P_DEV_SET_DEVICE_INFO
,
1686 WMI_10_4_P2P_DEV_SET_DISCOVERABILITY
,
1687 WMI_10_4_P2P_GO_SET_BEACON_IE
,
1688 WMI_10_4_P2P_GO_SET_PROBE_RESP_IE
,
1689 WMI_10_4_P2P_SET_VENDOR_IE_DATA_CMDID
,
1690 WMI_10_4_AP_PS_PEER_PARAM_CMDID
,
1691 WMI_10_4_AP_PS_PEER_UAPSD_COEX_CMDID
,
1692 WMI_10_4_PEER_RATE_RETRY_SCHED_CMDID
,
1693 WMI_10_4_WLAN_PROFILE_TRIGGER_CMDID
,
1694 WMI_10_4_WLAN_PROFILE_SET_HIST_INTVL_CMDID
,
1695 WMI_10_4_WLAN_PROFILE_GET_PROFILE_DATA_CMDID
,
1696 WMI_10_4_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID
,
1697 WMI_10_4_WLAN_PROFILE_LIST_PROFILE_ID_CMDID
,
1698 WMI_10_4_PDEV_SUSPEND_CMDID
,
1699 WMI_10_4_PDEV_RESUME_CMDID
,
1700 WMI_10_4_ADD_BCN_FILTER_CMDID
,
1701 WMI_10_4_RMV_BCN_FILTER_CMDID
,
1702 WMI_10_4_WOW_ADD_WAKE_PATTERN_CMDID
,
1703 WMI_10_4_WOW_DEL_WAKE_PATTERN_CMDID
,
1704 WMI_10_4_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID
,
1705 WMI_10_4_WOW_ENABLE_CMDID
,
1706 WMI_10_4_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID
,
1707 WMI_10_4_RTT_MEASREQ_CMDID
,
1708 WMI_10_4_RTT_TSF_CMDID
,
1709 WMI_10_4_RTT_KEEPALIVE_CMDID
,
1710 WMI_10_4_OEM_REQ_CMDID
,
1712 WMI_10_4_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID
,
1713 WMI_10_4_VDEV_SPECTRAL_SCAN_ENABLE_CMDID
,
1714 WMI_10_4_REQUEST_STATS_CMDID
,
1715 WMI_10_4_GPIO_CONFIG_CMDID
,
1716 WMI_10_4_GPIO_OUTPUT_CMDID
,
1717 WMI_10_4_VDEV_RATEMASK_CMDID
,
1718 WMI_10_4_CSA_OFFLOAD_ENABLE_CMDID
,
1719 WMI_10_4_GTK_OFFLOAD_CMDID
,
1720 WMI_10_4_QBOOST_CFG_CMDID
,
1721 WMI_10_4_CSA_OFFLOAD_CHANSWITCH_CMDID
,
1722 WMI_10_4_PDEV_SMART_ANT_ENABLE_CMDID
,
1723 WMI_10_4_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID
,
1724 WMI_10_4_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID
,
1725 WMI_10_4_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID
,
1726 WMI_10_4_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID
,
1727 WMI_10_4_VDEV_SET_KEEPALIVE_CMDID
,
1728 WMI_10_4_VDEV_GET_KEEPALIVE_CMDID
,
1729 WMI_10_4_FORCE_FW_HANG_CMDID
,
1730 WMI_10_4_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID
,
1731 WMI_10_4_PDEV_SET_CTL_TABLE_CMDID
,
1732 WMI_10_4_PDEV_SET_MIMOGAIN_TABLE_CMDID
,
1733 WMI_10_4_PDEV_RATEPWR_TABLE_CMDID
,
1734 WMI_10_4_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID
,
1735 WMI_10_4_PDEV_FIPS_CMDID
,
1736 WMI_10_4_TT_SET_CONF_CMDID
,
1737 WMI_10_4_FWTEST_CMDID
,
1738 WMI_10_4_VDEV_ATF_REQUEST_CMDID
,
1739 WMI_10_4_PEER_ATF_REQUEST_CMDID
,
1740 WMI_10_4_PDEV_GET_ANI_CCK_CONFIG_CMDID
,
1741 WMI_10_4_PDEV_GET_ANI_OFDM_CONFIG_CMDID
,
1742 WMI_10_4_PDEV_RESERVE_AST_ENTRY_CMDID
,
1743 WMI_10_4_PDEV_GET_NFCAL_POWER_CMDID
,
1744 WMI_10_4_PDEV_GET_TPC_CMDID
,
1745 WMI_10_4_PDEV_GET_AST_INFO_CMDID
,
1746 WMI_10_4_VDEV_SET_DSCP_TID_MAP_CMDID
,
1747 WMI_10_4_PDEV_GET_TEMPERATURE_CMDID
,
1748 WMI_10_4_PDEV_GET_INFO_CMDID
,
1749 WMI_10_4_VDEV_GET_INFO_CMDID
,
1750 WMI_10_4_VDEV_FILTER_NEIGHBOR_RX_PACKETS_CMDID
,
1751 WMI_10_4_MU_CAL_START_CMDID
,
1752 WMI_10_4_SET_CCA_PARAMS_CMDID
,
1753 WMI_10_4_PDEV_BSS_CHAN_INFO_REQUEST_CMDID
,
1754 WMI_10_4_EXT_RESOURCE_CFG_CMDID
,
1755 WMI_10_4_VDEV_SET_IE_CMDID
,
1756 WMI_10_4_SET_LTEU_CONFIG_CMDID
,
1757 WMI_10_4_ATF_SSID_GROUPING_REQUEST_CMDID
,
1758 WMI_10_4_PEER_ATF_EXT_REQUEST_CMDID
,
1759 WMI_10_4_SET_PERIODIC_CHANNEL_STATS_CONFIG
,
1760 WMI_10_4_PEER_BWF_REQUEST_CMDID
,
1761 WMI_10_4_BTCOEX_CFG_CMDID
,
1762 WMI_10_4_PEER_TX_MU_TXMIT_COUNT_CMDID
,
1763 WMI_10_4_PEER_TX_MU_TXMIT_RSTCNT_CMDID
,
1764 WMI_10_4_PEER_GID_USERPOS_LIST_CMDID
,
1765 WMI_10_4_PDEV_CHECK_CAL_VERSION_CMDID
,
1766 WMI_10_4_COEX_VERSION_CFG_CMID
,
1767 WMI_10_4_PDEV_GET_RX_FILTER_CMDID
,
1768 WMI_10_4_PDEV_EXTENDED_NSS_CFG_CMDID
,
1769 WMI_10_4_VDEV_SET_SCAN_NAC_RSSI_CMDID
,
1770 WMI_10_4_PROG_GPIO_BAND_SELECT_CMDID
,
1771 WMI_10_4_CONFIG_SMART_LOGGING_CMDID
,
1772 WMI_10_4_DEBUG_FATAL_CONDITION_CMDID
,
1773 WMI_10_4_GET_TSF_TIMER_CMDID
,
1774 WMI_10_4_PDEV_GET_TPC_TABLE_CMDID
,
1775 WMI_10_4_VDEV_SIFS_TRIGGER_TIME_CMDID
,
1776 WMI_10_4_PDEV_WDS_ENTRY_LIST_CMDID
,
1777 WMI_10_4_TDLS_SET_STATE_CMDID
,
1778 WMI_10_4_TDLS_PEER_UPDATE_CMDID
,
1779 WMI_10_4_TDLS_SET_OFFCHAN_MODE_CMDID
,
1780 WMI_10_4_PDEV_UTF_CMDID
= WMI_10_4_END_CMDID
- 1,
1783 enum wmi_10_4_event_id
{
1784 WMI_10_4_SERVICE_READY_EVENTID
= 0x8000,
1785 WMI_10_4_READY_EVENTID
,
1786 WMI_10_4_DEBUG_MESG_EVENTID
,
1787 WMI_10_4_START_EVENTID
= 0x9000,
1788 WMI_10_4_END_EVENTID
= 0x9FFF,
1789 WMI_10_4_SCAN_EVENTID
= WMI_10_4_START_EVENTID
,
1790 WMI_10_4_ECHO_EVENTID
,
1791 WMI_10_4_UPDATE_STATS_EVENTID
,
1792 WMI_10_4_INST_RSSI_STATS_EVENTID
,
1793 WMI_10_4_VDEV_START_RESP_EVENTID
,
1794 WMI_10_4_VDEV_STANDBY_REQ_EVENTID
,
1795 WMI_10_4_VDEV_RESUME_REQ_EVENTID
,
1796 WMI_10_4_VDEV_STOPPED_EVENTID
,
1797 WMI_10_4_PEER_STA_KICKOUT_EVENTID
,
1798 WMI_10_4_HOST_SWBA_EVENTID
,
1799 WMI_10_4_TBTTOFFSET_UPDATE_EVENTID
,
1800 WMI_10_4_MGMT_RX_EVENTID
,
1801 WMI_10_4_CHAN_INFO_EVENTID
,
1802 WMI_10_4_PHYERR_EVENTID
,
1803 WMI_10_4_ROAM_EVENTID
,
1804 WMI_10_4_PROFILE_MATCH
,
1805 WMI_10_4_DEBUG_PRINT_EVENTID
,
1806 WMI_10_4_PDEV_QVIT_EVENTID
,
1807 WMI_10_4_WLAN_PROFILE_DATA_EVENTID
,
1808 WMI_10_4_RTT_MEASUREMENT_REPORT_EVENTID
,
1809 WMI_10_4_TSF_MEASUREMENT_REPORT_EVENTID
,
1810 WMI_10_4_RTT_ERROR_REPORT_EVENTID
,
1811 WMI_10_4_RTT_KEEPALIVE_EVENTID
,
1812 WMI_10_4_OEM_CAPABILITY_EVENTID
,
1813 WMI_10_4_OEM_MEASUREMENT_REPORT_EVENTID
,
1814 WMI_10_4_OEM_ERROR_REPORT_EVENTID
,
1815 WMI_10_4_NAN_EVENTID
,
1816 WMI_10_4_WOW_WAKEUP_HOST_EVENTID
,
1817 WMI_10_4_GTK_OFFLOAD_STATUS_EVENTID
,
1818 WMI_10_4_GTK_REKEY_FAIL_EVENTID
,
1819 WMI_10_4_DCS_INTERFERENCE_EVENTID
,
1820 WMI_10_4_PDEV_TPC_CONFIG_EVENTID
,
1821 WMI_10_4_CSA_HANDLING_EVENTID
,
1822 WMI_10_4_GPIO_INPUT_EVENTID
,
1823 WMI_10_4_PEER_RATECODE_LIST_EVENTID
,
1824 WMI_10_4_GENERIC_BUFFER_EVENTID
,
1825 WMI_10_4_MCAST_BUF_RELEASE_EVENTID
,
1826 WMI_10_4_MCAST_LIST_AGEOUT_EVENTID
,
1827 WMI_10_4_VDEV_GET_KEEPALIVE_EVENTID
,
1828 WMI_10_4_WDS_PEER_EVENTID
,
1829 WMI_10_4_PEER_STA_PS_STATECHG_EVENTID
,
1830 WMI_10_4_PDEV_FIPS_EVENTID
,
1831 WMI_10_4_TT_STATS_EVENTID
,
1832 WMI_10_4_PDEV_CHANNEL_HOPPING_EVENTID
,
1833 WMI_10_4_PDEV_ANI_CCK_LEVEL_EVENTID
,
1834 WMI_10_4_PDEV_ANI_OFDM_LEVEL_EVENTID
,
1835 WMI_10_4_PDEV_RESERVE_AST_ENTRY_EVENTID
,
1836 WMI_10_4_PDEV_NFCAL_POWER_EVENTID
,
1837 WMI_10_4_PDEV_TPC_EVENTID
,
1838 WMI_10_4_PDEV_GET_AST_INFO_EVENTID
,
1839 WMI_10_4_PDEV_TEMPERATURE_EVENTID
,
1840 WMI_10_4_PDEV_NFCAL_POWER_ALL_CHANNELS_EVENTID
,
1841 WMI_10_4_PDEV_BSS_CHAN_INFO_EVENTID
,
1842 WMI_10_4_MU_REPORT_EVENTID
,
1843 WMI_10_4_TX_DATA_TRAFFIC_CTRL_EVENTID
,
1844 WMI_10_4_PEER_TX_MU_TXMIT_COUNT_EVENTID
,
1845 WMI_10_4_PEER_GID_USERPOS_LIST_EVENTID
,
1846 WMI_10_4_PDEV_CHECK_CAL_VERSION_EVENTID
,
1847 WMI_10_4_ATF_PEER_STATS_EVENTID
,
1848 WMI_10_4_PDEV_GET_RX_FILTER_EVENTID
,
1849 WMI_10_4_NAC_RSSI_EVENTID
,
1850 WMI_10_4_DEBUG_FATAL_CONDITION_EVENTID
,
1851 WMI_10_4_GET_TSF_TIMER_RESP_EVENTID
,
1852 WMI_10_4_PDEV_TPC_TABLE_EVENTID
,
1853 WMI_10_4_PDEV_WDS_ENTRY_LIST_EVENTID
,
1854 WMI_10_4_TDLS_PEER_EVENTID
,
1855 WMI_10_4_PDEV_UTF_EVENTID
= WMI_10_4_END_EVENTID
- 1,
1859 MODE_11A
= 0, /* 11a Mode */
1860 MODE_11G
= 1, /* 11b/g Mode */
1861 MODE_11B
= 2, /* 11b Mode */
1862 MODE_11GONLY
= 3, /* 11g only Mode */
1863 MODE_11NA_HT20
= 4, /* 11a HT20 mode */
1864 MODE_11NG_HT20
= 5, /* 11g HT20 mode */
1865 MODE_11NA_HT40
= 6, /* 11a HT40 mode */
1866 MODE_11NG_HT40
= 7, /* 11g HT40 mode */
1867 MODE_11AC_VHT20
= 8,
1868 MODE_11AC_VHT40
= 9,
1869 MODE_11AC_VHT80
= 10,
1870 /* MODE_11AC_VHT160 = 11, */
1871 MODE_11AC_VHT20_2G
= 11,
1872 MODE_11AC_VHT40_2G
= 12,
1873 MODE_11AC_VHT80_2G
= 13,
1874 MODE_11AC_VHT80_80
= 14,
1875 MODE_11AC_VHT160
= 15,
1880 static inline const char *ath10k_wmi_phymode_str(enum wmi_phy_mode mode
)
1891 case MODE_11NA_HT20
:
1893 case MODE_11NG_HT20
:
1895 case MODE_11NA_HT40
:
1897 case MODE_11NG_HT40
:
1899 case MODE_11AC_VHT20
:
1900 return "11ac-vht20";
1901 case MODE_11AC_VHT40
:
1902 return "11ac-vht40";
1903 case MODE_11AC_VHT80
:
1904 return "11ac-vht80";
1905 case MODE_11AC_VHT160
:
1906 return "11ac-vht160";
1907 case MODE_11AC_VHT80_80
:
1908 return "11ac-vht80+80";
1909 case MODE_11AC_VHT20_2G
:
1910 return "11ac-vht20-2g";
1911 case MODE_11AC_VHT40_2G
:
1912 return "11ac-vht40-2g";
1913 case MODE_11AC_VHT80_2G
:
1914 return "11ac-vht80-2g";
1919 /* no default handler to allow compiler to check that the
1920 * enum is fully handled
1927 #define WMI_CHAN_LIST_TAG 0x1
1928 #define WMI_SSID_LIST_TAG 0x2
1929 #define WMI_BSSID_LIST_TAG 0x3
1930 #define WMI_IE_TAG 0x4
1932 struct wmi_channel
{
1934 __le32 band_center_freq1
;
1935 __le32 band_center_freq2
; /* valid for 11ac, 80plus80 */
1937 __le32 flags
; /* WMI_CHAN_FLAG_ */
1939 u8 mode
; /* only 6 LSBs */
1945 /* note: power unit is 0.5 dBm */
1961 struct wmi_channel_arg
{
1963 u32 band_center_freq1
;
1964 u32 band_center_freq2
;
1971 /* note: power unit is 0.5 dBm */
1975 u32 max_antenna_gain
;
1977 enum wmi_phy_mode mode
;
1980 enum wmi_channel_change_cause
{
1981 WMI_CHANNEL_CHANGE_CAUSE_NONE
= 0,
1982 WMI_CHANNEL_CHANGE_CAUSE_CSA
,
1985 #define WMI_CHAN_FLAG_HT40_PLUS (1 << 6)
1986 #define WMI_CHAN_FLAG_PASSIVE (1 << 7)
1987 #define WMI_CHAN_FLAG_ADHOC_ALLOWED (1 << 8)
1988 #define WMI_CHAN_FLAG_AP_DISABLED (1 << 9)
1989 #define WMI_CHAN_FLAG_DFS (1 << 10)
1990 #define WMI_CHAN_FLAG_ALLOW_HT (1 << 11)
1991 #define WMI_CHAN_FLAG_ALLOW_VHT (1 << 12)
1993 /* Indicate reason for channel switch */
1994 #define WMI_CHANNEL_CHANGE_CAUSE_CSA (1 << 13)
1996 #define WMI_MAX_SPATIAL_STREAM 3 /* default max ss */
1998 /* HT Capabilities*/
1999 #define WMI_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
2000 #define WMI_HT_CAP_HT20_SGI 0x0002 /* Short Guard Interval with HT20 */
2001 #define WMI_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
2002 #define WMI_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
2003 #define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3
2004 #define WMI_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
2005 #define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4
2006 #define WMI_HT_CAP_LDPC 0x0040 /* LDPC supported */
2007 #define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
2008 #define WMI_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
2009 #define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
2010 #define WMI_HT_CAP_HT40_SGI 0x0800
2012 #define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \
2013 WMI_HT_CAP_HT20_SGI | \
2014 WMI_HT_CAP_HT40_SGI | \
2015 WMI_HT_CAP_TX_STBC | \
2016 WMI_HT_CAP_RX_STBC | \
2020 * WMI_VHT_CAP_* these maps to ieee 802.11ac vht capability information
2021 * field. The fields not defined here are not supported, or reserved.
2022 * Do not change these masks and if you have to add new one follow the
2023 * bitmask as specified by 802.11ac draft.
2026 #define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
2027 #define WMI_VHT_CAP_RX_LDPC 0x00000010
2028 #define WMI_VHT_CAP_SGI_80MHZ 0x00000020
2029 #define WMI_VHT_CAP_SGI_160MHZ 0x00000040
2030 #define WMI_VHT_CAP_TX_STBC 0x00000080
2031 #define WMI_VHT_CAP_RX_STBC_MASK 0x00000300
2032 #define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8
2033 #define WMI_VHT_CAP_SU_BFER 0x00000800
2034 #define WMI_VHT_CAP_SU_BFEE 0x00001000
2035 #define WMI_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000
2036 #define WMI_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13
2037 #define WMI_VHT_CAP_MAX_SND_DIM_MASK 0x00070000
2038 #define WMI_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16
2039 #define WMI_VHT_CAP_MU_BFER 0x00080000
2040 #define WMI_VHT_CAP_MU_BFEE 0x00100000
2041 #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
2042 #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT 23
2043 #define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000
2044 #define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000
2046 /* The following also refer for max HT AMSDU */
2047 #define WMI_VHT_CAP_MAX_MPDU_LEN_3839 0x00000000
2048 #define WMI_VHT_CAP_MAX_MPDU_LEN_7935 0x00000001
2049 #define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
2051 #define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \
2052 WMI_VHT_CAP_RX_LDPC | \
2053 WMI_VHT_CAP_SGI_80MHZ | \
2054 WMI_VHT_CAP_TX_STBC | \
2055 WMI_VHT_CAP_RX_STBC_MASK | \
2056 WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \
2057 WMI_VHT_CAP_RX_FIXED_ANT | \
2058 WMI_VHT_CAP_TX_FIXED_ANT)
2061 * Interested readers refer to Rx/Tx MCS Map definition as defined in
2064 #define WMI_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
2065 #define WMI_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
2066 #define WMI_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
2069 REGDMN_MODE_11A
= 0x00001, /* 11a channels */
2070 REGDMN_MODE_TURBO
= 0x00002, /* 11a turbo-only channels */
2071 REGDMN_MODE_11B
= 0x00004, /* 11b channels */
2072 REGDMN_MODE_PUREG
= 0x00008, /* 11g channels (OFDM only) */
2073 REGDMN_MODE_11G
= 0x00008, /* XXX historical */
2074 REGDMN_MODE_108G
= 0x00020, /* 11a+Turbo channels */
2075 REGDMN_MODE_108A
= 0x00040, /* 11g+Turbo channels */
2076 REGDMN_MODE_XR
= 0x00100, /* XR channels */
2077 REGDMN_MODE_11A_HALF_RATE
= 0x00200, /* 11A half rate channels */
2078 REGDMN_MODE_11A_QUARTER_RATE
= 0x00400, /* 11A quarter rate channels */
2079 REGDMN_MODE_11NG_HT20
= 0x00800, /* 11N-G HT20 channels */
2080 REGDMN_MODE_11NA_HT20
= 0x01000, /* 11N-A HT20 channels */
2081 REGDMN_MODE_11NG_HT40PLUS
= 0x02000, /* 11N-G HT40 + channels */
2082 REGDMN_MODE_11NG_HT40MINUS
= 0x04000, /* 11N-G HT40 - channels */
2083 REGDMN_MODE_11NA_HT40PLUS
= 0x08000, /* 11N-A HT40 + channels */
2084 REGDMN_MODE_11NA_HT40MINUS
= 0x10000, /* 11N-A HT40 - channels */
2085 REGDMN_MODE_11AC_VHT20
= 0x20000, /* 5Ghz, VHT20 */
2086 REGDMN_MODE_11AC_VHT40PLUS
= 0x40000, /* 5Ghz, VHT40 + channels */
2087 REGDMN_MODE_11AC_VHT40MINUS
= 0x80000, /* 5Ghz VHT40 - channels */
2088 REGDMN_MODE_11AC_VHT80
= 0x100000, /* 5Ghz, VHT80 channels */
2089 REGDMN_MODE_11AC_VHT160
= 0x200000, /* 5Ghz, VHT160 channels */
2090 REGDMN_MODE_11AC_VHT80_80
= 0x400000, /* 5Ghz, VHT80+80 channels */
2091 REGDMN_MODE_ALL
= 0xffffffff
2094 #define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
2095 #define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
2096 #define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
2098 /* regulatory capabilities */
2099 #define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
2100 #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
2101 #define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
2102 #define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
2103 #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
2104 #define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
2106 struct hal_reg_capabilities
{
2107 /* regdomain value specified in EEPROM */
2110 __le32 eeprom_rd_ext
;
2111 /* CAP1 capabilities bit map. */
2113 /* REGDMN EEPROM CAP. */
2116 __le32 wireless_modes
;
2117 __le32 low_2ghz_chan
;
2118 __le32 high_2ghz_chan
;
2119 __le32 low_5ghz_chan
;
2120 __le32 high_5ghz_chan
;
2123 enum wlan_mode_capability
{
2124 WHAL_WLAN_11A_CAPABILITY
= 0x1,
2125 WHAL_WLAN_11G_CAPABILITY
= 0x2,
2126 WHAL_WLAN_11AG_CAPABILITY
= 0x3,
2129 /* structure used by FW for requesting host memory */
2130 struct wlan_host_mem_req
{
2131 /* ID of the request */
2133 /* size of the of each unit */
2135 /* flags to indicate that
2136 * the number units is dependent
2137 * on number of resources(num vdevs num peers .. etc)
2139 __le32 num_unit_info
;
2141 * actual number of units to allocate . if flags in the num_unit_info
2142 * indicate that number of units is tied to number of a particular
2143 * resource to allocate then num_units filed is set to 0 and host
2144 * will derive the number units from number of the resources it is
2151 * The following struct holds optional payload for
2152 * wmi_service_ready_event,e.g., 11ac pass some of the
2153 * device capability to the host.
2155 struct wmi_service_ready_event
{
2157 __le32 sw_version_1
;
2159 /* WMI_PHY_CAPABILITY */
2160 __le32 phy_capability
;
2161 /* Maximum number of frag table entries that SW will populate less 1 */
2162 __le32 max_frag_entry
;
2163 __le32 wmi_service_bitmap
[16];
2164 __le32 num_rf_chains
;
2166 * The following field is only valid for service type
2169 __le32 ht_cap_info
; /* WMI HT Capability */
2170 __le32 vht_cap_info
; /* VHT capability info field of 802.11ac */
2171 __le32 vht_supp_mcs
; /* VHT Supported MCS Set field Rx/Tx same */
2172 __le32 hw_min_tx_power
;
2173 __le32 hw_max_tx_power
;
2174 struct hal_reg_capabilities hal_reg_capabilities
;
2175 __le32 sys_cap_info
;
2176 __le32 min_pkt_size_enable
; /* Enterprise mode short pkt enable */
2178 * Max beacon and Probe Response IE offload size
2179 * (includes optional P2P IEs)
2181 __le32 max_bcn_ie_size
;
2183 * request to host to allocate a chuck of memory and pss it down to FW
2184 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
2185 * data structures. Only valid for low latency interfaces like PCIE
2186 * where FW can access this memory directly (or) by DMA.
2188 __le32 num_mem_reqs
;
2189 struct wlan_host_mem_req mem_reqs
[0];
2192 /* This is the definition from 10.X firmware branch */
2193 struct wmi_10x_service_ready_event
{
2197 /* WMI_PHY_CAPABILITY */
2198 __le32 phy_capability
;
2200 /* Maximum number of frag table entries that SW will populate less 1 */
2201 __le32 max_frag_entry
;
2202 __le32 wmi_service_bitmap
[16];
2203 __le32 num_rf_chains
;
2206 * The following field is only valid for service type
2209 __le32 ht_cap_info
; /* WMI HT Capability */
2210 __le32 vht_cap_info
; /* VHT capability info field of 802.11ac */
2211 __le32 vht_supp_mcs
; /* VHT Supported MCS Set field Rx/Tx same */
2212 __le32 hw_min_tx_power
;
2213 __le32 hw_max_tx_power
;
2215 struct hal_reg_capabilities hal_reg_capabilities
;
2217 __le32 sys_cap_info
;
2218 __le32 min_pkt_size_enable
; /* Enterprise mode short pkt enable */
2221 * request to host to allocate a chuck of memory and pss it down to FW
2222 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
2223 * data structures. Only valid for low latency interfaces like PCIE
2224 * where FW can access this memory directly (or) by DMA.
2226 __le32 num_mem_reqs
;
2228 struct wlan_host_mem_req mem_reqs
[0];
2231 #define WMI_SERVICE_READY_TIMEOUT_HZ (5 * HZ)
2232 #define WMI_UNIFIED_READY_TIMEOUT_HZ (5 * HZ)
2234 struct wmi_ready_event
{
2237 struct wmi_mac_addr mac_addr
;
2241 struct wmi_resource_config
{
2242 /* number of virtual devices (VAPs) to support */
2245 /* number of peer nodes to support */
2249 * In offload mode target supports features like WOW, chatter and
2250 * other protocol offloads. In order to support them some
2251 * functionalities like reorder buffering, PN checking need to be
2252 * done in target. This determines maximum number of peers supported
2253 * by target in offload mode
2255 __le32 num_offload_peers
;
2257 /* For target-based RX reordering */
2258 __le32 num_offload_reorder_bufs
;
2260 /* number of keys per peer */
2261 __le32 num_peer_keys
;
2263 /* total number of TX/RX data TIDs */
2267 * max skid for resolving hash collisions
2269 * The address search table is sparse, so that if two MAC addresses
2270 * result in the same hash value, the second of these conflicting
2271 * entries can slide to the next index in the address search table,
2272 * and use it, if it is unoccupied. This ast_skid_limit parameter
2273 * specifies the upper bound on how many subsequent indices to search
2274 * over to find an unoccupied space.
2276 __le32 ast_skid_limit
;
2279 * the nominal chain mask for transmit
2281 * The chain mask may be modified dynamically, e.g. to operate AP
2282 * tx with a reduced number of chains if no clients are associated.
2283 * This configuration parameter specifies the nominal chain-mask that
2284 * should be used when not operating with a reduced set of tx chains.
2286 __le32 tx_chain_mask
;
2289 * the nominal chain mask for receive
2291 * The chain mask may be modified dynamically, e.g. for a client
2292 * to use a reduced number of chains for receive if the traffic to
2293 * the client is low enough that it doesn't require downlink MIMO
2294 * or antenna diversity.
2295 * This configuration parameter specifies the nominal chain-mask that
2296 * should be used when not operating with a reduced set of rx chains.
2298 __le32 rx_chain_mask
;
2301 * what rx reorder timeout (ms) to use for the AC
2303 * Each WMM access class (voice, video, best-effort, background) will
2304 * have its own timeout value to dictate how long to wait for missing
2305 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2306 * already been received.
2307 * This parameter specifies the timeout in milliseconds for each
2310 __le32 rx_timeout_pri_vi
;
2311 __le32 rx_timeout_pri_vo
;
2312 __le32 rx_timeout_pri_be
;
2313 __le32 rx_timeout_pri_bk
;
2316 * what mode the rx should decap packets to
2318 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2319 * THis setting also determines the default TX behavior, however TX
2320 * behavior can be modified on a per VAP basis during VAP init
2322 __le32 rx_decap_mode
;
2324 /* what is the maximum number of scan requests that can be queued */
2325 __le32 scan_max_pending_reqs
;
2327 /* maximum VDEV that could use BMISS offload */
2328 __le32 bmiss_offload_max_vdev
;
2330 /* maximum VDEV that could use offload roaming */
2331 __le32 roam_offload_max_vdev
;
2333 /* maximum AP profiles that would push to offload roaming */
2334 __le32 roam_offload_max_ap_profiles
;
2337 * how many groups to use for mcast->ucast conversion
2339 * The target's WAL maintains a table to hold information regarding
2340 * which peers belong to a given multicast group, so that if
2341 * multicast->unicast conversion is enabled, the target can convert
2342 * multicast tx frames to a series of unicast tx frames, to each
2343 * peer within the multicast group.
2344 This num_mcast_groups configuration parameter tells the target how
2345 * many multicast groups to provide storage for within its multicast
2346 * group membership table.
2348 __le32 num_mcast_groups
;
2351 * size to alloc for the mcast membership table
2353 * This num_mcast_table_elems configuration parameter tells the
2354 * target how many peer elements it needs to provide storage for in
2355 * its multicast group membership table.
2356 * These multicast group membership table elements are shared by the
2357 * multicast groups stored within the table.
2359 __le32 num_mcast_table_elems
;
2362 * whether/how to do multicast->unicast conversion
2364 * This configuration parameter specifies whether the target should
2365 * perform multicast --> unicast conversion on transmit, and if so,
2366 * what to do if it finds no entries in its multicast group
2367 * membership table for the multicast IP address in the tx frame.
2368 * Configuration value:
2369 * 0 -> Do not perform multicast to unicast conversion.
2370 * 1 -> Convert multicast frames to unicast, if the IP multicast
2371 * address from the tx frame is found in the multicast group
2372 * membership table. If the IP multicast address is not found,
2374 * 2 -> Convert multicast frames to unicast, if the IP multicast
2375 * address from the tx frame is found in the multicast group
2376 * membership table. If the IP multicast address is not found,
2377 * transmit the frame as multicast.
2379 __le32 mcast2ucast_mode
;
2382 * how much memory to allocate for a tx PPDU dbg log
2384 * This parameter controls how much memory the target will allocate
2385 * to store a log of tx PPDU meta-information (how large the PPDU
2386 * was, when it was sent, whether it was successful, etc.)
2388 __le32 tx_dbg_log_size
;
2390 /* how many AST entries to be allocated for WDS */
2391 __le32 num_wds_entries
;
2394 * MAC DMA burst size, e.g., For target PCI limit can be
2395 * 0 -default, 1 256B
2397 __le32 dma_burst_size
;
2400 * Fixed delimiters to be inserted after every MPDU to
2401 * account for interface latency to avoid underrun.
2403 __le32 mac_aggr_delim
;
2406 * determine whether target is responsible for detecting duplicate
2407 * non-aggregate MPDU and timing out stale fragments.
2409 * A-MPDU reordering is always performed on the target.
2411 * 0: target responsible for frag timeout and dup checking
2412 * 1: host responsible for frag timeout and dup checking
2414 __le32 rx_skip_defrag_timeout_dup_detection_check
;
2417 * Configuration for VoW :
2418 * No of Video Nodes to be supported
2419 * and Max no of descriptors for each Video link (node).
2423 /* maximum VDEV that could use GTK offload */
2424 __le32 gtk_offload_max_vdev
;
2426 /* Number of msdu descriptors target should use */
2427 __le32 num_msdu_desc
;
2430 * Max. number of Tx fragments per MSDU
2431 * This parameter controls the max number of Tx fragments per MSDU.
2432 * This is sent by the target as part of the WMI_SERVICE_READY event
2433 * and is overridden by the OS shim as required.
2435 __le32 max_frag_entries
;
2438 struct wmi_resource_config_10x
{
2439 /* number of virtual devices (VAPs) to support */
2442 /* number of peer nodes to support */
2445 /* number of keys per peer */
2446 __le32 num_peer_keys
;
2448 /* total number of TX/RX data TIDs */
2452 * max skid for resolving hash collisions
2454 * The address search table is sparse, so that if two MAC addresses
2455 * result in the same hash value, the second of these conflicting
2456 * entries can slide to the next index in the address search table,
2457 * and use it, if it is unoccupied. This ast_skid_limit parameter
2458 * specifies the upper bound on how many subsequent indices to search
2459 * over to find an unoccupied space.
2461 __le32 ast_skid_limit
;
2464 * the nominal chain mask for transmit
2466 * The chain mask may be modified dynamically, e.g. to operate AP
2467 * tx with a reduced number of chains if no clients are associated.
2468 * This configuration parameter specifies the nominal chain-mask that
2469 * should be used when not operating with a reduced set of tx chains.
2471 __le32 tx_chain_mask
;
2474 * the nominal chain mask for receive
2476 * The chain mask may be modified dynamically, e.g. for a client
2477 * to use a reduced number of chains for receive if the traffic to
2478 * the client is low enough that it doesn't require downlink MIMO
2479 * or antenna diversity.
2480 * This configuration parameter specifies the nominal chain-mask that
2481 * should be used when not operating with a reduced set of rx chains.
2483 __le32 rx_chain_mask
;
2486 * what rx reorder timeout (ms) to use for the AC
2488 * Each WMM access class (voice, video, best-effort, background) will
2489 * have its own timeout value to dictate how long to wait for missing
2490 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2491 * already been received.
2492 * This parameter specifies the timeout in milliseconds for each
2495 __le32 rx_timeout_pri_vi
;
2496 __le32 rx_timeout_pri_vo
;
2497 __le32 rx_timeout_pri_be
;
2498 __le32 rx_timeout_pri_bk
;
2501 * what mode the rx should decap packets to
2503 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2504 * THis setting also determines the default TX behavior, however TX
2505 * behavior can be modified on a per VAP basis during VAP init
2507 __le32 rx_decap_mode
;
2509 /* what is the maximum number of scan requests that can be queued */
2510 __le32 scan_max_pending_reqs
;
2512 /* maximum VDEV that could use BMISS offload */
2513 __le32 bmiss_offload_max_vdev
;
2515 /* maximum VDEV that could use offload roaming */
2516 __le32 roam_offload_max_vdev
;
2518 /* maximum AP profiles that would push to offload roaming */
2519 __le32 roam_offload_max_ap_profiles
;
2522 * how many groups to use for mcast->ucast conversion
2524 * The target's WAL maintains a table to hold information regarding
2525 * which peers belong to a given multicast group, so that if
2526 * multicast->unicast conversion is enabled, the target can convert
2527 * multicast tx frames to a series of unicast tx frames, to each
2528 * peer within the multicast group.
2529 This num_mcast_groups configuration parameter tells the target how
2530 * many multicast groups to provide storage for within its multicast
2531 * group membership table.
2533 __le32 num_mcast_groups
;
2536 * size to alloc for the mcast membership table
2538 * This num_mcast_table_elems configuration parameter tells the
2539 * target how many peer elements it needs to provide storage for in
2540 * its multicast group membership table.
2541 * These multicast group membership table elements are shared by the
2542 * multicast groups stored within the table.
2544 __le32 num_mcast_table_elems
;
2547 * whether/how to do multicast->unicast conversion
2549 * This configuration parameter specifies whether the target should
2550 * perform multicast --> unicast conversion on transmit, and if so,
2551 * what to do if it finds no entries in its multicast group
2552 * membership table for the multicast IP address in the tx frame.
2553 * Configuration value:
2554 * 0 -> Do not perform multicast to unicast conversion.
2555 * 1 -> Convert multicast frames to unicast, if the IP multicast
2556 * address from the tx frame is found in the multicast group
2557 * membership table. If the IP multicast address is not found,
2559 * 2 -> Convert multicast frames to unicast, if the IP multicast
2560 * address from the tx frame is found in the multicast group
2561 * membership table. If the IP multicast address is not found,
2562 * transmit the frame as multicast.
2564 __le32 mcast2ucast_mode
;
2567 * how much memory to allocate for a tx PPDU dbg log
2569 * This parameter controls how much memory the target will allocate
2570 * to store a log of tx PPDU meta-information (how large the PPDU
2571 * was, when it was sent, whether it was successful, etc.)
2573 __le32 tx_dbg_log_size
;
2575 /* how many AST entries to be allocated for WDS */
2576 __le32 num_wds_entries
;
2579 * MAC DMA burst size, e.g., For target PCI limit can be
2580 * 0 -default, 1 256B
2582 __le32 dma_burst_size
;
2585 * Fixed delimiters to be inserted after every MPDU to
2586 * account for interface latency to avoid underrun.
2588 __le32 mac_aggr_delim
;
2591 * determine whether target is responsible for detecting duplicate
2592 * non-aggregate MPDU and timing out stale fragments.
2594 * A-MPDU reordering is always performed on the target.
2596 * 0: target responsible for frag timeout and dup checking
2597 * 1: host responsible for frag timeout and dup checking
2599 __le32 rx_skip_defrag_timeout_dup_detection_check
;
2602 * Configuration for VoW :
2603 * No of Video Nodes to be supported
2604 * and Max no of descriptors for each Video link (node).
2608 /* Number of msdu descriptors target should use */
2609 __le32 num_msdu_desc
;
2612 * Max. number of Tx fragments per MSDU
2613 * This parameter controls the max number of Tx fragments per MSDU.
2614 * This is sent by the target as part of the WMI_SERVICE_READY event
2615 * and is overridden by the OS shim as required.
2617 __le32 max_frag_entries
;
2620 enum wmi_10_2_feature_mask
{
2621 WMI_10_2_RX_BATCH_MODE
= BIT(0),
2622 WMI_10_2_ATF_CONFIG
= BIT(1),
2623 WMI_10_2_COEX_GPIO
= BIT(3),
2624 WMI_10_2_BSS_CHAN_INFO
= BIT(6),
2625 WMI_10_2_PEER_STATS
= BIT(7),
2628 struct wmi_resource_config_10_2
{
2629 struct wmi_resource_config_10x common
;
2630 __le32 max_peer_ext_stats
;
2631 __le32 smart_ant_cap
; /* 0-disable, 1-enable */
2636 __le32 feature_mask
;
2639 #define NUM_UNITS_IS_NUM_VDEVS BIT(0)
2640 #define NUM_UNITS_IS_NUM_PEERS BIT(1)
2641 #define NUM_UNITS_IS_NUM_ACTIVE_PEERS BIT(2)
2643 struct wmi_resource_config_10_4
{
2644 /* Number of virtual devices (VAPs) to support */
2647 /* Number of peer nodes to support */
2650 /* Number of active peer nodes to support */
2651 __le32 num_active_peers
;
2653 /* In offload mode, target supports features like WOW, chatter and other
2654 * protocol offloads. In order to support them some functionalities like
2655 * reorder buffering, PN checking need to be done in target.
2656 * This determines maximum number of peers supported by target in
2659 __le32 num_offload_peers
;
2661 /* Number of reorder buffers available for doing target based reorder
2662 * Rx reorder buffering
2664 __le32 num_offload_reorder_buffs
;
2666 /* Number of keys per peer */
2667 __le32 num_peer_keys
;
2669 /* Total number of TX/RX data TIDs */
2672 /* Max skid for resolving hash collisions.
2673 * The address search table is sparse, so that if two MAC addresses
2674 * result in the same hash value, the second of these conflicting
2675 * entries can slide to the next index in the address search table,
2676 * and use it, if it is unoccupied. This ast_skid_limit parameter
2677 * specifies the upper bound on how many subsequent indices to search
2678 * over to find an unoccupied space.
2680 __le32 ast_skid_limit
;
2682 /* The nominal chain mask for transmit.
2683 * The chain mask may be modified dynamically, e.g. to operate AP tx
2684 * with a reduced number of chains if no clients are associated.
2685 * This configuration parameter specifies the nominal chain-mask that
2686 * should be used when not operating with a reduced set of tx chains.
2688 __le32 tx_chain_mask
;
2690 /* The nominal chain mask for receive.
2691 * The chain mask may be modified dynamically, e.g. for a client to use
2692 * a reduced number of chains for receive if the traffic to the client
2693 * is low enough that it doesn't require downlink MIMO or antenna
2694 * diversity. This configuration parameter specifies the nominal
2695 * chain-mask that should be used when not operating with a reduced
2698 __le32 rx_chain_mask
;
2700 /* What rx reorder timeout (ms) to use for the AC.
2701 * Each WMM access class (voice, video, best-effort, background) will
2702 * have its own timeout value to dictate how long to wait for missing
2703 * rx MPDUs to arrive before flushing subsequent MPDUs that have already
2704 * been received. This parameter specifies the timeout in milliseconds
2707 __le32 rx_timeout_pri
[4];
2709 /* What mode the rx should decap packets to.
2710 * MAC can decap to RAW (no decap), native wifi or Ethernet types.
2711 * This setting also determines the default TX behavior, however TX
2712 * behavior can be modified on a per VAP basis during VAP init
2714 __le32 rx_decap_mode
;
2716 __le32 scan_max_pending_req
;
2718 __le32 bmiss_offload_max_vdev
;
2720 __le32 roam_offload_max_vdev
;
2722 __le32 roam_offload_max_ap_profiles
;
2724 /* How many groups to use for mcast->ucast conversion.
2725 * The target's WAL maintains a table to hold information regarding
2726 * which peers belong to a given multicast group, so that if
2727 * multicast->unicast conversion is enabled, the target can convert
2728 * multicast tx frames to a series of unicast tx frames, to each peer
2729 * within the multicast group. This num_mcast_groups configuration
2730 * parameter tells the target how many multicast groups to provide
2731 * storage for within its multicast group membership table.
2733 __le32 num_mcast_groups
;
2735 /* Size to alloc for the mcast membership table.
2736 * This num_mcast_table_elems configuration parameter tells the target
2737 * how many peer elements it needs to provide storage for in its
2738 * multicast group membership table. These multicast group membership
2739 * table elements are shared by the multicast groups stored within
2742 __le32 num_mcast_table_elems
;
2744 /* Whether/how to do multicast->unicast conversion.
2745 * This configuration parameter specifies whether the target should
2746 * perform multicast --> unicast conversion on transmit, and if so,
2747 * what to do if it finds no entries in its multicast group membership
2748 * table for the multicast IP address in the tx frame.
2749 * Configuration value:
2750 * 0 -> Do not perform multicast to unicast conversion.
2751 * 1 -> Convert multicast frames to unicast, if the IP multicast address
2752 * from the tx frame is found in the multicast group membership
2753 * table. If the IP multicast address is not found, drop the frame
2754 * 2 -> Convert multicast frames to unicast, if the IP multicast address
2755 * from the tx frame is found in the multicast group membership
2756 * table. If the IP multicast address is not found, transmit the
2757 * frame as multicast.
2759 __le32 mcast2ucast_mode
;
2761 /* How much memory to allocate for a tx PPDU dbg log.
2762 * This parameter controls how much memory the target will allocate to
2763 * store a log of tx PPDU meta-information (how large the PPDU was,
2764 * when it was sent, whether it was successful, etc.)
2766 __le32 tx_dbg_log_size
;
2768 /* How many AST entries to be allocated for WDS */
2769 __le32 num_wds_entries
;
2771 /* MAC DMA burst size. 0 -default, 1 -256B */
2772 __le32 dma_burst_size
;
2774 /* Fixed delimiters to be inserted after every MPDU to account for
2775 * interface latency to avoid underrun.
2777 __le32 mac_aggr_delim
;
2779 /* Determine whether target is responsible for detecting duplicate
2780 * non-aggregate MPDU and timing out stale fragments. A-MPDU reordering
2781 * is always performed on the target.
2783 * 0: target responsible for frag timeout and dup checking
2784 * 1: host responsible for frag timeout and dup checking
2786 __le32 rx_skip_defrag_timeout_dup_detection_check
;
2788 /* Configuration for VoW : No of Video nodes to be supported and max
2789 * no of descriptors for each video link (node).
2793 /* Maximum vdev that could use gtk offload */
2794 __le32 gtk_offload_max_vdev
;
2796 /* Number of msdu descriptors target should use */
2797 __le32 num_msdu_desc
;
2799 /* Max number of tx fragments per MSDU.
2800 * This parameter controls the max number of tx fragments per MSDU.
2801 * This will passed by target as part of the WMI_SERVICE_READY event
2802 * and is overridden by the OS shim as required.
2804 __le32 max_frag_entries
;
2806 /* Max number of extended peer stats.
2807 * This parameter controls the max number of peers for which extended
2808 * statistics are supported by target
2810 __le32 max_peer_ext_stats
;
2812 /* Smart antenna capabilities information.
2813 * 1 - Smart antenna is enabled
2814 * 0 - Smart antenna is disabled
2815 * In future this can contain smart antenna specific capabilities.
2817 __le32 smart_ant_cap
;
2819 /* User can configure the buffers allocated for each AC (BE, BK, VI, VO)
2827 /* Rx batch mode capability.
2828 * 1 - Rx batch mode enabled
2829 * 0 - Rx batch mode disabled
2831 __le32 rx_batchmode
;
2833 /* Thermal throttling capability.
2834 * 1 - Capable of thermal throttling
2835 * 0 - Not capable of thermal throttling
2839 /* ATF configuration.
2845 /* Configure padding to manage IP header un-alignment
2846 * 1 - Enable padding
2847 * 0 - Disable padding
2849 __le32 iphdr_pad_config
;
2851 /* qwrap configuration (bits 15-0)
2852 * 1 - This is qwrap configuration
2853 * 0 - This is not qwrap
2855 * Bits 31-16 is alloc_frag_desc_for_data_pkt (1 enables, 0 disables)
2856 * In order to get ack-RSSI reporting and to specify the tx-rate for
2857 * individual frames, this option must be enabled. This uses an extra
2858 * 4 bytes per tx-msdu descriptor, so don't enable it unless you need it.
2860 __le32 qwrap_config
;
2863 enum wmi_coex_version
{
2864 WMI_NO_COEX_VERSION_SUPPORT
= 0,
2865 /* 3 wire coex support*/
2866 WMI_COEX_VERSION_1
= 1,
2867 /* 2.5 wire coex support*/
2868 WMI_COEX_VERSION_2
= 2,
2869 /* 2.5 wire coex with duty cycle support */
2870 WMI_COEX_VERSION_3
= 3,
2871 /* 4 wire coex support*/
2872 WMI_COEX_VERSION_4
= 4,
2876 * enum wmi_10_4_feature_mask - WMI 10.4 feature enable/disable flags
2877 * @WMI_10_4_LTEU_SUPPORT: LTEU config
2878 * @WMI_10_4_COEX_GPIO_SUPPORT: COEX GPIO config
2879 * @WMI_10_4_AUX_RADIO_SPECTRAL_INTF: AUX Radio Enhancement for spectral scan
2880 * @WMI_10_4_AUX_RADIO_CHAN_LOAD_INTF: AUX Radio Enhancement for chan load scan
2881 * @WMI_10_4_BSS_CHANNEL_INFO_64: BSS channel info stats
2882 * @WMI_10_4_PEER_STATS: Per station stats
2883 * @WMI_10_4_VDEV_STATS: Per vdev stats
2884 * @WMI_10_4_TDLS: Implicit TDLS support in firmware enable/disable
2885 * @WMI_10_4_TDLS_OFFCHAN: TDLS offchannel support enable/disable
2886 * @WMI_10_4_TDLS_UAPSD_BUFFER_STA: TDLS buffer sta support enable/disable
2887 * @WMI_10_4_TDLS_UAPSD_SLEEP_STA: TDLS sleep sta support enable/disable
2888 * @WMI_10_4_TDLS_CONN_TRACKER_IN_HOST_MODE: TDLS connection tracker in host
2890 * @WMI_10_4_TDLS_EXPLICIT_MODE_ONLY:Explicit TDLS mode enable/disable
2892 enum wmi_10_4_feature_mask
{
2893 WMI_10_4_LTEU_SUPPORT
= BIT(0),
2894 WMI_10_4_COEX_GPIO_SUPPORT
= BIT(1),
2895 WMI_10_4_AUX_RADIO_SPECTRAL_INTF
= BIT(2),
2896 WMI_10_4_AUX_RADIO_CHAN_LOAD_INTF
= BIT(3),
2897 WMI_10_4_BSS_CHANNEL_INFO_64
= BIT(4),
2898 WMI_10_4_PEER_STATS
= BIT(5),
2899 WMI_10_4_VDEV_STATS
= BIT(6),
2900 WMI_10_4_TDLS
= BIT(7),
2901 WMI_10_4_TDLS_OFFCHAN
= BIT(8),
2902 WMI_10_4_TDLS_UAPSD_BUFFER_STA
= BIT(9),
2903 WMI_10_4_TDLS_UAPSD_SLEEP_STA
= BIT(10),
2904 WMI_10_4_TDLS_CONN_TRACKER_IN_HOST_MODE
= BIT(11),
2905 WMI_10_4_TDLS_EXPLICIT_MODE_ONLY
= BIT(12),
2909 struct wmi_ext_resource_config_10_4_cmd
{
2910 /* contains enum wmi_host_platform_type */
2911 __le32 host_platform_config
;
2912 /* see enum wmi_10_4_feature_mask */
2913 __le32 fw_feature_bitmap
;
2914 /* WLAN priority GPIO number */
2915 __le32 wlan_gpio_priority
;
2916 /* see enum wmi_coex_version */
2917 __le32 coex_version
;
2918 /* COEX GPIO config */
2919 __le32 coex_gpio_pin1
;
2920 __le32 coex_gpio_pin2
;
2921 __le32 coex_gpio_pin3
;
2922 /* number of vdevs allowed to perform tdls */
2923 __le32 num_tdls_vdevs
;
2924 /* number of peers to track per TDLS vdev */
2925 __le32 num_tdls_conn_table_entries
;
2926 /* number of tdls sleep sta supported */
2927 __le32 max_tdls_concurrent_sleep_sta
;
2928 /* number of tdls buffer sta supported */
2929 __le32 max_tdls_concurrent_buffer_sta
;
2932 /* structure describing host memory chunk. */
2933 struct host_memory_chunk
{
2934 /* id of the request that is passed up in service ready */
2936 /* the physical address the memory chunk */
2938 /* size of the chunk */
2942 struct wmi_host_mem_chunks
{
2944 /* some fw revisions require at least 1 chunk regardless of count */
2945 struct host_memory_chunk items
[1];
2948 struct wmi_init_cmd
{
2949 struct wmi_resource_config resource_config
;
2950 struct wmi_host_mem_chunks mem_chunks
;
2953 /* _10x structure is from 10.X FW API */
2954 struct wmi_init_cmd_10x
{
2955 struct wmi_resource_config_10x resource_config
;
2956 struct wmi_host_mem_chunks mem_chunks
;
2959 struct wmi_init_cmd_10_2
{
2960 struct wmi_resource_config_10_2 resource_config
;
2961 struct wmi_host_mem_chunks mem_chunks
;
2964 struct wmi_init_cmd_10_4
{
2965 struct wmi_resource_config_10_4 resource_config
;
2966 struct wmi_host_mem_chunks mem_chunks
;
2969 struct wmi_chan_list_entry
{
2971 u8 phy_mode
; /* valid for 10.2 only */
2975 /* TLV for channel list */
2976 struct wmi_chan_list
{
2977 __le32 tag
; /* WMI_CHAN_LIST_TAG */
2979 struct wmi_chan_list_entry channel_list
[0];
2982 struct wmi_bssid_list
{
2983 __le32 tag
; /* WMI_BSSID_LIST_TAG */
2985 struct wmi_mac_addr bssid_list
[0];
2988 struct wmi_ie_data
{
2989 __le32 tag
; /* WMI_IE_TAG */
2999 struct wmi_ssid_list
{
3000 __le32 tag
; /* WMI_SSID_LIST_TAG */
3002 struct wmi_ssid ssids
[0];
3005 /* prefix used by scan requestor ids on the host */
3006 #define WMI_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000
3008 /* prefix used by scan request ids generated on the host */
3009 /* host cycles through the lower 12 bits to generate ids */
3010 #define WMI_HOST_SCAN_REQ_ID_PREFIX 0xA000
3012 #define WLAN_SCAN_PARAMS_MAX_SSID 16
3013 #define WLAN_SCAN_PARAMS_MAX_BSSID 4
3014 #define WLAN_SCAN_PARAMS_MAX_IE_LEN 256
3016 /* Values lower than this may be refused by some firmware revisions with a scan
3017 * completion with a timedout reason.
3019 #define WMI_SCAN_CHAN_MIN_TIME_MSEC 40
3021 /* Scan priority numbers must be sequential, starting with 0 */
3022 enum wmi_scan_priority
{
3023 WMI_SCAN_PRIORITY_VERY_LOW
= 0,
3024 WMI_SCAN_PRIORITY_LOW
,
3025 WMI_SCAN_PRIORITY_MEDIUM
,
3026 WMI_SCAN_PRIORITY_HIGH
,
3027 WMI_SCAN_PRIORITY_VERY_HIGH
,
3028 WMI_SCAN_PRIORITY_COUNT
/* number of priorities supported */
3031 struct wmi_start_scan_common
{
3034 /* Scan requestor ID */
3036 /* VDEV id(interface) that is requesting scan */
3038 /* Scan Priority, input to scan scheduler */
3039 __le32 scan_priority
;
3040 /* Scan events subscription */
3041 __le32 notify_scan_events
;
3042 /* dwell time in msec on active channels */
3043 __le32 dwell_time_active
;
3044 /* dwell time in msec on passive channels */
3045 __le32 dwell_time_passive
;
3047 * min time in msec on the BSS channel,only valid if atleast one
3050 __le32 min_rest_time
;
3052 * max rest time in msec on the BSS channel,only valid if at least
3053 * one VDEV is active
3056 * the scanner will rest on the bss channel at least min_rest_time
3057 * after min_rest_time the scanner will start checking for tx/rx
3058 * activity on all VDEVs. if there is no activity the scanner will
3059 * switch to off channel. if there is activity the scanner will let
3060 * the radio on the bss channel until max_rest_time expires.at
3061 * max_rest_time scanner will switch to off channel irrespective of
3062 * activity. activity is determined by the idle_time parameter.
3064 __le32 max_rest_time
;
3066 * time before sending next set of probe requests.
3067 * The scanner keeps repeating probe requests transmission with
3068 * period specified by repeat_probe_time.
3069 * The number of probe requests specified depends on the ssid_list
3072 __le32 repeat_probe_time
;
3073 /* time in msec between 2 consequetive probe requests with in a set. */
3074 __le32 probe_spacing_time
;
3076 * data inactivity time in msec on bss channel that will be used by
3077 * scanner for measuring the inactivity.
3080 /* maximum time in msec allowed for scan */
3081 __le32 max_scan_time
;
3083 * delay in msec before sending first probe request after switching
3087 /* Scan control flags */
3088 __le32 scan_ctrl_flags
;
3091 struct wmi_start_scan_tlvs
{
3092 /* TLV parameters. These includes channel list, ssid list, bssid list,
3098 struct wmi_start_scan_cmd
{
3099 struct wmi_start_scan_common common
;
3100 __le32 burst_duration_ms
;
3101 struct wmi_start_scan_tlvs tlvs
;
3104 /* This is the definition from 10.X firmware branch */
3105 struct wmi_10x_start_scan_cmd
{
3106 struct wmi_start_scan_common common
;
3107 struct wmi_start_scan_tlvs tlvs
;
3110 struct wmi_ssid_arg
{
3115 struct wmi_bssid_arg
{
3119 struct wmi_start_scan_arg
{
3124 u32 notify_scan_events
;
3125 u32 dwell_time_active
;
3126 u32 dwell_time_passive
;
3129 u32 repeat_probe_time
;
3130 u32 probe_spacing_time
;
3134 u32 scan_ctrl_flags
;
3135 u32 burst_duration_ms
;
3142 u8 ie
[WLAN_SCAN_PARAMS_MAX_IE_LEN
];
3144 struct wmi_ssid_arg ssids
[WLAN_SCAN_PARAMS_MAX_SSID
];
3145 struct wmi_bssid_arg bssids
[WLAN_SCAN_PARAMS_MAX_BSSID
];
3148 /* scan control flags */
3150 /* passively scan all channels including active channels */
3151 #define WMI_SCAN_FLAG_PASSIVE 0x1
3152 /* add wild card ssid probe request even though ssid_list is specified. */
3153 #define WMI_SCAN_ADD_BCAST_PROBE_REQ 0x2
3154 /* add cck rates to rates/xrate ie for the generated probe request */
3155 #define WMI_SCAN_ADD_CCK_RATES 0x4
3156 /* add ofdm rates to rates/xrate ie for the generated probe request */
3157 #define WMI_SCAN_ADD_OFDM_RATES 0x8
3158 /* To enable indication of Chan load and Noise floor to host */
3159 #define WMI_SCAN_CHAN_STAT_EVENT 0x10
3160 /* Filter Probe request frames */
3161 #define WMI_SCAN_FILTER_PROBE_REQ 0x20
3162 /* When set, DFS channels will not be scanned */
3163 #define WMI_SCAN_BYPASS_DFS_CHN 0x40
3164 /* Different FW scan engine may choose to bail out on errors.
3165 * Allow the driver to have influence over that.
3167 #define WMI_SCAN_CONTINUE_ON_ERROR 0x80
3169 /* WMI_SCAN_CLASS_MASK must be the same value as IEEE80211_SCAN_CLASS_MASK */
3170 #define WMI_SCAN_CLASS_MASK 0xFF000000
3172 enum wmi_stop_scan_type
{
3173 WMI_SCAN_STOP_ONE
= 0x00000000, /* stop by scan_id */
3174 WMI_SCAN_STOP_VDEV_ALL
= 0x01000000, /* stop by vdev_id */
3175 WMI_SCAN_STOP_ALL
= 0x04000000, /* stop all scans */
3178 struct wmi_stop_scan_cmd
{
3185 struct wmi_stop_scan_arg
{
3187 enum wmi_stop_scan_type req_type
;
3194 struct wmi_scan_chan_list_cmd
{
3195 __le32 num_scan_chans
;
3196 struct wmi_channel chan_info
[0];
3199 struct wmi_scan_chan_list_arg
{
3201 struct wmi_channel_arg
*channels
;
3204 enum wmi_bss_filter
{
3205 WMI_BSS_FILTER_NONE
= 0, /* no beacons forwarded */
3206 WMI_BSS_FILTER_ALL
, /* all beacons forwarded */
3207 WMI_BSS_FILTER_PROFILE
, /* only beacons matching profile */
3208 WMI_BSS_FILTER_ALL_BUT_PROFILE
, /* all but beacons matching profile */
3209 WMI_BSS_FILTER_CURRENT_BSS
, /* only beacons matching current BSS */
3210 WMI_BSS_FILTER_ALL_BUT_BSS
, /* all but beacons matching BSS */
3211 WMI_BSS_FILTER_PROBED_SSID
, /* beacons matching probed ssid */
3212 WMI_BSS_FILTER_LAST_BSS
, /* marker only */
3215 enum wmi_scan_event_type
{
3216 WMI_SCAN_EVENT_STARTED
= BIT(0),
3217 WMI_SCAN_EVENT_COMPLETED
= BIT(1),
3218 WMI_SCAN_EVENT_BSS_CHANNEL
= BIT(2),
3219 WMI_SCAN_EVENT_FOREIGN_CHANNEL
= BIT(3),
3220 WMI_SCAN_EVENT_DEQUEUED
= BIT(4),
3221 /* possibly by high-prio scan */
3222 WMI_SCAN_EVENT_PREEMPTED
= BIT(5),
3223 WMI_SCAN_EVENT_START_FAILED
= BIT(6),
3224 WMI_SCAN_EVENT_RESTARTED
= BIT(7),
3225 WMI_SCAN_EVENT_FOREIGN_CHANNEL_EXIT
= BIT(8),
3226 WMI_SCAN_EVENT_MAX
= BIT(15),
3229 enum wmi_scan_completion_reason
{
3230 WMI_SCAN_REASON_COMPLETED
,
3231 WMI_SCAN_REASON_CANCELLED
,
3232 WMI_SCAN_REASON_PREEMPTED
,
3233 WMI_SCAN_REASON_TIMEDOUT
,
3234 WMI_SCAN_REASON_INTERNAL_FAILURE
,
3235 WMI_SCAN_REASON_MAX
,
3238 struct wmi_scan_event
{
3239 __le32 event_type
; /* %WMI_SCAN_EVENT_ */
3240 __le32 reason
; /* %WMI_SCAN_REASON_ */
3241 __le32 channel_freq
; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
3248 * This defines how much headroom is kept in the
3249 * receive frame between the descriptor and the
3250 * payload, in order for the WMI PHY error and
3251 * management handler to insert header contents.
3255 #define WMI_MGMT_RX_HDR_HEADROOM 52
3258 * This event will be used for sending scan results
3259 * as well as rx mgmt frames to the host. The rx buffer
3260 * will be sent as part of this WMI event. It would be a
3261 * good idea to pass all the fields in the RX status
3262 * descriptor up to the host.
3264 struct wmi_mgmt_rx_hdr_v1
{
3270 __le32 status
; /* %WMI_RX_STATUS_ */
3273 struct wmi_mgmt_rx_hdr_v2
{
3274 struct wmi_mgmt_rx_hdr_v1 v1
;
3278 struct wmi_mgmt_rx_event_v1
{
3279 struct wmi_mgmt_rx_hdr_v1 hdr
;
3283 struct wmi_mgmt_rx_event_v2
{
3284 struct wmi_mgmt_rx_hdr_v2 hdr
;
3288 struct wmi_10_4_mgmt_rx_hdr
{
3298 struct wmi_10_4_mgmt_rx_event
{
3299 struct wmi_10_4_mgmt_rx_hdr hdr
;
3303 struct wmi_mgmt_rx_ext_info
{
3304 __le64 rx_mac_timestamp
;
3305 } __packed
__aligned(4);
3307 #define WMI_RX_STATUS_OK 0x00
3308 #define WMI_RX_STATUS_ERR_CRC 0x01
3309 #define WMI_RX_STATUS_ERR_DECRYPT 0x08
3310 #define WMI_RX_STATUS_ERR_MIC 0x10
3311 #define WMI_RX_STATUS_ERR_KEY_CACHE_MISS 0x20
3312 /* Extension data at the end of mgmt frame */
3313 #define WMI_RX_STATUS_EXT_INFO 0x40
3315 #define PHY_ERROR_GEN_SPECTRAL_SCAN 0x26
3316 #define PHY_ERROR_GEN_FALSE_RADAR_EXT 0x24
3317 #define PHY_ERROR_GEN_RADAR 0x05
3319 #define PHY_ERROR_10_4_RADAR_MASK 0x4
3320 #define PHY_ERROR_10_4_SPECTRAL_SCAN_MASK 0x4000000
3324 PHY_ERROR_SPECTRAL_SCAN
,
3325 PHY_ERROR_FALSE_RADAR_EXT
,
3330 __le32 tsf_timestamp
;
3337 __le32 rssi_chains
[4];
3338 __le16 nf_chains
[4];
3343 struct wmi_phyerr_event
{
3347 struct wmi_phyerr phyerrs
[0];
3350 struct wmi_10_4_phyerr_event
{
3359 __le32 rssi_chains
[4];
3360 __le16 nf_chains
[4];
3361 __le32 phy_err_mask
[2];
3362 __le32 tsf_timestamp
;
3367 #define PHYERR_TLV_SIG 0xBB
3368 #define PHYERR_TLV_TAG_SEARCH_FFT_REPORT 0xFB
3369 #define PHYERR_TLV_TAG_RADAR_PULSE_SUMMARY 0xF8
3370 #define PHYERR_TLV_TAG_SPECTRAL_SUMMARY_REPORT 0xF9
3372 struct phyerr_radar_report
{
3373 __le32 reg0
; /* RADAR_REPORT_REG0_* */
3374 __le32 reg1
; /* RADAR_REPORT_REG1_* */
3377 #define RADAR_REPORT_REG0_PULSE_IS_CHIRP_MASK 0x80000000
3378 #define RADAR_REPORT_REG0_PULSE_IS_CHIRP_LSB 31
3380 #define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_MASK 0x40000000
3381 #define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_LSB 30
3383 #define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_MASK 0x3FF00000
3384 #define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_LSB 20
3386 #define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_MASK 0x000F0000
3387 #define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_LSB 16
3389 #define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_MASK 0x0000FC00
3390 #define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_LSB 10
3392 #define RADAR_REPORT_REG0_PULSE_SIDX_MASK 0x000003FF
3393 #define RADAR_REPORT_REG0_PULSE_SIDX_LSB 0
3395 #define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_MASK 0x80000000
3396 #define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_LSB 31
3398 #define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_MASK 0x7F000000
3399 #define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_LSB 24
3401 #define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_MASK 0x00FF0000
3402 #define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_LSB 16
3404 #define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_MASK 0x0000FF00
3405 #define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_LSB 8
3407 #define RADAR_REPORT_REG1_PULSE_DUR_MASK 0x000000FF
3408 #define RADAR_REPORT_REG1_PULSE_DUR_LSB 0
3410 struct phyerr_fft_report
{
3411 __le32 reg0
; /* SEARCH_FFT_REPORT_REG0_ * */
3412 __le32 reg1
; /* SEARCH_FFT_REPORT_REG1_ * */
3415 #define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_MASK 0xFF800000
3416 #define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_LSB 23
3418 #define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_MASK 0x007FC000
3419 #define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_LSB 14
3421 #define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_MASK 0x00003000
3422 #define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_LSB 12
3424 #define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_MASK 0x00000FFF
3425 #define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_LSB 0
3427 #define SEARCH_FFT_REPORT_REG1_RELPWR_DB_MASK 0xFC000000
3428 #define SEARCH_FFT_REPORT_REG1_RELPWR_DB_LSB 26
3430 #define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_MASK 0x03FC0000
3431 #define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_LSB 18
3433 #define SEARCH_FFT_REPORT_REG1_PEAK_MAG_MASK 0x0003FF00
3434 #define SEARCH_FFT_REPORT_REG1_PEAK_MAG_LSB 8
3436 #define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_MASK 0x000000FF
3437 #define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_LSB 0
3445 #define DFS_RSSI_POSSIBLY_FALSE 50
3446 #define DFS_PEAK_MAG_THOLD_POSSIBLY_FALSE 40
3448 struct wmi_mgmt_tx_hdr
{
3450 struct wmi_mac_addr peer_macaddr
;
3456 struct wmi_mgmt_tx_cmd
{
3457 struct wmi_mgmt_tx_hdr hdr
;
3461 struct wmi_echo_event
{
3465 struct wmi_echo_cmd
{
3469 struct wmi_pdev_set_regdomain_cmd
{
3471 __le32 reg_domain_2G
;
3472 __le32 reg_domain_5G
;
3473 __le32 conformance_test_limit_2G
;
3474 __le32 conformance_test_limit_5G
;
3477 enum wmi_dfs_region
{
3478 /* Uninitialized dfs domain */
3479 WMI_UNINIT_DFS_DOMAIN
= 0,
3481 /* FCC3 dfs domain */
3482 WMI_FCC_DFS_DOMAIN
= 1,
3484 /* ETSI dfs domain */
3485 WMI_ETSI_DFS_DOMAIN
= 2,
3487 /*Japan dfs domain */
3488 WMI_MKK4_DFS_DOMAIN
= 3,
3491 struct wmi_pdev_set_regdomain_cmd_10x
{
3493 __le32 reg_domain_2G
;
3494 __le32 reg_domain_5G
;
3495 __le32 conformance_test_limit_2G
;
3496 __le32 conformance_test_limit_5G
;
3498 /* dfs domain from wmi_dfs_region */
3502 /* Command to set/unset chip in quiet mode */
3503 struct wmi_pdev_set_quiet_cmd
{
3507 /* duration in TUs */
3513 /* enable/disable */
3518 * 802.11g protection mode.
3520 enum ath10k_protmode
{
3521 ATH10K_PROT_NONE
= 0, /* no protection */
3522 ATH10K_PROT_CTSONLY
= 1, /* CTS to self */
3523 ATH10K_PROT_RTSCTS
= 2, /* RTS-CTS */
3526 enum wmi_rtscts_profile
{
3527 WMI_RTSCTS_FOR_NO_RATESERIES
= 0,
3528 WMI_RTSCTS_FOR_SECOND_RATESERIES
,
3529 WMI_RTSCTS_ACROSS_SW_RETRIES
3532 #define WMI_RTSCTS_ENABLED 1
3533 #define WMI_RTSCTS_SET_MASK 0x0f
3534 #define WMI_RTSCTS_SET_LSB 0
3536 #define WMI_RTSCTS_PROFILE_MASK 0xf0
3537 #define WMI_RTSCTS_PROFILE_LSB 4
3539 enum wmi_beacon_gen_mode
{
3540 WMI_BEACON_STAGGERED_MODE
= 0,
3541 WMI_BEACON_BURST_MODE
= 1
3544 enum wmi_csa_event_ies_present_flag
{
3545 WMI_CSA_IE_PRESENT
= 0x00000001,
3546 WMI_XCSA_IE_PRESENT
= 0x00000002,
3547 WMI_WBW_IE_PRESENT
= 0x00000004,
3548 WMI_CSWARP_IE_PRESENT
= 0x00000008,
3551 /* wmi CSA receive event from beacon frame */
3552 struct wmi_csa_event
{
3555 /* Bit 16-31: DUR */
3556 struct wmi_mac_addr i_addr1
;
3557 struct wmi_mac_addr i_addr2
;
3562 __le32 ies_present_flag
; /* wmi_csa_event_ies_present_flag */
3565 /* the definition of different PDEV parameters */
3566 #define PDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3567 #define VDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3568 #define PEER_DEFAULT_STATS_UPDATE_PERIOD 500
3570 struct wmi_pdev_param_map
{
3573 u32 txpower_limit2g
;
3574 u32 txpower_limit5g
;
3576 u32 beacon_gen_mode
;
3578 u32 resmgr_offchan_mode
;
3579 u32 protection_mode
;
3581 u32 non_agg_sw_retry_th
;
3582 u32 agg_sw_retry_th
;
3584 u32 ac_aggrsize_scaling
;
3586 u32 ltr_ac_latency_be
;
3587 u32 ltr_ac_latency_bk
;
3588 u32 ltr_ac_latency_vi
;
3589 u32 ltr_ac_latency_vo
;
3590 u32 ltr_ac_latency_timeout
;
3591 u32 ltr_sleep_override
;
3592 u32 ltr_rx_override
;
3593 u32 ltr_tx_activity_timeout
;
3596 u32 pcielp_txbuf_flush
;
3597 u32 pcielp_txbuf_watermark
;
3598 u32 pcielp_txbuf_tmo_en
;
3599 u32 pcielp_txbuf_tmo_value
;
3600 u32 pdev_stats_update_period
;
3601 u32 vdev_stats_update_period
;
3602 u32 peer_stats_update_period
;
3603 u32 bcnflt_stats_update_period
;
3605 u32 arp_ac_override
;
3608 u32 ani_poll_period
;
3609 u32 ani_listen_period
;
3615 u32 power_gating_sleep
;
3616 u32 fast_channel_reset
;
3622 u32 smart_antenna_default_antenna
;
3623 u32 igmpmld_override
;
3627 u32 set_mcast_to_ucast_tid
;
3629 u32 set_mcast2ucast_mode
;
3630 u32 set_mcast2ucast_buffer
;
3631 u32 remove_mcast2ucast_buffer
;
3632 u32 peer_sta_ps_statechg_enable
;
3633 u32 igmpmld_ac_override
;
3635 u32 set_disable_reset_cmdid
;
3636 u32 set_msdu_ttl_cmdid
;
3637 u32 set_ppdu_duration_cmdid
;
3638 u32 txbf_sound_period_cmdid
;
3639 u32 set_promisc_mode_cmdid
;
3640 u32 set_burst_mode_cmdid
;
3642 u32 mu_group_policy
;
3643 u32 noise_detection
;
3644 u32 noise_threshold
;
3646 u32 set_mcast_bcast_echo
;
3648 u32 atf_sched_duration
;
3650 u32 mgmt_retry_limit
;
3651 u32 sensitivity_level
;
3652 u32 signed_txpower_2g
;
3653 u32 signed_txpower_5g
;
3654 u32 enable_per_tid_amsdu
;
3655 u32 enable_per_tid_ampdu
;
3659 u32 wapi_mbssid_offset
;
3665 #define WMI_PDEV_PARAM_UNSUPPORTED 0
3667 enum wmi_pdev_param
{
3669 WMI_PDEV_PARAM_TX_CHAIN_MASK
= 0x1,
3671 WMI_PDEV_PARAM_RX_CHAIN_MASK
,
3672 /* TX power limit for 2G Radio */
3673 WMI_PDEV_PARAM_TXPOWER_LIMIT2G
,
3674 /* TX power limit for 5G Radio */
3675 WMI_PDEV_PARAM_TXPOWER_LIMIT5G
,
3676 /* TX power scale */
3677 WMI_PDEV_PARAM_TXPOWER_SCALE
,
3678 /* Beacon generation mode . 0: host, 1: target */
3679 WMI_PDEV_PARAM_BEACON_GEN_MODE
,
3680 /* Beacon generation mode . 0: staggered 1: bursted */
3681 WMI_PDEV_PARAM_BEACON_TX_MODE
,
3683 * Resource manager off chan mode .
3684 * 0: turn off off chan mode. 1: turn on offchan mode
3686 WMI_PDEV_PARAM_RESMGR_OFFCHAN_MODE
,
3689 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3691 WMI_PDEV_PARAM_PROTECTION_MODE
,
3693 * Dynamic bandwidth - 0: disable, 1: enable
3695 * When enabled HW rate control tries different bandwidths when
3696 * retransmitting frames.
3698 WMI_PDEV_PARAM_DYNAMIC_BW
,
3699 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3700 WMI_PDEV_PARAM_NON_AGG_SW_RETRY_TH
,
3701 /* aggregrate sw retry threshold. 0-disable*/
3702 WMI_PDEV_PARAM_AGG_SW_RETRY_TH
,
3703 /* Station kickout threshold (non of consecutive failures).0-disable */
3704 WMI_PDEV_PARAM_STA_KICKOUT_TH
,
3705 /* Aggerate size scaling configuration per AC */
3706 WMI_PDEV_PARAM_AC_AGGRSIZE_SCALING
,
3708 WMI_PDEV_PARAM_LTR_ENABLE
,
3709 /* LTR latency for BE, in us */
3710 WMI_PDEV_PARAM_LTR_AC_LATENCY_BE
,
3711 /* LTR latency for BK, in us */
3712 WMI_PDEV_PARAM_LTR_AC_LATENCY_BK
,
3713 /* LTR latency for VI, in us */
3714 WMI_PDEV_PARAM_LTR_AC_LATENCY_VI
,
3715 /* LTR latency for VO, in us */
3716 WMI_PDEV_PARAM_LTR_AC_LATENCY_VO
,
3717 /* LTR AC latency timeout, in ms */
3718 WMI_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT
,
3719 /* LTR platform latency override, in us */
3720 WMI_PDEV_PARAM_LTR_SLEEP_OVERRIDE
,
3721 /* LTR-RX override, in us */
3722 WMI_PDEV_PARAM_LTR_RX_OVERRIDE
,
3723 /* Tx activity timeout for LTR, in us */
3724 WMI_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT
,
3725 /* L1SS state machine enable */
3726 WMI_PDEV_PARAM_L1SS_ENABLE
,
3727 /* Deep sleep state machine enable */
3728 WMI_PDEV_PARAM_DSLEEP_ENABLE
,
3729 /* RX buffering flush enable */
3730 WMI_PDEV_PARAM_PCIELP_TXBUF_FLUSH
,
3731 /* RX buffering matermark */
3732 WMI_PDEV_PARAM_PCIELP_TXBUF_WATERMARK
,
3733 /* RX buffering timeout enable */
3734 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_EN
,
3735 /* RX buffering timeout value */
3736 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE
,
3737 /* pdev level stats update period in ms */
3738 WMI_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD
,
3739 /* vdev level stats update period in ms */
3740 WMI_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD
,
3741 /* peer level stats update period in ms */
3742 WMI_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD
,
3743 /* beacon filter status update period */
3744 WMI_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD
,
3745 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3746 WMI_PDEV_PARAM_PMF_QOS
,
3747 /* Access category on which ARP frames are sent */
3748 WMI_PDEV_PARAM_ARP_AC_OVERRIDE
,
3749 /* DCS configuration */
3751 /* Enable/Disable ANI on target */
3752 WMI_PDEV_PARAM_ANI_ENABLE
,
3753 /* configure the ANI polling period */
3754 WMI_PDEV_PARAM_ANI_POLL_PERIOD
,
3755 /* configure the ANI listening period */
3756 WMI_PDEV_PARAM_ANI_LISTEN_PERIOD
,
3757 /* configure OFDM immunity level */
3758 WMI_PDEV_PARAM_ANI_OFDM_LEVEL
,
3759 /* configure CCK immunity level */
3760 WMI_PDEV_PARAM_ANI_CCK_LEVEL
,
3761 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3762 WMI_PDEV_PARAM_DYNTXCHAIN
,
3763 /* Enable/Disable proxy STA */
3764 WMI_PDEV_PARAM_PROXY_STA
,
3765 /* Enable/Disable low power state when all VDEVs are inactive/idle. */
3766 WMI_PDEV_PARAM_IDLE_PS_CONFIG
,
3767 /* Enable/Disable power gating sleep */
3768 WMI_PDEV_PARAM_POWER_GATING_SLEEP
,
3771 enum wmi_10x_pdev_param
{
3773 WMI_10X_PDEV_PARAM_TX_CHAIN_MASK
= 0x1,
3775 WMI_10X_PDEV_PARAM_RX_CHAIN_MASK
,
3776 /* TX power limit for 2G Radio */
3777 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT2G
,
3778 /* TX power limit for 5G Radio */
3779 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT5G
,
3780 /* TX power scale */
3781 WMI_10X_PDEV_PARAM_TXPOWER_SCALE
,
3782 /* Beacon generation mode . 0: host, 1: target */
3783 WMI_10X_PDEV_PARAM_BEACON_GEN_MODE
,
3784 /* Beacon generation mode . 0: staggered 1: bursted */
3785 WMI_10X_PDEV_PARAM_BEACON_TX_MODE
,
3787 * Resource manager off chan mode .
3788 * 0: turn off off chan mode. 1: turn on offchan mode
3790 WMI_10X_PDEV_PARAM_RESMGR_OFFCHAN_MODE
,
3793 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3795 WMI_10X_PDEV_PARAM_PROTECTION_MODE
,
3796 /* Dynamic bandwidth 0: disable 1: enable */
3797 WMI_10X_PDEV_PARAM_DYNAMIC_BW
,
3798 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3799 WMI_10X_PDEV_PARAM_NON_AGG_SW_RETRY_TH
,
3800 /* aggregrate sw retry threshold. 0-disable*/
3801 WMI_10X_PDEV_PARAM_AGG_SW_RETRY_TH
,
3802 /* Station kickout threshold (non of consecutive failures).0-disable */
3803 WMI_10X_PDEV_PARAM_STA_KICKOUT_TH
,
3804 /* Aggerate size scaling configuration per AC */
3805 WMI_10X_PDEV_PARAM_AC_AGGRSIZE_SCALING
,
3807 WMI_10X_PDEV_PARAM_LTR_ENABLE
,
3808 /* LTR latency for BE, in us */
3809 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BE
,
3810 /* LTR latency for BK, in us */
3811 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BK
,
3812 /* LTR latency for VI, in us */
3813 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VI
,
3814 /* LTR latency for VO, in us */
3815 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VO
,
3816 /* LTR AC latency timeout, in ms */
3817 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT
,
3818 /* LTR platform latency override, in us */
3819 WMI_10X_PDEV_PARAM_LTR_SLEEP_OVERRIDE
,
3820 /* LTR-RX override, in us */
3821 WMI_10X_PDEV_PARAM_LTR_RX_OVERRIDE
,
3822 /* Tx activity timeout for LTR, in us */
3823 WMI_10X_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT
,
3824 /* L1SS state machine enable */
3825 WMI_10X_PDEV_PARAM_L1SS_ENABLE
,
3826 /* Deep sleep state machine enable */
3827 WMI_10X_PDEV_PARAM_DSLEEP_ENABLE
,
3828 /* pdev level stats update period in ms */
3829 WMI_10X_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD
,
3830 /* vdev level stats update period in ms */
3831 WMI_10X_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD
,
3832 /* peer level stats update period in ms */
3833 WMI_10X_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD
,
3834 /* beacon filter status update period */
3835 WMI_10X_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD
,
3836 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3837 WMI_10X_PDEV_PARAM_PMF_QOS
,
3838 /* Access category on which ARP and DHCP frames are sent */
3839 WMI_10X_PDEV_PARAM_ARPDHCP_AC_OVERRIDE
,
3840 /* DCS configuration */
3841 WMI_10X_PDEV_PARAM_DCS
,
3842 /* Enable/Disable ANI on target */
3843 WMI_10X_PDEV_PARAM_ANI_ENABLE
,
3844 /* configure the ANI polling period */
3845 WMI_10X_PDEV_PARAM_ANI_POLL_PERIOD
,
3846 /* configure the ANI listening period */
3847 WMI_10X_PDEV_PARAM_ANI_LISTEN_PERIOD
,
3848 /* configure OFDM immunity level */
3849 WMI_10X_PDEV_PARAM_ANI_OFDM_LEVEL
,
3850 /* configure CCK immunity level */
3851 WMI_10X_PDEV_PARAM_ANI_CCK_LEVEL
,
3852 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3853 WMI_10X_PDEV_PARAM_DYNTXCHAIN
,
3854 /* Enable/Disable Fast channel reset*/
3855 WMI_10X_PDEV_PARAM_FAST_CHANNEL_RESET
,
3856 /* Set Bursting DUR */
3857 WMI_10X_PDEV_PARAM_BURST_DUR
,
3858 /* Set Bursting Enable*/
3859 WMI_10X_PDEV_PARAM_BURST_ENABLE
,
3861 /* following are available as of firmware 10.2 */
3862 WMI_10X_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA
,
3863 WMI_10X_PDEV_PARAM_IGMPMLD_OVERRIDE
,
3864 WMI_10X_PDEV_PARAM_IGMPMLD_TID
,
3865 WMI_10X_PDEV_PARAM_ANTENNA_GAIN
,
3866 WMI_10X_PDEV_PARAM_RX_DECAP_MODE
,
3867 WMI_10X_PDEV_PARAM_RX_FILTER
,
3868 WMI_10X_PDEV_PARAM_SET_MCAST_TO_UCAST_TID
,
3869 WMI_10X_PDEV_PARAM_PROXY_STA_MODE
,
3870 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_MODE
,
3871 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_BUFFER
,
3872 WMI_10X_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER
,
3873 WMI_10X_PDEV_PARAM_PEER_STA_PS_STATECHG_ENABLE
,
3874 WMI_10X_PDEV_PARAM_RTS_FIXED_RATE
,
3875 WMI_10X_PDEV_PARAM_CAL_PERIOD
3878 enum wmi_10_4_pdev_param
{
3879 WMI_10_4_PDEV_PARAM_TX_CHAIN_MASK
= 0x1,
3880 WMI_10_4_PDEV_PARAM_RX_CHAIN_MASK
,
3881 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT2G
,
3882 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT5G
,
3883 WMI_10_4_PDEV_PARAM_TXPOWER_SCALE
,
3884 WMI_10_4_PDEV_PARAM_BEACON_GEN_MODE
,
3885 WMI_10_4_PDEV_PARAM_BEACON_TX_MODE
,
3886 WMI_10_4_PDEV_PARAM_RESMGR_OFFCHAN_MODE
,
3887 WMI_10_4_PDEV_PARAM_PROTECTION_MODE
,
3888 WMI_10_4_PDEV_PARAM_DYNAMIC_BW
,
3889 WMI_10_4_PDEV_PARAM_NON_AGG_SW_RETRY_TH
,
3890 WMI_10_4_PDEV_PARAM_AGG_SW_RETRY_TH
,
3891 WMI_10_4_PDEV_PARAM_STA_KICKOUT_TH
,
3892 WMI_10_4_PDEV_PARAM_AC_AGGRSIZE_SCALING
,
3893 WMI_10_4_PDEV_PARAM_LTR_ENABLE
,
3894 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BE
,
3895 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BK
,
3896 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VI
,
3897 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VO
,
3898 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT
,
3899 WMI_10_4_PDEV_PARAM_LTR_SLEEP_OVERRIDE
,
3900 WMI_10_4_PDEV_PARAM_LTR_RX_OVERRIDE
,
3901 WMI_10_4_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT
,
3902 WMI_10_4_PDEV_PARAM_L1SS_ENABLE
,
3903 WMI_10_4_PDEV_PARAM_DSLEEP_ENABLE
,
3904 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_FLUSH
,
3905 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_WATERMARK
,
3906 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_EN
,
3907 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE
,
3908 WMI_10_4_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD
,
3909 WMI_10_4_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD
,
3910 WMI_10_4_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD
,
3911 WMI_10_4_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD
,
3912 WMI_10_4_PDEV_PARAM_PMF_QOS
,
3913 WMI_10_4_PDEV_PARAM_ARP_AC_OVERRIDE
,
3914 WMI_10_4_PDEV_PARAM_DCS
,
3915 WMI_10_4_PDEV_PARAM_ANI_ENABLE
,
3916 WMI_10_4_PDEV_PARAM_ANI_POLL_PERIOD
,
3917 WMI_10_4_PDEV_PARAM_ANI_LISTEN_PERIOD
,
3918 WMI_10_4_PDEV_PARAM_ANI_OFDM_LEVEL
,
3919 WMI_10_4_PDEV_PARAM_ANI_CCK_LEVEL
,
3920 WMI_10_4_PDEV_PARAM_DYNTXCHAIN
,
3921 WMI_10_4_PDEV_PARAM_PROXY_STA
,
3922 WMI_10_4_PDEV_PARAM_IDLE_PS_CONFIG
,
3923 WMI_10_4_PDEV_PARAM_POWER_GATING_SLEEP
,
3924 WMI_10_4_PDEV_PARAM_AGGR_BURST
,
3925 WMI_10_4_PDEV_PARAM_RX_DECAP_MODE
,
3926 WMI_10_4_PDEV_PARAM_FAST_CHANNEL_RESET
,
3927 WMI_10_4_PDEV_PARAM_BURST_DUR
,
3928 WMI_10_4_PDEV_PARAM_BURST_ENABLE
,
3929 WMI_10_4_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA
,
3930 WMI_10_4_PDEV_PARAM_IGMPMLD_OVERRIDE
,
3931 WMI_10_4_PDEV_PARAM_IGMPMLD_TID
,
3932 WMI_10_4_PDEV_PARAM_ANTENNA_GAIN
,
3933 WMI_10_4_PDEV_PARAM_RX_FILTER
,
3934 WMI_10_4_PDEV_SET_MCAST_TO_UCAST_TID
,
3935 WMI_10_4_PDEV_PARAM_PROXY_STA_MODE
,
3936 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_MODE
,
3937 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_BUFFER
,
3938 WMI_10_4_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER
,
3939 WMI_10_4_PDEV_PEER_STA_PS_STATECHG_ENABLE
,
3940 WMI_10_4_PDEV_PARAM_IGMPMLD_AC_OVERRIDE
,
3941 WMI_10_4_PDEV_PARAM_BLOCK_INTERBSS
,
3942 WMI_10_4_PDEV_PARAM_SET_DISABLE_RESET_CMDID
,
3943 WMI_10_4_PDEV_PARAM_SET_MSDU_TTL_CMDID
,
3944 WMI_10_4_PDEV_PARAM_SET_PPDU_DURATION_CMDID
,
3945 WMI_10_4_PDEV_PARAM_TXBF_SOUND_PERIOD_CMDID
,
3946 WMI_10_4_PDEV_PARAM_SET_PROMISC_MODE_CMDID
,
3947 WMI_10_4_PDEV_PARAM_SET_BURST_MODE_CMDID
,
3948 WMI_10_4_PDEV_PARAM_EN_STATS
,
3949 WMI_10_4_PDEV_PARAM_MU_GROUP_POLICY
,
3950 WMI_10_4_PDEV_PARAM_NOISE_DETECTION
,
3951 WMI_10_4_PDEV_PARAM_NOISE_THRESHOLD
,
3952 WMI_10_4_PDEV_PARAM_DPD_ENABLE
,
3953 WMI_10_4_PDEV_PARAM_SET_MCAST_BCAST_ECHO
,
3954 WMI_10_4_PDEV_PARAM_ATF_STRICT_SCH
,
3955 WMI_10_4_PDEV_PARAM_ATF_SCHED_DURATION
,
3956 WMI_10_4_PDEV_PARAM_ANT_PLZN
,
3957 WMI_10_4_PDEV_PARAM_MGMT_RETRY_LIMIT
,
3958 WMI_10_4_PDEV_PARAM_SENSITIVITY_LEVEL
,
3959 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_2G
,
3960 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_5G
,
3961 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMSDU
,
3962 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMPDU
,
3963 WMI_10_4_PDEV_PARAM_CCA_THRESHOLD
,
3964 WMI_10_4_PDEV_PARAM_RTS_FIXED_RATE
,
3965 WMI_10_4_PDEV_PARAM_CAL_PERIOD
,
3966 WMI_10_4_PDEV_PARAM_PDEV_RESET
,
3967 WMI_10_4_PDEV_PARAM_WAPI_MBSSID_OFFSET
,
3968 WMI_10_4_PDEV_PARAM_ARP_SRCADDR
,
3969 WMI_10_4_PDEV_PARAM_ARP_DSTADDR
,
3970 WMI_10_4_PDEV_PARAM_TXPOWER_DECR_DB
,
3971 WMI_10_4_PDEV_PARAM_RX_BATCHMODE
,
3972 WMI_10_4_PDEV_PARAM_PACKET_AGGR_DELAY
,
3973 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCH
,
3974 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCALING_FACTOR
,
3975 WMI_10_4_PDEV_PARAM_CUST_TXPOWER_SCALE
,
3976 WMI_10_4_PDEV_PARAM_ATF_DYNAMIC_ENABLE
,
3977 WMI_10_4_PDEV_PARAM_ATF_SSID_GROUP_POLICY
,
3978 WMI_10_4_PDEV_PARAM_ENABLE_BTCOEX
,
3981 struct wmi_pdev_set_param_cmd
{
3986 /* valid period is 1 ~ 60000ms, unit in millisecond */
3987 #define WMI_PDEV_PARAM_CAL_PERIOD_MAX 60000
3989 struct wmi_pdev_get_tpc_config_cmd
{
3994 #define WMI_TPC_CONFIG_PARAM 1
3995 #define WMI_TPC_RATE_MAX 160
3996 #define WMI_TPC_TX_N_CHAIN 4
3997 #define WMI_TPC_PREAM_TABLE_MAX 10
3998 #define WMI_TPC_FLAG 3
3999 #define WMI_TPC_BUF_SIZE 10
4001 enum wmi_tpc_table_type
{
4002 WMI_TPC_TABLE_TYPE_CDD
= 0,
4003 WMI_TPC_TABLE_TYPE_STBC
= 1,
4004 WMI_TPC_TABLE_TYPE_TXBF
= 2,
4007 enum wmi_tpc_config_event_flag
{
4008 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_CDD
= 0x1,
4009 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_STBC
= 0x2,
4010 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF
= 0x4,
4013 struct wmi_pdev_tpc_config_event
{
4017 __le32 twice_antenna_reduction
;
4018 __le32 twice_max_rd_power
;
4019 a_sle32 twice_antenna_gain
;
4022 __le32 num_tx_chain
;
4025 s8 max_reg_allow_pow
[WMI_TPC_TX_N_CHAIN
];
4026 s8 max_reg_allow_pow_agcdd
[WMI_TPC_TX_N_CHAIN
][WMI_TPC_TX_N_CHAIN
];
4027 s8 max_reg_allow_pow_agstbc
[WMI_TPC_TX_N_CHAIN
][WMI_TPC_TX_N_CHAIN
];
4028 s8 max_reg_allow_pow_agtxbf
[WMI_TPC_TX_N_CHAIN
][WMI_TPC_TX_N_CHAIN
];
4029 u8 rates_array
[WMI_TPC_RATE_MAX
];
4032 /* Transmit power scale factor. */
4034 WMI_TP_SCALE_MAX
= 0, /* no scaling (default) */
4035 WMI_TP_SCALE_50
= 1, /* 50% of max (-3 dBm) */
4036 WMI_TP_SCALE_25
= 2, /* 25% of max (-6 dBm) */
4037 WMI_TP_SCALE_12
= 3, /* 12% of max (-9 dBm) */
4038 WMI_TP_SCALE_MIN
= 4, /* min, but still on */
4039 WMI_TP_SCALE_SIZE
= 5, /* max num of enum */
4042 struct wmi_pdev_chanlist_update_event
{
4043 /* number of channels */
4045 /* array of channels */
4046 struct wmi_channel channel_list
[1];
4049 #define WMI_MAX_DEBUG_MESG (sizeof(u32) * 32)
4051 struct wmi_debug_mesg_event
{
4052 /* message buffer, NULL terminated */
4053 char bufp
[WMI_MAX_DEBUG_MESG
];
4058 VDEV_SUBTYPE_P2PDEV
= 0,
4060 VDEV_SUBTYPE_P2PCLI
,
4067 struct wmi_pdev_set_channel_cmd
{
4068 /* idnore power , only use flags , mode and freq */
4069 struct wmi_channel chan
;
4072 struct wmi_pdev_pktlog_enable_cmd
{
4076 /* Customize the DSCP (bit) to TID (0-7) mapping for QOS */
4077 #define WMI_DSCP_MAP_MAX (64)
4078 struct wmi_pdev_set_dscp_tid_map_cmd
{
4079 /* map indicating DSCP to TID conversion */
4080 __le32 dscp_to_tid_map
[WMI_DSCP_MAP_MAX
];
4083 enum mcast_bcast_rate_id
{
4088 struct mcast_bcast_rate
{
4089 enum mcast_bcast_rate_id rate_id
;
4093 struct wmi_wmm_params
{
4102 struct wmi_pdev_set_wmm_params
{
4103 struct wmi_wmm_params ac_be
;
4104 struct wmi_wmm_params ac_bk
;
4105 struct wmi_wmm_params ac_vi
;
4106 struct wmi_wmm_params ac_vo
;
4109 struct wmi_wmm_params_arg
{
4118 struct wmi_wmm_params_all_arg
{
4119 struct wmi_wmm_params_arg ac_be
;
4120 struct wmi_wmm_params_arg ac_bk
;
4121 struct wmi_wmm_params_arg ac_vi
;
4122 struct wmi_wmm_params_arg ac_vo
;
4125 struct wmi_pdev_stats_tx
{
4126 /* Num HTT cookies queued to dispatch list */
4129 /* Num HTT cookies dispatched */
4130 __le32 comp_delivered
;
4132 /* Num MSDU queued to WAL */
4135 /* Num MPDU queue to WAL */
4138 /* Num MSDUs dropped by WMM limit */
4141 /* Num Local frames queued */
4142 __le32 local_enqued
;
4144 /* Num Local frames done */
4147 /* Num queued to HW */
4150 /* Num PPDU reaped from HW */
4156 /* Num PPDUs cleaned up in TX abort */
4159 /* Num MPDUs requed by SW */
4160 __le32 mpdus_requed
;
4162 /* excessive retries */
4165 /* data hw rate code */
4168 /* Scheduler self triggers */
4169 __le32 self_triggers
;
4171 /* frames dropped due to excessive sw retries */
4172 __le32 sw_retry_failure
;
4174 /* illegal rate phy errors */
4175 __le32 illgl_rate_phy_err
;
4177 /* wal pdev continuous xretry */
4178 __le32 pdev_cont_xretry
;
4180 /* wal pdev continous xretry */
4181 __le32 pdev_tx_timeout
;
4183 /* wal pdev resets */
4186 /* frames dropped due to non-availability of stateless TIDs */
4187 __le32 stateless_tid_alloc_failure
;
4189 __le32 phy_underrun
;
4191 /* MPDU is more than txop limit */
4195 struct wmi_10_4_pdev_stats_tx
{
4196 /* Num HTT cookies queued to dispatch list */
4199 /* Num HTT cookies dispatched */
4200 __le32 comp_delivered
;
4202 /* Num MSDU queued to WAL */
4205 /* Num MPDU queue to WAL */
4208 /* Num MSDUs dropped by WMM limit */
4211 /* Num Local frames queued */
4212 __le32 local_enqued
;
4214 /* Num Local frames done */
4217 /* Num queued to HW */
4220 /* Num PPDU reaped from HW */
4229 /* Num PPDUs cleaned up in TX abort */
4232 /* Num MPDUs requed by SW */
4233 __le32 mpdus_requed
;
4235 /* excessive retries */
4238 /* data hw rate code */
4241 /* Scheduler self triggers */
4242 __le32 self_triggers
;
4244 /* frames dropped due to excessive sw retries */
4245 __le32 sw_retry_failure
;
4247 /* illegal rate phy errors */
4248 __le32 illgl_rate_phy_err
;
4250 /* wal pdev continuous xretry */
4251 __le32 pdev_cont_xretry
;
4253 /* wal pdev tx timeouts */
4254 __le32 pdev_tx_timeout
;
4256 /* wal pdev resets */
4259 /* frames dropped due to non-availability of stateless TIDs */
4260 __le32 stateless_tid_alloc_failure
;
4262 __le32 phy_underrun
;
4264 /* MPDU is more than txop limit */
4267 /* Number of Sequences posted */
4270 /* Number of Sequences failed queueing */
4271 __le32 seq_failed_queueing
;
4273 /* Number of Sequences completed */
4274 __le32 seq_completed
;
4276 /* Number of Sequences restarted */
4277 __le32 seq_restarted
;
4279 /* Number of MU Sequences posted */
4280 __le32 mu_seq_posted
;
4282 /* Num MPDUs flushed by SW, HWPAUSED,SW TXABORT(Reset,channel change) */
4283 __le32 mpdus_sw_flush
;
4285 /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
4286 __le32 mpdus_hw_filter
;
4288 /* Num MPDUs truncated by PDG
4289 * (TXOP, TBTT, PPDU_duration based on rate, dyn_bw)
4291 __le32 mpdus_truncated
;
4293 /* Num MPDUs that was tried but didn't receive ACK or BA */
4294 __le32 mpdus_ack_failed
;
4296 /* Num MPDUs that was dropped due to expiry. */
4297 __le32 mpdus_expired
;
4300 struct wmi_pdev_stats_rx
{
4301 /* Cnts any change in ring routing mid-ppdu */
4302 __le32 mid_ppdu_route_change
;
4304 /* Total number of statuses processed */
4307 /* Extra frags on rings 0-3 */
4313 /* MSDUs / MPDUs delivered to HTT */
4317 /* MSDUs / MPDUs delivered to local stack */
4321 /* AMSDUs that have more MSDUs than the status ring size */
4322 __le32 oversize_amsdu
;
4324 /* Number of PHY errors */
4327 /* Number of PHY errors drops */
4328 __le32 phy_err_drop
;
4330 /* Number of mpdu errors - FCS, MIC, ENC etc. */
4334 struct wmi_pdev_stats_peer
{
4335 /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
4340 WMI_STAT_PEER
= BIT(0),
4341 WMI_STAT_AP
= BIT(1),
4342 WMI_STAT_PDEV
= BIT(2),
4343 WMI_STAT_VDEV
= BIT(3),
4344 WMI_STAT_BCNFLT
= BIT(4),
4345 WMI_STAT_VDEV_RATE
= BIT(5),
4348 enum wmi_10_4_stats_id
{
4349 WMI_10_4_STAT_PEER
= BIT(0),
4350 WMI_10_4_STAT_AP
= BIT(1),
4351 WMI_10_4_STAT_INST
= BIT(2),
4352 WMI_10_4_STAT_PEER_EXTD
= BIT(3),
4355 struct wlan_inst_rssi_args
{
4356 __le16 cfg_retry_count
;
4360 struct wmi_request_stats_cmd
{
4365 /* peer MAC address */
4366 struct wmi_mac_addr peer_macaddr
;
4368 /* Instantaneous RSSI arguments */
4369 struct wlan_inst_rssi_args inst_rssi_args
;
4372 /* Suspend option */
4377 /* suspend and disable all interrupts */
4378 WMI_PDEV_SUSPEND_AND_DISABLE_INTR
,
4381 struct wmi_pdev_suspend_cmd
{
4382 /* suspend option sent to target */
4386 struct wmi_stats_event
{
4387 __le32 stats_id
; /* WMI_STAT_ */
4389 * number of pdev stats event structures
4390 * (wmi_pdev_stats) 0 or 1
4392 __le32 num_pdev_stats
;
4394 * number of vdev stats event structures
4395 * (wmi_vdev_stats) 0 or max vdevs
4397 __le32 num_vdev_stats
;
4399 * number of peer stats event structures
4400 * (wmi_peer_stats) 0 or max peers
4402 __le32 num_peer_stats
;
4403 __le32 num_bcnflt_stats
;
4406 * num_pdev_stats * size of(struct wmi_pdev_stats)
4407 * num_vdev_stats * size of(struct wmi_vdev_stats)
4408 * num_peer_stats * size of(struct wmi_peer_stats)
4410 * By having a zero sized array, the pointer to data area
4411 * becomes available without increasing the struct size
4416 struct wmi_10_2_stats_event
{
4417 __le32 stats_id
; /* %WMI_REQUEST_ */
4418 __le32 num_pdev_stats
;
4419 __le32 num_pdev_ext_stats
;
4420 __le32 num_vdev_stats
;
4421 __le32 num_peer_stats
;
4422 __le32 num_bcnflt_stats
;
4428 * TODO: add all PDEV stats here
4430 struct wmi_pdev_stats_base
{
4432 __le32 tx_frame_count
; /* Cycles spent transmitting frames */
4433 __le32 rx_frame_count
; /* Cycles spent receiving frames */
4434 __le32 rx_clear_count
; /* Total channel busy time, evidently */
4435 __le32 cycle_count
; /* Total on-channel time */
4436 __le32 phy_err_count
;
4440 struct wmi_pdev_stats
{
4441 struct wmi_pdev_stats_base base
;
4442 struct wmi_pdev_stats_tx tx
;
4443 struct wmi_pdev_stats_rx rx
;
4444 struct wmi_pdev_stats_peer peer
;
4447 struct wmi_pdev_stats_extra
{
4453 __le32 mib_int_count
;
4456 struct wmi_10x_pdev_stats
{
4457 struct wmi_pdev_stats_base base
;
4458 struct wmi_pdev_stats_tx tx
;
4459 struct wmi_pdev_stats_rx rx
;
4460 struct wmi_pdev_stats_peer peer
;
4461 struct wmi_pdev_stats_extra extra
;
4464 struct wmi_pdev_stats_mem
{
4469 struct wmi_10_2_pdev_stats
{
4470 struct wmi_pdev_stats_base base
;
4471 struct wmi_pdev_stats_tx tx
;
4473 struct wmi_pdev_stats_rx rx
;
4474 __le32 pdev_rx_timeout
;
4475 struct wmi_pdev_stats_mem mem
;
4476 struct wmi_pdev_stats_peer peer
;
4477 struct wmi_pdev_stats_extra extra
;
4480 struct wmi_10_4_pdev_stats
{
4481 struct wmi_pdev_stats_base base
;
4482 struct wmi_10_4_pdev_stats_tx tx
;
4483 struct wmi_pdev_stats_rx rx
;
4484 __le32 rx_ovfl_errs
;
4485 struct wmi_pdev_stats_mem mem
;
4486 __le32 sram_free_size
;
4487 struct wmi_pdev_stats_extra extra
;
4492 * TODO: add all VDEV stats here
4494 struct wmi_vdev_stats
{
4500 * TODO: add more stats
4502 struct wmi_peer_stats
{
4503 struct wmi_mac_addr peer_macaddr
;
4505 __le32 peer_tx_rate
;
4508 struct wmi_10x_peer_stats
{
4509 struct wmi_peer_stats old
;
4510 __le32 peer_rx_rate
;
4513 struct wmi_10_2_peer_stats
{
4514 struct wmi_peer_stats old
;
4515 __le32 peer_rx_rate
;
4518 __le32 tx_rate_count
;
4519 __le32 max_4ms_frame_len
;
4520 __le32 total_sub_frames
;
4522 __le32 num_pkt_loss_overflow
[4];
4523 __le32 num_pkt_loss_excess_retry
[4];
4526 struct wmi_10_2_4_peer_stats
{
4527 struct wmi_10_2_peer_stats common
;
4528 __le32 peer_rssi_changed
;
4531 struct wmi_10_2_4_ext_peer_stats
{
4532 struct wmi_10_2_peer_stats common
;
4533 __le32 peer_rssi_changed
;
4537 struct wmi_10_4_peer_stats
{
4538 struct wmi_mac_addr peer_macaddr
;
4540 __le32 peer_rssi_seq_num
;
4541 __le32 peer_tx_rate
;
4542 __le32 peer_rx_rate
;
4545 __le32 tx_rate_count
;
4546 __le32 max_4ms_frame_len
;
4547 __le32 total_sub_frames
;
4549 __le32 num_pkt_loss_overflow
[4];
4550 __le32 num_pkt_loss_excess_retry
[4];
4551 __le32 peer_rssi_changed
;
4554 struct wmi_10_4_peer_extd_stats
{
4555 struct wmi_mac_addr peer_macaddr
;
4556 __le32 inactive_time
;
4557 __le32 peer_chain_rssi
;
4559 __le32 reserved
[10];
4562 struct wmi_10_4_bss_bcn_stats
{
4564 __le32 bss_bcns_dropped
;
4565 __le32 bss_bcn_delivered
;
4568 struct wmi_10_4_bss_bcn_filter_stats
{
4569 __le32 bcns_dropped
;
4570 __le32 bcns_delivered
;
4571 __le32 active_filters
;
4572 struct wmi_10_4_bss_bcn_stats bss_stats
;
4575 struct wmi_10_2_pdev_ext_stats
{
4576 __le32 rx_rssi_comb
;
4583 struct wmi_vdev_create_cmd
{
4586 __le32 vdev_subtype
;
4587 struct wmi_mac_addr vdev_macaddr
;
4590 enum wmi_vdev_type
{
4591 WMI_VDEV_TYPE_AP
= 1,
4592 WMI_VDEV_TYPE_STA
= 2,
4593 WMI_VDEV_TYPE_IBSS
= 3,
4594 WMI_VDEV_TYPE_MONITOR
= 4,
4597 enum wmi_vdev_subtype
{
4598 WMI_VDEV_SUBTYPE_NONE
,
4599 WMI_VDEV_SUBTYPE_P2P_DEVICE
,
4600 WMI_VDEV_SUBTYPE_P2P_CLIENT
,
4601 WMI_VDEV_SUBTYPE_P2P_GO
,
4602 WMI_VDEV_SUBTYPE_PROXY_STA
,
4603 WMI_VDEV_SUBTYPE_MESH_11S
,
4604 WMI_VDEV_SUBTYPE_MESH_NON_11S
,
4607 enum wmi_vdev_subtype_legacy
{
4608 WMI_VDEV_SUBTYPE_LEGACY_NONE
= 0,
4609 WMI_VDEV_SUBTYPE_LEGACY_P2P_DEV
= 1,
4610 WMI_VDEV_SUBTYPE_LEGACY_P2P_CLI
= 2,
4611 WMI_VDEV_SUBTYPE_LEGACY_P2P_GO
= 3,
4612 WMI_VDEV_SUBTYPE_LEGACY_PROXY_STA
= 4,
4615 enum wmi_vdev_subtype_10_2_4
{
4616 WMI_VDEV_SUBTYPE_10_2_4_NONE
= 0,
4617 WMI_VDEV_SUBTYPE_10_2_4_P2P_DEV
= 1,
4618 WMI_VDEV_SUBTYPE_10_2_4_P2P_CLI
= 2,
4619 WMI_VDEV_SUBTYPE_10_2_4_P2P_GO
= 3,
4620 WMI_VDEV_SUBTYPE_10_2_4_PROXY_STA
= 4,
4621 WMI_VDEV_SUBTYPE_10_2_4_MESH_11S
= 5,
4624 enum wmi_vdev_subtype_10_4
{
4625 WMI_VDEV_SUBTYPE_10_4_NONE
= 0,
4626 WMI_VDEV_SUBTYPE_10_4_P2P_DEV
= 1,
4627 WMI_VDEV_SUBTYPE_10_4_P2P_CLI
= 2,
4628 WMI_VDEV_SUBTYPE_10_4_P2P_GO
= 3,
4629 WMI_VDEV_SUBTYPE_10_4_PROXY_STA
= 4,
4630 WMI_VDEV_SUBTYPE_10_4_MESH_NON_11S
= 5,
4631 WMI_VDEV_SUBTYPE_10_4_MESH_11S
= 6,
4634 /* values for vdev_subtype */
4636 /* values for vdev_start_request flags */
4638 * Indicates that AP VDEV uses hidden ssid. only valid for
4641 #define WMI_VDEV_START_HIDDEN_SSID (1 << 0)
4643 * Indicates if robust management frame/management frame
4644 * protection is enabled. For GO/AP vdevs, it indicates that
4645 * it may support station/client associations with RMF enabled.
4646 * For STA/client vdevs, it indicates that sta will
4647 * associate with AP with RMF enabled.
4649 #define WMI_VDEV_START_PMF_ENABLED (1 << 1)
4651 struct wmi_p2p_noa_descriptor
{
4652 __le32 type_count
; /* 255: continuous schedule, 0: reserved */
4653 __le32 duration
; /* Absent period duration in micro seconds */
4654 __le32 interval
; /* Absent period interval in micro seconds */
4655 __le32 start_time
; /* 32 bit tsf time when in starts */
4658 struct wmi_vdev_start_request_cmd
{
4660 struct wmi_channel chan
;
4661 /* unique id identifying the VDEV, generated by the caller */
4663 /* requestor id identifying the caller module */
4664 __le32 requestor_id
;
4665 /* beacon interval from received beacon */
4666 __le32 beacon_interval
;
4667 /* DTIM Period from the received beacon */
4671 /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */
4672 struct wmi_ssid ssid
;
4673 /* beacon/probe response xmit rate. Applicable for SoftAP. */
4675 /* beacon/probe response xmit power. Applicable for SoftAP. */
4676 __le32 bcn_tx_power
;
4677 /* number of p2p NOA descriptor(s) from scan entry */
4678 __le32 num_noa_descriptors
;
4680 * Disable H/W ack. This used by WMI_VDEV_RESTART_REQUEST_CMDID.
4681 * During CAC, Our HW shouldn't ack ditected frames
4683 __le32 disable_hw_ack
;
4684 /* actual p2p NOA descriptor from scan entry */
4685 struct wmi_p2p_noa_descriptor noa_descriptors
[2];
4688 struct wmi_vdev_restart_request_cmd
{
4689 struct wmi_vdev_start_request_cmd vdev_start_request_cmd
;
4692 struct wmi_vdev_start_request_arg
{
4694 struct wmi_channel_arg channel
;
4701 bool disable_hw_ack
;
4706 struct wmi_vdev_delete_cmd
{
4707 /* unique id identifying the VDEV, generated by the caller */
4711 struct wmi_vdev_up_cmd
{
4713 __le32 vdev_assoc_id
;
4714 struct wmi_mac_addr vdev_bssid
;
4717 struct wmi_vdev_stop_cmd
{
4721 struct wmi_vdev_down_cmd
{
4725 struct wmi_vdev_standby_response_cmd
{
4726 /* unique id identifying the VDEV, generated by the caller */
4730 struct wmi_vdev_resume_response_cmd
{
4731 /* unique id identifying the VDEV, generated by the caller */
4735 struct wmi_vdev_set_param_cmd
{
4741 #define WMI_MAX_KEY_INDEX 3
4742 #define WMI_MAX_KEY_LEN 32
4744 #define WMI_KEY_PAIRWISE 0x00
4745 #define WMI_KEY_GROUP 0x01
4746 #define WMI_KEY_TX_USAGE 0x02 /* default tx key - static wep */
4748 struct wmi_key_seq_counter
{
4749 __le32 key_seq_counter_l
;
4750 __le32 key_seq_counter_h
;
4753 #define WMI_CIPHER_NONE 0x0 /* clear key */
4754 #define WMI_CIPHER_WEP 0x1
4755 #define WMI_CIPHER_TKIP 0x2
4756 #define WMI_CIPHER_AES_OCB 0x3
4757 #define WMI_CIPHER_AES_CCM 0x4
4758 #define WMI_CIPHER_WAPI 0x5
4759 #define WMI_CIPHER_CKIP 0x6
4760 #define WMI_CIPHER_AES_CMAC 0x7
4761 #define WMI_CIPHER_AES_GCM 0x8
4763 struct wmi_vdev_install_key_cmd
{
4765 struct wmi_mac_addr peer_macaddr
;
4768 __le32 key_cipher
; /* %WMI_CIPHER_ */
4769 struct wmi_key_seq_counter key_rsc_counter
;
4770 struct wmi_key_seq_counter key_global_rsc_counter
;
4771 struct wmi_key_seq_counter key_tsc_counter
;
4772 u8 wpi_key_rsc_counter
[16];
4773 u8 wpi_key_tsc_counter
[16];
4775 __le32 key_txmic_len
;
4776 __le32 key_rxmic_len
;
4778 /* contains key followed by tx mic followed by rx mic */
4782 struct wmi_vdev_install_key_arg
{
4791 const void *key_data
;
4795 * vdev fixed rate format:
4796 * - preamble - b7:b6 - see WMI_RATE_PREMABLE_
4797 * - nss - b5:b4 - ss number (0 mean 1ss)
4798 * - rate_mcs - b3:b0 - as below
4799 * CCK: 0 - 11Mbps, 1 - 5,5Mbps, 2 - 2Mbps, 3 - 1Mbps,
4800 * 4 - 11Mbps (s), 5 - 5,5Mbps (s), 6 - 2Mbps (s)
4801 * OFDM: 0 - 48Mbps, 1 - 24Mbps, 2 - 12Mbps, 3 - 6Mbps,
4802 * 4 - 54Mbps, 5 - 36Mbps, 6 - 18Mbps, 7 - 9Mbps
4806 /* Preamble types to be used with VDEV fixed rate configuration */
4807 enum wmi_rate_preamble
{
4808 WMI_RATE_PREAMBLE_OFDM
,
4809 WMI_RATE_PREAMBLE_CCK
,
4810 WMI_RATE_PREAMBLE_HT
,
4811 WMI_RATE_PREAMBLE_VHT
,
4814 #define ATH10K_HW_NSS(rate) (1 + (((rate) >> 4) & 0x3))
4815 #define ATH10K_HW_PREAMBLE(rate) (((rate) >> 6) & 0x3)
4816 #define ATH10K_HW_MCS_RATE(rate) ((rate) & 0xf)
4817 #define ATH10K_HW_LEGACY_RATE(rate) ((rate) & 0x3f)
4818 #define ATH10K_HW_BW(flags) (((flags) >> 3) & 0x3)
4819 #define ATH10K_HW_GI(flags) (((flags) >> 5) & 0x1)
4820 #define ATH10K_HW_RATECODE(rate, nss, preamble) \
4821 (((preamble) << 6) | ((nss) << 4) | (rate))
4823 #define VHT_MCS_NUM 10
4824 #define VHT_BW_NUM 4
4825 #define VHT_NSS_NUM 4
4827 /* Value to disable fixed rate setting */
4828 #define WMI_FIXED_RATE_NONE (0xff)
4830 struct wmi_vdev_param_map
{
4832 u32 fragmentation_threshold
;
4833 u32 beacon_interval
;
4834 u32 listen_interval
;
4840 u32 wmi_vdev_stats_update_period
;
4841 u32 wmi_vdev_pwrsave_ageout_time
;
4842 u32 wmi_vdev_host_swba_interval
;
4844 u32 wmi_vdev_oc_scheduler_air_time_limit
;
4847 u32 bmiss_count_max
;
4848 u32 bmiss_first_bcnt
;
4849 u32 bmiss_final_bcnt
;
4853 u32 disable_htprotection
;
4854 u32 sta_quickkickout
;
4856 u32 protection_mode
;
4865 u32 bcast_data_rate
;
4866 u32 mcast_data_rate
;
4869 u32 unknown_dest_indicate
;
4870 u32 ap_keepalive_min_idle_inactive_time_secs
;
4871 u32 ap_keepalive_max_idle_inactive_time_secs
;
4872 u32 ap_keepalive_max_unresponsive_time_secs
;
4873 u32 ap_enable_nawds
;
4874 u32 mcast2ucast_set
;
4877 u32 packet_powersave
;
4880 u32 ap_detect_out_of_sync_sleeping_sta_time_secs
;
4887 u32 early_rx_adjust_enable
;
4888 u32 early_rx_tgt_bmiss_num
;
4889 u32 early_rx_bmiss_sample_cycle
;
4890 u32 early_rx_slop_step
;
4891 u32 early_rx_init_slop
;
4892 u32 early_rx_adjust_pause
;
4896 u32 bw_nss_ratemask
;
4901 #define WMI_VDEV_PARAM_UNSUPPORTED 0
4903 /* the definition of different VDEV parameters */
4904 enum wmi_vdev_param
{
4906 WMI_VDEV_PARAM_RTS_THRESHOLD
= 0x1,
4907 /* Fragmentation threshold */
4908 WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD
,
4909 /* beacon interval in TUs */
4910 WMI_VDEV_PARAM_BEACON_INTERVAL
,
4911 /* Listen interval in TUs */
4912 WMI_VDEV_PARAM_LISTEN_INTERVAL
,
4913 /* multicast rate in Mbps */
4914 WMI_VDEV_PARAM_MULTICAST_RATE
,
4915 /* management frame rate in Mbps */
4916 WMI_VDEV_PARAM_MGMT_TX_RATE
,
4917 /* slot time (long vs short) */
4918 WMI_VDEV_PARAM_SLOT_TIME
,
4919 /* preamble (long vs short) */
4920 WMI_VDEV_PARAM_PREAMBLE
,
4921 /* SWBA time (time before tbtt in msec) */
4922 WMI_VDEV_PARAM_SWBA_TIME
,
4923 /* time period for updating VDEV stats */
4924 WMI_VDEV_STATS_UPDATE_PERIOD
,
4925 /* age out time in msec for frames queued for station in power save */
4926 WMI_VDEV_PWRSAVE_AGEOUT_TIME
,
4928 * Host SWBA interval (time in msec before tbtt for SWBA event
4931 WMI_VDEV_HOST_SWBA_INTERVAL
,
4932 /* DTIM period (specified in units of num beacon intervals) */
4933 WMI_VDEV_PARAM_DTIM_PERIOD
,
4935 * scheduler air time limit for this VDEV. used by off chan
4938 WMI_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT
,
4939 /* enable/dsiable WDS for this VDEV */
4942 WMI_VDEV_PARAM_ATIM_WINDOW
,
4944 WMI_VDEV_PARAM_BMISS_COUNT_MAX
,
4945 /* BMISS first time */
4946 WMI_VDEV_PARAM_BMISS_FIRST_BCNT
,
4947 /* BMISS final time */
4948 WMI_VDEV_PARAM_BMISS_FINAL_BCNT
,
4949 /* WMM enables/disabled */
4950 WMI_VDEV_PARAM_FEATURE_WMM
,
4952 WMI_VDEV_PARAM_CHWIDTH
,
4953 /* Channel Offset */
4954 WMI_VDEV_PARAM_CHEXTOFFSET
,
4955 /* Disable HT Protection */
4956 WMI_VDEV_PARAM_DISABLE_HTPROTECTION
,
4957 /* Quick STA Kickout */
4958 WMI_VDEV_PARAM_STA_QUICKKICKOUT
,
4959 /* Rate to be used with Management frames */
4960 WMI_VDEV_PARAM_MGMT_RATE
,
4961 /* Protection Mode */
4962 WMI_VDEV_PARAM_PROTECTION_MODE
,
4963 /* Fixed rate setting */
4964 WMI_VDEV_PARAM_FIXED_RATE
,
4965 /* Short GI Enable/Disable */
4968 WMI_VDEV_PARAM_LDPC
,
4969 /* Enable Tx STBC */
4970 WMI_VDEV_PARAM_TX_STBC
,
4971 /* Enable Rx STBC */
4972 WMI_VDEV_PARAM_RX_STBC
,
4973 /* Intra BSS forwarding */
4974 WMI_VDEV_PARAM_INTRA_BSS_FWD
,
4975 /* Setting Default xmit key for Vdev */
4976 WMI_VDEV_PARAM_DEF_KEYID
,
4979 /* Set the custom rate for the broadcast data frames */
4980 WMI_VDEV_PARAM_BCAST_DATA_RATE
,
4981 /* Set the custom rate (rate-code) for multicast data frames */
4982 WMI_VDEV_PARAM_MCAST_DATA_RATE
,
4983 /* Tx multicast packet indicate Enable/Disable */
4984 WMI_VDEV_PARAM_MCAST_INDICATE
,
4985 /* Tx DHCP packet indicate Enable/Disable */
4986 WMI_VDEV_PARAM_DHCP_INDICATE
,
4987 /* Enable host inspection of Tx unicast packet to unknown destination */
4988 WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE
,
4990 /* The minimum amount of time AP begins to consider STA inactive */
4991 WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS
,
4994 * An associated STA is considered inactive when there is no recent
4995 * TX/RX activity and no downlink frames are buffered for it. Once a
4996 * STA exceeds the maximum idle inactive time, the AP will send an
4997 * 802.11 data-null as a keep alive to verify the STA is still
4998 * associated. If the STA does ACK the data-null, or if the data-null
4999 * is buffered and the STA does not retrieve it, the STA will be
5000 * considered unresponsive
5001 * (see WMI_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
5003 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS
,
5006 * An associated STA is considered unresponsive if there is no recent
5007 * TX/RX activity and downlink frames are buffered for it. Once a STA
5008 * exceeds the maximum unresponsive time, the AP will send a
5009 * WMI_STA_KICKOUT event to the host so the STA can be deleted.
5011 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS
,
5013 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
5014 WMI_VDEV_PARAM_AP_ENABLE_NAWDS
,
5015 /* Enable/Disable RTS-CTS */
5016 WMI_VDEV_PARAM_ENABLE_RTSCTS
,
5017 /* Enable TXBFee/er */
5018 WMI_VDEV_PARAM_TXBF
,
5020 /* Set packet power save */
5021 WMI_VDEV_PARAM_PACKET_POWERSAVE
,
5024 * Drops un-encrypted packets if eceived in an encrypted connection
5025 * otherwise forwards to host.
5027 WMI_VDEV_PARAM_DROP_UNENCRY
,
5030 * Set the encapsulation type for frames.
5032 WMI_VDEV_PARAM_TX_ENCAP_TYPE
,
5035 /* the definition of different VDEV parameters */
5036 enum wmi_10x_vdev_param
{
5038 WMI_10X_VDEV_PARAM_RTS_THRESHOLD
= 0x1,
5039 /* Fragmentation threshold */
5040 WMI_10X_VDEV_PARAM_FRAGMENTATION_THRESHOLD
,
5041 /* beacon interval in TUs */
5042 WMI_10X_VDEV_PARAM_BEACON_INTERVAL
,
5043 /* Listen interval in TUs */
5044 WMI_10X_VDEV_PARAM_LISTEN_INTERVAL
,
5045 /* multicast rate in Mbps */
5046 WMI_10X_VDEV_PARAM_MULTICAST_RATE
,
5047 /* management frame rate in Mbps */
5048 WMI_10X_VDEV_PARAM_MGMT_TX_RATE
,
5049 /* slot time (long vs short) */
5050 WMI_10X_VDEV_PARAM_SLOT_TIME
,
5051 /* preamble (long vs short) */
5052 WMI_10X_VDEV_PARAM_PREAMBLE
,
5053 /* SWBA time (time before tbtt in msec) */
5054 WMI_10X_VDEV_PARAM_SWBA_TIME
,
5055 /* time period for updating VDEV stats */
5056 WMI_10X_VDEV_STATS_UPDATE_PERIOD
,
5057 /* age out time in msec for frames queued for station in power save */
5058 WMI_10X_VDEV_PWRSAVE_AGEOUT_TIME
,
5060 * Host SWBA interval (time in msec before tbtt for SWBA event
5063 WMI_10X_VDEV_HOST_SWBA_INTERVAL
,
5064 /* DTIM period (specified in units of num beacon intervals) */
5065 WMI_10X_VDEV_PARAM_DTIM_PERIOD
,
5067 * scheduler air time limit for this VDEV. used by off chan
5070 WMI_10X_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT
,
5071 /* enable/dsiable WDS for this VDEV */
5072 WMI_10X_VDEV_PARAM_WDS
,
5074 WMI_10X_VDEV_PARAM_ATIM_WINDOW
,
5076 WMI_10X_VDEV_PARAM_BMISS_COUNT_MAX
,
5077 /* WMM enables/disabled */
5078 WMI_10X_VDEV_PARAM_FEATURE_WMM
,
5080 WMI_10X_VDEV_PARAM_CHWIDTH
,
5081 /* Channel Offset */
5082 WMI_10X_VDEV_PARAM_CHEXTOFFSET
,
5083 /* Disable HT Protection */
5084 WMI_10X_VDEV_PARAM_DISABLE_HTPROTECTION
,
5085 /* Quick STA Kickout */
5086 WMI_10X_VDEV_PARAM_STA_QUICKKICKOUT
,
5087 /* Rate to be used with Management frames */
5088 WMI_10X_VDEV_PARAM_MGMT_RATE
,
5089 /* Protection Mode */
5090 WMI_10X_VDEV_PARAM_PROTECTION_MODE
,
5091 /* Fixed rate setting */
5092 WMI_10X_VDEV_PARAM_FIXED_RATE
,
5093 /* Short GI Enable/Disable */
5094 WMI_10X_VDEV_PARAM_SGI
,
5096 WMI_10X_VDEV_PARAM_LDPC
,
5097 /* Enable Tx STBC */
5098 WMI_10X_VDEV_PARAM_TX_STBC
,
5099 /* Enable Rx STBC */
5100 WMI_10X_VDEV_PARAM_RX_STBC
,
5101 /* Intra BSS forwarding */
5102 WMI_10X_VDEV_PARAM_INTRA_BSS_FWD
,
5103 /* Setting Default xmit key for Vdev */
5104 WMI_10X_VDEV_PARAM_DEF_KEYID
,
5106 WMI_10X_VDEV_PARAM_NSS
,
5107 /* Set the custom rate for the broadcast data frames */
5108 WMI_10X_VDEV_PARAM_BCAST_DATA_RATE
,
5109 /* Set the custom rate (rate-code) for multicast data frames */
5110 WMI_10X_VDEV_PARAM_MCAST_DATA_RATE
,
5111 /* Tx multicast packet indicate Enable/Disable */
5112 WMI_10X_VDEV_PARAM_MCAST_INDICATE
,
5113 /* Tx DHCP packet indicate Enable/Disable */
5114 WMI_10X_VDEV_PARAM_DHCP_INDICATE
,
5115 /* Enable host inspection of Tx unicast packet to unknown destination */
5116 WMI_10X_VDEV_PARAM_UNKNOWN_DEST_INDICATE
,
5118 /* The minimum amount of time AP begins to consider STA inactive */
5119 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS
,
5122 * An associated STA is considered inactive when there is no recent
5123 * TX/RX activity and no downlink frames are buffered for it. Once a
5124 * STA exceeds the maximum idle inactive time, the AP will send an
5125 * 802.11 data-null as a keep alive to verify the STA is still
5126 * associated. If the STA does ACK the data-null, or if the data-null
5127 * is buffered and the STA does not retrieve it, the STA will be
5128 * considered unresponsive
5129 * (see WMI_10X_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
5131 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS
,
5134 * An associated STA is considered unresponsive if there is no recent
5135 * TX/RX activity and downlink frames are buffered for it. Once a STA
5136 * exceeds the maximum unresponsive time, the AP will send a
5137 * WMI_10X_STA_KICKOUT event to the host so the STA can be deleted.
5139 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS
,
5141 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
5142 WMI_10X_VDEV_PARAM_AP_ENABLE_NAWDS
,
5144 WMI_10X_VDEV_PARAM_MCAST2UCAST_SET
,
5145 /* Enable/Disable RTS-CTS */
5146 WMI_10X_VDEV_PARAM_ENABLE_RTSCTS
,
5148 WMI_10X_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS
,
5150 /* following are available as of firmware 10.2 */
5151 WMI_10X_VDEV_PARAM_TX_ENCAP_TYPE
,
5152 WMI_10X_VDEV_PARAM_CABQ_MAXDUR
,
5153 WMI_10X_VDEV_PARAM_MFPTEST_SET
,
5154 WMI_10X_VDEV_PARAM_RTS_FIXED_RATE
,
5155 WMI_10X_VDEV_PARAM_VHT_SGIMASK
,
5156 WMI_10X_VDEV_PARAM_VHT80_RATEMASK
,
5157 WMI_10X_VDEV_PARAM_TSF_INCREMENT
,
5160 enum wmi_10_4_vdev_param
{
5161 WMI_10_4_VDEV_PARAM_RTS_THRESHOLD
= 0x1,
5162 WMI_10_4_VDEV_PARAM_FRAGMENTATION_THRESHOLD
,
5163 WMI_10_4_VDEV_PARAM_BEACON_INTERVAL
,
5164 WMI_10_4_VDEV_PARAM_LISTEN_INTERVAL
,
5165 WMI_10_4_VDEV_PARAM_MULTICAST_RATE
,
5166 WMI_10_4_VDEV_PARAM_MGMT_TX_RATE
,
5167 WMI_10_4_VDEV_PARAM_SLOT_TIME
,
5168 WMI_10_4_VDEV_PARAM_PREAMBLE
,
5169 WMI_10_4_VDEV_PARAM_SWBA_TIME
,
5170 WMI_10_4_VDEV_STATS_UPDATE_PERIOD
,
5171 WMI_10_4_VDEV_PWRSAVE_AGEOUT_TIME
,
5172 WMI_10_4_VDEV_HOST_SWBA_INTERVAL
,
5173 WMI_10_4_VDEV_PARAM_DTIM_PERIOD
,
5174 WMI_10_4_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT
,
5175 WMI_10_4_VDEV_PARAM_WDS
,
5176 WMI_10_4_VDEV_PARAM_ATIM_WINDOW
,
5177 WMI_10_4_VDEV_PARAM_BMISS_COUNT_MAX
,
5178 WMI_10_4_VDEV_PARAM_BMISS_FIRST_BCNT
,
5179 WMI_10_4_VDEV_PARAM_BMISS_FINAL_BCNT
,
5180 WMI_10_4_VDEV_PARAM_FEATURE_WMM
,
5181 WMI_10_4_VDEV_PARAM_CHWIDTH
,
5182 WMI_10_4_VDEV_PARAM_CHEXTOFFSET
,
5183 WMI_10_4_VDEV_PARAM_DISABLE_HTPROTECTION
,
5184 WMI_10_4_VDEV_PARAM_STA_QUICKKICKOUT
,
5185 WMI_10_4_VDEV_PARAM_MGMT_RATE
,
5186 WMI_10_4_VDEV_PARAM_PROTECTION_MODE
,
5187 WMI_10_4_VDEV_PARAM_FIXED_RATE
,
5188 WMI_10_4_VDEV_PARAM_SGI
,
5189 WMI_10_4_VDEV_PARAM_LDPC
,
5190 WMI_10_4_VDEV_PARAM_TX_STBC
,
5191 WMI_10_4_VDEV_PARAM_RX_STBC
,
5192 WMI_10_4_VDEV_PARAM_INTRA_BSS_FWD
,
5193 WMI_10_4_VDEV_PARAM_DEF_KEYID
,
5194 WMI_10_4_VDEV_PARAM_NSS
,
5195 WMI_10_4_VDEV_PARAM_BCAST_DATA_RATE
,
5196 WMI_10_4_VDEV_PARAM_MCAST_DATA_RATE
,
5197 WMI_10_4_VDEV_PARAM_MCAST_INDICATE
,
5198 WMI_10_4_VDEV_PARAM_DHCP_INDICATE
,
5199 WMI_10_4_VDEV_PARAM_UNKNOWN_DEST_INDICATE
,
5200 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS
,
5201 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS
,
5202 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS
,
5203 WMI_10_4_VDEV_PARAM_AP_ENABLE_NAWDS
,
5204 WMI_10_4_VDEV_PARAM_MCAST2UCAST_SET
,
5205 WMI_10_4_VDEV_PARAM_ENABLE_RTSCTS
,
5206 WMI_10_4_VDEV_PARAM_RC_NUM_RETRIES
,
5207 WMI_10_4_VDEV_PARAM_TXBF
,
5208 WMI_10_4_VDEV_PARAM_PACKET_POWERSAVE
,
5209 WMI_10_4_VDEV_PARAM_DROP_UNENCRY
,
5210 WMI_10_4_VDEV_PARAM_TX_ENCAP_TYPE
,
5211 WMI_10_4_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS
,
5212 WMI_10_4_VDEV_PARAM_CABQ_MAXDUR
,
5213 WMI_10_4_VDEV_PARAM_MFPTEST_SET
,
5214 WMI_10_4_VDEV_PARAM_RTS_FIXED_RATE
,
5215 WMI_10_4_VDEV_PARAM_VHT_SGIMASK
,
5216 WMI_10_4_VDEV_PARAM_VHT80_RATEMASK
,
5217 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_ENABLE
,
5218 WMI_10_4_VDEV_PARAM_EARLY_RX_TGT_BMISS_NUM
,
5219 WMI_10_4_VDEV_PARAM_EARLY_RX_BMISS_SAMPLE_CYCLE
,
5220 WMI_10_4_VDEV_PARAM_EARLY_RX_SLOP_STEP
,
5221 WMI_10_4_VDEV_PARAM_EARLY_RX_INIT_SLOP
,
5222 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_PAUSE
,
5223 WMI_10_4_VDEV_PARAM_PROXY_STA
,
5224 WMI_10_4_VDEV_PARAM_MERU_VC
,
5225 WMI_10_4_VDEV_PARAM_RX_DECAP_TYPE
,
5226 WMI_10_4_VDEV_PARAM_BW_NSS_RATEMASK
,
5227 WMI_10_4_VDEV_PARAM_SENSOR_AP
,
5228 WMI_10_4_VDEV_PARAM_BEACON_RATE
,
5229 WMI_10_4_VDEV_PARAM_DTIM_ENABLE_CTS
,
5230 WMI_10_4_VDEV_PARAM_STA_KICKOUT
,
5231 WMI_10_4_VDEV_PARAM_CAPABILITIES
,
5232 WMI_10_4_VDEV_PARAM_TSF_INCREMENT
,
5233 WMI_10_4_VDEV_PARAM_RX_FILTER
,
5234 WMI_10_4_VDEV_PARAM_MGMT_TX_POWER
,
5235 WMI_10_4_VDEV_PARAM_ATF_SSID_SCHED_POLICY
,
5236 WMI_10_4_VDEV_PARAM_DISABLE_DYN_BW_RTS
,
5237 WMI_10_4_VDEV_PARAM_TSF_DECREMENT
,
5240 #define WMI_VDEV_PARAM_TXBF_SU_TX_BFEE BIT(0)
5241 #define WMI_VDEV_PARAM_TXBF_MU_TX_BFEE BIT(1)
5242 #define WMI_VDEV_PARAM_TXBF_SU_TX_BFER BIT(2)
5243 #define WMI_VDEV_PARAM_TXBF_MU_TX_BFER BIT(3)
5245 #define WMI_TXBF_STS_CAP_OFFSET_LSB 4
5246 #define WMI_TXBF_STS_CAP_OFFSET_MASK 0x70
5247 #define WMI_TXBF_CONF_IMPLICIT_BF BIT(7)
5248 #define WMI_BF_SOUND_DIM_OFFSET_LSB 8
5249 #define WMI_BF_SOUND_DIM_OFFSET_MASK 0xf00
5251 /* slot time long */
5252 #define WMI_VDEV_SLOT_TIME_LONG 0x1
5253 /* slot time short */
5254 #define WMI_VDEV_SLOT_TIME_SHORT 0x2
5256 #define WMI_VDEV_PREAMBLE_LONG 0x1
5257 /* preablbe short */
5258 #define WMI_VDEV_PREAMBLE_SHORT 0x2
5260 enum wmi_start_event_param
{
5261 WMI_VDEV_RESP_START_EVENT
= 0,
5262 WMI_VDEV_RESP_RESTART_EVENT
,
5265 struct wmi_vdev_start_response_event
{
5268 __le32 resp_type
; /* %WMI_VDEV_RESP_ */
5272 struct wmi_vdev_standby_req_event
{
5273 /* unique id identifying the VDEV, generated by the caller */
5277 struct wmi_vdev_resume_req_event
{
5278 /* unique id identifying the VDEV, generated by the caller */
5282 struct wmi_vdev_stopped_event
{
5283 /* unique id identifying the VDEV, generated by the caller */
5288 * common structure used for simple events
5289 * (stopped, resume_req, standby response)
5291 struct wmi_vdev_simple_event
{
5292 /* unique id identifying the VDEV, generated by the caller */
5296 /* VDEV start response status codes */
5297 /* VDEV successfully started */
5298 #define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0
5300 /* requested VDEV not found */
5301 #define WMI_INIFIED_VDEV_START_RESPONSE_INVALID_VDEVID 0x1
5303 /* unsupported VDEV combination */
5304 #define WMI_INIFIED_VDEV_START_RESPONSE_NOT_SUPPORTED 0x2
5306 /* TODO: please add more comments if you have in-depth information */
5307 struct wmi_vdev_spectral_conf_cmd
{
5310 /* number of fft samples to send (0 for infinite) */
5313 __le32 scan_priority
;
5315 /* number of bins in the FFT: 2^(fft_size - bin_scale) */
5316 __le32 scan_fft_size
;
5318 __le32 scan_restart_ena
;
5319 __le32 scan_noise_floor_ref
;
5320 __le32 scan_init_delay
;
5321 __le32 scan_nb_tone_thr
;
5322 __le32 scan_str_bin_thr
;
5323 __le32 scan_wb_rpt_mode
;
5324 __le32 scan_rssi_rpt_mode
;
5325 __le32 scan_rssi_thr
;
5326 __le32 scan_pwr_format
;
5328 /* rpt_mode: Format of FFT report to software for spectral scan
5330 * 0: No FFT report (only spectral scan summary report)
5331 * 1: 2-dword summary of metrics for each completed FFT + spectral
5332 * scan summary report
5333 * 2: 2-dword summary of metrics for each completed FFT +
5334 * 1x- oversampled bins(in-band) per FFT + spectral scan summary
5336 * 3: 2-dword summary of metrics for each completed FFT +
5337 * 2x- oversampled bins (all) per FFT + spectral scan summary
5339 __le32 scan_rpt_mode
;
5340 __le32 scan_bin_scale
;
5341 __le32 scan_dbm_adj
;
5342 __le32 scan_chn_mask
;
5345 struct wmi_vdev_spectral_conf_arg
{
5352 u32 scan_restart_ena
;
5353 u32 scan_noise_floor_ref
;
5354 u32 scan_init_delay
;
5355 u32 scan_nb_tone_thr
;
5356 u32 scan_str_bin_thr
;
5357 u32 scan_wb_rpt_mode
;
5358 u32 scan_rssi_rpt_mode
;
5360 u32 scan_pwr_format
;
5367 #define WMI_SPECTRAL_ENABLE_DEFAULT 0
5368 #define WMI_SPECTRAL_COUNT_DEFAULT 0
5369 #define WMI_SPECTRAL_PERIOD_DEFAULT 35
5370 #define WMI_SPECTRAL_PRIORITY_DEFAULT 1
5371 #define WMI_SPECTRAL_FFT_SIZE_DEFAULT 7
5372 #define WMI_SPECTRAL_GC_ENA_DEFAULT 1
5373 #define WMI_SPECTRAL_RESTART_ENA_DEFAULT 0
5374 #define WMI_SPECTRAL_NOISE_FLOOR_REF_DEFAULT -96
5375 #define WMI_SPECTRAL_INIT_DELAY_DEFAULT 80
5376 #define WMI_SPECTRAL_NB_TONE_THR_DEFAULT 12
5377 #define WMI_SPECTRAL_STR_BIN_THR_DEFAULT 8
5378 #define WMI_SPECTRAL_WB_RPT_MODE_DEFAULT 0
5379 #define WMI_SPECTRAL_RSSI_RPT_MODE_DEFAULT 0
5380 #define WMI_SPECTRAL_RSSI_THR_DEFAULT 0xf0
5381 #define WMI_SPECTRAL_PWR_FORMAT_DEFAULT 0
5382 #define WMI_SPECTRAL_RPT_MODE_DEFAULT 2
5383 #define WMI_SPECTRAL_BIN_SCALE_DEFAULT 1
5384 #define WMI_SPECTRAL_DBM_ADJ_DEFAULT 1
5385 #define WMI_SPECTRAL_CHN_MASK_DEFAULT 1
5387 struct wmi_vdev_spectral_enable_cmd
{
5393 #define WMI_SPECTRAL_TRIGGER_CMD_TRIGGER 1
5394 #define WMI_SPECTRAL_TRIGGER_CMD_CLEAR 2
5395 #define WMI_SPECTRAL_ENABLE_CMD_ENABLE 1
5396 #define WMI_SPECTRAL_ENABLE_CMD_DISABLE 2
5398 /* Beacon processing related command and event structures */
5399 struct wmi_bcn_tx_hdr
{
5406 struct wmi_bcn_tx_cmd
{
5407 struct wmi_bcn_tx_hdr hdr
;
5411 struct wmi_bcn_tx_arg
{
5419 enum wmi_bcn_tx_ref_flags
{
5420 WMI_BCN_TX_REF_FLAG_DTIM_ZERO
= 0x1,
5421 WMI_BCN_TX_REF_FLAG_DELIVER_CAB
= 0x2,
5424 /* TODO: It is unclear why "no antenna" works while any other seemingly valid
5425 * chainmask yields no beacons on the air at all.
5427 #define WMI_BCN_TX_REF_DEF_ANTENNA 0
5429 struct wmi_bcn_tx_ref_cmd
{
5432 /* physical address of the frame - dma pointer */
5434 /* id for host to track */
5436 /* frame ctrl to setup PPDU desc */
5437 __le32 frame_control
;
5438 /* to control CABQ traffic: WMI_BCN_TX_REF_FLAG_ */
5440 /* introduced in 10.2 */
5441 __le32 antenna_mask
;
5445 #define WMI_BCN_FILTER_ALL 0 /* Filter all beacons */
5446 #define WMI_BCN_FILTER_NONE 1 /* Pass all beacons */
5447 #define WMI_BCN_FILTER_RSSI 2 /* Pass Beacons RSSI >= RSSI threshold */
5448 #define WMI_BCN_FILTER_BSSID 3 /* Pass Beacons with matching BSSID */
5449 #define WMI_BCN_FILTER_SSID 4 /* Pass Beacons with matching SSID */
5451 struct wmi_bcn_filter_rx_cmd
{
5453 __le32 bcn_filter_id
;
5454 /* Filter type - wmi_bcn_filter */
5457 __le32 bcn_filter_len
;
5458 /* Filter info (threshold, BSSID, RSSI) */
5462 /* Capabilities and IEs to be passed to firmware */
5463 struct wmi_bcn_prb_info
{
5468 /* Advanced capabilities */
5469 /* HT capabilities */
5479 struct wmi_bcn_tmpl_cmd
{
5480 /* unique id identifying the VDEV, generated by the caller */
5482 /* TIM IE offset from the beginning of the template. */
5483 __le32 tim_ie_offset
;
5484 /* beacon probe capabilities and IEs */
5485 struct wmi_bcn_prb_info bcn_prb_info
;
5486 /* beacon buffer length */
5488 /* variable length data */
5492 struct wmi_prb_tmpl_cmd
{
5493 /* unique id identifying the VDEV, generated by the caller */
5495 /* beacon probe capabilities and IEs */
5496 struct wmi_bcn_prb_info bcn_prb_info
;
5497 /* beacon buffer length */
5499 /* Variable length data */
5503 enum wmi_sta_ps_mode
{
5504 /* enable power save for the given STA VDEV */
5505 WMI_STA_PS_MODE_DISABLED
= 0,
5506 /* disable power save for a given STA VDEV */
5507 WMI_STA_PS_MODE_ENABLED
= 1,
5510 struct wmi_sta_powersave_mode_cmd
{
5511 /* unique id identifying the VDEV, generated by the caller */
5516 * (see enum wmi_sta_ps_mode)
5521 enum wmi_csa_offload_en
{
5522 WMI_CSA_OFFLOAD_DISABLE
= 0,
5523 WMI_CSA_OFFLOAD_ENABLE
= 1,
5526 struct wmi_csa_offload_enable_cmd
{
5528 __le32 csa_offload_enable
;
5531 struct wmi_csa_offload_chanswitch_cmd
{
5533 struct wmi_channel chan
;
5537 * This parameter controls the policy for retrieving frames from AP while the
5538 * STA is in sleep state.
5540 * Only takes affect if the sta_ps_mode is enabled
5542 enum wmi_sta_ps_param_rx_wake_policy
{
5544 * Wake up when ever there is an RX activity on the VDEV. In this mode
5545 * the Power save SM(state machine) will come out of sleep by either
5546 * sending null frame (or) a data frame (with PS==0) in response to TIM
5547 * bit set in the received beacon frame from AP.
5549 WMI_STA_PS_RX_WAKE_POLICY_WAKE
= 0,
5552 * Here the power save state machine will not wakeup in response to TIM
5553 * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
5554 * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
5555 * access categories are delivery-enabled, the station will send a
5556 * UAPSD trigger frame, otherwise it will send a PS-Poll.
5558 WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD
= 1,
5562 * Number of tx frames/beacon that cause the power save SM to wake up.
5564 * Value 1 causes the SM to wake up for every TX. Value 0 has a special
5565 * meaning, It will cause the SM to never wake up. This is useful if you want
5566 * to keep the system to sleep all the time for some kind of test mode . host
5567 * can change this parameter any time. It will affect at the next tx frame.
5569 enum wmi_sta_ps_param_tx_wake_threshold
{
5570 WMI_STA_PS_TX_WAKE_THRESHOLD_NEVER
= 0,
5571 WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS
= 1,
5574 * Values greater than one indicate that many TX attempts per beacon
5575 * interval before the STA will wake up
5580 * The maximum number of PS-Poll frames the FW will send in response to
5581 * traffic advertised in TIM before waking up (by sending a null frame with PS
5582 * = 0). Value 0 has a special meaning: there is no maximum count and the FW
5583 * will send as many PS-Poll as are necessary to retrieve buffered BU. This
5584 * parameter is used when the RX wake policy is
5585 * WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD and ignored when the RX wake
5586 * policy is WMI_STA_PS_RX_WAKE_POLICY_WAKE.
5588 enum wmi_sta_ps_param_pspoll_count
{
5589 WMI_STA_PS_PSPOLL_COUNT_NO_MAX
= 0,
5591 * Values greater than 0 indicate the maximum numer of PS-Poll frames
5592 * FW will send before waking up.
5595 /* When u-APSD is enabled the firmware will be very reluctant to exit
5596 * STA PS. This could result in very poor Rx performance with STA doing
5597 * PS-Poll for each and every buffered frame. This value is a bit
5600 WMI_STA_PS_PSPOLL_COUNT_UAPSD
= 3,
5604 * This will include the delivery and trigger enabled state for every AC.
5605 * This is the negotiated state with AP. The host MLME needs to set this based
5606 * on AP capability and the state Set in the association request by the
5607 * station MLME.Lower 8 bits of the value specify the UAPSD configuration.
5609 #define WMI_UAPSD_AC_TYPE_DELI 0
5610 #define WMI_UAPSD_AC_TYPE_TRIG 1
5612 #define WMI_UAPSD_AC_BIT_MASK(ac, type) \
5613 (type == WMI_UAPSD_AC_TYPE_DELI ? 1 << (ac << 1) : 1 << ((ac << 1) + 1))
5615 enum wmi_sta_ps_param_uapsd
{
5616 WMI_STA_PS_UAPSD_AC0_DELIVERY_EN
= (1 << 0),
5617 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN
= (1 << 1),
5618 WMI_STA_PS_UAPSD_AC1_DELIVERY_EN
= (1 << 2),
5619 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN
= (1 << 3),
5620 WMI_STA_PS_UAPSD_AC2_DELIVERY_EN
= (1 << 4),
5621 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN
= (1 << 5),
5622 WMI_STA_PS_UAPSD_AC3_DELIVERY_EN
= (1 << 6),
5623 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN
= (1 << 7),
5626 #define WMI_STA_UAPSD_MAX_INTERVAL_MSEC UINT_MAX
5628 struct wmi_sta_uapsd_auto_trig_param
{
5630 __le32 user_priority
;
5631 __le32 service_interval
;
5632 __le32 suspend_interval
;
5633 __le32 delay_interval
;
5636 struct wmi_sta_uapsd_auto_trig_cmd_fixed_param
{
5638 struct wmi_mac_addr peer_macaddr
;
5642 struct wmi_sta_uapsd_auto_trig_arg
{
5645 u32 service_interval
;
5646 u32 suspend_interval
;
5650 enum wmi_sta_powersave_param
{
5652 * Controls how frames are retrievd from AP while STA is sleeping
5654 * (see enum wmi_sta_ps_param_rx_wake_policy)
5656 WMI_STA_PS_PARAM_RX_WAKE_POLICY
= 0,
5659 * The STA will go active after this many TX
5661 * (see enum wmi_sta_ps_param_tx_wake_threshold)
5663 WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD
= 1,
5666 * Number of PS-Poll to send before STA wakes up
5668 * (see enum wmi_sta_ps_param_pspoll_count)
5671 WMI_STA_PS_PARAM_PSPOLL_COUNT
= 2,
5674 * TX/RX inactivity time in msec before going to sleep.
5676 * The power save SM will monitor tx/rx activity on the VDEV, if no
5677 * activity for the specified msec of the parameter the Power save
5678 * SM will go to sleep.
5680 WMI_STA_PS_PARAM_INACTIVITY_TIME
= 3,
5683 * Set uapsd configuration.
5685 * (see enum wmi_sta_ps_param_uapsd)
5687 WMI_STA_PS_PARAM_UAPSD
= 4,
5690 struct wmi_sta_powersave_param_cmd
{
5692 __le32 param_id
; /* %WMI_STA_PS_PARAM_ */
5696 /* No MIMO power save */
5697 #define WMI_STA_MIMO_PS_MODE_DISABLE
5698 /* mimo powersave mode static*/
5699 #define WMI_STA_MIMO_PS_MODE_STATIC
5700 /* mimo powersave mode dynamic */
5701 #define WMI_STA_MIMO_PS_MODE_DYNAMIC
5703 struct wmi_sta_mimo_ps_mode_cmd
{
5704 /* unique id identifying the VDEV, generated by the caller */
5706 /* mimo powersave mode as defined above */
5707 __le32 mimo_pwrsave_mode
;
5710 /* U-APSD configuration of peer station from (re)assoc request and TSPECs */
5711 enum wmi_ap_ps_param_uapsd
{
5712 WMI_AP_PS_UAPSD_AC0_DELIVERY_EN
= (1 << 0),
5713 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN
= (1 << 1),
5714 WMI_AP_PS_UAPSD_AC1_DELIVERY_EN
= (1 << 2),
5715 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN
= (1 << 3),
5716 WMI_AP_PS_UAPSD_AC2_DELIVERY_EN
= (1 << 4),
5717 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN
= (1 << 5),
5718 WMI_AP_PS_UAPSD_AC3_DELIVERY_EN
= (1 << 6),
5719 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN
= (1 << 7),
5722 /* U-APSD maximum service period of peer station */
5723 enum wmi_ap_ps_peer_param_max_sp
{
5724 WMI_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED
= 0,
5725 WMI_AP_PS_PEER_PARAM_MAX_SP_2
= 1,
5726 WMI_AP_PS_PEER_PARAM_MAX_SP_4
= 2,
5727 WMI_AP_PS_PEER_PARAM_MAX_SP_6
= 3,
5728 MAX_WMI_AP_PS_PEER_PARAM_MAX_SP
,
5732 * AP power save parameter
5733 * Set a power save specific parameter for a peer station
5735 enum wmi_ap_ps_peer_param
{
5736 /* Set uapsd configuration for a given peer.
5738 * Include the delivery and trigger enabled state for every AC.
5739 * The host MLME needs to set this based on AP capability and stations
5740 * request Set in the association request received from the station.
5742 * Lower 8 bits of the value specify the UAPSD configuration.
5744 * (see enum wmi_ap_ps_param_uapsd)
5745 * The default value is 0.
5747 WMI_AP_PS_PEER_PARAM_UAPSD
= 0,
5750 * Set the service period for a UAPSD capable station
5752 * The service period from wme ie in the (re)assoc request frame.
5754 * (see enum wmi_ap_ps_peer_param_max_sp)
5756 WMI_AP_PS_PEER_PARAM_MAX_SP
= 1,
5758 /* Time in seconds for aging out buffered frames for STA in PS */
5759 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME
= 2,
5762 struct wmi_ap_ps_peer_cmd
{
5763 /* unique id identifying the VDEV, generated by the caller */
5766 /* peer MAC address */
5767 struct wmi_mac_addr peer_macaddr
;
5769 /* AP powersave param (see enum wmi_ap_ps_peer_param) */
5772 /* AP powersave param value */
5776 /* 128 clients = 4 words */
5777 #define WMI_TIM_BITMAP_ARRAY_SIZE 4
5779 struct wmi_tim_info
{
5782 __le32 tim_bitmap
[WMI_TIM_BITMAP_ARRAY_SIZE
];
5784 __le32 tim_num_ps_pending
;
5787 struct wmi_tim_info_arg
{
5790 const __le32
*tim_bitmap
;
5792 __le32 tim_num_ps_pending
;
5795 /* Maximum number of NOA Descriptors supported */
5796 #define WMI_P2P_MAX_NOA_DESCRIPTORS 4
5797 #define WMI_P2P_OPPPS_ENABLE_BIT BIT(0)
5798 #define WMI_P2P_OPPPS_CTWINDOW_OFFSET 1
5799 #define WMI_P2P_NOA_CHANGED_BIT BIT(0)
5801 struct wmi_p2p_noa_info
{
5802 /* Bit 0 - Flag to indicate an update in NOA schedule
5803 * Bits 7-1 - Reserved
5808 /* Bit 0 - Opp PS state of the AP
5809 * Bits 1-7 - Ctwindow in TUs
5812 /* Number of NOA descriptors */
5815 struct wmi_p2p_noa_descriptor descriptors
[WMI_P2P_MAX_NOA_DESCRIPTORS
];
5818 struct wmi_bcn_info
{
5819 struct wmi_tim_info tim_info
;
5820 struct wmi_p2p_noa_info p2p_noa_info
;
5823 struct wmi_host_swba_event
{
5825 struct wmi_bcn_info bcn_info
[0];
5828 struct wmi_10_2_4_bcn_info
{
5829 struct wmi_tim_info tim_info
;
5830 /* The 10.2.4 FW doesn't have p2p NOA info */
5833 struct wmi_10_2_4_host_swba_event
{
5835 struct wmi_10_2_4_bcn_info bcn_info
[0];
5838 /* 16 words = 512 client + 1 word = for guard */
5839 #define WMI_10_4_TIM_BITMAP_ARRAY_SIZE 17
5841 struct wmi_10_4_tim_info
{
5844 __le32 tim_bitmap
[WMI_10_4_TIM_BITMAP_ARRAY_SIZE
];
5846 __le32 tim_num_ps_pending
;
5849 #define WMI_10_4_P2P_MAX_NOA_DESCRIPTORS 1
5851 struct wmi_10_4_p2p_noa_info
{
5852 /* Bit 0 - Flag to indicate an update in NOA schedule
5853 * Bits 7-1 - Reserved
5858 /* Bit 0 - Opp PS state of the AP
5859 * Bits 1-7 - Ctwindow in TUs
5862 /* Number of NOA descriptors */
5865 struct wmi_p2p_noa_descriptor
5866 noa_descriptors
[WMI_10_4_P2P_MAX_NOA_DESCRIPTORS
];
5869 struct wmi_10_4_bcn_info
{
5870 struct wmi_10_4_tim_info tim_info
;
5871 struct wmi_10_4_p2p_noa_info p2p_noa_info
;
5874 struct wmi_10_4_host_swba_event
{
5876 struct wmi_10_4_bcn_info bcn_info
[0];
5879 #define WMI_MAX_AP_VDEV 16
5881 struct wmi_tbtt_offset_event
{
5883 __le32 tbttoffset_list
[WMI_MAX_AP_VDEV
];
5886 struct wmi_peer_create_cmd
{
5888 struct wmi_mac_addr peer_macaddr
;
5892 enum wmi_peer_type
{
5893 WMI_PEER_TYPE_DEFAULT
= 0,
5894 WMI_PEER_TYPE_BSS
= 1,
5895 WMI_PEER_TYPE_TDLS
= 2,
5898 struct wmi_peer_delete_cmd
{
5900 struct wmi_mac_addr peer_macaddr
;
5903 struct wmi_peer_flush_tids_cmd
{
5905 struct wmi_mac_addr peer_macaddr
;
5906 __le32 peer_tid_bitmap
;
5909 struct wmi_fixed_rate
{
5911 * rate mode . 0: disable fixed rate (auto rate)
5912 * 1: legacy (non 11n) rate specified as ieee rate 2*Mbps
5913 * 2: ht20 11n rate specified as mcs index
5914 * 3: ht40 11n rate specified as mcs index
5918 * 4 rate values for 4 rate series. series 0 is stored in byte 0 (LSB)
5919 * and series 3 is stored at byte 3 (MSB)
5923 * 4 retry counts for 4 rate series. retry count for rate 0 is stored
5924 * in byte 0 (LSB) and retry count for rate 3 is stored at byte 3
5927 __le32 rate_retries
;
5930 struct wmi_peer_fixed_rate_cmd
{
5931 /* unique id identifying the VDEV, generated by the caller */
5933 /* peer MAC address */
5934 struct wmi_mac_addr peer_macaddr
;
5936 struct wmi_fixed_rate peer_fixed_rate
;
5939 #define WMI_MGMT_TID 17
5941 struct wmi_addba_clear_resp_cmd
{
5942 /* unique id identifying the VDEV, generated by the caller */
5944 /* peer MAC address */
5945 struct wmi_mac_addr peer_macaddr
;
5948 struct wmi_addba_send_cmd
{
5949 /* unique id identifying the VDEV, generated by the caller */
5951 /* peer MAC address */
5952 struct wmi_mac_addr peer_macaddr
;
5955 /* Buffer/Window size*/
5959 struct wmi_delba_send_cmd
{
5960 /* unique id identifying the VDEV, generated by the caller */
5962 /* peer MAC address */
5963 struct wmi_mac_addr peer_macaddr
;
5972 struct wmi_addba_setresponse_cmd
{
5973 /* unique id identifying the vdev, generated by the caller */
5975 /* peer mac address */
5976 struct wmi_mac_addr peer_macaddr
;
5983 struct wmi_send_singleamsdu_cmd
{
5984 /* unique id identifying the vdev, generated by the caller */
5986 /* peer mac address */
5987 struct wmi_mac_addr peer_macaddr
;
5992 enum wmi_peer_smps_state
{
5993 WMI_PEER_SMPS_PS_NONE
= 0x0,
5994 WMI_PEER_SMPS_STATIC
= 0x1,
5995 WMI_PEER_SMPS_DYNAMIC
= 0x2
5998 enum wmi_peer_chwidth
{
5999 WMI_PEER_CHWIDTH_20MHZ
= 0,
6000 WMI_PEER_CHWIDTH_40MHZ
= 1,
6001 WMI_PEER_CHWIDTH_80MHZ
= 2,
6002 WMI_PEER_CHWIDTH_160MHZ
= 3,
6005 enum wmi_peer_param
{
6006 WMI_PEER_SMPS_STATE
= 0x1, /* see %wmi_peer_smps_state */
6007 WMI_PEER_AMPDU
= 0x2,
6008 WMI_PEER_AUTHORIZE
= 0x3,
6009 WMI_PEER_CHAN_WIDTH
= 0x4,
6011 WMI_PEER_USE_4ADDR
= 0x6,
6012 WMI_PEER_DEBUG
= 0xa,
6013 WMI_PEER_DUMMY_VAR
= 0xff, /* dummy parameter for STA PS workaround */
6016 struct wmi_peer_set_param_cmd
{
6018 struct wmi_mac_addr peer_macaddr
;
6023 #define MAX_SUPPORTED_RATES 128
6025 struct wmi_rate_set
{
6026 /* total number of rates */
6029 * rates (each 8bit value) packed into a 32 bit word.
6030 * the rates are filled from least significant byte to most
6033 __le32 rates
[(MAX_SUPPORTED_RATES
/ 4) + 1];
6036 struct wmi_rate_set_arg
{
6037 unsigned int num_rates
;
6038 u8 rates
[MAX_SUPPORTED_RATES
];
6042 * NOTE: It would bea good idea to represent the Tx MCS
6043 * info in one word and Rx in another word. This is split
6044 * into multiple words for convenience
6046 struct wmi_vht_rate_set
{
6047 __le32 rx_max_rate
; /* Max Rx data rate */
6048 __le32 rx_mcs_set
; /* Negotiated RX VHT rates */
6049 __le32 tx_max_rate
; /* Max Tx data rate */
6050 __le32 tx_mcs_set
; /* Negotiated TX VHT rates */
6053 struct wmi_vht_rate_set_arg
{
6060 struct wmi_peer_set_rates_cmd
{
6061 /* peer MAC address */
6062 struct wmi_mac_addr peer_macaddr
;
6063 /* legacy rate set */
6064 struct wmi_rate_set peer_legacy_rates
;
6066 struct wmi_rate_set peer_ht_rates
;
6069 struct wmi_peer_set_q_empty_callback_cmd
{
6070 /* unique id identifying the VDEV, generated by the caller */
6072 /* peer MAC address */
6073 struct wmi_mac_addr peer_macaddr
;
6074 __le32 callback_enable
;
6077 struct wmi_peer_flags_map
{
6097 enum wmi_peer_flags
{
6098 WMI_PEER_AUTH
= 0x00000001,
6099 WMI_PEER_QOS
= 0x00000002,
6100 WMI_PEER_NEED_PTK_4_WAY
= 0x00000004,
6101 WMI_PEER_NEED_GTK_2_WAY
= 0x00000010,
6102 WMI_PEER_APSD
= 0x00000800,
6103 WMI_PEER_HT
= 0x00001000,
6104 WMI_PEER_40MHZ
= 0x00002000,
6105 WMI_PEER_STBC
= 0x00008000,
6106 WMI_PEER_LDPC
= 0x00010000,
6107 WMI_PEER_DYN_MIMOPS
= 0x00020000,
6108 WMI_PEER_STATIC_MIMOPS
= 0x00040000,
6109 WMI_PEER_SPATIAL_MUX
= 0x00200000,
6110 WMI_PEER_VHT
= 0x02000000,
6111 WMI_PEER_80MHZ
= 0x04000000,
6112 WMI_PEER_VHT_2G
= 0x08000000,
6113 WMI_PEER_PMF
= 0x10000000,
6114 WMI_PEER_160MHZ
= 0x20000000
6117 enum wmi_10x_peer_flags
{
6118 WMI_10X_PEER_AUTH
= 0x00000001,
6119 WMI_10X_PEER_QOS
= 0x00000002,
6120 WMI_10X_PEER_NEED_PTK_4_WAY
= 0x00000004,
6121 WMI_10X_PEER_NEED_GTK_2_WAY
= 0x00000010,
6122 WMI_10X_PEER_APSD
= 0x00000800,
6123 WMI_10X_PEER_HT
= 0x00001000,
6124 WMI_10X_PEER_40MHZ
= 0x00002000,
6125 WMI_10X_PEER_STBC
= 0x00008000,
6126 WMI_10X_PEER_LDPC
= 0x00010000,
6127 WMI_10X_PEER_DYN_MIMOPS
= 0x00020000,
6128 WMI_10X_PEER_STATIC_MIMOPS
= 0x00040000,
6129 WMI_10X_PEER_SPATIAL_MUX
= 0x00200000,
6130 WMI_10X_PEER_VHT
= 0x02000000,
6131 WMI_10X_PEER_80MHZ
= 0x04000000,
6132 WMI_10X_PEER_160MHZ
= 0x20000000
6135 enum wmi_10_2_peer_flags
{
6136 WMI_10_2_PEER_AUTH
= 0x00000001,
6137 WMI_10_2_PEER_QOS
= 0x00000002,
6138 WMI_10_2_PEER_NEED_PTK_4_WAY
= 0x00000004,
6139 WMI_10_2_PEER_NEED_GTK_2_WAY
= 0x00000010,
6140 WMI_10_2_PEER_APSD
= 0x00000800,
6141 WMI_10_2_PEER_HT
= 0x00001000,
6142 WMI_10_2_PEER_40MHZ
= 0x00002000,
6143 WMI_10_2_PEER_STBC
= 0x00008000,
6144 WMI_10_2_PEER_LDPC
= 0x00010000,
6145 WMI_10_2_PEER_DYN_MIMOPS
= 0x00020000,
6146 WMI_10_2_PEER_STATIC_MIMOPS
= 0x00040000,
6147 WMI_10_2_PEER_SPATIAL_MUX
= 0x00200000,
6148 WMI_10_2_PEER_VHT
= 0x02000000,
6149 WMI_10_2_PEER_80MHZ
= 0x04000000,
6150 WMI_10_2_PEER_VHT_2G
= 0x08000000,
6151 WMI_10_2_PEER_PMF
= 0x10000000,
6152 WMI_10_2_PEER_160MHZ
= 0x20000000
6156 * Peer rate capabilities.
6158 * This is of interest to the ratecontrol
6159 * module which resides in the firmware. The bit definitions are
6160 * consistent with that defined in if_athrate.c.
6162 #define WMI_RC_DS_FLAG 0x01
6163 #define WMI_RC_CW40_FLAG 0x02
6164 #define WMI_RC_SGI_FLAG 0x04
6165 #define WMI_RC_HT_FLAG 0x08
6166 #define WMI_RC_RTSCTS_FLAG 0x10
6167 #define WMI_RC_TX_STBC_FLAG 0x20
6168 #define WMI_RC_RX_STBC_FLAG 0xC0
6169 #define WMI_RC_RX_STBC_FLAG_S 6
6170 #define WMI_RC_WEP_TKIP_FLAG 0x100
6171 #define WMI_RC_TS_FLAG 0x200
6172 #define WMI_RC_UAPSD_FLAG 0x400
6174 /* Maximum listen interval supported by hw in units of beacon interval */
6175 #define ATH10K_MAX_HW_LISTEN_INTERVAL 5
6177 struct wmi_common_peer_assoc_complete_cmd
{
6178 struct wmi_mac_addr peer_macaddr
;
6180 __le32 peer_new_assoc
; /* 1=assoc, 0=reassoc */
6181 __le32 peer_associd
; /* 16 LSBs */
6183 __le32 peer_caps
; /* 16 LSBs */
6184 __le32 peer_listen_intval
;
6185 __le32 peer_ht_caps
;
6186 __le32 peer_max_mpdu
;
6187 __le32 peer_mpdu_density
; /* 0..16 */
6188 __le32 peer_rate_caps
;
6189 struct wmi_rate_set peer_legacy_rates
;
6190 struct wmi_rate_set peer_ht_rates
;
6191 __le32 peer_nss
; /* num of spatial streams */
6192 __le32 peer_vht_caps
;
6193 __le32 peer_phymode
;
6194 struct wmi_vht_rate_set peer_vht_rates
;
6197 struct wmi_main_peer_assoc_complete_cmd
{
6198 struct wmi_common_peer_assoc_complete_cmd cmd
;
6200 /* HT Operation Element of the peer. Five bytes packed in 2
6201 * INT32 array and filled from lsb to msb.
6203 __le32 peer_ht_info
[2];
6206 struct wmi_10_1_peer_assoc_complete_cmd
{
6207 struct wmi_common_peer_assoc_complete_cmd cmd
;
6210 #define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_LSB 0
6211 #define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_MASK 0x0f
6212 #define WMI_PEER_ASSOC_INFO0_MAX_NSS_LSB 4
6213 #define WMI_PEER_ASSOC_INFO0_MAX_NSS_MASK 0xf0
6215 struct wmi_10_2_peer_assoc_complete_cmd
{
6216 struct wmi_common_peer_assoc_complete_cmd cmd
;
6217 __le32 info0
; /* WMI_PEER_ASSOC_INFO0_ */
6220 #define PEER_BW_RXNSS_OVERRIDE_OFFSET 31
6222 struct wmi_10_4_peer_assoc_complete_cmd
{
6223 struct wmi_10_2_peer_assoc_complete_cmd cmd
;
6224 __le32 peer_bw_rxnss_override
;
6227 struct wmi_peer_assoc_complete_arg
{
6232 u32 peer_flags
; /* see %WMI_PEER_ */
6234 u32 peer_listen_intval
;
6237 u32 peer_mpdu_density
; /* 0..16 */
6238 u32 peer_rate_caps
; /* see %WMI_RC_ */
6239 struct wmi_rate_set_arg peer_legacy_rates
;
6240 struct wmi_rate_set_arg peer_ht_rates
;
6241 u32 peer_num_spatial_streams
;
6243 enum wmi_phy_mode peer_phymode
;
6244 struct wmi_vht_rate_set_arg peer_vht_rates
;
6245 u32 peer_bw_rxnss_override
;
6248 struct wmi_peer_add_wds_entry_cmd
{
6249 /* peer MAC address */
6250 struct wmi_mac_addr peer_macaddr
;
6252 struct wmi_mac_addr wds_macaddr
;
6255 struct wmi_peer_remove_wds_entry_cmd
{
6257 struct wmi_mac_addr wds_macaddr
;
6260 struct wmi_peer_q_empty_callback_event
{
6261 /* peer MAC address */
6262 struct wmi_mac_addr peer_macaddr
;
6266 * Channel info WMI event
6268 struct wmi_chan_info_event
{
6273 __le32 rx_clear_count
;
6277 struct wmi_10_4_chan_info_event
{
6282 __le32 rx_clear_count
;
6284 __le32 chan_tx_pwr_range
;
6285 __le32 chan_tx_pwr_tp
;
6286 __le32 rx_frame_count
;
6289 struct wmi_peer_sta_kickout_event
{
6290 struct wmi_mac_addr peer_macaddr
;
6293 #define WMI_CHAN_INFO_FLAG_COMPLETE BIT(0)
6294 #define WMI_CHAN_INFO_FLAG_PRE_COMPLETE BIT(1)
6296 /* Beacon filter wmi command info */
6297 #define BCN_FLT_MAX_SUPPORTED_IES 256
6298 #define BCN_FLT_MAX_ELEMS_IE_LIST (BCN_FLT_MAX_SUPPORTED_IES / 32)
6300 struct bss_bcn_stats
{
6302 __le32 bss_bcnsdropped
;
6303 __le32 bss_bcnsdelivered
;
6306 struct bcn_filter_stats
{
6307 __le32 bcns_dropped
;
6308 __le32 bcns_delivered
;
6309 __le32 activefilters
;
6310 struct bss_bcn_stats bss_stats
;
6313 struct wmi_add_bcn_filter_cmd
{
6315 u32 ie_map
[BCN_FLT_MAX_ELEMS_IE_LIST
];
6318 enum wmi_sta_keepalive_method
{
6319 WMI_STA_KEEPALIVE_METHOD_NULL_FRAME
= 1,
6320 WMI_STA_KEEPALIVE_METHOD_UNSOLICITATED_ARP_RESPONSE
= 2,
6323 #define WMI_STA_KEEPALIVE_INTERVAL_DISABLE 0
6325 /* Firmware crashes if keepalive interval exceeds this limit */
6326 #define WMI_STA_KEEPALIVE_INTERVAL_MAX_SECONDS 0xffff
6328 /* note: ip4 addresses are in network byte order, i.e. big endian */
6329 struct wmi_sta_keepalive_arp_resp
{
6330 __be32 src_ip4_addr
;
6331 __be32 dest_ip4_addr
;
6332 struct wmi_mac_addr dest_mac_addr
;
6335 struct wmi_sta_keepalive_cmd
{
6338 __le32 method
; /* WMI_STA_KEEPALIVE_METHOD_ */
6339 __le32 interval
; /* in seconds */
6340 struct wmi_sta_keepalive_arp_resp arp_resp
;
6343 struct wmi_sta_keepalive_arg
{
6348 __be32 src_ip4_addr
;
6349 __be32 dest_ip4_addr
;
6350 const u8 dest_mac_addr
[ETH_ALEN
];
6353 enum wmi_force_fw_hang_type
{
6354 WMI_FORCE_FW_HANG_ASSERT
= 1,
6355 WMI_FORCE_FW_HANG_NO_DETECT
,
6356 WMI_FORCE_FW_HANG_CTRL_EP_FULL
,
6357 WMI_FORCE_FW_HANG_EMPTY_POINT
,
6358 WMI_FORCE_FW_HANG_STACK_OVERFLOW
,
6359 WMI_FORCE_FW_HANG_INFINITE_LOOP
,
6362 #define WMI_FORCE_FW_HANG_RANDOM_TIME 0xFFFFFFFF
6364 struct wmi_force_fw_hang_cmd
{
6369 enum ath10k_dbglog_level
{
6370 ATH10K_DBGLOG_LEVEL_VERBOSE
= 0,
6371 ATH10K_DBGLOG_LEVEL_INFO
= 1,
6372 ATH10K_DBGLOG_LEVEL_WARN
= 2,
6373 ATH10K_DBGLOG_LEVEL_ERR
= 3,
6376 /* VAP ids to enable dbglog */
6377 #define ATH10K_DBGLOG_CFG_VAP_LOG_LSB 0
6378 #define ATH10K_DBGLOG_CFG_VAP_LOG_MASK 0x0000ffff
6380 /* to enable dbglog in the firmware */
6381 #define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_LSB 16
6382 #define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_MASK 0x00010000
6384 /* timestamp resolution */
6385 #define ATH10K_DBGLOG_CFG_RESOLUTION_LSB 17
6386 #define ATH10K_DBGLOG_CFG_RESOLUTION_MASK 0x000E0000
6388 /* number of queued messages before sending them to the host */
6389 #define ATH10K_DBGLOG_CFG_REPORT_SIZE_LSB 20
6390 #define ATH10K_DBGLOG_CFG_REPORT_SIZE_MASK 0x0ff00000
6393 * Log levels to enable. This defines the minimum level to enable, this is
6394 * not a bitmask. See enum ath10k_dbglog_level for the values.
6396 #define ATH10K_DBGLOG_CFG_LOG_LVL_LSB 28
6397 #define ATH10K_DBGLOG_CFG_LOG_LVL_MASK 0x70000000
6400 * Note: this is a cleaned up version of a struct firmware uses. For
6401 * example, config_valid was hidden inside an array.
6403 struct wmi_dbglog_cfg_cmd
{
6404 /* bitmask to hold mod id config*/
6405 __le32 module_enable
;
6407 /* see ATH10K_DBGLOG_CFG_ */
6408 __le32 config_enable
;
6410 /* mask of module id bits to be changed */
6411 __le32 module_valid
;
6413 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
6414 __le32 config_valid
;
6417 struct wmi_10_4_dbglog_cfg_cmd
{
6418 /* bitmask to hold mod id config*/
6419 __le64 module_enable
;
6421 /* see ATH10K_DBGLOG_CFG_ */
6422 __le32 config_enable
;
6424 /* mask of module id bits to be changed */
6425 __le64 module_valid
;
6427 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
6428 __le32 config_valid
;
6431 enum wmi_roam_reason
{
6432 WMI_ROAM_REASON_BETTER_AP
= 1,
6433 WMI_ROAM_REASON_BEACON_MISS
= 2,
6434 WMI_ROAM_REASON_LOW_RSSI
= 3,
6435 WMI_ROAM_REASON_SUITABLE_AP_FOUND
= 4,
6436 WMI_ROAM_REASON_HO_FAILED
= 5,
6439 WMI_ROAM_REASON_MAX
,
6442 struct wmi_roam_ev
{
6447 #define ATH10K_FRAGMT_THRESHOLD_MIN 540
6448 #define ATH10K_FRAGMT_THRESHOLD_MAX 2346
6450 #define WMI_MAX_EVENT 0x1000
6451 /* Maximum number of pending TXed WMI packets */
6452 #define WMI_SKB_HEADROOM sizeof(struct wmi_cmd_hdr)
6454 /* By default disable power save for IBSS */
6455 #define ATH10K_DEFAULT_ATIM 0
6457 #define WMI_MAX_MEM_REQS 16
6459 struct wmi_scan_ev_arg
{
6460 __le32 event_type
; /* %WMI_SCAN_EVENT_ */
6461 __le32 reason
; /* %WMI_SCAN_REASON_ */
6462 __le32 channel_freq
; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
6468 struct wmi_mgmt_rx_ev_arg
{
6474 __le32 status
; /* %WMI_RX_STATUS_ */
6475 struct wmi_mgmt_rx_ext_info ext_info
;
6478 struct wmi_ch_info_ev_arg
{
6483 __le32 rx_clear_count
;
6485 __le32 chan_tx_pwr_range
;
6486 __le32 chan_tx_pwr_tp
;
6487 __le32 rx_frame_count
;
6490 struct wmi_vdev_start_ev_arg
{
6493 __le32 resp_type
; /* %WMI_VDEV_RESP_ */
6497 struct wmi_peer_kick_ev_arg
{
6501 struct wmi_swba_ev_arg
{
6503 struct wmi_tim_info_arg tim_info
[WMI_MAX_AP_VDEV
];
6504 const struct wmi_p2p_noa_info
*noa_info
[WMI_MAX_AP_VDEV
];
6507 struct wmi_phyerr_ev_arg
{
6520 struct wmi_phyerr_hdr_arg
{
6525 const void *phyerrs
;
6528 struct wmi_svc_rdy_ev_arg
{
6529 __le32 min_tx_power
;
6530 __le32 max_tx_power
;
6537 __le32 num_rf_chains
;
6539 __le32 num_mem_reqs
;
6540 __le32 low_5ghz_chan
;
6541 __le32 high_5ghz_chan
;
6542 const __le32
*service_map
;
6543 size_t service_map_len
;
6544 const struct wlan_host_mem_req
*mem_reqs
[WMI_MAX_MEM_REQS
];
6547 struct wmi_rdy_ev_arg
{
6554 struct wmi_roam_ev_arg
{
6560 struct wmi_echo_ev_arg
{
6564 struct wmi_pdev_temperature_event
{
6565 /* temperature value in Celcius degree */
6569 struct wmi_pdev_bss_chan_info_event
{
6576 __le64 cycle_rx_bss
;
6580 /* WOW structures */
6581 enum wmi_wow_wakeup_event
{
6582 WOW_BMISS_EVENT
= 0,
6583 WOW_BETTER_AP_EVENT
,
6584 WOW_DEAUTH_RECVD_EVENT
,
6585 WOW_MAGIC_PKT_RECVD_EVENT
,
6587 WOW_FOURWAY_HSHAKE_EVENT
,
6588 WOW_EAPOL_RECVD_EVENT
,
6589 WOW_NLO_DETECTED_EVENT
,
6590 WOW_DISASSOC_RECVD_EVENT
,
6591 WOW_PATTERN_MATCH_EVENT
,
6593 WOW_PROBE_REQ_WPS_IE_EVENT
,
6595 WOW_ASSOC_REQ_EVENT
,
6598 WOW_HOST_AUTO_SHUTDOWN_EVENT
,
6599 WOW_IOAC_MAGIC_EVENT
,
6600 WOW_IOAC_SHORT_EVENT
,
6601 WOW_IOAC_EXTEND_EVENT
,
6602 WOW_IOAC_TIMER_EVENT
,
6603 WOW_DFS_PHYERR_RADAR_EVENT
,
6605 WOW_CLIENT_KICKOUT_EVENT
,
6609 #define C2S(x) case x: return #x
6611 static inline const char *wow_wakeup_event(enum wmi_wow_wakeup_event ev
)
6614 C2S(WOW_BMISS_EVENT
);
6615 C2S(WOW_BETTER_AP_EVENT
);
6616 C2S(WOW_DEAUTH_RECVD_EVENT
);
6617 C2S(WOW_MAGIC_PKT_RECVD_EVENT
);
6618 C2S(WOW_GTK_ERR_EVENT
);
6619 C2S(WOW_FOURWAY_HSHAKE_EVENT
);
6620 C2S(WOW_EAPOL_RECVD_EVENT
);
6621 C2S(WOW_NLO_DETECTED_EVENT
);
6622 C2S(WOW_DISASSOC_RECVD_EVENT
);
6623 C2S(WOW_PATTERN_MATCH_EVENT
);
6624 C2S(WOW_CSA_IE_EVENT
);
6625 C2S(WOW_PROBE_REQ_WPS_IE_EVENT
);
6626 C2S(WOW_AUTH_REQ_EVENT
);
6627 C2S(WOW_ASSOC_REQ_EVENT
);
6629 C2S(WOW_RA_MATCH_EVENT
);
6630 C2S(WOW_HOST_AUTO_SHUTDOWN_EVENT
);
6631 C2S(WOW_IOAC_MAGIC_EVENT
);
6632 C2S(WOW_IOAC_SHORT_EVENT
);
6633 C2S(WOW_IOAC_EXTEND_EVENT
);
6634 C2S(WOW_IOAC_TIMER_EVENT
);
6635 C2S(WOW_DFS_PHYERR_RADAR_EVENT
);
6636 C2S(WOW_BEACON_EVENT
);
6637 C2S(WOW_CLIENT_KICKOUT_EVENT
);
6644 enum wmi_wow_wake_reason
{
6645 WOW_REASON_UNSPECIFIED
= -1,
6646 WOW_REASON_NLOD
= 0,
6647 WOW_REASON_AP_ASSOC_LOST
,
6648 WOW_REASON_LOW_RSSI
,
6649 WOW_REASON_DEAUTH_RECVD
,
6650 WOW_REASON_DISASSOC_RECVD
,
6651 WOW_REASON_GTK_HS_ERR
,
6653 WOW_REASON_FOURWAY_HS_RECV
,
6654 WOW_REASON_TIMER_INTR_RECV
,
6655 WOW_REASON_PATTERN_MATCH_FOUND
,
6656 WOW_REASON_RECV_MAGIC_PATTERN
,
6657 WOW_REASON_P2P_DISC
,
6659 WOW_REASON_CSA_EVENT
,
6660 WOW_REASON_PROBE_REQ_WPS_IE_RECV
,
6661 WOW_REASON_AUTH_REQ_RECV
,
6662 WOW_REASON_ASSOC_REQ_RECV
,
6663 WOW_REASON_HTT_EVENT
,
6664 WOW_REASON_RA_MATCH
,
6665 WOW_REASON_HOST_AUTO_SHUTDOWN
,
6666 WOW_REASON_IOAC_MAGIC_EVENT
,
6667 WOW_REASON_IOAC_SHORT_EVENT
,
6668 WOW_REASON_IOAC_EXTEND_EVENT
,
6669 WOW_REASON_IOAC_TIMER_EVENT
,
6671 WOW_REASON_DFS_PHYERR_RADADR_EVENT
,
6672 WOW_REASON_BEACON_RECV
,
6673 WOW_REASON_CLIENT_KICKOUT_EVENT
,
6674 WOW_REASON_DEBUG_TEST
= 0xFF,
6677 static inline const char *wow_reason(enum wmi_wow_wake_reason reason
)
6680 C2S(WOW_REASON_UNSPECIFIED
);
6681 C2S(WOW_REASON_NLOD
);
6682 C2S(WOW_REASON_AP_ASSOC_LOST
);
6683 C2S(WOW_REASON_LOW_RSSI
);
6684 C2S(WOW_REASON_DEAUTH_RECVD
);
6685 C2S(WOW_REASON_DISASSOC_RECVD
);
6686 C2S(WOW_REASON_GTK_HS_ERR
);
6687 C2S(WOW_REASON_EAP_REQ
);
6688 C2S(WOW_REASON_FOURWAY_HS_RECV
);
6689 C2S(WOW_REASON_TIMER_INTR_RECV
);
6690 C2S(WOW_REASON_PATTERN_MATCH_FOUND
);
6691 C2S(WOW_REASON_RECV_MAGIC_PATTERN
);
6692 C2S(WOW_REASON_P2P_DISC
);
6693 C2S(WOW_REASON_WLAN_HB
);
6694 C2S(WOW_REASON_CSA_EVENT
);
6695 C2S(WOW_REASON_PROBE_REQ_WPS_IE_RECV
);
6696 C2S(WOW_REASON_AUTH_REQ_RECV
);
6697 C2S(WOW_REASON_ASSOC_REQ_RECV
);
6698 C2S(WOW_REASON_HTT_EVENT
);
6699 C2S(WOW_REASON_RA_MATCH
);
6700 C2S(WOW_REASON_HOST_AUTO_SHUTDOWN
);
6701 C2S(WOW_REASON_IOAC_MAGIC_EVENT
);
6702 C2S(WOW_REASON_IOAC_SHORT_EVENT
);
6703 C2S(WOW_REASON_IOAC_EXTEND_EVENT
);
6704 C2S(WOW_REASON_IOAC_TIMER_EVENT
);
6705 C2S(WOW_REASON_ROAM_HO
);
6706 C2S(WOW_REASON_DFS_PHYERR_RADADR_EVENT
);
6707 C2S(WOW_REASON_BEACON_RECV
);
6708 C2S(WOW_REASON_CLIENT_KICKOUT_EVENT
);
6709 C2S(WOW_REASON_DEBUG_TEST
);
6717 struct wmi_wow_ev_arg
{
6720 enum wmi_wow_wake_reason wake_reason
;
6724 #define WOW_MIN_PATTERN_SIZE 1
6725 #define WOW_MAX_PATTERN_SIZE 148
6726 #define WOW_MAX_PKT_OFFSET 128
6728 enum wmi_tdls_state
{
6730 WMI_TDLS_ENABLE_PASSIVE
,
6731 WMI_TDLS_ENABLE_ACTIVE
,
6734 enum wmi_tdls_peer_state
{
6735 WMI_TDLS_PEER_STATE_PEERING
,
6736 WMI_TDLS_PEER_STATE_CONNECTED
,
6737 WMI_TDLS_PEER_STATE_TEARDOWN
,
6740 struct wmi_tdls_peer_update_cmd_arg
{
6742 enum wmi_tdls_peer_state peer_state
;
6746 #define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32
6748 #define WMI_TDLS_PEER_SP_MASK 0x60
6749 #define WMI_TDLS_PEER_SP_LSB 5
6751 enum wmi_tdls_options
{
6752 WMI_TDLS_OFFCHAN_EN
= BIT(0),
6753 WMI_TDLS_BUFFER_STA_EN
= BIT(1),
6754 WMI_TDLS_SLEEP_STA_EN
= BIT(2),
6758 WMI_TDLS_PEER_QOS_AC_VO
= BIT(0),
6759 WMI_TDLS_PEER_QOS_AC_VI
= BIT(1),
6760 WMI_TDLS_PEER_QOS_AC_BK
= BIT(2),
6761 WMI_TDLS_PEER_QOS_AC_BE
= BIT(3),
6764 struct wmi_tdls_peer_capab_arg
{
6765 u8 peer_uapsd_queues
;
6767 u32 buff_sta_support
;
6768 u32 off_chan_support
;
6769 u32 peer_curr_operclass
;
6770 u32 self_curr_operclass
;
6772 u32 peer_operclass_len
;
6773 u8 peer_operclass
[WMI_TDLS_MAX_SUPP_OPER_CLASSES
];
6774 u32 is_peer_responder
;
6775 u32 pref_offchan_num
;
6776 u32 pref_offchan_bw
;
6779 struct wmi_10_4_tdls_set_state_cmd
{
6782 __le32 notification_interval_ms
;
6783 __le32 tx_discovery_threshold
;
6784 __le32 tx_teardown_threshold
;
6785 __le32 rssi_teardown_threshold
;
6787 __le32 tdls_options
;
6788 __le32 tdls_peer_traffic_ind_window
;
6789 __le32 tdls_peer_traffic_response_timeout_ms
;
6790 __le32 tdls_puapsd_mask
;
6791 __le32 tdls_puapsd_inactivity_time_ms
;
6792 __le32 tdls_puapsd_rx_frame_threshold
;
6793 __le32 teardown_notification_ms
;
6794 __le32 tdls_peer_kickout_threshold
;
6797 struct wmi_tdls_peer_capabilities
{
6799 __le32 buff_sta_support
;
6800 __le32 off_chan_support
;
6801 __le32 peer_curr_operclass
;
6802 __le32 self_curr_operclass
;
6803 __le32 peer_chan_len
;
6804 __le32 peer_operclass_len
;
6805 u8 peer_operclass
[WMI_TDLS_MAX_SUPP_OPER_CLASSES
];
6806 __le32 is_peer_responder
;
6807 __le32 pref_offchan_num
;
6808 __le32 pref_offchan_bw
;
6809 struct wmi_channel peer_chan_list
[1];
6812 struct wmi_10_4_tdls_peer_update_cmd
{
6814 struct wmi_mac_addr peer_macaddr
;
6817 struct wmi_tdls_peer_capabilities peer_capab
;
6820 enum wmi_tdls_peer_reason
{
6821 WMI_TDLS_TEARDOWN_REASON_TX
,
6822 WMI_TDLS_TEARDOWN_REASON_RSSI
,
6823 WMI_TDLS_TEARDOWN_REASON_SCAN
,
6824 WMI_TDLS_DISCONNECTED_REASON_PEER_DELETE
,
6825 WMI_TDLS_TEARDOWN_REASON_PTR_TIMEOUT
,
6826 WMI_TDLS_TEARDOWN_REASON_BAD_PTR
,
6827 WMI_TDLS_TEARDOWN_REASON_NO_RESPONSE
,
6828 WMI_TDLS_ENTER_BUF_STA
,
6829 WMI_TDLS_EXIT_BUF_STA
,
6830 WMI_TDLS_ENTER_BT_BUSY_MODE
,
6831 WMI_TDLS_EXIT_BT_BUSY_MODE
,
6832 WMI_TDLS_SCAN_STARTED_EVENT
,
6833 WMI_TDLS_SCAN_COMPLETED_EVENT
,
6836 enum wmi_tdls_peer_notification
{
6837 WMI_TDLS_SHOULD_DISCOVER
,
6838 WMI_TDLS_SHOULD_TEARDOWN
,
6839 WMI_TDLS_PEER_DISCONNECTED
,
6840 WMI_TDLS_CONNECTION_TRACKER_NOTIFICATION
,
6843 struct wmi_tdls_peer_event
{
6844 struct wmi_mac_addr peer_macaddr
;
6845 /* see enum wmi_tdls_peer_notification*/
6847 /* see enum wmi_tdls_peer_reason */
6852 enum wmi_txbf_conf
{
6853 WMI_TXBF_CONF_UNSUPPORTED
,
6854 WMI_TXBF_CONF_BEFORE_ASSOC
,
6855 WMI_TXBF_CONF_AFTER_ASSOC
,
6858 #define WMI_CCA_DETECT_LEVEL_AUTO 0
6859 #define WMI_CCA_DETECT_MARGIN_AUTO 0
6861 struct wmi_pdev_set_adaptive_cca_params
{
6863 __le32 cca_detect_level
;
6864 __le32 cca_detect_margin
;
6867 enum wmi_host_platform_type
{
6868 WMI_HOST_PLATFORM_HIGH_PERF
,
6869 WMI_HOST_PLATFORM_LOW_PERF
,
6872 enum wmi_bss_survey_req_type
{
6873 WMI_BSS_SURVEY_REQ_TYPE_READ
= 1,
6874 WMI_BSS_SURVEY_REQ_TYPE_READ_CLEAR
,
6877 struct wmi_pdev_chan_info_req_cmd
{
6884 struct ath10k_fw_stats_pdev
;
6885 struct ath10k_fw_stats_peer
;
6886 struct ath10k_fw_stats
;
6888 int ath10k_wmi_attach(struct ath10k
*ar
);
6889 void ath10k_wmi_detach(struct ath10k
*ar
);
6890 void ath10k_wmi_free_host_mem(struct ath10k
*ar
);
6891 int ath10k_wmi_wait_for_service_ready(struct ath10k
*ar
);
6892 int ath10k_wmi_wait_for_unified_ready(struct ath10k
*ar
);
6894 struct sk_buff
*ath10k_wmi_alloc_skb(struct ath10k
*ar
, u32 len
);
6895 int ath10k_wmi_connect(struct ath10k
*ar
);
6897 struct sk_buff
*ath10k_wmi_alloc_skb(struct ath10k
*ar
, u32 len
);
6898 int ath10k_wmi_cmd_send(struct ath10k
*ar
, struct sk_buff
*skb
, u32 cmd_id
);
6899 int ath10k_wmi_cmd_send_nowait(struct ath10k
*ar
, struct sk_buff
*skb
,
6901 void ath10k_wmi_start_scan_init(struct ath10k
*ar
, struct wmi_start_scan_arg
*arg
);
6903 void ath10k_wmi_pull_pdev_stats_base(const struct wmi_pdev_stats_base
*src
,
6904 struct ath10k_fw_stats_pdev
*dst
);
6905 void ath10k_wmi_pull_pdev_stats_tx(const struct wmi_pdev_stats_tx
*src
,
6906 struct ath10k_fw_stats_pdev
*dst
);
6907 void ath10k_wmi_pull_pdev_stats_rx(const struct wmi_pdev_stats_rx
*src
,
6908 struct ath10k_fw_stats_pdev
*dst
);
6909 void ath10k_wmi_pull_pdev_stats_extra(const struct wmi_pdev_stats_extra
*src
,
6910 struct ath10k_fw_stats_pdev
*dst
);
6911 void ath10k_wmi_pull_peer_stats(const struct wmi_peer_stats
*src
,
6912 struct ath10k_fw_stats_peer
*dst
);
6913 void ath10k_wmi_put_host_mem_chunks(struct ath10k
*ar
,
6914 struct wmi_host_mem_chunks
*chunks
);
6915 void ath10k_wmi_put_start_scan_common(struct wmi_start_scan_common
*cmn
,
6916 const struct wmi_start_scan_arg
*arg
);
6917 void ath10k_wmi_set_wmm_param(struct wmi_wmm_params
*params
,
6918 const struct wmi_wmm_params_arg
*arg
);
6919 void ath10k_wmi_put_wmi_channel(struct wmi_channel
*ch
,
6920 const struct wmi_channel_arg
*arg
);
6921 int ath10k_wmi_start_scan_verify(const struct wmi_start_scan_arg
*arg
);
6923 int ath10k_wmi_event_scan(struct ath10k
*ar
, struct sk_buff
*skb
);
6924 int ath10k_wmi_event_mgmt_rx(struct ath10k
*ar
, struct sk_buff
*skb
);
6925 void ath10k_wmi_event_chan_info(struct ath10k
*ar
, struct sk_buff
*skb
);
6926 void ath10k_wmi_event_echo(struct ath10k
*ar
, struct sk_buff
*skb
);
6927 int ath10k_wmi_event_debug_mesg(struct ath10k
*ar
, struct sk_buff
*skb
);
6928 void ath10k_wmi_event_update_stats(struct ath10k
*ar
, struct sk_buff
*skb
);
6929 void ath10k_wmi_event_vdev_start_resp(struct ath10k
*ar
, struct sk_buff
*skb
);
6930 void ath10k_wmi_event_vdev_stopped(struct ath10k
*ar
, struct sk_buff
*skb
);
6931 void ath10k_wmi_event_peer_sta_kickout(struct ath10k
*ar
, struct sk_buff
*skb
);
6932 void ath10k_wmi_event_host_swba(struct ath10k
*ar
, struct sk_buff
*skb
);
6933 void ath10k_wmi_event_tbttoffset_update(struct ath10k
*ar
, struct sk_buff
*skb
);
6934 void ath10k_wmi_event_dfs(struct ath10k
*ar
,
6935 struct wmi_phyerr_ev_arg
*phyerr
, u64 tsf
);
6936 void ath10k_wmi_event_spectral_scan(struct ath10k
*ar
,
6937 struct wmi_phyerr_ev_arg
*phyerr
,
6939 void ath10k_wmi_event_phyerr(struct ath10k
*ar
, struct sk_buff
*skb
);
6940 void ath10k_wmi_event_roam(struct ath10k
*ar
, struct sk_buff
*skb
);
6941 void ath10k_wmi_event_profile_match(struct ath10k
*ar
, struct sk_buff
*skb
);
6942 void ath10k_wmi_event_debug_print(struct ath10k
*ar
, struct sk_buff
*skb
);
6943 void ath10k_wmi_event_pdev_qvit(struct ath10k
*ar
, struct sk_buff
*skb
);
6944 void ath10k_wmi_event_wlan_profile_data(struct ath10k
*ar
, struct sk_buff
*skb
);
6945 void ath10k_wmi_event_rtt_measurement_report(struct ath10k
*ar
,
6946 struct sk_buff
*skb
);
6947 void ath10k_wmi_event_tsf_measurement_report(struct ath10k
*ar
,
6948 struct sk_buff
*skb
);
6949 void ath10k_wmi_event_rtt_error_report(struct ath10k
*ar
, struct sk_buff
*skb
);
6950 void ath10k_wmi_event_wow_wakeup_host(struct ath10k
*ar
, struct sk_buff
*skb
);
6951 void ath10k_wmi_event_dcs_interference(struct ath10k
*ar
, struct sk_buff
*skb
);
6952 void ath10k_wmi_event_pdev_tpc_config(struct ath10k
*ar
, struct sk_buff
*skb
);
6953 void ath10k_wmi_event_pdev_ftm_intg(struct ath10k
*ar
, struct sk_buff
*skb
);
6954 void ath10k_wmi_event_gtk_offload_status(struct ath10k
*ar
,
6955 struct sk_buff
*skb
);
6956 void ath10k_wmi_event_gtk_rekey_fail(struct ath10k
*ar
, struct sk_buff
*skb
);
6957 void ath10k_wmi_event_delba_complete(struct ath10k
*ar
, struct sk_buff
*skb
);
6958 void ath10k_wmi_event_addba_complete(struct ath10k
*ar
, struct sk_buff
*skb
);
6959 void ath10k_wmi_event_vdev_install_key_complete(struct ath10k
*ar
,
6960 struct sk_buff
*skb
);
6961 void ath10k_wmi_event_inst_rssi_stats(struct ath10k
*ar
, struct sk_buff
*skb
);
6962 void ath10k_wmi_event_vdev_standby_req(struct ath10k
*ar
, struct sk_buff
*skb
);
6963 void ath10k_wmi_event_vdev_resume_req(struct ath10k
*ar
, struct sk_buff
*skb
);
6964 void ath10k_wmi_event_service_ready(struct ath10k
*ar
, struct sk_buff
*skb
);
6965 int ath10k_wmi_event_ready(struct ath10k
*ar
, struct sk_buff
*skb
);
6966 int ath10k_wmi_op_pull_phyerr_ev(struct ath10k
*ar
, const void *phyerr_buf
,
6967 int left_len
, struct wmi_phyerr_ev_arg
*arg
);
6968 void ath10k_wmi_main_op_fw_stats_fill(struct ath10k
*ar
,
6969 struct ath10k_fw_stats
*fw_stats
,
6971 void ath10k_wmi_10x_op_fw_stats_fill(struct ath10k
*ar
,
6972 struct ath10k_fw_stats
*fw_stats
,
6974 size_t ath10k_wmi_fw_stats_num_peers(struct list_head
*head
);
6975 size_t ath10k_wmi_fw_stats_num_vdevs(struct list_head
*head
);
6976 void ath10k_wmi_10_4_op_fw_stats_fill(struct ath10k
*ar
,
6977 struct ath10k_fw_stats
*fw_stats
,
6979 int ath10k_wmi_op_get_vdev_subtype(struct ath10k
*ar
,
6980 enum wmi_vdev_subtype subtype
);
6981 int ath10k_wmi_barrier(struct ath10k
*ar
);
6983 #endif /* _WMI_H_ */