blob: a4274ac17dc7c19641936df107cb8479199b0716 [file] [log] [blame]
Govind Singhd475ea92016-03-06 19:55:02 +05301/*
Naveen Rawat79a787c2017-12-14 13:24:31 -08002 * Copyright (c) 2013-2018 The Linux Foundation. All rights reserved.
Govind Singhd475ea92016-03-06 19:55:02 +05303 *
Govind Singhd475ea92016-03-06 19:55:02 +05304 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all
7 * copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
17 */
18
19/*
Govind Singh6ad6ada2016-02-04 18:42:30 +053020 * This file contains the API definitions for the Unified Wireless Module
21 * Interface (WMI).
Govind Singhd475ea92016-03-06 19:55:02 +053022 */
23
24#ifndef _WMI_UNIFIED_API_H_
25#define _WMI_UNIFIED_API_H_
26
27#include <osdep.h>
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053028#ifdef CONFIG_MCL
Govind Singhd475ea92016-03-06 19:55:02 +053029#include "wmi.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053030#endif
Govind Singhd475ea92016-03-06 19:55:02 +053031#include "htc_api.h"
Govind Singh3ddda1f2016-03-09 11:34:12 +053032#include "wmi_unified_param.h"
Srinivas Pitla83aad502018-01-08 16:55:36 +053033#include "service_ready_param.h"
Mukul Sharma36d159b2017-01-30 19:55:40 +053034#include "wlan_objmgr_psoc_obj.h"
Himanshu Agarwal53d526b2017-01-05 14:23:18 +053035#include "wlan_mgmt_txrx_utils_api.h"
Wu Gao2a3bc052018-05-17 16:14:00 +080036#ifdef WLAN_POWER_MANAGEMENT_OFFLOAD
Mukul Sharmaba196f52017-02-25 01:50:47 +053037#include "wmi_unified_pmo_api.h"
38#endif
Wu Gao07ba6b42017-03-13 20:17:34 +080039#ifdef CONVERGED_P2P_ENABLE
40#include "wlan_p2p_public_struct.h"
41#endif
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +053042#include "wlan_scan_public_structs.h"
Nachiket Kukadea6ffaab2017-12-15 12:36:58 +053043#ifdef WLAN_FEATURE_DISA
44#include "wlan_disa_public_struct.h"
45#endif
Rajeev Kumar Sirasanagandla9d7a69f2017-09-18 16:47:52 +053046#ifdef WLAN_FEATURE_ACTION_OUI
47#include "wlan_action_oui_public_struct.h"
48#endif
Naveen Rawat79a787c2017-12-14 13:24:31 -080049#ifdef WLAN_FEATURE_NAN_CONVERGENCE
50#include "nan_public_structs.h"
51#endif
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +053052#ifdef WLAN_SUPPORT_GREEN_AP
53#include "wlan_green_ap_api.h"
54#endif
Zhang Qian74a66aa2018-01-05 16:50:53 +080055#ifdef WLAN_FEATURE_DSRC
56#include "wlan_ocb_public_structs.h"
57#endif
Kiran Venkatappa2d881fd2018-02-05 10:56:43 +053058#ifdef WLAN_SUPPORT_TWT
59#include "wmi_unified_twt_param.h"
60#include "wmi_unified_twt_api.h"
61#endif
Naveen Rawat79a787c2017-12-14 13:24:31 -080062
Wen Gong5b1429d2018-05-18 16:03:41 +080063#ifdef FEATURE_WLAN_EXTSCAN
64#include "wmi_unified_extscan_api.h"
65#endif
66
Sravan Kumar Kairamdcb5f802018-02-15 23:28:34 +053067#ifdef IPA_OFFLOAD
68#include "wlan_ipa_public_struct.h"
69#endif
70
Govind Singhd7468a52016-03-09 14:32:57 +053071typedef qdf_nbuf_t wmi_buf_t;
72#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
73
74#define WMI_LOGD(args ...) \
75 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
76#define WMI_LOGI(args ...) \
77 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
78#define WMI_LOGW(args ...) \
79 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
80#define WMI_LOGE(args ...) \
81 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
82#define WMI_LOGP(args ...) \
83 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
84
Govind Singhd7468a52016-03-09 14:32:57 +053085
Govind Singhd475ea92016-03-06 19:55:02 +053086
Arif Hussainf6b0c992018-03-01 14:40:59 -080087#define PHYERROR_MAX_BUFFER_LENGTH 0x7F000000
88
Kiran Venkatappa929dd292017-02-10 16:57:59 +053089struct wmi_soc;
Srinivas Girigowdac461aef2018-02-15 14:30:05 -080090struct policy_mgr_dual_mac_config;
Govind Singhd475ea92016-03-06 19:55:02 +053091/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053092 * struct wmi_ops - service callbacks to upper layer
93 * @service_ready_cbk: service ready callback
94 * @service_ready_ext_cbk: service ready ext callback
95 * @ready_cbk: ready calback
96 * @wma_process_fw_event_handler_cbk: generic event handler callback
97 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053098struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053099
Govind Singh6ad6ada2016-02-04 18:42:30 +0530100 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530101 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +0530102};
103
104/**
105 * enum wmi_target_type - type of supported wmi command
106 * @WMI_TLV_TARGET: tlv based target
107 * @WMI_NON_TLV_TARGET: non-tlv based target
108 *
109 */
110enum wmi_target_type {
111 WMI_TLV_TARGET,
Pratik Gandhi073fa002018-01-30 19:05:41 +0530112 WMI_NON_TLV_TARGET,
113 WMI_MAX_TARGET_TYPE
Govind Singh6ad6ada2016-02-04 18:42:30 +0530114};
115
116/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530117 * enum wmi_rx_exec_ctx - wmi rx execution context
118 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
119 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
120 *
121 */
122enum wmi_rx_exec_ctx {
123 WMI_RX_WORK_CTX,
124 WMI_RX_UMAC_CTX
125};
126
127/**
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530128 * struct wmi_unified_attach_params - wmi init parameters
129 * @param osdev : NIC device
Govind Singh89727882016-04-15 13:58:27 +0530130 * @param target_type : type of supported wmi command
131 * @param use_cookie : flag to indicate cookie based allocation
132 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530133 * @psoc : objmgr psoc
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530134 * @max_commands : max commands
135 */
136struct wmi_unified_attach_params {
137 osdev_t osdev;
138 enum wmi_target_type target_type;
139 bool use_cookie;
140 struct wmi_rx_ops *rx_ops;
141 struct wlan_objmgr_psoc *psoc;
142 uint16_t max_commands;
c_priyscc79b352018-06-12 16:53:51 +0530143 uint32_t soc_id;
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530144};
145
146/**
147 * attach for unified WMI
148 *
149 * @param scn_handle : handle to SCN.
150 * @param params : attach params for WMI
151 *
Govind Singhd475ea92016-03-06 19:55:02 +0530152 */
153void *wmi_unified_attach(void *scn_handle,
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530154 struct wmi_unified_attach_params *params);
Mukul Sharma36d159b2017-01-30 19:55:40 +0530155
Govind Singh6ad6ada2016-02-04 18:42:30 +0530156
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700157
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700158/**
159 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
160 *
161 * @wmi_handle: wmi handle
162 * @cmd: mgmt command
163 * @header: pointer to 802.11 header
164 * @vdev_id: vdev id
165 * @chanfreq: channel frequency
166 *
167 * Return: none
168 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530169void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700170 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700171
Govind Singhd475ea92016-03-06 19:55:02 +0530172/**
173 * detach for unified WMI
174 *
175 * @param wmi_handle : handle to WMI.
176 * @return void.
177 */
178void wmi_unified_detach(struct wmi_unified *wmi_handle);
179
gaurank kathpaliaa2a2c712018-02-21 18:58:29 +0530180/**
181 * API to sync time between host and firmware
182 *
183 * @param wmi_handle : handle to WMI.
184 * @return void.
185 */
186void wmi_send_time_stamp_sync_cmd_tlv(void *wmi_hdl);
187
Govind Singhd475ea92016-03-06 19:55:02 +0530188void
189wmi_unified_remove_work(struct wmi_unified *wmi_handle);
190
191/**
192 * generic function to allocate WMI buffer
193 *
194 * @param wmi_handle : handle to WMI.
195 * @param len : length of the buffer
196 * @return wmi_buf_t.
197 */
Shiva Krishna Pittala92416432018-04-02 17:23:42 +0530198#ifdef NBUF_MEMORY_DEBUG
Govind Singhd475ea92016-03-06 19:55:02 +0530199#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
200wmi_buf_t
Debasis Das9d1359f2018-04-04 17:17:55 +0530201wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint32_t len,
Govind Singhd475ea92016-03-06 19:55:02 +0530202 uint8_t *file_name, uint32_t line_num);
203#else
Debasis Das9d1359f2018-04-04 17:17:55 +0530204wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint32_t len);
Govind Singhd475ea92016-03-06 19:55:02 +0530205#endif
206
207/**
208 * generic function frees WMI net buffer
209 *
210 * @param net_buf : Pointer ot net_buf to be freed
211 */
212void wmi_buf_free(wmi_buf_t net_buf);
213
214/**
215 * generic function to send unified WMI command
216 *
217 * @param wmi_handle : handle to WMI.
218 * @param buf : wmi command buffer
219 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530220 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530221 * @return 0 on success and -ve on failure.
222 */
Houston Hoffman09f96f92016-09-27 23:29:49 -0700223QDF_STATUS
Govind Singh6ad6ada2016-02-04 18:42:30 +0530224wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530225 uint32_t cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530226
227/**
Soumya Bhat49a84812017-03-22 14:41:01 +0530228 * wmi_unified_register_event() - WMI event handler
229 * registration function for converged components
230 *
231 * @wmi_handle: handle to WMI.
232 * @event_id: WMI event ID
233 * @handler_func: Event handler call back function
234 *
235 * @return 0 on success and -ve on failure.
236 */
237int
238wmi_unified_register_event(wmi_unified_t wmi_handle,
239 uint32_t event_id,
240 wmi_unified_event_handler handler_func);
241
242/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530243 * wmi_unified_register_event_handler() - WMI event handler
244 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530245 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530246 * @wmi_handle: handle to WMI.
247 * @event_id: WMI event ID
248 * @handler_func: Event handler call back function
249 * @rx_ctx: rx event processing context
250 *
Govind Singhd475ea92016-03-06 19:55:02 +0530251 * @return 0 on success and -ve on failure.
252 */
253int
254wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530255 wmi_conv_event_id event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530256 wmi_unified_event_handler handler_func,
257 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530258
259/**
Soumya Bhat070cd052017-03-27 12:26:56 +0530260 * WMI event handler unregister function for converged componets
261 *
262 * @param wmi_handle : handle to WMI.
263 * @param event_id : WMI event ID
264 * @return 0 on success and -ve on failure.
265 */
266int
267wmi_unified_unregister_event(wmi_unified_t wmi_handle,
268 uint32_t event_id);
269
270/**
Govind Singhd475ea92016-03-06 19:55:02 +0530271 * WMI event handler unregister function
272 *
273 * @param wmi_handle : handle to WMI.
274 * @param event_id : WMI event ID
275 * @return 0 on success and -ve on failure.
276 */
277int
278wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530279 wmi_conv_event_id event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530280
281/**
282 * request wmi to connet its htc service.
283 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530284 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530285 * @return void
286 */
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530287QDF_STATUS
Govind Singhd475ea92016-03-06 19:55:02 +0530288wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
289 void *htc_handle);
290
291/*
292 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530293 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530294 */
295
296int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
297
298/**
Govind Singh89727882016-04-15 13:58:27 +0530299 * WMI API to get updated host_credits
300 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530301 */
302
303int wmi_get_host_credits(wmi_unified_t wmi_handle);
304
305/**
Govind Singh89727882016-04-15 13:58:27 +0530306 * WMI API to get WMI Pending Commands in the HTC queue
307 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530308 */
309
310int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
311
312/**
Govind Singh89727882016-04-15 13:58:27 +0530313 * WMI API to set target suspend state
314 * @param wmi_handle : handle to WMI.
315 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530316 */
Govind Singhd475ea92016-03-06 19:55:02 +0530317void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
318
Govind Singh89727882016-04-15 13:58:27 +0530319/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530320 * WMI API to set bus suspend state
321 * @param wmi_handle: handle to WMI.
322 * @param val: suspend state boolean
323 */
324void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
325
326/**
327 * WMI API to set crash injection state
328 * @param wmi_handle: handle to WMI.
329 * @param val: crash injection state boolean
330 */
331void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
332
333/**
Ravi Kumar Bokkadf1f3ea2016-11-09 18:07:56 +0530334 * WMI API to set target assert
335 * @param wmi_handle: handle to WMI.
336 * @param val: target assert config value.
337 *
338 * Return: none.
339 */
340void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
341
342/**
Govind Singh89727882016-04-15 13:58:27 +0530343 * generic function to block unified WMI command
344 * @param wmi_handle : handle to WMI.
345 * @return 0 on success and -ve on failure.
346 */
347int
348wmi_stop(wmi_unified_t wmi_handle);
349
350/**
351 * API to flush all the previous packets associated with the wmi endpoint
352 *
353 * @param wmi_handle : handle to WMI.
354 */
355void
356wmi_flush_endpoint(wmi_unified_t wmi_handle);
357
358/**
Kiran Venkatappa49341042017-05-10 16:24:51 +0530359 * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
360 * By default pdev_id conversion is not done in WMI.
361 * This API can be used enable conversion in WMI.
362 * @param wmi_handle : handle to WMI
363 * Return none
364 */
365void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
366
367/**
Govind Singh89727882016-04-15 13:58:27 +0530368 * API to handle wmi rx event after UMAC has taken care of execution
369 * context
370 *
371 * @param wmi_handle : handle to WMI.
372 * @param evt_buf : wmi event buffer
373 */
374void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530375#ifdef FEATURE_RUNTIME_PM
376void
377wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
378bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
379#else
380static inline void
381wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
382{
383 return;
384}
385static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
386{
387 return false;
388}
389#endif
390
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530391void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
392
393void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
394
Govind Singhd475ea92016-03-06 19:55:02 +0530395/**
Govind Singhd7468a52016-03-09 14:32:57 +0530396 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530397 * @param wmi_handle : handle to WMI.
398 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530399 */
Govind Singhd475ea92016-03-06 19:55:02 +0530400void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
401uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530402
403
Govind Singhd7468a52016-03-09 14:32:57 +0530404QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530405 uint8_t macaddr[IEEE80211_ADDR_LEN],
406 struct vdev_create_params *param);
407
Govind Singhd7468a52016-03-09 14:32:57 +0530408QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530409 uint8_t if_id);
410
Govind Singhd7468a52016-03-09 14:32:57 +0530411QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530412 uint8_t vdev_id);
413
Govind Singhd7468a52016-03-09 14:32:57 +0530414QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530415 uint8_t bssid[IEEE80211_ADDR_LEN],
416 struct vdev_up_params *params);
417
Govind Singhd7468a52016-03-09 14:32:57 +0530418QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530419 uint8_t vdev_id);
420
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530421QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
422 struct vdev_start_params *req);
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +0530423/**
424 * wmi_unified_vdev_set_nac_rssi_send() - send NAC_RSSI command to fw
425 * @param wmi_handle : handle to WMI
426 * @param req : pointer to hold nac rssi request data
427 *
428 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
429 */
430QDF_STATUS wmi_unified_vdev_set_nac_rssi_send(void *wmi_hdl,
431 struct vdev_scan_nac_rssi_params *req);
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530432
433QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
434 struct hidden_ssid_vdev_restart_params *restart_params);
435
Govind Singhd7468a52016-03-09 14:32:57 +0530436QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530437 struct vdev_set_params *param);
438
Govind Singhd7468a52016-03-09 14:32:57 +0530439QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530440 uint8_t
441 peer_addr[IEEE80211_ADDR_LEN],
442 uint8_t vdev_id);
443
Govind Singhd7468a52016-03-09 14:32:57 +0530444QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530445 uint8_t peer_addr[IEEE80211_ADDR_LEN],
446 struct peer_flush_params *param);
447
Govind Singhd7468a52016-03-09 14:32:57 +0530448QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530449 uint8_t peer_addr[IEEE80211_ADDR_LEN],
450 struct peer_set_params *param);
451
Govind Singhd7468a52016-03-09 14:32:57 +0530452QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530453 struct peer_create_params *param);
454
Govind Singhd7468a52016-03-09 14:32:57 +0530455QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530456 uint8_t macaddr[IEEE80211_ADDR_LEN],
457 struct stats_request_params *param);
458
Govind Singhd7468a52016-03-09 14:32:57 +0530459QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530460 uint32_t value, uint8_t pdev_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530461
Will Huang5325c7c2017-11-17 13:19:16 +0800462#ifdef FEATURE_WLAN_D0WOW
463QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
464 uint8_t mac_id);
465QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
466 uint8_t mac_id);
467#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530468
Govind Singhd7468a52016-03-09 14:32:57 +0530469QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530470 struct wow_cmd_params *param,
471 uint8_t mac_id);
472
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700473QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
474
475QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
476 struct wow_add_wakeup_params *param);
477
478QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
479 struct wow_add_wakeup_pattern_params *param);
480
481QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
482 struct wow_remove_wakeup_pattern_params *param);
483
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530484#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530485QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Keyur Parekh483138e2017-05-07 08:54:47 -0700486 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
Govind Singh89727882016-04-15 13:58:27 +0530487#else
Govind Singhd7468a52016-03-09 14:32:57 +0530488QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530489 uint8_t macaddr[IEEE80211_ADDR_LEN],
490 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530491#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530492
Keyur Parekh483138e2017-05-07 08:54:47 -0700493QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530494
Govind Singhd7468a52016-03-09 14:32:57 +0530495QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530496 struct suspend_params *param,
497 uint8_t mac_id);
498
Govind Singhd7468a52016-03-09 14:32:57 +0530499QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530500 uint8_t mac_id);
501
Govind Singhd7468a52016-03-09 14:32:57 +0530502QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530503wmi_unified_pdev_param_send(void *wmi_hdl,
504 struct pdev_params *param,
505 uint8_t mac_id);
506
Govind Singh89727882016-04-15 13:58:27 +0530507QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
508 struct beacon_tmpl_params *param);
509
510
Govind Singhd7468a52016-03-09 14:32:57 +0530511QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530512 struct beacon_params *param);
513
Govind Singhd7468a52016-03-09 14:32:57 +0530514QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530515 struct peer_assoc_params *param);
516
Govind Singhd7468a52016-03-09 14:32:57 +0530517QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530518 struct sta_ps_params *param);
519
Govind Singhd7468a52016-03-09 14:32:57 +0530520QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530521 uint8_t macaddr[IEEE80211_ADDR_LEN],
522 struct ap_ps_params *param);
523
Govind Singhd7468a52016-03-09 14:32:57 +0530524QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530525 struct scan_req_params *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530526
Govind Singhd7468a52016-03-09 14:32:57 +0530527QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530528 struct scan_cancel_param *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530529
Govind Singhd7468a52016-03-09 14:32:57 +0530530QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530531 struct scan_chan_list_params *param);
532
533
Govind Singhd7468a52016-03-09 14:32:57 +0530534QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530535 struct crash_inject *param);
536
Govind Singhd7468a52016-03-09 14:32:57 +0530537QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530538 struct pdev_utf_params *param,
539 uint8_t mac_id);
540
Wen Gong59d1dbe2018-04-20 16:56:28 +0800541#ifdef FEATURE_FW_LOG_PARSING
Govind Singhd7468a52016-03-09 14:32:57 +0530542QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Wen Gong59d1dbe2018-04-20 16:56:28 +0800543 struct dbglog_params *param);
544#else
545static inline QDF_STATUS
546wmi_unified_dbglog_cmd_send(void *wmi_hdl,
547 struct dbglog_params *param)
548{
549 return QDF_STATUS_SUCCESS;
550}
551#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530552
Govind Singhd7468a52016-03-09 14:32:57 +0530553QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530554 struct wmi_mgmt_params *param);
555
Kiran Venkatappa25c47022017-03-19 22:58:09 +0530556QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
557 struct wmi_offchan_data_tx_params *param);
558
Govind Singhd7468a52016-03-09 14:32:57 +0530559QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530560 uint32_t param_value);
561
Govind Singhd7468a52016-03-09 14:32:57 +0530562QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530563 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530564QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530565wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
566 struct sta_uapsd_trig_params *param);
567
Govind Singhd7468a52016-03-09 14:32:57 +0530568QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530569
Govind Singhd7468a52016-03-09 14:32:57 +0530570QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530571 struct p2p_ps_params *oppps);
572
Govind Singhd7468a52016-03-09 14:32:57 +0530573QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530574 struct p2p_ps_params *noa);
575
Wu Gao07ba6b42017-03-13 20:17:34 +0800576#ifdef CONVERGED_P2P_ENABLE
Rachit Kankane54c543f2018-07-31 16:26:38 +0530577#ifdef FEATURE_P2P_LISTEN_OFFLOAD
Wu Gao07ba6b42017-03-13 20:17:34 +0800578QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
579 struct p2p_lo_start *param);
580
581QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
582#endif
Rachit Kankane54c543f2018-07-31 16:26:38 +0530583#endif
Wu Gao07ba6b42017-03-13 20:17:34 +0800584
Govind Singhd7468a52016-03-09 14:32:57 +0530585QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530586 int value);
587
Govind Singhd7468a52016-03-09 14:32:57 +0530588QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530589
Zhang Qian74a66aa2018-01-05 16:50:53 +0800590#ifdef WLAN_FEATURE_DSRC
591/**
592 * wmi_unified_ocb_start_timing_advert() - start sending the timing
593 * advertisement frames on a channel
594 * @wmi_handle: pointer to the wmi handle
595 * @timing_advert: pointer to the timing advertisement struct
596 *
597 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
598 */
599QDF_STATUS wmi_unified_ocb_start_timing_advert(struct wmi_unified *wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530600 struct ocb_timing_advert_param *timing_advert);
601
Zhang Qian74a66aa2018-01-05 16:50:53 +0800602/**
603 * wmi_unified_ocb_stop_timing_advert() - stop sending the timing
604 * advertisement frames on a channel
605 * @wmi_handle: pointer to the wmi handle
606 * @timing_advert: pointer to the timing advertisement struct
607 *
608 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
609 */
610QDF_STATUS wmi_unified_ocb_stop_timing_advert(struct wmi_unified *wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530611 struct ocb_timing_advert_param *timing_advert);
612
Zhang Qian74a66aa2018-01-05 16:50:53 +0800613/**
614 * wmi_unified_ocb_set_config() - send the OCB config to the FW
615 * @wmi_handle: pointer to the wmi handle
616 * @config: the OCB configuration
617 *
618 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
619 */
620QDF_STATUS wmi_unified_ocb_set_config(struct wmi_unified *wmi_handle,
621 struct ocb_config *config);
Govind Singhe7b800c2016-03-01 15:30:53 +0530622
Zhang Qian74a66aa2018-01-05 16:50:53 +0800623/**
624 * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
625 * @wmi_handle: pointer to the wmi handle
626 * @req: request for tsf timer
627 *
628 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
629 */
630QDF_STATUS wmi_unified_ocb_get_tsf_timer(struct wmi_unified *wmi_handle,
631 struct ocb_get_tsf_timer_param *req);
632
633/**
634 * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
635 * @wmi_handle: pointer to the wmi handle
636 * @vdev_id: vdev id
637 *
638 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
639 */
640QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(struct wmi_unified *wmi_handle,
641 struct ocb_utc_param *utc);
642
643/**
644 * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
645 * @wmi_handle: pointer to the wmi handle
646 * @get_stats_param: pointer to the dcc stats
647 *
648 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
649 */
650QDF_STATUS wmi_unified_dcc_get_stats_cmd(struct wmi_unified *wmi_handle,
651 struct ocb_dcc_get_stats_param *get_stats_param);
652
653/**
654 * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
655 * @wmi_handle: pointer to the wmi handle
656 * @clear_stats_param: parameters to the command
657 *
658 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
659 */
660QDF_STATUS wmi_unified_dcc_clear_stats(struct wmi_unified *wmi_handle,
661 struct ocb_dcc_clear_stats_param *clear_stats_param);
662
663/**
664 * wmi_unified_dcc_update_ndl() - command to update the NDL data
665 * @wmi_handle: pointer to the wmi handle
666 * @update_ndl_param: pointer to the request parameters
667 *
668 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
669 */
670QDF_STATUS wmi_unified_dcc_update_ndl(struct wmi_unified *wmi_handle,
671 struct ocb_dcc_update_ndl_param *update_ndl_param);
672
673/**
674 * wmi_extract_ocb_set_channel_config_resp() - extract status from wmi event
675 * @wmi_handle: wmi handle
676 * @evt_buf: pointer to event buffer
677 * @status: status buffer
678 *
679 * Return: QDF_STATUS_SUCCESS on success
680 */
681QDF_STATUS
682wmi_extract_ocb_set_channel_config_resp(struct wmi_unified *wmi_handle,
683 void *evt_buf,
684 uint32_t *status);
685
686/**
687 * wmi_extract_ocb_tsf_timer() - extract tsf timer from wmi event
688 * @wmi_handle: wmi handle
689 * @evt_buf: pointer to event buffer
690 * @resp: tsf timer
691 *
692 * Return: QDF_STATUS_SUCCESS on success
693 */
694QDF_STATUS wmi_extract_ocb_tsf_timer(struct wmi_unified *wmi_handle,
695 void *evt_buf,
696 struct ocb_get_tsf_timer_response *resp);
697
698/**
699 * wmi_extract_dcc_update_ndl_resp() - extract NDL update from wmi event
700 * @wmi_handle: wmi handle
701 * @evt_buf: pointer to event buffer
702 * @resp: ndl update status
703 *
704 * Return: QDF_STATUS_SUCCESS on success
705 */
706QDF_STATUS wmi_extract_dcc_update_ndl_resp(struct wmi_unified *wmi_handle,
707 void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
708
709/**
710 * wmi_extract_dcc_stats() - extract DCC stats from wmi event
711 * @wmi_handle: wmi handle
712 * @evt_buf: pointer to event buffer
713 * @resp: DCC stats
714 *
715 * Since length of the response is variable, response buffer will be allocated.
716 * The caller must free the response buffer.
717 *
718 * Return: QDF_STATUS_SUCCESS on success
719 */
720QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_handle,
721 void *evt_buf,
722 struct ocb_dcc_get_stats_response **response);
723#endif
Govind Singhe7b800c2016-03-01 15:30:53 +0530724
Govind Singhd7468a52016-03-09 14:32:57 +0530725QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530726 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
727
Govind Singhd7468a52016-03-09 14:32:57 +0530728QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530729 struct thermal_cmd_params *thermal_info);
730
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530731QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
732 struct wmi_peer_rate_report_params *rate_report_params);
733
Govind Singhd7468a52016-03-09 14:32:57 +0530734QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530735 (void *wmi_hdl,
736 uint32_t adapter_1_chan_freq,
737 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
738
Govind Singhd7468a52016-03-09 14:32:57 +0530739QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530740 (void *wmi_hdl,
741 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
742
Govind Singhd7468a52016-03-09 14:32:57 +0530743QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700744 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
745 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530746
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530747#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530748QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530749 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530750#endif
Govind Singhae855362016-03-07 14:24:22 +0530751
Govind Singhd7468a52016-03-09 14:32:57 +0530752QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530753 uint8_t vdev_id, uint32_t max_retries,
754 uint32_t retry_interval);
755
756
Govind Singhd7468a52016-03-09 14:32:57 +0530757QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530758 struct sta_params *params);
759
Govind Singhd7468a52016-03-09 14:32:57 +0530760QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530761 struct wmi_gtx_config *gtx_info);
762
Govind Singhd7468a52016-03-09 14:32:57 +0530763QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Kiran Kumar Lokereaf132c12018-04-06 16:56:47 -0700764 uint8_t vdev_id, bool mu_edca_param,
Vikram Kandukurid2e75802017-06-01 16:47:51 +0530765 struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
Govind Singhae855362016-03-07 14:24:22 +0530766
Govind Singhd7468a52016-03-09 14:32:57 +0530767QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530768 uint8_t vdev_id,
Krunal Soni36f17d42017-11-14 15:42:48 -0800769 struct wmi_probe_resp_params *probe_rsp_info);
Govind Singhae855362016-03-07 14:24:22 +0530770
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530771QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
772 struct set_key_params *key_params);
773
Nachiket Kukadee42cd4b2017-12-20 17:28:29 +0530774#ifdef WLAN_FEATURE_DISA
775/**
776 * wmi_unified_encrypt_decrypt_send_cmd() - send encryptdecrypt cmd to fw
777 * @wmi_hdl: wmi handle
778 * @params: encrypt/decrypt params
779 *
780 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
781 */
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530782QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
Nachiket Kukadee42cd4b2017-12-20 17:28:29 +0530783 struct disa_encrypt_decrypt_req_params *params);
784
785/**
786 * wmi_extract_encrypt_decrypt_resp_params() -
787 * extract encrypt decrypt resp params from event buffer
788 * @wmi_handle: wmi handle
789 * @evt_buf: pointer to event buffer
790 * @resp: encrypt decrypt resp params
791 *
792 * Return: QDF_STATUS_SUCCESS for success or error code
793 */
794QDF_STATUS wmi_extract_encrypt_decrypt_resp_params(void *wmi_hdl,
795 uint8_t *evt_buf,
796 struct disa_encrypt_decrypt_resp_params *resp);
797#endif
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530798
Govind Singhd7468a52016-03-09 14:32:57 +0530799QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Vivek73465282018-03-22 23:27:21 +0530800 uint32_t vdev_id, uint8_t *p2p_ie);
Govind Singhae855362016-03-07 14:24:22 +0530801
802
Govind Singhd7468a52016-03-09 14:32:57 +0530803QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530804 struct gateway_update_req_param *req);
805
Govind Singhd7468a52016-03-09 14:32:57 +0530806QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530807 struct rssi_monitor_param *req);
808
Govind Singhd7468a52016-03-09 14:32:57 +0530809QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530810 struct scan_mac_oui *psetoui);
811
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530812#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530813QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
814 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
815 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530816#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530817
Varun Reddy Yeturu4cae4292017-07-20 09:45:01 -0700818/**
819 * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
820 * @wmi_hdl: wmi handle
821 * @params: Parameters to be configured
822 *
823 * Pass the MAWC(Motion Aided wireless connectivity) related roaming
824 * parameters from the host to the target
825 *
826 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
827 */
828QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
829 struct wmi_mawc_roam_params *params);
830
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530831QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
832 struct roam_offload_scan_rssi_params *roam_req);
833
834QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
835 struct roam_scan_filter_params *roam_req);
836
Sravan Kumar Kairamdcb5f802018-02-15 23:28:34 +0530837#ifdef IPA_OFFLOAD
Govind Singhd7468a52016-03-09 14:32:57 +0530838QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Sravan Kumar Kairamdcb5f802018-02-15 23:28:34 +0530839 struct ipa_uc_offload_control_params *ipa_offload);
840#endif
Govind Singhae855362016-03-07 14:24:22 +0530841
Govind Singhd7468a52016-03-09 14:32:57 +0530842QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530843 const struct plm_req_params *plm);
844
Govind Singhd7468a52016-03-09 14:32:57 +0530845QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530846 const struct plm_req_params *plm,
847 uint32_t *gchannel_list);
848
Govind Singhd7468a52016-03-09 14:32:57 +0530849QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530850
Govind Singh89727882016-04-15 13:58:27 +0530851#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530852QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Abhishek Singhd4184662017-03-03 22:09:07 +0530853 struct pno_scan_req_params *pno);
Govind Singh89727882016-04-15 13:58:27 +0530854#endif
Govind Singhae855362016-03-07 14:24:22 +0530855
Varun Reddy Yeturu4fa519b2017-07-24 16:11:22 -0700856QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
857 struct nlo_mawc_params *params);
858
Govind Singhd7468a52016-03-09 14:32:57 +0530859QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530860 uint8_t is_add_ts);
861
Govind Singhd7468a52016-03-09 14:32:57 +0530862QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530863 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
864 uint8_t addr[IEEE80211_ADDR_LEN]);
865
Govind Singhd7468a52016-03-09 14:32:57 +0530866QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530867 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
868
Govind Singhd7468a52016-03-09 14:32:57 +0530869QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530870 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
871 uint8_t addr[IEEE80211_ADDR_LEN]);
872
Padma, Santhosh Kumard3261902017-03-21 19:09:35 +0530873/**
874 * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
875 * @wmi_hdl: wma handle
876 * @vdev_id: vdev id
877 *
878 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
879 */
880QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
881 uint8_t vdev_id);
882
Govind Singhd7468a52016-03-09 14:32:57 +0530883QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530884
Govind Singhd7468a52016-03-09 14:32:57 +0530885QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530886
Govind Singhd7468a52016-03-09 14:32:57 +0530887QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530888 struct link_status_params *link_status);
889
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530890#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530891QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530892 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
893
Govind Singhd7468a52016-03-09 14:32:57 +0530894QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530895 wmi_mac_addr peer_macaddr);
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530896#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530897
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530898#ifdef WLAN_SUPPORT_GREEN_AP
Govind Singhd7468a52016-03-09 14:32:57 +0530899QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530900 struct wlan_green_ap_egap_params *egap_params);
Govind Singh89727882016-04-15 13:58:27 +0530901#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530902
Govind Singhd7468a52016-03-09 14:32:57 +0530903QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530904 uint32_t cmd, uint32_t value1, uint32_t value2);
905
Naveen Rawat7f70d662017-10-26 18:50:19 -0700906QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
907 uint32_t cookie, uint32_t time);
908
Govind Singhd7468a52016-03-09 14:32:57 +0530909QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530910
Paul Zhang6a857a92017-12-08 16:08:00 +0800911/**
912 * wmi_unified_set_latency_config_cmd()
913 * @wmi_handle: wmi handle
914 * @param: WLM parameters
915 *
916 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
917 */
918QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
919 struct wlm_latency_level_param *param);
920
Govind Singhd7468a52016-03-09 14:32:57 +0530921QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530922
Naveen Rawat90bc8fd2017-05-13 15:56:57 -0700923#ifdef WLAN_FEATURE_CIF_CFR
924/**
925 * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
926 * @wmi_handle: wmi handle
927 * @data_len: len of dma cfg req
928 * @data: dma cfg req
929 *
930 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
931 */
932QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
933 wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
934#endif
935
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +0530936/**
937 * wmi_unified_dbr_ring_cfg: Configure direct buffer rx rings
938 * @wmi_hdl: WMI handle
939 * @cfg: pointer to direct buffer rx config request
940 *
941 * Return: QDF status of operation
942 */
943QDF_STATUS wmi_unified_dbr_ring_cfg(void *wmi_hdl,
944 struct direct_buf_rx_cfg_req *cfg);
945
Govind Singhd7468a52016-03-09 14:32:57 +0530946QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700947 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530948 uint8_t *data);
949
Govind Singhd7468a52016-03-09 14:32:57 +0530950QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530951 bool dfs_phyerr_filter_offload);
952
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530953#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530954QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530955 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530956 uint32_t cmd_id,
957 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530958#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530959
Govind Singhd7468a52016-03-09 14:32:57 +0530960QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530961 uint8_t vdev_id);
962
Govind Singhd7468a52016-03-09 14:32:57 +0530963QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
964QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530965 uint8_t ac);
966
Govind Singhd7468a52016-03-09 14:32:57 +0530967QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530968 struct aggr_add_ts_param *aggr_qos_rsp_msg);
969
Govind Singhd7468a52016-03-09 14:32:57 +0530970QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530971 struct add_ts_param *msg);
972
Govind Singhd7468a52016-03-09 14:32:57 +0530973QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530974 struct periodic_tx_pattern *
975 pAddPeriodicTxPtrnParams,
976 uint8_t vdev_id);
977
Govind Singhd7468a52016-03-09 14:32:57 +0530978QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530979 uint8_t vdev_id,
980 uint8_t pattern_id);
981
Govind Singhd7468a52016-03-09 14:32:57 +0530982QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530983 struct stats_ext_params *preq);
984
Govind Singhd7468a52016-03-09 14:32:57 +0530985QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530986 struct ext_wow_params *params);
987
Govind Singhd7468a52016-03-09 14:32:57 +0530988QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530989 struct app_type2_params *appType2Params);
990
Govind Singhd7468a52016-03-09 14:32:57 +0530991QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530992 uint32_t timer_val);
993
Govind Singhd7468a52016-03-09 14:32:57 +0530994QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530995 struct nan_req_params *nan_req);
996
Govind Singhd7468a52016-03-09 14:32:57 +0530997QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Jeff Johnson645f7a12017-10-04 19:19:20 -0700998 struct dhcp_offload_info_params *params);
Govind Singh229bc0d2016-03-07 15:33:31 +0530999
Govind Singhd7468a52016-03-09 14:32:57 +05301000QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +05301001
Govind Singhd7468a52016-03-09 14:32:57 +05301002QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301003 uint32_t reg_dmn, uint16_t regdmn2G,
Rajeev Kumar Sirasanagandlaacf22bf2017-06-06 13:27:56 +05301004 uint16_t regdmn5G, uint8_t ctl2G,
1005 uint8_t ctl5G);
Govind Singh229bc0d2016-03-07 15:33:31 +05301006
Govind Singhd7468a52016-03-09 14:32:57 +05301007QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301008 struct tdls_channel_switch_params *chan_switch_params);
1009
Govind Singhd7468a52016-03-09 14:32:57 +05301010QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301011 void *tdls_param, uint8_t tdls_state);
1012
Govind Singhd7468a52016-03-09 14:32:57 +05301013QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301014 struct tdls_peer_state_params *peerStateParams,
1015 uint32_t *ch_mhz);
1016
Govind Singhd7468a52016-03-09 14:32:57 +05301017QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301018 struct fw_dump_req_param *mem_dump_req);
1019
Govind Singhd7468a52016-03-09 14:32:57 +05301020QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301021 struct vdev_ie_info_param *ie_info);
1022
Govind Singhd7468a52016-03-09 14:32:57 +05301023QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +05301024 void *evt_buf);
1025
Govind Singhd7468a52016-03-09 14:32:57 +05301026QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301027 uint8_t *custom_addr);
1028
Govind Singhd7468a52016-03-09 14:32:57 +05301029QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301030 uint8_t *event,
1031 uint32_t len);
1032
Govind Singhd7468a52016-03-09 14:32:57 +05301033QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301034 struct wmi_wifi_start_log *start_log);
1035
Govind Singhd7468a52016-03-09 14:32:57 +05301036QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +05301037
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +05301038QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
1039 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +05301040
Govind Singhd7468a52016-03-09 14:32:57 +05301041QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301042 uint32_t hw_mode_index);
1043
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +05301044QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Srinivas Girigowdac461aef2018-02-15 14:30:05 -08001045 struct policy_mgr_dual_mac_config *msg);
Govind Singh2ae94372016-03-07 16:45:38 +05301046
Govind Singhd7468a52016-03-09 14:32:57 +05301047QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301048 struct flashing_req_params *flashing);
1049
Govind Singhd7468a52016-03-09 14:32:57 +05301050QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301051 struct app_type1_params *app_type1_params);
1052
Govind Singhd7468a52016-03-09 14:32:57 +05301053QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301054 struct ssid_hotlist_request_params *request);
1055
Govind Singhd7468a52016-03-09 14:32:57 +05301056QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301057 uint8_t vdev_id);
1058
Govind Singhd7468a52016-03-09 14:32:57 +05301059QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301060 struct wmi_unit_test_cmd *wmi_utest);
1061
Govind Singhd7468a52016-03-09 14:32:57 +05301062QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301063 struct wmi_roam_invoke_cmd *roaminvoke,
1064 uint32_t ch_hz);
1065
Govind Singhd7468a52016-03-09 14:32:57 +05301066QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301067 uint32_t command, uint32_t vdev_id);
1068
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301069#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +05301070QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Himanshu Agarwalf9524e12017-09-28 11:51:35 +05301071 struct ap_profile_params *ap_profile);
Govind Singh89727882016-04-15 13:58:27 +05301072#endif
Govind Singh2ae94372016-03-07 16:45:38 +05301073
Govind Singhd7468a52016-03-09 14:32:57 +05301074QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301075 uint32_t scan_period,
1076 uint32_t scan_age,
1077 uint32_t vdev_id);
1078
Govind Singhd7468a52016-03-09 14:32:57 +05301079QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301080 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -07001081 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +05301082 uint8_t list_type, uint32_t vdev_id);
1083
Govind Singhd7468a52016-03-09 14:32:57 +05301084QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301085 uint32_t vdev_id,
1086 int32_t rssi_change_thresh,
1087 uint32_t bcn_rssi_weight,
1088 uint32_t hirssi_delay_btw_scans);
1089
Kapil Guptaf6eb7312017-02-24 15:50:03 +05301090/**
1091 * wmi_unified_set_per_roam_config() - set PER roam config in FW
1092 * @wmi_hdl: wmi handle
1093 * @req_buf: per roam config request buffer
1094 *
1095 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1096 */
1097QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
1098 struct wmi_per_roam_config_req *req_buf);
1099
Nachiket Kukade74cce662018-05-25 14:52:55 +05301100#ifdef FEATURE_WLAN_APF
Dustin Brown4def3162017-01-13 15:24:07 -08001101/**
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301102 * wmi_unified_set_active_apf_mode_cmd() - config active APF mode in FW
Nachiket Kukade74cce662018-05-25 14:52:55 +05301103 * @wmi: the WMI handle
Dustin Brown4def3162017-01-13 15:24:07 -08001104 * @vdev_id: the Id of the vdev to apply the configuration to
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301105 * @ucast_mode: the active APF mode to configure for unicast packets
1106 * @mcast_bcast_mode: the active APF mode to configure for multicast/broadcast
Dustin Brown4def3162017-01-13 15:24:07 -08001107 * packets
1108 */
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301109QDF_STATUS
Nachiket Kukade74cce662018-05-25 14:52:55 +05301110wmi_unified_set_active_apf_mode_cmd(wmi_unified_t wmi, uint8_t vdev_id,
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301111 enum wmi_host_active_apf_mode ucast_mode,
1112 enum wmi_host_active_apf_mode
1113 mcast_bcast_mode);
Dustin Brown4def3162017-01-13 15:24:07 -08001114
Nachiket Kukade74cce662018-05-25 14:52:55 +05301115/**
1116 * wmi_unified_send_apf_enable_cmd() - send apf enable/disable cmd
1117 * @wmi: wmi handle
1118 * @vdev_id: VDEV id
1119 * @enable: true: enable, false: disable
1120 *
1121 * This function passes the apf enable command to fw
1122 *
1123 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1124 */
1125QDF_STATUS wmi_unified_send_apf_enable_cmd(wmi_unified_t wmi,
1126 uint32_t vdev_id, bool enable);
1127
1128/**
1129 * wmi_unified_send_apf_write_work_memory_cmd() - send cmd to write into the APF
1130 * work memory.
1131 * @wmi: wmi handle
1132 * @write_params: parameters and buffer pointer for the write
1133 *
1134 * This function passes the write apf work mem command to fw
1135 *
1136 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1137 */
1138QDF_STATUS wmi_unified_send_apf_write_work_memory_cmd(wmi_unified_t wmi,
1139 struct wmi_apf_write_memory_params *write_params);
1140
1141/**
1142 * wmi_unified_send_apf_read_work_memory_cmd() - send cmd to read part of APF
1143 * work memory
1144 * @wmi: wmi handle
1145 * @read_params: contains relative address and length to read from
1146 *
1147 * This function passes the read apf work mem command to fw
1148 *
1149 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1150 */
1151QDF_STATUS wmi_unified_send_apf_read_work_memory_cmd(wmi_unified_t wmi,
1152 struct wmi_apf_read_memory_params *read_params);
1153
1154/**
1155 * wmi_extract_apf_read_memory_resp_event() - exctract read mem resp event
1156 * @wmi: wmi handle
1157 * @evt_buf: Pointer to the event buffer
1158 * @resp: pointer to memory to extract event parameters into
1159 *
1160 * This function exctracts read mem response event into the given structure ptr
1161 *
1162 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1163 */
1164QDF_STATUS
1165wmi_extract_apf_read_memory_resp_event(wmi_unified_t wmi, void *evt_buf,
1166 struct wmi_apf_read_memory_resp_event_params
1167 *read_mem_evt);
1168#endif /* FEATURE_WLAN_APF */
1169
Govind Singh89727882016-04-15 13:58:27 +05301170QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
1171 uint8_t macaddr[IEEE80211_ADDR_LEN],
1172 struct stats_request_params *param);
1173
1174QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
1175 uint32_t param);
1176
Sathish Kumar50232d72016-08-09 16:50:46 +05301177QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
1178 struct set_bwf_params *param);
1179
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301180QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
1181
1182QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
1183
1184QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
1185 uint32_t value);
1186
1187QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
1188 uint32_t value);
1189
1190QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +05301191 struct btcoex_cfg_params *param);
1192
1193QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
1194 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301195
Sathish Kumar612d0c22017-01-19 14:57:37 +05301196QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
1197 coex_ver_cfg_t *param);
1198
Sathish Kumar125754e2017-04-24 11:36:00 +05301199QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
1200 struct coex_config_params *param);
1201
Govind Singh89727882016-04-15 13:58:27 +05301202QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
1203 struct fips_params *param);
1204
1205QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
1206 struct wlan_profile_params *param);
1207
1208QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
1209 struct wlan_profile_params *param);
1210
1211QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
1212 struct channel_param *param);
1213
1214QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
1215 struct ht_ie_params *param);
1216
1217QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
1218 struct vht_ie_params *param);
1219
1220QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
1221 struct wmm_update_params *param);
1222
1223QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
1224 struct ant_switch_tbl_params *param);
1225
1226QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
1227 struct ratepwr_table_params *param);
1228
1229QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
1230
1231QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
1232 struct ctl_table_params *param);
1233
1234QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
1235 struct mimogain_table_params *param);
1236
1237QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
1238 struct ratepwr_chainmsk_params *param);
1239
1240QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1241 struct macaddr_params *param);
1242
1243QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1244
1245QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1246
1247QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1248 struct acparams_params *param);
1249
1250QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1251 struct vap_dscp_tid_map_params *param);
1252
1253QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1254 struct proxy_ast_reserve_params *param);
1255
1256QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
1257 struct pdev_qvit_params *param);
1258
1259QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
1260 struct mcast_group_update_params *param);
1261
1262QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1263 struct peer_add_wds_entry_params *param);
1264
1265QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1266 struct peer_del_wds_entry_params *param);
1267
Jeevan Kukkalli28e8a162017-06-16 18:07:28 +05301268/**
1269 * wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
1270 * @param wmi_hdl : handle to WMI.
1271 * @param param : pointer to hold bridge mac addr param
1272 *
1273 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1274 */
1275QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
1276 struct set_bridge_mac_addr_params *param);
1277
1278
Govind Singh89727882016-04-15 13:58:27 +05301279QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1280 struct peer_update_wds_entry_params *param);
1281
1282QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1283
1284QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1285
1286QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1287
1288QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1289 struct smart_ant_enable_params *param);
1290
1291QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1292 struct smart_ant_rx_ant_params *param);
1293
1294QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1295 uint8_t macaddr[IEEE80211_ADDR_LEN],
1296 struct smart_ant_tx_ant_params *param);
1297
1298QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1299 uint8_t macaddr[IEEE80211_ADDR_LEN],
1300 struct smart_ant_training_info_params *param);
1301
1302QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1303 uint8_t macaddr[IEEE80211_ADDR_LEN],
1304 struct smart_ant_node_config_params *param);
1305
1306QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1307 struct smart_ant_enable_tx_feedback_params *param);
1308
1309QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1310 struct vdev_spectral_configure_params *param);
1311
1312QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1313 struct vdev_spectral_enable_params *param);
1314
1315QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1316 struct bss_chan_info_request_params *param);
1317
1318QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1319 struct thermal_mitigation_params *param);
1320
1321QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1322 uint8_t macaddr[IEEE80211_ADDR_LEN],
1323 struct set_neighbour_rx_params *param);
1324
1325QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1326 struct set_fwtest_params *param);
1327
1328QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1329 struct config_ratemask_params *param);
1330
Sathish Kumar6190e772017-11-08 14:49:58 +05301331/**
1332 * wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
1333 * size command
1334 * @param wmi_hdl : handle to WMI.
1335 * @param param : pointer to hold custom aggr size param
1336 *
1337 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1338 */
1339QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
1340 struct set_custom_aggr_size_params *param);
Govind Singh89727882016-04-15 13:58:27 +05301341
Venkateswara Swamy Bandaru81f40dc2017-12-22 17:16:19 +05301342/**
1343 * wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
1344 * @param wmi_hdl : handle to WMI.
1345 * @param param : pointer to hold set qdepth thresh param
1346 *
1347 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1348 */
1349QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
1350 struct set_qdepth_thresh_params *param);
1351
Govind Singh89727882016-04-15 13:58:27 +05301352QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1353 struct pdev_set_regdomain_params *param);
1354
1355QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1356 struct set_quiet_mode_params *param);
1357
1358QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1359 struct set_beacon_filter_params *param);
1360
1361QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1362 struct remove_beacon_filter_params *param);
1363
1364QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1365 uint8_t macaddr[IEEE80211_ADDR_LEN],
1366 struct addba_clearresponse_params *param);
1367
1368QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1369 uint8_t macaddr[IEEE80211_ADDR_LEN],
1370 struct addba_send_params *param);
1371
1372QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1373 uint8_t macaddr[IEEE80211_ADDR_LEN],
1374 struct delba_send_params *param);
1375
1376QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1377 uint8_t macaddr[IEEE80211_ADDR_LEN],
1378 struct addba_setresponse_params *param);
1379
1380QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1381 uint8_t macaddr[IEEE80211_ADDR_LEN],
1382 struct singleamsdu_params *param);
1383
1384QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1385 uint8_t macaddr[IEEE80211_ADDR_LEN],
1386 struct set_qboost_params *param);
1387
1388QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1389 struct mu_scan_params *param);
1390
1391QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1392 struct lteu_config_params *param);
1393
1394QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1395 struct set_ps_mode_params *param);
1396
1397QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05301398 struct wmi_init_cmd_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301399
1400bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1401
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301402/**
1403 * wmi_save_service_bitmap() - save service bitmap
1404 * @wmi_handle: wmi handle
1405 * @param evt_buf: pointer to event buffer
1406 *
1407 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1408 */
Rajeev Kumar5d8497b2017-02-12 02:12:17 -08001409QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1410 void *bitmap_buf);
Govind Singh89727882016-04-15 13:58:27 +05301411
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301412/**
1413 * wmi_save_ext_service_bitmap() - save extended service bitmap
1414 * @wmi_handle: wmi handle
1415 * @param evt_buf: pointer to event buffer
1416 *
1417 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1418 */
1419QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
1420 void *bitmap_buf);
1421
Govind Singh89727882016-04-15 13:58:27 +05301422QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1423
1424QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001425 void *evt_buf,
1426 struct wlan_psoc_target_capability_info *ev);
Govind Singh89727882016-04-15 13:58:27 +05301427
1428QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001429 struct wlan_psoc_hal_reg_capability *hal_reg_cap);
Govind Singh89727882016-04-15 13:58:27 +05301430
1431host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1432 void *evt_buf, uint8_t *num_entries);
1433
1434uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1435
1436QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1437 void *ev, uint8_t *macaddr);
1438
Manoj Ekbote66496392017-07-09 23:28:56 -07001439wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
1440 uint8_t *num_mac_addr);
1441
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05301442/**
1443 * wmi_extract_ready_params() - Extract data from ready event apart from
1444 * status, macaddr and version.
1445 * @wmi_handle: Pointer to WMI handle.
1446 * @evt_buf: Pointer to Ready event buffer.
1447 * @ev_param: Pointer to host defined struct to copy the data from event.
1448 *
1449 * Return: QDF_STATUS_SUCCESS on success.
1450 */
1451QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
1452 void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1453
Govind Singh89727882016-04-15 13:58:27 +05301454QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1455 void *ev, struct wmi_host_fw_ver *fw_ver);
1456
1457QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1458 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1459
1460QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1461
1462uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
Rajeev Kumar45fdf7f2017-01-25 12:46:21 -08001463 void *evt_b, uint32_t *len);
Govind Singh89727882016-04-15 13:58:27 +05301464
1465QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1466 wmi_host_ext_resource_config *ext_cfg);
1467
nobeljd9c2dc82018-01-25 16:35:36 -08001468QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl,
1469 uint8_t mac_id);
Govind Singh89727882016-04-15 13:58:27 +05301470
1471QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1472 struct packet_power_info_params *param);
1473
1474QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1475 struct gpio_config_params *param);
1476
1477QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1478 struct gpio_output_params *param);
1479
1480QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1481 struct rtt_meas_req_test_params *param);
1482
1483QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1484 struct rtt_meas_req_params *param);
1485
1486QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1487 struct rtt_keepalive_req_params *param);
1488
1489QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1490 struct lci_set_params *param);
1491
1492QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1493 struct lcr_set_params *param);
1494
1495QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1496 struct periodic_chan_stats_params *param);
1497
Jeffin Mammenff8ae5a2018-07-24 14:20:08 +05301498#ifdef WLAN_ATF_ENABLE
1499QDF_STATUS
1500wmi_unified_set_atf_cmd_send(void *wmi_hdl,
1501 struct set_atf_params *param);
1502
Govind Singh89727882016-04-15 13:58:27 +05301503QDF_STATUS
1504wmi_send_atf_peer_request_cmd(void *wmi_hdl,
Jeffin Mammenff8ae5a2018-07-24 14:20:08 +05301505 struct atf_peer_request_params *param);
Govind Singh89727882016-04-15 13:58:27 +05301506
1507QDF_STATUS
1508wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
Jeffin Mammenff8ae5a2018-07-24 14:20:08 +05301509 struct atf_grouping_params *param);
1510
1511QDF_STATUS
1512wmi_send_set_atf_group_ac_cmd(void *wmi_hdl,
1513 struct atf_group_ac_params *param);
1514
1515QDF_STATUS
1516wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1517 wmi_host_atf_peer_stats_event *ev);
1518
1519QDF_STATUS
1520wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf, uint8_t idx,
1521 wmi_host_atf_peer_stats_info *atf_token_info);
1522#endif
1523
Govind Singh89727882016-04-15 13:58:27 +05301524/* Extract APIs */
1525
1526QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1527 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1528
1529QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05301530 void *evt_buf, struct wmi_host_dcs_interference_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301531
1532QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1533 wmi_host_ath_dcs_cw_int *cw_int);
1534
1535QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1536 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1537
Govind Singh89727882016-04-15 13:58:27 +05301538QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301539 struct wmi_host_fips_event_param *param);
1540
Govind Singh89727882016-04-15 13:58:27 +05301541QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1542 wmi_host_vdev_start_resp *vdev_rsp);
Sathish Kumar744fbf72017-05-17 18:05:15 +05301543
Om Prakash Tripathi105b04b2017-11-24 16:53:07 +05301544/**
1545 * wmi_extract_vdev_delete_resp - api to extract vdev delete
1546 * response event params
1547 * @wmi_handle: wma handle
1548 * @evt_buf: pointer to event buffer
1549 * @delele_rsp: pointer to hold delete response from firmware
1550 *
1551 * Return: QDF_STATUS_SUCCESS for successful event parse
1552 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1553 */
1554QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
1555 struct wmi_host_vdev_delete_resp *delele_rsp);
1556
Govind Singh89727882016-04-15 13:58:27 +05301557QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
Sathish Kumar744fbf72017-05-17 18:05:15 +05301558 uint8_t idx, struct tbttoffset_params *tbtt_param);
1559
1560QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
1561 void *evt_buf, uint8_t idx,
1562 struct tbttoffset_params *tbtt_param);
1563
1564QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1565 uint32_t *num_vdevs);
1566
1567QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1568 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301569
1570QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
Himanshu Agarwal53d526b2017-01-05 14:23:18 +05301571 struct mgmt_rx_event_params *hdr, uint8_t **bufp);
Govind Singh89727882016-04-15 13:58:27 +05301572
1573QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1574 uint32_t *vdev_id);
1575
1576QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1577 wmi_host_roam_event *ev);
1578
1579QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +05301580 struct scan_event *param);
Govind Singh89727882016-04-15 13:58:27 +05301581
Frank Liu0ba573b2017-03-15 17:51:43 +08001582#ifdef CONVERGED_TDLS_ENABLE
1583/**
1584 * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1585 * @wmi_handle: wmi handle
1586 * @param evt_buf: pointer to event buffer
1587 * @param param: Pointer to hold vdev tdls param
1588 *
1589 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1590 */
1591QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1592 struct tdls_event_info *param);
1593#endif
1594
Govind Singh89727882016-04-15 13:58:27 +05301595QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1596 wmi_host_mu_report_event *param);
1597
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301598QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1599 uint8_t idx, wmi_host_mu_db_entry *param);
1600
1601QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1602 wmi_host_peer_txmu_cnt_event *param);
1603
1604QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1605 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1606
Anirban Sirkhell08c01932017-08-25 16:01:50 +05301607QDF_STATUS
1608wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
1609 struct esp_estimation_event *param);
1610
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301611QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1612 void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1613
Govind Singh89727882016-04-15 13:58:27 +05301614QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1615 wmi_host_pdev_tpc_config_event *param);
1616
1617QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1618 void *evt_buf, uint32_t *gpio_num);
1619
1620QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
Kiran Venkatappa3f061a92017-02-08 14:57:16 +05301621 void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301622
1623QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1624 wmi_host_pdev_nfcal_power_all_channels_event *param);
1625
1626QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1627 wmi_host_pdev_tpc_event *param);
1628
1629QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1630 void *evt_buf,
1631 wmi_host_pdev_generic_buffer_event *param);
1632
1633QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1634 wmi_host_mgmt_tx_compl_event *param);
1635
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301636QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
1637 struct wmi_host_offchan_data_tx_compl_event *param);
1638
Sathish Kumar907a7462017-02-27 10:35:40 +05301639QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
1640 void *evt_buf,
1641 struct pdev_csa_switch_count_status *param);
1642
Sathish Kumar744fbf72017-05-17 18:05:15 +05301643QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
1644 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301645
1646QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1647 uint32_t idx, wmi_host_tim_info *tim_info);
1648
1649QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1650 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1651
Wu Gao07ba6b42017-03-13 20:17:34 +08001652#ifdef CONVERGED_P2P_ENABLE
1653QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1654 void *evt_buf, struct p2p_lo_event *param);
1655
1656QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1657 void *evt_buf, struct p2p_noa_info *param);
1658#endif
1659
Govind Singh89727882016-04-15 13:58:27 +05301660QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1661 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1662
1663QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1664 wmi_host_peer_sta_kickout_event *ev);
1665
1666QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1667 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1668
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001669QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1670 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1671
Govind Singh89727882016-04-15 13:58:27 +05301672QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1673 wmi_host_rtt_event_hdr *ev);
1674
1675QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1676 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1677 uint16_t hdump_len);
1678
1679QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1680 wmi_host_rtt_error_report_event *ev);
1681
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001682QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1683 uint32_t index, wmi_host_chan_stats *chan_stats);
1684
Govind Singh89727882016-04-15 13:58:27 +05301685QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi2f54fbb2017-04-19 16:57:31 +05301686 uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
Govind Singh89727882016-04-15 13:58:27 +05301687
1688QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1689 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1690
1691QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1692 uint16_t datalen, uint16_t *buf_offset,
1693 wmi_host_phyerr_t *phyerr);
1694
1695QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1696 uint16_t datalen, uint16_t *buf_offset,
1697 wmi_host_phyerr_t *phyerr);
1698
1699QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1700 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1701
1702QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1703 wmi_host_wlan_profile_ctx_t *profile_ctx);
1704
Govind Singh41da3152016-05-06 20:20:25 +05301705QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301706 wmi_host_wlan_profile_t *profile_data);
1707
1708QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1709 wmi_host_chan_info_event *chan_info);
1710
1711QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1712 wmi_host_pdev_channel_hopping_event *ch_hopping);
1713
1714QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1715 wmi_host_stats_event *stats_param);
1716
1717QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1718 uint32_t index,
1719 wmi_host_pdev_stats *pdev_stats);
1720
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07001721QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
1722 wmi_unit_test_event *unit_test, uint32_t maxspace);
1723
Govind Singh89727882016-04-15 13:58:27 +05301724QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1725 uint32_t index,
1726 wmi_host_pdev_ext_stats *pdev_ext_stats);
1727
1728QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1729 uint32_t index,
1730 wmi_host_peer_extd_stats *peer_extd_stats);
1731
1732QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1733 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1734
1735QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1736 wmi_host_inst_stats_resp *inst_rssi_resp);
1737
1738QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1739 uint32_t index, wmi_host_peer_stats *peer_stats);
1740
1741QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1742 wmi_host_tx_data_traffic_ctrl_event *ev);
1743
1744QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1745 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1746
Naveen Rawat9734fa92018-04-12 08:17:55 -07001747QDF_STATUS wmi_extract_per_chain_rssi_stats(void *wmi_hdl, void *evt_buf,
1748 uint32_t index, struct wmi_host_per_chain_rssi_stats *rssi_stats);
1749
Govind Singh89727882016-04-15 13:58:27 +05301750QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1751 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301752
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05301753QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
1754 uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
1755
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +05301756/**
1757 * wmi_extract_vdev_nac_rssi_stats() - extract NAC_RSSI stats from event
1758 * @wmi_handle: wmi handle
1759 * @param evt_buf: pointer to event buffer
1760 * @param vdev_extd_stats: Pointer to hold nac rssi stats
1761 *
1762 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1763 */
1764QDF_STATUS wmi_extract_vdev_nac_rssi_stats(void *wmi_hdl, void *evt_buf,
1765 struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
1766
Govind Singhc10bde82016-05-02 17:59:24 +05301767QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1768 struct wmi_power_dbg_params *param);
Sathish Kumar907a7462017-02-27 10:35:40 +05301769
1770QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
1771 struct multiple_vdev_restart_params *param);
1772
Jeff Johnsonefb43392017-12-14 15:50:16 -08001773/**
1774 * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
1775 * @wmi_hdl: wmi handle
1776 * @params: sar limit command params
1777 *
1778 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1779 */
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001780QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
Jeff Johnsonefb43392017-12-14 15:50:16 -08001781 struct sar_limit_cmd_params *params);
1782
1783/**
1784 * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
1785 * @wmi_hdl: wmi handle
1786 *
1787 * Return: QDF_STATUS_SUCCESS for success or error code
1788 */
1789QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
1790
1791/**
1792 * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
1793 * @wmi_hdl: wmi handle
1794 * @evt_buf: event buffer received from firmware
1795 * @event: SAR limit event which is to be populated by data extracted from
1796 * the @evt_buf buffer
1797 *
1798 * Return: QDF_STATUS_SUCCESS for success or error code
1799 */
1800QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
1801 uint8_t *evt_buf,
1802 struct sar_limit_event *event);
1803
Kabilan Kannana348b622018-06-21 16:55:47 -07001804/**
1805 * wmi_unified_extract_sar2_result_event() - extract SAR limits from FW event
1806 * @handle: wmi handle
1807 * @event: event buffer received from firmware
1808 * @len: length of the event buffer
1809 *
1810 * Return: QDF_STATUS_SUCCESS for success or error code
1811 */
1812QDF_STATUS wmi_unified_extract_sar2_result_event(void *handle,
1813 uint8_t *event, uint32_t len);
1814
1815/**
1816 * wmi_extract_sar_cap_service_ready_ext() - extract SAR cap from
1817 * FW service ready event
1818 * @wmi_hdl: wmi handle
1819 * @evt_buf: event buffer received from firmware
1820 * @ext_param: extended target info
1821 *
1822 * Return: QDF_STATUS_SUCCESS for success or error code
1823 */
1824QDF_STATUS wmi_extract_sar_cap_service_ready_ext(
1825 void *wmi_hdl,
1826 uint8_t *evt_buf,
1827 struct wlan_psoc_host_service_ext_param *ext_param);
1828
Gupta, Kapil7b768002016-04-25 19:14:19 +05301829QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1830 struct wmi_adaptive_dwelltime_params *
1831 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301832QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1833 struct set_fwtest_params *wmi_fwtest);
1834
Leo Chang8184e9c2016-09-28 13:43:36 -07001835QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1836 struct rx_reorder_queue_setup_params *param);
1837QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1838 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301839
1840QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001841 struct wlan_psoc_host_service_ext_param *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301842QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1843 void *wmi_hdl,
1844 uint8_t *evt_buf, uint8_t hw_mode_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001845 struct wlan_psoc_host_hw_mode_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301846QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1847 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301848 uint8_t *evt_buf,
1849 uint8_t hw_mode_id,
1850 uint8_t phy_id,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001851 struct wlan_psoc_host_mac_phy_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301852QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1853 void *wmi_hdl,
1854 uint8_t *evt_buf, uint8_t phy_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001855 struct wlan_psoc_host_hal_reg_capabilities_ext *param);
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05301856
1857/**
1858 * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
1859 * capability received through
1860 * extended service ready event
1861 * @wmi_hdl: WMI handle
1862 * @evt_buf: Event buffer
1863 * @idx: Index of the module for which capability is received
1864 * @param: Pointer to direct buffer rx ring cap struct
1865 *
1866 * Return: QDF status of operation
1867 */
1868QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
1869 void *wmi_hdl,
1870 uint8_t *evt_buf, uint8_t idx,
1871 struct wlan_psoc_host_dbr_ring_caps *param);
1872
1873/**
1874 * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
1875 * from buffer release event
1876 * @wmi_hdl: WMI handle
1877 * @evt_buf: Event buffer
1878 * @param: Pointer to direct buffer rx response struct
1879 *
1880 * Return: QDF status of operation
1881 */
1882QDF_STATUS wmi_extract_dbr_buf_release_fixed(
1883 void *wmi_hdl,
1884 uint8_t *evt_buf,
1885 struct direct_buf_rx_rsp *param);
1886
1887/**
1888 * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
1889 *
1890 * @wmi_hdl: WMI handle
1891 * @evt_buf: Event buffer
1892 * @idx: Index of the module for which capability is received
1893 * @param: Pointer to direct buffer rx entry
1894 *
1895 * Return: QDF status of operation
1896 */
1897QDF_STATUS wmi_extract_dbr_buf_release_entry(
1898 void *wmi_hdl,
1899 uint8_t *evt_buf, uint8_t idx,
1900 struct direct_buf_rx_entry *param);
Edayilliam Jayadev42ce0e42018-04-06 16:37:17 +05301901
1902/**
1903 * wmi_extract_dbr_buf_metadata: Extract direct buffer metadata
1904 *
1905 * @wmi_hdl: WMI handle
1906 * @evt_buf: Event buffer
1907 * @idx: Index of the module for which capability is received
1908 * @param: Pointer to direct buffer metadata
1909 *
1910 * Return: QDF status of operation
1911 */
1912QDF_STATUS wmi_extract_dbr_buf_metadata(
1913 void *wmi_hdl,
1914 uint8_t *evt_buf, uint8_t idx,
1915 struct direct_buf_rx_metadata *param);
1916
Sathish Kumar617535c2017-01-24 17:51:26 +05301917QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1918 uint8_t *evt_buf,
1919 struct wmi_host_pdev_utf_event *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301920
Kiran Venkatappa3d514982017-02-28 14:19:17 +05301921QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1922 uint8_t *evt_buf,
1923 struct wmi_host_pdev_qvit_event *param);
1924
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301925QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1926 uint8_t *evt_buf,
1927 struct wmi_host_peer_delete_response_event *param);
Arif Hussain85604fb2017-01-07 18:21:55 -08001928
Vikram Kandukuric83feb62017-03-07 18:40:13 +05301929QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1930 struct wlan_psoc_host_chainmask_table *chainmask_table);
Arif Hussain85604fb2017-01-07 18:21:55 -08001931/**
1932 * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1933 * @wmi_handle: wmi handle
1934 * @pdev_id: pdev id
1935 *
1936 * Return: QDF_STATUS
1937 */
1938QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1939 uint32_t pdev_id);
1940
1941/**
1942 * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
1943 * @wmi_handle: wmi handle
1944 * @pdev_id: pdev id
1945 *
1946 * Return: QDF_STATUS
1947 */
1948QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
1949 uint32_t pdev_id);
Dustin Browne58fbc72017-04-03 17:00:07 -07001950
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001951QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1952 struct set_country *param);
Rajeev Kumar Sirasanagandla9d7a69f2017-09-18 16:47:52 +05301953
1954#ifdef WLAN_FEATURE_ACTION_OUI
1955/**
1956 * wmi_unified_send_action_oui_cmd() - send action oui cmd to fw
1957 * @wmi_hdl: wma handle
1958 * @req: wmi action oui message to be send
1959 *
1960 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1961 */
1962QDF_STATUS
1963wmi_unified_send_action_oui_cmd(void *wmi_hdl,
1964 struct action_oui_request *req);
1965#endif /* WLAN_FEATURE_ACTION_OUI */
1966
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301967/*
1968 * wmi_unified_set_del_pmkid_cache() - set delete PMKID
1969 * @wmi_hdl: wma handle
1970 * @pmksa: pointer to pmk cache entry
1971 *
1972 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1973 */
1974QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
1975 struct wmi_unified_pmk_cache *pmksa);
1976
1977#if defined(WLAN_FEATURE_FILS_SK)
1978/*
1979 * wmi_unified_roam_send_hlp_cmd() -send HLP command info
1980 * @wmi_hdl: wma handle
1981 * @req_buf: Pointer to HLP params
1982 *
1983 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1984 */
1985QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
1986 struct hlp_params *req_buf);
1987#endif
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001988
Rajeev Kumar Sirasanagandlacddf6fe2016-11-22 21:28:54 +05301989/**
1990 * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
1991 * @wmi_hdl: wma handle
1992 * @get_rcpi_param: rcpi params
1993 *
1994 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1995 */
1996QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
1997 struct rcpi_req *get_rcpi_param);
1998
1999/**
2000 * wmi_extract_rcpi_response_event - api to extract RCPI event params
2001 * @wmi_handle: wma handle
2002 * @evt_buf: pointer to event buffer
2003 * @res: pointer to hold rcpi response from firmware
2004 *
2005 * Return: QDF_STATUS_SUCCESS for successful event parse
2006 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
2007 */
2008QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
2009 struct rcpi_res *res);
2010
Dustin Browne58fbc72017-04-03 17:00:07 -07002011#ifdef WMI_INTERFACE_EVENT_LOGGING
2012void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
2013 qdf_abstract_print *print, void *print_priv);
2014
2015void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2016 qdf_abstract_print *print, void *print_priv);
2017
2018void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
2019 qdf_abstract_print *print, void *print_priv);
2020
2021void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
2022 qdf_abstract_print *print, void *print_priv);
2023
2024void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
2025 qdf_abstract_print *print, void *print_priv);
2026
2027void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
2028 qdf_abstract_print *print, void *print_priv);
2029
2030void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
2031 qdf_abstract_print *print, void *print_priv);
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07002032
Dustin Browne58fbc72017-04-03 17:00:07 -07002033#endif /* WMI_INTERFACE_EVENT_LOGGING */
2034
Nitesh Shahfb9e88b2017-05-22 15:49:00 +05302035QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
2036 struct wmi_dbs_scan_sel_params *wmi_param);
Ganesh Kondabattini20b086b2017-07-10 11:54:11 +05302037
2038QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
2039 struct wmi_limit_off_chan_param *wmi_param);
Anurag Chouhanc1705422017-09-11 14:56:30 +05302040QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
2041 struct set_arp_stats *req_buf);
2042QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
2043 struct get_arp_stats *req_buf);
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05302044
2045/**
2046 * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
2047 * @wmi_hdl: wmi handle
2048 * @bcn_ctrl_param: pointer to bcn_offload_control param
2049 *
2050 * Return: QDF_STATUS_SUCCESS for success or error code
2051 */
2052QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
2053 struct bcn_offload_control *bcn_ctrl_param);
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05302054/**
2055 * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
2056 * wds entries from FW
Arif Hussain2cfde1d2017-12-27 16:23:45 -08002057 * @wmi_hdl: wmi handle
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05302058 *
2059 * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
2060 *
2061 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
2062 */
2063
2064QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
2065
2066/**
2067 * wmi_extract_wds_entry - api to extract wds entry
Arif Hussain2cfde1d2017-12-27 16:23:45 -08002068 * @wmi_hdl: wmi handle
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05302069 * @evt_buf: pointer to event buffer
2070 * @wds_entry: wds entry
2071 * @idx: index to point wds entry in event buffer
2072 *
2073 * Return: QDF_STATUS_SUCCESS for successful event parse
2074 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
2075 */
2076
2077QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
2078 struct wdsentry *wds_entry, u_int32_t idx);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002079
2080#ifdef WLAN_FEATURE_NAN_CONVERGENCE
2081/**
2082 * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002083 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002084 * @req: pointer to request buffer
2085 *
2086 * Return: status of operation
2087 */
2088QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
2089 struct nan_datapath_initiator_req *req);
2090
2091/**
2092 * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002093 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002094 * @req: pointer to request buffer
2095 *
2096 * Return: status of operation
2097 */
2098QDF_STATUS wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
2099 struct nan_datapath_responder_req *req);
2100
2101/**
2102 * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002103 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002104 * @req: pointer to request buffer
2105 *
2106 * Return: status of operation
2107 */
2108QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
2109 struct nan_datapath_end_req *req);
2110
2111/**
2112 * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002113 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002114 * @data: event buffer
2115 * @rsp: buffer to populate
2116 *
2117 * Return: status of operation
2118 */
2119QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
Naveen Rawat1d095b02018-02-02 15:13:05 -08002120 uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002121
2122/**
2123 * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002124 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002125 * @data: event buffer
2126 * @ind: buffer to populate
2127 *
2128 * Return: status of operation
2129 */
2130QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08002131 struct nan_datapath_indication_event *ind);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002132
2133/**
2134 * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002135 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002136 * @data: event buffer
2137 * @ev: buffer to populate
2138 *
2139 * Return: status of operation
2140 */
2141QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08002142 struct nan_datapath_confirm_event *ev);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002143
2144/**
2145 * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002146 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002147 * @data: event buffer
2148 * @rsp: buffer to populate
2149 *
2150 * Return: status of operation
2151 */
2152QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
Naveen Rawat1d095b02018-02-02 15:13:05 -08002153 uint8_t *data, struct nan_datapath_responder_rsp *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002154
2155/**
2156 * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002157 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002158 * @data: event buffer
2159 * @rsp: buffer to populate
2160 *
2161 * Return: status of operation
2162 */
2163QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08002164 struct nan_datapath_end_rsp_event *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002165
2166/**
2167 * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002168 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08002169 * @data: event buffer
2170 * @ind: buffer to populate
2171 *
2172 * Return: status of operation
2173 */
2174QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
2175 struct nan_datapath_end_indication_event **ind);
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08002176
2177/**
2178 * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
2179 * @wmi_hdl: wmi handle
2180 * @data: event buffer
2181 * @ind: buffer to populate
2182 *
2183 * Return: status of operation
2184 */
2185QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
2186 struct nan_datapath_sch_update_event *ind);
Naveen Rawat79a787c2017-12-14 13:24:31 -08002187#endif
Subrat Mishra7c9427e2017-09-27 14:41:20 +05302188
yeshwanth sriram guntuka230af892017-09-01 17:56:07 +05302189/**
2190 * wmi_unified_send_btm_config() - Send BTM config to fw
2191 * @wmi_hdl: wmi handle
2192 * @params: pointer to wmi_btm_config
2193 *
2194 * Return: QDF_STATUS
2195 */
2196QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
2197 struct wmi_btm_config *params);
Arif Hussain2cfde1d2017-12-27 16:23:45 -08002198
2199/**
2200 * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
2201 * detection configuration to FW.
2202 * @wmi_hdl: wmi handle
2203 * @cfg: obss detection configuration
2204 *
2205 * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
2206 *
2207 * Return: QDF_STATUS
2208 */
2209
2210QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
2211 struct wmi_obss_detection_cfg_param *cfg);
Arif Hussainf9f26b52018-01-12 13:15:04 -08002212
2213/**
2214 * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
2215 * detection info from FW.
2216 * @wmi_hdl: wmi handle
2217 * @data: event data from firmware
2218 * @info: Pointer to hold obss detection info
2219 *
2220 * This function is used to extract obss info from firmware.
2221 *
2222 * Return: QDF_STATUS
2223 */
2224
2225QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
2226 uint8_t *data,
2227 struct wmi_obss_detect_info
2228 *info);
Arif Hussainb4da3472018-01-22 01:19:36 -08002229/**
2230 * wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
2231 * color change enable to FW.
2232 * @wmi_hdl: wmi handle
2233 * @vdev_id: vdev ID
2234 * @enable: enable or disable color change handeling within firmware
2235 *
2236 * Send WMI_BSS_COLOR_CHANGE_ENABLE_CMDID parameters to fw,
2237 * thereby firmware updates bss color when AP announces bss color change.
2238 *
2239 * Return: QDF_STATUS
2240 */
2241
2242QDF_STATUS wmi_unified_send_bss_color_change_enable_cmd(void *wmi_hdl,
2243 uint32_t vdev_id,
2244 bool enable);
2245
2246/**
2247 * wmi_unified_send_obss_color_collision_cfg_cmd() - WMI function to send bss
2248 * color collision detection configuration to FW.
2249 * @wmi_hdl: wmi handle
2250 * @cfg: obss color collision detection configuration
2251 *
2252 * Send WMI_OBSS_COLOR_COLLISION_DET_CONFIG_CMDID parameters to fw.
2253 *
2254 * Return: QDF_STATUS
2255 */
2256
2257QDF_STATUS wmi_unified_send_obss_color_collision_cfg_cmd(void *wmi_hdl,
2258 struct wmi_obss_color_collision_cfg_param *cfg);
2259
2260/**
2261 * wmi_unified_extract_obss_color_collision_info() - WMI function to extract
2262 * obss color collision info from FW.
2263 * @wmi_hdl: wmi handle
2264 * @data: event data from firmware
2265 * @info: Pointer to hold bss color collision info
2266 *
2267 * This function is used to extract bss collision info from firmware.
2268 *
2269 * Return: QDF_STATUS
2270 */
2271
2272QDF_STATUS wmi_unified_extract_obss_color_collision_info(void *wmi_hdl,
2273 uint8_t *data, struct wmi_obss_color_collision_info *info);
Arif Hussainf9f26b52018-01-12 13:15:04 -08002274
Himanshu Agarwal3f5d65a2018-01-24 22:24:17 +05302275#ifdef WLAN_SUPPORT_GREEN_AP
2276QDF_STATUS wmi_extract_green_ap_egap_status_info(
2277 void *wmi_hdl, uint8_t *evt_buf,
2278 struct wlan_green_ap_egap_status_info *egap_status_info_params);
2279#endif
2280
Subrat Mishra7c9427e2017-09-27 14:41:20 +05302281#ifdef WLAN_SUPPORT_FILS
2282/**
2283 * wmi_unified_fils_vdev_config_send_cmd() - send FILS config cmd to fw
2284 * @wmi_hdl: wmi handle
2285 * @param: fils config params
2286 *
2287 * Return: QDF_STATUS_SUCCESS for success or error code
2288 */
2289QDF_STATUS
2290wmi_unified_fils_vdev_config_send_cmd(void *wmi_hdl,
2291 struct config_fils_params *param);
2292
2293/**
2294 * wmi_extract_swfda_vdev_id() - api to extract vdev id
2295 * @wmi_hdl: wmi handle
2296 * @evt_buf: pointer to event buffer
2297 * @vdev_id: pointer to vdev id
2298 *
2299 * Return: QDF_STATUS_SUCCESS for success or error code
2300 */
2301QDF_STATUS wmi_extract_swfda_vdev_id(void *wmi_hdl, void *evt_buf,
2302 uint32_t *vdev_id);
2303
2304/**
2305 * wmi_unified_fils_discovery_send_cmd() - send FILS discovery cmd to fw
2306 * @wmi_hdl: wmi handle
2307 * @param: fils discovery params
2308 *
2309 * Return: QDF_STATUS_SUCCESS for success or error code
2310 */
2311QDF_STATUS wmi_unified_fils_discovery_send_cmd(void *wmi_hdl,
2312 struct fd_params *param);
2313#endif /* WLAN_SUPPORT_FILS */
Vignesh Viswanathan51994e32018-01-18 19:06:40 +05302314
2315/**
2316 * wmi_unified_offload_11k_cmd() - send 11k offload command
2317 * @wmi_hdl: wmi handle
2318 * @params: 11k offload params
2319 *
2320 * This function passes the 11k offload command params to FW
2321 *
2322 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2323 */
2324QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
2325 struct wmi_11k_offload_params *params);
2326/**
2327 * wmi_unified_invoke_neighbor_report_cmd() - send invoke neighbor report cmd
2328 * @wmi_hdl: wmi handle
2329 * @params: invoke neighbor report params
2330 *
2331 * This function passes the invoke neighbor report command to fw
2332 *
2333 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2334 */
2335QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
2336 struct wmi_invoke_neighbor_report_params *params);
Naveen Rawat1d095b02018-02-02 15:13:05 -08002337
Naveen Rawat13dbfb72018-02-02 15:18:33 -08002338/* wmi_get_ch_width_from_phy_mode() - convert phy mode to channel width
2339 * @wmi_hdl: wmi handle
2340 * @phymode: phy mode
2341 *
2342 * Return: wmi channel width
2343 */
2344wmi_host_channel_width wmi_get_ch_width_from_phy_mode(void *wmi_hdl,
2345 WMI_HOST_WLAN_PHY_MODE phymode);
2346
Naveen Rawat96afb7f2018-04-13 16:38:36 -07002347#ifdef QCA_SUPPORT_CP_STATS
2348/**
2349 * wmi_extract_cca_stats() - api to extract congestion stats from event buffer
2350 * @wmi_handle: wma handle
2351 * @evt_buf: event buffer
2352 * @datalen: length of buffer
2353 * @stats: buffer to populated after stats extraction
2354 *
2355 * Return: status of operation
2356 */
2357QDF_STATUS wmi_extract_cca_stats(wmi_unified_t wmi_handle, void *evt_buf,
2358 struct wmi_host_congestion_stats *stats);
2359#endif /* QCA_SUPPORT_CP_STATS */
2360
Shashikala Prabhu6c90a3e2018-05-16 10:08:09 +05302361#if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
2362/**
2363 * wmi_unified_dfs_send_avg_params_cmd() - send average radar parameters cmd.
2364 * @wmi_hdl: wmi handle
2365 * @params: radar found params
2366 *
2367 * This function passes the average radar parameters to fw
2368 *
2369 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2370 */
2371QDF_STATUS
2372wmi_unified_dfs_send_avg_params_cmd(void *wmi_hdl,
2373 struct dfs_radar_found_params *params);
2374
2375/**
2376 * wmi_extract_dfs_status_from_fw() - extract host dfs status from fw.
2377 * @wmi_hdl: wmi handle
2378 * @evt_buf: pointer to event buffer
2379 * @dfs_status_check: pointer to the host dfs status
2380 *
2381 * This function extracts the result of host dfs from fw
2382 *
2383 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2384 */
2385QDF_STATUS wmi_extract_dfs_status_from_fw(void *wmi_hdl, void *evt_buf,
2386 uint32_t *dfs_status_check);
2387#endif
c_cgodava5eb9a22017-02-13 10:14:42 +05302388#ifdef OL_ATH_SMART_LOGGING
2389/**
2390 * wmi_unified_send_smart_logging_enable_cmd() - send smart logging enable cmd
2391 * @wmi_hdl: wmi handle
2392 * @params: enable/disable
2393 *
2394 * This function enables/disable the smart logging feature
2395 *
2396 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2397 */
2398QDF_STATUS wmi_unified_send_smart_logging_enable_cmd(void *wmi_hdl,
2399 uint32_t param);
2400
2401/**
2402 * wmi_unified_send_smart_logging_fatal_cmd() - send smart logging fatal cmd
2403 * @wmi_hdl: wmi handle
2404 * @param: Fatal event
2405 *
2406 * This function sends the smart log fatal events to the FW
2407 *
2408 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2409 */
2410QDF_STATUS wmi_unified_send_smart_logging_fatal_cmd
2411 (void *wmi_hdl,
2412 struct wmi_debug_fatal_events *param);
2413
2414/**
2415 * wmi_extract_smartlog_ev() - extract smartlog event info from event
2416 * @wmi_handle: wmi handle
2417 * @param evt_buf: pointer to event buffer
2418 * @param ev: Pointer to hold fatal events
2419 *
2420 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2421 */
2422QDF_STATUS wmi_extract_smartlog_ev
2423 (void *wmi_hdl, void *evt_buf,
2424 struct wmi_debug_fatal_events *ev);
Amar Singhal07f83142018-06-26 16:45:54 -07002425
c_cgodava5eb9a22017-02-13 10:14:42 +05302426#endif /* OL_ATH_SMART_LOGGING */
Amar Singhal07f83142018-06-26 16:45:54 -07002427
2428void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
2429 HTC_PACKET * htc_packet);
2430
Govind Singhd475ea92016-03-06 19:55:02 +05302431#endif /* _WMI_UNIFIED_API_H_ */