1  /*
2   * Copyright (c) 2013-2021 The Linux Foundation. All rights reserved.
3   * Copyright (c) 2021-2024 Qualcomm Innovation Center, Inc. All rights reserved.
4   *
5   * Permission to use, copy, modify, and/or distribute this software for
6   * any purpose with or without fee is hereby granted, provided that the
7   * above copyright notice and this permission notice appear in all
8   * copies.
9   *
10   * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11   * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12   * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13   * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14   * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15   * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16   * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17   * PERFORMANCE OF THIS SOFTWARE.
18   */
19  
20  /*
21   * This file contains the API definitions for the Unified Wireless
22   * Module Interface (WMI).
23   */
24  #ifndef _WMI_UNIFIED_PRIV_H_
25  #define _WMI_UNIFIED_PRIV_H_
26  #include <osdep.h>
27  #include "wmi_unified_api.h"
28  #include "wmi_unified_param.h"
29  #include "wlan_scan_ucfg_api.h"
30  #include "qdf_atomic.h"
31  #include <wbuff.h>
32  
33  #ifdef WLAN_FW_OFFLOAD
34  #include "wlan_fwol_public_structs.h"
35  #endif
36  
37  #ifdef DFS_COMPONENT_ENABLE
38  #include <wlan_dfs_public_struct.h>
39  #endif
40  #include <qdf_threads.h>
41  #ifdef WLAN_SUPPORT_GREEN_AP
42  #include "wlan_green_ap_api.h"
43  #endif
44  
45  #ifdef WLAN_FEATURE_NAN
46  #include "nan_public_structs.h"
47  #endif
48  
49  #ifdef WLAN_SUPPORT_TWT
50  #include "wmi_unified_twt_param.h"
51  #endif
52  
53  #ifdef WMI_SMART_ANT_SUPPORT
54  #include "wmi_unified_smart_ant_param.h"
55  #endif
56  
57  #ifdef WMI_DBR_SUPPORT
58  #include "wmi_unified_dbr_param.h"
59  #endif
60  
61  #ifdef WMI_ATF_SUPPORT
62  #include "wmi_unified_atf_param.h"
63  #endif
64  
65  #ifdef WDS_CONV_TARGET_IF_OPS_ENABLE
66  #include "wmi_unified_wds_param.h"
67  #endif
68  
69  #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
70  #include <wlan_interop_issues_ap_public_structs.h>
71  #endif
72  
73  #ifdef WLAN_CFR_ENABLE
74  #include <wmi_unified_cfr_param.h>
75  #endif
76  
77  #ifdef DCS_INTERFERENCE_DETECTION
78  #include <wlan_dcs_public_structs.h>
79  #endif
80  
81  #ifdef WLAN_FEATURE_PKT_CAPTURE
82  #include "wlan_pkt_capture_public_structs.h"
83  #endif
84  
85  #ifdef WLAN_CONV_SPECTRAL_ENABLE
86  #include "wlan_spectral_public_structs.h"
87  #endif /* WLAN_CONV_SPECTRAL_ENABLE */
88  
89  #ifdef WLAN_FEATURE_ROAM_OFFLOAD
90  #include <wlan_cm_roam_public_struct.h>
91  #include <wlan_mlme_public_struct.h>
92  #endif
93  
94  #ifdef WMI_AP_SUPPORT
95  #include <wmi_unified_ap_params.h>
96  #endif
97  
98  #ifdef WLAN_FEATURE_11BE_MLO
99  #include <wmi_unified_11be_param.h>
100  #include "wlan_mlo_mgr_public_structs.h"
101  #include <wlan_mlo_mgr_link_switch.h>
102  #endif
103  
104  #if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
105  #include <wlan_twt_public_structs.h>
106  #endif
107  
108  #ifdef WLAN_FEATURE_DBAM_CONFIG
109  #include "wlan_coex_public_structs.h"
110  #endif
111  
112  #ifdef WLAN_FEATURE_COAP
113  #include "wlan_coap_public_structs.h"
114  #endif
115  
116  #ifdef QCA_TARGET_IF_MLME
117  #include "wmi_unified_mlme_api.h"
118  #endif
119  
120  #ifdef WLAN_FEATURE_LL_LT_SAP
121  #include "wlan_ll_sap_public_structs.h"
122  #endif
123  
124  #define WMI_UNIFIED_MAX_EVENT 0x100
125  
126  #ifdef WMI_EXT_DBG
127  
128  #define WMI_EXT_DBG_DIR			"WMI_EXT_DBG"
129  #define WMI_EXT_DBG_FILE		"wmi_log"
130  #define WMI_EXT_DBG_FILE_PERM		(QDF_FILE_USR_READ | \
131  					 QDF_FILE_GRP_READ | \
132  					 QDF_FILE_OTH_READ)
133  #define WMI_EXT_DBG_QUEUE_SIZE		1024
134  #define WMI_EXT_DBG_DUMP_ROW_SIZE	16
135  #define WMI_EXT_DBG_DUMP_GROUP_SIZE	1
136  
137  
138  /**
139   * enum WMI_MSG_TYPE - WMI message types
140   * @WMI_MSG_TYPE_CMD: Message is of type WMI command
141   * @WMI_MSG_TYPE_EVENT: Message is of type WMI event
142   */
143  enum WMI_MSG_TYPE {
144  	WMI_MSG_TYPE_CMD = 0,
145  	WMI_MSG_TYPE_EVENT,
146  };
147  
148  /**
149   * struct wmi_ext_dbg_msg - WMI command/event msg details
150   * @node: qdf list node of wmi messages
151   * @len: command/event message length
152   * @ts: Time of WMI command/event handling
153   * @type: message type
154   * @buf: command/event buffer
155   */
156  struct wmi_ext_dbg_msg {
157  	qdf_list_node_t node;
158  	uint32_t len;
159  	uint64_t ts;
160  	enum WMI_MSG_TYPE type;
161  	uint8_t buf[];
162  };
163  #endif /*WMI_EXT_DBG */
164  
165  #define wmi_alert(params...) QDF_TRACE_FATAL(QDF_MODULE_ID_WMI, ## params)
166  #define wmi_err(params...) QDF_TRACE_ERROR(QDF_MODULE_ID_WMI, ## params)
167  #define wmi_warn(params...) QDF_TRACE_WARN(QDF_MODULE_ID_WMI, ## params)
168  #define wmi_info(params...) QDF_TRACE_INFO(QDF_MODULE_ID_WMI, ## params)
169  #define wmi_debug(params...) QDF_TRACE_DEBUG(QDF_MODULE_ID_WMI, ## params)
170  
171  #define wmi_nofl_alert(params...) \
172  	QDF_TRACE_FATAL_NO_FL(QDF_MODULE_ID_WMI, ## params)
173  #define wmi_nofl_err(params...) \
174  	QDF_TRACE_ERROR_NO_FL(QDF_MODULE_ID_WMI, ## params)
175  #define wmi_nofl_warn(params...) \
176  	QDF_TRACE_WARN_NO_FL(QDF_MODULE_ID_WMI, ## params)
177  #define wmi_nofl_info(params...) \
178  	QDF_TRACE_INFO_NO_FL(QDF_MODULE_ID_WMI, ## params)
179  #define wmi_nofl_info_high(params...) \
180  	QDF_TRACE_INFO_HIGH_NO_FL(QDF_MODULE_ID_WMI, ## params)
181  #define wmi_nofl_debug(params...) \
182  	QDF_TRACE_DEBUG_NO_FL(QDF_MODULE_ID_WMI, ## params)
183  
184  #define wmi_alert_rl(params...) QDF_TRACE_FATAL_RL(QDF_MODULE_ID_WMI, params)
185  #define wmi_err_rl(params...) QDF_TRACE_ERROR_RL(QDF_MODULE_ID_WMI, params)
186  #define wmi_warn_rl(params...) QDF_TRACE_WARN_RL(QDF_MODULE_ID_WMI, params)
187  #define wmi_info_rl(params...) QDF_TRACE_INFO_RL(QDF_MODULE_ID_WMI, params)
188  #define wmi_debug_rl(params...) QDF_TRACE_DEBUG_RL(QDF_MODULE_ID_WMI, params)
189  
190  #ifdef WMI_INTERFACE_EVENT_LOGGING
191  /* wmi entry size */
192  #ifndef WMI_DEBUG_ENTRY_MAX_LENGTH
193  #define WMI_DEBUG_ENTRY_MAX_LENGTH (16)
194  #endif
195  
196  /* wmi commands */
197  #ifndef WMI_CMD_DEBUG_MAX_ENTRY
198  #define WMI_CMD_DEBUG_MAX_ENTRY (1024)
199  #endif
200  #ifndef WMI_CMD_CMPL_DEBUG_MAX_ENTRY
201  #define WMI_CMD_CMPL_DEBUG_MAX_ENTRY (1024)
202  #endif
203  
204  /* wmi events */
205  #ifndef WMI_EVENT_DEBUG_MAX_ENTRY
206  #define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
207  #endif
208  
209  /* wmi mgmt Tx */
210  #ifndef WMI_MGMT_TX_DEBUG_MAX_ENTRY
211  #define WMI_MGMT_TX_DEBUG_MAX_ENTRY (256)
212  #endif
213  #ifndef WMI_MGMT_TX_CMPL_DEBUG_MAX_ENTRY
214  #define WMI_MGMT_TX_CMPL_DEBUG_MAX_ENTRY (256)
215  #endif
216  
217  /* wmi mgmt Rx */
218  #ifndef WMI_MGMT_RX_DEBUG_MAX_ENTRY
219  #define WMI_MGMT_RX_DEBUG_MAX_ENTRY (256)
220  #endif
221  
222  /* wmi diag rx events max buffer */
223  #ifndef WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY
224  #define WMI_DIAG_RX_EVENT_DEBUG_MAX_ENTRY (256)
225  #endif
226  
227  /* wmi filtered command event */
228  #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
229  #ifndef WMI_FILTERED_CMD_EVT_SUPPORTED
230  #define WMI_FILTERED_CMD_EVT_SUPPORTED (10)
231  #endif
232  
233  #ifndef WMI_FILTERED_CMD_EVT_MAX_NUM_ENTRY
234  #define WMI_FILTERED_CMD_EVT_MAX_NUM_ENTRY (1024)
235  #endif
236  #endif /* WMI_INTERFACE_FILTERED_EVENT_LOGGING */
237  
238  /**
239   * struct wmi_command_debug - WMI command log buffer data type
240   * @command: Store WMI Command id
241   * @data: Stores WMI command data
242   * @time: Time of WMI command handling
243   */
244  struct wmi_command_debug {
245  	uint32_t command;
246  	/* WMI cmd data excluding TLV and WMI headers */
247  	uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
248  	uint64_t time;
249  };
250  
251  /**
252   * struct wmi_command_cmp_debug - WMI command completion log buffer data type
253   * @command: Store WMI Command id
254   * @data: Stores WMI command data
255   * @time: Time of WMI command handling
256   * @dma_addr: dma address of the WMI buffer
257   * @phy_addr: physical address of the WMI buffer
258   */
259  struct wmi_command_cmp_debug {
260  	uint32_t command;
261  	/* WMI cmd data excluding TLV and WMI headers */
262  	uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
263  	uint64_t time;
264  	qdf_dma_addr_t dma_addr;
265  	uint64_t phy_addr;
266  };
267  
268  /**
269   * struct wmi_event_debug - WMI event log buffer data type
270   * @event: Store WMI Event id
271   * @data: Stores WMI Event data
272   * @time: Time of WMI Event handling
273   */
274  struct wmi_event_debug {
275  	uint32_t event;
276  	/* WMI event data excluding TLV header */
277  	uint32_t data[WMI_DEBUG_ENTRY_MAX_LENGTH / sizeof(uint32_t)];
278  	uint64_t time;
279  };
280  
281  /**
282   * struct wmi_command_header - Type for accessing frame data
283   * @type: 802.11 Frame type
284   * @sub_type: 802.11 Frame subtype
285   * @prot_ver: 802.11 Version
286   */
287  struct wmi_command_header {
288  #ifndef ANI_LITTLE_BIT_ENDIAN
289  
290  	uint32_t sub_type:4;
291  	uint32_t type:2;
292  	uint32_t prot_ver:2;
293  
294  #else
295  
296  	uint32_t prot_ver:2;
297  	uint32_t type:2;
298  	uint32_t sub_type:4;
299  
300  #endif
301  
302  };
303  
304  /**
305   * struct wmi_log_buf_t - WMI log buffer information type
306   * @buf: Reference to WMI log buffer
307   * @length: length of buffer
308   * @buf_tail_idx: Tail index of buffer
309   * @p_buf_tail_idx: reference to buffer tail index. It is added to accommodate
310   * unified design since MCL uses global variable for buffer tail index
311   * @size: the size of the buffer in number of entries
312   */
313  struct wmi_log_buf_t {
314  	void *buf;
315  	uint32_t length;
316  	uint32_t buf_tail_idx;
317  	uint32_t *p_buf_tail_idx;
318  	uint32_t size;
319  };
320  
321  /**
322   * struct wmi_debug_log_info - Meta data to hold information of all buffers
323   * used for WMI logging
324   * @wmi_command_log_buf_info: Buffer info for WMI Command log
325   * @wmi_command_tx_cmp_log_buf_info: Buffer info for WMI Command Tx completion
326   * log
327   * @wmi_event_log_buf_info: Buffer info for WMI Event log
328   * @wmi_rx_event_log_buf_info: Buffer info for WMI event received log
329   * @wmi_mgmt_command_log_buf_info: Buffer info for WMI Management Command log
330   * @wmi_mgmt_command_tx_cmp_log_buf_info: Buffer info for WMI Management
331   * Command Tx completion log
332   * @wmi_mgmt_event_log_buf_info: Buffer info for WMI Management event log
333   * @wmi_diag_event_log_buf_info: Buffer info for WMI diag event log
334   * @wmi_record_lock: Lock WMI recording
335   * @wmi_logging_enable: Enable/Disable state for WMI logging
336   * @wmi_id_to_name: Function reference to API to convert Command id to
337   * string name
338   * @wmi_log_debugfs_dir: reference to debugfs directory
339   * @filtered_wmi_cmds: Buffer to save inputs from user on
340   * which WMI commands to record
341   * @filtered_wmi_cmds_idx: target cmd index
342   * @filtered_wmi_evts: Buffer to save inputs from user on
343   * which WMI event to record
344   * @filtered_wmi_evts_idx: target evt index
345   * @wmi_filtered_command_log: buffer to record user specified WMI commands
346   * @wmi_filtered_event_log: buffer to record user specified WMI events
347   */
348  struct wmi_debug_log_info {
349  	struct wmi_log_buf_t wmi_command_log_buf_info;
350  	struct wmi_log_buf_t wmi_command_tx_cmp_log_buf_info;
351  
352  	struct wmi_log_buf_t wmi_event_log_buf_info;
353  	struct wmi_log_buf_t wmi_rx_event_log_buf_info;
354  
355  	struct wmi_log_buf_t wmi_mgmt_command_log_buf_info;
356  	struct wmi_log_buf_t wmi_mgmt_command_tx_cmp_log_buf_info;
357  	struct wmi_log_buf_t wmi_mgmt_event_log_buf_info;
358  	struct wmi_log_buf_t wmi_diag_event_log_buf_info;
359  
360  	qdf_spinlock_t wmi_record_lock;
361  	bool wmi_logging_enable;
362  	struct dentry *wmi_log_debugfs_dir;
363  
364  #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
365  	uint32_t *filtered_wmi_cmds;
366  	uint32_t filtered_wmi_cmds_idx;
367  	uint32_t *filtered_wmi_evts;
368  	uint32_t filtered_wmi_evts_idx;
369  	struct wmi_log_buf_t *wmi_filtered_command_log;
370  	struct wmi_log_buf_t *wmi_filtered_event_log;
371  #endif
372  };
373  
374  /**
375   * enum WMI_RECORD_TYPE - User specified WMI logging types
376   * @WMI_CMD: wmi command id
377   * @WMI_EVT: wmi event id
378   */
379  enum WMI_RECORD_TYPE {
380  	WMI_CMD = 1,
381  	WMI_EVT = 2,
382  };
383  
384  #endif /*WMI_INTERFACE_EVENT_LOGGING */
385  
386  #ifdef WLAN_DBGLOG_DEBUGFS
387  struct fwdebug {
388  	struct sk_buff_head fwlog_queue;
389  	struct completion fwlog_completion;
390  	A_BOOL fwlog_open;
391  };
392  #endif /* WLAN_DBGLOG_DEBUGFS */
393  
394  /**
395   * struct wmi_wq_dbg_info - WMI WQ debug info
396   * @wd_msg_type_id: wmi event id
397   * @wmi_wq: WMI workqueue struct
398   * @task: WMI workqueue task struct
399   */
400  struct wmi_wq_dbg_info {
401  	uint32_t wd_msg_type_id;
402  	qdf_workqueue_t *wmi_wq;
403  	qdf_thread_t *task;
404  };
405  
406  struct wmi_ops {
407  #if defined(CONN_MGR_ADV_FEATURE) && \
408  	    (defined(WLAN_FEATURE_HOST_ROAM) || \
409  		     defined(WLAN_FEATURE_ROAM_OFFLOAD))
410  QDF_STATUS
411  (*extract_roam_event)(wmi_unified_t wmi_handle, void *evt_buf, uint32_t len,
412  		      struct roam_offload_roam_event *roam_event);
413  #endif
414  
415  #ifdef WLAN_FEATURE_ROAM_OFFLOAD
416  QDF_STATUS
417  (*extract_roam_btm_response_stats)(wmi_unified_t wmi_handle, void *evt_buf,
418  				   struct roam_btm_response_data *dst,
419  				   uint8_t idx);
420  
421  QDF_STATUS
422  (*extract_roam_initial_info)(wmi_unified_t wmi_handle, void *evt_buf,
423  			     struct roam_initial_data *dst, uint8_t idx);
424  
425  QDF_STATUS
426  (*extract_roam_msg_info)(wmi_unified_t wmi_handle, void *evt_buf,
427  			 struct roam_msg_info *dst, uint8_t idx);
428  
429  QDF_STATUS
430  (*extract_roam_frame_info)(wmi_unified_t wmi_handle, void *evt_buf,
431  			   struct roam_frame_stats *dst, uint8_t idx,
432  			   uint8_t num_frames);
433  /**
434   * extract_roam_sync_event  - Extract roam sync event func ptr
435   * @wmi_handle: WMI handle
436   * @evt_buf: Event buffer
437   * @len: evt buffer data len
438   * @sync_ind: roam sync ptr
439   *
440   * This api will allocate memory for roam sync info, extract
441   * the information sent by FW and pass to CM.The memory will be
442   * freed by target_if_cm_roam_sync_event.
443   *
444   * Return: QDF_STATUS
445   */
446  QDF_STATUS
447  (*extract_roam_sync_event)(wmi_unified_t wmi_handle, void *evt_buf,
448  			   uint32_t len,
449  			   struct roam_offload_synch_ind **sync_ind);
450  
451  QDF_STATUS
452  (*extract_roam_sync_frame_event)(wmi_unified_t wmi_handle, void *event,
453  				 uint32_t len,
454  				 struct roam_synch_frame_ind *frame_ptr);
455  
456  QDF_STATUS
457  (*extract_btm_dl_event)(wmi_unified_t wmi_handle,
458  			uint8_t *event, uint32_t data_len,
459  			struct roam_denylist_event **dst_list);
460  QDF_STATUS
461  (*extract_vdev_disconnect_event)(wmi_unified_t wmi_handle,
462  				 uint8_t *event, uint32_t data_len,
463  				 struct vdev_disconnect_event_data *data);
464  QDF_STATUS
465  (*extract_roam_scan_chan_list)(wmi_unified_t wmi_handle,
466  			       uint8_t *event, uint32_t data_len,
467  			       struct cm_roam_scan_ch_resp **data);
468  QDF_STATUS
469  (*extract_roam_stats_event)(wmi_unified_t wmi_handle,
470  			    uint8_t *event, uint32_t data_len,
471  			    struct roam_stats_event **data);
472  QDF_STATUS
473  (*extract_auth_offload_event)(wmi_unified_t wmi_handle,
474  			      uint8_t *event, uint32_t data_len,
475  			      struct auth_offload_event *auth_event);
476  QDF_STATUS
477  (*extract_roam_pmkid_request)(wmi_unified_t wmi_handle,
478  			      uint8_t *event, uint32_t data_len,
479  			      struct roam_pmkid_req_event **list);
480  QDF_STATUS
481  (*extract_roam_candidate_frame)(wmi_unified_t wmi_handle,
482  				uint8_t *event, uint32_t data_len,
483  				struct roam_scan_candidate_frame *data);
484  #ifdef WLAN_VENDOR_HANDOFF_CONTROL
485  /**
486   * extract_roam_vendor_control_param_event  - Extract vendor handoff param event
487   * function pointer
488   * @wmi_handle: WMI handle
489   * @event: Event buffer
490   * @data_len: evt buffer data len
491   * @vendor_handoff_params: vendor handoff param buffer pointer
492   *
493   * Return: QDF_STATUS
494   */
495  QDF_STATUS
496  (*extract_roam_vendor_control_param_event)(wmi_unified_t wmi_handle,
497  		uint8_t *event, uint32_t data_len,
498  		struct roam_vendor_handoff_params **vendor_handoff_params);
499  #endif
500  
501  #ifdef WLAN_FEATURE_11BE_MLO
502  /**
503   * extract_roam_synch_key_event() - Extract Roam synch key event
504   * @wmi_handle: WMI Handle
505   * @event: Event buffer
506   * @data_len: Event data length
507   * @keys: Destination buffer to fill the keys
508   * @num_keys: Number of keys
509   * @mld_addr: Peer MLD address
510   *
511   * Return: QDF_STATUS
512   */
513  QDF_STATUS
514  (*extract_roam_synch_key_event) (wmi_unified_t wmi_handle, uint8_t *event,
515  				 uint32_t data_len,
516  				 struct wlan_crypto_key_entry **keys,
517  				 uint8_t *num_keys,
518  				 struct qdf_mac_addr *mld_addr);
519  #endif
520  
521  QDF_STATUS
522  (*extract_peer_oper_mode_event)(wmi_unified_t wmi_handle,
523  				uint8_t *event, uint32_t data_len,
524  				struct peer_oper_mode_event *data);
525  #endif
526  
527  #ifdef FEATURE_MEC_OFFLOAD
528  QDF_STATUS
529  (*send_pdev_set_mec_timer_cmd)(struct wmi_unified *wmi_handle,
530  			       struct set_mec_timer_params *param);
531  #endif
532  QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
533  				 uint8_t macaddr[QDF_MAC_ADDR_SIZE],
534  				 struct vdev_create_params *param);
535  
536  QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
537  					  uint8_t if_id);
538  
539  QDF_STATUS (*send_vdev_nss_chain_params_cmd)(wmi_unified_t wmi_handle,
540  					 uint8_t vdev_id,
541  					 struct vdev_nss_chains *user_cfg);
542  
543  QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
544  				 struct vdev_stop_params *params);
545  
546  QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
547  			uint8_t vdev_id);
548  
549  QDF_STATUS (*send_vdev_start_cmd)(wmi_unified_t wmi,
550  		struct vdev_start_params *req);
551  
552  QDF_STATUS (*send_vdev_set_nac_rssi_cmd)(wmi_unified_t wmi,
553  		struct vdev_scan_nac_rssi_params *req);
554  
555  QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
556  					 uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
557  					 struct peer_flush_params *param);
558  
559  QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
560  				   uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
561  				   struct peer_delete_cmd_params *param);
562  
563  QDF_STATUS (*send_peer_delete_all_cmd)(
564  				wmi_unified_t wmi,
565  				struct peer_delete_all_params *param);
566  
567  QDF_STATUS
568  (*send_peer_unmap_conf_cmd)(wmi_unified_t wmi,
569  			    uint8_t vdev_id,
570  			    uint32_t peer_id_cnt,
571  			    uint16_t *peer_id_list);
572  
573  QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
574  				uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
575  				struct peer_set_params *param);
576  
577  QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
578  			     uint8_t bssid[QDF_MAC_ADDR_SIZE],
579  				 struct vdev_up_params *params);
580  
581  QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
582  					struct peer_create_params *param);
583  
584  #ifdef WLAN_SUPPORT_GREEN_AP
585  QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
586  				   uint32_t value, uint8_t pdev_id);
587  
588  QDF_STATUS (*extract_green_ap_egap_status_info)(
589  		uint8_t *evt_buf,
590  		struct wlan_green_ap_egap_status_info *egap_status_info_params);
591  #if defined(WLAN_SUPPORT_GAP_LL_PS_MODE)
592  QDF_STATUS (*send_green_ap_ll_ps_cmd)(wmi_unified_t wmi_handle,
593  				      struct green_ap_ll_ps_cmd_param *ll_ps_params);
594  #endif
595  #endif
596  
597  #ifdef WLAN_SUPPORT_GAP_LL_PS_MODE
598  QDF_STATUS (*extract_green_ap_ll_ps_param)(
599  		uint8_t *evt_buf,
600  		struct wlan_green_ap_ll_ps_event_param *ll_ps_params);
601  #endif
602  
603  QDF_STATUS
604  (*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
605  				struct pdev_utf_params *param,
606  				uint8_t mac_id);
607  
608  QDF_STATUS
609  (*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
610  			   struct pdev_params *param,
611  				uint8_t mac_id);
612  QDF_STATUS
613  (*send_multiple_pdev_param_cmd)(wmi_unified_t wmi_handle,
614  				struct set_multiple_pdev_vdev_param *params);
615  
616  QDF_STATUS
617  (*send_pdev_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
618  			     uint32_t hw_mode_index);
619  
620  QDF_STATUS
621  (*send_pdev_set_rf_path_cmd)(wmi_unified_t wmi_handle,
622  			     uint32_t hw_mode_index, uint8_t pdev_id);
623  
624  QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
625  				struct suspend_params *param,
626  				uint8_t mac_id);
627  
628  QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
629  				uint8_t mac_id);
630  
631  #ifdef FEATURE_WLAN_D0WOW
632  QDF_STATUS (*send_d0wow_enable_cmd)(wmi_unified_t wmi_handle,
633  				uint8_t mac_id);
634  QDF_STATUS (*send_d0wow_disable_cmd)(wmi_unified_t wmi_handle,
635  				uint8_t mac_id);
636  #endif
637  
638  #if defined(WLAN_FEATURE_ROAM_OFFLOAD) && defined(FEATURE_DENYLIST_MGR)
639  QDF_STATUS
640  (*send_reject_ap_list_cmd)(struct wmi_unified *wmi_handle,
641  			   struct reject_ap_params *reject_params);
642  #endif
643  
644  QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
645  				struct wow_cmd_params *param,
646  				uint8_t mac_id);
647  
648  QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
649  					   uint8_t *peer_addr,
650  					   struct ap_ps_params *param);
651  
652  QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
653  					   struct sta_ps_params *param);
654  
655  QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
656  			 struct crash_inject *param);
657  
658  QDF_STATUS
659  (*send_dbglog_cmd)(wmi_unified_t wmi_handle,
660  				struct dbglog_params *dbglog_param);
661  
662  QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
663  				struct vdev_set_params *param);
664  
665  QDF_STATUS
666  (*send_multiple_vdev_param_cmd)(wmi_unified_t wmi_handle,
667  				struct set_multiple_pdev_vdev_param *params);
668  
669  QDF_STATUS (*send_vdev_set_mu_snif_cmd)(wmi_unified_t wmi_handle,
670  					struct vdev_set_mu_snif_param *param);
671  
672  QDF_STATUS (*send_vdev_sifs_trigger_cmd)(wmi_unified_t wmi_handle,
673  					 struct sifs_trigger_param *param);
674  
675  QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
676  				uint8_t macaddr[QDF_MAC_ADDR_SIZE],
677  				struct stats_request_params *param);
678  
679  #ifdef QCA_SUPPORT_MC_CP_STATS
680  QDF_STATUS (*send_request_peer_stats_info_cmd)(wmi_unified_t wmi_handle,
681  				struct peer_stats_request_params *param);
682  #endif /* QCA_SUPPORT_MC_CP_STATS */
683  
684  QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
685  			WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
686  
687  QDF_STATUS (*send_packet_log_disable_cmd)(wmi_unified_t wmi_handle,
688  	uint8_t mac_id);
689  
690  QDF_STATUS (*send_fd_tmpl_cmd)(wmi_unified_t wmi_handle,
691  				struct fils_discovery_tmpl_params *param);
692  
693  QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
694  				struct beacon_params *param);
695  
696  QDF_STATUS (*send_beacon_tmpl_send_cmd)(wmi_unified_t wmi_handle,
697  				struct beacon_tmpl_params *param);
698  
699  QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
700  				struct peer_assoc_params *param);
701  
702  QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
703  				struct scan_req_params *param);
704  
705  QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
706  				struct scan_cancel_param *param);
707  
708  QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
709  				struct scan_chan_list_params *param);
710  
711  QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
712  				struct wmi_mgmt_params *param);
713  
714  QDF_STATUS (*send_offchan_data_tx_cmd)(wmi_unified_t wmi_handle,
715  				struct wmi_offchan_data_tx_params *param);
716  
717  QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
718  		uint32_t param_value);
719  
720  QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
721  			       uint32_t vdev_id, uint8_t val);
722  
723  QDF_STATUS (*send_idle_roam_monitor_cmd)(wmi_unified_t wmi_handle,
724  					 uint8_t val);
725  
726  QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
727  
728  #ifdef CONVERGED_P2P_ENABLE
729  QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
730  		struct p2p_ps_params *oppps);
731  
732  QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
733  			struct p2p_ps_params *noa);
734  
735  #ifdef FEATURE_P2P_LISTEN_OFFLOAD
736  QDF_STATUS (*send_p2p_lo_start_cmd)(wmi_unified_t wmi_handle,
737  			struct p2p_lo_start *param);
738  
739  QDF_STATUS (*send_p2p_lo_stop_cmd)(wmi_unified_t wmi_handle,
740  			uint8_t vdev_id);
741  #endif /* FEATURE_P2P_LISTEN_OFFLOAD */
742  #endif /* CONVERGED_P2P_ENABLE */
743  
744  QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
745  			  uint8_t vdev_id,
746  			  int value);
747  
748  QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
749  			uint8_t vdev_id, int value);
750  
751  QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
752  				struct sta_uapsd_trig_params *param);
753  
754  #ifdef WLAN_FEATURE_DSRC
755  QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
756  				struct ocb_utc_param *utc);
757  
758  QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
759  			  uint8_t vdev_id);
760  
761  QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
762  	struct ocb_timing_advert_param *timing_advert);
763  
764  QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
765  	struct ocb_timing_advert_param *timing_advert);
766  
767  QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
768  		     struct ocb_dcc_get_stats_param *get_stats_param);
769  
770  QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
771  				uint32_t vdev_id, uint32_t dcc_stats_bitmap);
772  
773  QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
774  		       struct ocb_dcc_update_ndl_param *update_ndl_param);
775  
776  QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
777  		  struct ocb_config *config);
778  QDF_STATUS (*extract_ocb_chan_config_resp)(wmi_unified_t wmi_hdl,
779  					   void *evt_buf,
780  					   uint32_t *status);
781  QDF_STATUS (*extract_ocb_tsf_timer)(wmi_unified_t wmi_hdl,
782  				    void *evt_buf,
783  				    struct ocb_get_tsf_timer_response *resp);
784  QDF_STATUS (*extract_dcc_update_ndl_resp)(wmi_unified_t wmi_hdl,
785  		void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
786  QDF_STATUS (*extract_dcc_stats)(wmi_unified_t wmi_hdl,
787  				void *evt_buf,
788  				struct ocb_dcc_get_stats_response **response);
789  #endif /* WLAN_FEATURE_DSRC */
790  QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
791  	 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
792  
793  QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
794  				struct thermal_cmd_params *thermal_info);
795  
796  QDF_STATUS (*send_peer_rate_report_cmd)(wmi_unified_t wmi_handle,
797  	 struct wmi_peer_rate_report_params *rate_report_params);
798  
799  #ifdef WMI_CONCURRENCY_SUPPORT
800  QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
801  	(wmi_unified_t wmi_handle,
802  	uint32_t adapter_1_chan_freq,
803  	uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
804  
805  QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
806  	(wmi_unified_t wmi_handle,
807  	uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
808  
809  QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
810  		  wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
811  		  uint32_t pdev_id);
812  
813  #ifdef WLAN_FEATURE_MCC_QUOTA
814  QDF_STATUS (*extract_mcc_quota_ev_param)(wmi_unified_t wmi_handle,
815  					 void *evt_buf,
816  					 struct mcc_quota_info *param);
817  #endif
818  #endif /* WMI_CONCURRENCY_SUPPORT */
819  
820  QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
821  				    uint32_t vdev_id, uint8_t *p2p_ie);
822  
823  QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
824  			     uint8_t vdev_id,
825  			     struct wmi_probe_resp_params *probe_rsp_info);
826  
827  QDF_STATUS (*send_setup_install_key_cmd)(wmi_unified_t wmi_handle,
828  				struct set_key_params *key_params);
829  
830  QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
831  					struct wifi_passpoint_req_param *req);
832  
833  #ifdef WMI_ROAM_SUPPORT
834  #ifdef FEATURE_LFR_SUBNET_DETECTION
835  QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
836  					struct gateway_update_req_param *req);
837  #endif /* FEATURE_LFR_SUBNET_DETECTION */
838  
839  #ifdef FEATURE_RSSI_MONITOR
840  QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
841  					struct rssi_monitor_param *req);
842  #endif /* FEATURE_RSSI_MONITOR */
843  
844  QDF_STATUS (*send_roam_scan_offload_rssi_thresh_cmd)(
845  			wmi_unified_t wmi_handle,
846  			struct wlan_roam_offload_scan_rssi_params *roam_req);
847  
848  QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(
849  				wmi_unified_t wmi_handle,
850  				struct wlan_roam_scan_period_params *params);
851  
852  QDF_STATUS (*send_roam_mawc_params_cmd)(
853  				wmi_unified_t wmi_handle,
854  				struct wlan_roam_mawc_params *params);
855  
856  QDF_STATUS (*send_roam_scan_filter_cmd)(wmi_unified_t wmi_handle,
857  				struct roam_scan_filter_params *roam_req);
858  
859  QDF_STATUS (*send_roam_scan_offload_mode_cmd)(
860  		wmi_unified_t wmi_handle,
861  		struct wlan_roam_scan_offload_params *rso_cfg);
862  
863  QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
864  				    struct ap_profile_params *ap_profile);
865  
866  QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
867  				 uint32_t command, uint32_t vdev_id);
868  
869  QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(
870  			wmi_unified_t wmi_handle,
871  			struct wlan_roam_scan_channel_list *rso_ch_info);
872  
873  QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(
874  				wmi_unified_t wmi_handle,
875  				struct wlan_roam_rssi_change_params *params);
876  
877  QDF_STATUS (*send_per_roam_config_cmd)(wmi_unified_t wmi_handle,
878  		struct wlan_per_roam_config_req *req_buf);
879  
880  QDF_STATUS (*send_offload_11k_cmd)(wmi_unified_t wmi_handle,
881  		struct wlan_roam_11k_offload_params *params);
882  
883  QDF_STATUS (*send_invoke_neighbor_report_cmd)(wmi_unified_t wmi_handle,
884  		struct wmi_invoke_neighbor_report_params *params);
885  
886  QDF_STATUS (*send_roam_bss_load_config)(
887  				wmi_unified_t wmi_handle,
888  				struct wlan_roam_bss_load_config *params);
889  
890  QDF_STATUS (*send_disconnect_roam_params)(wmi_unified_t wmi_handle,
891  			struct wlan_roam_disconnect_params *req);
892  
893  QDF_STATUS (*send_idle_roam_params)(wmi_unified_t wmi_handle,
894  				    struct wlan_roam_idle_params *req);
895  #ifdef WLAN_FEATURE_11BE_MLO
896  QDF_STATUS (*send_roam_mlo_config)(wmi_unified_t wmi_handle,
897  				   struct wlan_roam_mlo_config *req);
898  #endif
899  
900  QDF_STATUS (*send_roam_preauth_status)(wmi_unified_t wmi_handle,
901  				struct wmi_roam_auth_status_params *params);
902  
903  QDF_STATUS (*send_btm_config)(wmi_unified_t wmi_handle,
904  			      struct wlan_roam_btm_config *params);
905  
906  QDF_STATUS (*send_limit_off_chan_cmd)(wmi_unified_t wmi_handle,
907  		struct wmi_limit_off_chan_param *limit_off_chan_param);
908  
909  #ifdef WLAN_FEATURE_FILS_SK
910  QDF_STATUS (*send_roam_scan_hlp_cmd) (wmi_unified_t wmi_handle,
911  				struct hlp_params *params);
912  #endif /* WLAN_FEATURE_FILS_SK */
913  
914  #ifdef FEATURE_WLAN_ESE
915  QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
916  		 const struct plm_req_params *plm);
917  
918  QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
919  				 const struct plm_req_params *plm);
920  #endif /* FEATURE_WLAN_ESE */
921  
922  #ifdef WLAN_FEATURE_ROAM_OFFLOAD
923  QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
924  			uint8_t is_add_ts);
925  
926  QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
927  		 uint8_t vdev_id);
928  
929  #ifdef WLAN_VENDOR_HANDOFF_CONTROL
930  QDF_STATUS (*send_process_roam_vendor_handoff_req_cmd)(wmi_unified_t wmi_handle,
931  					uint8_t vdev_id, uint32_t param_id);
932  #endif
933  
934  QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
935  		struct roam_invoke_req *roaminvoke);
936  
937  QDF_STATUS (*send_set_roam_trigger_cmd)(wmi_unified_t wmi_handle,
938  					struct wlan_roam_triggers *triggers);
939  #endif /* WLAN_FEATURE_ROAM_OFFLOAD */
940  #endif /* WMI_ROAM_SUPPORT */
941  
942  QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
943  			  struct scan_mac_oui *psetoui);
944  
945  QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
946  					struct wifi_passpoint_req_param *req);
947  
948  QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
949  		struct wifi_enhanced_pno_params *req);
950  
951  QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
952  			  struct extscan_capabilities_params *pgetcapab);
953  
954  QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
955  			  struct extscan_cached_result_params *pcached_results);
956  
957  QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
958  			  struct extscan_capabilities_reset_params *reset_req);
959  
960  QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
961  		struct extscan_set_sig_changereq_params *
962  		psigchange);
963  
964  QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
965  		struct extscan_bssid_hotlist_reset_params *photlist_reset);
966  
967  QDF_STATUS (*send_extscan_start_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
968  		struct extscan_bssid_hotlist_set_params *params);
969  
970  QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
971  		  struct extscan_stop_req_params *pstopcmd);
972  
973  QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
974  		    struct wifi_scan_cmd_req_params *pstart);
975  
976  QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
977  			uint8_t vdev_id);
978  
979  QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
980  
981  QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
982  		   struct pno_scan_req_params *pno);
983  
984  QDF_STATUS (*send_obss_disable_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
985  
986  QDF_STATUS (*send_nlo_mawc_cmd)(wmi_unified_t wmi_handle,
987  		struct nlo_mawc_params *params);
988  
989  #ifdef IPA_OFFLOAD
990  QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
991  		struct ipa_uc_offload_control_params *ipa_offload);
992  #endif
993  
994  #ifdef WLAN_FEATURE_LINK_LAYER_STATS
995  QDF_STATUS (*send_process_ll_stats_clear_cmd)(wmi_unified_t wmi_handle,
996  				const struct ll_stats_clear_params *clear_req);
997  
998  QDF_STATUS (*send_process_ll_stats_set_cmd)(wmi_unified_t wmi_handle,
999  				const struct ll_stats_set_params *set_req);
1000  
1001  QDF_STATUS (*send_process_ll_stats_get_cmd)(wmi_unified_t wmi_handle,
1002  				const struct ll_stats_get_params *get_req);
1003  #ifdef FEATURE_CLUB_LL_STATS_AND_GET_STATION
1004  QDF_STATUS (*send_unified_ll_stats_get_sta_cmd)(wmi_unified_t wmi_handle,
1005  				const struct ll_stats_get_params *get_req);
1006  #endif
1007  #endif
1008  
1009  QDF_STATUS (*send_congestion_cmd)(wmi_unified_t wmi_handle,
1010  				  uint8_t vdev_id);
1011  
1012  QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
1013  
1014  QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
1015  
1016  QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
1017  				 struct link_status_params *link_status);
1018  #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
1019  QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
1020  					uint32_t vdev_id,
1021  					uint32_t *bitmap,
1022  					bool enable);
1023  
1024  QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
1025  				uint8_t vdev_id, uint8_t ptrn_id,
1026  				const uint8_t *ptrn, uint8_t ptrn_len,
1027  				uint8_t ptrn_offset, const uint8_t *mask,
1028  				uint8_t mask_len, bool user,
1029  				uint8_t default_patterns);
1030  
1031  QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
1032  			   struct pmo_arp_offload_params *arp_offload_req,
1033  			   struct pmo_ns_offload_params *ns_offload_req,
1034  			   uint8_t vdev_id);
1035  
1036  QDF_STATUS (*send_conf_hw_filter_cmd)(wmi_unified_t wmi,
1037  				      struct pmo_hw_filter_params *req);
1038  
1039  QDF_STATUS (*send_enable_enhance_multicast_offload_cmd)(
1040  		wmi_unified_t wmi_handle,
1041  		uint8_t vdev_id, bool action);
1042  
1043  QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
1044  				     uint8_t vdev_id,
1045  				     struct qdf_mac_addr multicast_addr,
1046  				     bool clearList);
1047  
1048  QDF_STATUS (*send_multiple_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
1049  				uint8_t vdev_id,
1050  				struct pmo_mcast_filter_params *filter_param);
1051  
1052  QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
1053  					   struct pmo_gtk_req *params,
1054  					   bool enable_offload,
1055  					   uint32_t gtk_offload_opcode);
1056  #ifdef WLAN_FEATURE_IGMP_OFFLOAD
1057  QDF_STATUS (*send_igmp_offload_cmd)(wmi_unified_t wmi_handle,
1058  				    struct pmo_igmp_offload_req *pmo_igmp_req);
1059  #endif
1060  
1061  QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
1062  				uint8_t vdev_id,
1063  				uint64_t offload_req_opcode);
1064  
1065  QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
1066  				   uint8_t vdev_id, uint8_t default_pattern,
1067  				   uint16_t rate_limit_interval);
1068  
1069  QDF_STATUS (*send_action_frame_patterns_cmd)(wmi_unified_t wmi_handle,
1070  			struct pmo_action_wakeup_set_params *action_params);
1071  
1072  QDF_STATUS (*extract_gtk_rsp_event)(wmi_unified_t wmi_handle,
1073  			void *evt_buf,
1074  			struct pmo_gtk_rsp_params *gtk_rsp_param, uint32_t len);
1075  
1076  QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle,
1077  					  uint8_t ptrn_id,
1078  					  uint8_t vdev_id);
1079  
1080  QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle,
1081  					     bool tx_pending_ind);
1082  
1083  QDF_STATUS (*send_wow_timer_pattern_cmd)(wmi_unified_t wmi_handle,
1084  			uint8_t vdev_id, uint32_t cookie, uint32_t time);
1085  #ifdef FEATURE_WLAN_LPHB
1086  QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
1087  				wmi_hb_set_enable_cmd_fixed_param *params);
1088  
1089  QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
1090  				    wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
1091  
1092  QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
1093  				wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
1094  
1095  QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
1096  				    wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
1097  
1098  QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
1099  					wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
1100  #endif /* FEATURE_WLAN_LPHB */
1101  #ifdef WLAN_FEATURE_PACKET_FILTERING
1102  QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
1103  					uint8_t vdev_id, bool enable);
1104  
1105  QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
1106  		uint8_t vdev_id, struct pmo_rcv_pkt_fltr_cfg *rcv_filter_param,
1107  		uint8_t filter_id, bool enable);
1108  #endif
1109  
1110  #ifdef WLAN_FEATURE_ICMP_OFFLOAD
1111  QDF_STATUS (*send_icmp_offload_config_cmd)(wmi_unified_t wmi_handle,
1112  			   struct pmo_icmp_offload *pmo_icmp_req);
1113  #endif
1114  #endif /* end of WLAN_POWER_MANAGEMENT_OFFLOAD */
1115  #ifdef WLAN_WMI_BCN
1116  QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
1117  			wmi_bcn_send_from_host_cmd_fixed_param * param);
1118  #endif
1119  
1120  #if !defined(REMOVE_PKT_LOG) && defined(FEATURE_PKTLOG)
1121  QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
1122  				   WMI_PKTLOG_EVENT pktlog_event,
1123  				   WMI_CMD_ID cmd_id, uint8_t user_triggered);
1124  #endif
1125  
1126  #ifdef WLAN_SUPPORT_GREEN_AP
1127  QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
1128  			struct wlan_green_ap_egap_params *egap_params);
1129  #endif
1130  
1131  #ifdef WLAN_FEATURE_CIF_CFR
1132  QDF_STATUS (*send_oem_dma_cfg_cmd)(wmi_unified_t wmi_handle,
1133  				   wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
1134  #endif
1135  
1136  QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
1137  				      uint32_t data_len,
1138  				      uint8_t *data);
1139  
1140  #ifdef FEATURE_OEM_DATA
1141  QDF_STATUS (*send_start_oemv2_data_cmd)(wmi_unified_t wmi_handle,
1142  					struct oem_data *params);
1143  #endif
1144  
1145  QDF_STATUS
1146  (*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
1147  			bool dfs_phyerr_filter_offload);
1148  
1149  QDF_STATUS (*send_bss_color_change_enable_cmd)(wmi_unified_t wmi_handle,
1150  					       uint32_t vdev_id,
1151  					       bool enable);
1152  
1153  QDF_STATUS (*send_obss_color_collision_cfg_cmd)(wmi_unified_t wmi_handle,
1154  		struct wmi_obss_color_collision_cfg_param *cfg);
1155  
1156  QDF_STATUS (*extract_obss_color_collision_info)(uint8_t *evt_buf,
1157  		struct wmi_obss_color_collision_info *info);
1158  
1159  QDF_STATUS (*send_peer_based_pktlog_cmd)(wmi_unified_t wmi_handle,
1160  					 uint8_t *macaddr,
1161  					 uint8_t mac_id,
1162  					 uint8_t enb_dsb);
1163  
1164  #ifdef WMI_STA_SUPPORT
1165  QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
1166  				uint8_t ac);
1167  
1168  QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
1169  		      struct aggr_add_ts_param *aggr_qos_rsp_msg);
1170  
1171  QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
1172  		 struct add_ts_param *msg);
1173  
1174  QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(
1175  					wmi_unified_t wmi_handle,
1176  					struct periodic_tx_pattern *pattern,
1177  					uint8_t vdev_id);
1178  
1179  QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
1180  						    uint8_t vdev_id,
1181  						    uint8_t pattern_id);
1182  
1183  QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
1184  						  uint32_t timer_val);
1185  
1186  #ifdef WLAN_FEATURE_NAN
1187  QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
1188  			struct nan_msg_params *nan_req);
1189  
1190  QDF_STATUS (*send_nan_disable_req_cmd)(wmi_unified_t wmi_handle,
1191  				       struct nan_disable_req *nan_msg);
1192  
1193  QDF_STATUS (*extract_nan_event_rsp)(wmi_unified_t wmi_handle, void *evt_buf,
1194  				    struct nan_event_params *evt_params,
1195  				    uint8_t **msg_buf);
1196  #endif
1197  
1198  QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
1199  
1200  QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
1201  				   struct vdev_ie_info_param *ie_info);
1202  
1203  QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
1204  					 uint8_t *custom_addr);
1205  
1206  QDF_STATUS (*send_pdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
1207  				struct wmi_pcl_chan_weights *msg);
1208  
1209  #ifdef WLAN_FEATURE_ROAM_OFFLOAD
1210  QDF_STATUS (*send_vdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
1211  				    struct set_pcl_cmd_params *params);
1212  
1213  QDF_STATUS (*send_roam_set_param_cmd)(wmi_unified_t wmi_handle,
1214  				      struct vdev_set_params *roam_param);
1215  #endif
1216  
1217  #ifdef WLAN_POLICY_MGR_ENABLE
1218  QDF_STATUS (*send_pdev_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
1219  		struct policy_mgr_dual_mac_config *msg);
1220  #endif
1221  
1222  QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
1223  				struct flashing_req_params *flashing);
1224  
1225  QDF_STATUS (*send_set_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
1226  					 struct set_arp_stats *req_buf);
1227  
1228  QDF_STATUS (*send_get_arp_stats_req_cmd)(wmi_unified_t wmi_handle,
1229  					 struct get_arp_stats *req_buf);
1230  
1231  QDF_STATUS (*send_set_del_pmkid_cache_cmd) (wmi_unified_t wmi_handle,
1232  		struct wmi_unified_pmk_cache *req_buf);
1233  
1234  QDF_STATUS (*send_adapt_dwelltime_params_cmd)(wmi_unified_t wmi_handle,
1235  			struct wmi_adaptive_dwelltime_params *dwelltime_params);
1236  
1237  QDF_STATUS (*send_dbs_scan_sel_params_cmd)(wmi_unified_t wmi_handle,
1238  			struct wmi_dbs_scan_sel_params *dbs_scan_params);
1239  
1240  QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
1241  				  uint32_t if_id,
1242  				  struct wmi_gtx_config *gtx_info);
1243  
1244  QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
1245  					  struct sta_keep_alive_params *params);
1246  
1247  QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
1248  					uint8_t vdev_id, uint32_t max_retries,
1249  					uint32_t retry_interval);
1250  
1251  QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
1252  			uint32_t cmd, uint32_t value1, uint32_t value2);
1253  
1254  QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle,
1255  					uint8_t vdev_id);
1256  
1257  QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
1258  			wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
1259  
1260  QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
1261  			wmi_mac_addr peer_macaddr);
1262  
1263  QDF_STATUS (*send_wlm_latency_level_cmd)(wmi_unified_t wmi_handle,
1264  				struct wlm_latency_level_param *param);
1265  
1266  QDF_STATUS (*send_sar_limit_cmd)(wmi_unified_t wmi_handle,
1267  				struct sar_limit_cmd_params *params);
1268  
1269  QDF_STATUS (*get_sar_limit_cmd)(wmi_unified_t wmi_handle);
1270  
1271  QDF_STATUS (*extract_sar_limit_event)(wmi_unified_t wmi_handle,
1272  				      uint8_t *evt_buf,
1273  				      struct sar_limit_event *event);
1274  
1275  QDF_STATUS (*extract_sar2_result_event)(void *handle,
1276  					uint8_t *event,
1277  					uint32_t len);
1278  
1279  #ifdef FEATURE_WLAN_TDLS
1280  QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
1281  			      struct tdls_channel_switch_params *chan_switch_params);
1282  
1283  QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
1284  					    struct tdls_info *tdls_param,
1285  					    enum wmi_tdls_state tdls_state);
1286  
1287  QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
1288  				struct tdls_peer_update_state *peer_state,
1289  				uint32_t *ch_mhz);
1290  
1291  QDF_STATUS (*extract_vdev_tdls_ev_param)(wmi_unified_t wmi_handle,
1292  		void *evt_buf, struct tdls_event_info *param);
1293  #endif /* FEATURE_WLAN_TDLS */
1294  #endif /* WMI_STA_SUPPORT */
1295  
1296  QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
1297  			struct stats_ext_params *preq);
1298  
1299  #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
1300  QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
1301  			struct ext_wow_params *params);
1302  
1303  QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
1304  				struct app_type2_params *appType2Params);
1305  
1306  QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
1307  				struct app_type1_params *app_type1_params);
1308  #endif /* WLAN_FEATURE_EXTWOW_SUPPORT */
1309  
1310  QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
1311  				struct dhcp_offload_info_params *params);
1312  
1313  QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
1314  				   uint32_t reg_dmn, uint16_t regdmn2G,
1315  				   uint16_t regdmn5G, uint8_t ctl2G,
1316  				   uint8_t ctl5G);
1317  
1318  QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
1319  					struct fw_dump_req_param *mem_dump_req);
1320  
1321  QDF_STATUS (*send_cfg_action_frm_tb_ppdu_cmd)(wmi_unified_t wmi_handle,
1322  				struct cfg_action_frm_tb_ppdu_param *cfg_info);
1323  
1324  QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
1325  
1326  QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
1327  
1328  QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
1329  		uint8_t *event,
1330  		uint32_t len);
1331  
1332  QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
1333  		struct wmi_wifi_start_log *start_log);
1334  
1335  QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
1336  
1337  QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
1338  				 struct wmi_unit_test_cmd *wmi_utest);
1339  
1340  #ifdef FEATURE_WLAN_APF
1341  QDF_STATUS
1342  (*send_set_active_apf_mode_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
1343  				enum wmi_host_active_apf_mode ucast_mode,
1344  				enum wmi_host_active_apf_mode mcast_bcast_mode);
1345  
1346  QDF_STATUS (*send_apf_enable_cmd)(wmi_unified_t wmi_handle, uint32_t vdev_id,
1347  				  bool enable);
1348  
1349  QDF_STATUS (*send_apf_write_work_memory_cmd)(wmi_unified_t wmi_handle,
1350  			struct wmi_apf_write_memory_params *apf_write_params);
1351  
1352  QDF_STATUS (*send_apf_read_work_memory_cmd)(wmi_unified_t wmi_handle,
1353  			struct wmi_apf_read_memory_params *apf_read_params);
1354  
1355  QDF_STATUS (*extract_apf_read_memory_resp_event)(wmi_unified_t wmi_handle,
1356  			void *evt_buf,
1357  			struct wmi_apf_read_memory_resp_event_params *resp);
1358  #endif /* FEATURE_WLAN_APF */
1359  
1360  QDF_STATUS (*send_pdev_get_tpc_config_cmd)(wmi_unified_t wmi_handle,
1361  		uint32_t param);
1362  
1363  #ifdef WMI_ATF_SUPPORT
1364  QDF_STATUS (*send_set_bwf_cmd)(wmi_unified_t wmi_handle,
1365  		struct set_bwf_params *param);
1366  #endif
1367  
1368  QDF_STATUS (*send_pdev_fips_cmd)(wmi_unified_t wmi_handle,
1369  		struct fips_params *param);
1370  
1371  #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
1372  QDF_STATUS (*send_pdev_fips_extend_cmd)(wmi_unified_t wmi_handle,
1373  					struct fips_extend_params *param);
1374  
1375  QDF_STATUS (*send_pdev_fips_mode_set_cmd)(wmi_unified_t wmi_handle,
1376  					  struct fips_mode_set_params *param);
1377  #endif
1378  
1379  QDF_STATUS (*send_wlan_profile_enable_cmd)(wmi_unified_t wmi_handle,
1380  		struct wlan_profile_params *param);
1381  
1382  #ifdef WLAN_FEATURE_DISA
1383  QDF_STATUS
1384  (*send_encrypt_decrypt_send_cmd)(wmi_unified_t wmi_handle,
1385  				 struct disa_encrypt_decrypt_req_params
1386  				 *params);
1387  #endif
1388  
1389  QDF_STATUS (*send_wlan_profile_trigger_cmd)(wmi_unified_t wmi_handle,
1390  		struct wlan_profile_params *param);
1391  
1392  QDF_STATUS (*send_wlan_profile_hist_intvl_cmd)(wmi_unified_t wmi_handle,
1393  		struct wlan_profile_params *param);
1394  
1395  QDF_STATUS (*send_pdev_set_chan_cmd)(wmi_unified_t wmi_handle,
1396  		struct channel_param *param);
1397  
1398  QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
1399  		uint8_t vdev_id, bool mu_edca_param,
1400  		struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
1401  
1402  QDF_STATUS (*send_set_ratepwr_table_cmd)(wmi_unified_t wmi_handle,
1403  		struct ratepwr_table_params *param);
1404  
1405  QDF_STATUS (*send_get_ratepwr_table_cmd)(wmi_unified_t wmi_handle);
1406  
1407  QDF_STATUS (*send_set_ratepwr_chainmsk_cmd)(wmi_unified_t wmi_handle,
1408  		struct ratepwr_chainmsk_params *param);
1409  
1410  QDF_STATUS (*send_set_macaddr_cmd)(wmi_unified_t wmi_handle,
1411  		struct macaddr_params *param);
1412  
1413  QDF_STATUS (*send_pdev_scan_start_cmd)(wmi_unified_t wmi_handle);
1414  
1415  QDF_STATUS (*send_pdev_scan_end_cmd)(wmi_unified_t wmi_handle);
1416  
1417  QDF_STATUS (*send_set_acparams_cmd)(wmi_unified_t wmi_handle,
1418  		struct acparams_params *param);
1419  
1420  QDF_STATUS (*send_set_vap_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
1421  		struct vap_dscp_tid_map_params *param);
1422  
1423  QDF_STATUS (*send_proxy_ast_reserve_cmd)(wmi_unified_t wmi_handle,
1424  		struct proxy_ast_reserve_params *param);
1425  
1426  #if defined(WMI_AP_SUPPORT) || defined(WDS_CONV_TARGET_IF_OPS_ENABLE)
1427  QDF_STATUS (*send_peer_add_wds_entry_cmd)(wmi_unified_t wmi_handle,
1428  		struct peer_add_wds_entry_params *param);
1429  
1430  QDF_STATUS (*send_peer_del_wds_entry_cmd)(wmi_unified_t wmi_handle,
1431  		struct peer_del_wds_entry_params *param);
1432  
1433  #ifdef WLAN_FEATURE_MULTI_AST_DEL
1434  QDF_STATUS (*send_peer_del_multi_wds_entries_cmd)(wmi_unified_t wmi_handle,
1435  		struct peer_del_multi_wds_entry_params *param);
1436  #endif
1437  
1438  QDF_STATUS (*send_peer_update_wds_entry_cmd)(wmi_unified_t wmi_handle,
1439  		struct peer_update_wds_entry_params *param);
1440  #endif
1441  
1442  QDF_STATUS (*send_peer_vlan_config_cmd)(wmi_unified_t wmi,
1443  					uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
1444  					struct peer_vlan_config_param *param);
1445  
1446  #ifdef WMI_AP_SUPPORT
1447  
1448  QDF_STATUS (*send_set_ctl_table_cmd)(wmi_unified_t wmi_handle,
1449  		struct ctl_table_params *param);
1450  
1451  QDF_STATUS
1452  (*send_set_sta_max_pwr_table_cmd)(wmi_unified_t wmi_handle,
1453  				  struct sta_max_pwr_table_params *param);
1454  
1455  QDF_STATUS
1456  (*send_set_power_table_cmd)(wmi_unified_t wmi_handle,
1457  			    struct rate2power_table_params *param);
1458  
1459  QDF_STATUS (*send_set_mimogain_table_cmd)(wmi_unified_t wmi_handle,
1460  		struct mimogain_table_params *param);
1461  
1462  QDF_STATUS (*send_packet_power_info_get_cmd)(wmi_unified_t wmi_handle,
1463  		      struct packet_power_info_params *param);
1464  
1465  QDF_STATUS (*send_get_halphy_cal_status_cmd)(wmi_unified_t wmi_handle,
1466  					     struct halphy_cal_status_params *param);
1467  
1468  QDF_STATUS (*send_set_ht_ie_cmd)(wmi_unified_t wmi_handle,
1469  		struct ht_ie_params *param);
1470  
1471  QDF_STATUS (*send_set_vht_ie_cmd)(wmi_unified_t wmi_handle,
1472  		struct vht_ie_params *param);
1473  
1474  QDF_STATUS (*send_set_quiet_mode_cmd)(wmi_unified_t wmi_handle,
1475  		struct set_quiet_mode_params *param);
1476  
1477  QDF_STATUS (*send_set_bcn_offload_quiet_mode_cmd)(wmi_unified_t wmi_handle,
1478  		struct set_bcn_offload_quiet_mode_params *param);
1479  
1480  QDF_STATUS (*send_bcn_offload_control_cmd)(wmi_unified_t wmi_handle,
1481  			struct bcn_offload_control *bcn_ctrl_param);
1482  
1483  QDF_STATUS (*extract_swba_tim_info)(wmi_unified_t wmi_handle, void *evt_buf,
1484  	uint32_t idx, wmi_host_tim_info *tim_info);
1485  
1486  QDF_STATUS (*extract_swba_noa_info)(wmi_unified_t wmi_handle, void *evt_buf,
1487  	    uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1488  
1489  QDF_STATUS (*extract_swba_quiet_info)(wmi_unified_t wmi_handle, void *evt_buf,
1490  				      uint32_t idx,
1491  				      wmi_host_quiet_info *quiet_info);
1492  
1493  QDF_STATUS (*extract_offchan_data_tx_compl_param)(wmi_unified_t wmi_handle,
1494  		void *evt_buf,
1495  		struct wmi_host_offchan_data_tx_compl_event *param);
1496  
1497  QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
1498  		void *evt_buf, wmi_host_pdev_tpc_config_event *param);
1499  
1500  #ifdef QCA_RSSI_DB2DBM
1501  QDF_STATUS (*extract_pdev_rssi_dbm_conv_ev_param)(wmi_unified_t wmi_handle,
1502  						  void *evt_buf,
1503  						  struct rssi_db2dbm_param *param);
1504  #endif
1505  
1506  QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
1507  		void *evt_buf, wmi_host_peer_sta_kickout_event *ev);
1508  
1509  QDF_STATUS (*extract_peer_create_response_event)(
1510  			wmi_unified_t wmi_handle,
1511  			void *evt_buf,
1512  			struct wmi_host_peer_create_response_event *param);
1513  
1514  QDF_STATUS (*extract_peer_delete_response_event)(
1515  			wmi_unified_t wmi_handle,
1516  			void *evt_buf,
1517  			struct wmi_host_peer_delete_response_event *param);
1518  
1519  QDF_STATUS (*extract_pdev_tpc_ev_param)(wmi_unified_t wmi_handle,
1520  		void *evt_buf, wmi_host_pdev_tpc_event *param);
1521  
1522  QDF_STATUS (*extract_nfcal_power_ev_param)(wmi_unified_t wmi_handle,
1523  		void *evt_buf,
1524  		wmi_host_pdev_nfcal_power_all_channels_event *param);
1525  
1526  QDF_STATUS (*extract_wds_addr_event)(wmi_unified_t wmi_handle,
1527  	void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1528  
1529  QDF_STATUS (*extract_peer_sta_ps_statechange_ev)(wmi_unified_t wmi_handle,
1530  	void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1531  
1532  QDF_STATUS (*extract_inst_rssi_stats_event)(wmi_unified_t wmi_handle,
1533  		void *evt_buf, wmi_host_inst_stats_resp *inst_rssi_resp);
1534  
1535  QDF_STATUS (*extract_pdev_caldata_version_check_ev_param)(
1536  	wmi_unified_t wmi_handle,
1537  	void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1538  
1539  QDF_STATUS
1540  (*send_peer_set_intra_bss_cmd)(wmi_unified_t wmi_handle,
1541  			       struct wmi_intra_bss_params *param);
1542  
1543  QDF_STATUS
1544  (*send_vdev_set_intra_bss_cmd)(struct wmi_unified *wmi_handle,
1545  			       struct wmi_intra_bss_params *param);
1546  
1547  #ifdef WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG
1548  QDF_STATUS (*set_rx_pkt_type_routing_tag_cmd)(
1549  	wmi_unified_t wmi_hdl, struct wmi_rx_pkt_protocol_routing_info *param);
1550  #endif /* WLAN_SUPPORT_RX_PROTOCOL_TYPE_TAG */
1551  
1552  #ifdef WLAN_SUPPORT_FILS
1553  QDF_STATUS (*extract_swfda_vdev_id)(wmi_unified_t wmi_handle, void *evt_buf,
1554  				    uint32_t *vdev_id);
1555  QDF_STATUS (*send_fils_discovery_send_cmd)(wmi_unified_t wmi_handle,
1556  					   struct fd_params *param);
1557  #endif /* WLAN_SUPPORT_FILS */
1558  
1559  QDF_STATUS (*send_set_qboost_param_cmd)(wmi_unified_t wmi_handle,
1560  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1561  		struct set_qboost_params *param);
1562  
1563  QDF_STATUS (*send_mcast_group_update_cmd)(wmi_unified_t wmi_handle,
1564  		struct mcast_group_update_params *param);
1565  
1566  QDF_STATUS (*send_pdev_qvit_cmd)(wmi_unified_t wmi_handle,
1567  		struct pdev_qvit_params *param);
1568  
1569  QDF_STATUS (*send_wmm_update_cmd)(wmi_unified_t wmi_handle,
1570  		struct wmm_update_params *param);
1571  
1572  QDF_STATUS (*extract_mgmt_tx_compl_param)(wmi_unified_t wmi_handle,
1573  		void *evt_buf, wmi_host_mgmt_tx_compl_event *param);
1574  
1575  QDF_STATUS (*extract_chan_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
1576  				   wmi_host_chan_info_event *chan_info);
1577  
1578  QDF_STATUS (*extract_scan_blanking_params)(wmi_unified_t wmi_handle,
1579  	    void *evt_buf, wmi_host_scan_blanking_params *blanking_params);
1580  
1581  #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
1582  QDF_STATUS
1583  (*extract_ulofdma_trigger_feedback_event)(
1584  		wmi_unified_t wmi_handle,
1585  		void *evt_buf,
1586  		wmi_host_manual_ul_ofdma_trig_feedback_evt *feedback);
1587  
1588  QDF_STATUS
1589  (*extract_ul_ofdma_trig_rx_peer_userinfo)(wmi_unified_t wmi_handle,
1590  		void *evt_buf,
1591  		struct wmi_host_rx_peer_userinfo_evt_data *resp);
1592  #endif
1593  
1594  QDF_STATUS (*extract_channel_hopping_event)(wmi_unified_t wmi_handle,
1595  		void *evt_buf,
1596  		wmi_host_pdev_channel_hopping_event *ch_hopping);
1597  
1598  QDF_STATUS (*send_peer_chan_width_switch_cmd)(wmi_unified_t wmi_handle,
1599  		struct peer_chan_width_switch_params *param);
1600  
1601  #endif
1602  
1603  QDF_STATUS (*send_set_bridge_mac_addr_cmd)(wmi_unified_t wmi_handle,
1604  		struct set_bridge_mac_addr_params *param);
1605  
1606  QDF_STATUS (*send_phyerr_enable_cmd)(wmi_unified_t wmi_handle);
1607  
1608  QDF_STATUS (*send_phyerr_disable_cmd)(wmi_unified_t wmi_handle);
1609  
1610  #ifdef WMI_SMART_ANT_SUPPORT
1611  QDF_STATUS (*send_set_ant_switch_tbl_cmd)(wmi_unified_t wmi_handle,
1612  		struct ant_switch_tbl_params *param);
1613  
1614  QDF_STATUS (*send_smart_ant_enable_cmd)(wmi_unified_t wmi_handle,
1615  		struct smart_ant_enable_params *param);
1616  
1617  QDF_STATUS (*send_smart_ant_set_rx_ant_cmd)(wmi_unified_t wmi_handle,
1618  		struct smart_ant_rx_ant_params *param);
1619  
1620  QDF_STATUS (*send_smart_ant_set_tx_ant_cmd)(wmi_unified_t wmi_handle,
1621  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1622  		struct smart_ant_tx_ant_params *param);
1623  
1624  QDF_STATUS (*send_smart_ant_set_training_info_cmd)(wmi_unified_t wmi_handle,
1625  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1626  		struct smart_ant_training_info_params *param);
1627  
1628  QDF_STATUS (*send_smart_ant_set_node_config_cmd)(wmi_unified_t wmi_handle,
1629  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1630  		struct smart_ant_node_config_params *param);
1631  #endif
1632  
1633  #ifdef WLAN_IOT_SIM_SUPPORT
1634  QDF_STATUS (*send_simulation_test_cmd)(wmi_unified_t wmi_handle,
1635  				       struct simulation_test_params *param);
1636  #endif
1637  
1638  QDF_STATUS (*send_smart_ant_enable_tx_feedback_cmd)(wmi_unified_t wmi_handle,
1639  		struct smart_ant_enable_tx_feedback_params *param);
1640  
1641  #ifdef WLAN_CONV_SPECTRAL_ENABLE
1642  QDF_STATUS (*extract_pdev_sscan_fw_cmd_fixed_param)(
1643  				wmi_unified_t wmi_handle,
1644  				uint8_t *evt_buf,
1645  				struct spectral_startscan_resp_params *params);
1646  
1647  QDF_STATUS (*extract_pdev_sscan_fft_bin_index)(
1648  			wmi_unified_t wmi_handle,
1649  			uint8_t *evt_buf,
1650  			struct spectral_fft_bin_markers_160_165mhz *params);
1651  
1652  QDF_STATUS (*extract_pdev_spectral_session_chan_info)(
1653  			wmi_unified_t wmi_handle, void *event,
1654  			struct spectral_session_chan_info *chan_info);
1655  
1656  QDF_STATUS (*extract_pdev_spectral_session_detector_info)(
1657  		wmi_unified_t wmi_handle, void *event,
1658  		struct spectral_session_det_info *det_info,
1659  		uint8_t det_info_idx);
1660  
1661  QDF_STATUS (*extract_spectral_caps_fixed_param)(
1662  		wmi_unified_t wmi_handle, void *event,
1663  		struct spectral_capabilities_event_params *param);
1664  
1665  QDF_STATUS (*extract_spectral_scan_bw_caps)(
1666  		wmi_unified_t wmi_handle, void *event,
1667  		struct spectral_scan_bw_capabilities *bw_caps);
1668  
1669  QDF_STATUS (*extract_spectral_fft_size_caps)(
1670  		wmi_unified_t wmi_handle, void *event,
1671  		struct spectral_fft_size_capabilities *fft_size_caps);
1672  #endif /* WLAN_CONV_SPECTRAL_ENABLE */
1673  
1674  QDF_STATUS (*send_vdev_spectral_configure_cmd)(wmi_unified_t wmi_handle,
1675  		struct vdev_spectral_configure_params *param);
1676  
1677  QDF_STATUS (*send_vdev_spectral_enable_cmd)(wmi_unified_t wmi_handle,
1678  		struct vdev_spectral_enable_params *param);
1679  
1680  QDF_STATUS (*send_bss_chan_info_request_cmd)(wmi_unified_t wmi_handle,
1681  		struct bss_chan_info_request_params *param);
1682  
1683  QDF_STATUS (*send_thermal_mitigation_param_cmd)(wmi_unified_t wmi_handle,
1684  		struct thermal_mitigation_params *param);
1685  
1686  QDF_STATUS (*send_vdev_set_neighbour_rx_cmd)(wmi_unified_t wmi_handle,
1687  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1688  		struct set_neighbour_rx_params *param);
1689  
1690  QDF_STATUS (*send_vdev_set_fwtest_param_cmd)(wmi_unified_t wmi_handle,
1691  		struct set_fwtest_params *param);
1692  
1693  QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
1694  		struct config_ratemask_params *param);
1695  
1696  QDF_STATUS (*send_vdev_set_custom_aggr_size_cmd)(wmi_unified_t wmi_handle,
1697  		struct set_custom_aggr_size_params *param);
1698  
1699  QDF_STATUS (*send_vdev_set_qdepth_thresh_cmd)(wmi_unified_t wmi_handle,
1700  		struct set_qdepth_thresh_params *param);
1701  
1702  QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
1703  
1704  QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,
1705  		struct wow_add_wakeup_params *param);
1706  
1707  QDF_STATUS (*send_wow_add_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
1708  		struct wow_add_wakeup_pattern_params *param);
1709  
1710  QDF_STATUS (*send_wow_remove_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
1711  		struct wow_remove_wakeup_pattern_params *param);
1712  
1713  QDF_STATUS (*send_pdev_set_regdomain_cmd)(wmi_unified_t wmi_handle,
1714  		struct pdev_set_regdomain_params *param);
1715  
1716  QDF_STATUS (*send_set_beacon_filter_cmd)(wmi_unified_t wmi_handle,
1717  		struct set_beacon_filter_params *param);
1718  
1719  QDF_STATUS (*send_remove_beacon_filter_cmd)(wmi_unified_t wmi_handle,
1720  		struct remove_beacon_filter_params *param);
1721  /*
1722  QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
1723  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1724  		struct mgmt_params *param);
1725  		*/
1726  
1727  QDF_STATUS (*send_addba_clearresponse_cmd)(wmi_unified_t wmi_handle,
1728  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1729  		struct addba_clearresponse_params *param);
1730  
1731  QDF_STATUS (*send_addba_send_cmd)(wmi_unified_t wmi_handle,
1732  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1733  		struct addba_send_params *param);
1734  
1735  QDF_STATUS (*send_delba_send_cmd)(wmi_unified_t wmi_handle,
1736  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1737  		struct delba_send_params *param);
1738  
1739  QDF_STATUS (*send_addba_setresponse_cmd)(wmi_unified_t wmi_handle,
1740  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1741  		struct addba_setresponse_params *param);
1742  
1743  QDF_STATUS (*send_singleamsdu_cmd)(wmi_unified_t wmi_handle,
1744  		uint8_t macaddr[QDF_MAC_ADDR_SIZE],
1745  		struct singleamsdu_params *param);
1746  
1747  QDF_STATUS (*send_mu_scan_cmd)(wmi_unified_t wmi_handle,
1748  		struct mu_scan_params *param);
1749  
1750  QDF_STATUS (*send_lteu_config_cmd)(wmi_unified_t wmi_handle,
1751  		struct lteu_config_params *param);
1752  
1753  QDF_STATUS (*send_set_ps_mode_cmd)(wmi_unified_t wmi_handle,
1754  		       struct set_ps_mode_params *param);
1755  QDF_STATUS (*save_service_bitmap)(wmi_unified_t wmi_handle,
1756  		void *evt_buf,  void *bitmap_buf);
1757  QDF_STATUS (*save_ext_service_bitmap)(wmi_unified_t wmi_handle,
1758  		void *evt_buf,  void *bitmap_buf);
1759  bool (*is_service_enabled)(wmi_unified_t wmi_handle,
1760  	uint32_t service_id);
1761  QDF_STATUS (*get_target_cap_from_service_ready)(wmi_unified_t wmi_handle,
1762  	void *evt_buf, struct wlan_psoc_target_capability_info *ev);
1763  
1764  QDF_STATUS (*extract_fw_version)(wmi_unified_t wmi_handle,
1765  				void *ev, struct wmi_host_fw_ver *fw_ver);
1766  
1767  QDF_STATUS (*extract_fw_abi_version)(wmi_unified_t wmi_handle,
1768  				void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1769  
1770  QDF_STATUS (*extract_hal_reg_cap)(
1771  		wmi_unified_t wmi_handle, void *evt_buf,
1772  		struct wlan_psoc_hal_reg_capability *hal_reg_cap);
1773  
1774  QDF_STATUS (*extract_hal_reg_cap_ext2)(
1775  		wmi_unified_t wmi_handle, void *evt_buf, uint8_t phy_idx,
1776  		struct wlan_psoc_host_hal_reg_capabilities_ext2 *hal_reg_cap);
1777  
1778  uint32_t (*extract_num_mem_reqs)(wmi_unified_t wmi_handle,
1779  				 void *evt_buf);
1780  
1781  QDF_STATUS (*extract_host_mem_req)(wmi_unified_t wmi_handle,
1782  				   void *evt_buf, host_mem_req *mem_reqs,
1783  				   uint32_t num_active_peers,
1784  				   uint32_t num_peers,
1785  				   enum wmi_fw_mem_prio fw_prio, uint16_t idx);
1786  
1787  QDF_STATUS (*init_cmd_send)(wmi_unified_t wmi_handle,
1788  				struct wmi_init_cmd_param *param);
1789  
1790  QDF_STATUS (*save_fw_version)(wmi_unified_t wmi_handle, void *evt_buf);
1791  uint32_t (*ready_extract_init_status)(wmi_unified_t wmi_hdl, void *ev);
1792  QDF_STATUS (*ready_extract_mac_addr)(wmi_unified_t wmi_hdl, void *ev,
1793  		uint8_t *macaddr);
1794  wmi_host_mac_addr * (*ready_extract_mac_addr_list)(wmi_unified_t wmi_hdl,
1795  					void *ev, uint8_t *num_mac_addr);
1796  QDF_STATUS (*extract_ready_event_params)(wmi_unified_t wmi_handle,
1797  		void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1798  
1799  QDF_STATUS (*check_and_update_fw_version)(wmi_unified_t wmi_hdl, void *ev);
1800  uint8_t* (*extract_dbglog_data_len)(wmi_unified_t wmi_handle, void *evt_buf,
1801  		uint32_t *len);
1802  QDF_STATUS (*send_ext_resource_config)(wmi_unified_t wmi_handle,
1803  		wmi_host_ext_resource_config *ext_cfg);
1804  
1805  QDF_STATUS (*send_nf_dbr_dbm_info_get_cmd)(wmi_unified_t wmi_handle,
1806  					   uint8_t mac_id);
1807  
1808  #ifdef WLAN_FEATURE_GPIO_CFG
1809  QDF_STATUS (*send_gpio_config_cmd)(wmi_unified_t wmi_handle,
1810  		      struct gpio_config_params *param);
1811  
1812  QDF_STATUS (*send_gpio_output_cmd)(wmi_unified_t wmi_handle,
1813  		      struct gpio_output_params *param);
1814  #endif
1815  
1816  QDF_STATUS (*send_rtt_meas_req_test_cmd)(wmi_unified_t wmi_handle,
1817  		      struct rtt_meas_req_test_params *param);
1818  
1819  QDF_STATUS (*send_rtt_meas_req_cmd)(wmi_unified_t wmi_handle,
1820  		      struct rtt_meas_req_params *param);
1821  
1822  QDF_STATUS (*send_rtt_keepalive_req_cmd)(wmi_unified_t wmi_handle,
1823  		      struct rtt_keepalive_req_params *param);
1824  
1825  QDF_STATUS (*send_lci_set_cmd)(wmi_unified_t wmi_handle,
1826  		      struct lci_set_params *param);
1827  
1828  QDF_STATUS (*send_lcr_set_cmd)(wmi_unified_t wmi_handle,
1829  		      struct lcr_set_params *param);
1830  
1831  QDF_STATUS (*send_periodic_chan_stats_config_cmd)(wmi_unified_t wmi_handle,
1832  			struct periodic_chan_stats_params *param);
1833  
1834  #ifdef WLAN_ATF_ENABLE
1835  QDF_STATUS (*send_atf_peer_list_cmd)(wmi_unified_t wmi_handle,
1836  				     struct set_atf_params *param);
1837  
1838  QDF_STATUS
1839  (*send_atf_peer_request_cmd)(wmi_unified_t wmi_handle,
1840  			     struct atf_peer_request_params *param);
1841  
1842  QDF_STATUS
1843  (*send_set_atf_grouping_cmd)(wmi_unified_t wmi_handle,
1844  			     struct atf_grouping_params *param);
1845  
1846  QDF_STATUS
1847  (*send_set_atf_group_ac_cmd)(wmi_unified_t wmi_handle,
1848  			     struct atf_group_ac_params *param);
1849  
1850  QDF_STATUS (*extract_atf_peer_stats_ev)(wmi_unified_t wmi_handle,
1851  					void *evt_buf,
1852  					wmi_host_atf_peer_stats_event *ev);
1853  
1854  QDF_STATUS (*extract_atf_token_info_ev)(wmi_unified_t wmi_handle,
1855  					void *evt_buf, uint8_t idx,
1856  					wmi_host_atf_peer_stats_info *atf_info);
1857  
1858  #ifdef WLAN_ATF_INCREASED_STA
1859  QDF_STATUS (*send_atf_peer_list_cmd_v2)(wmi_unified_t wmi_handle,
1860  					struct atf_peer_params_v2 *param);
1861  QDF_STATUS
1862  (*send_set_atf_grouping_cmd_v2)(wmi_unified_t wmi_handle,
1863  				struct atf_grouping_params_v2 *param);
1864  #endif
1865  #endif
1866  
1867  QDF_STATUS (*send_get_user_position_cmd)(wmi_unified_t wmi_handle,
1868  			uint32_t value);
1869  
1870  QDF_STATUS
1871  (*send_reset_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
1872  			uint32_t value);
1873  
1874  QDF_STATUS (*send_get_peer_mumimo_tx_count_cmd)(wmi_unified_t wmi_handle,
1875  			uint32_t value);
1876  
1877  QDF_STATUS
1878  (*send_pdev_caldata_version_check_cmd)(wmi_unified_t wmi_handle,
1879  			uint32_t value);
1880  
1881  QDF_STATUS
1882  (*send_btcoex_wlan_priority_cmd)(wmi_unified_t wmi_handle,
1883  			struct btcoex_cfg_params *param);
1884  
1885  QDF_STATUS
1886  (*send_start_11d_scan_cmd)(wmi_unified_t wmi_handle,
1887  			struct reg_start_11d_scan_req *param);
1888  
1889  QDF_STATUS
1890  (*send_stop_11d_scan_cmd)(wmi_unified_t wmi_handle,
1891  			struct reg_stop_11d_scan_req *param);
1892  
1893  QDF_STATUS
1894  (*send_btcoex_duty_cycle_cmd)(wmi_unified_t wmi_handle,
1895  			struct btcoex_cfg_params *param);
1896  
1897  QDF_STATUS
1898  (*send_egid_info_cmd)(wmi_unified_t wmi_handle,
1899  		      struct esl_egid_params *param);
1900  
1901  QDF_STATUS
1902  (*send_coex_ver_cfg_cmd)(wmi_unified_t wmi_handle, coex_ver_cfg_t *param);
1903  
1904  QDF_STATUS
1905  (*send_coex_config_cmd)(wmi_unified_t wmi_handle,
1906  			struct coex_config_params *param);
1907  
1908  QDF_STATUS
1909  (*send_coex_multi_config_cmd)(wmi_unified_t wmi_handle,
1910  			      struct coex_multi_config *param);
1911  
1912  #ifdef WLAN_FEATURE_DBAM_CONFIG
1913  QDF_STATUS
1914  (*send_dbam_config_cmd)(wmi_unified_t wmi_handle,
1915  			struct coex_dbam_config_params *param);
1916  QDF_STATUS
1917  (*extract_dbam_config_resp_event)(wmi_unified_t wmi_handle, void *evt_buf,
1918  				  struct coex_dbam_config_resp *resp);
1919  #endif
1920  
1921  #ifdef OL_ATH_SMART_LOGGING
1922  QDF_STATUS
1923  (*send_smart_logging_enable_cmd)(wmi_unified_t wmi_handle, uint32_t param);
1924  
1925  QDF_STATUS
1926  (*send_smart_logging_fatal_cmd)(wmi_unified_t wmi_handle,
1927  				struct wmi_debug_fatal_events *param);
1928  #endif /* OL_ATH_SMART_LOGGING */
1929  
1930  #ifdef DCS_INTERFERENCE_DETECTION
1931  QDF_STATUS (*extract_dcs_interference_type)(
1932  		wmi_unified_t wmi_handle,
1933  		void *evt_buf,
1934  		struct wlan_host_dcs_interference_param *param);
1935  
1936  QDF_STATUS (*extract_dcs_im_tgt_stats)(
1937  		wmi_unified_t wmi_handle,
1938  		void *evt_buf,
1939  		struct wlan_host_dcs_im_tgt_stats *wlan_stat);
1940  
1941  QDF_STATUS (*extract_dcs_awgn_info)(wmi_unified_t wmi_handle, void *evt_buf,
1942  				    struct wlan_host_dcs_awgn_info *awgn_info);
1943  #else
1944  QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
1945  	void *evt_buf, struct wmi_host_dcs_interference_param *param);
1946  
1947  QDF_STATUS (*extract_dcs_cw_int)(wmi_unified_t wmi_handle, void *evt_buf,
1948  	wmi_host_ath_dcs_cw_int *cw_int);
1949  
1950  QDF_STATUS (*extract_dcs_im_tgt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1951  	wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1952  
1953  QDF_STATUS (*extract_dcs_awgn_info)(
1954  		wmi_unified_t wmi_handle,
1955  		void *evt_buf,
1956  		struct wmi_host_dcs_awgn_info *awgn_info);
1957  #endif
1958  
1959  QDF_STATUS (*extract_fips_event_data)(wmi_unified_t wmi_handle,
1960  	void *evt_buf, struct wmi_host_fips_event_param *param);
1961  
1962  #ifdef WLAN_FEATURE_FIPS_BER_CCMGCM
1963  QDF_STATUS
1964  (*extract_fips_extend_ev_data)(wmi_unified_t wmi_handle,
1965  			       void *evt_buf,
1966  			       struct wmi_host_fips_extend_event_param
1967  			       *param);
1968  #endif
1969  
1970  #ifdef WLAN_FEATURE_DISA
1971  QDF_STATUS
1972  (*extract_encrypt_decrypt_resp_event)(wmi_unified_t wmi_handle,
1973  				      void *evt_buf,
1974  				      struct disa_encrypt_decrypt_resp_params
1975  				      *resp);
1976  #endif
1977  
1978  QDF_STATUS (*extract_vdev_start_resp)(wmi_unified_t wmi_handle, void *evt_buf,
1979  				      struct vdev_start_response *vdev_rsp);
1980  
1981  QDF_STATUS (*extract_vdev_delete_resp)(
1982  				wmi_unified_t wmi_handle, void *evt_buf,
1983  				struct vdev_delete_response *delete_rsp);
1984  
1985  QDF_STATUS (*extract_tbttoffset_update_params)(wmi_unified_t wmi_hdl,
1986  					void *evt_buf, uint8_t idx,
1987  					struct tbttoffset_params *tbtt_param);
1988  
1989  QDF_STATUS (*extract_ext_tbttoffset_update_params)(wmi_unified_t wmi_hdl,
1990  					void *evt_buf, uint8_t idx,
1991  					struct tbttoffset_params *tbtt_param);
1992  
1993  QDF_STATUS (*extract_tbttoffset_num_vdevs)(wmi_unified_t wmi_hdl, void *evt_buf,
1994  					   uint32_t *num_vdevs);
1995  
1996  QDF_STATUS (*extract_ext_tbttoffset_num_vdevs)(wmi_unified_t wmi_hdl,
1997  					       void *evt_buf,
1998  					       uint32_t *num_vdevs);
1999  
2000  QDF_STATUS (*extract_muedca_params_handler)(wmi_unified_t wmi_hdl,
2001  					    void *evt_buf,
2002  					    struct muedca_params *muedca_param_list);
2003  
2004  QDF_STATUS (*extract_mgmt_rx_params)(wmi_unified_t wmi_handle, void *evt_buf,
2005  	struct mgmt_rx_event_params *hdr, uint8_t **bufp);
2006  
2007  QDF_STATUS (*extract_frame_pn_params)(wmi_unified_t wmi_handle, void *evt_buf,
2008  				      struct frame_pn_params *pn_params);
2009  
2010  QDF_STATUS (*extract_is_conn_ap_frame)(wmi_unified_t wmi_handle,
2011  				       void *evt_buf,
2012  				       struct frm_conn_ap *is_conn_ap);
2013  
2014  QDF_STATUS (*extract_vdev_stopped_param)(wmi_unified_t wmi_handle,
2015  		void *evt_buf, uint32_t *vdev_id);
2016  
2017  QDF_STATUS (*extract_vdev_roam_param)(wmi_unified_t wmi_handle, void *evt_buf,
2018  	wmi_host_roam_event *param);
2019  
2020  QDF_STATUS (*extract_vdev_scan_ev_param)(wmi_unified_t wmi_handle,
2021  		void *evt_buf, struct scan_event *param);
2022  
2023  #ifdef FEATURE_WLAN_SCAN_PNO
2024  QDF_STATUS (*extract_nlo_match_ev_param)(wmi_unified_t wmi_handle,
2025  					 void *evt_buf,
2026  					 struct scan_event *param);
2027  
2028  QDF_STATUS (*extract_nlo_complete_ev_param)(wmi_unified_t wmi_handle,
2029  					    void *evt_buf,
2030  					    struct scan_event *param);
2031  #endif
2032  
2033  QDF_STATUS (*extract_mu_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
2034  	wmi_host_mu_report_event *param);
2035  
2036  QDF_STATUS (*extract_mu_db_entry)(wmi_unified_t wmi_hdl, void *evt_buf,
2037  	uint8_t idx, wmi_host_mu_db_entry *param);
2038  
2039  QDF_STATUS (*extract_mumimo_tx_count_ev_param)(wmi_unified_t wmi_handle,
2040  	void *evt_buf, wmi_host_peer_txmu_cnt_event *param);
2041  
2042  QDF_STATUS (*extract_peer_gid_userpos_list_ev_param)(wmi_unified_t wmi_handle,
2043  	void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
2044  
2045  QDF_STATUS
2046  (*extract_esp_estimation_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
2047  				   struct esp_estimation_event *param);
2048  
2049  QDF_STATUS (*extract_gpio_input_ev_param)(wmi_unified_t wmi_handle,
2050  	void *evt_buf, uint32_t *gpio_num);
2051  
2052  QDF_STATUS (*extract_pdev_reserve_ast_ev_param)(wmi_unified_t wmi_handle,
2053  		void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
2054  
2055  QDF_STATUS (*extract_pdev_generic_buffer_ev_param)(wmi_unified_t wmi_handle,
2056  		void *evt_buf, wmi_host_pdev_generic_buffer_event *param);
2057  
2058  QDF_STATUS (*extract_pdev_csa_switch_count_status)(wmi_unified_t wmi_handle,
2059  		void *evt_buf, struct pdev_csa_switch_count_status *param);
2060  
2061  QDF_STATUS (*extract_swba_num_vdevs)(wmi_unified_t wmi_handle, void *evt_buf,
2062  	uint32_t *num_vdevs, uint32_t *num_quiet_triggered_vdevs);
2063  
2064  #ifdef CONVERGED_P2P_ENABLE
2065  #ifdef FEATURE_P2P_LISTEN_OFFLOAD
2066  QDF_STATUS (*extract_p2p_lo_stop_ev_param)(wmi_unified_t wmi_handle,
2067  	void *evt_buf, struct p2p_lo_event *param);
2068  #endif
2069  
2070  QDF_STATUS (*extract_p2p_noa_ev_param)(wmi_unified_t wmi_handle,
2071  	void *evt_buf, struct p2p_noa_info *param);
2072  
2073  QDF_STATUS
2074  (*extract_mac_addr_rx_filter_evt_param)(wmi_unified_t wmi_handle,
2075  					void *evt_buf,
2076  					struct p2p_set_mac_filter_evt *param);
2077  #endif
2078  
2079  QDF_STATUS (*set_mac_addr_rx_filter)(wmi_unified_t wmi_handle,
2080  				     struct set_rx_mac_filter *param);
2081  
2082  #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
2083  QDF_STATUS
2084  (*extract_interop_issues_ap_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
2085  				  struct wlan_interop_issues_ap_event *param);
2086  QDF_STATUS
2087  (*send_set_rap_ps_cmd)(wmi_unified_t wmi_handle,
2088  		       struct wlan_interop_issues_ap_info *interop_issues_ap);
2089  #endif
2090  
2091  QDF_STATUS (*extract_peer_ratecode_list_ev)(wmi_unified_t wmi_handle,
2092  					    void *evt_buf, uint8_t *peer_mac,
2093  					    uint32_t *pdev_id,
2094  					    wmi_sa_rate_cap *rate_cap);
2095  
2096  QDF_STATUS (*extract_comb_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
2097  	uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
2098  
2099  QDF_STATUS (*extract_single_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
2100  	uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
2101  
2102  QDF_STATUS (*extract_composite_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
2103  	uint16_t datalen, wmi_host_phyerr_t *phyerr);
2104  
2105  QDF_STATUS (*extract_rtt_hdr)(wmi_unified_t wmi_handle, void *evt_buf,
2106  	wmi_host_rtt_event_hdr *ev);
2107  
2108  QDF_STATUS (*extract_rtt_ev)(wmi_unified_t wmi_handle, void *evt_buf,
2109  	wmi_host_rtt_meas_event *ev, uint8_t *hdump, uint16_t hdump_len);
2110  
2111  QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
2112  		void *evt_buf, wmi_host_rtt_error_report_event *ev);
2113  
2114  QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
2115  			   wmi_host_stats_event *stats_param);
2116  #ifdef WLAN_FEATURE_BIG_DATA_STATS
2117  QDF_STATUS (*extract_big_data_stats)(
2118  			   wmi_unified_t wmi_handle, void *evt_buf,
2119  			   struct big_data_stats_event *stats_param);
2120  #endif
2121  QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2122  			 uint32_t index, wmi_host_pdev_stats *pdev_stats);
2123  
2124  QDF_STATUS (*extract_pmf_bcn_protect_stats)(wmi_unified_t wmi_handle,
2125  		void *evt_buf, wmi_host_pmf_bcn_protect_stats *pmf_bcn_stats);
2126  
2127  QDF_STATUS (*extract_unit_test)(wmi_unified_t wmi_handle, void *evt_buf,
2128  		wmi_unit_test_event *unit_test, uint32_t maxspace);
2129  
2130  QDF_STATUS (*extract_pdev_ext_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2131  		 uint32_t index, wmi_host_pdev_ext_stats *pdev_ext_stats);
2132  
2133  QDF_STATUS (*extract_vdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2134  			 uint32_t index, wmi_host_vdev_stats *vdev_stats);
2135  
2136  QDF_STATUS (*extract_per_chain_rssi_stats)(wmi_unified_t wmi_handle,
2137  			void *evt_buf, uint32_t index,
2138  			struct wmi_host_per_chain_rssi_stats *rssi_stats);
2139  
2140  QDF_STATUS (*extract_peer_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2141  			 uint32_t index, wmi_host_peer_stats *peer_stats);
2142  
2143  QDF_STATUS (*extract_bcnflt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2144  			 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
2145  
2146  QDF_STATUS (*extract_peer_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2147  		 uint32_t index, wmi_host_peer_extd_stats *peer_extd_stats);
2148  
2149  QDF_STATUS (*extract_peer_retry_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2150  	    uint32_t index,
2151  	    struct wmi_host_peer_retry_stats *peer_retry_stats);
2152  
2153  QDF_STATUS (*extract_peer_adv_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2154  				     struct wmi_host_peer_adv_stats
2155  				     *peer_adv_stats);
2156  
2157  QDF_STATUS (*extract_chan_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2158  			 uint32_t index, wmi_host_chan_stats *chan_stats);
2159  
2160  #ifdef WLAN_FEATURE_MIB_STATS
2161  QDF_STATUS (*extract_mib_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2162  				struct mib_stats_metrics *mib_stats);
2163  #endif
2164  
2165  QDF_STATUS (*extract_thermal_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2166  	    uint32_t *temp, enum thermal_throttle_level *level,
2167  	    uint32_t *therm_throt_levels,
2168  	    struct thermal_throt_level_stats *tt_temp_range_stats_event,
2169  	    uint32_t *pdev_id);
2170  
2171  QDF_STATUS (*extract_thermal_level_stats)(wmi_unified_t wmi_handle,
2172  		void *evt_buf, uint8_t idx, uint32_t *levelcount,
2173  		uint32_t *dccount);
2174  
2175  QDF_STATUS (*extract_profile_ctx)(wmi_unified_t wmi_handle, void *evt_buf,
2176  				   wmi_host_wlan_profile_ctx_t *profile_ctx);
2177  
2178  QDF_STATUS (*extract_profile_data)(wmi_unified_t wmi_handle, void *evt_buf,
2179  				uint8_t idx,
2180  				wmi_host_wlan_profile_t *profile_data);
2181  
2182  QDF_STATUS (*extract_bss_chan_info_event)(wmi_unified_t wmi_handle,
2183  		void *evt_buf,
2184  		wmi_host_pdev_bss_chan_info_event *bss_chan_info);
2185  
2186  QDF_STATUS (*extract_tx_data_traffic_ctrl_ev)(wmi_unified_t wmi_handle,
2187  		void *evt_buf, wmi_host_tx_data_traffic_ctrl_event *ev);
2188  
2189  QDF_STATUS (*extract_vdev_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2190  		uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
2191  
2192  QDF_STATUS (*extract_vdev_nac_rssi_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2193  		struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
2194  
2195  QDF_STATUS (*extract_bcn_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2196  		uint32_t index, wmi_host_bcn_stats *bcn_stats);
2197  
2198  #ifdef QCA_SUPPORT_MC_CP_STATS
2199  QDF_STATUS (*extract_peer_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
2200  				       wmi_host_stats_event *stats_param);
2201  
2202  QDF_STATUS (*extract_peer_stats_info)(wmi_unified_t wmi_handle, void *evt_buf,
2203  		uint32_t index, wmi_host_peer_stats_info *peer_stats_info);
2204  
2205  QDF_STATUS
2206  (*extract_peer_tx_pkt_per_mcs)(wmi_unified_t wmi_handle, void *evt_buf,
2207  			       uint32_t index,
2208  			       wmi_host_peer_stats_info *peer_stats_info);
2209  QDF_STATUS
2210  (*extract_peer_rx_pkt_per_mcs)(wmi_unified_t wmi_handle, void *evt_buf,
2211  			       uint32_t index,
2212  			       wmi_host_peer_stats_info *peer_stats_info);
2213  
2214  #endif /* QCA_SUPPORT_MC_CP_STATS */
2215  
2216  QDF_STATUS
2217  (*extract_vdev_prb_fils_stats)(wmi_unified_t wmi_handle,
2218  			       void *evt_buf, uint32_t index,
2219  			       struct wmi_host_vdev_prb_fils_stats *vdev_stats);
2220  
2221  #ifdef OL_ATH_SMART_LOGGING
2222  QDF_STATUS (*extract_smartlog_event)(wmi_unified_t wmi_handle, void *evt_buf,
2223  				     struct wmi_debug_fatal_events *event);
2224  #endif /* OL_ATH_SMART_LOGGING */
2225  QDF_STATUS (*send_power_dbg_cmd)(wmi_unified_t wmi_handle,
2226  				struct wmi_power_dbg_params *param);
2227  
2228  QDF_STATUS (*send_multiple_vdev_restart_req_cmd)(wmi_unified_t wmi_handle,
2229  				struct multiple_vdev_restart_params *param);
2230  QDF_STATUS (*send_multiple_vdev_set_param_cmd)(
2231  		wmi_unified_t wmi_handle,
2232  		struct multiple_vdev_set_param *param);
2233  #ifdef QCA_SUPPORT_AGILE_DFS
2234  QDF_STATUS
2235  (*send_adfs_ocac_abort_cmd)(wmi_unified_t wmi_handle,
2236  			    struct vdev_adfs_abort_params *param);
2237  
2238  QDF_STATUS (*send_adfs_ch_cfg_cmd)(wmi_unified_t wmi_handle,
2239  				   struct vdev_adfs_ch_cfg_params *param);
2240  #endif
2241  QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
2242  			       struct set_fwtest_params *wmi_fwtest);
2243  
2244  QDF_STATUS (*send_wfa_test_cmd)(wmi_unified_t wmi_handle,
2245  				struct set_wfatest_params *wmi_wfatest);
2246  #ifdef WLAN_FEATURE_ACTION_OUI
2247  QDF_STATUS (*send_action_oui_cmd)(wmi_unified_t wmi_handle,
2248  				  struct action_oui_request *req);
2249  #endif /* WLAN_FEATURE_ACTION_OUI */
2250  
2251  QDF_STATUS (*send_peer_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_handle,
2252  		struct rx_reorder_queue_setup_params *param);
2253  
2254  QDF_STATUS (*send_peer_multi_rx_reorder_queue_setup_cmd)(wmi_unified_t wmi_hdl,
2255  		struct multi_rx_reorder_queue_setup_params *param);
2256  
2257  QDF_STATUS (*send_peer_rx_reorder_queue_remove_cmd)(wmi_unified_t wmi_handle,
2258  		struct rx_reorder_queue_remove_params *param);
2259  
2260  QDF_STATUS (*extract_service_ready_ext)(
2261  			wmi_unified_t wmi_handle,
2262  			uint8_t *evt_buf,
2263  			struct wlan_psoc_host_service_ext_param *param);
2264  
2265  QDF_STATUS (*extract_service_ready_ext2)(
2266  			wmi_unified_t wmi_handle,
2267  			uint8_t *evt_buf,
2268  			struct wlan_psoc_host_service_ext2_param *param);
2269  
2270  QDF_STATUS (*extract_dbs_or_sbs_service_ready_ext2)(
2271  			wmi_unified_t wmi_handle, uint8_t *event,
2272  			uint32_t *sbs_lower_band_end_freq);
2273  
2274  QDF_STATUS (*extract_hw_mode_cap_service_ready_ext)(
2275  			wmi_unified_t wmi_handle,
2276  			uint8_t *evt_buf, uint8_t hw_mode_idx,
2277  			struct wlan_psoc_host_hw_mode_caps *param);
2278  
2279  QDF_STATUS (*extract_mac_phy_cap_service_ready_ext)(
2280  			wmi_unified_t wmi_handle,
2281  			uint8_t *evt_buf,
2282  			uint8_t hw_mode_id,
2283  			uint8_t phy_id,
2284  			struct wlan_psoc_host_mac_phy_caps *param);
2285  
2286  QDF_STATUS (*extract_mac_phy_cap_service_ready_ext2)(
2287  			wmi_unified_t wmi_handle,
2288  			uint8_t *evt_buf,
2289  			uint8_t hw_mode_id,
2290  			uint8_t phy_id,
2291  			uint8_t phy_idx,
2292  			struct wlan_psoc_host_mac_phy_caps_ext2 *mac_phy_cap);
2293  
2294  QDF_STATUS (*extract_reg_cap_service_ready_ext)(
2295  			wmi_unified_t wmi_handle,
2296  			uint8_t *evt_buf, uint8_t phy_idx,
2297  			struct wlan_psoc_host_hal_reg_capabilities_ext *param);
2298  
2299  QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext)(
2300  			wmi_unified_t wmi_handle,
2301  			uint8_t *evt_buf, uint8_t idx,
2302  			struct wlan_psoc_host_dbr_ring_caps *param);
2303  
2304  QDF_STATUS (*extract_dbr_ring_cap_service_ready_ext2)(
2305  			wmi_unified_t wmi_handle,
2306  			uint8_t *evt_buf, uint8_t idx,
2307  			struct wlan_psoc_host_dbr_ring_caps *param);
2308  
2309  QDF_STATUS (*extract_scan_radio_cap_service_ready_ext2)(
2310  			wmi_unified_t wmi_handle,
2311  			uint8_t *evt_buf, uint8_t idx,
2312  			struct wlan_psoc_host_scan_radio_caps *param);
2313  
2314  QDF_STATUS (*extract_msdu_idx_qtype_map_service_ready_ext2)(
2315  			wmi_unified_t wmi_handle,
2316  			uint8_t *evt_buf, uint8_t idx,
2317  			uint8_t *msdu_qtype);
2318  
2319  QDF_STATUS (*extract_sw_cal_ver_ext2)(wmi_unified_t wmi_handle,
2320  				      uint8_t *event,
2321  				      struct wmi_host_sw_cal_ver *cal);
2322  
2323  QDF_STATUS (*extract_scaling_params_service_ready_ext)(
2324  			wmi_unified_t wmi_handle,
2325  			uint8_t *evt_buf, uint8_t idx,
2326  			struct wlan_psoc_host_spectral_scaling_params *param);
2327  
2328  QDF_STATUS (*extract_sar_cap_service_ready_ext)(
2329  		wmi_unified_t wmi_handle,
2330  		uint8_t *evt_buf,
2331  		struct wlan_psoc_host_service_ext_param *ext_param);
2332  
2333  #ifdef WLAN_SUPPORT_TWT
2334  QDF_STATUS (*extract_twt_cap_service_ready_ext2)(
2335  		wmi_unified_t wmi_handle,
2336  		uint8_t *evt_buf,
2337  		struct wmi_twt_cap_bitmap_params *var);
2338  #endif
2339  
2340  #ifdef WMI_DBR_SUPPORT
2341  QDF_STATUS (*send_dbr_cfg_cmd)(wmi_unified_t wmi_handle,
2342  				   struct direct_buf_rx_cfg_req *cfg);
2343  
2344  QDF_STATUS (*extract_dbr_buf_release_fixed)(
2345  			wmi_unified_t wmi_handle,
2346  			uint8_t *evt_buf,
2347  			struct direct_buf_rx_rsp *param);
2348  
2349  QDF_STATUS (*extract_dbr_buf_release_entry)(
2350  			wmi_unified_t wmi_handle,
2351  			uint8_t *evt_buf, uint8_t idx,
2352  			struct direct_buf_rx_entry *param);
2353  
2354  QDF_STATUS (*extract_dbr_buf_metadata)(
2355  			wmi_unified_t wmi_handle,
2356  			uint8_t *evt_buf, uint8_t idx,
2357  			struct direct_buf_rx_metadata *param);
2358  
2359  QDF_STATUS (*extract_dbr_buf_cv_metadata)(
2360  			wmi_unified_t wmi_handle,
2361  			uint8_t *evt_buf, uint8_t idx,
2362  			struct direct_buf_rx_cv_metadata *param);
2363  
2364  QDF_STATUS (*extract_dbr_buf_cqi_metadata)(
2365  			wmi_unified_t wmi_handle,
2366  			uint8_t *evt_buf, uint8_t idx,
2367  			struct direct_buf_rx_cqi_metadata *param);
2368  #endif
2369  
2370  QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
2371  				     uint8_t *evt_buf,
2372  				     struct wmi_host_pdev_utf_event *param);
2373  
2374  QDF_STATUS (*extract_pdev_qvit_event)(wmi_unified_t wmi_hdl,
2375  				     uint8_t *evt_buf,
2376  				     struct wmi_host_pdev_qvit_event *param);
2377  
2378  uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle,
2379  				wmi_buf_t buf, uint32_t cmd_id);
2380  
2381  QDF_STATUS (*extract_vdev_peer_delete_all_resp)(
2382  		wmi_unified_t wmi_handle,
2383  		void *evt_buf,
2384  		struct peer_delete_all_response *peer_delete_all_rsp);
2385  
2386  QDF_STATUS (*extract_vdev_peer_delete_all_response_event)(
2387  		wmi_unified_t wmi_handle,
2388  		void *evt_buf,
2389  		struct peer_delete_all_response *param);
2390  
2391  bool (*is_management_record)(uint32_t cmd_id);
2392  bool (*is_diag_event)(uint32_t event_id);
2393  bool (*is_force_fw_hang_cmd)(uint32_t event_id);
2394  uint8_t *(*wmi_id_to_name)(uint32_t cmd_id);
2395  QDF_STATUS (*send_dfs_phyerr_offload_en_cmd)(wmi_unified_t wmi_handle,
2396  		uint32_t pdev_id);
2397  QDF_STATUS (*send_dfs_phyerr_offload_dis_cmd)(wmi_unified_t wmi_handle,
2398  		uint32_t pdev_id);
2399  QDF_STATUS (*extract_reg_chan_list_update_event)(wmi_unified_t wmi_handle,
2400  						 uint8_t *evt_buf,
2401  						 struct cur_regulatory_info
2402  						 *reg_info,
2403  						 uint32_t len);
2404  #ifdef CONFIG_BAND_6GHZ
2405  QDF_STATUS (*extract_reg_chan_list_ext_update_event)(wmi_unified_t wmi_handle,
2406  						     uint8_t *evt_buf,
2407  						     struct cur_regulatory_info
2408  						     *reg_info,
2409  						     uint32_t len);
2410  #ifdef CONFIG_AFC_SUPPORT
2411  QDF_STATUS
2412  (*extract_afc_event)(wmi_unified_t wmi_handle,
2413  		     uint8_t *evt_buf,
2414  		     struct afc_regulatory_info *reg_info,
2415  		     uint32_t len);
2416  #endif
2417  #endif
2418  
2419  QDF_STATUS (*extract_reg_11d_new_country_event)(wmi_unified_t wmi_handle,
2420  		uint8_t *evt_buf,
2421  		struct reg_11d_new_country *reg_11d_country,
2422  		uint32_t len);
2423  
2424  QDF_STATUS (*extract_reg_ch_avoid_event)(wmi_unified_t wmi_handle,
2425  		uint8_t *evt_buf,
2426  		struct ch_avoid_ind_type *ch_avoid_event,
2427  		uint32_t len);
2428  
2429  #ifdef WLAN_SUPPORT_RF_CHARACTERIZATION
2430  QDF_STATUS (*extract_num_rf_characterization_entries)(wmi_unified_t wmi_hdl,
2431  				uint8_t *evt_buf,
2432  				uint32_t *num_rf_characterization_entries);
2433  
2434  
2435  QDF_STATUS (*extract_rf_characterization_entries)(wmi_unified_t wmi_handle,
2436  	uint8_t *evt_buf,
2437  	uint32_t num_rf_characterization_entries,
2438  	struct wmi_host_rf_characterization_event_param *rf_characterization_entries);
2439  #endif
2440  
2441  QDF_STATUS (*extract_chainmask_tables)(wmi_unified_t wmi_handle,
2442  		uint8_t *evt_buf,
2443  		struct wlan_psoc_host_chainmask_table *chainmask_table);
2444  
2445  QDF_STATUS (*send_get_rcpi_cmd)(wmi_unified_t wmi_handle,
2446  				struct rcpi_req *get_rcpi_param);
2447  
2448  QDF_STATUS (*extract_rcpi_response_event)(wmi_unified_t wmi_handle,
2449  					  void *evt_buf,
2450  					  struct rcpi_res *res);
2451  
2452  QDF_STATUS (*extract_dfs_cac_complete_event)(wmi_unified_t wmi_handle,
2453  		uint8_t *evt_buf,
2454  		uint32_t *vdev_id,
2455  		uint32_t len);
2456  QDF_STATUS
2457  (*extract_dfs_ocac_complete_event)(wmi_unified_t wmi_handle,
2458  				   uint8_t *evt_buf,
2459  				   struct vdev_adfs_complete_status *oca_stats);
2460  
2461  QDF_STATUS (*extract_dfs_radar_detection_event)(wmi_unified_t wmi_handle,
2462  		uint8_t *evt_buf,
2463  		struct radar_found_info *radar_found,
2464  		uint32_t len);
2465  QDF_STATUS (*extract_wlan_radar_event_info)(wmi_unified_t wmi_handle,
2466  		uint8_t *evt_buf,
2467  		struct radar_event_info *wlan_radar_event,
2468  		uint32_t len);
2469  
2470  QDF_STATUS (*send_set_country_cmd)(wmi_unified_t wmi_handle,
2471  				struct set_country *param);
2472  
2473  uint32_t (*convert_pdev_id_host_to_target)(wmi_unified_t wmi_handle,
2474  					   uint32_t pdev_id);
2475  uint32_t (*convert_pdev_id_target_to_host)(wmi_unified_t wmi_handle,
2476  					   uint32_t pdev_id);
2477  uint32_t (*convert_phy_id_host_to_target)(wmi_unified_t wmi_handle,
2478  					  uint32_t phy_id);
2479  uint32_t (*convert_phy_id_target_to_host)(wmi_unified_t wmi_handle,
2480  					  uint32_t phy_id);
2481  uint32_t (*convert_host_vdev_param_tlv)(uint32_t param_id);
2482  
2483  /*
2484   * For MCL, convert_pdev_id_host_to_target returns legacy pdev id value.
2485   * But in converged firmware, WMI_SET_CURRENT_COUNTRY_CMDID expects target
2486   * mapping of pdev_id to give only one WMI_REG_CHAN_LIST_CC_EVENTID.
2487   * wmi_pdev_id_conversion_enable cannot be used since it overwrites
2488   * convert_pdev_id_host_to_target which effects legacy cases.
2489   * Below two commands: convert_host_pdev_id_to_target and
2490   * convert_target_pdev_id_to_host should be used for any WMI
2491   * command/event where FW expects target/host mapping of pdev_id respectively.
2492   */
2493  uint32_t (*convert_host_pdev_id_to_target)(wmi_unified_t wmi_handle,
2494  					   uint32_t pdev_id);
2495  uint32_t (*convert_target_pdev_id_to_host)(wmi_unified_t wmi_handle,
2496  					   uint32_t pdev_id);
2497  
2498  uint32_t (*convert_host_phy_id_to_target)(wmi_unified_t wmi_handle,
2499  					  uint32_t phy_id);
2500  uint32_t (*convert_target_phy_id_to_host)(wmi_unified_t wmi_handle,
2501  					  uint32_t phy_id);
2502  
2503  QDF_STATUS (*send_user_country_code_cmd)(wmi_unified_t wmi_handle,
2504  		uint8_t pdev_id, struct cc_regdmn_s *rd);
2505  
2506  QDF_STATUS (*send_wds_entry_list_cmd)(wmi_unified_t wmi_handle);
2507  QDF_STATUS (*extract_wds_entry)(wmi_unified_t wmi_handle,
2508  		uint8_t *evt_buf,
2509  		struct wdsentry *wds_entry,
2510  		u_int32_t idx);
2511  
2512  #ifdef WLAN_FEATURE_NAN
2513  QDF_STATUS (*send_ndp_initiator_req_cmd)(wmi_unified_t wmi_handle,
2514  				struct nan_datapath_initiator_req *req);
2515  QDF_STATUS (*send_ndp_responder_req_cmd)(wmi_unified_t wmi_handle,
2516  				struct nan_datapath_responder_req *req);
2517  QDF_STATUS (*send_ndp_end_req_cmd)(wmi_unified_t wmi_handle,
2518  				struct nan_datapath_end_req *req);
2519  QDF_STATUS (*send_terminate_all_ndps_req_cmd)(wmi_unified_t wmi_handle,
2520  					      uint32_t vdev_id);
2521  
2522  QDF_STATUS (*extract_ndp_initiator_rsp)(wmi_unified_t wmi_handle,
2523  		uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
2524  QDF_STATUS (*extract_ndp_ind)(wmi_unified_t wmi_handle,
2525  		uint8_t *data, struct nan_datapath_indication_event *ind);
2526  QDF_STATUS (*extract_nan_msg)(uint8_t *data,
2527  			      struct nan_dump_msg *msg);
2528  QDF_STATUS (*extract_ndp_confirm)(wmi_unified_t wmi_handle,
2529  		uint8_t *data, struct nan_datapath_confirm_event *ev);
2530  QDF_STATUS (*extract_ndp_responder_rsp)(wmi_unified_t wmi_handle,
2531  		uint8_t *data, struct nan_datapath_responder_rsp *rsp);
2532  QDF_STATUS (*extract_ndp_end_rsp)(wmi_unified_t wmi_handle,
2533  		uint8_t *data, struct nan_datapath_end_rsp_event *rsp);
2534  QDF_STATUS (*extract_ndp_end_ind)(wmi_unified_t wmi_handle,
2535  		uint8_t *data, struct nan_datapath_end_indication_event **ind);
2536  QDF_STATUS (*extract_ndp_sch_update)(wmi_unified_t wmi_handle,
2537  		uint8_t *data, struct nan_datapath_sch_update_event *ind);
2538  QDF_STATUS (*extract_ndp_host_event)(wmi_unified_t wmi_handle, uint8_t *data,
2539  		struct nan_datapath_host_event *evt);
2540  #endif /* WLAN_FEATURE_NAN */
2541  
2542  QDF_STATUS (*send_obss_detection_cfg_cmd)(wmi_unified_t wmi_handle,
2543  		struct wmi_obss_detection_cfg_param *obss_cfg_param);
2544  QDF_STATUS (*extract_obss_detection_info)(uint8_t *evt_buf,
2545  					  struct wmi_obss_detect_info *info);
2546  #if defined(WLAN_SUPPORT_FILS) || defined(CONFIG_BAND_6GHZ)
2547  QDF_STATUS (*send_vdev_fils_enable_cmd)(wmi_unified_t wmi_handle,
2548  					struct config_fils_params *param);
2549  #endif
2550  
2551  QDF_STATUS
2552  (*send_roam_scan_stats_cmd)(wmi_unified_t wmi_handle,
2553  			    struct wmi_roam_scan_stats_req *params);
2554  
2555  QDF_STATUS
2556  (*extract_roam_scan_stats_res_evt)(wmi_unified_t wmi_handle,
2557  				   void *evt_buf,
2558  				   uint32_t *vdev_id,
2559  				   struct wmi_roam_scan_stats_res **res_param);
2560  QDF_STATUS
2561  (*extract_offload_bcn_tx_status_evt)(wmi_unified_t wmi_handle,
2562  				     void *evt_buf, uint32_t *vdev_id,
2563  				     uint32_t *tx_status);
2564  
2565  QDF_STATUS
2566  (*extract_roam_trigger_stats)(wmi_unified_t wmi_handle,
2567  			      void *evt_buf,
2568  			      struct wmi_roam_trigger_info *trig,
2569  			      uint8_t idx, uint8_t btm_idx);
2570  
2571  QDF_STATUS
2572  (*extract_roam_scan_stats)(wmi_unified_t wmi_handle,
2573  			   void *evt_buf,
2574  			   struct wmi_roam_scan_data *dst, uint8_t idx,
2575  			   uint8_t chan_idx, uint8_t ap_idx);
2576  
2577  QDF_STATUS
2578  (*extract_roam_result_stats)(wmi_unified_t wmi_handle,
2579  			     void *evt_buf,
2580  			     struct wmi_roam_result *dst,
2581  			     uint8_t idx);
2582  
2583  QDF_STATUS
2584  (*extract_roam_11kv_stats)(wmi_unified_t wmi_handle,
2585  			   void *evt_buf,
2586  			   struct wmi_neighbor_report_data *dst,
2587  			   uint8_t idx, uint8_t rpt_idx);
2588  
2589  void (*wmi_pdev_id_conversion_enable)(wmi_unified_t wmi_handle,
2590  				      uint32_t *pdev_map,
2591  				      uint8_t size);
2592  void (*send_time_stamp_sync_cmd)(wmi_unified_t wmi_handle);
2593  void (*wmi_free_allocated_event)(uint32_t cmd_event_id,
2594  				void **wmi_cmd_struct_ptr);
2595  int (*wmi_check_and_pad_event)(void *os_handle, void *param_struc_ptr,
2596  				uint32_t param_buf_len,
2597  				uint32_t wmi_cmd_event_id,
2598  				void **wmi_cmd_struct_ptr);
2599  int (*wmi_check_command_params)(void *os_handle, void *param_struc_ptr,
2600  				uint32_t param_buf_len,
2601  				uint32_t wmi_cmd_event_id);
2602  #if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
2603  QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
2604  			struct twt_enable_param *params);
2605  
2606  QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
2607  			struct twt_disable_param *params);
2608  
2609  QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
2610  			struct twt_add_dialog_param *params);
2611  
2612  QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
2613  			struct twt_del_dialog_param *params);
2614  
2615  QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
2616  			struct twt_pause_dialog_cmd_param *params);
2617  
2618  QDF_STATUS (*send_twt_nudge_dialog_cmd)(wmi_unified_t wmi_handle,
2619  			struct twt_nudge_dialog_cmd_param *params);
2620  
2621  QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
2622  			struct twt_resume_dialog_cmd_param *params);
2623  #ifdef WLAN_SUPPORT_BCAST_TWT
2624  QDF_STATUS (*send_twt_btwt_invite_sta_cmd)(wmi_unified_t wmi_handle,
2625  			struct twt_btwt_invite_sta_cmd_param *params);
2626  
2627  QDF_STATUS (*send_twt_btwt_remove_sta_cmd)(wmi_unified_t wmi_handle,
2628  			struct twt_btwt_remove_sta_cmd_param *params);
2629  #endif
2630  
2631  QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
2632  		uint8_t *evt_buf,
2633  		struct twt_enable_complete_event_param *params);
2634  
2635  QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
2636  		uint8_t *evt_buf,
2637  		struct twt_disable_complete_event_param *params);
2638  
2639  QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
2640  		uint8_t *evt_buf,
2641  		struct twt_add_dialog_complete_event_param *params);
2642  
2643  QDF_STATUS (*extract_twt_add_dialog_comp_additional_params)
2644  		(
2645  		 wmi_unified_t wmi_handle, uint8_t *evt_buf,
2646  		 uint32_t evt_buf_len, uint32_t idx,
2647  		 struct twt_add_dialog_additional_params *additional_params
2648  		);
2649  
2650  QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
2651  		uint8_t *evt_buf,
2652  		struct twt_del_dialog_complete_event_param *params);
2653  
2654  QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
2655  		uint8_t *evt_buf,
2656  		struct twt_pause_dialog_complete_event_param *params);
2657  
2658  QDF_STATUS (*extract_twt_nudge_dialog_comp_event)(wmi_unified_t wmi_handle,
2659  		uint8_t *evt_buf,
2660  		struct twt_nudge_dialog_complete_event_param *params);
2661  
2662  QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
2663  		uint8_t *evt_buf,
2664  		struct twt_resume_dialog_complete_event_param *params);
2665  
2666  QDF_STATUS (*extract_twt_notify_event)(wmi_unified_t wmi_handle,
2667  		uint8_t *evt_buf,
2668  		struct twt_notify_event_param *params);
2669  QDF_STATUS (*extract_twt_ack_comp_event)(wmi_unified_t wmi_handle,
2670  		uint8_t *evt_buf,
2671  		struct twt_ack_complete_event_param *params);
2672  #ifdef WLAN_SUPPORT_BCAST_TWT
2673  QDF_STATUS (*extract_twt_btwt_invite_sta_comp_event)(wmi_unified_t wmi_handle,
2674  		uint8_t *evt_buf,
2675  		struct twt_btwt_invite_sta_complete_event_param *params);
2676  
2677  QDF_STATUS (*extract_twt_btwt_remove_sta_comp_event)(wmi_unified_t wmi_handle,
2678  		uint8_t *evt_buf,
2679  		struct twt_btwt_remove_sta_complete_event_param *params);
2680  #endif
2681  
2682  QDF_STATUS(*extract_twt_session_stats_event)
2683  		(
2684  		 wmi_unified_t wmi_handle,
2685  		 uint8_t *evt_buf,
2686  		 struct twt_session_stats_event_param *params
2687  		);
2688  QDF_STATUS(*extract_twt_session_stats_data)
2689  		(
2690  		 wmi_unified_t wmi_handle,
2691  		 uint8_t *evt_buf,
2692  		 struct twt_session_stats_event_param *params,
2693  		 struct twt_session_stats_info *session,
2694  		 uint32_t idx
2695  		);
2696  
2697  #elif defined(WLAN_SUPPORT_TWT)
2698  QDF_STATUS (*send_twt_enable_cmd)(wmi_unified_t wmi_handle,
2699  			struct wmi_twt_enable_param *params);
2700  
2701  QDF_STATUS (*send_twt_disable_cmd)(wmi_unified_t wmi_handle,
2702  			struct wmi_twt_disable_param *params);
2703  
2704  QDF_STATUS (*send_twt_add_dialog_cmd)(wmi_unified_t wmi_handle,
2705  			struct wmi_twt_add_dialog_param *params);
2706  
2707  QDF_STATUS (*send_twt_del_dialog_cmd)(wmi_unified_t wmi_handle,
2708  			struct wmi_twt_del_dialog_param *params);
2709  
2710  QDF_STATUS (*send_twt_pause_dialog_cmd)(wmi_unified_t wmi_handle,
2711  			struct wmi_twt_pause_dialog_cmd_param *params);
2712  
2713  QDF_STATUS (*send_twt_nudge_dialog_cmd)(wmi_unified_t wmi_handle,
2714  			struct wmi_twt_nudge_dialog_cmd_param *params);
2715  
2716  QDF_STATUS (*send_twt_resume_dialog_cmd)(wmi_unified_t wmi_handle,
2717  			struct wmi_twt_resume_dialog_cmd_param *params);
2718  
2719  #ifdef WLAN_SUPPORT_BCAST_TWT
2720  QDF_STATUS (*send_twt_btwt_invite_sta_cmd)(wmi_unified_t wmi_handle,
2721  			struct wmi_twt_btwt_invite_sta_cmd_param *params);
2722  
2723  QDF_STATUS (*send_twt_btwt_remove_sta_cmd)(wmi_unified_t wmi_handle,
2724  			struct wmi_twt_btwt_remove_sta_cmd_param *params);
2725  #endif
2726  
2727  QDF_STATUS (*extract_twt_enable_comp_event)(wmi_unified_t wmi_handle,
2728  		uint8_t *evt_buf,
2729  		struct wmi_twt_enable_complete_event_param *params);
2730  
2731  QDF_STATUS (*extract_twt_disable_comp_event)(wmi_unified_t wmi_handle,
2732  		uint8_t *evt_buf,
2733  		struct wmi_twt_disable_complete_event *params);
2734  
2735  QDF_STATUS (*extract_twt_add_dialog_comp_event)(wmi_unified_t wmi_handle,
2736  		uint8_t *evt_buf,
2737  		struct wmi_twt_add_dialog_complete_event_param *params);
2738  
2739  QDF_STATUS (*extract_twt_add_dialog_comp_additional_params)
2740  		(
2741  		 wmi_unified_t wmi_handle, uint8_t *evt_buf,
2742  		 uint32_t evt_buf_len, uint32_t idx,
2743  		 struct wmi_twt_add_dialog_additional_params *additional_params
2744  		);
2745  
2746  QDF_STATUS (*extract_twt_del_dialog_comp_event)(wmi_unified_t wmi_handle,
2747  		uint8_t *evt_buf,
2748  		struct wmi_twt_del_dialog_complete_event_param *params);
2749  
2750  QDF_STATUS (*extract_twt_pause_dialog_comp_event)(wmi_unified_t wmi_handle,
2751  		uint8_t *evt_buf,
2752  		struct wmi_twt_pause_dialog_complete_event_param *params);
2753  
2754  QDF_STATUS (*extract_twt_nudge_dialog_comp_event)(wmi_unified_t wmi_handle,
2755  		uint8_t *evt_buf,
2756  		struct wmi_twt_nudge_dialog_complete_event_param *params);
2757  
2758  QDF_STATUS (*extract_twt_resume_dialog_comp_event)(wmi_unified_t wmi_handle,
2759  		uint8_t *evt_buf,
2760  		struct wmi_twt_resume_dialog_complete_event_param *params);
2761  
2762  QDF_STATUS (*extract_twt_notify_event)(wmi_unified_t wmi_handle,
2763  		uint8_t *evt_buf,
2764  		struct wmi_twt_notify_event_param *params);
2765  QDF_STATUS (*extract_twt_ack_comp_event)(wmi_unified_t wmi_handle,
2766  		uint8_t *evt_buf,
2767  		struct wmi_twt_ack_complete_event_param *params);
2768  #ifdef WLAN_SUPPORT_BCAST_TWT
2769  QDF_STATUS (*extract_twt_btwt_invite_sta_comp_event)(wmi_unified_t wmi_handle,
2770  		uint8_t *evt_buf,
2771  		struct wmi_twt_btwt_invite_sta_complete_event_param *params);
2772  
2773  QDF_STATUS (*extract_twt_btwt_remove_sta_comp_event)(wmi_unified_t wmi_handle,
2774  		uint8_t *evt_buf,
2775  		struct wmi_twt_btwt_remove_sta_complete_event_param *params);
2776  #endif
2777  
2778  QDF_STATUS(*extract_twt_session_stats_event)
2779  		(
2780  		 wmi_unified_t wmi_handle,
2781  		 uint8_t *evt_buf,
2782  		 struct wmi_twt_session_stats_event_param *params
2783  		);
2784  QDF_STATUS(*extract_twt_session_stats_data)
2785  		(
2786  		 wmi_unified_t wmi_handle,
2787  		 uint8_t *evt_buf,
2788  		 struct wmi_twt_session_stats_event_param *params,
2789  		 struct wmi_host_twt_session_stats_info *session,
2790  		 uint32_t idx
2791  		);
2792  #endif
2793  
2794  #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
2795  QDF_STATUS (*extract_standalone_sounding_evt_params)
2796  		(
2797  		wmi_unified_t wmi_handle,
2798  		void *evt_buf,
2799  		struct wmi_host_standalone_sounding_evt_params *ss_params
2800  		);
2801  #endif
2802  
2803  #ifdef QCA_SUPPORT_CP_STATS
2804  QDF_STATUS (*extract_cca_stats)(wmi_unified_t wmi_handle, void *evt_buf,
2805  				struct wmi_host_congestion_stats *stats);
2806  #endif /* QCA_SUPPORT_CP_STATS */
2807  
2808  #if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
2809  QDF_STATUS (*send_dfs_average_radar_params_cmd)(
2810  		wmi_unified_t wmi_handle,
2811  		struct dfs_radar_found_params *params);
2812  
2813  QDF_STATUS (*extract_dfs_status_from_fw)(wmi_unified_t wmi_handle,
2814  					 void *evt_buf,
2815  					 uint32_t *dfs_status_check);
2816  #endif
2817  
2818  
2819  #ifdef OBSS_PD
2820  QDF_STATUS (*send_obss_spatial_reuse_set)(wmi_unified_t wmi_handle,
2821  		struct wmi_host_obss_spatial_reuse_set_param
2822  		*obss_spatial_reuse_param);
2823  
2824  QDF_STATUS (*send_obss_spatial_reuse_set_def_thresh)(wmi_unified_t wmi_handle,
2825  		struct wmi_host_obss_spatial_reuse_set_def_thresh
2826  		*obss_spatial_reuse_param);
2827  
2828  QDF_STATUS (*send_self_srg_bss_color_bitmap_set)(
2829  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2830  	uint32_t bitmap_1, uint8_t pdev_id);
2831  
2832  QDF_STATUS (*send_self_srg_partial_bssid_bitmap_set)(
2833  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2834  	uint32_t bitmap_1, uint8_t pdev_id);
2835  
2836  QDF_STATUS (*send_self_srg_obss_color_enable_bitmap)(
2837  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2838  	uint32_t bitmap_1, uint8_t pdev_id);
2839  
2840  QDF_STATUS (*send_self_srg_obss_bssid_enable_bitmap)(
2841  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2842  	uint32_t bitmap_1, uint8_t pdev_id);
2843  
2844  QDF_STATUS (*send_self_non_srg_obss_color_enable_bitmap)(
2845  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2846  	uint32_t bitmap_1, uint8_t pdev_id);
2847  
2848  QDF_STATUS (*send_self_non_srg_obss_bssid_enable_bitmap)(
2849  	wmi_unified_t wmi_handle, uint32_t bitmap_0,
2850  	uint32_t bitmap_1, uint8_t pdev_id);
2851  #endif
2852  
2853  QDF_STATUS
2854  (*extract_ctl_failsafe_check_ev_param)(
2855  		wmi_unified_t wmi_handle,
2856  		void *evt_buf,
2857  		struct wmi_host_pdev_ctl_failsafe_event *param);
2858  
2859  QDF_STATUS (*send_peer_del_all_wds_entries_cmd)(wmi_unified_t wmi_handle,
2860  		struct peer_del_all_wds_entries_params *param);
2861  
2862  #ifdef WLAN_CFR_ENABLE
2863  QDF_STATUS
2864  (*extract_cfr_peer_tx_event_param)(wmi_unified_t wmi_handle, void *evt_buf,
2865  				   wmi_cfr_peer_tx_event_param *peer_tx_event);
2866  
2867  QDF_STATUS (*send_peer_cfr_capture_cmd)(wmi_unified_t wmi_handle,
2868  					struct peer_cfr_params *param);
2869  #ifdef WLAN_ENH_CFR_ENABLE
2870  QDF_STATUS (*send_cfr_rcc_cmd)(wmi_unified_t wmi_handle,
2871  			  struct cfr_rcc_param *cfg);
2872  #endif
2873  #endif
2874  
2875  #ifdef WMI_AP_SUPPORT
2876  QDF_STATUS (*send_vdev_pcp_tid_map_cmd)(wmi_unified_t wmi_handle,
2877  					struct vap_pcp_tid_map_params *param);
2878  QDF_STATUS (*send_vdev_tidmap_prec_cmd)(wmi_unified_t wmi_handle,
2879  					struct vap_tidmap_prec_params *param);
2880  QDF_STATUS (*send_peer_ft_roam_cmd)(wmi_unified_t wmi_handle,
2881  				    uint8_t peer_addr[QDF_MAC_ADDR_SIZE],
2882  				    uint8_t vdev_id);
2883  #endif
2884  QDF_STATUS (*send_mws_coex_status_req_cmd)(wmi_unified_t wmi_handle,
2885  					   uint32_t vdev_id, uint32_t cmd_id);
2886  
2887  #ifdef WIFI_POS_CONVERGED
2888  QDF_STATUS (*extract_oem_response_param)
2889  		(wmi_unified_t wmi_hdl, void *resp_buf,
2890  		 struct wmi_oem_response_param *oem_resp_param);
2891  #endif /* WIFI_POS_CONVERGED */
2892  
2893  #if defined(WIFI_POS_CONVERGED) && defined(WLAN_FEATURE_RTT_11AZ_SUPPORT)
2894  QDF_STATUS (*extract_pasn_peer_create_req_event)
2895  			(wmi_unified_t wmi_handle,
2896  			 void *evt_buf,
2897  			 struct wifi_pos_pasn_peer_data *dst);
2898  
2899  QDF_STATUS (*extract_pasn_peer_delete_req_event)
2900  			(wmi_unified_t wmi_handle,
2901  			 void *evt_buf,
2902  			 struct wifi_pos_pasn_peer_data *dst);
2903  
2904  QDF_STATUS (*send_rtt_pasn_auth_status_cmd)
2905  			(wmi_unified_t wmi_handle,
2906  			 struct wlan_pasn_auth_status *data);
2907  
2908  QDF_STATUS (*send_rtt_pasn_deauth_cmd)(wmi_unified_t wmi_handle,
2909  				       struct qdf_mac_addr *peer_mac);
2910  #endif
2911  
2912  QDF_STATUS (*extract_hw_mode_resp_event)(wmi_unified_t wmi_handle,
2913  					 void *evt_buf, uint32_t *cmd_status);
2914  
2915  QDF_STATUS (*extract_rf_path_resp)(wmi_unified_t wmi_handle,
2916  				   void *evt_buf, uint32_t *cmd_status);
2917  
2918  #ifdef WLAN_FEATURE_ELNA
2919  QDF_STATUS (*send_set_elna_bypass_cmd)(wmi_unified_t wmi_handle,
2920  				       struct set_elna_bypass_request *req);
2921  QDF_STATUS (*send_get_elna_bypass_cmd)(wmi_unified_t wmi_handle,
2922  				       struct get_elna_bypass_request *req);
2923  QDF_STATUS (*extract_get_elna_bypass_resp)(wmi_unified_t wmi_handle,
2924  					 void *resp_buf,
2925  					 struct get_elna_bypass_response *resp);
2926  #endif /* WLAN_FEATURE_ELNA */
2927  
2928  #ifdef WLAN_SEND_DSCP_UP_MAP_TO_FW
2929  QDF_STATUS (*send_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
2930  				     uint32_t *dscp_to_tid_map);
2931  #endif
2932  
2933  #ifdef WLAN_FEATURE_MDNS_OFFLOAD
2934  QDF_STATUS (*send_set_mdns_config_cmd)(wmi_unified_t wmi_handle,
2935  				       struct mdns_config_info *mdns_info);
2936  #endif /* WLAN_FEATURE_MDNS_OFFLOAD */
2937  
2938  #ifdef THERMAL_STATS_SUPPORT
2939  QDF_STATUS (*send_get_thermal_stats_cmd)(wmi_unified_t wmi_handle,
2940  					 enum thermal_stats_request_type req,
2941  					 uint8_t temp_offset);
2942  #endif /* THERMAL_STATS_SUPPORT */
2943  
2944  QDF_STATUS (*send_pdev_get_pn_cmd)(wmi_unified_t wmi_handle,
2945  				   struct peer_request_pn_param *pn_params);
2946  QDF_STATUS (*extract_get_pn_data)(wmi_unified_t wmi_handle,
2947  				  void *evt_buf,
2948  				  struct wmi_host_get_pn_event *param);
2949  QDF_STATUS (*send_pdev_get_rxpn_cmd)(wmi_unified_t wmi_handle,
2950  				     struct peer_request_rxpn_param *pn_params);
2951  QDF_STATUS (*extract_get_rxpn_data)(wmi_unified_t wmi_handle,
2952  				    void *evt_buf,
2953  				    struct wmi_host_get_rxpn_event *param);
2954  #ifdef FEATURE_ANI_LEVEL_REQUEST
2955  QDF_STATUS (*send_ani_level_cmd)(wmi_unified_t wmi_handle, uint32_t *freqs,
2956  				 uint8_t num_freqs);
2957  
2958  QDF_STATUS (*extract_ani_level)(uint8_t *evt_buf,
2959  				struct wmi_host_ani_level_event **info,
2960  				uint32_t *num_freqs);
2961  #endif /* FEATURE_ANI_LEVEL_REQUEST */
2962  
2963  QDF_STATUS (*extract_multi_vdev_restart_resp_event)(
2964  		wmi_unified_t wmi_handle, void *evt_buf,
2965  		struct multi_vdev_restart_resp *restart_rsp);
2966  
2967  #ifdef WLAN_FEATURE_PKT_CAPTURE
2968  QDF_STATUS (*extract_vdev_mgmt_offload_event)(
2969  				void *handle,
2970  				void *event_buf,
2971  				struct mgmt_offload_event_params *params);
2972  #endif /* WLAN_FEATURE_PKT_CAPTURE */
2973  
2974  #ifdef WLAN_FEATURE_PKT_CAPTURE_V2
2975  QDF_STATUS (*extract_smart_monitor_event)(
2976  				void *handle,
2977  				void *event_buf,
2978  				struct smu_event_params *params);
2979  #endif /* WLAN_FEATURE_PKT_CAPTURE_V2 */
2980  
2981  QDF_STATUS (*multisoc_tbtt_sync_cmd)(wmi_unified_t wmi_handle,
2982  				     struct rnr_tbtt_multisoc_sync_param *param);
2983  
2984  #ifdef WLAN_FEATURE_SR
2985  QDF_STATUS (*vdev_param_sr_prohibit_send)(wmi_unified_t wmi_handle,
2986  					  struct sr_prohibit_param *param);
2987  #endif
2988  
2989  #ifdef FEATURE_WLAN_TIME_SYNC_FTM
2990  QDF_STATUS (*send_wlan_time_sync_ftm_trigger_cmd)(wmi_unified_t wmi_handle,
2991  						  uint32_t vdev_id,
2992  						  bool burst_mode);
2993  
2994  QDF_STATUS (*send_wlan_ts_qtime_cmd)(wmi_unified_t wmi_handle,
2995  				     uint32_t vdev_id,
2996  				     uint64_t lpass_ts);
2997  
2998  QDF_STATUS (*extract_time_sync_ftm_start_stop_event)(
2999  				wmi_unified_t wmi_hdl, void *evt_buf,
3000  				struct ftm_time_sync_start_stop_params *param);
3001  
3002  QDF_STATUS (*extract_time_sync_ftm_offset_event)(
3003  					wmi_unified_t wmi_hdl, void *evt_buf,
3004  					struct ftm_time_sync_offset *param);
3005  #endif /* FEATURE_WLAN_TIME_SYNC_FTM */
3006  QDF_STATUS (*send_roam_scan_ch_list_req_cmd)(wmi_unified_t wmi_hdl,
3007  					     uint32_t vdev_id);
3008  
3009  QDF_STATUS (*send_injector_config_cmd)(wmi_unified_t wmi_handle,
3010  				struct wmi_host_injector_frame_params *params);
3011  
3012  QDF_STATUS (*send_cp_stats_cmd)(wmi_unified_t wmi_handle,
3013  				void *buf_ptr, uint32_t buf_len);
3014  
3015  QDF_STATUS (*send_halphy_stats_cmd)(wmi_unified_t wmi_handle,
3016  				    void *buf_ptr, uint32_t buf_len);
3017  
3018  QDF_STATUS (*extract_cp_stats_more_pending)(wmi_unified_t wmi_handle,
3019  					    void *evt_buf,
3020  					    uint32_t *more_flag);
3021  QDF_STATUS (*extract_halphy_stats_end_of_event)(wmi_unified_t wmi_handle,
3022  						void *evt_buf,
3023  						uint32_t *end_of_event_flag);
3024  QDF_STATUS (*extract_halphy_stats_event_count)(wmi_unified_t wmi_handle,
3025  					       void *evt_buf,
3026  					       uint32_t *event_count_flag);
3027  #if defined(WLAN_SUPPORT_INFRA_CTRL_PATH_STATS) || \
3028  	defined(WLAN_CONFIG_TELEMETRY_AGENT)
3029  QDF_STATUS
3030  (*extract_infra_cp_stats)(wmi_unified_t wmi_handle,
3031  			  void *evt_buf, uint32_t evt_buf_len,
3032  			  struct infra_cp_stats_event *params);
3033  
3034  QDF_STATUS
3035  (*send_infra_cp_stats_request_cmd)(wmi_unified_t wmi_handle,
3036  				   struct infra_cp_stats_cmd_info *param);
3037  #endif /* WLAN_SUPPORT_INFRA_CTRL_PATH_STATS */
3038  
3039  QDF_STATUS (*send_vdev_tsf_tstamp_action_cmd)(wmi_unified_t wmi,
3040  					      uint8_t vdev_id);
3041  
3042  QDF_STATUS (*extract_vdev_tsf_report_event)(wmi_unified_t wmi_handle,
3043  					    void *evt_buf,
3044  					    struct wmi_host_tsf_event *param);
3045  #ifdef WMI_AP_SUPPORT
3046  QDF_STATUS (*set_radio_tx_mode_select_cmd)(
3047  				wmi_unified_t wmi,
3048  				struct wmi_pdev_enable_tx_mode_selection *param);
3049  QDF_STATUS (*send_lcr_cmd)(wmi_unified_t wmi_handle,
3050  			   struct wmi_wifi_pos_lcr_info *lcr_info);
3051  QDF_STATUS (*send_lci_cmd)(wmi_unified_t wmi_handle,
3052  			   struct wifi_pos_lci_info *lci_info);
3053  #if !defined(CNSS_GENL) && defined(WLAN_RTT_MEASUREMENT_NOTIFICATION)
3054  QDF_STATUS (*extract_measreq_chan_info)(uint32_t data_len, uint8_t *data,
3055  					struct rtt_channel_info *chinfo);
3056  #endif
3057  
3058  #ifdef WLAN_SUPPORT_MESH_LATENCY
3059  QDF_STATUS (*config_vdev_tid_latency_info_cmd)(
3060  				wmi_unified_t wmi,
3061  				struct wmi_vdev_tid_latency_config_params
3062  				*param);
3063  QDF_STATUS (*config_peer_latency_info_cmd)(
3064  				wmi_unified_t wmi,
3065  				struct wmi_peer_latency_config_params
3066  				*param);
3067  #endif
3068  #endif
3069  
3070  #ifdef WLAN_WSI_STATS_SUPPORT
3071  QDF_STATUS (*send_wsi_stats_info_cmd)(
3072  				wmi_unified_t wmi,
3073  				struct wmi_wsi_stats_info_params
3074  				*param);
3075  #endif
3076  
3077  #ifdef QCA_MANUAL_TRIGGERED_ULOFDMA
3078  QDF_STATUS
3079  (*trigger_ulofdma_su_cmd)(wmi_unified_t wmi,
3080  			  struct wmi_trigger_ul_ofdma_su_params *param);
3081  QDF_STATUS
3082  (*trigger_ulofdma_mu_cmd)(wmi_unified_t wmi,
3083  			  struct wmi_trigger_ul_ofdma_mu_params *param);
3084  #endif
3085  
3086  #ifdef QCA_STANDALONE_SOUNDING_TRIGGER
3087  QDF_STATUS
3088  (*config_txbf_sounding_trig_info_cmd)(wmi_unified_t wmi,
3089  				      struct wmi_txbf_sounding_trig_param
3090  				      *sounding_params);
3091  #endif
3092  QDF_STATUS (*send_set_tpc_power_cmd)(wmi_unified_t wmi_handle,
3093  				     uint8_t vdev_id,
3094  				     struct reg_tpc_power_info *param);
3095  
3096  #ifdef CONFIG_AFC_SUPPORT
3097  QDF_STATUS
3098  (*send_afc_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
3099  		struct reg_afc_resp_rx_ind_info *param);
3100  #endif
3101  
3102  #ifdef WLAN_FEATURE_BIG_DATA_STATS
3103  QDF_STATUS (*send_big_data_stats_request_cmd)(
3104  				wmi_unified_t wmi_handle,
3105  				struct stats_request_params *param);
3106  #endif
3107  QDF_STATUS (*extract_dpd_status_ev_param)(wmi_unified_t wmi_handle,
3108  					  void *evt_buf,
3109  					  struct wmi_host_pdev_get_dpd_status_event *param);
3110  
3111  QDF_STATUS (*extract_halphy_cal_status_ev_param)(wmi_unified_t wmi_handle,
3112  						 void *evt_buf,
3113  						 struct wmi_host_pdev_get_halphy_cal_status_event *param);
3114  
3115  QDF_STATUS
3116  (*extract_install_key_comp_event)(wmi_unified_t wmi_handle,
3117  				  void *evt_buf, uint32_t len,
3118  				  struct wmi_install_key_comp_event *param);
3119  
3120  QDF_STATUS (*send_vdev_set_ltf_key_seed_cmd)
3121  			(wmi_unified_t wmi_handle,
3122  			 struct wlan_crypto_ltf_keyseed_data *data);
3123  
3124  #ifdef WLAN_ENH_CFR_ENABLE
3125  QDF_STATUS
3126  (*extract_cfr_phase_param)(wmi_unified_t wmi_handle,
3127  			   void *evt_buf,
3128  			   struct wmi_cfr_phase_delta_param *param);
3129  #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
3130  QDF_STATUS
3131  (*extract_cfr_enh_phase_data)(wmi_unified_t wmi_handle,
3132  			      void *evt_buf,
3133  			      struct wmi_cfr_enh_phase_delta_param *param);
3134  QDF_STATUS
3135  (*extract_cfr_enh_phase_fixed_param)(
3136  				wmi_unified_t wmi_handle,
3137  				void *evt_buf,
3138  				struct wmi_cfr_enh_phase_delta_param *param);
3139  #endif /* WLAN_RCC_ENHANCED_AOA_SUPPORT */
3140  #endif
3141  
3142  QDF_STATUS (*send_set_halphy_cal)(wmi_unified_t wmi_handle,
3143  				  struct wmi_host_send_set_halphy_cal_info *param);
3144  
3145  QDF_STATUS
3146  (*extract_halphy_cal_ev_param)(wmi_unified_t wmi_handle,
3147  			       void *evt_buf,
3148  			       struct wmi_host_pdev_set_halphy_cal_event *param);
3149  
3150  QDF_STATUS (*extract_mgmt_rx_ext_params)(wmi_unified_t wmi_handle,
3151  					 void *evt_buf,
3152  					 struct mgmt_rx_event_ext_params *params);
3153  
3154  #ifdef WLAN_MGMT_RX_REO_SUPPORT
3155  QDF_STATUS (*extract_mgmt_rx_fw_consumed)(wmi_unified_t wmi_handle,
3156  					  void *evt_buf,
3157  					  struct mgmt_rx_reo_params *params);
3158  
3159  QDF_STATUS (*extract_mgmt_rx_reo_params)(wmi_unified_t wmi_handle,
3160  					 void *evt_buf,
3161  					 struct mgmt_rx_reo_params *params);
3162  
3163  QDF_STATUS (*send_mgmt_rx_reo_filter_config_cmd)(
3164  					wmi_unified_t wmi_handle,
3165  					uint8_t pdev_id,
3166  					struct mgmt_rx_reo_filter *filter);
3167  #endif
3168  
3169  #ifdef WLAN_FEATURE_11BE_MLO
3170  QDF_STATUS (*mlo_setup_cmd_send)(wmi_unified_t wmi_handle,
3171  				 struct wmi_mlo_setup_params *params);
3172  QDF_STATUS (*mlo_teardown_cmd_send)(wmi_unified_t wmi_handle,
3173  				    struct wmi_mlo_teardown_params *params);
3174  QDF_STATUS (*mlo_ready_cmd_send)(wmi_unified_t wmi_handle,
3175  				 struct wmi_mlo_ready_params *params);
3176  QDF_STATUS
3177  (*extract_mlo_setup_cmpl_event)(wmi_unified_t wmi_handle,
3178  				uint8_t *buf,
3179  				struct wmi_mlo_setup_complete_params *params);
3180  QDF_STATUS
3181  (*extract_mlo_teardown_cmpl_event)(wmi_unified_t wmi_handle,
3182  				   uint8_t *buf,
3183  				   struct wmi_mlo_teardown_cmpl_params *param);
3184  QDF_STATUS
3185  (*send_mlo_link_set_active_cmd)(wmi_unified_t wmi_handle,
3186  				struct mlo_link_set_active_param *param);
3187  
3188  QDF_STATUS
3189  (*send_mlo_vdev_pause)(wmi_unified_t wmi_handle,
3190  		       struct mlo_vdev_pause *info);
3191  
3192  QDF_STATUS
3193  (*extract_mlo_link_set_active_resp)(wmi_unified_t wmi_handle,
3194  				    void *evt_buf,
3195  				    struct mlo_link_set_active_resp *resp);
3196  QDF_STATUS
3197  (*extract_mgmt_rx_ml_cu_params)(wmi_unified_t wmi_handle,
3198  				void *evt_buf,
3199  				struct mlo_mgmt_ml_info *cu_params);
3200  
3201  QDF_STATUS (*send_mlo_link_removal_cmd)(
3202  		wmi_unified_t wmi_handle,
3203  		const struct mlo_link_removal_cmd_params *params);
3204  
3205  QDF_STATUS (*extract_mlo_link_removal_evt_fixed_param)(
3206  		struct wmi_unified *wmi_handle,
3207  		void *buf,
3208  		struct mlo_link_removal_evt_params *params);
3209  
3210  QDF_STATUS (*extract_mlo_link_removal_tbtt_update)(
3211  		struct wmi_unified *wmi_handle,
3212  		void *buf,
3213  		struct mlo_link_removal_tbtt_info *tbtt_info);
3214  
3215  QDF_STATUS (*extract_mgmt_rx_mlo_link_removal_info)(
3216  		struct wmi_unified *wmi_handle,
3217  		void *buf,
3218  		struct mgmt_rx_mlo_link_removal_info *link_removal_info,
3219  		int num_link_removal_info);
3220  
3221  QDF_STATUS (*extract_mlo_link_disable_request_evt_param)(
3222  		struct wmi_unified *wmi_handle,
3223  		void *buf,
3224  		struct mlo_link_disable_request_evt_params *params);
3225  
3226  #ifdef WLAN_FEATURE_11BE_MLO_ADV_FEATURE
3227  QDF_STATUS (*extract_mlo_link_state_switch_evt)(
3228  			struct wmi_unified *wmi_handle,
3229  			void *buf, uint8_t len,
3230  			struct mlo_link_switch_state_info *params);
3231  
3232  QDF_STATUS
3233  (*extract_mlo_link_switch_request_event)(struct wmi_unified *wmi_handle,
3234  					 void *buf,
3235  					 struct wlan_mlo_link_switch_req *req);
3236  QDF_STATUS
3237  (*send_mlo_link_switch_req_cnf_cmd)(wmi_unified_t wmi_handle,
3238  				    struct wlan_mlo_link_switch_cnf *params);
3239  #endif
3240  #endif
3241  
3242  #ifdef WLAN_FEATURE_SON
3243  QDF_STATUS
3244  (*extract_inst_rssi_stats_resp)(wmi_unified_t wmi_handle, void *evt_buf,
3245  			struct wmi_host_inst_rssi_stats_resp *inst_rssi_resp);
3246  #endif
3247  
3248  #ifdef WLAN_FEATURE_DYNAMIC_MAC_ADDR_UPDATE
3249  QDF_STATUS (*send_set_mac_address_cmd)(wmi_unified_t wmi,
3250  				       struct set_mac_addr_params *params);
3251  QDF_STATUS (*extract_update_mac_address_event)(wmi_unified_t wmi_handle,
3252  					       void *evt_buf, uint8_t *vdev_id,
3253  					       uint8_t *status);
3254  #endif
3255  
3256  QDF_STATUS
3257  (*send_soc_tqm_reset_enable_disable_cmd)(wmi_unified_t wmi_handle,
3258  					 uint32_t enable);
3259  QDF_STATUS
3260  (*send_set_peer_disable_mode)(wmi_unified_t wmi_handle, uint8_t *peer_mac,
3261  			      uint8_t pdev_id, uint32_t disabled_modes);
3262  #ifdef CONFIG_SAWF_DEF_QUEUES
3263  QDF_STATUS
3264  (*send_set_rate_upper_cap_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
3265  			       struct wmi_rc_params *param);
3266  QDF_STATUS
3267  (*send_set_rate_retry_mcs_drop_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
3268  				    struct wmi_rc_params *param);
3269  QDF_STATUS
3270  (*send_set_mcs_probe_intvl_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
3271  				struct wmi_rc_params *param);
3272  QDF_STATUS
3273  (*send_set_nss_probe_intvl_cmd)(wmi_unified_t wmi_handle, uint8_t pdev_id,
3274  				struct wmi_rc_params *param);
3275  QDF_STATUS
3276  (*send_sawf_create_cmd)(wmi_unified_t wmi, struct wmi_sawf_params *params);
3277  QDF_STATUS
3278  (*send_sawf_disable_cmd)(wmi_unified_t wmi, uint32_t svc_id);
3279  #endif
3280  
3281  #ifdef WLAN_FEATURE_11BE_MLO
3282  QDF_STATUS (*extract_quiet_offload_event)(
3283  				wmi_unified_t wmi_handle, void *evt_buf,
3284  				struct vdev_sta_quiet_event *quiet_event);
3285  
3286  QDF_STATUS (*extract_mlo_link_state_event)(
3287  				struct wmi_unified *wmi_handle,
3288  				void *buf,
3289  				struct ml_link_state_info_event *params);
3290  #endif
3291  
3292  #ifdef WLAN_SUPPORT_PPEDS
3293  QDF_STATUS
3294  (*peer_ppe_ds_param_send)(wmi_unified_t wmi_handle,
3295  			  struct peer_ppe_ds_param *param);
3296  #endif /* WLAN_SUPPORT_PPEDS */
3297  
3298  QDF_STATUS
3299  (*send_vdev_pn_mgmt_rxfilter_cmd)(wmi_unified_t wmi_handle,
3300  				  struct vdev_pn_mgmt_rxfilter_params *params);
3301  
3302  #ifdef WLAN_FEATURE_11BE
3303  QDF_STATUS (*send_mlo_peer_tid_to_link_map)(
3304  			wmi_unified_t wmi_handle,
3305  			struct wmi_host_tid_to_link_map_params *params,
3306  			bool t2lm_info);
3307  
3308  QDF_STATUS (*send_mlo_vdev_tid_to_link_map)(
3309  			wmi_unified_t wmi_handle,
3310  			struct wmi_host_tid_to_link_map_ap_params *params);
3311  
3312  QDF_STATUS (*send_mlo_link_state_request)(
3313  			wmi_unified_t wmi_handle,
3314  			struct wmi_host_link_state_params *params);
3315  
3316  QDF_STATUS (*send_link_set_bss_params_cmd)(
3317  		wmi_unified_t wmi_handle,
3318  		struct wmi_host_link_bss_params *params);
3319  
3320  QDF_STATUS (*extract_mlo_vdev_tid_to_link_map_event)(
3321  		struct wmi_unified *wmi_handle,
3322  		uint8_t *buf,
3323  		struct mlo_vdev_host_tid_to_link_map_resp *params);
3324  
3325  QDF_STATUS (*extract_mlo_vdev_bcast_tid_to_link_map_event)(
3326  			struct wmi_unified *wmi_handle,
3327  			void *buf,
3328  			struct mlo_bcast_t2lm_info *bcast_info);
3329  
3330  #endif /* WLAN_FEATURE_11BE */
3331  
3332  QDF_STATUS
3333  (*extract_pktlog_decode_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
3334  				    uint8_t *pdev_id, uint8_t *software_image,
3335  				    uint8_t *chip_info,
3336  				    uint32_t *pktlog_json_version);
3337  
3338  QDF_STATUS
3339  (*send_peer_filter_set_tx_cmd)(wmi_unified_t wmi_handle,
3340  			       uint8_t macaddr[],
3341  			       struct set_tx_peer_filter *param);
3342  
3343  QDF_STATUS
3344  (*extract_pdev_telemetry_stats)(
3345  		wmi_unified_t wmi_handle, void *evt_buf,
3346  		struct wmi_host_pdev_telemetry_stats *pdev_stats);
3347  #ifdef WLAN_FEATURE_PEER_TXQ_FLUSH_CONF
3348  QDF_STATUS
3349  (*send_peer_txq_flush_config_cmd)(wmi_unified_t wmi_handle,
3350  				  struct peer_txq_flush_config_params *param);
3351  #endif
3352  
3353  #ifdef FEATURE_SET
3354  QDF_STATUS
3355  (*feature_set_cmd_send)(wmi_unified_t wmi_handle,
3356  			struct target_feature_set *feature_set);
3357  #endif
3358  
3359  #ifdef WLAN_FEATURE_COAP
3360  QDF_STATUS
3361  (*send_coap_add_pattern_cmd)(wmi_unified_t wmi_handle,
3362  			     struct coap_offload_reply_param *param);
3363  
3364  QDF_STATUS
3365  (*send_coap_del_pattern_cmd)(wmi_unified_t wmi_handle,
3366  			     uint8_t vdev_id, uint32_t pattern_id);
3367  
3368  QDF_STATUS
3369  (*send_coap_add_keepalive_pattern_cmd)(wmi_unified_t wmi_handle,
3370  		struct coap_offload_periodic_tx_param *param);
3371  
3372  QDF_STATUS
3373  (*send_coap_del_keepalive_pattern_cmd)(wmi_unified_t wmi_handle,
3374  				       uint8_t vdev_id, uint32_t pattern_id);
3375  
3376  QDF_STATUS
3377  (*send_coap_cache_get_cmd)(wmi_unified_t wmi_handle,
3378  			   uint8_t vdev_id, uint32_t pattern_id);
3379  
3380  QDF_STATUS (*extract_coap_buf_info)(wmi_unified_t wmi_handle, void *evt_buf,
3381  				    struct coap_buf_info *info);
3382  #endif
3383  #ifdef HEALTH_MON_SUPPORT
3384  QDF_STATUS
3385  (*extract_health_mon_init_done_info_event)(wmi_unified_t wmi_handle,
3386  					   void *evt_buf,
3387  					   struct wmi_health_mon_params *param);
3388  #endif /* HEALTH_MON_SUPPORT */
3389  
3390  QDF_STATUS (*send_update_edca_pifs_param_cmd)(
3391  			wmi_unified_t wmi_handle,
3392  			struct edca_pifs_vparam *edca_pifs_param);
3393  
3394  QDF_STATUS (*extract_sap_coex_cap_service_ready_ext2)(
3395  			wmi_unified_t wmi_handle, uint8_t *event,
3396  			struct wmi_host_coex_fix_chan_cap *cap);
3397  
3398  #ifdef WMI_AP_SUPPORT
3399  QDF_STATUS
3400  (*send_wmi_tdma_schedule_request_cmd)(wmi_unified_t wmi_handle,
3401  				      struct wlan_tdma_sched_cmd_param *param);
3402  
3403  #ifdef WLAN_FEATURE_11BE_MLO
3404  QDF_STATUS
3405  (*send_wmi_link_recommendation_cmd)(wmi_unified_t wmi_handle,
3406  				    struct wlan_link_recmnd_param *param);
3407  #endif
3408  #endif
3409  
3410  QDF_STATUS
3411  (*extract_tgtr2p_table_event)(wmi_unified_t wmi_handle,
3412  			      uint8_t *evt_buf,
3413  			      struct r2p_table_update_status_obj *update_status,
3414  			      uint32_t len);
3415  QDF_STATUS
3416  (*extract_csa_ie_received_ev_params)(wmi_unified_t wmi_handle,
3417  				     void *evt_buf, uint8_t *vdev_id,
3418  				     struct csa_offload_params *csa_event);
3419  #ifdef QCA_SUPPORT_PRIMARY_LINK_MIGRATE
3420  QDF_STATUS (*send_peer_ptqm_migrate_cmd)(
3421  				wmi_unified_t wmi,
3422  				struct peer_ptqm_migrate_params *param);
3423  
3424  QDF_STATUS (*extract_peer_ptqm_migrate_event)(
3425  		struct wmi_unified *wmi_handle,
3426  		uint8_t *buf,
3427  		struct peer_ptqm_migrate_event_params *params);
3428  
3429  QDF_STATUS (*extract_peer_entry_ptqm_migrate_event)(
3430  		struct wmi_unified *wmi_handle,
3431  		uint8_t *buf,
3432  		uint32_t index,
3433  		struct peer_entry_ptqm_migrate_event_params *entry);
3434  #endif /* QCA_SUPPORT_PRIMARY_LINK_MIGRATE */
3435  
3436  QDF_STATUS (*extract_aux_dev_cap_service_ready_ext2)(
3437  			wmi_unified_t wmi_handle,
3438  			uint8_t *evt_buf, uint8_t idx,
3439  			struct wlan_psoc_host_aux_dev_caps *param);
3440  
3441  #ifdef WLAN_RCC_ENHANCED_AOA_SUPPORT
3442  QDF_STATUS (*extract_aoa_caps_service_ready_ext2)
3443  		(struct wmi_unified *wmi_handle, uint8_t *buf,
3444  		 struct wlan_psoc_host_rcc_enh_aoa_caps_ext2 *aoa_cap);
3445  #endif /* WLAN_RCC_ENHANCED_AOA_SUPPORT */
3446  
3447  #ifdef QCA_TARGET_IF_MLME
3448  QDF_STATUS (*send_csa_event_status_ind)(
3449  		wmi_unified_t wmi_handle,
3450  		struct csa_event_status_ind params);
3451  
3452  #ifdef WLAN_FEATURE_LL_LT_SAP
3453  QDF_STATUS (*send_audio_transport_switch_resp)(
3454  		wmi_unified_t wmi_hdl,
3455  		enum bearer_switch_req_type req_type,
3456  		enum bearer_switch_status status);
3457  
3458  QDF_STATUS (*extract_audio_transport_switch_req_event)(
3459  					wmi_unified_t wmi_hdl,
3460  					uint8_t *event, uint32_t data_len,
3461  					enum bearer_switch_req_type *req_type);
3462  
3463  #endif /* WLAN_FEATURE_LL_LT_SAP */
3464  #endif /* QCA_TARGET_IF_MLME */
3465  };
3466  
3467  /* Forward declaration for psoc*/
3468  struct wlan_objmgr_psoc;
3469  
3470  /**
3471   * struct wmi_cmd_init - Saved wmi INIT command
3472   * @buf: Buffer containing the wmi INIT command
3473   * @buf_len: Length of the buffer
3474   */
3475  struct wmi_cmd_init {
3476  	wmi_buf_t buf;
3477  	uint32_t buf_len;
3478  };
3479  
3480  /**
3481   * struct wmi_host_abi_version - HOST WMI ABI version
3482   * @abi_version_0: WMI Major and Minor versions
3483   * @abi_version_1: WMI change revision
3484   * @abi_version_ns_0: ABI version namespace first four dwords
3485   * @abi_version_ns_1: ABI version namespace second four dwords
3486   * @abi_version_ns_2: ABI version namespace third four dwords
3487   * @abi_version_ns_3: ABI version namespace fourth four dwords
3488   */
3489  struct wmi_host_abi_version {
3490  	uint32_t abi_version_0;
3491  	uint32_t abi_version_1;
3492  	uint32_t abi_version_ns_0;
3493  	uint32_t abi_version_ns_1;
3494  	uint32_t abi_version_ns_2;
3495  	uint32_t abi_version_ns_3;
3496  };
3497  
3498  /* number of debugfs entries used */
3499  #ifdef WMI_INTERFACE_FILTERED_EVENT_LOGGING
3500  /* filtered logging added 4 more entries */
3501  #define NUM_DEBUG_INFOS 13
3502  #else
3503  #define NUM_DEBUG_INFOS 9
3504  #endif
3505  
3506  struct wmi_unified {
3507  	void *scn_handle;    /* handle to device */
3508  	osdev_t  osdev; /* handle to use OS-independent services */
3509  	struct wbuff_mod_handle *wbuff_handle; /* handle to wbuff */
3510  	qdf_atomic_t pending_cmds;
3511  	HTC_ENDPOINT_ID wmi_endpoint_id;
3512  	uint16_t max_msg_len;
3513  	uint32_t *event_id;
3514  	wmi_unified_event_handler *event_handler;
3515  	struct wmi_unified_exec_ctx *ctx;
3516  	HTC_HANDLE htc_handle;
3517  	qdf_spinlock_t eventq_lock;
3518  	qdf_nbuf_queue_t event_queue;
3519  	qdf_work_t rx_event_work;
3520  	qdf_workqueue_t *wmi_rx_work_queue;
3521  	qdf_workqueue_t *wmi_rx_diag_work_queue;
3522  	qdf_spinlock_t diag_eventq_lock;
3523  	qdf_nbuf_queue_t diag_event_queue;
3524  	qdf_work_t rx_diag_event_work;
3525  	uint32_t wmi_rx_diag_events_dropped;
3526  	int wmi_stop_in_progress;
3527  	struct wmi_host_abi_version fw_abi_version;
3528  	struct wmi_host_abi_version final_abi_vers;
3529  	uint32_t num_of_diag_events_logs;
3530  	uint32_t *events_logs_list;
3531  #ifdef WLAN_DBGLOG_DEBUGFS
3532  	struct fwdebug dbglog;
3533  	struct dentry *debugfs_phy;
3534  #endif /* WLAN_DBGLOG_DEBUGFS */
3535  
3536  #ifdef WMI_INTERFACE_EVENT_LOGGING
3537  	struct wmi_debug_log_info log_info;
3538  #endif /*WMI_INTERFACE_EVENT_LOGGING */
3539  
3540  	qdf_atomic_t is_target_suspended;
3541  	qdf_atomic_t is_target_suspend_acked;
3542  #ifdef WLAN_FEATURE_WMI_SEND_RECV_QMI
3543  	bool is_qmi_stats_enabled;
3544  #endif
3545  
3546  #ifdef FEATURE_RUNTIME_PM
3547  	qdf_atomic_t runtime_pm_inprogress;
3548  #endif
3549  	qdf_atomic_t is_wow_bus_suspended;
3550  	qdf_atomic_t is_wow_enable_ack_failed;
3551  	bool tag_crash_inject;
3552  	bool tgt_force_assert_enable;
3553  	enum wmi_target_type target_type;
3554  	struct wmi_ops *ops;
3555  	bool use_cookie;
3556  	bool wmi_stopinprogress;
3557  	uint32_t *wmi_events;
3558  	uint32_t *services;
3559  	struct wmi_soc *soc;
3560  	uint16_t wmi_max_cmds;
3561  	struct dentry *debugfs_de[NUM_DEBUG_INFOS];
3562  	qdf_atomic_t critical_events_in_flight;
3563  #ifdef WMI_EXT_DBG
3564  	int wmi_ext_dbg_msg_queue_size;
3565  	qdf_list_t wmi_ext_dbg_msg_queue;
3566  	qdf_spinlock_t wmi_ext_dbg_msg_queue_lock;
3567  	qdf_dentry_t wmi_ext_dbg_dentry;
3568  #endif /*WMI_EXT_DBG*/
3569  	uint32_t *cmd_pdev_id_map;
3570  	uint32_t *evt_pdev_id_map;
3571  	uint32_t *cmd_phy_id_map;
3572  	uint32_t *evt_phy_id_map;
3573  #ifdef WMI_INTERFACE_SEQUENCE_CHECK
3574  	/* wmi sequence stop */
3575  	bool wmi_sequence_stop;
3576  	/* wmi next transmit sequence number */
3577  	uint32_t wmi_sequence;
3578  	/* wmi completion expected sequence number */
3579  	uint32_t wmi_exp_sequence;
3580  	qdf_spinlock_t wmi_seq_lock;
3581  #endif /*WMI_INTERFACE_SEQUENCE_CHECK*/
3582  
3583  	qdf_atomic_t num_stats_over_qmi;
3584  };
3585  
3586  #define WMI_MAX_RADIOS 3
3587  struct wmi_soc {
3588  	struct wlan_objmgr_psoc *wmi_psoc;
3589  	void *scn_handle;    /* handle to device */
3590  	qdf_atomic_t num_pdevs;
3591  	enum wmi_target_type target_type;
3592  	bool is_async_ep;
3593  	HTC_HANDLE htc_handle;
3594  	uint32_t event_id[WMI_UNIFIED_MAX_EVENT];
3595  	wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
3596  	uint32_t max_event_idx;
3597  	struct wmi_unified_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
3598  	qdf_spinlock_t ctx_lock;
3599  	struct wmi_unified *wmi_pdev[WMI_MAX_RADIOS];
3600  	HTC_ENDPOINT_ID wmi_endpoint_id[WMI_MAX_RADIOS];
3601  	uint16_t max_msg_len[WMI_MAX_RADIOS];
3602  	struct wmi_ops *ops;
3603  	const uint32_t *svc_ids;
3604  #if defined(WLAN_FEATURE_WMI_DIAG_OVER_CE7) || \
3605  	defined(WLAN_DIAG_AND_DBR_OVER_SEPARATE_CE)
3606  	HTC_ENDPOINT_ID wmi_diag_endpoint_id;
3607  #endif
3608  #if defined(WLAN_DIAG_AND_DBR_OVER_SEPARATE_CE)
3609  	HTC_ENDPOINT_ID wmi_dbr_endpoint_id;
3610  #endif
3611  	uint32_t wmi_events[wmi_events_max];
3612  	/* WMI service bitmap received from target */
3613  	uint32_t *wmi_service_bitmap;
3614  	uint32_t *wmi_ext_service_bitmap;
3615  	uint32_t wmi_ext2_service_bitmap_len;
3616  	uint32_t *wmi_ext2_service_bitmap;
3617  	uint32_t services[wmi_services_max];
3618  	uint16_t wmi_max_cmds;
3619  	uint32_t soc_idx;
3620  	uint32_t cmd_pdev_id_map[WMI_MAX_RADIOS];
3621  	uint32_t evt_pdev_id_map[WMI_MAX_RADIOS];
3622  	uint32_t cmd_phy_id_map[WMI_MAX_RADIOS];
3623  	uint32_t evt_phy_id_map[WMI_MAX_RADIOS];
3624  	bool is_pdev_is_map_enable;
3625  	bool is_phy_id_map_enable;
3626  #ifdef WMI_INTERFACE_EVENT_LOGGING
3627  	uint32_t buf_offset_command;
3628  	uint32_t buf_offset_event;
3629  #endif /*WMI_INTERFACE_EVENT_LOGGING */
3630  };
3631  
3632  /**
3633   * struct wmi_process_fw_event_params - fw event parameters
3634   * @wmi_handle: wmi handle
3635   * @evt_buf: event buffer
3636   */
3637  struct wmi_process_fw_event_params {
3638  	void *wmi_handle;
3639  	void *evt_buf;
3640  };
3641  
3642  /**
3643   * wmi_mtrace() - Wrappper function for qdf_mtrace api
3644   * @message_id: 32-Bit Wmi message ID
3645   * @vdev_id: Vdev ID
3646   * @data: Actual message contents
3647   *
3648   * This function converts the 32-bit WMI message ID in 15-bit message ID
3649   * format for qdf_mtrace as in qdf_mtrace message there are only 15
3650   * bits reserved for message ID.
3651   * out of these 15-bits, 8-bits (From MSB) specifies the WMI_GRP_ID
3652   * and remaining 7-bits specifies the actual WMI command. With this
3653   * notation there can be maximum 256 groups and each group can have
3654   * max 128 commands can be supported.
3655   *
3656   * Return: None
3657   */
3658  void wmi_mtrace(uint32_t message_id, uint16_t vdev_id, uint32_t data);
3659  
3660  void wmi_unified_register_module(enum wmi_target_type target_type,
3661  			void (*wmi_attach)(wmi_unified_t wmi_handle));
3662  void wmi_tlv_init(void);
3663  void wmi_non_tlv_init(void);
3664  #ifdef WMI_NON_TLV_SUPPORT
3665  /* ONLY_NON_TLV_TARGET:TLV attach dummy function definition for case when
3666   * driver supports only NON-TLV target (WIN mainline) */
3667  #define wmi_tlv_attach(x) qdf_print("TLV Unavailable")
3668  #else
3669  void wmi_tlv_attach(wmi_unified_t wmi_handle);
3670  #endif
3671  void wmi_non_tlv_attach(wmi_unified_t wmi_handle);
3672  
3673  #ifdef FEATURE_WLAN_EXTSCAN
3674  void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle);
3675  #else
wmi_extscan_attach_tlv(struct wmi_unified * wmi_handle)3676  static inline void wmi_extscan_attach_tlv(struct wmi_unified *wmi_handle)
3677  {
3678  }
3679  #endif
3680  
3681  #ifdef WMI_SMART_ANT_SUPPORT
3682  void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle);
3683  #else
wmi_smart_ant_attach_tlv(struct wmi_unified * wmi_handle)3684  static inline void wmi_smart_ant_attach_tlv(struct wmi_unified *wmi_handle)
3685  {
3686  }
3687  #endif
3688  
3689  #ifdef WMI_DBR_SUPPORT
3690  void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle);
3691  #else
wmi_dbr_attach_tlv(struct wmi_unified * wmi_handle)3692  static inline void wmi_dbr_attach_tlv(struct wmi_unified *wmi_handle)
3693  {
3694  }
3695  #endif
3696  
3697  #ifdef WMI_ATF_SUPPORT
3698  void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle);
3699  #else
wmi_atf_attach_tlv(struct wmi_unified * wmi_handle)3700  static inline void wmi_atf_attach_tlv(struct wmi_unified *wmi_handle)
3701  {
3702  }
3703  #endif
3704  
3705  #ifdef WMI_AP_SUPPORT
3706  void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle);
3707  #else
wmi_ap_attach_tlv(struct wmi_unified * wmi_handle)3708  static inline void wmi_ap_attach_tlv(struct wmi_unified *wmi_handle)
3709  {
3710  }
3711  #endif
3712  
3713  #ifdef WLAN_FEATURE_DSRC
3714  void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle);
3715  #else
wmi_ocb_attach_tlv(wmi_unified_t wmi_handle)3716  static inline void wmi_ocb_attach_tlv(wmi_unified_t wmi_handle)
3717  {
3718  }
3719  #endif
3720  
3721  #ifdef WLAN_FEATURE_NAN
3722  void wmi_nan_attach_tlv(wmi_unified_t wmi_handle);
3723  #else
wmi_nan_attach_tlv(wmi_unified_t wmi_handle)3724  static inline void wmi_nan_attach_tlv(wmi_unified_t wmi_handle)
3725  {
3726  }
3727  #endif
3728  
3729  #ifdef FEATURE_P2P_LISTEN_OFFLOAD
3730  void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle);
3731  #else
3732  static inline
wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle)3733  void wmi_p2p_listen_offload_attach_tlv(wmi_unified_t wmi_handle)
3734  {
3735  }
3736  #endif
3737  
3738  #ifdef CONVERGED_P2P_ENABLE
3739  void wmi_p2p_attach_tlv(wmi_unified_t wmi_handle);
3740  #else
wmi_p2p_attach_tlv(struct wmi_unified * wmi_handle)3741  static inline void wmi_p2p_attach_tlv(struct wmi_unified *wmi_handle)
3742  {
3743  }
3744  #endif
3745  
3746  #ifdef WLAN_FEATURE_INTEROP_ISSUES_AP
3747  void wmi_interop_issues_ap_attach_tlv(wmi_unified_t wmi_handle);
3748  #else
3749  static inline void
wmi_interop_issues_ap_attach_tlv(struct wmi_unified * wmi_handle)3750  wmi_interop_issues_ap_attach_tlv(struct wmi_unified *wmi_handle)
3751  {
3752  }
3753  #endif
3754  
3755  #ifdef DCS_INTERFERENCE_DETECTION
3756  void wmi_dcs_attach_tlv(wmi_unified_t wmi_handle);
3757  #else
3758  static inline void
wmi_dcs_attach_tlv(struct wmi_unified * wmi_handle)3759  wmi_dcs_attach_tlv(struct wmi_unified *wmi_handle)
3760  {
3761  }
3762  #endif
3763  
3764  #ifdef FEATURE_LFR_SUBNET_DETECTION
3765  void wmi_lfr_subnet_detection_attach_tlv(wmi_unified_t wmi_handle);
3766  #else
3767  static inline
wmi_lfr_subnet_detection_attach_tlv(struct wmi_unified * wmi_handle)3768  void wmi_lfr_subnet_detection_attach_tlv(struct wmi_unified *wmi_handle)
3769  {
3770  }
3771  #endif
3772  
3773  #ifdef FEATURE_RSSI_MONITOR
3774  void wmi_rssi_monitor_attach_tlv(wmi_unified_t wmi_handle);
3775  #else
3776  static inline
wmi_rssi_monitor_attach_tlv(struct wmi_unified * wmi_handle)3777  void wmi_rssi_monitor_attach_tlv(struct wmi_unified *wmi_handle)
3778  {
3779  }
3780  #endif
3781  
3782  #ifdef FEATURE_WLAN_ESE
3783  void wmi_ese_attach_tlv(wmi_unified_t wmi_handle);
3784  #else
wmi_ese_attach_tlv(struct wmi_unified * wmi_handle)3785  static inline void wmi_ese_attach_tlv(struct wmi_unified *wmi_handle)
3786  {
3787  }
3788  #endif
3789  
3790  #ifdef WLAN_FEATURE_ROAM_OFFLOAD
3791  void wmi_roam_offload_attach_tlv(wmi_unified_t wmi_handle);
3792  #else
3793  static inline
wmi_roam_offload_attach_tlv(struct wmi_unified * wmi_handle)3794  void wmi_roam_offload_attach_tlv(struct wmi_unified *wmi_handle)
3795  {
3796  }
3797  #endif
3798  
3799  #ifdef WLAN_FEATURE_FILS_SK
3800  void wmi_fils_sk_attach_tlv(wmi_unified_t wmi_handle);
3801  #else
wmi_fils_sk_attach_tlv(struct wmi_unified * wmi_handle)3802  static inline void wmi_fils_sk_attach_tlv(struct wmi_unified *wmi_handle)
3803  {
3804  }
3805  #endif
3806  
3807  #ifdef WMI_ROAM_SUPPORT
3808  void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle);
3809  #else
wmi_roam_attach_tlv(struct wmi_unified * wmi_handle)3810  static inline void wmi_roam_attach_tlv(struct wmi_unified *wmi_handle)
3811  {
3812  }
3813  #endif
3814  
3815  #ifdef WMI_CONCURRENCY_SUPPORT
3816  void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle);
3817  #else
wmi_concurrency_attach_tlv(struct wmi_unified * wmi_handle)3818  static inline void wmi_concurrency_attach_tlv(struct wmi_unified *wmi_handle)
3819  {
3820  }
3821  #endif
3822  
3823  #ifdef FEATURE_WLAN_D0WOW
3824  void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle);
3825  #else
wmi_d0wow_attach_tlv(struct wmi_unified * wmi_handle)3826  static inline void wmi_d0wow_attach_tlv(struct wmi_unified *wmi_handle)
3827  {
3828  }
3829  #endif
3830  
3831  #ifdef FEATURE_WLAN_RA_FILTERING
3832  void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle);
3833  #else
3834  static inline
wmi_ra_filtering_attach_tlv(struct wmi_unified * wmi_handle)3835  void wmi_ra_filtering_attach_tlv(struct wmi_unified *wmi_handle)
3836  {
3837  }
3838  #endif
3839  
3840  #ifdef FEATURE_WLAN_LPHB
3841  void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle);
3842  #else
wmi_lphb_attach_tlv(struct wmi_unified * wmi_handle)3843  static inline void wmi_lphb_attach_tlv(struct wmi_unified *wmi_handle)
3844  {
3845  }
3846  #endif
3847  
3848  #ifdef WLAN_FEATURE_PACKET_FILTERING
3849  void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle);
3850  #else
3851  static inline
wmi_packet_filtering_attach_tlv(struct wmi_unified * wmi_handle)3852  void wmi_packet_filtering_attach_tlv(struct wmi_unified *wmi_handle)
3853  {
3854  }
3855  #endif
3856  
3857  #ifdef WLAN_FEATURE_EXTWOW_SUPPORT
3858  void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle);
3859  #else
wmi_extwow_attach_tlv(struct wmi_unified * wmi_handle)3860  static inline void wmi_extwow_attach_tlv(struct wmi_unified *wmi_handle)
3861  {
3862  }
3863  #endif
3864  
3865  #ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
3866  void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle);
3867  #else
wmi_pmo_attach_tlv(struct wmi_unified * wmi_handle)3868  static inline void wmi_pmo_attach_tlv(struct wmi_unified *wmi_handle)
3869  {
3870  }
3871  #endif
3872  
3873  #ifdef FEATURE_WLAN_TDLS
3874  void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle);
3875  #else
wmi_tdls_attach_tlv(struct wmi_unified * wmi_handle)3876  static inline void wmi_tdls_attach_tlv(struct wmi_unified *wmi_handle)
3877  {
3878  }
3879  #endif
3880  
3881  #ifdef WLAN_POLICY_MGR_ENABLE
3882  void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle);
3883  #else
3884  static inline
wmi_policy_mgr_attach_tlv(struct wmi_unified * wmi_handle)3885  void wmi_policy_mgr_attach_tlv(struct wmi_unified *wmi_handle)
3886  {
3887  }
3888  #endif
3889  
3890  #if defined(WLAN_FEATURE_ROAM_OFFLOAD) && defined(FEATURE_DENYLIST_MGR)
3891  void wmi_denylist_mgr_attach_tlv(struct wmi_unified *wmi_handle);
3892  #else
3893  static inline
wmi_denylist_mgr_attach_tlv(struct wmi_unified * wmi_handle)3894  void wmi_denylist_mgr_attach_tlv(struct wmi_unified *wmi_handle)
3895  {
3896  }
3897  #endif
3898  
3899  #ifdef WMI_STA_SUPPORT
3900  void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle);
3901  #else
wmi_sta_attach_tlv(struct wmi_unified * wmi_handle)3902  static inline void wmi_sta_attach_tlv(struct wmi_unified *wmi_handle)
3903  {
3904  }
3905  #endif
3906  
3907  #ifdef WLAN_WMI_BCN
3908  void wmi_bcn_attach_tlv(wmi_unified_t wmi_handle);
3909  #else
wmi_bcn_attach_tlv(wmi_unified_t wmi_handle)3910  static inline void wmi_bcn_attach_tlv(wmi_unified_t wmi_handle)
3911  {
3912  }
3913  #endif
3914  
3915  /**
3916   * wmi_fwol_attach_tlv() - attach fw offload tlv handlers
3917   * @wmi_handle: wmi handle
3918   *
3919   * Return: void
3920   */
3921  #ifdef WLAN_FW_OFFLOAD
3922  void wmi_fwol_attach_tlv(wmi_unified_t wmi_handle);
3923  #else
wmi_fwol_attach_tlv(wmi_unified_t wmi_handle)3924  static inline void wmi_fwol_attach_tlv(wmi_unified_t wmi_handle)
3925  {
3926  }
3927  #endif
3928  
3929  /**
3930   * wmi_gpio_attach_tlv() - attach gpio tlv handlers
3931   * @wmi_handle: wmi handle
3932   *
3933   * Return: void
3934   */
3935  #ifdef WLAN_FEATURE_GPIO_CFG
3936  void wmi_gpio_attach_tlv(wmi_unified_t wmi_handle);
3937  #else
3938  static inline void
wmi_gpio_attach_tlv(struct wmi_unified * wmi_handle)3939  wmi_gpio_attach_tlv(struct wmi_unified *wmi_handle)
3940  {
3941  }
3942  #endif
3943  
3944  /**
3945   * wmi_align() - provides word aligned parameter
3946   * @param: parameter to be aligned
3947   *
3948   * Return: word aligned parameter
3949   */
wmi_align(uint32_t param)3950  static inline uint32_t wmi_align(uint32_t param)
3951  {
3952  	return roundup(param, sizeof(uint32_t));
3953  }
3954  
3955  /**
3956   * wmi_vdev_map_to_vdev_id() - Provides vdev id corresponding to idx
3957   *                             from vdev map
3958   * @vdev_map: Bitmask containing information of active vdev ids
3959   * @idx: Index referring to the i'th bit set from LSB in vdev map
3960   *
3961   * This API returns the vdev id for the i'th bit set from LSB in vdev map.
3962   * Index runs through 1 from maximum number of vdevs set in the vdev map
3963   *
3964   * Return: vdev id of the vdev object
3965   */
wmi_vdev_map_to_vdev_id(uint32_t vdev_map,uint32_t idx)3966  static inline uint32_t wmi_vdev_map_to_vdev_id(uint32_t vdev_map,
3967  					       uint32_t idx)
3968  {
3969  	uint32_t vdev_count = 0, vdev_set = 0, vdev_id = WLAN_INVALID_VDEV_ID;
3970  
3971  	while (vdev_map) {
3972  		vdev_set += (vdev_map & 0x1);
3973  		if (vdev_set == (idx+1)) {
3974  			vdev_id = vdev_count;
3975  			break;
3976  		}
3977  		vdev_map >>= 1;
3978  		vdev_count++;
3979  	}
3980  
3981  	return vdev_id;
3982  }
3983  
3984  /**
3985   * wmi_vdev_map_to_num_vdevs() - Provides number of vdevs active based on the
3986   *                               vdev map received from FW
3987   * @vdev_map: Bitmask containing information of active vdev ids
3988   *
3989   * Return: Number of vdevs set in the vdev bit mask
3990   */
wmi_vdev_map_to_num_vdevs(uint32_t vdev_map)3991  static inline uint32_t wmi_vdev_map_to_num_vdevs(uint32_t vdev_map)
3992  {
3993  	uint32_t num_vdevs = 0;
3994  
3995  	while (vdev_map) {
3996  		num_vdevs += (vdev_map & 0x1);
3997  		vdev_map >>= 1;
3998  	}
3999  
4000  	return num_vdevs;
4001  }
4002  
4003  #ifdef WMI_EXT_DBG
4004  
4005  /**
4006   * wmi_ext_dbg_msg_get() - Allocate memory for wmi debug msg
4007   *
4008   * @buflen: Length of WMI message buffer
4009   *
4010   * Return: Allocated msg buffer else NULL on failure.
4011   */
wmi_ext_dbg_msg_get(uint32_t buflen)4012  static inline struct wmi_ext_dbg_msg *wmi_ext_dbg_msg_get(uint32_t buflen)
4013  {
4014  	return qdf_mem_malloc(sizeof(struct wmi_ext_dbg_msg) + buflen);
4015  }
4016  
4017  /**
4018   * wmi_ext_dbg_msg_put() - Free wmi debug msg buffer
4019   *
4020   * @msg: wmi message buffer to be freed
4021   *
4022   * Return: none
4023   */
wmi_ext_dbg_msg_put(struct wmi_ext_dbg_msg * msg)4024  static inline void wmi_ext_dbg_msg_put(struct wmi_ext_dbg_msg *msg)
4025  {
4026  	qdf_mem_free(msg);
4027  }
4028  
4029  #endif /*WMI_EXT_DBG */
4030  
4031  #ifdef WLAN_CFR_ENABLE
4032  void wmi_cfr_attach_tlv(struct wmi_unified *wmi_handle);
4033  #else
wmi_cfr_attach_tlv(struct wmi_unified * wmi_handle)4034  static inline void wmi_cfr_attach_tlv(struct wmi_unified *wmi_handle)
4035  {
4036  }
4037  #endif
4038  
4039  #ifdef QCA_SUPPORT_CP_STATS
4040  void wmi_cp_stats_attach_tlv(struct wmi_unified *wmi_handle);
4041  #else
wmi_cp_stats_attach_tlv(struct wmi_unified * wmi_handle)4042  static inline void wmi_cp_stats_attach_tlv(struct wmi_unified *wmi_handle)
4043  {
4044  }
4045  #endif /* QCA_SUPPORT_CP_STATS */
4046  
4047  #ifdef QCA_TARGET_IF_MLME
4048  void wmi_mlme_attach_tlv(wmi_unified_t wmi_handle);
4049  #else
wmi_mlme_attach_tlv(wmi_unified_t wmi_handle)4050  static inline void wmi_mlme_attach_tlv(wmi_unified_t wmi_handle)
4051  {
4052  }
4053  #endif /* QCA_TARGET_IF_MLME */
4054  
4055  #ifdef QCA_SUPPORT_MC_CP_STATS
4056  void wmi_mc_cp_stats_attach_tlv(struct wmi_unified *wmi_handle);
4057  #else
wmi_mc_cp_stats_attach_tlv(struct wmi_unified * wmi_handle)4058  static inline void wmi_mc_cp_stats_attach_tlv(struct wmi_unified *wmi_handle)
4059  {
4060  }
4061  #endif /* QCA_SUPPORT_MC_CP_STATS */
4062  
4063  #ifdef WLAN_FEATURE_COAP
4064  void wmi_coap_attach_tlv(wmi_unified_t wmi_handle);
4065  #else
wmi_coap_attach_tlv(wmi_unified_t wmi_handle)4066  static inline void wmi_coap_attach_tlv(wmi_unified_t wmi_handle)
4067  {
4068  }
4069  #endif
4070  
4071  /*
4072   * wmi_map_ch_width() - map wmi channel width to host channel width
4073   * @wmi_width: wmi channel width
4074   *
4075   * Return: host channel width, enum phy_ch_width
4076   */
4077  enum phy_ch_width wmi_map_ch_width(A_UINT32 wmi_width);
4078  
4079  /**
4080   * wmi_host_to_fw_phymode() - convert host to fw phymode
4081   * @host_phymode: phymode to convert
4082   *
4083   * Return: one of the values defined in enum WMI_HOST_WLAN_PHY_MODE;
4084   *         or WMI_HOST_MODE_UNKNOWN if the conversion fails
4085   */
4086  WMI_HOST_WLAN_PHY_MODE wmi_host_to_fw_phymode(enum wlan_phymode host_phymode);
4087  #endif
4088