xref: /wlan-dirver/qca-wifi-host-cmn/wmi/inc/wmi_unified_api.h (revision 1b9674e21e24478fba4530f5ae7396b9555e9c6a)
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_set_atf_cmd_send(void *wmi_hdl,
1201 				struct set_atf_params *param);
1202 
1203 QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
1204 				struct fips_params *param);
1205 
1206 QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
1207 				struct wlan_profile_params *param);
1208 
1209 QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
1210 				struct wlan_profile_params *param);
1211 
1212 QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
1213 				struct channel_param *param);
1214 
1215 QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
1216 				struct ht_ie_params *param);
1217 
1218 QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
1219 				struct vht_ie_params *param);
1220 
1221 QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
1222 				struct wmm_update_params *param);
1223 
1224 QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
1225 				struct ant_switch_tbl_params *param);
1226 
1227 QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
1228 				struct ratepwr_table_params *param);
1229 
1230 QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
1231 
1232 QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
1233 				struct ctl_table_params *param);
1234 
1235 QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
1236 				struct mimogain_table_params *param);
1237 
1238 QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
1239 				struct ratepwr_chainmsk_params *param);
1240 
1241 QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1242 				struct macaddr_params *param);
1243 
1244 QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1245 
1246 QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1247 
1248 QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1249 				struct acparams_params *param);
1250 
1251 QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1252 				struct vap_dscp_tid_map_params *param);
1253 
1254 QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1255 				struct proxy_ast_reserve_params *param);
1256 
1257 QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
1258 				struct pdev_qvit_params *param);
1259 
1260 QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
1261 				struct mcast_group_update_params *param);
1262 
1263 QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1264 				struct peer_add_wds_entry_params *param);
1265 
1266 QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1267 				struct peer_del_wds_entry_params *param);
1268 
1269 /**
1270  *  wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
1271  *  @param wmi_hdl      : handle to WMI.
1272  *  @param param        : pointer to hold bridge mac addr param
1273  *
1274  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1275  */
1276 QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
1277 				struct set_bridge_mac_addr_params *param);
1278 
1279 
1280 QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1281 				struct peer_update_wds_entry_params *param);
1282 
1283 QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1284 
1285 QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1286 
1287 QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1288 
1289 QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1290 				struct smart_ant_enable_params *param);
1291 
1292 QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1293 				struct smart_ant_rx_ant_params *param);
1294 
1295 QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1296 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1297 				struct smart_ant_tx_ant_params *param);
1298 
1299 QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1300 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1301 				struct smart_ant_training_info_params *param);
1302 
1303 QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1304 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1305 				struct smart_ant_node_config_params *param);
1306 
1307 QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1308 			struct smart_ant_enable_tx_feedback_params *param);
1309 
1310 QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1311 				struct vdev_spectral_configure_params *param);
1312 
1313 QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1314 				struct vdev_spectral_enable_params *param);
1315 
1316 QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1317 				struct bss_chan_info_request_params *param);
1318 
1319 QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1320 				struct thermal_mitigation_params *param);
1321 
1322 QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1323 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1324 				struct set_neighbour_rx_params *param);
1325 
1326 QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1327 				struct set_fwtest_params *param);
1328 
1329 QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1330 				struct config_ratemask_params *param);
1331 
1332 /**
1333  *  wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
1334  *						       size command
1335  *  @param wmi_hdl      : handle to WMI.
1336  *  @param param        : pointer to hold custom aggr size param
1337  *
1338  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1339  */
1340 QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
1341 				struct set_custom_aggr_size_params *param);
1342 
1343 /**
1344  *  wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
1345  *  @param wmi_hdl      : handle to WMI.
1346  *  @param param        : pointer to hold set qdepth thresh param
1347  *
1348  *  @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1349  */
1350 QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
1351 				struct set_qdepth_thresh_params *param);
1352 
1353 QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1354 				struct pdev_set_regdomain_params *param);
1355 
1356 QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1357 				struct set_quiet_mode_params *param);
1358 
1359 QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1360 				struct set_beacon_filter_params *param);
1361 
1362 QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1363 				struct remove_beacon_filter_params *param);
1364 
1365 QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1366 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1367 				struct addba_clearresponse_params *param);
1368 
1369 QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1370 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1371 				struct addba_send_params *param);
1372 
1373 QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1374 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1375 				struct delba_send_params *param);
1376 
1377 QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1378 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1379 				struct addba_setresponse_params *param);
1380 
1381 QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1382 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1383 				struct singleamsdu_params *param);
1384 
1385 QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1386 				uint8_t macaddr[IEEE80211_ADDR_LEN],
1387 				struct set_qboost_params *param);
1388 
1389 QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1390 				struct mu_scan_params *param);
1391 
1392 QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1393 				struct lteu_config_params *param);
1394 
1395 QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1396 				struct set_ps_mode_params *param);
1397 
1398 QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1399 				struct wmi_init_cmd_param *param);
1400 
1401 bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1402 
1403 /**
1404  * wmi_save_service_bitmap() - save service bitmap
1405  * @wmi_handle: wmi handle
1406  * @param evt_buf: pointer to event buffer
1407  *
1408  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1409  */
1410 QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1411 				   void *bitmap_buf);
1412 
1413 /**
1414  * wmi_save_ext_service_bitmap() - save extended service bitmap
1415  * @wmi_handle: wmi handle
1416  * @param evt_buf: pointer to event buffer
1417  *
1418  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1419  */
1420 QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
1421 				   void *bitmap_buf);
1422 
1423 QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1424 
1425 QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1426 				void *evt_buf,
1427 				struct wlan_psoc_target_capability_info *ev);
1428 
1429 QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1430 			struct wlan_psoc_hal_reg_capability *hal_reg_cap);
1431 
1432 host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1433 				void *evt_buf, uint8_t *num_entries);
1434 
1435 uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1436 
1437 QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1438 				void *ev, uint8_t *macaddr);
1439 
1440 wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
1441 					      uint8_t *num_mac_addr);
1442 
1443 /**
1444  * wmi_extract_ready_params() - Extract data from ready event apart from
1445  *                     status, macaddr and version.
1446  * @wmi_handle: Pointer to WMI handle.
1447  * @evt_buf: Pointer to Ready event buffer.
1448  * @ev_param: Pointer to host defined struct to copy the data from event.
1449  *
1450  * Return: QDF_STATUS_SUCCESS on success.
1451  */
1452 QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
1453 		void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1454 
1455 QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1456 				void *ev, struct wmi_host_fw_ver *fw_ver);
1457 
1458 QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1459 				void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1460 
1461 QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1462 
1463 uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
1464 				void *evt_b, uint32_t *len);
1465 
1466 QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1467 				wmi_host_ext_resource_config *ext_cfg);
1468 
1469 QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl,
1470 						    uint8_t mac_id);
1471 
1472 QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1473 				struct packet_power_info_params *param);
1474 
1475 QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1476 				struct gpio_config_params *param);
1477 
1478 QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1479 				struct gpio_output_params *param);
1480 
1481 QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1482 				struct rtt_meas_req_test_params *param);
1483 
1484 QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1485 				struct rtt_meas_req_params *param);
1486 
1487 QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1488 				struct rtt_keepalive_req_params *param);
1489 
1490 QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1491 				struct lci_set_params *param);
1492 
1493 QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1494 				struct lcr_set_params *param);
1495 
1496 QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1497 			struct periodic_chan_stats_params *param);
1498 
1499 QDF_STATUS
1500 wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1501 			struct atf_peer_request_params *param);
1502 
1503 QDF_STATUS
1504 wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1505 			struct atf_grouping_params *param);
1506 /* Extract APIs */
1507 
1508 QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1509 		void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1510 
1511 QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
1512 		void *evt_buf, struct wmi_host_dcs_interference_param *param);
1513 
1514 QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1515 		wmi_host_ath_dcs_cw_int *cw_int);
1516 
1517 QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1518 		wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1519 
1520 QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
1521 		struct wmi_host_fips_event_param *param);
1522 
1523 QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1524 		wmi_host_vdev_start_resp *vdev_rsp);
1525 
1526 /**
1527  * wmi_extract_vdev_delete_resp - api to extract vdev delete
1528  * response event params
1529  * @wmi_handle: wma handle
1530  * @evt_buf: pointer to event buffer
1531  * @delele_rsp: pointer to hold delete response from firmware
1532  *
1533  * Return: QDF_STATUS_SUCCESS for successful event parse
1534  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1535  */
1536 QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
1537 		struct wmi_host_vdev_delete_resp *delele_rsp);
1538 
1539 QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1540 		uint8_t idx, struct tbttoffset_params *tbtt_param);
1541 
1542 QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
1543 		void *evt_buf, uint8_t idx,
1544 		struct tbttoffset_params *tbtt_param);
1545 
1546 QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1547 					    uint32_t *num_vdevs);
1548 
1549 QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1550 						uint32_t *num_vdevs);
1551 
1552 QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
1553 		struct mgmt_rx_event_params *hdr, uint8_t **bufp);
1554 
1555 QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1556 		uint32_t *vdev_id);
1557 
1558 QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1559 		wmi_host_roam_event *ev);
1560 
1561 QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1562 		struct scan_event *param);
1563 
1564 #ifdef CONVERGED_TDLS_ENABLE
1565 /**
1566  * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1567  * @wmi_handle: wmi handle
1568  * @param evt_buf: pointer to event buffer
1569  * @param param: Pointer to hold vdev tdls param
1570  *
1571  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1572  */
1573 QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1574 					  struct tdls_event_info *param);
1575 #endif
1576 
1577 QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1578 		wmi_host_mu_report_event *param);
1579 
1580 QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1581 		uint8_t idx, wmi_host_mu_db_entry *param);
1582 
1583 QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1584 		wmi_host_peer_txmu_cnt_event *param);
1585 
1586 QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1587 		void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1588 
1589 QDF_STATUS
1590 wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
1591 				  struct esp_estimation_event *param);
1592 
1593 QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1594 		void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1595 
1596 QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1597 		wmi_host_pdev_tpc_config_event *param);
1598 
1599 QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1600 		void *evt_buf, uint32_t *gpio_num);
1601 
1602 QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1603 		void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
1604 
1605 QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1606 		wmi_host_pdev_nfcal_power_all_channels_event *param);
1607 
1608 QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1609 		wmi_host_pdev_tpc_event *param);
1610 
1611 QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1612 		void *evt_buf,
1613 		wmi_host_pdev_generic_buffer_event *param);
1614 
1615 QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1616 		wmi_host_mgmt_tx_compl_event *param);
1617 
1618 QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
1619 		struct wmi_host_offchan_data_tx_compl_event *param);
1620 
1621 QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
1622 		void *evt_buf,
1623 		struct pdev_csa_switch_count_status *param);
1624 
1625 QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
1626 		uint32_t *num_vdevs);
1627 
1628 QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1629 		 uint32_t idx, wmi_host_tim_info *tim_info);
1630 
1631 QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1632 			uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1633 
1634 #ifdef CONVERGED_P2P_ENABLE
1635 QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1636 		void *evt_buf, struct p2p_lo_event *param);
1637 
1638 QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1639 		void *evt_buf, struct p2p_noa_info *param);
1640 #endif
1641 
1642 QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1643 		void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1644 
1645 QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1646 		wmi_host_peer_sta_kickout_event *ev);
1647 
1648 QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1649 		uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1650 
1651 QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1652 		 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1653 
1654 QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1655 		wmi_host_rtt_event_hdr *ev);
1656 
1657 QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1658 		wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1659 		uint16_t hdump_len);
1660 
1661 QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1662 		wmi_host_rtt_error_report_event *ev);
1663 
1664 QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1665 		uint32_t index, wmi_host_chan_stats *chan_stats);
1666 
1667 QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1668 		uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
1669 
1670 QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1671 		uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1672 
1673 QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1674 			uint16_t datalen, uint16_t *buf_offset,
1675 			wmi_host_phyerr_t *phyerr);
1676 
1677 QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1678 			uint16_t datalen, uint16_t *buf_offset,
1679 			wmi_host_phyerr_t *phyerr);
1680 
1681 QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1682 			uint16_t datalen, wmi_host_phyerr_t *phyerr);
1683 
1684 QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1685 			wmi_host_wlan_profile_ctx_t *profile_ctx);
1686 
1687 QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
1688 			wmi_host_wlan_profile_t *profile_data);
1689 
1690 QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1691 			wmi_host_chan_info_event *chan_info);
1692 
1693 QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1694 			wmi_host_pdev_channel_hopping_event *ch_hopping);
1695 
1696 QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1697 					   wmi_host_stats_event *stats_param);
1698 
1699 QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1700 					 uint32_t index,
1701 					 wmi_host_pdev_stats *pdev_stats);
1702 
1703 QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
1704 			wmi_unit_test_event *unit_test, uint32_t maxspace);
1705 
1706 QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1707 			uint32_t index,
1708 			wmi_host_pdev_ext_stats *pdev_ext_stats);
1709 
1710 QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1711 			uint32_t index,
1712 			wmi_host_peer_extd_stats *peer_extd_stats);
1713 
1714 QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1715 			wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1716 
1717 QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1718 			wmi_host_inst_stats_resp *inst_rssi_resp);
1719 
1720 QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1721 		uint32_t index, wmi_host_peer_stats *peer_stats);
1722 
1723 QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1724 		wmi_host_tx_data_traffic_ctrl_event *ev);
1725 
1726 QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1727 		wmi_host_atf_peer_stats_event *ev);
1728 
1729 QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
1730 		uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
1731 
1732 QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1733 		uint32_t index, wmi_host_vdev_stats *vdev_stats);
1734 
1735 QDF_STATUS wmi_extract_per_chain_rssi_stats(void *wmi_hdl, void *evt_buf,
1736 	uint32_t index, struct wmi_host_per_chain_rssi_stats *rssi_stats);
1737 
1738 QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1739 		uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
1740 
1741 QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
1742 		uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
1743 
1744 /**
1745  * wmi_extract_vdev_nac_rssi_stats() - extract NAC_RSSI stats from event
1746  * @wmi_handle: wmi handle
1747  * @param evt_buf: pointer to event buffer
1748  * @param vdev_extd_stats: Pointer to hold nac rssi stats
1749  *
1750  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1751  */
1752 QDF_STATUS wmi_extract_vdev_nac_rssi_stats(void *wmi_hdl, void *evt_buf,
1753 		struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
1754 
1755 QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1756 				struct wmi_power_dbg_params *param);
1757 
1758 QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
1759 				struct multiple_vdev_restart_params *param);
1760 
1761 /**
1762  * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
1763  * @wmi_hdl: wmi handle
1764  * @params: sar limit command params
1765  *
1766  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1767  */
1768 QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1769 					  struct sar_limit_cmd_params *params);
1770 
1771 /**
1772  * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
1773  * @wmi_hdl: wmi handle
1774  *
1775  * Return: QDF_STATUS_SUCCESS for success or error code
1776  */
1777 QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
1778 
1779 /**
1780  * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
1781  * @wmi_hdl: wmi handle
1782  * @evt_buf: event buffer received from firmware
1783  * @event: SAR limit event which is to be populated by data extracted from
1784  *         the @evt_buf buffer
1785  *
1786  * Return: QDF_STATUS_SUCCESS for success or error code
1787  */
1788 QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
1789 					       uint8_t *evt_buf,
1790 					       struct sar_limit_event *event);
1791 
1792 /**
1793  * wmi_unified_extract_sar2_result_event() - extract SAR limits from FW event
1794  * @handle: wmi handle
1795  * @event: event buffer received from firmware
1796  * @len: length of the event buffer
1797  *
1798  * Return: QDF_STATUS_SUCCESS for success or error code
1799  */
1800 QDF_STATUS wmi_unified_extract_sar2_result_event(void *handle,
1801 						 uint8_t *event, uint32_t len);
1802 
1803 /**
1804  * wmi_extract_sar_cap_service_ready_ext() - extract SAR cap from
1805  *					     FW service ready event
1806  * @wmi_hdl: wmi handle
1807  * @evt_buf: event buffer received from firmware
1808  * @ext_param: extended target info
1809  *
1810  * Return: QDF_STATUS_SUCCESS for success or error code
1811  */
1812 QDF_STATUS wmi_extract_sar_cap_service_ready_ext(
1813 			void *wmi_hdl,
1814 			uint8_t *evt_buf,
1815 			struct wlan_psoc_host_service_ext_param *ext_param);
1816 
1817 QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1818 				   struct wmi_adaptive_dwelltime_params *
1819 				   wmi_param);
1820 QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1821 				   struct set_fwtest_params *wmi_fwtest);
1822 
1823 QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1824 					struct rx_reorder_queue_setup_params *param);
1825 QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1826 					struct rx_reorder_queue_remove_params *param);
1827 
1828 QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
1829 		struct wlan_psoc_host_service_ext_param *param);
1830 QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1831 			void *wmi_hdl,
1832 			uint8_t *evt_buf, uint8_t hw_mode_idx,
1833 			struct wlan_psoc_host_hw_mode_caps *param);
1834 QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1835 			void *wmi_hdl,
1836 			uint8_t *evt_buf,
1837 			uint8_t hw_mode_id,
1838 			uint8_t phy_id,
1839 			struct wlan_psoc_host_mac_phy_caps *param);
1840 QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1841 			void *wmi_hdl,
1842 			uint8_t *evt_buf, uint8_t phy_idx,
1843 			struct wlan_psoc_host_hal_reg_capabilities_ext *param);
1844 
1845 /**
1846  * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
1847  *                                             capability received through
1848  *                                             extended service ready event
1849  * @wmi_hdl: WMI handle
1850  * @evt_buf: Event buffer
1851  * @idx: Index of the module for which capability is received
1852  * @param: Pointer to direct buffer rx ring cap struct
1853  *
1854  * Return: QDF status of operation
1855  */
1856 QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
1857 			void *wmi_hdl,
1858 			uint8_t *evt_buf, uint8_t idx,
1859 			struct wlan_psoc_host_dbr_ring_caps *param);
1860 
1861 /**
1862  * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
1863  *                                     from buffer release event
1864  * @wmi_hdl: WMI handle
1865  * @evt_buf: Event buffer
1866  * @param: Pointer to direct buffer rx response struct
1867  *
1868  * Return: QDF status of operation
1869  */
1870 QDF_STATUS wmi_extract_dbr_buf_release_fixed(
1871 			void *wmi_hdl,
1872 			uint8_t *evt_buf,
1873 			struct direct_buf_rx_rsp *param);
1874 
1875 /**
1876  * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
1877  *
1878  * @wmi_hdl: WMI handle
1879  * @evt_buf: Event buffer
1880  * @idx: Index of the module for which capability is received
1881  * @param: Pointer to direct buffer rx entry
1882  *
1883  * Return: QDF status of operation
1884  */
1885 QDF_STATUS wmi_extract_dbr_buf_release_entry(
1886 			void *wmi_hdl,
1887 			uint8_t *evt_buf, uint8_t idx,
1888 			struct direct_buf_rx_entry *param);
1889 
1890 /**
1891  * wmi_extract_dbr_buf_metadata: Extract direct buffer metadata
1892  *
1893  * @wmi_hdl: WMI handle
1894  * @evt_buf: Event buffer
1895  * @idx: Index of the module for which capability is received
1896  * @param: Pointer to direct buffer metadata
1897  *
1898  * Return: QDF status of operation
1899  */
1900 QDF_STATUS wmi_extract_dbr_buf_metadata(
1901 			void *wmi_hdl,
1902 			uint8_t *evt_buf, uint8_t idx,
1903 			struct direct_buf_rx_metadata *param);
1904 
1905 QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1906 				      uint8_t *evt_buf,
1907 				      struct wmi_host_pdev_utf_event *param);
1908 
1909 QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1910 				      uint8_t *evt_buf,
1911 				      struct wmi_host_pdev_qvit_event *param);
1912 
1913 QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1914 		uint8_t *evt_buf,
1915 		struct wmi_host_peer_delete_response_event *param);
1916 
1917 QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1918 		struct wlan_psoc_host_chainmask_table *chainmask_table);
1919 /**
1920  * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1921  * @wmi_handle: wmi handle
1922  * @pdev_id: pdev id
1923  *
1924  * Return: QDF_STATUS
1925  */
1926 QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1927 		uint32_t pdev_id);
1928 
1929 /**
1930  * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable 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_dis_cmd(void *wmi_hdl,
1937 		uint32_t pdev_id);
1938 
1939 QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1940 				struct set_country *param);
1941 
1942 #ifdef WLAN_FEATURE_ACTION_OUI
1943 /**
1944  * wmi_unified_send_action_oui_cmd() - send action oui cmd to fw
1945  * @wmi_hdl: wma handle
1946  * @req: wmi action oui message to be send
1947  *
1948  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1949  */
1950 QDF_STATUS
1951 wmi_unified_send_action_oui_cmd(void *wmi_hdl,
1952 				struct action_oui_request *req);
1953 #endif /* WLAN_FEATURE_ACTION_OUI */
1954 
1955 /*
1956  * wmi_unified_set_del_pmkid_cache() - set delete PMKID
1957  * @wmi_hdl: wma handle
1958  * @pmksa: pointer to pmk cache entry
1959  *
1960  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1961  */
1962 QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
1963 					struct wmi_unified_pmk_cache *pmksa);
1964 
1965 #if defined(WLAN_FEATURE_FILS_SK)
1966 /*
1967  * wmi_unified_roam_send_hlp_cmd() -send HLP command info
1968  * @wmi_hdl: wma handle
1969  * @req_buf: Pointer to HLP params
1970  *
1971  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1972  */
1973 QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
1974 					struct hlp_params *req_buf);
1975 #endif
1976 
1977 /**
1978  * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
1979  * @wmi_hdl: wma handle
1980  * @get_rcpi_param: rcpi params
1981  *
1982  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1983  */
1984 QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
1985 					struct rcpi_req *get_rcpi_param);
1986 
1987 /**
1988  * wmi_extract_rcpi_response_event - api to extract RCPI event params
1989  * @wmi_handle: wma handle
1990  * @evt_buf: pointer to event buffer
1991  * @res: pointer to hold rcpi response from firmware
1992  *
1993  * Return: QDF_STATUS_SUCCESS for successful event parse
1994  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1995  */
1996 QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
1997 					   struct rcpi_res *res);
1998 
1999 #ifdef WMI_INTERFACE_EVENT_LOGGING
2000 void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
2001 		       qdf_abstract_print *print, void *print_priv);
2002 
2003 void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2004 			      qdf_abstract_print *print, void *print_priv);
2005 
2006 void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
2007 			    qdf_abstract_print *print, void *print_priv);
2008 
2009 void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2010 				   qdf_abstract_print *print, void *print_priv);
2011 
2012 void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
2013 			 qdf_abstract_print *print, void *print_priv);
2014 
2015 void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
2016 			    qdf_abstract_print *print, void *print_priv);
2017 
2018 void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
2019 			      qdf_abstract_print *print, void *print_priv);
2020 
2021 #endif /* WMI_INTERFACE_EVENT_LOGGING */
2022 
2023 QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
2024 				struct wmi_dbs_scan_sel_params *wmi_param);
2025 
2026 QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
2027 		struct wmi_limit_off_chan_param *wmi_param);
2028 QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
2029 					 struct set_arp_stats *req_buf);
2030 QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
2031 					 struct get_arp_stats *req_buf);
2032 
2033 /**
2034  * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
2035  * @wmi_hdl: wmi handle
2036  * @bcn_ctrl_param: pointer to bcn_offload_control param
2037  *
2038  * Return: QDF_STATUS_SUCCESS for success or error code
2039  */
2040 QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
2041 			struct bcn_offload_control *bcn_ctrl_param);
2042 /**
2043  * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
2044  *  wds entries from FW
2045  * @wmi_hdl: wmi handle
2046  *
2047  * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
2048  *
2049  * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
2050  */
2051 
2052 QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
2053 
2054 /**
2055  * wmi_extract_wds_entry - api to extract wds entry
2056  * @wmi_hdl: wmi handle
2057  * @evt_buf: pointer to event buffer
2058  * @wds_entry: wds entry
2059  * @idx: index to point wds entry in event buffer
2060  *
2061  * Return: QDF_STATUS_SUCCESS for successful event parse
2062  *         else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
2063  */
2064 
2065 QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
2066 			struct wdsentry *wds_entry, u_int32_t idx);
2067 
2068 #ifdef WLAN_FEATURE_NAN_CONVERGENCE
2069 /**
2070  * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
2071  * @wmi_hdl: wmi handle
2072  * @req: pointer to request buffer
2073  *
2074  * Return: status of operation
2075  */
2076 QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
2077 				struct nan_datapath_initiator_req *req);
2078 
2079 /**
2080  * wmi_unified_ndp_responder_req_cmd_send - api to send responder 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_responder_req_cmd_send(void *wmi_hdl,
2087 				struct nan_datapath_responder_req *req);
2088 
2089 /**
2090  * wmi_unified_ndp_end_req_cmd_send - api to send end 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_end_req_cmd_send(void *wmi_hdl,
2097 				struct nan_datapath_end_req *req);
2098 
2099 /**
2100  * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
2101  * @wmi_hdl: wmi handle
2102  * @data: event buffer
2103  * @rsp: buffer to populate
2104  *
2105  * Return: status of operation
2106  */
2107 QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
2108 			uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
2109 
2110 /**
2111  * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
2112  * @wmi_hdl: wmi handle
2113  * @data: event buffer
2114  * @ind: buffer to populate
2115  *
2116  * Return: status of operation
2117  */
2118 QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
2119 			struct nan_datapath_indication_event *ind);
2120 
2121 /**
2122  * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
2123  * @wmi_hdl: wmi handle
2124  * @data: event buffer
2125  * @ev: buffer to populate
2126  *
2127  * Return: status of operation
2128  */
2129 QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
2130 			struct nan_datapath_confirm_event *ev);
2131 
2132 /**
2133  * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
2134  * @wmi_hdl: wmi handle
2135  * @data: event buffer
2136  * @rsp: buffer to populate
2137  *
2138  * Return: status of operation
2139  */
2140 QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
2141 			uint8_t *data, struct nan_datapath_responder_rsp *rsp);
2142 
2143 /**
2144  * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
2145  * @wmi_hdl: wmi handle
2146  * @data: event buffer
2147  * @rsp: buffer to populate
2148  *
2149  * Return: status of operation
2150  */
2151 QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
2152 			struct nan_datapath_end_rsp_event *rsp);
2153 
2154 /**
2155  * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
2156  * @wmi_hdl: wmi handle
2157  * @data: event buffer
2158  * @ind: buffer to populate
2159  *
2160  * Return: status of operation
2161  */
2162 QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
2163 			struct nan_datapath_end_indication_event **ind);
2164 
2165 /**
2166  * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
2167  * @wmi_hdl: wmi handle
2168  * @data: event buffer
2169  * @ind: buffer to populate
2170  *
2171  * Return: status of operation
2172  */
2173 QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
2174 				struct nan_datapath_sch_update_event *ind);
2175 #endif
2176 
2177 /**
2178  * wmi_unified_send_btm_config() - Send BTM config to fw
2179  * @wmi_hdl:  wmi handle
2180  * @params: pointer to wmi_btm_config
2181  *
2182  * Return: QDF_STATUS
2183  */
2184 QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
2185 				       struct wmi_btm_config *params);
2186 
2187 /**
2188  * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
2189  *  detection configuration to FW.
2190  * @wmi_hdl: wmi handle
2191  * @cfg: obss detection configuration
2192  *
2193  * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
2194  *
2195  * Return: QDF_STATUS
2196  */
2197 
2198 QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
2199 			struct wmi_obss_detection_cfg_param *cfg);
2200 
2201 /**
2202  * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
2203  *  detection info from FW.
2204  * @wmi_hdl: wmi handle
2205  * @data: event data from firmware
2206  * @info: Pointer to hold obss detection info
2207  *
2208  * This function is used to extract obss info from firmware.
2209  *
2210  * Return: QDF_STATUS
2211  */
2212 
2213 QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
2214 						   uint8_t *data,
2215 						   struct wmi_obss_detect_info
2216 						   *info);
2217 /**
2218  * wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
2219  *  color change enable to FW.
2220  * @wmi_hdl: wmi handle
2221  * @vdev_id: vdev ID
2222  * @enable: enable or disable color change handeling within firmware
2223  *
2224  * Send WMI_BSS_COLOR_CHANGE_ENABLE_CMDID parameters to fw,
2225  * thereby firmware updates bss color when AP announces bss color change.
2226  *
2227  * Return: QDF_STATUS
2228  */
2229 
2230 QDF_STATUS wmi_unified_send_bss_color_change_enable_cmd(void *wmi_hdl,
2231 							uint32_t vdev_id,
2232 							bool enable);
2233 
2234 /**
2235  * wmi_unified_send_obss_color_collision_cfg_cmd() - WMI function to send bss
2236  *  color collision detection configuration to FW.
2237  * @wmi_hdl: wmi handle
2238  * @cfg: obss color collision detection configuration
2239  *
2240  * Send WMI_OBSS_COLOR_COLLISION_DET_CONFIG_CMDID parameters to fw.
2241  *
2242  * Return: QDF_STATUS
2243  */
2244 
2245 QDF_STATUS wmi_unified_send_obss_color_collision_cfg_cmd(void *wmi_hdl,
2246 		struct wmi_obss_color_collision_cfg_param *cfg);
2247 
2248 /**
2249  * wmi_unified_extract_obss_color_collision_info() - WMI function to extract
2250  *  obss color collision info from FW.
2251  * @wmi_hdl: wmi handle
2252  * @data: event data from firmware
2253  * @info: Pointer to hold bss color collision info
2254  *
2255  * This function is used to extract bss collision info from firmware.
2256  *
2257  * Return: QDF_STATUS
2258  */
2259 
2260 QDF_STATUS wmi_unified_extract_obss_color_collision_info(void *wmi_hdl,
2261 		uint8_t *data, struct wmi_obss_color_collision_info *info);
2262 
2263 #ifdef WLAN_SUPPORT_GREEN_AP
2264 QDF_STATUS wmi_extract_green_ap_egap_status_info(
2265 		void *wmi_hdl, uint8_t *evt_buf,
2266 		struct wlan_green_ap_egap_status_info *egap_status_info_params);
2267 #endif
2268 
2269 #ifdef WLAN_SUPPORT_FILS
2270 /**
2271  * wmi_unified_fils_vdev_config_send_cmd() - send FILS config cmd to fw
2272  * @wmi_hdl: wmi handle
2273  * @param:   fils config params
2274  *
2275  * Return: QDF_STATUS_SUCCESS for success or error code
2276  */
2277 QDF_STATUS
2278 wmi_unified_fils_vdev_config_send_cmd(void *wmi_hdl,
2279 				      struct config_fils_params *param);
2280 
2281 /**
2282  * wmi_extract_swfda_vdev_id() - api to extract vdev id
2283  * @wmi_hdl: wmi handle
2284  * @evt_buf: pointer to event buffer
2285  * @vdev_id: pointer to vdev id
2286  *
2287  * Return: QDF_STATUS_SUCCESS for success or error code
2288  */
2289 QDF_STATUS wmi_extract_swfda_vdev_id(void *wmi_hdl, void *evt_buf,
2290 				     uint32_t *vdev_id);
2291 
2292 /**
2293  * wmi_unified_fils_discovery_send_cmd() - send FILS discovery cmd to fw
2294  * @wmi_hdl: wmi handle
2295  * @param:   fils discovery params
2296  *
2297  * Return: QDF_STATUS_SUCCESS for success or error code
2298  */
2299 QDF_STATUS wmi_unified_fils_discovery_send_cmd(void *wmi_hdl,
2300 					       struct fd_params *param);
2301 #endif /* WLAN_SUPPORT_FILS */
2302 
2303 /**
2304  * wmi_unified_offload_11k_cmd() - send 11k offload command
2305  * @wmi_hdl: wmi handle
2306  * @params: 11k offload params
2307  *
2308  * This function passes the 11k offload command params to FW
2309  *
2310  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2311  */
2312 QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
2313 				struct wmi_11k_offload_params *params);
2314 /**
2315  * wmi_unified_invoke_neighbor_report_cmd() - send invoke neighbor report cmd
2316  * @wmi_hdl: wmi handle
2317  * @params: invoke neighbor report params
2318  *
2319  * This function passes the invoke neighbor report command to fw
2320  *
2321  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2322  */
2323 QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
2324 			struct wmi_invoke_neighbor_report_params *params);
2325 
2326 /* wmi_get_ch_width_from_phy_mode() - convert phy mode to channel width
2327  * @wmi_hdl: wmi handle
2328  * @phymode: phy mode
2329  *
2330  * Return: wmi channel width
2331  */
2332 wmi_host_channel_width wmi_get_ch_width_from_phy_mode(void *wmi_hdl,
2333 					WMI_HOST_WLAN_PHY_MODE phymode);
2334 
2335 #ifdef QCA_SUPPORT_CP_STATS
2336 /**
2337  * wmi_extract_cca_stats() - api to extract congestion stats from event buffer
2338  * @wmi_handle: wma handle
2339  * @evt_buf: event buffer
2340  * @datalen: length of buffer
2341  * @stats: buffer to populated after stats extraction
2342  *
2343  * Return: status of operation
2344  */
2345 QDF_STATUS wmi_extract_cca_stats(wmi_unified_t wmi_handle, void *evt_buf,
2346 				 struct wmi_host_congestion_stats *stats);
2347 #endif /* QCA_SUPPORT_CP_STATS */
2348 
2349 #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
2350 /**
2351  * wmi_unified_dfs_send_avg_params_cmd() - send average radar parameters cmd.
2352  * @wmi_hdl: wmi handle
2353  * @params: radar found params
2354  *
2355  * This function passes the average radar parameters to fw
2356  *
2357  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2358  */
2359 QDF_STATUS
2360 wmi_unified_dfs_send_avg_params_cmd(void *wmi_hdl,
2361 				    struct dfs_radar_found_params *params);
2362 
2363 /**
2364  * wmi_extract_dfs_status_from_fw() - extract host dfs status from fw.
2365  * @wmi_hdl: wmi handle
2366  * @evt_buf: pointer to event buffer
2367  * @dfs_status_check: pointer to the host dfs status
2368  *
2369  * This function extracts the result of host dfs from fw
2370  *
2371  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2372  */
2373 QDF_STATUS wmi_extract_dfs_status_from_fw(void *wmi_hdl, void *evt_buf,
2374 					  uint32_t  *dfs_status_check);
2375 #endif
2376 #ifdef OL_ATH_SMART_LOGGING
2377 /**
2378  * wmi_unified_send_smart_logging_enable_cmd() - send smart logging enable cmd
2379  * @wmi_hdl: wmi handle
2380  * @params: enable/disable
2381  *
2382  * This function enables/disable the smart logging feature
2383  *
2384  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2385  */
2386 QDF_STATUS wmi_unified_send_smart_logging_enable_cmd(void *wmi_hdl,
2387 						     uint32_t param);
2388 
2389 /**
2390  * wmi_unified_send_smart_logging_fatal_cmd() - send smart logging fatal cmd
2391  * @wmi_hdl: wmi handle
2392  * @param:  Fatal event
2393  *
2394  * This function sends the smart log fatal events to the FW
2395  *
2396  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2397  */
2398 QDF_STATUS wmi_unified_send_smart_logging_fatal_cmd
2399 					(void *wmi_hdl,
2400 					struct wmi_debug_fatal_events *param);
2401 
2402 /**
2403  * wmi_extract_smartlog_ev() - extract smartlog event info from event
2404  * @wmi_handle: wmi handle
2405  * @param evt_buf: pointer to event buffer
2406  * @param ev: Pointer to hold fatal events
2407  *
2408  * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2409  */
2410 QDF_STATUS wmi_extract_smartlog_ev
2411 				(void *wmi_hdl, void *evt_buf,
2412 				struct wmi_debug_fatal_events *ev);
2413 
2414 #endif /* OL_ATH_SMART_LOGGING */
2415 
2416 void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
2417 					    HTC_PACKET * htc_packet);
2418 
2419 #endif /* _WMI_UNIFIED_API_H_ */
2420