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