blob: 2e07b4dde986f2b5c6885bdff49b58adc44039e3 [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
Sathish Kumar637da892018-10-02 11:03:59 +053071#ifdef WMI_SMART_ANT_SUPPORT
72#include "wmi_unified_smart_ant_api.h"
73#endif
74
75#ifdef WMI_DBR_SUPPORT
76#include "wmi_unified_dbr_api.h"
77#endif
78
79#ifdef WMI_ATF_SUPPORT
80#include "wmi_unified_atf_api.h"
81#endif
82
83#ifdef WMI_AP_SUPPORT
84#include "wmi_unified_ap_api.h"
85#endif
86
Govind Singhd7468a52016-03-09 14:32:57 +053087typedef qdf_nbuf_t wmi_buf_t;
88#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
89
90#define WMI_LOGD(args ...) \
91 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
92#define WMI_LOGI(args ...) \
93 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
94#define WMI_LOGW(args ...) \
95 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
96#define WMI_LOGE(args ...) \
97 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
98#define WMI_LOGP(args ...) \
99 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
100
Govind Singhd7468a52016-03-09 14:32:57 +0530101
Govind Singhd475ea92016-03-06 19:55:02 +0530102
Arif Hussainf6b0c992018-03-01 14:40:59 -0800103#define PHYERROR_MAX_BUFFER_LENGTH 0x7F000000
104
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530105struct wmi_soc;
Srinivas Girigowdac461aef2018-02-15 14:30:05 -0800106struct policy_mgr_dual_mac_config;
Govind Singhd475ea92016-03-06 19:55:02 +0530107/**
Govind Singh6ad6ada2016-02-04 18:42:30 +0530108 * struct wmi_ops - service callbacks to upper layer
109 * @service_ready_cbk: service ready callback
110 * @service_ready_ext_cbk: service ready ext callback
111 * @ready_cbk: ready calback
112 * @wma_process_fw_event_handler_cbk: generic event handler callback
113 */
Govind Singh3ddda1f2016-03-09 11:34:12 +0530114struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +0530115
Govind Singh6ad6ada2016-02-04 18:42:30 +0530116 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530117 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +0530118};
119
120/**
121 * enum wmi_target_type - type of supported wmi command
122 * @WMI_TLV_TARGET: tlv based target
123 * @WMI_NON_TLV_TARGET: non-tlv based target
124 *
125 */
126enum wmi_target_type {
127 WMI_TLV_TARGET,
Pratik Gandhi073fa002018-01-30 19:05:41 +0530128 WMI_NON_TLV_TARGET,
129 WMI_MAX_TARGET_TYPE
Govind Singh6ad6ada2016-02-04 18:42:30 +0530130};
131
132/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530133 * enum wmi_rx_exec_ctx - wmi rx execution context
134 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
135 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
136 *
137 */
138enum wmi_rx_exec_ctx {
139 WMI_RX_WORK_CTX,
140 WMI_RX_UMAC_CTX
141};
142
143/**
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530144 * struct wmi_unified_attach_params - wmi init parameters
145 * @param osdev : NIC device
Govind Singh89727882016-04-15 13:58:27 +0530146 * @param target_type : type of supported wmi command
147 * @param use_cookie : flag to indicate cookie based allocation
148 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530149 * @psoc : objmgr psoc
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530150 * @max_commands : max commands
151 */
152struct wmi_unified_attach_params {
153 osdev_t osdev;
154 enum wmi_target_type target_type;
155 bool use_cookie;
156 struct wmi_rx_ops *rx_ops;
157 struct wlan_objmgr_psoc *psoc;
158 uint16_t max_commands;
c_priyscc79b352018-06-12 16:53:51 +0530159 uint32_t soc_id;
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530160};
161
162/**
163 * attach for unified WMI
164 *
165 * @param scn_handle : handle to SCN.
166 * @param params : attach params for WMI
167 *
Govind Singhd475ea92016-03-06 19:55:02 +0530168 */
169void *wmi_unified_attach(void *scn_handle,
Chaithanya Garrepalli09744012017-12-01 14:55:26 +0530170 struct wmi_unified_attach_params *params);
Mukul Sharma36d159b2017-01-30 19:55:40 +0530171
Govind Singh6ad6ada2016-02-04 18:42:30 +0530172
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700173
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700174/**
175 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
176 *
177 * @wmi_handle: wmi handle
178 * @cmd: mgmt command
179 * @header: pointer to 802.11 header
180 * @vdev_id: vdev id
181 * @chanfreq: channel frequency
182 *
183 * Return: none
184 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530185void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700186 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700187
Govind Singhd475ea92016-03-06 19:55:02 +0530188/**
189 * detach for unified WMI
190 *
191 * @param wmi_handle : handle to WMI.
192 * @return void.
193 */
194void wmi_unified_detach(struct wmi_unified *wmi_handle);
195
gaurank kathpaliaa2a2c712018-02-21 18:58:29 +0530196/**
197 * API to sync time between host and firmware
198 *
199 * @param wmi_handle : handle to WMI.
200 * @return void.
201 */
202void wmi_send_time_stamp_sync_cmd_tlv(void *wmi_hdl);
203
Govind Singhd475ea92016-03-06 19:55:02 +0530204void
205wmi_unified_remove_work(struct wmi_unified *wmi_handle);
206
207/**
208 * generic function to allocate WMI buffer
209 *
210 * @param wmi_handle : handle to WMI.
211 * @param len : length of the buffer
212 * @return wmi_buf_t.
213 */
Shiva Krishna Pittala92416432018-04-02 17:23:42 +0530214#ifdef NBUF_MEMORY_DEBUG
Govind Singhd475ea92016-03-06 19:55:02 +0530215#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
216wmi_buf_t
Debasis Das9d1359f2018-04-04 17:17:55 +0530217wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint32_t len,
Govind Singhd475ea92016-03-06 19:55:02 +0530218 uint8_t *file_name, uint32_t line_num);
219#else
Arif Hussain7aee5442018-07-19 14:15:36 -0700220/**
221 * wmi_buf_alloc() - generic function to allocate WMI buffer
222 * @wmi_handle: handle to WMI.
223 * @len: length of the buffer
224 *
225 * Return: return wmi_buf_t or null if memory alloc fails
226 */
227#define wmi_buf_alloc(wmi_handle, len) \
228 wmi_buf_alloc_fl(wmi_handle, len, __func__, __LINE__)
229
230wmi_buf_t wmi_buf_alloc_fl(wmi_unified_t wmi_handle, uint32_t len,
231 const char *func, uint32_t line);
Govind Singhd475ea92016-03-06 19:55:02 +0530232#endif
233
234/**
235 * generic function frees WMI net buffer
236 *
237 * @param net_buf : Pointer ot net_buf to be freed
238 */
239void wmi_buf_free(wmi_buf_t net_buf);
240
241/**
Arif Hussain6acb51f2018-07-19 15:05:16 -0700242 * wmi_unified_cmd_send() - generic function to send unified WMI command
243 * @wmi_handle: handle to WMI.
244 * @buf: wmi command buffer
245 * @buflen: wmi command buffer length
246 * @cmd_id: WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530247 *
Arif Hussain6acb51f2018-07-19 15:05:16 -0700248 * Note, it is NOT safe to access buf after calling this function!
249 *
250 * Return: QDF_STATUS
Govind Singhd475ea92016-03-06 19:55:02 +0530251 */
Arif Hussain6acb51f2018-07-19 15:05:16 -0700252#define wmi_unified_cmd_send(wmi_handle, buf, buflen, cmd_id) \
253 wmi_unified_cmd_send_fl(wmi_handle, buf, buflen, \
254 cmd_id, __func__, __LINE__)
255
Houston Hoffman09f96f92016-09-27 23:29:49 -0700256QDF_STATUS
Arif Hussain6acb51f2018-07-19 15:05:16 -0700257wmi_unified_cmd_send_fl(wmi_unified_t wmi_handle, wmi_buf_t buf,
258 uint32_t buflen, uint32_t cmd_id,
259 const char *func, uint32_t line);
Govind Singhd475ea92016-03-06 19:55:02 +0530260
261/**
Soumya Bhat49a84812017-03-22 14:41:01 +0530262 * wmi_unified_register_event() - WMI event handler
263 * registration function for converged components
264 *
265 * @wmi_handle: handle to WMI.
266 * @event_id: WMI event ID
267 * @handler_func: Event handler call back function
268 *
269 * @return 0 on success and -ve on failure.
270 */
271int
272wmi_unified_register_event(wmi_unified_t wmi_handle,
273 uint32_t event_id,
274 wmi_unified_event_handler handler_func);
275
276/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530277 * wmi_unified_register_event_handler() - WMI event handler
278 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530279 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530280 * @wmi_handle: handle to WMI.
281 * @event_id: WMI event ID
282 * @handler_func: Event handler call back function
283 * @rx_ctx: rx event processing context
284 *
Govind Singhd475ea92016-03-06 19:55:02 +0530285 * @return 0 on success and -ve on failure.
286 */
287int
288wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530289 wmi_conv_event_id event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530290 wmi_unified_event_handler handler_func,
291 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530292
293/**
Soumya Bhat070cd052017-03-27 12:26:56 +0530294 * WMI event handler unregister function for converged componets
295 *
296 * @param wmi_handle : handle to WMI.
297 * @param event_id : WMI event ID
298 * @return 0 on success and -ve on failure.
299 */
300int
301wmi_unified_unregister_event(wmi_unified_t wmi_handle,
302 uint32_t event_id);
303
304/**
Govind Singhd475ea92016-03-06 19:55:02 +0530305 * WMI event handler unregister function
306 *
307 * @param wmi_handle : handle to WMI.
308 * @param event_id : WMI event ID
309 * @return 0 on success and -ve on failure.
310 */
311int
312wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530313 wmi_conv_event_id event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530314
315/**
316 * request wmi to connet its htc service.
317 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530318 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530319 * @return void
320 */
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530321QDF_STATUS
Govind Singhd475ea92016-03-06 19:55:02 +0530322wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
323 void *htc_handle);
324
325/*
326 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530327 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530328 */
329
330int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
331
332/**
Govind Singh89727882016-04-15 13:58:27 +0530333 * WMI API to get updated host_credits
334 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530335 */
336
337int wmi_get_host_credits(wmi_unified_t wmi_handle);
338
339/**
Govind Singh89727882016-04-15 13:58:27 +0530340 * WMI API to get WMI Pending Commands in the HTC queue
341 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530342 */
343
344int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
345
346/**
Govind Singh89727882016-04-15 13:58:27 +0530347 * WMI API to set target suspend state
348 * @param wmi_handle : handle to WMI.
349 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530350 */
Govind Singhd475ea92016-03-06 19:55:02 +0530351void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
352
Govind Singh89727882016-04-15 13:58:27 +0530353/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530354 * WMI API to set bus suspend state
355 * @param wmi_handle: handle to WMI.
356 * @param val: suspend state boolean
357 */
358void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
359
360/**
361 * WMI API to set crash injection state
362 * @param wmi_handle: handle to WMI.
363 * @param val: crash injection state boolean
364 */
365void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
366
367/**
Ravi Kumar Bokkadf1f3ea2016-11-09 18:07:56 +0530368 * WMI API to set target assert
369 * @param wmi_handle: handle to WMI.
370 * @param val: target assert config value.
371 *
372 * Return: none.
373 */
374void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
375
376/**
Govind Singh89727882016-04-15 13:58:27 +0530377 * generic function to block unified WMI command
378 * @param wmi_handle : handle to WMI.
379 * @return 0 on success and -ve on failure.
380 */
381int
382wmi_stop(wmi_unified_t wmi_handle);
383
384/**
385 * API to flush all the previous packets associated with the wmi endpoint
386 *
387 * @param wmi_handle : handle to WMI.
388 */
389void
390wmi_flush_endpoint(wmi_unified_t wmi_handle);
391
392/**
Kiran Venkatappa49341042017-05-10 16:24:51 +0530393 * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
394 * By default pdev_id conversion is not done in WMI.
395 * This API can be used enable conversion in WMI.
396 * @param wmi_handle : handle to WMI
397 * Return none
398 */
399void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
400
401/**
Govind Singh89727882016-04-15 13:58:27 +0530402 * API to handle wmi rx event after UMAC has taken care of execution
403 * context
404 *
405 * @param wmi_handle : handle to WMI.
406 * @param evt_buf : wmi event buffer
407 */
408void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530409#ifdef FEATURE_RUNTIME_PM
410void
411wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
412bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
413#else
414static inline void
415wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
416{
417 return;
418}
419static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
420{
421 return false;
422}
423#endif
424
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530425void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
426
427void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
428
Govind Singhd475ea92016-03-06 19:55:02 +0530429/**
Govind Singhd7468a52016-03-09 14:32:57 +0530430 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530431 * @param wmi_handle : handle to WMI.
432 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530433 */
Govind Singhd475ea92016-03-06 19:55:02 +0530434void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
435uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530436
437
Govind Singhd7468a52016-03-09 14:32:57 +0530438QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530439 uint8_t macaddr[IEEE80211_ADDR_LEN],
440 struct vdev_create_params *param);
441
Govind Singhd7468a52016-03-09 14:32:57 +0530442QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530443 uint8_t if_id);
444
Govind Singhd7468a52016-03-09 14:32:57 +0530445QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530446 uint8_t vdev_id);
447
Govind Singhd7468a52016-03-09 14:32:57 +0530448QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530449 uint8_t bssid[IEEE80211_ADDR_LEN],
450 struct vdev_up_params *params);
451
Govind Singhd7468a52016-03-09 14:32:57 +0530452QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530453 uint8_t vdev_id);
454
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530455QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
456 struct vdev_start_params *req);
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +0530457/**
458 * wmi_unified_vdev_set_nac_rssi_send() - send NAC_RSSI command to fw
459 * @param wmi_handle : handle to WMI
460 * @param req : pointer to hold nac rssi request data
461 *
462 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
463 */
464QDF_STATUS wmi_unified_vdev_set_nac_rssi_send(void *wmi_hdl,
465 struct vdev_scan_nac_rssi_params *req);
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530466
467QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
468 struct hidden_ssid_vdev_restart_params *restart_params);
469
Govind Singhd7468a52016-03-09 14:32:57 +0530470QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530471 struct vdev_set_params *param);
472
narayane1b44662018-07-01 21:59:41 +0530473QDF_STATUS wmi_unified_sifs_trigger_send(void *wmi_hdl,
474 struct sifs_trigger_param *param);
475
Govind Singhd7468a52016-03-09 14:32:57 +0530476QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530477 uint8_t
478 peer_addr[IEEE80211_ADDR_LEN],
479 uint8_t vdev_id);
480
Govind Singhd7468a52016-03-09 14:32:57 +0530481QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530482 uint8_t peer_addr[IEEE80211_ADDR_LEN],
483 struct peer_flush_params *param);
484
Govind Singhd7468a52016-03-09 14:32:57 +0530485QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530486 uint8_t peer_addr[IEEE80211_ADDR_LEN],
487 struct peer_set_params *param);
488
Govind Singhd7468a52016-03-09 14:32:57 +0530489QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530490 struct peer_create_params *param);
491
Govind Singhd7468a52016-03-09 14:32:57 +0530492QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530493 uint8_t macaddr[IEEE80211_ADDR_LEN],
494 struct stats_request_params *param);
495
Govind Singhd7468a52016-03-09 14:32:57 +0530496QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530497 uint32_t value, uint8_t pdev_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530498
Will Huang5325c7c2017-11-17 13:19:16 +0800499#ifdef FEATURE_WLAN_D0WOW
500QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
501 uint8_t mac_id);
502QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
503 uint8_t mac_id);
504#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530505
Govind Singhd7468a52016-03-09 14:32:57 +0530506QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530507 struct wow_cmd_params *param,
508 uint8_t mac_id);
509
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700510QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
511
512QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
513 struct wow_add_wakeup_params *param);
514
515QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
516 struct wow_add_wakeup_pattern_params *param);
517
518QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
519 struct wow_remove_wakeup_pattern_params *param);
520
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530521#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530522QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Keyur Parekh483138e2017-05-07 08:54:47 -0700523 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
Govind Singh89727882016-04-15 13:58:27 +0530524#else
Govind Singhd7468a52016-03-09 14:32:57 +0530525QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530526 uint8_t macaddr[IEEE80211_ADDR_LEN],
527 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530528#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530529
Keyur Parekh483138e2017-05-07 08:54:47 -0700530QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530531
Govind Singhd7468a52016-03-09 14:32:57 +0530532QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530533 struct suspend_params *param,
534 uint8_t mac_id);
535
Govind Singhd7468a52016-03-09 14:32:57 +0530536QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530537 uint8_t mac_id);
538
Govind Singhd7468a52016-03-09 14:32:57 +0530539QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530540wmi_unified_pdev_param_send(void *wmi_hdl,
541 struct pdev_params *param,
542 uint8_t mac_id);
543
Govind Singh89727882016-04-15 13:58:27 +0530544QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
545 struct beacon_tmpl_params *param);
546
547
Govind Singhd7468a52016-03-09 14:32:57 +0530548QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530549 struct peer_assoc_params *param);
550
Govind Singhd7468a52016-03-09 14:32:57 +0530551QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530552 struct sta_ps_params *param);
553
Govind Singhd7468a52016-03-09 14:32:57 +0530554QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530555 uint8_t macaddr[IEEE80211_ADDR_LEN],
556 struct ap_ps_params *param);
557
Govind Singhd7468a52016-03-09 14:32:57 +0530558QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530559 struct scan_req_params *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530560
Govind Singhd7468a52016-03-09 14:32:57 +0530561QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530562 struct scan_cancel_param *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530563
Govind Singhd7468a52016-03-09 14:32:57 +0530564QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530565 struct scan_chan_list_params *param);
566
567
Govind Singhd7468a52016-03-09 14:32:57 +0530568QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530569 struct crash_inject *param);
570
Govind Singhd7468a52016-03-09 14:32:57 +0530571QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530572 struct pdev_utf_params *param,
573 uint8_t mac_id);
574
Wen Gong59d1dbe2018-04-20 16:56:28 +0800575#ifdef FEATURE_FW_LOG_PARSING
Govind Singhd7468a52016-03-09 14:32:57 +0530576QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Wen Gong59d1dbe2018-04-20 16:56:28 +0800577 struct dbglog_params *param);
578#else
579static inline QDF_STATUS
580wmi_unified_dbglog_cmd_send(void *wmi_hdl,
581 struct dbglog_params *param)
582{
583 return QDF_STATUS_SUCCESS;
584}
585#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530586
Govind Singhd7468a52016-03-09 14:32:57 +0530587QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530588 struct wmi_mgmt_params *param);
589
Kiran Venkatappa25c47022017-03-19 22:58:09 +0530590QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
591 struct wmi_offchan_data_tx_params *param);
592
Govind Singhd7468a52016-03-09 14:32:57 +0530593QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530594 uint32_t param_value);
595
Govind Singhd7468a52016-03-09 14:32:57 +0530596QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530597 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530598QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530599wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
600 struct sta_uapsd_trig_params *param);
601
Govind Singhd7468a52016-03-09 14:32:57 +0530602QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530603
Govind Singhd7468a52016-03-09 14:32:57 +0530604QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530605 struct p2p_ps_params *oppps);
606
Govind Singhd7468a52016-03-09 14:32:57 +0530607QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530608 struct p2p_ps_params *noa);
609
Wu Gao07ba6b42017-03-13 20:17:34 +0800610#ifdef CONVERGED_P2P_ENABLE
Rachit Kankane54c543f2018-07-31 16:26:38 +0530611#ifdef FEATURE_P2P_LISTEN_OFFLOAD
Wu Gao07ba6b42017-03-13 20:17:34 +0800612QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
613 struct p2p_lo_start *param);
614
615QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
616#endif
Rachit Kankane54c543f2018-07-31 16:26:38 +0530617#endif
Wu Gao07ba6b42017-03-13 20:17:34 +0800618
Govind Singhd7468a52016-03-09 14:32:57 +0530619QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530620 int value);
621
Govind Singhd7468a52016-03-09 14:32:57 +0530622QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530623
Zhang Qian74a66aa2018-01-05 16:50:53 +0800624#ifdef WLAN_FEATURE_DSRC
625/**
626 * wmi_unified_ocb_start_timing_advert() - start sending the timing
627 * advertisement frames on a channel
628 * @wmi_handle: pointer to the wmi handle
629 * @timing_advert: pointer to the timing advertisement struct
630 *
631 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
632 */
633QDF_STATUS wmi_unified_ocb_start_timing_advert(struct wmi_unified *wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530634 struct ocb_timing_advert_param *timing_advert);
635
Zhang Qian74a66aa2018-01-05 16:50:53 +0800636/**
637 * wmi_unified_ocb_stop_timing_advert() - stop sending the timing
638 * advertisement frames on a channel
639 * @wmi_handle: pointer to the wmi handle
640 * @timing_advert: pointer to the timing advertisement struct
641 *
642 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
643 */
644QDF_STATUS wmi_unified_ocb_stop_timing_advert(struct wmi_unified *wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530645 struct ocb_timing_advert_param *timing_advert);
646
Zhang Qian74a66aa2018-01-05 16:50:53 +0800647/**
648 * wmi_unified_ocb_set_config() - send the OCB config to the FW
649 * @wmi_handle: pointer to the wmi handle
650 * @config: the OCB configuration
651 *
652 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
653 */
654QDF_STATUS wmi_unified_ocb_set_config(struct wmi_unified *wmi_handle,
655 struct ocb_config *config);
Govind Singhe7b800c2016-03-01 15:30:53 +0530656
Zhang Qian74a66aa2018-01-05 16:50:53 +0800657/**
658 * wmi_unified_ocb_get_tsf_timer() - get ocb tsf timer val
659 * @wmi_handle: pointer to the wmi handle
660 * @req: request for tsf timer
661 *
662 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
663 */
664QDF_STATUS wmi_unified_ocb_get_tsf_timer(struct wmi_unified *wmi_handle,
665 struct ocb_get_tsf_timer_param *req);
666
667/**
668 * wmi_unified_ocb_set_utc_time_cmd() - get ocb tsf timer val
669 * @wmi_handle: pointer to the wmi handle
670 * @vdev_id: vdev id
671 *
672 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
673 */
674QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(struct wmi_unified *wmi_handle,
675 struct ocb_utc_param *utc);
676
677/**
678 * wmi_unified_dcc_get_stats_cmd() - get the DCC channel stats
679 * @wmi_handle: pointer to the wmi handle
680 * @get_stats_param: pointer to the dcc stats
681 *
682 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
683 */
684QDF_STATUS wmi_unified_dcc_get_stats_cmd(struct wmi_unified *wmi_handle,
685 struct ocb_dcc_get_stats_param *get_stats_param);
686
687/**
688 * wmi_unified_dcc_clear_stats() - command to clear the DCC stats
689 * @wmi_handle: pointer to the wmi handle
690 * @clear_stats_param: parameters to the command
691 *
692 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
693 */
694QDF_STATUS wmi_unified_dcc_clear_stats(struct wmi_unified *wmi_handle,
695 struct ocb_dcc_clear_stats_param *clear_stats_param);
696
697/**
698 * wmi_unified_dcc_update_ndl() - command to update the NDL data
699 * @wmi_handle: pointer to the wmi handle
700 * @update_ndl_param: pointer to the request parameters
701 *
702 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failures
703 */
704QDF_STATUS wmi_unified_dcc_update_ndl(struct wmi_unified *wmi_handle,
705 struct ocb_dcc_update_ndl_param *update_ndl_param);
706
707/**
708 * wmi_extract_ocb_set_channel_config_resp() - extract status from wmi event
709 * @wmi_handle: wmi handle
710 * @evt_buf: pointer to event buffer
711 * @status: status buffer
712 *
713 * Return: QDF_STATUS_SUCCESS on success
714 */
715QDF_STATUS
716wmi_extract_ocb_set_channel_config_resp(struct wmi_unified *wmi_handle,
717 void *evt_buf,
718 uint32_t *status);
719
720/**
721 * wmi_extract_ocb_tsf_timer() - extract tsf timer from wmi event
722 * @wmi_handle: wmi handle
723 * @evt_buf: pointer to event buffer
724 * @resp: tsf timer
725 *
726 * Return: QDF_STATUS_SUCCESS on success
727 */
728QDF_STATUS wmi_extract_ocb_tsf_timer(struct wmi_unified *wmi_handle,
729 void *evt_buf,
730 struct ocb_get_tsf_timer_response *resp);
731
732/**
733 * wmi_extract_dcc_update_ndl_resp() - extract NDL update from wmi event
734 * @wmi_handle: wmi handle
735 * @evt_buf: pointer to event buffer
736 * @resp: ndl update status
737 *
738 * Return: QDF_STATUS_SUCCESS on success
739 */
740QDF_STATUS wmi_extract_dcc_update_ndl_resp(struct wmi_unified *wmi_handle,
741 void *evt_buf, struct ocb_dcc_update_ndl_response *resp);
742
743/**
744 * wmi_extract_dcc_stats() - extract DCC stats from wmi event
745 * @wmi_handle: wmi handle
746 * @evt_buf: pointer to event buffer
747 * @resp: DCC stats
748 *
749 * Since length of the response is variable, response buffer will be allocated.
750 * The caller must free the response buffer.
751 *
752 * Return: QDF_STATUS_SUCCESS on success
753 */
754QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_handle,
755 void *evt_buf,
756 struct ocb_dcc_get_stats_response **response);
757#endif
Govind Singhe7b800c2016-03-01 15:30:53 +0530758
Govind Singhd7468a52016-03-09 14:32:57 +0530759QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530760 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
761
Govind Singhd7468a52016-03-09 14:32:57 +0530762QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530763 struct thermal_cmd_params *thermal_info);
764
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530765QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
766 struct wmi_peer_rate_report_params *rate_report_params);
767
Govind Singhd7468a52016-03-09 14:32:57 +0530768QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530769 (void *wmi_hdl,
770 uint32_t adapter_1_chan_freq,
771 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
772
Govind Singhd7468a52016-03-09 14:32:57 +0530773QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530774 (void *wmi_hdl,
775 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
776
Govind Singhd7468a52016-03-09 14:32:57 +0530777QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700778 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
779 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530780
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530781#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530782QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530783 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530784#endif
Govind Singhae855362016-03-07 14:24:22 +0530785
Govind Singhd7468a52016-03-09 14:32:57 +0530786QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530787 uint8_t vdev_id, uint32_t max_retries,
788 uint32_t retry_interval);
789
790
Govind Singhd7468a52016-03-09 14:32:57 +0530791QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530792 struct sta_params *params);
793
Govind Singhd7468a52016-03-09 14:32:57 +0530794QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530795 struct wmi_gtx_config *gtx_info);
796
Govind Singhd7468a52016-03-09 14:32:57 +0530797QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Kiran Kumar Lokereaf132c12018-04-06 16:56:47 -0700798 uint8_t vdev_id, bool mu_edca_param,
Vikram Kandukurid2e75802017-06-01 16:47:51 +0530799 struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
Govind Singhae855362016-03-07 14:24:22 +0530800
Govind Singhd7468a52016-03-09 14:32:57 +0530801QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530802 uint8_t vdev_id,
Krunal Soni36f17d42017-11-14 15:42:48 -0800803 struct wmi_probe_resp_params *probe_rsp_info);
Govind Singhae855362016-03-07 14:24:22 +0530804
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530805QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
806 struct set_key_params *key_params);
807
Nachiket Kukadee42cd4b2017-12-20 17:28:29 +0530808#ifdef WLAN_FEATURE_DISA
809/**
810 * wmi_unified_encrypt_decrypt_send_cmd() - send encryptdecrypt cmd to fw
811 * @wmi_hdl: wmi handle
812 * @params: encrypt/decrypt params
813 *
814 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
815 */
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530816QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
Nachiket Kukadee42cd4b2017-12-20 17:28:29 +0530817 struct disa_encrypt_decrypt_req_params *params);
818
819/**
820 * wmi_extract_encrypt_decrypt_resp_params() -
821 * extract encrypt decrypt resp params from event buffer
822 * @wmi_handle: wmi handle
823 * @evt_buf: pointer to event buffer
824 * @resp: encrypt decrypt resp params
825 *
826 * Return: QDF_STATUS_SUCCESS for success or error code
827 */
828QDF_STATUS wmi_extract_encrypt_decrypt_resp_params(void *wmi_hdl,
829 uint8_t *evt_buf,
830 struct disa_encrypt_decrypt_resp_params *resp);
831#endif
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530832
Govind Singhd7468a52016-03-09 14:32:57 +0530833QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Vivek73465282018-03-22 23:27:21 +0530834 uint32_t vdev_id, uint8_t *p2p_ie);
Govind Singhae855362016-03-07 14:24:22 +0530835
836
Govind Singhd7468a52016-03-09 14:32:57 +0530837QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530838 struct gateway_update_req_param *req);
839
Govind Singhd7468a52016-03-09 14:32:57 +0530840QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530841 struct rssi_monitor_param *req);
842
Govind Singhd7468a52016-03-09 14:32:57 +0530843QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530844 struct scan_mac_oui *psetoui);
845
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530846#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530847QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
848 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
849 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530850#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530851
Varun Reddy Yeturu4cae4292017-07-20 09:45:01 -0700852/**
853 * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
854 * @wmi_hdl: wmi handle
855 * @params: Parameters to be configured
856 *
857 * Pass the MAWC(Motion Aided wireless connectivity) related roaming
858 * parameters from the host to the target
859 *
860 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
861 */
862QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
863 struct wmi_mawc_roam_params *params);
864
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530865QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
866 struct roam_offload_scan_rssi_params *roam_req);
867
868QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
869 struct roam_scan_filter_params *roam_req);
870
Sravan Kumar Kairamdcb5f802018-02-15 23:28:34 +0530871#ifdef IPA_OFFLOAD
Govind Singhd7468a52016-03-09 14:32:57 +0530872QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Sravan Kumar Kairamdcb5f802018-02-15 23:28:34 +0530873 struct ipa_uc_offload_control_params *ipa_offload);
874#endif
Govind Singhae855362016-03-07 14:24:22 +0530875
Govind Singhd7468a52016-03-09 14:32:57 +0530876QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530877 const struct plm_req_params *plm);
878
Govind Singhd7468a52016-03-09 14:32:57 +0530879QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530880 const struct plm_req_params *plm,
881 uint32_t *gchannel_list);
882
Govind Singhd7468a52016-03-09 14:32:57 +0530883QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530884
Govind Singh89727882016-04-15 13:58:27 +0530885#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530886QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Abhishek Singhd4184662017-03-03 22:09:07 +0530887 struct pno_scan_req_params *pno);
Govind Singh89727882016-04-15 13:58:27 +0530888#endif
Govind Singhae855362016-03-07 14:24:22 +0530889
Varun Reddy Yeturu4fa519b2017-07-24 16:11:22 -0700890QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
891 struct nlo_mawc_params *params);
892
Rachit Kankaned42762f2018-07-31 12:00:48 +0530893#ifdef WLAN_FEATURE_ROAM_OFFLOAD
Govind Singhd7468a52016-03-09 14:32:57 +0530894QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530895 uint8_t is_add_ts);
896
Rachit Kankaned42762f2018-07-31 12:00:48 +0530897QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
898 uint8_t vdev_id);
899#endif
900
Govind Singhd7468a52016-03-09 14:32:57 +0530901QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530902 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
903 uint8_t addr[IEEE80211_ADDR_LEN]);
904
Govind Singhd7468a52016-03-09 14:32:57 +0530905QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530906 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
907
Govind Singhd7468a52016-03-09 14:32:57 +0530908QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530909 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
910 uint8_t addr[IEEE80211_ADDR_LEN]);
911
Padma, Santhosh Kumard3261902017-03-21 19:09:35 +0530912/**
913 * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
914 * @wmi_hdl: wma handle
915 * @vdev_id: vdev id
916 *
917 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
918 */
919QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
920 uint8_t vdev_id);
921
Govind Singhd7468a52016-03-09 14:32:57 +0530922QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530923
Govind Singhd7468a52016-03-09 14:32:57 +0530924QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530925
Govind Singhd7468a52016-03-09 14:32:57 +0530926QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530927 struct link_status_params *link_status);
928
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530929#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530930QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530931 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
932
Govind Singhd7468a52016-03-09 14:32:57 +0530933QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530934 wmi_mac_addr peer_macaddr);
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530935#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530936
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530937#ifdef WLAN_SUPPORT_GREEN_AP
Govind Singhd7468a52016-03-09 14:32:57 +0530938QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Himanshu Agarwal0d578ff2018-01-10 14:21:53 +0530939 struct wlan_green_ap_egap_params *egap_params);
Govind Singh89727882016-04-15 13:58:27 +0530940#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530941
Govind Singhd7468a52016-03-09 14:32:57 +0530942QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530943 uint32_t cmd, uint32_t value1, uint32_t value2);
944
Naveen Rawat7f70d662017-10-26 18:50:19 -0700945QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
946 uint32_t cookie, uint32_t time);
947
Govind Singhd7468a52016-03-09 14:32:57 +0530948QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530949
Paul Zhang6a857a92017-12-08 16:08:00 +0800950/**
951 * wmi_unified_set_latency_config_cmd()
952 * @wmi_handle: wmi handle
953 * @param: WLM parameters
954 *
955 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
956 */
957QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
958 struct wlm_latency_level_param *param);
959
Govind Singhd7468a52016-03-09 14:32:57 +0530960QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530961
Naveen Rawat90bc8fd2017-05-13 15:56:57 -0700962#ifdef WLAN_FEATURE_CIF_CFR
963/**
964 * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
965 * @wmi_handle: wmi handle
966 * @data_len: len of dma cfg req
967 * @data: dma cfg req
968 *
969 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
970 */
971QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
972 wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
973#endif
974
Govind Singhd7468a52016-03-09 14:32:57 +0530975QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700976 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530977 uint8_t *data);
978
Govind Singhd7468a52016-03-09 14:32:57 +0530979QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530980 bool dfs_phyerr_filter_offload);
981
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530982#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530983QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530984 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530985 uint32_t cmd_id,
986 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530987#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530988
Govind Singhd7468a52016-03-09 14:32:57 +0530989QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530990 uint8_t vdev_id);
991
Govind Singhd7468a52016-03-09 14:32:57 +0530992QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
993QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530994 uint8_t ac);
995
Govind Singhd7468a52016-03-09 14:32:57 +0530996QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530997 struct aggr_add_ts_param *aggr_qos_rsp_msg);
998
Govind Singhd7468a52016-03-09 14:32:57 +0530999QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301000 struct add_ts_param *msg);
1001
Govind Singhd7468a52016-03-09 14:32:57 +05301002QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301003 struct periodic_tx_pattern *
1004 pAddPeriodicTxPtrnParams,
1005 uint8_t vdev_id);
1006
Govind Singhd7468a52016-03-09 14:32:57 +05301007QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301008 uint8_t vdev_id,
1009 uint8_t pattern_id);
1010
Govind Singhd7468a52016-03-09 14:32:57 +05301011QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301012 struct stats_ext_params *preq);
1013
Govind Singhd7468a52016-03-09 14:32:57 +05301014QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301015 struct ext_wow_params *params);
1016
Govind Singhd7468a52016-03-09 14:32:57 +05301017QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301018 struct app_type2_params *appType2Params);
1019
Govind Singhd7468a52016-03-09 14:32:57 +05301020QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301021 uint32_t timer_val);
1022
Govind Singhd7468a52016-03-09 14:32:57 +05301023QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301024 struct nan_req_params *nan_req);
1025
Govind Singhd7468a52016-03-09 14:32:57 +05301026QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Jeff Johnson645f7a12017-10-04 19:19:20 -07001027 struct dhcp_offload_info_params *params);
Govind Singh229bc0d2016-03-07 15:33:31 +05301028
Govind Singhd7468a52016-03-09 14:32:57 +05301029QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +05301030
Govind Singhd7468a52016-03-09 14:32:57 +05301031QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301032 uint32_t reg_dmn, uint16_t regdmn2G,
Rajeev Kumar Sirasanagandlaacf22bf2017-06-06 13:27:56 +05301033 uint16_t regdmn5G, uint8_t ctl2G,
1034 uint8_t ctl5G);
Govind Singh229bc0d2016-03-07 15:33:31 +05301035
Govind Singhd7468a52016-03-09 14:32:57 +05301036QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301037 struct tdls_channel_switch_params *chan_switch_params);
1038
Govind Singhd7468a52016-03-09 14:32:57 +05301039QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301040 void *tdls_param, uint8_t tdls_state);
1041
Govind Singhd7468a52016-03-09 14:32:57 +05301042QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301043 struct tdls_peer_state_params *peerStateParams,
1044 uint32_t *ch_mhz);
1045
Govind Singhd7468a52016-03-09 14:32:57 +05301046QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301047 struct fw_dump_req_param *mem_dump_req);
1048
Govind Singhd7468a52016-03-09 14:32:57 +05301049QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +05301050 struct vdev_ie_info_param *ie_info);
1051
Govind Singhd7468a52016-03-09 14:32:57 +05301052QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +05301053 void *evt_buf);
1054
Govind Singhd7468a52016-03-09 14:32:57 +05301055QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301056 uint8_t *custom_addr);
1057
Govind Singhd7468a52016-03-09 14:32:57 +05301058QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301059 uint8_t *event,
1060 uint32_t len);
1061
Govind Singhd7468a52016-03-09 14:32:57 +05301062QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301063 struct wmi_wifi_start_log *start_log);
1064
Govind Singhd7468a52016-03-09 14:32:57 +05301065QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +05301066
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +05301067QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
1068 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +05301069
Govind Singhd7468a52016-03-09 14:32:57 +05301070QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301071 uint32_t hw_mode_index);
1072
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +05301073QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Srinivas Girigowdac461aef2018-02-15 14:30:05 -08001074 struct policy_mgr_dual_mac_config *msg);
Govind Singh2ae94372016-03-07 16:45:38 +05301075
Govind Singhd7468a52016-03-09 14:32:57 +05301076QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301077 struct flashing_req_params *flashing);
1078
Govind Singhd7468a52016-03-09 14:32:57 +05301079QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301080 struct app_type1_params *app_type1_params);
1081
Govind Singhd7468a52016-03-09 14:32:57 +05301082QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301083 struct ssid_hotlist_request_params *request);
1084
Govind Singhd7468a52016-03-09 14:32:57 +05301085QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301086 struct wmi_unit_test_cmd *wmi_utest);
1087
Govind Singhd7468a52016-03-09 14:32:57 +05301088QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301089 struct wmi_roam_invoke_cmd *roaminvoke,
1090 uint32_t ch_hz);
1091
Govind Singhd7468a52016-03-09 14:32:57 +05301092QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301093 uint32_t command, uint32_t vdev_id);
1094
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301095#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +05301096QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Himanshu Agarwalf9524e12017-09-28 11:51:35 +05301097 struct ap_profile_params *ap_profile);
Govind Singh89727882016-04-15 13:58:27 +05301098#endif
Govind Singh2ae94372016-03-07 16:45:38 +05301099
Govind Singhd7468a52016-03-09 14:32:57 +05301100QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301101 uint32_t scan_period,
1102 uint32_t scan_age,
1103 uint32_t vdev_id);
1104
Govind Singhd7468a52016-03-09 14:32:57 +05301105QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301106 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -07001107 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +05301108 uint8_t list_type, uint32_t vdev_id);
1109
Govind Singhd7468a52016-03-09 14:32:57 +05301110QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +05301111 uint32_t vdev_id,
1112 int32_t rssi_change_thresh,
1113 uint32_t bcn_rssi_weight,
1114 uint32_t hirssi_delay_btw_scans);
1115
Kapil Guptaf6eb7312017-02-24 15:50:03 +05301116/**
1117 * wmi_unified_set_per_roam_config() - set PER roam config in FW
1118 * @wmi_hdl: wmi handle
1119 * @req_buf: per roam config request buffer
1120 *
1121 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1122 */
1123QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
1124 struct wmi_per_roam_config_req *req_buf);
1125
Nachiket Kukade74cce662018-05-25 14:52:55 +05301126#ifdef FEATURE_WLAN_APF
Dustin Brown4def3162017-01-13 15:24:07 -08001127/**
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301128 * wmi_unified_set_active_apf_mode_cmd() - config active APF mode in FW
Nachiket Kukade74cce662018-05-25 14:52:55 +05301129 * @wmi: the WMI handle
Dustin Brown4def3162017-01-13 15:24:07 -08001130 * @vdev_id: the Id of the vdev to apply the configuration to
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301131 * @ucast_mode: the active APF mode to configure for unicast packets
1132 * @mcast_bcast_mode: the active APF mode to configure for multicast/broadcast
Dustin Brown4def3162017-01-13 15:24:07 -08001133 * packets
1134 */
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301135QDF_STATUS
Nachiket Kukade74cce662018-05-25 14:52:55 +05301136wmi_unified_set_active_apf_mode_cmd(wmi_unified_t wmi, uint8_t vdev_id,
Nachiket Kukadee8ce8622018-05-22 12:17:15 +05301137 enum wmi_host_active_apf_mode ucast_mode,
1138 enum wmi_host_active_apf_mode
1139 mcast_bcast_mode);
Dustin Brown4def3162017-01-13 15:24:07 -08001140
Nachiket Kukade74cce662018-05-25 14:52:55 +05301141/**
1142 * wmi_unified_send_apf_enable_cmd() - send apf enable/disable cmd
1143 * @wmi: wmi handle
1144 * @vdev_id: VDEV id
1145 * @enable: true: enable, false: disable
1146 *
1147 * This function passes the apf enable 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_enable_cmd(wmi_unified_t wmi,
1152 uint32_t vdev_id, bool enable);
1153
1154/**
1155 * wmi_unified_send_apf_write_work_memory_cmd() - send cmd to write into the APF
1156 * work memory.
1157 * @wmi: wmi handle
1158 * @write_params: parameters and buffer pointer for the write
1159 *
1160 * This function passes the write apf work mem command to fw
1161 *
1162 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1163 */
1164QDF_STATUS wmi_unified_send_apf_write_work_memory_cmd(wmi_unified_t wmi,
1165 struct wmi_apf_write_memory_params *write_params);
1166
1167/**
1168 * wmi_unified_send_apf_read_work_memory_cmd() - send cmd to read part of APF
1169 * work memory
1170 * @wmi: wmi handle
1171 * @read_params: contains relative address and length to read from
1172 *
1173 * This function passes the read apf work mem command to fw
1174 *
1175 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1176 */
1177QDF_STATUS wmi_unified_send_apf_read_work_memory_cmd(wmi_unified_t wmi,
1178 struct wmi_apf_read_memory_params *read_params);
1179
1180/**
1181 * wmi_extract_apf_read_memory_resp_event() - exctract read mem resp event
1182 * @wmi: wmi handle
1183 * @evt_buf: Pointer to the event buffer
1184 * @resp: pointer to memory to extract event parameters into
1185 *
1186 * This function exctracts read mem response event into the given structure ptr
1187 *
1188 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1189 */
1190QDF_STATUS
1191wmi_extract_apf_read_memory_resp_event(wmi_unified_t wmi, void *evt_buf,
1192 struct wmi_apf_read_memory_resp_event_params
1193 *read_mem_evt);
1194#endif /* FEATURE_WLAN_APF */
1195
Govind Singh89727882016-04-15 13:58:27 +05301196QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
1197 uint8_t macaddr[IEEE80211_ADDR_LEN],
1198 struct stats_request_params *param);
1199
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301200QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
1201
1202QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
1203
1204QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
1205 uint32_t value);
1206
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301207QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +05301208 struct btcoex_cfg_params *param);
1209
1210QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
1211 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301212
Sathish Kumar612d0c22017-01-19 14:57:37 +05301213QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
1214 coex_ver_cfg_t *param);
1215
Sathish Kumar125754e2017-04-24 11:36:00 +05301216QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
1217 struct coex_config_params *param);
1218
Govind Singh89727882016-04-15 13:58:27 +05301219QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
1220 struct fips_params *param);
1221
1222QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
1223 struct wlan_profile_params *param);
1224
1225QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
1226 struct wlan_profile_params *param);
1227
1228QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
1229 struct channel_param *param);
1230
Govind Singh89727882016-04-15 13:58:27 +05301231QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
1232 struct ratepwr_table_params *param);
1233
1234QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
1235
Govind Singh89727882016-04-15 13:58:27 +05301236QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
1237 struct ratepwr_chainmsk_params *param);
1238
1239QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1240 struct macaddr_params *param);
1241
1242QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1243
1244QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1245
1246QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1247 struct acparams_params *param);
1248
1249QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1250 struct vap_dscp_tid_map_params *param);
1251
1252QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1253 struct proxy_ast_reserve_params *param);
1254
Jeevan Kukkalli28e8a162017-06-16 18:07:28 +05301255/**
1256 * wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
1257 * @param wmi_hdl : handle to WMI.
1258 * @param param : pointer to hold bridge mac addr param
1259 *
1260 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1261 */
1262QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
1263 struct set_bridge_mac_addr_params *param);
1264
1265
Govind Singh89727882016-04-15 13:58:27 +05301266QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1267
1268QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1269
1270QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1271
Govind Singh89727882016-04-15 13:58:27 +05301272QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1273 struct smart_ant_enable_tx_feedback_params *param);
1274
1275QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1276 struct vdev_spectral_configure_params *param);
1277
1278QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1279 struct vdev_spectral_enable_params *param);
1280
1281QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1282 struct bss_chan_info_request_params *param);
1283
1284QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1285 struct thermal_mitigation_params *param);
1286
Govind Singh89727882016-04-15 13:58:27 +05301287QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1288 struct set_fwtest_params *param);
1289
Sathish Kumar6190e772017-11-08 14:49:58 +05301290/**
1291 * wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
1292 * size command
1293 * @param wmi_hdl : handle to WMI.
1294 * @param param : pointer to hold custom aggr size param
1295 *
1296 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1297 */
1298QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
1299 struct set_custom_aggr_size_params *param);
Govind Singh89727882016-04-15 13:58:27 +05301300
Venkateswara Swamy Bandaru81f40dc2017-12-22 17:16:19 +05301301/**
1302 * wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
1303 * @param wmi_hdl : handle to WMI.
1304 * @param param : pointer to hold set qdepth thresh param
1305 *
1306 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1307 */
1308QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
1309 struct set_qdepth_thresh_params *param);
1310
Govind Singh89727882016-04-15 13:58:27 +05301311QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1312 struct pdev_set_regdomain_params *param);
1313
Govind Singh89727882016-04-15 13:58:27 +05301314QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1315 struct set_beacon_filter_params *param);
1316
1317QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1318 struct remove_beacon_filter_params *param);
1319
1320QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1321 uint8_t macaddr[IEEE80211_ADDR_LEN],
1322 struct addba_clearresponse_params *param);
1323
1324QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1325 uint8_t macaddr[IEEE80211_ADDR_LEN],
1326 struct addba_send_params *param);
1327
1328QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1329 uint8_t macaddr[IEEE80211_ADDR_LEN],
1330 struct delba_send_params *param);
1331
1332QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1333 uint8_t macaddr[IEEE80211_ADDR_LEN],
1334 struct addba_setresponse_params *param);
1335
1336QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1337 uint8_t macaddr[IEEE80211_ADDR_LEN],
1338 struct singleamsdu_params *param);
1339
Govind Singh89727882016-04-15 13:58:27 +05301340QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1341 struct mu_scan_params *param);
1342
1343QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1344 struct lteu_config_params *param);
1345
1346QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1347 struct set_ps_mode_params *param);
1348
1349QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05301350 struct wmi_init_cmd_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301351
1352bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1353
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301354/**
1355 * wmi_save_service_bitmap() - save service bitmap
1356 * @wmi_handle: wmi handle
1357 * @param evt_buf: pointer to event buffer
1358 *
1359 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1360 */
Rajeev Kumar5d8497b2017-02-12 02:12:17 -08001361QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1362 void *bitmap_buf);
Govind Singh89727882016-04-15 13:58:27 +05301363
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301364/**
1365 * wmi_save_ext_service_bitmap() - save extended service bitmap
1366 * @wmi_handle: wmi handle
1367 * @param evt_buf: pointer to event buffer
1368 *
1369 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1370 */
1371QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
1372 void *bitmap_buf);
1373
Govind Singh89727882016-04-15 13:58:27 +05301374QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1375
1376QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001377 void *evt_buf,
1378 struct wlan_psoc_target_capability_info *ev);
Govind Singh89727882016-04-15 13:58:27 +05301379
1380QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001381 struct wlan_psoc_hal_reg_capability *hal_reg_cap);
Govind Singh89727882016-04-15 13:58:27 +05301382
1383host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1384 void *evt_buf, uint8_t *num_entries);
1385
1386uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1387
1388QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1389 void *ev, uint8_t *macaddr);
1390
Manoj Ekbote66496392017-07-09 23:28:56 -07001391wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
1392 uint8_t *num_mac_addr);
1393
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05301394/**
1395 * wmi_extract_ready_params() - Extract data from ready event apart from
1396 * status, macaddr and version.
1397 * @wmi_handle: Pointer to WMI handle.
1398 * @evt_buf: Pointer to Ready event buffer.
1399 * @ev_param: Pointer to host defined struct to copy the data from event.
1400 *
1401 * Return: QDF_STATUS_SUCCESS on success.
1402 */
1403QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
1404 void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1405
Govind Singh89727882016-04-15 13:58:27 +05301406QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1407 void *ev, struct wmi_host_fw_ver *fw_ver);
1408
1409QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1410 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1411
1412QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1413
1414uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
Rajeev Kumar45fdf7f2017-01-25 12:46:21 -08001415 void *evt_b, uint32_t *len);
Govind Singh89727882016-04-15 13:58:27 +05301416
1417QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1418 wmi_host_ext_resource_config *ext_cfg);
1419
Govind Singh89727882016-04-15 13:58:27 +05301420QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1421 struct rtt_meas_req_test_params *param);
1422
1423QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1424 struct rtt_meas_req_params *param);
1425
1426QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1427 struct rtt_keepalive_req_params *param);
1428
1429QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1430 struct lci_set_params *param);
1431
1432QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1433 struct lcr_set_params *param);
1434
1435QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1436 struct periodic_chan_stats_params *param);
1437
Govind Singh89727882016-04-15 13:58:27 +05301438/* Extract APIs */
1439
Govind Singh89727882016-04-15 13:58:27 +05301440QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301441 struct wmi_host_fips_event_param *param);
1442
Govind Singh89727882016-04-15 13:58:27 +05301443QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
Himanshu Agarwal53d526b2017-01-05 14:23:18 +05301444 struct mgmt_rx_event_params *hdr, uint8_t **bufp);
Govind Singh89727882016-04-15 13:58:27 +05301445
Govind Singh89727882016-04-15 13:58:27 +05301446QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1447 wmi_host_roam_event *ev);
1448
1449QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +05301450 struct scan_event *param);
Govind Singh89727882016-04-15 13:58:27 +05301451
Frank Liu0ba573b2017-03-15 17:51:43 +08001452#ifdef CONVERGED_TDLS_ENABLE
1453/**
1454 * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1455 * @wmi_handle: wmi handle
1456 * @param evt_buf: pointer to event buffer
1457 * @param param: Pointer to hold vdev tdls param
1458 *
1459 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1460 */
1461QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1462 struct tdls_event_info *param);
1463#endif
1464
Govind Singh89727882016-04-15 13:58:27 +05301465QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1466 wmi_host_mu_report_event *param);
1467
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301468QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1469 uint8_t idx, wmi_host_mu_db_entry *param);
1470
1471QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1472 wmi_host_peer_txmu_cnt_event *param);
1473
1474QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1475 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1476
Anirban Sirkhell08c01932017-08-25 16:01:50 +05301477QDF_STATUS
1478wmi_extract_esp_estimate_ev_param(void *wmi_hdl, void *evt_buf,
1479 struct esp_estimation_event *param);
1480
Govind Singh89727882016-04-15 13:58:27 +05301481QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1482 void *evt_buf, uint32_t *gpio_num);
1483
1484QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
Kiran Venkatappa3f061a92017-02-08 14:57:16 +05301485 void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301486
Govind Singh89727882016-04-15 13:58:27 +05301487QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1488 void *evt_buf,
1489 wmi_host_pdev_generic_buffer_event *param);
1490
Wu Gao07ba6b42017-03-13 20:17:34 +08001491#ifdef CONVERGED_P2P_ENABLE
1492QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1493 void *evt_buf, struct p2p_lo_event *param);
1494
1495QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1496 void *evt_buf, struct p2p_noa_info *param);
1497#endif
1498
Govind Singh89727882016-04-15 13:58:27 +05301499QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1500 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1501
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001502QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1503 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1504
Govind Singh89727882016-04-15 13:58:27 +05301505QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1506 wmi_host_rtt_event_hdr *ev);
1507
1508QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1509 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1510 uint16_t hdump_len);
1511
1512QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1513 wmi_host_rtt_error_report_event *ev);
1514
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001515QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1516 uint32_t index, wmi_host_chan_stats *chan_stats);
1517
Govind Singh89727882016-04-15 13:58:27 +05301518QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi2f54fbb2017-04-19 16:57:31 +05301519 uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
Govind Singh89727882016-04-15 13:58:27 +05301520
1521QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1522 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1523
1524QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1525 uint16_t datalen, uint16_t *buf_offset,
1526 wmi_host_phyerr_t *phyerr);
1527
1528QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1529 uint16_t datalen, uint16_t *buf_offset,
1530 wmi_host_phyerr_t *phyerr);
1531
1532QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1533 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1534
1535QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1536 wmi_host_wlan_profile_ctx_t *profile_ctx);
1537
Govind Singh41da3152016-05-06 20:20:25 +05301538QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301539 wmi_host_wlan_profile_t *profile_data);
1540
Govind Singh89727882016-04-15 13:58:27 +05301541QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1542 wmi_host_stats_event *stats_param);
1543
1544QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1545 uint32_t index,
1546 wmi_host_pdev_stats *pdev_stats);
1547
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07001548QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
1549 wmi_unit_test_event *unit_test, uint32_t maxspace);
1550
Govind Singh89727882016-04-15 13:58:27 +05301551QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1552 uint32_t index,
1553 wmi_host_pdev_ext_stats *pdev_ext_stats);
1554
1555QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1556 uint32_t index,
1557 wmi_host_peer_extd_stats *peer_extd_stats);
1558
1559QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1560 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1561
Govind Singh89727882016-04-15 13:58:27 +05301562QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1563 uint32_t index, wmi_host_peer_stats *peer_stats);
1564
1565QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1566 wmi_host_tx_data_traffic_ctrl_event *ev);
1567
1568QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1569 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1570
Naveen Rawat9734fa92018-04-12 08:17:55 -07001571QDF_STATUS wmi_extract_per_chain_rssi_stats(void *wmi_hdl, void *evt_buf,
1572 uint32_t index, struct wmi_host_per_chain_rssi_stats *rssi_stats);
1573
Govind Singh89727882016-04-15 13:58:27 +05301574QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1575 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301576
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05301577QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
1578 uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
1579
Chaithanya Garrepalli140a0532018-01-18 14:19:41 +05301580/**
1581 * wmi_extract_vdev_nac_rssi_stats() - extract NAC_RSSI stats from event
1582 * @wmi_handle: wmi handle
1583 * @param evt_buf: pointer to event buffer
1584 * @param vdev_extd_stats: Pointer to hold nac rssi stats
1585 *
1586 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1587 */
1588QDF_STATUS wmi_extract_vdev_nac_rssi_stats(void *wmi_hdl, void *evt_buf,
1589 struct wmi_host_vdev_nac_rssi_event *vdev_nac_rssi_stats);
1590
Govind Singhc10bde82016-05-02 17:59:24 +05301591QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1592 struct wmi_power_dbg_params *param);
Sathish Kumar907a7462017-02-27 10:35:40 +05301593
Jeff Johnsonefb43392017-12-14 15:50:16 -08001594/**
1595 * wmi_unified_send_sar_limit_cmd() - send sar limit cmd to fw
1596 * @wmi_hdl: wmi handle
1597 * @params: sar limit command params
1598 *
1599 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1600 */
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001601QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
Jeff Johnsonefb43392017-12-14 15:50:16 -08001602 struct sar_limit_cmd_params *params);
1603
1604/**
1605 * wmi_unified_get_sar_limit_cmd() - request current SAR limits from FW
1606 * @wmi_hdl: wmi handle
1607 *
1608 * Return: QDF_STATUS_SUCCESS for success or error code
1609 */
1610QDF_STATUS wmi_unified_get_sar_limit_cmd(void *wmi_hdl);
1611
1612/**
1613 * wmi_unified_extract_sar_limit_event() - extract SAR limits from FW event
1614 * @wmi_hdl: wmi handle
1615 * @evt_buf: event buffer received from firmware
1616 * @event: SAR limit event which is to be populated by data extracted from
1617 * the @evt_buf buffer
1618 *
1619 * Return: QDF_STATUS_SUCCESS for success or error code
1620 */
1621QDF_STATUS wmi_unified_extract_sar_limit_event(void *wmi_hdl,
1622 uint8_t *evt_buf,
1623 struct sar_limit_event *event);
1624
Kabilan Kannana348b622018-06-21 16:55:47 -07001625/**
1626 * wmi_unified_extract_sar2_result_event() - extract SAR limits from FW event
1627 * @handle: wmi handle
1628 * @event: event buffer received from firmware
1629 * @len: length of the event buffer
1630 *
1631 * Return: QDF_STATUS_SUCCESS for success or error code
1632 */
1633QDF_STATUS wmi_unified_extract_sar2_result_event(void *handle,
1634 uint8_t *event, uint32_t len);
1635
1636/**
1637 * wmi_extract_sar_cap_service_ready_ext() - extract SAR cap from
1638 * FW service ready event
1639 * @wmi_hdl: wmi handle
1640 * @evt_buf: event buffer received from firmware
1641 * @ext_param: extended target info
1642 *
1643 * Return: QDF_STATUS_SUCCESS for success or error code
1644 */
1645QDF_STATUS wmi_extract_sar_cap_service_ready_ext(
1646 void *wmi_hdl,
1647 uint8_t *evt_buf,
1648 struct wlan_psoc_host_service_ext_param *ext_param);
1649
Gupta, Kapil7b768002016-04-25 19:14:19 +05301650QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1651 struct wmi_adaptive_dwelltime_params *
1652 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301653QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1654 struct set_fwtest_params *wmi_fwtest);
1655
Leo Chang8184e9c2016-09-28 13:43:36 -07001656QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1657 struct rx_reorder_queue_setup_params *param);
1658QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1659 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301660
1661QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001662 struct wlan_psoc_host_service_ext_param *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301663QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1664 void *wmi_hdl,
1665 uint8_t *evt_buf, uint8_t hw_mode_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001666 struct wlan_psoc_host_hw_mode_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301667QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1668 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301669 uint8_t *evt_buf,
1670 uint8_t hw_mode_id,
1671 uint8_t phy_id,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001672 struct wlan_psoc_host_mac_phy_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301673QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1674 void *wmi_hdl,
1675 uint8_t *evt_buf, uint8_t phy_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001676 struct wlan_psoc_host_hal_reg_capabilities_ext *param);
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05301677
1678/**
1679 * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
1680 * capability received through
1681 * extended service ready event
1682 * @wmi_hdl: WMI handle
1683 * @evt_buf: Event buffer
1684 * @idx: Index of the module for which capability is received
1685 * @param: Pointer to direct buffer rx ring cap struct
1686 *
1687 * Return: QDF status of operation
1688 */
1689QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
1690 void *wmi_hdl,
1691 uint8_t *evt_buf, uint8_t idx,
1692 struct wlan_psoc_host_dbr_ring_caps *param);
1693
Sathish Kumar617535c2017-01-24 17:51:26 +05301694QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1695 uint8_t *evt_buf,
1696 struct wmi_host_pdev_utf_event *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301697
Kiran Venkatappa3d514982017-02-28 14:19:17 +05301698QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1699 uint8_t *evt_buf,
1700 struct wmi_host_pdev_qvit_event *param);
1701
Vikram Kandukuric83feb62017-03-07 18:40:13 +05301702QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1703 struct wlan_psoc_host_chainmask_table *chainmask_table);
Arif Hussain85604fb2017-01-07 18:21:55 -08001704/**
1705 * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1706 * @wmi_handle: wmi handle
1707 * @pdev_id: pdev id
1708 *
1709 * Return: QDF_STATUS
1710 */
1711QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1712 uint32_t pdev_id);
1713
1714/**
1715 * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
1716 * @wmi_handle: wmi handle
1717 * @pdev_id: pdev id
1718 *
1719 * Return: QDF_STATUS
1720 */
1721QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
1722 uint32_t pdev_id);
Dustin Browne58fbc72017-04-03 17:00:07 -07001723
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001724QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1725 struct set_country *param);
Rajeev Kumar Sirasanagandla9d7a69f2017-09-18 16:47:52 +05301726
1727#ifdef WLAN_FEATURE_ACTION_OUI
1728/**
1729 * wmi_unified_send_action_oui_cmd() - send action oui cmd to fw
1730 * @wmi_hdl: wma handle
1731 * @req: wmi action oui message to be send
1732 *
1733 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1734 */
1735QDF_STATUS
1736wmi_unified_send_action_oui_cmd(void *wmi_hdl,
1737 struct action_oui_request *req);
1738#endif /* WLAN_FEATURE_ACTION_OUI */
1739
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301740/*
1741 * wmi_unified_set_del_pmkid_cache() - set delete PMKID
1742 * @wmi_hdl: wma handle
1743 * @pmksa: pointer to pmk cache entry
1744 *
1745 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1746 */
1747QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
1748 struct wmi_unified_pmk_cache *pmksa);
1749
1750#if defined(WLAN_FEATURE_FILS_SK)
1751/*
1752 * wmi_unified_roam_send_hlp_cmd() -send HLP command info
1753 * @wmi_hdl: wma handle
1754 * @req_buf: Pointer to HLP params
1755 *
1756 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1757 */
1758QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
1759 struct hlp_params *req_buf);
1760#endif
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001761
Rajeev Kumar Sirasanagandlacddf6fe2016-11-22 21:28:54 +05301762/**
1763 * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
1764 * @wmi_hdl: wma handle
1765 * @get_rcpi_param: rcpi params
1766 *
1767 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1768 */
1769QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
1770 struct rcpi_req *get_rcpi_param);
1771
1772/**
1773 * wmi_extract_rcpi_response_event - api to extract RCPI event params
1774 * @wmi_handle: wma handle
1775 * @evt_buf: pointer to event buffer
1776 * @res: pointer to hold rcpi response from firmware
1777 *
1778 * Return: QDF_STATUS_SUCCESS for successful event parse
1779 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1780 */
1781QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
1782 struct rcpi_res *res);
1783
Dustin Browne58fbc72017-04-03 17:00:07 -07001784#ifdef WMI_INTERFACE_EVENT_LOGGING
1785void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
1786 qdf_abstract_print *print, void *print_priv);
1787
1788void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1789 qdf_abstract_print *print, void *print_priv);
1790
1791void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
1792 qdf_abstract_print *print, void *print_priv);
1793
1794void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1795 qdf_abstract_print *print, void *print_priv);
1796
1797void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
1798 qdf_abstract_print *print, void *print_priv);
1799
1800void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
1801 qdf_abstract_print *print, void *print_priv);
1802
1803void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
1804 qdf_abstract_print *print, void *print_priv);
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001805
Dustin Browne58fbc72017-04-03 17:00:07 -07001806#endif /* WMI_INTERFACE_EVENT_LOGGING */
1807
Nitesh Shahfb9e88b2017-05-22 15:49:00 +05301808QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
1809 struct wmi_dbs_scan_sel_params *wmi_param);
Ganesh Kondabattini20b086b2017-07-10 11:54:11 +05301810
1811QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
1812 struct wmi_limit_off_chan_param *wmi_param);
Anurag Chouhanc1705422017-09-11 14:56:30 +05301813QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
1814 struct set_arp_stats *req_buf);
1815QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
1816 struct get_arp_stats *req_buf);
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05301817
1818/**
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05301819 * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
1820 * wds entries from FW
Arif Hussain2cfde1d2017-12-27 16:23:45 -08001821 * @wmi_hdl: wmi handle
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05301822 *
1823 * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
1824 *
1825 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
1826 */
1827
1828QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
1829
1830/**
1831 * wmi_extract_wds_entry - api to extract wds entry
Arif Hussain2cfde1d2017-12-27 16:23:45 -08001832 * @wmi_hdl: wmi handle
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05301833 * @evt_buf: pointer to event buffer
1834 * @wds_entry: wds entry
1835 * @idx: index to point wds entry in event buffer
1836 *
1837 * Return: QDF_STATUS_SUCCESS for successful event parse
1838 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1839 */
1840
1841QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
1842 struct wdsentry *wds_entry, u_int32_t idx);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001843
1844#ifdef WLAN_FEATURE_NAN_CONVERGENCE
1845/**
1846 * wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001847 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001848 * @req: pointer to request buffer
1849 *
1850 * Return: status of operation
1851 */
1852QDF_STATUS wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
1853 struct nan_datapath_initiator_req *req);
1854
1855/**
1856 * wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001857 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001858 * @req: pointer to request buffer
1859 *
1860 * Return: status of operation
1861 */
1862QDF_STATUS wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
1863 struct nan_datapath_responder_req *req);
1864
1865/**
1866 * wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001867 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001868 * @req: pointer to request buffer
1869 *
1870 * Return: status of operation
1871 */
1872QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
1873 struct nan_datapath_end_req *req);
1874
1875/**
1876 * wmi_extract_ndp_initiator_rsp - api to extract initiator rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001877 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001878 * @data: event buffer
1879 * @rsp: buffer to populate
1880 *
1881 * Return: status of operation
1882 */
1883QDF_STATUS wmi_extract_ndp_initiator_rsp(wmi_unified_t wmi_handle,
Naveen Rawat1d095b02018-02-02 15:13:05 -08001884 uint8_t *data, struct nan_datapath_initiator_rsp *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001885
1886/**
1887 * wmi_extract_ndp_ind - api to extract ndp indication struct from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001888 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001889 * @data: event buffer
1890 * @ind: buffer to populate
1891 *
1892 * Return: status of operation
1893 */
1894QDF_STATUS wmi_extract_ndp_ind(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08001895 struct nan_datapath_indication_event *ind);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001896
1897/**
1898 * wmi_extract_ndp_confirm - api to extract ndp confim struct from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001899 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001900 * @data: event buffer
1901 * @ev: buffer to populate
1902 *
1903 * Return: status of operation
1904 */
1905QDF_STATUS wmi_extract_ndp_confirm(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08001906 struct nan_datapath_confirm_event *ev);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001907
1908/**
1909 * wmi_extract_ndp_responder_rsp - api to extract responder rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001910 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001911 * @data: event buffer
1912 * @rsp: buffer to populate
1913 *
1914 * Return: status of operation
1915 */
1916QDF_STATUS wmi_extract_ndp_responder_rsp(wmi_unified_t wmi_handle,
Naveen Rawat1d095b02018-02-02 15:13:05 -08001917 uint8_t *data, struct nan_datapath_responder_rsp *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001918
1919/**
1920 * wmi_extract_ndp_end_rsp - api to extract ndp end rsp from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001921 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001922 * @data: event buffer
1923 * @rsp: buffer to populate
1924 *
1925 * Return: status of operation
1926 */
1927QDF_STATUS wmi_extract_ndp_end_rsp(wmi_unified_t wmi_handle, uint8_t *data,
Naveen Rawat1d095b02018-02-02 15:13:05 -08001928 struct nan_datapath_end_rsp_event *rsp);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001929
1930/**
1931 * wmi_extract_ndp_end_ind - api to extract ndp end indication from even buffer
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001932 * @wmi_hdl: wmi handle
Naveen Rawat79a787c2017-12-14 13:24:31 -08001933 * @data: event buffer
1934 * @ind: buffer to populate
1935 *
1936 * Return: status of operation
1937 */
1938QDF_STATUS wmi_extract_ndp_end_ind(wmi_unified_t wmi_handle, uint8_t *data,
1939 struct nan_datapath_end_indication_event **ind);
Naveen Rawat76cbf2f2018-01-09 17:54:41 -08001940
1941/**
1942 * wmi_extract_ndp_sch_update - api to extract ndp sch update from event buffer
1943 * @wmi_hdl: wmi handle
1944 * @data: event buffer
1945 * @ind: buffer to populate
1946 *
1947 * Return: status of operation
1948 */
1949QDF_STATUS wmi_extract_ndp_sch_update(wmi_unified_t wmi_handle, uint8_t *data,
1950 struct nan_datapath_sch_update_event *ind);
Naveen Rawat79a787c2017-12-14 13:24:31 -08001951#endif
Subrat Mishra7c9427e2017-09-27 14:41:20 +05301952
yeshwanth sriram guntuka230af892017-09-01 17:56:07 +05301953/**
1954 * wmi_unified_send_btm_config() - Send BTM config to fw
1955 * @wmi_hdl: wmi handle
1956 * @params: pointer to wmi_btm_config
1957 *
1958 * Return: QDF_STATUS
1959 */
1960QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
1961 struct wmi_btm_config *params);
Arif Hussain2cfde1d2017-12-27 16:23:45 -08001962
1963/**
1964 * wmi_unified_send_obss_detection_cfg_cmd() - WMI function to send obss
1965 * detection configuration to FW.
1966 * @wmi_hdl: wmi handle
1967 * @cfg: obss detection configuration
1968 *
1969 * Send WMI_SAP_OBSS_DETECTION_CFG_CMDID parameters to fw.
1970 *
1971 * Return: QDF_STATUS
1972 */
1973
1974QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
1975 struct wmi_obss_detection_cfg_param *cfg);
Arif Hussainf9f26b52018-01-12 13:15:04 -08001976
1977/**
1978 * wmi_unified_extract_obss_detection_info() - WMI function to extract obss
1979 * detection info from FW.
1980 * @wmi_hdl: wmi handle
1981 * @data: event data from firmware
1982 * @info: Pointer to hold obss detection info
1983 *
1984 * This function is used to extract obss info from firmware.
1985 *
1986 * Return: QDF_STATUS
1987 */
1988
1989QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
1990 uint8_t *data,
1991 struct wmi_obss_detect_info
1992 *info);
Arif Hussainb4da3472018-01-22 01:19:36 -08001993/**
1994 * wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
1995 * color change enable to FW.
1996 * @wmi_hdl: wmi handle
1997 * @vdev_id: vdev ID
1998 * @enable: enable or disable color change handeling within firmware
1999 *
2000 * Send WMI_BSS_COLOR_CHANGE_ENABLE_CMDID parameters to fw,
2001 * thereby firmware updates bss color when AP announces bss color change.
2002 *
2003 * Return: QDF_STATUS
2004 */
2005
2006QDF_STATUS wmi_unified_send_bss_color_change_enable_cmd(void *wmi_hdl,
2007 uint32_t vdev_id,
2008 bool enable);
2009
2010/**
2011 * wmi_unified_send_obss_color_collision_cfg_cmd() - WMI function to send bss
2012 * color collision detection configuration to FW.
2013 * @wmi_hdl: wmi handle
2014 * @cfg: obss color collision detection configuration
2015 *
2016 * Send WMI_OBSS_COLOR_COLLISION_DET_CONFIG_CMDID parameters to fw.
2017 *
2018 * Return: QDF_STATUS
2019 */
2020
2021QDF_STATUS wmi_unified_send_obss_color_collision_cfg_cmd(void *wmi_hdl,
2022 struct wmi_obss_color_collision_cfg_param *cfg);
2023
2024/**
2025 * wmi_unified_extract_obss_color_collision_info() - WMI function to extract
2026 * obss color collision info from FW.
2027 * @wmi_hdl: wmi handle
2028 * @data: event data from firmware
2029 * @info: Pointer to hold bss color collision info
2030 *
2031 * This function is used to extract bss collision info from firmware.
2032 *
2033 * Return: QDF_STATUS
2034 */
2035
2036QDF_STATUS wmi_unified_extract_obss_color_collision_info(void *wmi_hdl,
2037 uint8_t *data, struct wmi_obss_color_collision_info *info);
Arif Hussainf9f26b52018-01-12 13:15:04 -08002038
Himanshu Agarwal3f5d65a2018-01-24 22:24:17 +05302039#ifdef WLAN_SUPPORT_GREEN_AP
2040QDF_STATUS wmi_extract_green_ap_egap_status_info(
2041 void *wmi_hdl, uint8_t *evt_buf,
2042 struct wlan_green_ap_egap_status_info *egap_status_info_params);
2043#endif
2044
Vignesh Viswanathan51994e32018-01-18 19:06:40 +05302045/**
Rajeev Kumar Sirasanagandladfa24862018-03-02 21:12:16 +05302046 * wmi_unified_send_roam_scan_stats_cmd() - Wrapper to request roam scan stats
2047 * @wmi_hdl: wmi handle
2048 * @params: request params
2049 *
2050 * This function is used to send the roam scan stats request command to
2051 * firmware.
2052 *
2053 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2054 */
2055QDF_STATUS
2056wmi_unified_send_roam_scan_stats_cmd(void *wmi_hdl,
2057 struct wmi_roam_scan_stats_req *params);
2058
2059/**
2060 * wmi_extract_roam_scan_stats_res_evt() - API to extract roam scan stats res
2061 * @wmi: wmi handle
2062 * @evt_buf: pointer to the event buffer
2063 * @vdev_id: output pointer to hold vdev id
2064 * @res_param: output pointer to hold extracted memory
2065 *
2066 * Return: QDF_STATUS
2067 */
2068QDF_STATUS
2069wmi_extract_roam_scan_stats_res_evt(wmi_unified_t wmi, void *evt_buf,
2070 uint32_t *vdev_id,
2071 struct wmi_roam_scan_stats_res **res_param);
Gyanranjan Hazarika97b1c5a2018-10-04 11:26:20 -07002072
2073/**
2074 * wmi_extract_offload_bcn_tx_status_evt() - API to extract bcn tx status event
2075 * @wmi: wmi handle
2076 * @evt_buf: pointer to the event buffer
2077 * @vdev_id: output pointer to hold vdev id
2078 * @tx_status: output pointer to hold bcn tx status
2079 *
2080 * Return: QDF_STATUS
2081 */
2082QDF_STATUS
2083wmi_extract_offload_bcn_tx_status_evt(void *wmi_hdl, void *evt_buf,
2084 uint32_t *vdev_id, uint32_t *tx_status);
Rajeev Kumar Sirasanagandladfa24862018-03-02 21:12:16 +05302085/**
Vignesh Viswanathan51994e32018-01-18 19:06:40 +05302086 * wmi_unified_offload_11k_cmd() - send 11k offload command
2087 * @wmi_hdl: wmi handle
2088 * @params: 11k offload params
2089 *
2090 * This function passes the 11k offload command params to FW
2091 *
2092 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2093 */
2094QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
2095 struct wmi_11k_offload_params *params);
2096/**
2097 * wmi_unified_invoke_neighbor_report_cmd() - send invoke neighbor report cmd
2098 * @wmi_hdl: wmi handle
2099 * @params: invoke neighbor report params
2100 *
2101 * This function passes the invoke neighbor report command to fw
2102 *
2103 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2104 */
2105QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
2106 struct wmi_invoke_neighbor_report_params *params);
Naveen Rawat1d095b02018-02-02 15:13:05 -08002107
Naveen Rawat13dbfb72018-02-02 15:18:33 -08002108/* wmi_get_ch_width_from_phy_mode() - convert phy mode to channel width
2109 * @wmi_hdl: wmi handle
2110 * @phymode: phy mode
2111 *
2112 * Return: wmi channel width
2113 */
2114wmi_host_channel_width wmi_get_ch_width_from_phy_mode(void *wmi_hdl,
2115 WMI_HOST_WLAN_PHY_MODE phymode);
2116
Naveen Rawat96afb7f2018-04-13 16:38:36 -07002117#ifdef QCA_SUPPORT_CP_STATS
2118/**
2119 * wmi_extract_cca_stats() - api to extract congestion stats from event buffer
2120 * @wmi_handle: wma handle
2121 * @evt_buf: event buffer
2122 * @datalen: length of buffer
2123 * @stats: buffer to populated after stats extraction
2124 *
2125 * Return: status of operation
2126 */
2127QDF_STATUS wmi_extract_cca_stats(wmi_unified_t wmi_handle, void *evt_buf,
2128 struct wmi_host_congestion_stats *stats);
2129#endif /* QCA_SUPPORT_CP_STATS */
2130
Shashikala Prabhu6c90a3e2018-05-16 10:08:09 +05302131#if defined(WLAN_DFS_PARTIAL_OFFLOAD) && defined(HOST_DFS_SPOOF_TEST)
2132/**
2133 * wmi_unified_dfs_send_avg_params_cmd() - send average radar parameters cmd.
2134 * @wmi_hdl: wmi handle
2135 * @params: radar found params
2136 *
2137 * This function passes the average radar parameters to fw
2138 *
2139 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2140 */
2141QDF_STATUS
2142wmi_unified_dfs_send_avg_params_cmd(void *wmi_hdl,
2143 struct dfs_radar_found_params *params);
2144
2145/**
2146 * wmi_extract_dfs_status_from_fw() - extract host dfs status from fw.
2147 * @wmi_hdl: wmi handle
2148 * @evt_buf: pointer to event buffer
2149 * @dfs_status_check: pointer to the host dfs status
2150 *
2151 * This function extracts the result of host dfs from fw
2152 *
2153 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2154 */
2155QDF_STATUS wmi_extract_dfs_status_from_fw(void *wmi_hdl, void *evt_buf,
2156 uint32_t *dfs_status_check);
2157#endif
c_cgodava5eb9a22017-02-13 10:14:42 +05302158#ifdef OL_ATH_SMART_LOGGING
2159/**
2160 * wmi_unified_send_smart_logging_enable_cmd() - send smart logging enable cmd
2161 * @wmi_hdl: wmi handle
2162 * @params: enable/disable
2163 *
2164 * This function enables/disable the smart logging feature
2165 *
2166 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2167 */
2168QDF_STATUS wmi_unified_send_smart_logging_enable_cmd(void *wmi_hdl,
2169 uint32_t param);
2170
2171/**
2172 * wmi_unified_send_smart_logging_fatal_cmd() - send smart logging fatal cmd
2173 * @wmi_hdl: wmi handle
2174 * @param: Fatal event
2175 *
2176 * This function sends the smart log fatal events to the FW
2177 *
2178 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2179 */
2180QDF_STATUS wmi_unified_send_smart_logging_fatal_cmd
2181 (void *wmi_hdl,
2182 struct wmi_debug_fatal_events *param);
2183
2184/**
2185 * wmi_extract_smartlog_ev() - extract smartlog event info from event
2186 * @wmi_handle: wmi handle
2187 * @param evt_buf: pointer to event buffer
2188 * @param ev: Pointer to hold fatal events
2189 *
2190 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2191 */
2192QDF_STATUS wmi_extract_smartlog_ev
2193 (void *wmi_hdl, void *evt_buf,
2194 struct wmi_debug_fatal_events *ev);
Amar Singhal07f83142018-06-26 16:45:54 -07002195
c_cgodava5eb9a22017-02-13 10:14:42 +05302196#endif /* OL_ATH_SMART_LOGGING */
Amar Singhal07f83142018-06-26 16:45:54 -07002197
2198void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
2199 HTC_PACKET * htc_packet);
2200
Pratik Gandhi13b34f82018-09-17 16:47:12 +05302201#ifdef OBSS_PD
2202/**
2203 * wmi_extract_smartlog_ev() - extract smartlog event info from event
2204 * @wmi_handle: wmi handle
2205 * @param evt_buf: pointer to event buffer
2206 * @param ev: Pointer to hold fatal events
2207 *
2208 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
2209 */
2210QDF_STATUS wmi_unified_send_obss_spatial_reuse_set_cmd(void *wmi_handle,
2211 struct wmi_host_obss_spatial_reuse_set_param *obss_spatial_reuse_param);
2212#endif /* OBSS_PD */
Shashikala Prabhu9032a3c2018-09-24 13:54:23 +05302213
2214/**
2215 * wmi_convert_pdev_id_host_to_target() - Convert pdev_id from host to target
2216 * defines. For legacy there is not conversion required. Just return pdev_id as
2217 * it is.
2218 * @wmi_hdl: wmi handle
2219 * @host_pdev_id: host pdev_id to be converted.
2220 * @target_pdev_id: Output target pdev id.
2221 *
2222 * Return: QDF_STATUS
2223 */
2224QDF_STATUS wmi_convert_pdev_id_host_to_target(void *wmi_hdl,
2225 uint32_t host_pdev_id,
2226 uint32_t *target_pdev_id);
Govind Singhd475ea92016-03-06 19:55:02 +05302227#endif /* _WMI_UNIFIED_API_H_ */