xref: /wlan-dirver/qca-wifi-host-cmn/wmi/inc/wmi_unified_api.h (revision 87a8e4458319c60b618522e263ed900e36aab528)
1 /*
2  * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /*
20  * This file contains the API definitions for the Unified Wireless Module
21  * Interface (WMI).
22  */
23 
24 #ifndef _WMI_UNIFIED_API_H_
25 #define _WMI_UNIFIED_API_H_
26 
27 #include <osdep.h>
28 #ifdef CONFIG_MCL
29 #include "wmi.h"
30 #endif
31 #include "htc_api.h"
32 #include "wmi_unified_param.h"
33 #include "service_ready_param.h"
34 #include "wlan_objmgr_psoc_obj.h"
35 #include "wlan_mgmt_txrx_utils_api.h"
36 #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
37 #include "wmi_unified_pmo_api.h"
38 #endif
39 #ifdef CONVERGED_P2P_ENABLE
40 #include "wlan_p2p_public_struct.h"
41 #endif
42 #include "wlan_scan_public_structs.h"
43 #ifdef WLAN_FEATURE_DISA
44 #include "wlan_disa_public_struct.h"
45 #endif
46 #ifdef WLAN_FEATURE_ACTION_OUI
47 #include "wlan_action_oui_public_struct.h"
48 #endif
49 #ifdef WLAN_FEATURE_NAN_CONVERGENCE
50 #include "nan_public_structs.h"
51 #endif
52 #ifdef WLAN_SUPPORT_GREEN_AP
53 #include "wlan_green_ap_api.h"
54 #endif
55 #ifdef WLAN_FEATURE_DSRC
56 #include "wlan_ocb_public_structs.h"
57 #endif
58 #ifdef WLAN_SUPPORT_TWT
59 #include "wmi_unified_twt_param.h"
60 #include "wmi_unified_twt_api.h"
61 #endif
62 
63 #ifdef FEATURE_WLAN_EXTSCAN
64 #include "wmi_unified_extscan_api.h"
65 #endif
66 
67 #ifdef IPA_OFFLOAD
68 #include "wlan_ipa_public_struct.h"
69 #endif
70 
71 typedef qdf_nbuf_t wmi_buf_t;
72 #define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
73 
74 #define WMI_LOGD(args ...) \
75 	QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
76 #define WMI_LOGI(args ...) \
77 	QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
78 #define WMI_LOGW(args ...) \
79 	QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
80 #define WMI_LOGE(args ...) \
81 	QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
82 #define WMI_LOGP(args ...) \
83 	QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
84 
85 
86 
87 #define PHYERROR_MAX_BUFFER_LENGTH 0x7F000000
88 
89 struct wmi_soc;
90 struct policy_mgr_dual_mac_config;
91 /**
92  * struct wmi_ops - service callbacks to upper layer
93  * @service_ready_cbk: service ready callback
94  * @service_ready_ext_cbk: service ready ext callback
95  * @ready_cbk: ready calback
96  * @wma_process_fw_event_handler_cbk: generic event handler callback
97  */
98 struct wmi_rx_ops {
99 
100 	int (*wma_process_fw_event_handler_cbk)(void *ctx,
101 				  void *ev, uint8_t rx_ctx);
102 };
103 
104 /**
105  * enum wmi_target_type - type of supported wmi command
106  * @WMI_TLV_TARGET: tlv based target
107  * @WMI_NON_TLV_TARGET: non-tlv based target
108  *
109  */
110 enum wmi_target_type {
111 	WMI_TLV_TARGET,
112 	WMI_NON_TLV_TARGET,
113 	WMI_MAX_TARGET_TYPE
114 };
115 
116 /**
117  * enum wmi_rx_exec_ctx - wmi rx execution context
118  * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
119  * @WMI_RX_UMAC_CTX: execution context provided by umac layer
120  *
121  */
122 enum wmi_rx_exec_ctx {
123 	WMI_RX_WORK_CTX,
124 	WMI_RX_UMAC_CTX
125 };
126 
127 /**
128  * struct wmi_unified_attach_params - wmi init parameters
129  *  @param osdev            : NIC device
130  *  @param target_type      : type of supported wmi command
131  *  @param use_cookie       : flag to indicate cookie based allocation
132  *  @param ops              : handle to wmi ops
133  *  @psoc                   : objmgr psoc
134  *  @max_commands           : max commands
135  */
136 struct wmi_unified_attach_params {
137 	osdev_t osdev;
138 	enum wmi_target_type target_type;
139 	bool use_cookie;
140 	struct wmi_rx_ops *rx_ops;
141 	struct wlan_objmgr_psoc *psoc;
142 	uint16_t max_commands;
143 	uint32_t soc_id;
144 };
145 
146 /**
147  * attach for unified WMI
148  *
149  *  @param scn_handle      : handle to SCN.
150  *  @param params          : attach params for WMI
151  *
152  */
153 void *wmi_unified_attach(void *scn_handle,
154 			 struct wmi_unified_attach_params *params);
155 
156 
157 
158 /**
159  * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
160  *
161  * @wmi_handle: wmi handle
162  * @cmd: mgmt command
163  * @header: pointer to 802.11 header
164  * @vdev_id: vdev id
165  * @chanfreq: channel frequency
166  *
167  * Return: none
168  */
169 void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
170 			void *header, uint32_t vdev_id, uint32_t chanfreq);
171 
172 /**
173  * detach for unified WMI
174  *
175  *  @param wmi_handle      : handle to WMI.
176  *  @return void.
177  */
178 void wmi_unified_detach(struct wmi_unified *wmi_handle);
179 
180 /**
181  * API to sync time between host and firmware
182  *
183  *  @param wmi_handle      : handle to WMI.
184  *  @return void.
185  */
186 void wmi_send_time_stamp_sync_cmd_tlv(void *wmi_hdl);
187 
188 void
189 wmi_unified_remove_work(struct wmi_unified *wmi_handle);
190 
191 /**
192  * generic function to allocate WMI buffer
193  *
194  *  @param wmi_handle      : handle to WMI.
195  *  @param len             : length of the buffer
196  *  @return wmi_buf_t.
197  */
198 #ifdef NBUF_MEMORY_DEBUG
199 #define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
200 wmi_buf_t
201 wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint32_t len,
202 		    uint8_t *file_name, uint32_t line_num);
203 #else
204 wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint32_t len);
205 #endif
206 
207 /**
208  * generic function frees WMI net buffer
209  *
210  *  @param net_buf : Pointer ot net_buf to be freed
211  */
212 void wmi_buf_free(wmi_buf_t net_buf);
213 
214 /**
215  * generic function to send unified WMI command
216  *
217  *  @param wmi_handle      : handle to WMI.
218  *  @param buf             : wmi command buffer
219  *  @param buflen          : wmi command buffer length
220  *  @param cmd_id          : WMI cmd id
221  *  @return 0  on success and -ve on failure.
222  */
223 QDF_STATUS
224 wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
225 			uint32_t cmd_id);
226 
227 /**
228  * wmi_unified_register_event() - WMI event handler
229  * registration function for converged components
230  *
231  * @wmi_handle:   handle to WMI.
232  * @event_id:     WMI event ID
233  * @handler_func: Event handler call back function
234  *
235  *  @return 0  on success and -ve on failure.
236  */
237 int
238 wmi_unified_register_event(wmi_unified_t wmi_handle,
239 				   uint32_t event_id,
240 				   wmi_unified_event_handler handler_func);
241 
242 /**
243  * wmi_unified_register_event_handler() - WMI event handler
244  * registration function
245  *
246  * @wmi_handle:   handle to WMI.
247  * @event_id:     WMI event ID
248  * @handler_func: Event handler call back function
249  * @rx_ctx: rx event processing context
250  *
251  *  @return 0  on success and -ve on failure.
252  */
253 int
254 wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
255 				   wmi_conv_event_id event_id,
256 				   wmi_unified_event_handler handler_func,
257 				   uint8_t rx_ctx);
258 
259 /**
260  * WMI event handler unregister function for converged componets
261  *
262  *  @param wmi_handle      : handle to WMI.
263  *  @param event_id        : WMI event ID
264  *  @return 0  on success and -ve on failure.
265  */
266 int
267 wmi_unified_unregister_event(wmi_unified_t wmi_handle,
268 					 uint32_t event_id);
269 
270 /**
271  * WMI event handler unregister function
272  *
273  *  @param wmi_handle      : handle to WMI.
274  *  @param event_id        : WMI event ID
275  *  @return 0  on success and -ve on failure.
276  */
277 int
278 wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
279 					 wmi_conv_event_id event_id);
280 
281 /**
282  * request wmi to connet its htc service.
283  *  @param wmi_handle      : handle to WMI.
284  *  @param htc_handle      : handle to HTC.
285  *  @return void
286  */
287 QDF_STATUS
288 wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
289 				void *htc_handle);
290 
291 /*
292  * WMI API to verify the host has enough credits to suspend
293  *  @param wmi_handle      : handle to WMI.
294  */
295 
296 int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
297 
298 /**
299  *  WMI API to get updated host_credits
300  *  @param wmi_handle      : handle to WMI.
301  */
302 
303 int wmi_get_host_credits(wmi_unified_t wmi_handle);
304 
305 /**
306  *  WMI API to get WMI Pending Commands in the HTC queue
307  *  @param wmi_handle      : handle to WMI.
308  */
309 
310 int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
311 
312 /**
313  *  WMI API to set target suspend state
314  *  @param wmi_handle      : handle to WMI.
315  *  @param val             : suspend state boolean
316  */
317 void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
318 
319 /**
320  * WMI API to set bus suspend state
321  * @param wmi_handle:	handle to WMI.
322  * @param val:		suspend state boolean
323  */
324 void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
325 
326 /**
327  * WMI API to set crash injection state
328  * @param wmi_handle:	handle to WMI.
329  * @param val:		crash injection state boolean
330  */
331 void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
332 
333 /**
334  * WMI API to set target assert
335  * @param wmi_handle: 	handle to WMI.
336  * @param val:		target assert config value.
337  *
338  * Return: 		none.
339  */
340 void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
341 
342 /**
343  * generic function to block unified WMI command
344  * @param wmi_handle      : handle to WMI.
345  * @return 0  on success and -ve on failure.
346  */
347 int
348 wmi_stop(wmi_unified_t wmi_handle);
349 
350 /**
351  * API to flush all the previous packets  associated with the wmi endpoint
352  *
353  * @param wmi_handle      : handle to WMI.
354  */
355 void
356 wmi_flush_endpoint(wmi_unified_t wmi_handle);
357 
358 /**
359  * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
360  *                     By default pdev_id conversion is not done in WMI.
361  *                     This API can be used enable conversion in WMI.
362  * @param wmi_handle   : handle to WMI
363  * Return none
364  */
365 void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
366 
367 /**
368  * API to handle wmi rx event after UMAC has taken care of execution
369  * context
370  *
371  * @param wmi_handle      : handle to WMI.
372  * @param evt_buf         : wmi event buffer
373  */
374 void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
375 #ifdef FEATURE_RUNTIME_PM
376 void
377 wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
378 bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
379 #else
380 static inline void
381 wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
382 {
383 	return;
384 }
385 static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
386 {
387 	return false;
388 }
389 #endif
390 
391 void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
392 
393 void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
394 
395 /**
396  * UMAC Callback to process fw event.
397  * @param wmi_handle      : handle to WMI.
398  * @param evt_buf         : wmi event buffer
399  */
400 void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
401 uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
402 
403 
404 QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
405 				 uint8_t macaddr[IEEE80211_ADDR_LEN],
406 				 struct vdev_create_params *param);
407 
408 QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
409 					  uint8_t if_id);
410 
411 QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
412 					uint8_t vdev_id);
413 
414 QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
415 			     uint8_t bssid[IEEE80211_ADDR_LEN],
416 				 struct vdev_up_params *params);
417 
418 QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
419 				uint8_t vdev_id);
420 
421 QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
422 				struct vdev_start_params *req);
423 /**
424  * wmi_unified_vdev_set_nac_rssi_send() - send NAC_RSSI command to fw
425  * @param wmi_handle   : handle to WMI
426  * @param req          : pointer to hold nac rssi request data
427  *
428  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
429  */
430 QDF_STATUS wmi_unified_vdev_set_nac_rssi_send(void *wmi_hdl,
431 			struct vdev_scan_nac_rssi_params *req);
432 
433 QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
434 		struct hidden_ssid_vdev_restart_params *restart_params);
435 
436 QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
437 				struct vdev_set_params *param);
438 
439 QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
440 				    uint8_t
441 				    peer_addr[IEEE80211_ADDR_LEN],
442 				    uint8_t vdev_id);
443 
444 QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
445 					 uint8_t peer_addr[IEEE80211_ADDR_LEN],
446 					 struct peer_flush_params *param);
447 
448 QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
449 				uint8_t peer_addr[IEEE80211_ADDR_LEN],
450 				struct peer_set_params *param);
451 
452 QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
453 					struct peer_create_params *param);
454 
455 QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
456 				uint8_t macaddr[IEEE80211_ADDR_LEN],
457 				struct stats_request_params *param);
458 
459 QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
460 					uint32_t value, uint8_t pdev_id);
461 
462 #ifdef FEATURE_WLAN_D0WOW
463 QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
464 				uint8_t mac_id);
465 QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
466 				uint8_t mac_id);
467 #endif
468 
469 QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
470 				struct wow_cmd_params *param,
471 				uint8_t mac_id);
472 
473 QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
474 
475 QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
476 		struct wow_add_wakeup_params *param);
477 
478 QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
479 		struct wow_add_wakeup_pattern_params *param);
480 
481 QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
482 		struct wow_remove_wakeup_pattern_params *param);
483 
484 #ifndef CONFIG_MCL
485 QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
486 			WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
487 #else
488 QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
489 				uint8_t macaddr[IEEE80211_ADDR_LEN],
490 				struct packet_enable_params *param);
491 #endif
492 
493 QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
494 
495 QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
496 				struct suspend_params *param,
497 				uint8_t mac_id);
498 
499 QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
500 				uint8_t mac_id);
501 
502 QDF_STATUS
503 wmi_unified_pdev_param_send(void *wmi_hdl,
504 			   struct pdev_params *param,
505 				uint8_t mac_id);
506 
507 QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
508 				struct beacon_tmpl_params *param);
509 
510 
511 QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
512 				struct beacon_params *param);
513 
514 QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
515 				struct peer_assoc_params *param);
516 
517 QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
518 				struct sta_ps_params *param);
519 
520 QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
521 				uint8_t macaddr[IEEE80211_ADDR_LEN],
522 				struct ap_ps_params *param);
523 
524 QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
525 				struct scan_req_params *param);
526 
527 QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
528 				struct scan_cancel_param *param);
529 
530 QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
531 				struct scan_chan_list_params *param);
532 
533 
534 QDF_STATUS wmi_crash_inject(void *wmi_hdl,
535 				struct crash_inject *param);
536 
537 QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
538 				struct pdev_utf_params *param,
539 				uint8_t mac_id);
540 
541 #ifdef FEATURE_FW_LOG_PARSING
542 QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
543 				       struct dbglog_params *param);
544 #else
545 static inline QDF_STATUS
546 wmi_unified_dbglog_cmd_send(void *wmi_hdl,
547 			    struct dbglog_params *param)
548 {
549 	return QDF_STATUS_SUCCESS;
550 }
551 #endif
552 
553 QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
554 				struct wmi_mgmt_params *param);
555 
556 QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
557 				struct wmi_offchan_data_tx_params *param);
558 
559 QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
560 		uint32_t param_value);
561 
562 QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
563 			       uint32_t vdev_id, uint8_t val);
564 QDF_STATUS
565 wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
566 				struct sta_uapsd_trig_params *param);
567 
568 QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
569 
570 QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
571 		struct p2p_ps_params *oppps);
572 
573 QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
574 			struct p2p_ps_params *noa);
575 
576 #ifdef CONVERGED_P2P_ENABLE
577 QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
578 			struct p2p_lo_start *param);
579 
580 QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
581 #endif
582 
583 QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
584 			       int value);
585 
586 QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
587 
588 #ifdef WLAN_FEATURE_DSRC
589 /**
590  * wmi_unified_ocb_start_timing_advert() - start sending the timing
591  *  advertisement frames on a channel
592  * @wmi_handle: pointer to the wmi handle
593  * @timing_advert: pointer to the timing advertisement struct
594  *
595  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
596  */
597 QDF_STATUS wmi_unified_ocb_start_timing_advert(struct wmi_unified *wmi_handle,
598 	struct ocb_timing_advert_param *timing_advert);
599 
600 /**
601  * wmi_unified_ocb_stop_timing_advert() - stop sending the timing
602  *  advertisement frames on a channel
603  * @wmi_handle: pointer to the wmi handle
604  * @timing_advert: pointer to the timing advertisement struct
605  *
606  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
607  */
608 QDF_STATUS wmi_unified_ocb_stop_timing_advert(struct wmi_unified *wmi_handle,
609 	struct ocb_timing_advert_param *timing_advert);
610 
611 /**
612  * wmi_unified_ocb_set_config() - send the OCB config to the FW
613  * @wmi_handle: pointer to the wmi handle
614  * @config: the OCB configuration
615  *
616  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
617  */
618 QDF_STATUS wmi_unified_ocb_set_config(struct wmi_unified *wmi_handle,
619 				      struct ocb_config *config);
620 
621 /**
622  * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
623  * @wmi_handle: pointer to the wmi handle
624  * @req: request for tsf timer
625  *
626  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
627  */
628 QDF_STATUS wmi_unified_ocb_get_tsf_timer(struct wmi_unified *wmi_handle,
629 					 struct ocb_get_tsf_timer_param *req);
630 
631 /**
632  * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
633  * @wmi_handle: pointer to the wmi handle
634  * @vdev_id: vdev id
635  *
636  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
637  */
638 QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(struct wmi_unified *wmi_handle,
639 					    struct ocb_utc_param *utc);
640 
641 /**
642  * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
643  * @wmi_handle: pointer to the wmi handle
644  * @get_stats_param: pointer to the dcc stats
645  *
646  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
647  */
648 QDF_STATUS wmi_unified_dcc_get_stats_cmd(struct wmi_unified *wmi_handle,
649 		     struct ocb_dcc_get_stats_param *get_stats_param);
650 
651 /**
652  * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
653  * @wmi_handle: pointer to the wmi handle
654  * @clear_stats_param: parameters to the command
655  *
656  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
657  */
658 QDF_STATUS wmi_unified_dcc_clear_stats(struct wmi_unified *wmi_handle,
659 			struct ocb_dcc_clear_stats_param *clear_stats_param);
660 
661 /**
662  * wmi_unified_dcc_update_ndl() - command to update the NDL data
663  * @wmi_handle: pointer to the wmi handle
664  * @update_ndl_param: pointer to the request parameters
665  *
666  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
667  */
668 QDF_STATUS wmi_unified_dcc_update_ndl(struct wmi_unified *wmi_handle,
669 		       struct ocb_dcc_update_ndl_param *update_ndl_param);
670 
671 /**
672  * wmi_extract_ocb_set_channel_config_resp() - extract status from wmi event
673  * @wmi_handle: wmi handle
674  * @evt_buf: pointer to event buffer
675  * @status: status buffer
676  *
677  * Return: QDF_STATUS_SUCCESS on success
678  */
679 QDF_STATUS
680 wmi_extract_ocb_set_channel_config_resp(struct wmi_unified *wmi_handle,
681 					void *evt_buf,
682 					uint32_t *status);
683 
684 /**
685  * wmi_extract_ocb_tsf_timer() - extract tsf timer from wmi event
686  * @wmi_handle: wmi handle
687  * @evt_buf: pointer to event buffer
688  * @resp: tsf timer
689  *
690  * Return: QDF_STATUS_SUCCESS on success
691  */
692 QDF_STATUS wmi_extract_ocb_tsf_timer(struct wmi_unified *wmi_handle,
693 				     void *evt_buf,
694 				     struct ocb_get_tsf_timer_response *resp);
695 
696 /**
697  * wmi_extract_dcc_update_ndl_resp() - extract NDL update from wmi event
698  * @wmi_handle: wmi handle
699  * @evt_buf: pointer to event buffer
700  * @resp: ndl update status
701  *
702  * Return: QDF_STATUS_SUCCESS on success
703  */
704 QDF_STATUS wmi_extract_dcc_update_ndl_resp(struct wmi_unified *wmi_handle,
705 		void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
706 
707 /**
708  * wmi_extract_dcc_stats() - extract DCC stats from wmi event
709  * @wmi_handle: wmi handle
710  * @evt_buf: pointer to event buffer
711  * @resp: DCC stats
712  *
713  * Since length of the response is variable, response buffer will be allocated.
714  * The caller must free the response buffer.
715  *
716  * Return: QDF_STATUS_SUCCESS on success
717  */
718 QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_handle,
719 				 void *evt_buf,
720 				 struct ocb_dcc_get_stats_response **response);
721 #endif
722 
723 QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
724 	 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
725 
726 QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
727 				struct thermal_cmd_params *thermal_info);
728 
729 QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
730 		struct wmi_peer_rate_report_params *rate_report_params);
731 
732 QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
733 	(void *wmi_hdl,
734 	uint32_t adapter_1_chan_freq,
735 	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
736 
737 QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
738 	(void *wmi_hdl,
739 	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
740 
741 QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
742 		   void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
743 		   uint32_t pdev_id);
744 
745 #ifdef CONFIG_MCL
746 QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
747 			wmi_bcn_send_from_host_cmd_fixed_param *param);
748 #endif
749 
750 QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
751 				       uint8_t vdev_id, uint32_t max_retries,
752 					   uint32_t retry_interval);
753 
754 
755 QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
756 				struct sta_params *params);
757 
758 QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
759 				  struct wmi_gtx_config *gtx_info);
760 
761 QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
762 		     uint8_t vdev_id, bool mu_edca_param,
763 		     struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
764 
765 QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
766 		   uint8_t vdev_id,
767 		   struct wmi_probe_resp_params *probe_rsp_info);
768 
769 QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
770 			struct set_key_params *key_params);
771 
772 #ifdef WLAN_FEATURE_DISA
773 /**
774  * wmi_unified_encrypt_decrypt_send_cmd() - send encryptdecrypt cmd to fw
775  * @wmi_hdl: wmi handle
776  * @params: encrypt/decrypt params
777  *
778  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
779  */
780 QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
781 			struct disa_encrypt_decrypt_req_params *params);
782 
783 /**
784  * wmi_extract_encrypt_decrypt_resp_params() -
785  *       extract encrypt decrypt resp params from event buffer
786  * @wmi_handle: wmi handle
787  * @evt_buf: pointer to event buffer
788  * @resp: encrypt decrypt resp params
789  *
790  * Return: QDF_STATUS_SUCCESS for success or error code
791  */
792 QDF_STATUS wmi_extract_encrypt_decrypt_resp_params(void *wmi_hdl,
793 			uint8_t *evt_buf,
794 			struct disa_encrypt_decrypt_resp_params *resp);
795 #endif
796 
797 QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
798 				    uint32_t vdev_id, uint8_t *p2p_ie);
799 
800 
801 QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
802 					struct gateway_update_req_param *req);
803 
804 QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
805 					struct rssi_monitor_param *req);
806 
807 QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
808 			  struct scan_mac_oui *psetoui);
809 
810 #ifdef CONFIG_MCL
811 QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
812 				wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
813 				struct roam_offload_scan_params *roam_req);
814 #endif
815 
816 /**
817  * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
818  * @wmi_hdl: wmi handle
819  * @params: Parameters to be configured
820  *
821  * Pass the MAWC(Motion Aided wireless connectivity) related roaming
822  * parameters from the host to the target
823  *
824  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
825  */
826 QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
827 			struct wmi_mawc_roam_params *params);
828 
829 QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
830 				struct roam_offload_scan_rssi_params *roam_req);
831 
832 QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
833 				struct roam_scan_filter_params *roam_req);
834 
835 #ifdef IPA_OFFLOAD
836 QDF_STATUS  wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
837 		struct ipa_uc_offload_control_params *ipa_offload);
838 #endif
839 
840 QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
841 			  const struct plm_req_params *plm);
842 
843 QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
844 			  const struct plm_req_params *plm,
845 			  uint32_t *gchannel_list);
846 
847 QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
848 
849 #ifdef FEATURE_WLAN_SCAN_PNO
850 QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
851 		   struct pno_scan_req_params *pno);
852 #endif
853 
854 QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
855 		struct nlo_mawc_params *params);
856 
857 QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
858 			uint8_t is_add_ts);
859 
860 QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
861 	(void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
862 	 uint8_t addr[IEEE80211_ADDR_LEN]);
863 
864 QDF_STATUS wmi_unified_process_ll_stats_set_cmd
865 	(void *wmi_hdl, const struct ll_stats_set_params *set_req);
866 
867 QDF_STATUS wmi_unified_process_ll_stats_get_cmd
868 	(void *wmi_hdl, const struct ll_stats_get_params  *get_req,
869 		 uint8_t addr[IEEE80211_ADDR_LEN]);
870 
871 /**
872  * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
873  * @wmi_hdl: wma handle
874  * @vdev_id: vdev id
875  *
876  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
877  */
878 QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
879 		uint8_t vdev_id);
880 
881 QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
882 
883 QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
884 
885 QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
886 				 struct link_status_params *link_status);
887 
888 #ifdef CONFIG_MCL
889 QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
890 				wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
891 
892 QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
893 					wmi_mac_addr peer_macaddr);
894 #endif
895 
896 #ifdef WLAN_SUPPORT_GREEN_AP
897 QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
898 		struct wlan_green_ap_egap_params *egap_params);
899 #endif
900 
901 QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
902 			uint32_t cmd, uint32_t value1, uint32_t value2);
903 
904 QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
905 					     uint32_t cookie, uint32_t time);
906 
907 QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
908 
909 /**
910  * wmi_unified_set_latency_config_cmd()
911  * @wmi_handle: wmi handle
912  * @param: WLM parameters
913  *
914  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
915  */
916 QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
917 					struct wlm_latency_level_param *param);
918 
919 QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
920 
921 #ifdef WLAN_FEATURE_CIF_CFR
922 /**
923  * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
924  * @wmi_handle: wmi handle
925  * @data_len: len of dma cfg req
926  * @data: dma cfg req
927  *
928  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
929  */
930 QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
931 				wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
932 #endif
933 
934 /**
935  * wmi_unified_dbr_ring_cfg: Configure direct buffer rx rings
936  * @wmi_hdl: WMI handle
937  * @cfg: pointer to direct buffer rx config request
938  *
939  * Return: QDF status of operation
940  */
941 QDF_STATUS wmi_unified_dbr_ring_cfg(void *wmi_hdl,
942 				struct direct_buf_rx_cfg_req *cfg);
943 
944 QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
945 			  uint32_t data_len,
946 			  uint8_t *data);
947 
948 QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
949 			bool dfs_phyerr_filter_offload);
950 
951 #ifdef CONFIG_MCL
952 QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
953 				   WMI_PKTLOG_EVENT pktlog_event,
954 				   uint32_t cmd_id,
955 				   uint8_t user_triggered);
956 #endif
957 
958 QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
959 					uint8_t vdev_id);
960 
961 QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
962 QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
963 				uint8_t ac);
964 
965 QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
966 		      struct aggr_add_ts_param *aggr_qos_rsp_msg);
967 
968 QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
969 		 struct add_ts_param *msg);
970 
971 QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
972 						struct periodic_tx_pattern  *
973 						pAddPeriodicTxPtrnParams,
974 						uint8_t vdev_id);
975 
976 QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
977 						uint8_t vdev_id,
978 						uint8_t pattern_id);
979 
980 QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
981 			struct stats_ext_params *preq);
982 
983 QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
984 			struct ext_wow_params *params);
985 
986 QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
987 					  struct app_type2_params *appType2Params);
988 
989 QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
990 						  uint32_t timer_val);
991 
992 QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
993 			struct nan_req_params *nan_req);
994 
995 QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
996 				struct dhcp_offload_info_params *params);
997 
998 QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
999 
1000 QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
1001 				   uint32_t reg_dmn, uint16_t regdmn2G,
1002 				   uint16_t regdmn5G, uint8_t ctl2G,
1003 				   uint8_t ctl5G);
1004 
1005 QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
1006 			      struct tdls_channel_switch_params *chan_switch_params);
1007 
1008 QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
1009 					 void *tdls_param, uint8_t tdls_state);
1010 
1011 QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
1012 			       struct tdls_peer_state_params *peerStateParams,
1013 				   uint32_t *ch_mhz);
1014 
1015 QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
1016 					struct fw_dump_req_param *mem_dump_req);
1017 
1018 QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
1019 				   struct vdev_ie_info_param *ie_info);
1020 
1021 QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
1022 		void *evt_buf);
1023 
1024 QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
1025 					 uint8_t *custom_addr);
1026 
1027 QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
1028 		uint8_t *event,
1029 		uint32_t len);
1030 
1031 QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
1032 		struct wmi_wifi_start_log *start_log);
1033 
1034 QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
1035 
1036 QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
1037 				struct wmi_pcl_chan_weights *msg);
1038 
1039 QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
1040 				uint32_t hw_mode_index);
1041 
1042 QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
1043 		struct policy_mgr_dual_mac_config *msg);
1044 
1045 QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
1046 				struct flashing_req_params *flashing);
1047 
1048 QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
1049 				   struct app_type1_params *app_type1_params);
1050 
1051 QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
1052 		     struct ssid_hotlist_request_params *request);
1053 
1054 QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
1055 		 uint8_t vdev_id);
1056 
1057 QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
1058 			       struct wmi_unit_test_cmd *wmi_utest);
1059 
1060 QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
1061 		struct wmi_roam_invoke_cmd *roaminvoke,
1062 		uint32_t ch_hz);
1063 
1064 QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
1065 					 uint32_t command, uint32_t vdev_id);
1066 
1067 #ifdef CONFIG_MCL
1068 QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
1069 				   struct ap_profile_params *ap_profile);
1070 #endif
1071 
1072 QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
1073 					     uint32_t scan_period,
1074 					     uint32_t scan_age,
1075 					     uint32_t vdev_id);
1076 
1077 QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
1078 				   uint8_t chan_count,
1079 				   uint32_t *chan_list,
1080 				   uint8_t list_type, uint32_t vdev_id);
1081 
1082 QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
1083 			  uint32_t vdev_id,
1084 			  int32_t rssi_change_thresh,
1085 			  uint32_t bcn_rssi_weight,
1086 			  uint32_t hirssi_delay_btw_scans);
1087 
1088 /**
1089  * wmi_unified_set_per_roam_config() - set PER roam config in FW
1090  * @wmi_hdl: wmi handle
1091  * @req_buf: per roam config request buffer
1092  *
1093  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1094  */
1095 QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
1096 		struct wmi_per_roam_config_req *req_buf);
1097 
1098 #ifdef FEATURE_WLAN_APF
1099 /**
1100  * wmi_unified_set_active_apf_mode_cmd() - config active APF mode in FW
1101  * @wmi: the WMI handle
1102  * @vdev_id: the Id of the vdev to apply the configuration to
1103  * @ucast_mode: the active APF mode to configure for unicast packets
1104  * @mcast_bcast_mode: the active APF mode to configure for multicast/broadcast
1105  *	packets
1106  */
1107 QDF_STATUS
1108 wmi_unified_set_active_apf_mode_cmd(wmi_unified_t wmi, uint8_t vdev_id,
1109 				    enum wmi_host_active_apf_mode ucast_mode,
1110 				    enum wmi_host_active_apf_mode
1111 							      mcast_bcast_mode);
1112 
1113 /**
1114  * wmi_unified_send_apf_enable_cmd() - send apf enable/disable cmd
1115  * @wmi: wmi handle
1116  * @vdev_id: VDEV id
1117  * @enable: true: enable, false: disable
1118  *
1119  * This function passes the apf enable command to fw
1120  *
1121  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1122  */
1123 QDF_STATUS wmi_unified_send_apf_enable_cmd(wmi_unified_t wmi,
1124 					   uint32_t vdev_id, bool enable);
1125 
1126 /**
1127  * wmi_unified_send_apf_write_work_memory_cmd() - send cmd to write into the APF
1128  *	work memory.
1129  * @wmi: wmi handle
1130  * @write_params: parameters and buffer pointer for the write
1131  *
1132  * This function passes the write apf work mem command to fw
1133  *
1134  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1135  */
1136 QDF_STATUS wmi_unified_send_apf_write_work_memory_cmd(wmi_unified_t wmi,
1137 			struct wmi_apf_write_memory_params *write_params);
1138 
1139 /**
1140  * wmi_unified_send_apf_read_work_memory_cmd() - send cmd to read part of APF
1141  *	work memory
1142  * @wmi: wmi handle
1143  * @read_params: contains relative address and length to read from
1144  *
1145  * This function passes the read apf work mem command to fw
1146  *
1147  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1148  */
1149 QDF_STATUS wmi_unified_send_apf_read_work_memory_cmd(wmi_unified_t wmi,
1150 				struct wmi_apf_read_memory_params *read_params);
1151 
1152 /**
1153  * wmi_extract_apf_read_memory_resp_event() - exctract read mem resp event
1154  * @wmi: wmi handle
1155  * @evt_buf: Pointer to the event buffer
1156  * @resp: pointer to memory to extract event parameters into
1157  *
1158  * This function exctracts read mem response event into the given structure ptr
1159  *
1160  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1161  */
1162 QDF_STATUS
1163 wmi_extract_apf_read_memory_resp_event(wmi_unified_t wmi, void *evt_buf,
1164 				struct wmi_apf_read_memory_resp_event_params
1165 								*read_mem_evt);
1166 #endif /* FEATURE_WLAN_APF */
1167 
1168 QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
1169 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1170 				struct stats_request_params *param);
1171 
1172 QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
1173 				uint32_t param);
1174 
1175 QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
1176 				struct set_bwf_params *param);
1177 
1178 QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
1179 
1180 QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
1181 
1182 QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
1183 				uint32_t value);
1184 
1185 QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
1186 				uint32_t value);
1187 
1188 QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
1189 				struct btcoex_cfg_params *param);
1190 
1191 QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
1192 				struct btcoex_cfg_params *param);
1193 
1194 QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
1195 				coex_ver_cfg_t *param);
1196 
1197 QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
1198 					    struct coex_config_params *param);
1199 
1200 QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
1201 				struct fips_params *param);
1202 
1203 QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
1204 				struct wlan_profile_params *param);
1205 
1206 QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
1207 				struct wlan_profile_params *param);
1208 
1209 QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
1210 				struct channel_param *param);
1211 
1212 QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
1213 				struct ht_ie_params *param);
1214 
1215 QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
1216 				struct vht_ie_params *param);
1217 
1218 QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
1219 				struct wmm_update_params *param);
1220 
1221 QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
1222 				struct ant_switch_tbl_params *param);
1223 
1224 QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
1225 				struct ratepwr_table_params *param);
1226 
1227 QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
1228 
1229 QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
1230 				struct ctl_table_params *param);
1231 
1232 QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
1233 				struct mimogain_table_params *param);
1234 
1235 QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
1236 				struct ratepwr_chainmsk_params *param);
1237 
1238 QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1239 				struct macaddr_params *param);
1240 
1241 QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1242 
1243 QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1244 
1245 QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1246 				struct acparams_params *param);
1247 
1248 QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1249 				struct vap_dscp_tid_map_params *param);
1250 
1251 QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1252 				struct proxy_ast_reserve_params *param);
1253 
1254 QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
1255 				struct pdev_qvit_params *param);
1256 
1257 QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
1258 				struct mcast_group_update_params *param);
1259 
1260 QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1261 				struct peer_add_wds_entry_params *param);
1262 
1263 QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1264 				struct peer_del_wds_entry_params *param);
1265 
1266 /**
1267  *  wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
1268  *  @param wmi_hdl      : handle to WMI.
1269  *  @param param        : pointer to hold bridge mac addr param
1270  *
1271  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1272  */
1273 QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
1274 				struct set_bridge_mac_addr_params *param);
1275 
1276 
1277 QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1278 				struct peer_update_wds_entry_params *param);
1279 
1280 QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1281 
1282 QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1283 
1284 QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1285 
1286 QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1287 				struct smart_ant_enable_params *param);
1288 
1289 QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1290 				struct smart_ant_rx_ant_params *param);
1291 
1292 QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1293 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1294 				struct smart_ant_tx_ant_params *param);
1295 
1296 QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1297 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1298 				struct smart_ant_training_info_params *param);
1299 
1300 QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1301 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1302 				struct smart_ant_node_config_params *param);
1303 
1304 QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1305 			struct smart_ant_enable_tx_feedback_params *param);
1306 
1307 QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1308 				struct vdev_spectral_configure_params *param);
1309 
1310 QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1311 				struct vdev_spectral_enable_params *param);
1312 
1313 QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1314 				struct bss_chan_info_request_params *param);
1315 
1316 QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1317 				struct thermal_mitigation_params *param);
1318 
1319 QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1320 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1321 				struct set_neighbour_rx_params *param);
1322 
1323 QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1324 				struct set_fwtest_params *param);
1325 
1326 QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1327 				struct config_ratemask_params *param);
1328 
1329 /**
1330  *  wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
1331  *						       size command
1332  *  @param wmi_hdl      : handle to WMI.
1333  *  @param param        : pointer to hold custom aggr size param
1334  *
1335  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1336  */
1337 QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
1338 				struct set_custom_aggr_size_params *param);
1339 
1340 /**
1341  *  wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
1342  *  @param wmi_hdl      : handle to WMI.
1343  *  @param param        : pointer to hold set qdepth thresh param
1344  *
1345  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1346  */
1347 QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
1348 				struct set_qdepth_thresh_params *param);
1349 
1350 QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1351 				struct pdev_set_regdomain_params *param);
1352 
1353 QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1354 				struct set_quiet_mode_params *param);
1355 
1356 QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1357 				struct set_beacon_filter_params *param);
1358 
1359 QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1360 				struct remove_beacon_filter_params *param);
1361 
1362 QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1363 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1364 				struct addba_clearresponse_params *param);
1365 
1366 QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1367 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1368 				struct addba_send_params *param);
1369 
1370 QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1371 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1372 				struct delba_send_params *param);
1373 
1374 QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1375 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1376 				struct addba_setresponse_params *param);
1377 
1378 QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1379 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1380 				struct singleamsdu_params *param);
1381 
1382 QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1383 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1384 				struct set_qboost_params *param);
1385 
1386 QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1387 				struct mu_scan_params *param);
1388 
1389 QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1390 				struct lteu_config_params *param);
1391 
1392 QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1393 				struct set_ps_mode_params *param);
1394 
1395 QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1396 				struct wmi_init_cmd_param *param);
1397 
1398 bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1399 
1400 /**
1401  * wmi_save_service_bitmap() - save service bitmap
1402  * @wmi_handle: wmi handle
1403  * @param evt_buf: pointer to event buffer
1404  *
1405  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1406  */
1407 QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1408 				   void *bitmap_buf);
1409 
1410 /**
1411  * wmi_save_ext_service_bitmap() - save extended service bitmap
1412  * @wmi_handle: wmi handle
1413  * @param evt_buf: pointer to event buffer
1414  *
1415  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1416  */
1417 QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
1418 				   void *bitmap_buf);
1419 
1420 QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1421 
1422 QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1423 				void *evt_buf,
1424 				struct wlan_psoc_target_capability_info *ev);
1425 
1426 QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1427 			struct wlan_psoc_hal_reg_capability *hal_reg_cap);
1428 
1429 host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1430 				void *evt_buf, uint8_t *num_entries);
1431 
1432 uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1433 
1434 QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1435 				void *ev, uint8_t *macaddr);
1436 
1437 wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
1438 					      uint8_t *num_mac_addr);
1439 
1440 /**
1441  * wmi_extract_ready_params() - Extract data from ready event apart from
1442  *                     status, macaddr and version.
1443  * @wmi_handle: Pointer to WMI handle.
1444  * @evt_buf: Pointer to Ready event buffer.
1445  * @ev_param: Pointer to host defined struct to copy the data from event.
1446  *
1447  * Return: QDF_STATUS_SUCCESS on success.
1448  */
1449 QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
1450 		void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1451 
1452 QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1453 				void *ev, struct wmi_host_fw_ver *fw_ver);
1454 
1455 QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1456 				void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1457 
1458 QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1459 
1460 uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
1461 				void *evt_b, uint32_t *len);
1462 
1463 QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1464 				wmi_host_ext_resource_config *ext_cfg);
1465 
1466 QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl,
1467 						    uint8_t mac_id);
1468 
1469 QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1470 				struct packet_power_info_params *param);
1471 
1472 QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1473 				struct gpio_config_params *param);
1474 
1475 QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1476 				struct gpio_output_params *param);
1477 
1478 QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1479 				struct rtt_meas_req_test_params *param);
1480 
1481 QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1482 				struct rtt_meas_req_params *param);
1483 
1484 QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1485 				struct rtt_keepalive_req_params *param);
1486 
1487 QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1488 				struct lci_set_params *param);
1489 
1490 QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1491 				struct lcr_set_params *param);
1492 
1493 QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1494 			struct periodic_chan_stats_params *param);
1495 
1496 #ifdef WLAN_ATF_ENABLE
1497 QDF_STATUS
1498 wmi_unified_set_atf_cmd_send(void *wmi_hdl,
1499 			     struct set_atf_params *param);
1500 
1501 QDF_STATUS
1502 wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1503 			      struct atf_peer_request_params *param);
1504 
1505 QDF_STATUS
1506 wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1507 			      struct atf_grouping_params *param);
1508 
1509 QDF_STATUS
1510 wmi_send_set_atf_group_ac_cmd(void *wmi_hdl,
1511 			      struct atf_group_ac_params *param);
1512 
1513 QDF_STATUS
1514 wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1515 			      wmi_host_atf_peer_stats_event *ev);
1516 
1517 QDF_STATUS
1518 wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf, uint8_t idx,
1519 			      wmi_host_atf_peer_stats_info *atf_token_info);
1520 #endif
1521 
1522 /* Extract APIs */
1523 
1524 QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1525 		void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1526 
1527 QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
1528 		void *evt_buf, struct wmi_host_dcs_interference_param *param);
1529 
1530 QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1531 		wmi_host_ath_dcs_cw_int *cw_int);
1532 
1533 QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1534 		wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1535 
1536 QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
1537 		struct wmi_host_fips_event_param *param);
1538 
1539 QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1540 		wmi_host_vdev_start_resp *vdev_rsp);
1541 
1542 /**
1543  * wmi_extract_vdev_delete_resp - api to extract vdev delete
1544  * response event params
1545  * @wmi_handle: wma handle
1546  * @evt_buf: pointer to event buffer
1547  * @delele_rsp: pointer to hold delete response from firmware
1548  *
1549  * Return: QDF_STATUS_SUCCESS for successful event parse
1550  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1551  */
1552 QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
1553 		struct wmi_host_vdev_delete_resp *delele_rsp);
1554 
1555 QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1556 		uint8_t idx, struct tbttoffset_params *tbtt_param);
1557 
1558 QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
1559 		void *evt_buf, uint8_t idx,
1560 		struct tbttoffset_params *tbtt_param);
1561 
1562 QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1563 					    uint32_t *num_vdevs);
1564 
1565 QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1566 						uint32_t *num_vdevs);
1567 
1568 QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
1569 		struct mgmt_rx_event_params *hdr, uint8_t **bufp);
1570 
1571 QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1572 		uint32_t *vdev_id);
1573 
1574 QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1575 		wmi_host_roam_event *ev);
1576 
1577 QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1578 		struct scan_event *param);
1579 
1580 #ifdef CONVERGED_TDLS_ENABLE
1581 /**
1582  * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1583  * @wmi_handle: wmi handle
1584  * @param evt_buf: pointer to event buffer
1585  * @param param: Pointer to hold vdev tdls param
1586  *
1587  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1588  */
1589 QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1590 					  struct tdls_event_info *param);
1591 #endif
1592 
1593 QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1594 		wmi_host_mu_report_event *param);
1595 
1596 QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1597 		uint8_t idx, wmi_host_mu_db_entry *param);
1598 
1599 QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1600 		wmi_host_peer_txmu_cnt_event *param);
1601 
1602 QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1603 		void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1604 
1605 QDF_STATUS
1606 wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
1607 				  struct esp_estimation_event *param);
1608 
1609 QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1610 		void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1611 
1612 QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1613 		wmi_host_pdev_tpc_config_event *param);
1614 
1615 QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1616 		void *evt_buf, uint32_t *gpio_num);
1617 
1618 QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1619 		void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
1620 
1621 QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1622 		wmi_host_pdev_nfcal_power_all_channels_event *param);
1623 
1624 QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1625 		wmi_host_pdev_tpc_event *param);
1626 
1627 QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1628 		void *evt_buf,
1629 		wmi_host_pdev_generic_buffer_event *param);
1630 
1631 QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1632 		wmi_host_mgmt_tx_compl_event *param);
1633 
1634 QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
1635 		struct wmi_host_offchan_data_tx_compl_event *param);
1636 
1637 QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
1638 		void *evt_buf,
1639 		struct pdev_csa_switch_count_status *param);
1640 
1641 QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
1642 		uint32_t *num_vdevs);
1643 
1644 QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1645 		 uint32_t idx, wmi_host_tim_info *tim_info);
1646 
1647 QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1648 			uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1649 
1650 #ifdef CONVERGED_P2P_ENABLE
1651 QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1652 		void *evt_buf, struct p2p_lo_event *param);
1653 
1654 QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1655 		void *evt_buf, struct p2p_noa_info *param);
1656 #endif
1657 
1658 QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1659 		void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1660 
1661 QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1662 		wmi_host_peer_sta_kickout_event *ev);
1663 
1664 QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1665 		uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1666 
1667 QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1668 		 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1669 
1670 QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1671 		wmi_host_rtt_event_hdr *ev);
1672 
1673 QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1674 		wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1675 		uint16_t hdump_len);
1676 
1677 QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1678 		wmi_host_rtt_error_report_event *ev);
1679 
1680 QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1681 		uint32_t index, wmi_host_chan_stats *chan_stats);
1682 
1683 QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1684 		uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
1685 
1686 QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1687 		uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1688 
1689 QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1690 			uint16_t datalen, uint16_t *buf_offset,
1691 			wmi_host_phyerr_t *phyerr);
1692 
1693 QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1694 			uint16_t datalen, uint16_t *buf_offset,
1695 			wmi_host_phyerr_t *phyerr);
1696 
1697 QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1698 			uint16_t datalen, wmi_host_phyerr_t *phyerr);
1699 
1700 QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1701 			wmi_host_wlan_profile_ctx_t *profile_ctx);
1702 
1703 QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
1704 			wmi_host_wlan_profile_t *profile_data);
1705 
1706 QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1707 			wmi_host_chan_info_event *chan_info);
1708 
1709 QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1710 			wmi_host_pdev_channel_hopping_event *ch_hopping);
1711 
1712 QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1713 					   wmi_host_stats_event *stats_param);
1714 
1715 QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1716 					 uint32_t index,
1717 					 wmi_host_pdev_stats *pdev_stats);
1718 
1719 QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
1720 			wmi_unit_test_event *unit_test, uint32_t maxspace);
1721 
1722 QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1723 			uint32_t index,
1724 			wmi_host_pdev_ext_stats *pdev_ext_stats);
1725 
1726 QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1727 			uint32_t index,
1728 			wmi_host_peer_extd_stats *peer_extd_stats);
1729 
1730 QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1731 			wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1732 
1733 QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1734 			wmi_host_inst_stats_resp *inst_rssi_resp);
1735 
1736 QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1737 		uint32_t index, wmi_host_peer_stats *peer_stats);
1738 
1739 QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1740 		wmi_host_tx_data_traffic_ctrl_event *ev);
1741 
1742 QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1743 		uint32_t index, wmi_host_vdev_stats *vdev_stats);
1744 
1745 QDF_STATUS wmi_extract_per_chain_rssi_stats(void *wmi_hdl, void *evt_buf,
1746 	uint32_t index, struct wmi_host_per_chain_rssi_stats *rssi_stats);
1747 
1748 QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1749 		uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
1750 
1751 QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
1752 		uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
1753 
1754 /**
1755  * wmi_extract_vdev_nac_rssi_stats() - extract NAC_RSSI stats from event
1756  * @wmi_handle: wmi handle
1757  * @param evt_buf: pointer to event buffer
1758  * @param vdev_extd_stats: Pointer to hold nac rssi stats
1759  *
1760  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1761  */
1762 QDF_STATUS wmi_extract_vdev_nac_rssi_stats(void *wmi_hdl, void *evt_buf,
1763 		struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
1764 
1765 QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1766 				struct wmi_power_dbg_params *param);
1767 
1768 QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
1769 				struct multiple_vdev_restart_params *param);
1770 
1771 /**
1772  * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
1773  * @wmi_hdl: wmi handle
1774  * @params: sar limit command params
1775  *
1776  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1777  */
1778 QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1779 					  struct sar_limit_cmd_params *params);
1780 
1781 /**
1782  * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
1783  * @wmi_hdl: wmi handle
1784  *
1785  * Return: QDF_STATUS_SUCCESS for success or error code
1786  */
1787 QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
1788 
1789 /**
1790  * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
1791  * @wmi_hdl: wmi handle
1792  * @evt_buf: event buffer received from firmware
1793  * @event: SAR limit event which is to be populated by data extracted from
1794  *         the @evt_buf buffer
1795  *
1796  * Return: QDF_STATUS_SUCCESS for success or error code
1797  */
1798 QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
1799 					       uint8_t *evt_buf,
1800 					       struct sar_limit_event *event);
1801 
1802 /**
1803  * wmi_unified_extract_sar2_result_event() - extract SAR limits from FW event
1804  * @handle: wmi handle
1805  * @event: event buffer received from firmware
1806  * @len: length of the event buffer
1807  *
1808  * Return: QDF_STATUS_SUCCESS for success or error code
1809  */
1810 QDF_STATUS wmi_unified_extract_sar2_result_event(void *handle,
1811 						 uint8_t *event, uint32_t len);
1812 
1813 /**
1814  * wmi_extract_sar_cap_service_ready_ext() - extract SAR cap from
1815  *					     FW service ready event
1816  * @wmi_hdl: wmi handle
1817  * @evt_buf: event buffer received from firmware
1818  * @ext_param: extended target info
1819  *
1820  * Return: QDF_STATUS_SUCCESS for success or error code
1821  */
1822 QDF_STATUS wmi_extract_sar_cap_service_ready_ext(
1823 			void *wmi_hdl,
1824 			uint8_t *evt_buf,
1825 			struct wlan_psoc_host_service_ext_param *ext_param);
1826 
1827 QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1828 				   struct wmi_adaptive_dwelltime_params *
1829 				   wmi_param);
1830 QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1831 				   struct set_fwtest_params *wmi_fwtest);
1832 
1833 QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1834 					struct rx_reorder_queue_setup_params *param);
1835 QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1836 					struct rx_reorder_queue_remove_params *param);
1837 
1838 QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
1839 		struct wlan_psoc_host_service_ext_param *param);
1840 QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1841 			void *wmi_hdl,
1842 			uint8_t *evt_buf, uint8_t hw_mode_idx,
1843 			struct wlan_psoc_host_hw_mode_caps *param);
1844 QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1845 			void *wmi_hdl,
1846 			uint8_t *evt_buf,
1847 			uint8_t hw_mode_id,
1848 			uint8_t phy_id,
1849 			struct wlan_psoc_host_mac_phy_caps *param);
1850 QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1851 			void *wmi_hdl,
1852 			uint8_t *evt_buf, uint8_t phy_idx,
1853 			struct wlan_psoc_host_hal_reg_capabilities_ext *param);
1854 
1855 /**
1856  * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
1857  *                                             capability received through
1858  *                                             extended service ready event
1859  * @wmi_hdl: WMI handle
1860  * @evt_buf: Event buffer
1861  * @idx: Index of the module for which capability is received
1862  * @param: Pointer to direct buffer rx ring cap struct
1863  *
1864  * Return: QDF status of operation
1865  */
1866 QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
1867 			void *wmi_hdl,
1868 			uint8_t *evt_buf, uint8_t idx,
1869 			struct wlan_psoc_host_dbr_ring_caps *param);
1870 
1871 /**
1872  * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
1873  *                                     from buffer release event
1874  * @wmi_hdl: WMI handle
1875  * @evt_buf: Event buffer
1876  * @param: Pointer to direct buffer rx response struct
1877  *
1878  * Return: QDF status of operation
1879  */
1880 QDF_STATUS wmi_extract_dbr_buf_release_fixed(
1881 			void *wmi_hdl,
1882 			uint8_t *evt_buf,
1883 			struct direct_buf_rx_rsp *param);
1884 
1885 /**
1886  * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
1887  *
1888  * @wmi_hdl: WMI handle
1889  * @evt_buf: Event buffer
1890  * @idx: Index of the module for which capability is received
1891  * @param: Pointer to direct buffer rx entry
1892  *
1893  * Return: QDF status of operation
1894  */
1895 QDF_STATUS wmi_extract_dbr_buf_release_entry(
1896 			void *wmi_hdl,
1897 			uint8_t *evt_buf, uint8_t idx,
1898 			struct direct_buf_rx_entry *param);
1899 
1900 /**
1901  * wmi_extract_dbr_buf_metadata: Extract direct buffer metadata
1902  *
1903  * @wmi_hdl: WMI handle
1904  * @evt_buf: Event buffer
1905  * @idx: Index of the module for which capability is received
1906  * @param: Pointer to direct buffer metadata
1907  *
1908  * Return: QDF status of operation
1909  */
1910 QDF_STATUS wmi_extract_dbr_buf_metadata(
1911 			void *wmi_hdl,
1912 			uint8_t *evt_buf, uint8_t idx,
1913 			struct direct_buf_rx_metadata *param);
1914 
1915 QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1916 				      uint8_t *evt_buf,
1917 				      struct wmi_host_pdev_utf_event *param);
1918 
1919 QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1920 				      uint8_t *evt_buf,
1921 				      struct wmi_host_pdev_qvit_event *param);
1922 
1923 QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1924 		uint8_t *evt_buf,
1925 		struct wmi_host_peer_delete_response_event *param);
1926 
1927 QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1928 		struct wlan_psoc_host_chainmask_table *chainmask_table);
1929 /**
1930  * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1931  * @wmi_handle: wmi handle
1932  * @pdev_id: pdev id
1933  *
1934  * Return: QDF_STATUS
1935  */
1936 QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1937 		uint32_t pdev_id);
1938 
1939 /**
1940  * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
1941  * @wmi_handle: wmi handle
1942  * @pdev_id: pdev id
1943  *
1944  * Return: QDF_STATUS
1945  */
1946 QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
1947 		uint32_t pdev_id);
1948 
1949 QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1950 				struct set_country *param);
1951 
1952 #ifdef WLAN_FEATURE_ACTION_OUI
1953 /**
1954  * wmi_unified_send_action_oui_cmd() - send action oui cmd to fw
1955  * @wmi_hdl: wma handle
1956  * @req: wmi action oui message to be send
1957  *
1958  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1959  */
1960 QDF_STATUS
1961 wmi_unified_send_action_oui_cmd(void *wmi_hdl,
1962 				struct action_oui_request *req);
1963 #endif /* WLAN_FEATURE_ACTION_OUI */
1964 
1965 /*
1966  * wmi_unified_set_del_pmkid_cache() - set delete PMKID
1967  * @wmi_hdl: wma handle
1968  * @pmksa: pointer to pmk cache entry
1969  *
1970  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1971  */
1972 QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
1973 					struct wmi_unified_pmk_cache *pmksa);
1974 
1975 #if defined(WLAN_FEATURE_FILS_SK)
1976 /*
1977  * wmi_unified_roam_send_hlp_cmd() -send HLP command info
1978  * @wmi_hdl: wma handle
1979  * @req_buf: Pointer to HLP params
1980  *
1981  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1982  */
1983 QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
1984 					struct hlp_params *req_buf);
1985 #endif
1986 
1987 /**
1988  * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
1989  * @wmi_hdl: wma handle
1990  * @get_rcpi_param: rcpi params
1991  *
1992  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1993  */
1994 QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
1995 					struct rcpi_req *get_rcpi_param);
1996 
1997 /**
1998  * wmi_extract_rcpi_response_event - api to extract RCPI event params
1999  * @wmi_handle: wma handle
2000  * @evt_buf: pointer to event buffer
2001  * @res: pointer to hold rcpi response from firmware
2002  *
2003  * Return: QDF_STATUS_SUCCESS for successful event parse
2004  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
2005  */
2006 QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
2007 					   struct rcpi_res *res);
2008 
2009 #ifdef WMI_INTERFACE_EVENT_LOGGING
2010 void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
2011 		       qdf_abstract_print *print, void *print_priv);
2012 
2013 void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2014 			      qdf_abstract_print *print, void *print_priv);
2015 
2016 void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
2017 			    qdf_abstract_print *print, void *print_priv);
2018 
2019 void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2020 				   qdf_abstract_print *print, void *print_priv);
2021 
2022 void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
2023 			 qdf_abstract_print *print, void *print_priv);
2024 
2025 void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
2026 			    qdf_abstract_print *print, void *print_priv);
2027 
2028 void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
2029 			      qdf_abstract_print *print, void *print_priv);
2030 
2031 #endif /* WMI_INTERFACE_EVENT_LOGGING */
2032 
2033 QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
2034 				struct wmi_dbs_scan_sel_params *wmi_param);
2035 
2036 QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
2037 		struct wmi_limit_off_chan_param *wmi_param);
2038 QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
2039 					 struct set_arp_stats *req_buf);
2040 QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
2041 					 struct get_arp_stats *req_buf);
2042 
2043 /**
2044  * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
2045  * @wmi_hdl: wmi handle
2046  * @bcn_ctrl_param: pointer to bcn_offload_control param
2047  *
2048  * Return: QDF_STATUS_SUCCESS for success or error code
2049  */
2050 QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
2051 			struct bcn_offload_control *bcn_ctrl_param);
2052 /**
2053  * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
2054  *  wds entries from FW
2055  * @wmi_hdl: wmi handle
2056  *
2057  * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
2058  *
2059  * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
2060  */
2061 
2062 QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
2063 
2064 /**
2065  * wmi_extract_wds_entry - api to extract wds entry
2066  * @wmi_hdl: wmi handle
2067  * @evt_buf: pointer to event buffer
2068  * @wds_entry: wds entry
2069  * @idx: index to point wds entry in event buffer
2070  *
2071  * Return: QDF_STATUS_SUCCESS for successful event parse
2072  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
2073  */
2074 
2075 QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
2076 			struct wdsentry *wds_entry, u_int32_t idx);
2077 
2078 #ifdef WLAN_FEATURE_NAN_CONVERGENCE
2079 /**
2080  * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
2081  * @wmi_hdl: wmi handle
2082  * @req: pointer to request buffer
2083  *
2084  * Return: status of operation
2085  */
2086 QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
2087 				struct nan_datapath_initiator_req *req);
2088 
2089 /**
2090  * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
2091  * @wmi_hdl: wmi handle
2092  * @req: pointer to request buffer
2093  *
2094  * Return: status of operation
2095  */
2096 QDF_STATUS wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
2097 				struct nan_datapath_responder_req *req);
2098 
2099 /**
2100  * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
2101  * @wmi_hdl: wmi handle
2102  * @req: pointer to request buffer
2103  *
2104  * Return: status of operation
2105  */
2106 QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
2107 				struct nan_datapath_end_req *req);
2108 
2109 /**
2110  * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
2111  * @wmi_hdl: wmi handle
2112  * @data: event buffer
2113  * @rsp: buffer to populate
2114  *
2115  * Return: status of operation
2116  */
2117 QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
2118 			uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
2119 
2120 /**
2121  * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
2122  * @wmi_hdl: wmi handle
2123  * @data: event buffer
2124  * @ind: buffer to populate
2125  *
2126  * Return: status of operation
2127  */
2128 QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
2129 			struct nan_datapath_indication_event *ind);
2130 
2131 /**
2132  * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
2133  * @wmi_hdl: wmi handle
2134  * @data: event buffer
2135  * @ev: buffer to populate
2136  *
2137  * Return: status of operation
2138  */
2139 QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
2140 			struct nan_datapath_confirm_event *ev);
2141 
2142 /**
2143  * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
2144  * @wmi_hdl: wmi handle
2145  * @data: event buffer
2146  * @rsp: buffer to populate
2147  *
2148  * Return: status of operation
2149  */
2150 QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
2151 			uint8_t *data, struct nan_datapath_responder_rsp *rsp);
2152 
2153 /**
2154  * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
2155  * @wmi_hdl: wmi handle
2156  * @data: event buffer
2157  * @rsp: buffer to populate
2158  *
2159  * Return: status of operation
2160  */
2161 QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
2162 			struct nan_datapath_end_rsp_event *rsp);
2163 
2164 /**
2165  * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
2166  * @wmi_hdl: wmi handle
2167  * @data: event buffer
2168  * @ind: buffer to populate
2169  *
2170  * Return: status of operation
2171  */
2172 QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
2173 			struct nan_datapath_end_indication_event **ind);
2174 
2175 /**
2176  * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
2177  * @wmi_hdl: wmi handle
2178  * @data: event buffer
2179  * @ind: buffer to populate
2180  *
2181  * Return: status of operation
2182  */
2183 QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
2184 				struct nan_datapath_sch_update_event *ind);
2185 #endif
2186 
2187 /**
2188  * wmi_unified_send_btm_config() - Send BTM config to fw
2189  * @wmi_hdl:  wmi handle
2190  * @params: pointer to wmi_btm_config
2191  *
2192  * Return: QDF_STATUS
2193  */
2194 QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
2195 				       struct wmi_btm_config *params);
2196 
2197 /**
2198  * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
2199  *  detection configuration to FW.
2200  * @wmi_hdl: wmi handle
2201  * @cfg: obss detection configuration
2202  *
2203  * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
2204  *
2205  * Return: QDF_STATUS
2206  */
2207 
2208 QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
2209 			struct wmi_obss_detection_cfg_param *cfg);
2210 
2211 /**
2212  * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
2213  *  detection info from FW.
2214  * @wmi_hdl: wmi handle
2215  * @data: event data from firmware
2216  * @info: Pointer to hold obss detection info
2217  *
2218  * This function is used to extract obss info from firmware.
2219  *
2220  * Return: QDF_STATUS
2221  */
2222 
2223 QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
2224 						   uint8_t *data,
2225 						   struct wmi_obss_detect_info
2226 						   *info);
2227 /**
2228  * wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
2229  *  color change enable to FW.
2230  * @wmi_hdl: wmi handle
2231  * @vdev_id: vdev ID
2232  * @enable: enable or disable color change handeling within firmware
2233  *
2234  * Send WMI_BSS_COLOR_CHANGE_ENABLE_CMDID parameters to fw,
2235  * thereby firmware updates bss color when AP announces bss color change.
2236  *
2237  * Return: QDF_STATUS
2238  */
2239 
2240 QDF_STATUS wmi_unified_send_bss_color_change_enable_cmd(void *wmi_hdl,
2241 							uint32_t vdev_id,
2242 							bool enable);
2243 
2244 /**
2245  * wmi_unified_send_obss_color_collision_cfg_cmd() - WMI function to send bss
2246  *  color collision detection configuration to FW.
2247  * @wmi_hdl: wmi handle
2248  * @cfg: obss color collision detection configuration
2249  *
2250  * Send WMI_OBSS_COLOR_COLLISION_DET_CONFIG_CMDID parameters to fw.
2251  *
2252  * Return: QDF_STATUS
2253  */
2254 
2255 QDF_STATUS wmi_unified_send_obss_color_collision_cfg_cmd(void *wmi_hdl,
2256 		struct wmi_obss_color_collision_cfg_param *cfg);
2257 
2258 /**
2259  * wmi_unified_extract_obss_color_collision_info() - WMI function to extract
2260  *  obss color collision info from FW.
2261  * @wmi_hdl: wmi handle
2262  * @data: event data from firmware
2263  * @info: Pointer to hold bss color collision info
2264  *
2265  * This function is used to extract bss collision info from firmware.
2266  *
2267  * Return: QDF_STATUS
2268  */
2269 
2270 QDF_STATUS wmi_unified_extract_obss_color_collision_info(void *wmi_hdl,
2271 		uint8_t *data, struct wmi_obss_color_collision_info *info);
2272 
2273 #ifdef WLAN_SUPPORT_GREEN_AP
2274 QDF_STATUS wmi_extract_green_ap_egap_status_info(
2275 		void *wmi_hdl, uint8_t *evt_buf,
2276 		struct wlan_green_ap_egap_status_info *egap_status_info_params);
2277 #endif
2278 
2279 #ifdef WLAN_SUPPORT_FILS
2280 /**
2281  * wmi_unified_fils_vdev_config_send_cmd() - send FILS config cmd to fw
2282  * @wmi_hdl: wmi handle
2283  * @param:   fils config params
2284  *
2285  * Return: QDF_STATUS_SUCCESS for success or error code
2286  */
2287 QDF_STATUS
2288 wmi_unified_fils_vdev_config_send_cmd(void *wmi_hdl,
2289 				      struct config_fils_params *param);
2290 
2291 /**
2292  * wmi_extract_swfda_vdev_id() - api to extract vdev id
2293  * @wmi_hdl: wmi handle
2294  * @evt_buf: pointer to event buffer
2295  * @vdev_id: pointer to vdev id
2296  *
2297  * Return: QDF_STATUS_SUCCESS for success or error code
2298  */
2299 QDF_STATUS wmi_extract_swfda_vdev_id(void *wmi_hdl, void *evt_buf,
2300 				     uint32_t *vdev_id);
2301 
2302 /**
2303  * wmi_unified_fils_discovery_send_cmd() - send FILS discovery cmd to fw
2304  * @wmi_hdl: wmi handle
2305  * @param:   fils discovery params
2306  *
2307  * Return: QDF_STATUS_SUCCESS for success or error code
2308  */
2309 QDF_STATUS wmi_unified_fils_discovery_send_cmd(void *wmi_hdl,
2310 					       struct fd_params *param);
2311 #endif /* WLAN_SUPPORT_FILS */
2312 
2313 /**
2314  * wmi_unified_offload_11k_cmd() - send 11k offload command
2315  * @wmi_hdl: wmi handle
2316  * @params: 11k offload params
2317  *
2318  * This function passes the 11k offload command params to FW
2319  *
2320  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2321  */
2322 QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
2323 				struct wmi_11k_offload_params *params);
2324 /**
2325  * wmi_unified_invoke_neighbor_report_cmd() - send invoke neighbor report cmd
2326  * @wmi_hdl: wmi handle
2327  * @params: invoke neighbor report params
2328  *
2329  * This function passes the invoke neighbor report command to fw
2330  *
2331  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2332  */
2333 QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
2334 			struct wmi_invoke_neighbor_report_params *params);
2335 
2336 /* wmi_get_ch_width_from_phy_mode() - convert phy mode to channel width
2337  * @wmi_hdl: wmi handle
2338  * @phymode: phy mode
2339  *
2340  * Return: wmi channel width
2341  */
2342 wmi_host_channel_width wmi_get_ch_width_from_phy_mode(void *wmi_hdl,
2343 					WMI_HOST_WLAN_PHY_MODE phymode);
2344 
2345 #ifdef QCA_SUPPORT_CP_STATS
2346 /**
2347  * wmi_extract_cca_stats() - api to extract congestion stats from event buffer
2348  * @wmi_handle: wma handle
2349  * @evt_buf: event buffer
2350  * @datalen: length of buffer
2351  * @stats: buffer to populated after stats extraction
2352  *
2353  * Return: status of operation
2354  */
2355 QDF_STATUS wmi_extract_cca_stats(wmi_unified_t wmi_handle, void *evt_buf,
2356 				 struct wmi_host_congestion_stats *stats);
2357 #endif /* QCA_SUPPORT_CP_STATS */
2358 
2359 #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
2360 /**
2361  * wmi_unified_dfs_send_avg_params_cmd() - send average radar parameters cmd.
2362  * @wmi_hdl: wmi handle
2363  * @params: radar found params
2364  *
2365  * This function passes the average radar parameters to fw
2366  *
2367  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2368  */
2369 QDF_STATUS
2370 wmi_unified_dfs_send_avg_params_cmd(void *wmi_hdl,
2371 				    struct dfs_radar_found_params *params);
2372 
2373 /**
2374  * wmi_extract_dfs_status_from_fw() - extract host dfs status from fw.
2375  * @wmi_hdl: wmi handle
2376  * @evt_buf: pointer to event buffer
2377  * @dfs_status_check: pointer to the host dfs status
2378  *
2379  * This function extracts the result of host dfs from fw
2380  *
2381  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2382  */
2383 QDF_STATUS wmi_extract_dfs_status_from_fw(void *wmi_hdl, void *evt_buf,
2384 					  uint32_t  *dfs_status_check);
2385 #endif
2386 #ifdef OL_ATH_SMART_LOGGING
2387 /**
2388  * wmi_unified_send_smart_logging_enable_cmd() - send smart logging enable cmd
2389  * @wmi_hdl: wmi handle
2390  * @params: enable/disable
2391  *
2392  * This function enables/disable the smart logging feature
2393  *
2394  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2395  */
2396 QDF_STATUS wmi_unified_send_smart_logging_enable_cmd(void *wmi_hdl,
2397 						     uint32_t param);
2398 
2399 /**
2400  * wmi_unified_send_smart_logging_fatal_cmd() - send smart logging fatal cmd
2401  * @wmi_hdl: wmi handle
2402  * @param:  Fatal event
2403  *
2404  * This function sends the smart log fatal events to the FW
2405  *
2406  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2407  */
2408 QDF_STATUS wmi_unified_send_smart_logging_fatal_cmd
2409 					(void *wmi_hdl,
2410 					struct wmi_debug_fatal_events *param);
2411 
2412 /**
2413  * wmi_extract_smartlog_ev() - extract smartlog event info from event
2414  * @wmi_handle: wmi handle
2415  * @param evt_buf: pointer to event buffer
2416  * @param ev: Pointer to hold fatal events
2417  *
2418  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2419  */
2420 QDF_STATUS wmi_extract_smartlog_ev
2421 				(void *wmi_hdl, void *evt_buf,
2422 				struct wmi_debug_fatal_events *ev);
2423 
2424 #endif /* OL_ATH_SMART_LOGGING */
2425 
2426 void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
2427 					    HTC_PACKET * htc_packet);
2428 
2429 #endif /* _WMI_UNIFIED_API_H_ */
2430