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