blob: 78e6b99ab65afabe07096a110df0d80621f09dcb [file] [log] [blame]
Govind Singhd475ea92016-03-06 19:55:02 +05301/*
Paul Zhanga9ec9432017-01-04 16:45:42 +08002 * Copyright (c) 2013-2017 The Linux Foundation. All rights reserved.
Govind Singhd475ea92016-03-06 19:55:02 +05303 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28/*
Govind Singh6ad6ada2016-02-04 18:42:30 +053029 * This file contains the API definitions for the Unified Wireless Module
30 * Interface (WMI).
Govind Singhd475ea92016-03-06 19:55:02 +053031 */
32
33#ifndef _WMI_UNIFIED_API_H_
34#define _WMI_UNIFIED_API_H_
35
36#include <osdep.h>
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053037#ifdef CONFIG_MCL
Govind Singhd475ea92016-03-06 19:55:02 +053038#include "wmi.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053039#endif
Govind Singhd475ea92016-03-06 19:55:02 +053040#include "htc_api.h"
Govind Singh3ddda1f2016-03-09 11:34:12 +053041#include "wmi_unified_param.h"
Mukul Sharma36d159b2017-01-30 19:55:40 +053042#include "wlan_objmgr_psoc_obj.h"
Himanshu Agarwal53d526b2017-01-05 14:23:18 +053043#include "wlan_mgmt_txrx_utils_api.h"
Mukul Sharmaba196f52017-02-25 01:50:47 +053044#ifdef WLAN_PMO_ENABLE
45#include "wmi_unified_pmo_api.h"
46#endif
Wu Gao07ba6b42017-03-13 20:17:34 +080047#ifdef CONVERGED_P2P_ENABLE
48#include "wlan_p2p_public_struct.h"
49#endif
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +053050#include "wlan_scan_public_structs.h"
Govind Singhd475ea92016-03-06 19:55:02 +053051
Govind Singhd7468a52016-03-09 14:32:57 +053052typedef qdf_nbuf_t wmi_buf_t;
53#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
54
55#define WMI_LOGD(args ...) \
56 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
57#define WMI_LOGI(args ...) \
58 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
59#define WMI_LOGW(args ...) \
60 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
61#define WMI_LOGE(args ...) \
62 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
63#define WMI_LOGP(args ...) \
64 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
65
66#define WMI_DEBUG_ALWAYS
67
68#ifdef WMI_DEBUG_ALWAYS
69#define WMI_LOGA(args ...) \
70 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
71#else
72#define WMI_LOGA(args ...)
73#endif
Govind Singhd475ea92016-03-06 19:55:02 +053074
Kiran Venkatappa929dd292017-02-10 16:57:59 +053075struct wmi_soc;
Govind Singhd475ea92016-03-06 19:55:02 +053076/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053077 * struct wmi_ops - service callbacks to upper layer
78 * @service_ready_cbk: service ready callback
79 * @service_ready_ext_cbk: service ready ext callback
80 * @ready_cbk: ready calback
81 * @wma_process_fw_event_handler_cbk: generic event handler callback
82 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053083struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053084
Govind Singh6ad6ada2016-02-04 18:42:30 +053085 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +053086 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +053087};
88
89/**
90 * enum wmi_target_type - type of supported wmi command
91 * @WMI_TLV_TARGET: tlv based target
92 * @WMI_NON_TLV_TARGET: non-tlv based target
93 *
94 */
95enum wmi_target_type {
96 WMI_TLV_TARGET,
97 WMI_NON_TLV_TARGET
98};
99
100/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530101 * enum wmi_rx_exec_ctx - wmi rx execution context
102 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
103 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
104 *
105 */
106enum wmi_rx_exec_ctx {
107 WMI_RX_WORK_CTX,
108 WMI_RX_UMAC_CTX
109};
110
111/**
Govind Singhd475ea92016-03-06 19:55:02 +0530112 * attach for unified WMI
113 *
114 * @param scn_handle : handle to SCN.
Govind Singh89727882016-04-15 13:58:27 +0530115 * @param target_type : type of supported wmi command
116 * @param use_cookie : flag to indicate cookie based allocation
117 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530118 * @psoc : objmgr psoc
Govind Singhd475ea92016-03-06 19:55:02 +0530119 * @return opaque handle.
120 */
121void *wmi_unified_attach(void *scn_handle,
Govind Singh6ad6ada2016-02-04 18:42:30 +0530122 osdev_t osdev, enum wmi_target_type target_type,
Mukul Sharma36d159b2017-01-30 19:55:40 +0530123 bool use_cookie, struct wmi_rx_ops *ops,
124 struct wlan_objmgr_psoc *psoc);
125
Govind Singh6ad6ada2016-02-04 18:42:30 +0530126
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700127
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700128/**
129 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
130 *
131 * @wmi_handle: wmi handle
132 * @cmd: mgmt command
133 * @header: pointer to 802.11 header
134 * @vdev_id: vdev id
135 * @chanfreq: channel frequency
136 *
137 * Return: none
138 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530139void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700140 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700141
Govind Singhd475ea92016-03-06 19:55:02 +0530142/**
143 * detach for unified WMI
144 *
145 * @param wmi_handle : handle to WMI.
146 * @return void.
147 */
148void wmi_unified_detach(struct wmi_unified *wmi_handle);
149
150void
151wmi_unified_remove_work(struct wmi_unified *wmi_handle);
152
153/**
154 * generic function to allocate WMI buffer
155 *
156 * @param wmi_handle : handle to WMI.
157 * @param len : length of the buffer
158 * @return wmi_buf_t.
159 */
160#ifdef MEMORY_DEBUG
161#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
162wmi_buf_t
163wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
164 uint8_t *file_name, uint32_t line_num);
165#else
166wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
167#endif
168
169/**
170 * generic function frees WMI net buffer
171 *
172 * @param net_buf : Pointer ot net_buf to be freed
173 */
174void wmi_buf_free(wmi_buf_t net_buf);
175
176/**
177 * generic function to send unified WMI command
178 *
179 * @param wmi_handle : handle to WMI.
180 * @param buf : wmi command buffer
181 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530182 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530183 * @return 0 on success and -ve on failure.
184 */
Houston Hoffman09f96f92016-09-27 23:29:49 -0700185QDF_STATUS
Govind Singh6ad6ada2016-02-04 18:42:30 +0530186wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530187 uint32_t cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530188
189/**
Soumya Bhat49a84812017-03-22 14:41:01 +0530190 * wmi_unified_register_event() - WMI event handler
191 * registration function for converged components
192 *
193 * @wmi_handle: handle to WMI.
194 * @event_id: WMI event ID
195 * @handler_func: Event handler call back function
196 *
197 * @return 0 on success and -ve on failure.
198 */
199int
200wmi_unified_register_event(wmi_unified_t wmi_handle,
201 uint32_t event_id,
202 wmi_unified_event_handler handler_func);
203
204/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530205 * wmi_unified_register_event_handler() - WMI event handler
206 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530207 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530208 * @wmi_handle: handle to WMI.
209 * @event_id: WMI event ID
210 * @handler_func: Event handler call back function
211 * @rx_ctx: rx event processing context
212 *
Govind Singhd475ea92016-03-06 19:55:02 +0530213 * @return 0 on success and -ve on failure.
214 */
215int
216wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530217 wmi_conv_event_id event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530218 wmi_unified_event_handler handler_func,
219 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530220
221/**
Soumya Bhat070cd052017-03-27 12:26:56 +0530222 * WMI event handler unregister function for converged componets
223 *
224 * @param wmi_handle : handle to WMI.
225 * @param event_id : WMI event ID
226 * @return 0 on success and -ve on failure.
227 */
228int
229wmi_unified_unregister_event(wmi_unified_t wmi_handle,
230 uint32_t event_id);
231
232/**
Govind Singhd475ea92016-03-06 19:55:02 +0530233 * WMI event handler unregister function
234 *
235 * @param wmi_handle : handle to WMI.
236 * @param event_id : WMI event ID
237 * @return 0 on success and -ve on failure.
238 */
239int
240wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Mukul Sharma6faf5a82017-11-03 19:26:54 +0530241 wmi_conv_event_id event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530242
243/**
244 * request wmi to connet its htc service.
245 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530246 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530247 * @return void
248 */
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530249QDF_STATUS
Govind Singhd475ea92016-03-06 19:55:02 +0530250wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
251 void *htc_handle);
252
253/*
254 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530255 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530256 */
257
258int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
259
260/**
Govind Singh89727882016-04-15 13:58:27 +0530261 * WMI API to get updated host_credits
262 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530263 */
264
265int wmi_get_host_credits(wmi_unified_t wmi_handle);
266
267/**
Govind Singh89727882016-04-15 13:58:27 +0530268 * WMI API to get WMI Pending Commands in the HTC queue
269 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530270 */
271
272int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
273
274/**
Govind Singh89727882016-04-15 13:58:27 +0530275 * WMI API to set target suspend state
276 * @param wmi_handle : handle to WMI.
277 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530278 */
Govind Singhd475ea92016-03-06 19:55:02 +0530279void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
280
Govind Singh89727882016-04-15 13:58:27 +0530281/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530282 * WMI API to set bus suspend state
283 * @param wmi_handle: handle to WMI.
284 * @param val: suspend state boolean
285 */
286void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
287
288/**
289 * WMI API to set crash injection state
290 * @param wmi_handle: handle to WMI.
291 * @param val: crash injection state boolean
292 */
293void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
294
295/**
Ravi Kumar Bokkadf1f3ea2016-11-09 18:07:56 +0530296 * WMI API to set target assert
297 * @param wmi_handle: handle to WMI.
298 * @param val: target assert config value.
299 *
300 * Return: none.
301 */
302void wmi_set_tgt_assert(wmi_unified_t wmi_handle, bool val);
303
304/**
Govind Singh89727882016-04-15 13:58:27 +0530305 * generic function to block unified WMI command
306 * @param wmi_handle : handle to WMI.
307 * @return 0 on success and -ve on failure.
308 */
309int
310wmi_stop(wmi_unified_t wmi_handle);
311
312/**
313 * API to flush all the previous packets associated with the wmi endpoint
314 *
315 * @param wmi_handle : handle to WMI.
316 */
317void
318wmi_flush_endpoint(wmi_unified_t wmi_handle);
319
320/**
Kiran Venkatappa49341042017-05-10 16:24:51 +0530321 * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
322 * By default pdev_id conversion is not done in WMI.
323 * This API can be used enable conversion in WMI.
324 * @param wmi_handle : handle to WMI
325 * Return none
326 */
327void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
328
329/**
Govind Singh89727882016-04-15 13:58:27 +0530330 * API to handle wmi rx event after UMAC has taken care of execution
331 * context
332 *
333 * @param wmi_handle : handle to WMI.
334 * @param evt_buf : wmi event buffer
335 */
336void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530337#ifdef FEATURE_RUNTIME_PM
338void
339wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
340bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
341#else
342static inline void
343wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
344{
345 return;
346}
347static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
348{
349 return false;
350}
351#endif
352
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530353void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
354
355void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
356
Govind Singhd475ea92016-03-06 19:55:02 +0530357/**
Govind Singhd7468a52016-03-09 14:32:57 +0530358 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530359 * @param wmi_handle : handle to WMI.
360 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530361 */
Govind Singhd475ea92016-03-06 19:55:02 +0530362void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
363uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530364
365
Govind Singhd7468a52016-03-09 14:32:57 +0530366QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530367 uint8_t macaddr[IEEE80211_ADDR_LEN],
368 struct vdev_create_params *param);
369
Govind Singhd7468a52016-03-09 14:32:57 +0530370QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530371 uint8_t if_id);
372
Govind Singhd7468a52016-03-09 14:32:57 +0530373QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530374 uint8_t macaddr[IEEE80211_ADDR_LEN],
375 struct vdev_start_params *param);
376
Govind Singhd7468a52016-03-09 14:32:57 +0530377QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530378 uint8_t vdev_id);
379
Govind Singhd7468a52016-03-09 14:32:57 +0530380QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530381 uint8_t bssid[IEEE80211_ADDR_LEN],
382 struct vdev_up_params *params);
383
Govind Singhd7468a52016-03-09 14:32:57 +0530384QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530385 uint8_t vdev_id);
386
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530387QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
388 struct vdev_start_params *req);
389
390QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
391 struct hidden_ssid_vdev_restart_params *restart_params);
392
Govind Singhd7468a52016-03-09 14:32:57 +0530393QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530394 struct vdev_set_params *param);
395
Govind Singhd7468a52016-03-09 14:32:57 +0530396QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530397 uint8_t
398 peer_addr[IEEE80211_ADDR_LEN],
399 uint8_t vdev_id);
400
Govind Singhd7468a52016-03-09 14:32:57 +0530401QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530402 uint8_t peer_addr[IEEE80211_ADDR_LEN],
403 struct peer_flush_params *param);
404
Govind Singhd7468a52016-03-09 14:32:57 +0530405QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530406 uint8_t peer_addr[IEEE80211_ADDR_LEN],
407 struct peer_set_params *param);
408
Govind Singhd7468a52016-03-09 14:32:57 +0530409QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530410 struct peer_create_params *param);
411
Govind Singhd7468a52016-03-09 14:32:57 +0530412QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530413 uint8_t macaddr[IEEE80211_ADDR_LEN],
414 struct stats_request_params *param);
415
Govind Singhd7468a52016-03-09 14:32:57 +0530416QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530417 uint32_t value, uint8_t mac_id);
418
Will Huang5325c7c2017-11-17 13:19:16 +0800419#ifdef FEATURE_WLAN_D0WOW
420QDF_STATUS wmi_unified_d0wow_enable_send(void *wmi_hdl,
421 uint8_t mac_id);
422QDF_STATUS wmi_unified_d0wow_disable_send(void *wmi_hdl,
423 uint8_t mac_id);
424#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530425
Govind Singhd7468a52016-03-09 14:32:57 +0530426QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530427 struct wow_cmd_params *param,
428 uint8_t mac_id);
429
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700430QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
431
432QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
433 struct wow_add_wakeup_params *param);
434
435QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
436 struct wow_add_wakeup_pattern_params *param);
437
438QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
439 struct wow_remove_wakeup_pattern_params *param);
440
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530441#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530442QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Keyur Parekh483138e2017-05-07 08:54:47 -0700443 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
Govind Singh89727882016-04-15 13:58:27 +0530444#else
Govind Singhd7468a52016-03-09 14:32:57 +0530445QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530446 uint8_t macaddr[IEEE80211_ADDR_LEN],
447 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530448#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530449
Keyur Parekh483138e2017-05-07 08:54:47 -0700450QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530451
Govind Singhd7468a52016-03-09 14:32:57 +0530452QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530453 struct suspend_params *param,
454 uint8_t mac_id);
455
Govind Singhd7468a52016-03-09 14:32:57 +0530456QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530457 uint8_t mac_id);
458
Govind Singhd7468a52016-03-09 14:32:57 +0530459QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530460wmi_unified_pdev_param_send(void *wmi_hdl,
461 struct pdev_params *param,
462 uint8_t mac_id);
463
Govind Singh89727882016-04-15 13:58:27 +0530464QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
465 struct beacon_tmpl_params *param);
466
467
Govind Singhd7468a52016-03-09 14:32:57 +0530468QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530469 struct beacon_params *param);
470
Govind Singhd7468a52016-03-09 14:32:57 +0530471QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530472 struct peer_assoc_params *param);
473
Govind Singhd7468a52016-03-09 14:32:57 +0530474QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530475 struct sta_ps_params *param);
476
Govind Singhd7468a52016-03-09 14:32:57 +0530477QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530478 uint8_t macaddr[IEEE80211_ADDR_LEN],
479 struct ap_ps_params *param);
480
Govind Singhd7468a52016-03-09 14:32:57 +0530481QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530482 struct scan_req_params *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530483
Govind Singhd7468a52016-03-09 14:32:57 +0530484QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530485 struct scan_cancel_param *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530486
Govind Singhd7468a52016-03-09 14:32:57 +0530487QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530488 struct scan_chan_list_params *param);
489
490
Govind Singhd7468a52016-03-09 14:32:57 +0530491QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530492 struct crash_inject *param);
493
Govind Singhd7468a52016-03-09 14:32:57 +0530494QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530495 struct pdev_utf_params *param,
496 uint8_t mac_id);
497
Govind Singhd7468a52016-03-09 14:32:57 +0530498QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530499 struct dbglog_params *param);
500
Govind Singhd7468a52016-03-09 14:32:57 +0530501QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530502 struct wmi_mgmt_params *param);
503
Kiran Venkatappa25c47022017-03-19 22:58:09 +0530504QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
505 struct wmi_offchan_data_tx_params *param);
506
Govind Singhd7468a52016-03-09 14:32:57 +0530507QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530508 uint32_t param_value);
509
Govind Singhd7468a52016-03-09 14:32:57 +0530510QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530511 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530512QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530513wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
514 struct sta_uapsd_trig_params *param);
515
Govind Singhd7468a52016-03-09 14:32:57 +0530516QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530517
Govind Singhd7468a52016-03-09 14:32:57 +0530518QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530519 struct p2p_ps_params *oppps);
520
Govind Singhd7468a52016-03-09 14:32:57 +0530521QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530522 struct p2p_ps_params *noa);
523
Wu Gao07ba6b42017-03-13 20:17:34 +0800524#ifdef CONVERGED_P2P_ENABLE
525QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
526 struct p2p_lo_start *param);
527
528QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
529#endif
530
Govind Singhd7468a52016-03-09 14:32:57 +0530531QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530532 int value);
533
Govind Singhd7468a52016-03-09 14:32:57 +0530534QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530535
Govind Singhd7468a52016-03-09 14:32:57 +0530536QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530537 struct ocb_utc_param *utc);
538
Govind Singhd7468a52016-03-09 14:32:57 +0530539QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530540 struct ocb_timing_advert_param *timing_advert);
541
Govind Singhd7468a52016-03-09 14:32:57 +0530542QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530543 struct ocb_timing_advert_param *timing_advert);
544
Govind Singhd7468a52016-03-09 14:32:57 +0530545QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530546 struct ocb_config_param *config, uint32_t *ch_mhz);
547
Govind Singhd7468a52016-03-09 14:32:57 +0530548QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530549 uint8_t vdev_id);
550
Govind Singhd7468a52016-03-09 14:32:57 +0530551QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530552 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
553
Govind Singhd7468a52016-03-09 14:32:57 +0530554QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530555 struct thermal_cmd_params *thermal_info);
556
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530557QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
558 struct wmi_peer_rate_report_params *rate_report_params);
559
Govind Singhd7468a52016-03-09 14:32:57 +0530560QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530561 (void *wmi_hdl,
562 uint32_t adapter_1_chan_freq,
563 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
564
Govind Singhd7468a52016-03-09 14:32:57 +0530565QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530566 (void *wmi_hdl,
567 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
568
Govind Singhd7468a52016-03-09 14:32:57 +0530569QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700570 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
571 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530572
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530573#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530574QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530575 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530576#endif
Govind Singhae855362016-03-07 14:24:22 +0530577
Govind Singhd7468a52016-03-09 14:32:57 +0530578QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530579 uint8_t vdev_id, uint32_t max_retries,
580 uint32_t retry_interval);
581
582
Govind Singhd7468a52016-03-09 14:32:57 +0530583QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530584 struct sta_params *params);
585
Govind Singhd7468a52016-03-09 14:32:57 +0530586QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530587 struct wmi_gtx_config *gtx_info);
588
Govind Singhd7468a52016-03-09 14:32:57 +0530589QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530590 uint8_t vdev_id,
Vikram Kandukurid2e75802017-06-01 16:47:51 +0530591 struct wmi_host_wme_vparams wmm_vparams[WMI_MAX_NUM_AC]);
Govind Singhae855362016-03-07 14:24:22 +0530592
Govind Singhd7468a52016-03-09 14:32:57 +0530593QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530594 uint8_t vdev_id,
Krunal Soni36f17d42017-11-14 15:42:48 -0800595 struct wmi_probe_resp_params *probe_rsp_info);
Govind Singhae855362016-03-07 14:24:22 +0530596
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530597QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
598 struct set_key_params *key_params);
599
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530600QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
601 struct encrypt_decrypt_req_params *params);
602
Govind Singhd7468a52016-03-09 14:32:57 +0530603QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530604 A_UINT32 vdev_id, uint8_t *p2p_ie);
605
606
Govind Singhd7468a52016-03-09 14:32:57 +0530607QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530608 struct gateway_update_req_param *req);
609
Govind Singhd7468a52016-03-09 14:32:57 +0530610QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530611 struct rssi_monitor_param *req);
612
Govind Singhd7468a52016-03-09 14:32:57 +0530613QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530614 struct scan_mac_oui *psetoui);
615
Govind Singhd7468a52016-03-09 14:32:57 +0530616QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530617 struct wifi_passpoint_req_param *req);
618
Govind Singhd7468a52016-03-09 14:32:57 +0530619QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530620 struct wifi_passpoint_req_param *req);
621
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530622#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530623QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
624 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
625 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530626#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530627
Varun Reddy Yeturu4cae4292017-07-20 09:45:01 -0700628/**
629 * wmi_unified_roam_mawc_params_cmd() - configure roaming MAWC parameters
630 * @wmi_hdl: wmi handle
631 * @params: Parameters to be configured
632 *
633 * Pass the MAWC(Motion Aided wireless connectivity) related roaming
634 * parameters from the host to the target
635 *
636 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
637 */
638QDF_STATUS wmi_unified_roam_mawc_params_cmd(void *wmi_hdl,
639 struct wmi_mawc_roam_params *params);
640
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530641QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
642 struct roam_offload_scan_rssi_params *roam_req);
643
644QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
645 struct roam_scan_filter_params *roam_req);
646
Govind Singhd7468a52016-03-09 14:32:57 +0530647QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530648 struct wifi_enhanched_pno_params *req);
649
Govind Singhd7468a52016-03-09 14:32:57 +0530650QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530651 struct ipa_offload_control_params *ipa_offload);
652
Govind Singhd7468a52016-03-09 14:32:57 +0530653QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530654 struct extscan_capabilities_params *pgetcapab);
655
Govind Singhd7468a52016-03-09 14:32:57 +0530656QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530657 struct extscan_cached_result_params *pcached_results);
658
659
Govind Singhd7468a52016-03-09 14:32:57 +0530660QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530661 struct extscan_capabilities_reset_params *reset_req);
662
663
Govind Singhd7468a52016-03-09 14:32:57 +0530664QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530665 struct extscan_set_sig_changereq_params *
666 psigchange);
667
Govind Singhd7468a52016-03-09 14:32:57 +0530668QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530669 struct extscan_bssid_hotlist_reset_params *photlist_reset);
670
Govind Singhd7468a52016-03-09 14:32:57 +0530671QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530672 struct extscan_stop_req_params *pstopcmd);
673
Govind Singhd7468a52016-03-09 14:32:57 +0530674QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530675 struct wifi_scan_cmd_req_params *pstart);
676
Govind Singhd7468a52016-03-09 14:32:57 +0530677QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530678 const struct plm_req_params *plm);
679
Govind Singhd7468a52016-03-09 14:32:57 +0530680QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530681 const struct plm_req_params *plm,
682 uint32_t *gchannel_list);
683
Govind Singhd7468a52016-03-09 14:32:57 +0530684QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530685
Govind Singh89727882016-04-15 13:58:27 +0530686#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530687QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Abhishek Singhd4184662017-03-03 22:09:07 +0530688 struct pno_scan_req_params *pno);
Govind Singh89727882016-04-15 13:58:27 +0530689#endif
Govind Singhae855362016-03-07 14:24:22 +0530690
Varun Reddy Yeturu4fa519b2017-07-24 16:11:22 -0700691QDF_STATUS wmi_unified_nlo_mawc_cmd(void *wmi_hdl,
692 struct nlo_mawc_params *params);
693
Govind Singhd7468a52016-03-09 14:32:57 +0530694QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530695 uint8_t is_add_ts);
696
Govind Singhd7468a52016-03-09 14:32:57 +0530697QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530698 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
699 uint8_t addr[IEEE80211_ADDR_LEN]);
700
Govind Singhd7468a52016-03-09 14:32:57 +0530701QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530702 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
703
Govind Singhd7468a52016-03-09 14:32:57 +0530704QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530705 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
706 uint8_t addr[IEEE80211_ADDR_LEN]);
707
Padma, Santhosh Kumard3261902017-03-21 19:09:35 +0530708/**
709 * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
710 * @wmi_hdl: wma handle
711 * @vdev_id: vdev id
712 *
713 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
714 */
715QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
716 uint8_t vdev_id);
717
Govind Singhd7468a52016-03-09 14:32:57 +0530718QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530719
Govind Singhd7468a52016-03-09 14:32:57 +0530720QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530721
Govind Singhd7468a52016-03-09 14:32:57 +0530722QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530723 struct link_status_params *link_status);
724
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530725#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530726QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530727 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
728
Govind Singhd7468a52016-03-09 14:32:57 +0530729QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530730 wmi_mac_addr peer_macaddr);
Govind Singh229bc0d2016-03-07 15:33:31 +0530731
Govind Singhd7468a52016-03-09 14:32:57 +0530732QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530733 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
Paul Zhanga9ec9432017-01-04 16:45:42 +0800734
Govind Singh89727882016-04-15 13:58:27 +0530735#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530736
Govind Singhd7468a52016-03-09 14:32:57 +0530737QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530738 uint32_t cmd, uint32_t value1, uint32_t value2);
739
Naveen Rawat7f70d662017-10-26 18:50:19 -0700740QDF_STATUS wmi_unified_wow_timer_pattern_cmd(void *wmi_hdl, uint8_t vdev_id,
741 uint32_t cookie, uint32_t time);
742
Govind Singhd7468a52016-03-09 14:32:57 +0530743QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530744
Paul Zhang6a857a92017-12-08 16:08:00 +0800745/**
746 * wmi_unified_set_latency_config_cmd()
747 * @wmi_handle: wmi handle
748 * @param: WLM parameters
749 *
750 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
751 */
752QDF_STATUS wmi_unified_wlm_latency_level_cmd(void *wmi_hdl,
753 struct wlm_latency_level_param *param);
754
Govind Singhd7468a52016-03-09 14:32:57 +0530755QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530756
Naveen Rawat90bc8fd2017-05-13 15:56:57 -0700757#ifdef WLAN_FEATURE_CIF_CFR
758/**
759 * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
760 * @wmi_handle: wmi handle
761 * @data_len: len of dma cfg req
762 * @data: dma cfg req
763 *
764 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
765 */
766QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
767 wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
768#endif
769
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +0530770/**
771 * wmi_unified_dbr_ring_cfg: Configure direct buffer rx rings
772 * @wmi_hdl: WMI handle
773 * @cfg: pointer to direct buffer rx config request
774 *
775 * Return: QDF status of operation
776 */
777QDF_STATUS wmi_unified_dbr_ring_cfg(void *wmi_hdl,
778 struct direct_buf_rx_cfg_req *cfg);
779
Govind Singhd7468a52016-03-09 14:32:57 +0530780QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700781 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530782 uint8_t *data);
783
Govind Singhd7468a52016-03-09 14:32:57 +0530784QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530785 bool dfs_phyerr_filter_offload);
786
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530787#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530788QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530789 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530790 uint32_t cmd_id,
791 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530792#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530793
Govind Singhd7468a52016-03-09 14:32:57 +0530794QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530795 uint8_t vdev_id);
796
Govind Singhd7468a52016-03-09 14:32:57 +0530797QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
798QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530799 uint8_t ac);
800
Govind Singhd7468a52016-03-09 14:32:57 +0530801QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530802 struct aggr_add_ts_param *aggr_qos_rsp_msg);
803
Govind Singhd7468a52016-03-09 14:32:57 +0530804QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530805 struct add_ts_param *msg);
806
Govind Singhd7468a52016-03-09 14:32:57 +0530807QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530808 struct periodic_tx_pattern *
809 pAddPeriodicTxPtrnParams,
810 uint8_t vdev_id);
811
Govind Singhd7468a52016-03-09 14:32:57 +0530812QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530813 uint8_t vdev_id,
814 uint8_t pattern_id);
815
Govind Singhd7468a52016-03-09 14:32:57 +0530816QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530817 struct stats_ext_params *preq);
818
Govind Singhd7468a52016-03-09 14:32:57 +0530819QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530820 struct ext_wow_params *params);
821
Govind Singhd7468a52016-03-09 14:32:57 +0530822QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530823 struct app_type2_params *appType2Params);
824
Govind Singhd7468a52016-03-09 14:32:57 +0530825QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530826 uint32_t timer_val);
827
Govind Singhd7468a52016-03-09 14:32:57 +0530828QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530829 struct nan_req_params *nan_req);
830
Govind Singhd7468a52016-03-09 14:32:57 +0530831QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Jeff Johnson645f7a12017-10-04 19:19:20 -0700832 struct dhcp_offload_info_params *params);
Govind Singh229bc0d2016-03-07 15:33:31 +0530833
Govind Singhd7468a52016-03-09 14:32:57 +0530834QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530835
Govind Singhd7468a52016-03-09 14:32:57 +0530836QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530837 uint32_t reg_dmn, uint16_t regdmn2G,
Rajeev Kumar Sirasanagandlaacf22bf2017-06-06 13:27:56 +0530838 uint16_t regdmn5G, uint8_t ctl2G,
839 uint8_t ctl5G);
Govind Singh229bc0d2016-03-07 15:33:31 +0530840
Govind Singhd7468a52016-03-09 14:32:57 +0530841QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530842 struct tdls_channel_switch_params *chan_switch_params);
843
Govind Singhd7468a52016-03-09 14:32:57 +0530844QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530845 void *tdls_param, uint8_t tdls_state);
846
Govind Singhd7468a52016-03-09 14:32:57 +0530847QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530848 struct tdls_peer_state_params *peerStateParams,
849 uint32_t *ch_mhz);
850
Govind Singhd7468a52016-03-09 14:32:57 +0530851QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530852 struct fw_dump_req_param *mem_dump_req);
853
Govind Singhd7468a52016-03-09 14:32:57 +0530854QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530855 struct vdev_ie_info_param *ie_info);
856
Govind Singhd7468a52016-03-09 14:32:57 +0530857QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530858 struct ocb_utc_param *utc);
Govind Singhae855362016-03-07 14:24:22 +0530859
Govind Singhd7468a52016-03-09 14:32:57 +0530860QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530861 struct dcc_get_stats_param *get_stats_param);
Govind Singhae855362016-03-07 14:24:22 +0530862
Govind Singhd7468a52016-03-09 14:32:57 +0530863QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530864 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh229bc0d2016-03-07 15:33:31 +0530865
Govind Singhd7468a52016-03-09 14:32:57 +0530866QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530867 struct dcc_update_ndl_param *update_ndl_param);
Govind Singh71ee2d72016-03-07 16:30:32 +0530868
Govind Singhd7468a52016-03-09 14:32:57 +0530869QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530870 void *evt_buf);
871
Govind Singhd7468a52016-03-09 14:32:57 +0530872QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530873 uint8_t *custom_addr);
874
Govind Singhd7468a52016-03-09 14:32:57 +0530875QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530876 uint8_t *event,
877 uint32_t len);
878
Govind Singhd7468a52016-03-09 14:32:57 +0530879QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530880 struct wmi_wifi_start_log *start_log);
881
Govind Singhd7468a52016-03-09 14:32:57 +0530882QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530883
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530884QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
885 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530886
Govind Singhd7468a52016-03-09 14:32:57 +0530887QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530888 uint32_t hw_mode_index);
889
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530890QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530891 struct wmi_dual_mac_config *msg);
892
Govind Singhd7468a52016-03-09 14:32:57 +0530893QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530894 struct flashing_req_params *flashing);
895
Govind Singhd7468a52016-03-09 14:32:57 +0530896QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530897 struct app_type1_params *app_type1_params);
898
Govind Singhd7468a52016-03-09 14:32:57 +0530899QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530900 struct ssid_hotlist_request_params *request);
901
Govind Singhd7468a52016-03-09 14:32:57 +0530902QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530903 uint8_t vdev_id);
904
Govind Singhd7468a52016-03-09 14:32:57 +0530905QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530906 struct wmi_unit_test_cmd *wmi_utest);
907
Govind Singhd7468a52016-03-09 14:32:57 +0530908QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530909 struct wmi_roam_invoke_cmd *roaminvoke,
910 uint32_t ch_hz);
911
Govind Singhd7468a52016-03-09 14:32:57 +0530912QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530913 uint32_t command, uint32_t vdev_id);
914
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530915#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530916QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Himanshu Agarwalf9524e12017-09-28 11:51:35 +0530917 struct ap_profile_params *ap_profile);
Govind Singh89727882016-04-15 13:58:27 +0530918#endif
Govind Singh2ae94372016-03-07 16:45:38 +0530919
Govind Singhd7468a52016-03-09 14:32:57 +0530920QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530921 uint32_t scan_period,
922 uint32_t scan_age,
923 uint32_t vdev_id);
924
Govind Singhd7468a52016-03-09 14:32:57 +0530925QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530926 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -0700927 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +0530928 uint8_t list_type, uint32_t vdev_id);
929
Govind Singhd7468a52016-03-09 14:32:57 +0530930QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530931 uint32_t vdev_id,
932 int32_t rssi_change_thresh,
933 uint32_t bcn_rssi_weight,
934 uint32_t hirssi_delay_btw_scans);
935
Kapil Guptaf6eb7312017-02-24 15:50:03 +0530936/**
937 * wmi_unified_set_per_roam_config() - set PER roam config in FW
938 * @wmi_hdl: wmi handle
939 * @req_buf: per roam config request buffer
940 *
941 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
942 */
943QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
944 struct wmi_per_roam_config_req *req_buf);
945
Govind Singhd7468a52016-03-09 14:32:57 +0530946QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530947 struct ext_scan_setbssi_hotlist_params *
948 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530949
Dustin Brown4def3162017-01-13 15:24:07 -0800950/**
951 * wmi_unified_set_active_bpf_mode_cmd() - config active BPF mode in FW
952 * @wmi_hdl: the WMI handle
953 * @vdev_id: the Id of the vdev to apply the configuration to
954 * @ucast_mode: the active BPF mode to configure for unicast packets
955 * @mcast_bcast_mode: the active BPF mode to configure for multicast/broadcast
956 * packets
957 */
958QDF_STATUS wmi_unified_set_active_bpf_mode_cmd(void *wmi_hdl,
959 uint8_t vdev_id,
960 enum wmi_host_active_bpf_mode ucast_mode,
961 enum wmi_host_active_bpf_mode mcast_bcast_mode);
962
Govind Singh89727882016-04-15 13:58:27 +0530963QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
964 uint8_t macaddr[IEEE80211_ADDR_LEN],
965 struct stats_request_params *param);
966
967QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
968 uint32_t param);
969
Sathish Kumar50232d72016-08-09 16:50:46 +0530970QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
971 struct set_bwf_params *param);
972
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530973QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
974
975QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
976
977QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
978 uint32_t value);
979
980QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
981 uint32_t value);
982
983QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +0530984 struct btcoex_cfg_params *param);
985
986QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
987 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530988
Sathish Kumar612d0c22017-01-19 14:57:37 +0530989QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
990 coex_ver_cfg_t *param);
991
Sathish Kumar125754e2017-04-24 11:36:00 +0530992QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
993 struct coex_config_params *param);
994
Govind Singh89727882016-04-15 13:58:27 +0530995QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
996 struct set_atf_params *param);
997
998QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
999 struct fips_params *param);
1000
1001QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
1002 struct wlan_profile_params *param);
1003
1004QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
1005 struct wlan_profile_params *param);
1006
1007QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
1008 struct channel_param *param);
1009
1010QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
1011 struct ht_ie_params *param);
1012
1013QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
1014 struct vht_ie_params *param);
1015
1016QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
1017 struct wmm_update_params *param);
1018
1019QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
1020 struct ant_switch_tbl_params *param);
1021
1022QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
1023 struct ratepwr_table_params *param);
1024
1025QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
1026
1027QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
1028 struct ctl_table_params *param);
1029
1030QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
1031 struct mimogain_table_params *param);
1032
1033QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
1034 struct ratepwr_chainmsk_params *param);
1035
1036QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1037 struct macaddr_params *param);
1038
1039QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1040
1041QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1042
1043QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1044 struct acparams_params *param);
1045
1046QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1047 struct vap_dscp_tid_map_params *param);
1048
1049QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1050 struct proxy_ast_reserve_params *param);
1051
1052QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
1053 struct pdev_qvit_params *param);
1054
1055QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
1056 struct mcast_group_update_params *param);
1057
1058QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1059 struct peer_add_wds_entry_params *param);
1060
1061QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1062 struct peer_del_wds_entry_params *param);
1063
Jeevan Kukkalli28e8a162017-06-16 18:07:28 +05301064/**
1065 * wmi_unified_set_bridge_mac_addr_cmd_send() - WMI set bridge mac addr cmd function
1066 * @param wmi_hdl : handle to WMI.
1067 * @param param : pointer to hold bridge mac addr param
1068 *
1069 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1070 */
1071QDF_STATUS wmi_unified_set_bridge_mac_addr_cmd_send(void *wmi_hdl,
1072 struct set_bridge_mac_addr_params *param);
1073
1074
Govind Singh89727882016-04-15 13:58:27 +05301075QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1076 struct peer_update_wds_entry_params *param);
1077
1078QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1079
1080QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1081
1082QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1083
1084QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1085 struct smart_ant_enable_params *param);
1086
1087QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1088 struct smart_ant_rx_ant_params *param);
1089
1090QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1091 uint8_t macaddr[IEEE80211_ADDR_LEN],
1092 struct smart_ant_tx_ant_params *param);
1093
1094QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1095 uint8_t macaddr[IEEE80211_ADDR_LEN],
1096 struct smart_ant_training_info_params *param);
1097
1098QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1099 uint8_t macaddr[IEEE80211_ADDR_LEN],
1100 struct smart_ant_node_config_params *param);
1101
1102QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1103 struct smart_ant_enable_tx_feedback_params *param);
1104
1105QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1106 struct vdev_spectral_configure_params *param);
1107
1108QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1109 struct vdev_spectral_enable_params *param);
1110
1111QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1112 struct bss_chan_info_request_params *param);
1113
1114QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1115 struct thermal_mitigation_params *param);
1116
1117QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1118 uint8_t macaddr[IEEE80211_ADDR_LEN],
1119 struct set_neighbour_rx_params *param);
1120
1121QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1122 struct set_fwtest_params *param);
1123
1124QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1125 struct config_ratemask_params *param);
1126
Sathish Kumar6190e772017-11-08 14:49:58 +05301127/**
1128 * wmi_unified_vdev_set_custom_aggr_size_cmd_send() - WMI set custom aggr
1129 * size command
1130 * @param wmi_hdl : handle to WMI.
1131 * @param param : pointer to hold custom aggr size param
1132 *
1133 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1134 */
1135QDF_STATUS wmi_unified_vdev_set_custom_aggr_size_cmd_send(void *wmi_hdl,
1136 struct set_custom_aggr_size_params *param);
Govind Singh89727882016-04-15 13:58:27 +05301137
Venkateswara Swamy Bandaru81f40dc2017-12-22 17:16:19 +05301138/**
1139 * wmi_unified_vdev_set_qdepth_thresh_cmd_send() - WMI set qdepth threshold
1140 * @param wmi_hdl : handle to WMI.
1141 * @param param : pointer to hold set qdepth thresh param
1142 *
1143 * @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1144 */
1145QDF_STATUS wmi_unified_vdev_set_qdepth_thresh_cmd_send(void *wmi_hdl,
1146 struct set_qdepth_thresh_params *param);
1147
Govind Singh89727882016-04-15 13:58:27 +05301148QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1149 struct pdev_set_regdomain_params *param);
1150
1151QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1152 struct set_quiet_mode_params *param);
1153
1154QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1155 struct set_beacon_filter_params *param);
1156
1157QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1158 struct remove_beacon_filter_params *param);
1159
1160QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1161 uint8_t macaddr[IEEE80211_ADDR_LEN],
1162 struct addba_clearresponse_params *param);
1163
1164QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1165 uint8_t macaddr[IEEE80211_ADDR_LEN],
1166 struct addba_send_params *param);
1167
1168QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1169 uint8_t macaddr[IEEE80211_ADDR_LEN],
1170 struct delba_send_params *param);
1171
1172QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1173 uint8_t macaddr[IEEE80211_ADDR_LEN],
1174 struct addba_setresponse_params *param);
1175
1176QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1177 uint8_t macaddr[IEEE80211_ADDR_LEN],
1178 struct singleamsdu_params *param);
1179
1180QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1181 uint8_t macaddr[IEEE80211_ADDR_LEN],
1182 struct set_qboost_params *param);
1183
1184QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1185 struct mu_scan_params *param);
1186
1187QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1188 struct lteu_config_params *param);
1189
1190QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1191 struct set_ps_mode_params *param);
1192
1193QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05301194 struct wmi_init_cmd_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301195
1196bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1197
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301198/**
1199 * wmi_save_service_bitmap() - save service bitmap
1200 * @wmi_handle: wmi handle
1201 * @param evt_buf: pointer to event buffer
1202 *
1203 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1204 */
Rajeev Kumar5d8497b2017-02-12 02:12:17 -08001205QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1206 void *bitmap_buf);
Govind Singh89727882016-04-15 13:58:27 +05301207
Kiran Venkatappa34bea522017-09-01 17:02:34 +05301208/**
1209 * wmi_save_ext_service_bitmap() - save extended service bitmap
1210 * @wmi_handle: wmi handle
1211 * @param evt_buf: pointer to event buffer
1212 *
1213 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS failure code
1214 */
1215QDF_STATUS wmi_save_ext_service_bitmap(void *wmi_hdl, void *evt_buf,
1216 void *bitmap_buf);
1217
Govind Singh89727882016-04-15 13:58:27 +05301218QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1219
1220QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001221 void *evt_buf,
1222 struct wlan_psoc_target_capability_info *ev);
Govind Singh89727882016-04-15 13:58:27 +05301223
1224QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001225 struct wlan_psoc_hal_reg_capability *hal_reg_cap);
Govind Singh89727882016-04-15 13:58:27 +05301226
1227host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1228 void *evt_buf, uint8_t *num_entries);
1229
1230uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1231
1232QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1233 void *ev, uint8_t *macaddr);
1234
Manoj Ekbote66496392017-07-09 23:28:56 -07001235wmi_host_mac_addr *wmi_ready_extract_mac_addr_list(void *wmi_hdl, void *ev,
1236 uint8_t *num_mac_addr);
1237
Kiran Venkatappaa40870a2017-11-10 20:50:12 +05301238/**
1239 * wmi_extract_ready_params() - Extract data from ready event apart from
1240 * status, macaddr and version.
1241 * @wmi_handle: Pointer to WMI handle.
1242 * @evt_buf: Pointer to Ready event buffer.
1243 * @ev_param: Pointer to host defined struct to copy the data from event.
1244 *
1245 * Return: QDF_STATUS_SUCCESS on success.
1246 */
1247QDF_STATUS wmi_extract_ready_event_params(void *wmi_hdl,
1248 void *evt_buf, struct wmi_host_ready_ev_param *ev_param);
1249
Govind Singh89727882016-04-15 13:58:27 +05301250QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1251 void *ev, struct wmi_host_fw_ver *fw_ver);
1252
1253QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1254 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1255
1256QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1257
1258uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
Rajeev Kumar45fdf7f2017-01-25 12:46:21 -08001259 void *evt_b, uint32_t *len);
Govind Singh89727882016-04-15 13:58:27 +05301260
1261QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1262 wmi_host_ext_resource_config *ext_cfg);
1263
1264QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1265
1266QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1267 struct packet_power_info_params *param);
1268
1269QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1270 struct gpio_config_params *param);
1271
1272QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1273 struct gpio_output_params *param);
1274
1275QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1276 struct rtt_meas_req_test_params *param);
1277
1278QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1279 struct rtt_meas_req_params *param);
1280
1281QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1282 struct rtt_keepalive_req_params *param);
1283
1284QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1285 struct lci_set_params *param);
1286
1287QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1288 struct lcr_set_params *param);
1289
1290QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1291 struct periodic_chan_stats_params *param);
1292
1293QDF_STATUS
1294wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1295 struct atf_peer_request_params *param);
1296
1297QDF_STATUS
1298wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1299 struct atf_grouping_params *param);
1300/* Extract APIs */
1301
1302QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1303 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1304
1305QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05301306 void *evt_buf, struct wmi_host_dcs_interference_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301307
1308QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1309 wmi_host_ath_dcs_cw_int *cw_int);
1310
1311QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1312 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1313
Govind Singh89727882016-04-15 13:58:27 +05301314QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301315 struct wmi_host_fips_event_param *param);
1316
Govind Singh89727882016-04-15 13:58:27 +05301317QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1318 wmi_host_vdev_start_resp *vdev_rsp);
Sathish Kumar744fbf72017-05-17 18:05:15 +05301319
Om Prakash Tripathi105b04b2017-11-24 16:53:07 +05301320/**
1321 * wmi_extract_vdev_delete_resp - api to extract vdev delete
1322 * response event params
1323 * @wmi_handle: wma handle
1324 * @evt_buf: pointer to event buffer
1325 * @delele_rsp: pointer to hold delete response from firmware
1326 *
1327 * Return: QDF_STATUS_SUCCESS for successful event parse
1328 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1329 */
1330QDF_STATUS wmi_extract_vdev_delete_resp(void *wmi_hdl, void *evt_buf,
1331 struct wmi_host_vdev_delete_resp *delele_rsp);
1332
Govind Singh89727882016-04-15 13:58:27 +05301333QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
Sathish Kumar744fbf72017-05-17 18:05:15 +05301334 uint8_t idx, struct tbttoffset_params *tbtt_param);
1335
1336QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
1337 void *evt_buf, uint8_t idx,
1338 struct tbttoffset_params *tbtt_param);
1339
1340QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1341 uint32_t *num_vdevs);
1342
1343QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1344 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301345
1346QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
Himanshu Agarwal53d526b2017-01-05 14:23:18 +05301347 struct mgmt_rx_event_params *hdr, uint8_t **bufp);
Govind Singh89727882016-04-15 13:58:27 +05301348
1349QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1350 uint32_t *vdev_id);
1351
1352QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1353 wmi_host_roam_event *ev);
1354
1355QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +05301356 struct scan_event *param);
Govind Singh89727882016-04-15 13:58:27 +05301357
Frank Liu0ba573b2017-03-15 17:51:43 +08001358#ifdef CONVERGED_TDLS_ENABLE
1359/**
1360 * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1361 * @wmi_handle: wmi handle
1362 * @param evt_buf: pointer to event buffer
1363 * @param param: Pointer to hold vdev tdls param
1364 *
1365 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1366 */
1367QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1368 struct tdls_event_info *param);
1369#endif
1370
Govind Singh89727882016-04-15 13:58:27 +05301371QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1372 wmi_host_mu_report_event *param);
1373
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301374QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1375 uint8_t idx, wmi_host_mu_db_entry *param);
1376
1377QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1378 wmi_host_peer_txmu_cnt_event *param);
1379
1380QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1381 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1382
1383QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1384 void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1385
Govind Singh89727882016-04-15 13:58:27 +05301386QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1387 wmi_host_pdev_tpc_config_event *param);
1388
1389QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1390 void *evt_buf, uint32_t *gpio_num);
1391
1392QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
Kiran Venkatappa3f061a92017-02-08 14:57:16 +05301393 void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301394
1395QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1396 wmi_host_pdev_nfcal_power_all_channels_event *param);
1397
1398QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1399 wmi_host_pdev_tpc_event *param);
1400
1401QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1402 void *evt_buf,
1403 wmi_host_pdev_generic_buffer_event *param);
1404
1405QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1406 wmi_host_mgmt_tx_compl_event *param);
1407
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301408QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
1409 struct wmi_host_offchan_data_tx_compl_event *param);
1410
Sathish Kumar907a7462017-02-27 10:35:40 +05301411QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
1412 void *evt_buf,
1413 struct pdev_csa_switch_count_status *param);
1414
Sathish Kumar744fbf72017-05-17 18:05:15 +05301415QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
1416 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301417
1418QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1419 uint32_t idx, wmi_host_tim_info *tim_info);
1420
1421QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1422 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1423
Wu Gao07ba6b42017-03-13 20:17:34 +08001424#ifdef CONVERGED_P2P_ENABLE
1425QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1426 void *evt_buf, struct p2p_lo_event *param);
1427
1428QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1429 void *evt_buf, struct p2p_noa_info *param);
1430#endif
1431
Govind Singh89727882016-04-15 13:58:27 +05301432QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1433 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1434
1435QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1436 wmi_host_peer_sta_kickout_event *ev);
1437
1438QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1439 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1440
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001441QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1442 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1443
Govind Singh89727882016-04-15 13:58:27 +05301444QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1445 wmi_host_rtt_event_hdr *ev);
1446
1447QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1448 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1449 uint16_t hdump_len);
1450
1451QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1452 wmi_host_rtt_error_report_event *ev);
1453
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001454QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1455 uint32_t index, wmi_host_chan_stats *chan_stats);
1456
Govind Singh89727882016-04-15 13:58:27 +05301457QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi2f54fbb2017-04-19 16:57:31 +05301458 uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
Govind Singh89727882016-04-15 13:58:27 +05301459
1460QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1461 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1462
1463QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1464 uint16_t datalen, uint16_t *buf_offset,
1465 wmi_host_phyerr_t *phyerr);
1466
1467QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1468 uint16_t datalen, uint16_t *buf_offset,
1469 wmi_host_phyerr_t *phyerr);
1470
1471QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1472 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1473
1474QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1475 wmi_host_wlan_profile_ctx_t *profile_ctx);
1476
Govind Singh41da3152016-05-06 20:20:25 +05301477QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301478 wmi_host_wlan_profile_t *profile_data);
1479
1480QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1481 wmi_host_chan_info_event *chan_info);
1482
1483QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1484 wmi_host_pdev_channel_hopping_event *ch_hopping);
1485
1486QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1487 wmi_host_stats_event *stats_param);
1488
1489QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1490 uint32_t index,
1491 wmi_host_pdev_stats *pdev_stats);
1492
Adil Saeed Musthafa0b6c7602017-08-23 17:32:11 -07001493QDF_STATUS wmi_extract_unit_test(void *wmi_hdl, void *evt_buf,
1494 wmi_unit_test_event *unit_test, uint32_t maxspace);
1495
Govind Singh89727882016-04-15 13:58:27 +05301496QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1497 uint32_t index,
1498 wmi_host_pdev_ext_stats *pdev_ext_stats);
1499
1500QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1501 uint32_t index,
1502 wmi_host_peer_extd_stats *peer_extd_stats);
1503
1504QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1505 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1506
1507QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1508 wmi_host_inst_stats_resp *inst_rssi_resp);
1509
1510QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1511 uint32_t index, wmi_host_peer_stats *peer_stats);
1512
1513QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1514 wmi_host_tx_data_traffic_ctrl_event *ev);
1515
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301516QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1517 wmi_host_atf_peer_stats_event *ev);
1518
1519QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
1520 uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
1521
Govind Singh89727882016-04-15 13:58:27 +05301522QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1523 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1524
1525QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1526 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301527
Gurumoorthi Gnanasambandhan18977552017-11-06 22:04:17 +05301528QDF_STATUS wmi_extract_bcn_stats(void *wmi_hdl, void *evt_buf,
1529 uint32_t index, wmi_host_bcn_stats *vdev_bcn_stats);
1530
Govind Singhc10bde82016-05-02 17:59:24 +05301531QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1532 struct wmi_power_dbg_params *param);
Sathish Kumar907a7462017-02-27 10:35:40 +05301533
1534QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
1535 struct multiple_vdev_restart_params *param);
1536
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001537QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1538 struct sar_limit_cmd_params *params);
Gupta, Kapil7b768002016-04-25 19:14:19 +05301539QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1540 struct wmi_adaptive_dwelltime_params *
1541 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301542QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1543 struct set_fwtest_params *wmi_fwtest);
1544
Leo Chang8184e9c2016-09-28 13:43:36 -07001545QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1546 struct rx_reorder_queue_setup_params *param);
1547QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1548 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301549
1550QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001551 struct wlan_psoc_host_service_ext_param *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301552QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1553 void *wmi_hdl,
1554 uint8_t *evt_buf, uint8_t hw_mode_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001555 struct wlan_psoc_host_hw_mode_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301556QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1557 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301558 uint8_t *evt_buf,
1559 uint8_t hw_mode_id,
1560 uint8_t phy_id,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001561 struct wlan_psoc_host_mac_phy_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301562QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1563 void *wmi_hdl,
1564 uint8_t *evt_buf, uint8_t phy_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001565 struct wlan_psoc_host_hal_reg_capabilities_ext *param);
Sathish Kumar3d3cf4f2017-11-17 17:30:41 +05301566
1567/**
1568 * wmi_extract_dbr_ring_cap_service_ready_ext: Extract direct buffer rx
1569 * capability received through
1570 * extended service ready event
1571 * @wmi_hdl: WMI handle
1572 * @evt_buf: Event buffer
1573 * @idx: Index of the module for which capability is received
1574 * @param: Pointer to direct buffer rx ring cap struct
1575 *
1576 * Return: QDF status of operation
1577 */
1578QDF_STATUS wmi_extract_dbr_ring_cap_service_ready_ext(
1579 void *wmi_hdl,
1580 uint8_t *evt_buf, uint8_t idx,
1581 struct wlan_psoc_host_dbr_ring_caps *param);
1582
1583/**
1584 * wmi_extract_dbr_buf_release_fixed : Extract direct buffer rx fixed param
1585 * from buffer release event
1586 * @wmi_hdl: WMI handle
1587 * @evt_buf: Event buffer
1588 * @param: Pointer to direct buffer rx response struct
1589 *
1590 * Return: QDF status of operation
1591 */
1592QDF_STATUS wmi_extract_dbr_buf_release_fixed(
1593 void *wmi_hdl,
1594 uint8_t *evt_buf,
1595 struct direct_buf_rx_rsp *param);
1596
1597/**
1598 * wmi_extract_dbr_buf_release_entry: Extract direct buffer rx buffer tlv
1599 *
1600 * @wmi_hdl: WMI handle
1601 * @evt_buf: Event buffer
1602 * @idx: Index of the module for which capability is received
1603 * @param: Pointer to direct buffer rx entry
1604 *
1605 * Return: QDF status of operation
1606 */
1607QDF_STATUS wmi_extract_dbr_buf_release_entry(
1608 void *wmi_hdl,
1609 uint8_t *evt_buf, uint8_t idx,
1610 struct direct_buf_rx_entry *param);
Sathish Kumar617535c2017-01-24 17:51:26 +05301611QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1612 uint8_t *evt_buf,
1613 struct wmi_host_pdev_utf_event *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301614
Kiran Venkatappa3d514982017-02-28 14:19:17 +05301615QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1616 uint8_t *evt_buf,
1617 struct wmi_host_pdev_qvit_event *param);
1618
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301619QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1620 uint8_t *evt_buf,
1621 struct wmi_host_peer_delete_response_event *param);
Arif Hussain85604fb2017-01-07 18:21:55 -08001622
Vikram Kandukuric83feb62017-03-07 18:40:13 +05301623QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1624 struct wlan_psoc_host_chainmask_table *chainmask_table);
Arif Hussain85604fb2017-01-07 18:21:55 -08001625/**
1626 * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1627 * @wmi_handle: wmi handle
1628 * @pdev_id: pdev id
1629 *
1630 * Return: QDF_STATUS
1631 */
1632QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1633 uint32_t pdev_id);
1634
1635/**
1636 * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
1637 * @wmi_handle: wmi handle
1638 * @pdev_id: pdev id
1639 *
1640 * Return: QDF_STATUS
1641 */
1642QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
1643 uint32_t pdev_id);
Dustin Browne58fbc72017-04-03 17:00:07 -07001644
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001645QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1646 struct set_country *param);
Vignesh Viswanathan90cd7742017-09-25 14:36:38 +05301647/*
1648 * wmi_unified_set_del_pmkid_cache() - set delete PMKID
1649 * @wmi_hdl: wma handle
1650 * @pmksa: pointer to pmk cache entry
1651 *
1652 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1653 */
1654QDF_STATUS wmi_unified_set_del_pmkid_cache(void *wmi_hdl,
1655 struct wmi_unified_pmk_cache *pmksa);
1656
1657#if defined(WLAN_FEATURE_FILS_SK)
1658/*
1659 * wmi_unified_roam_send_hlp_cmd() -send HLP command info
1660 * @wmi_hdl: wma handle
1661 * @req_buf: Pointer to HLP params
1662 *
1663 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1664 */
1665QDF_STATUS wmi_unified_roam_send_hlp_cmd(void *wmi_hdl,
1666 struct hlp_params *req_buf);
1667#endif
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001668
Rajeev Kumar Sirasanagandlacddf6fe2016-11-22 21:28:54 +05301669/**
1670 * wmi_unified_send_request_get_rcpi_cmd() - command to request rcpi value
1671 * @wmi_hdl: wma handle
1672 * @get_rcpi_param: rcpi params
1673 *
1674 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1675 */
1676QDF_STATUS wmi_unified_send_request_get_rcpi_cmd(void *wmi_hdl,
1677 struct rcpi_req *get_rcpi_param);
1678
1679/**
1680 * wmi_extract_rcpi_response_event - api to extract RCPI event params
1681 * @wmi_handle: wma handle
1682 * @evt_buf: pointer to event buffer
1683 * @res: pointer to hold rcpi response from firmware
1684 *
1685 * Return: QDF_STATUS_SUCCESS for successful event parse
1686 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1687 */
1688QDF_STATUS wmi_extract_rcpi_response_event(void *wmi_hdl, void *evt_buf,
1689 struct rcpi_res *res);
1690
Dustin Browne58fbc72017-04-03 17:00:07 -07001691#ifdef WMI_INTERFACE_EVENT_LOGGING
1692void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
1693 qdf_abstract_print *print, void *print_priv);
1694
1695void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1696 qdf_abstract_print *print, void *print_priv);
1697
1698void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
1699 qdf_abstract_print *print, void *print_priv);
1700
1701void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1702 qdf_abstract_print *print, void *print_priv);
1703
1704void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
1705 qdf_abstract_print *print, void *print_priv);
1706
1707void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
1708 qdf_abstract_print *print, void *print_priv);
1709
1710void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
1711 qdf_abstract_print *print, void *print_priv);
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001712
Dustin Browne58fbc72017-04-03 17:00:07 -07001713#endif /* WMI_INTERFACE_EVENT_LOGGING */
1714
Nitesh Shahfb9e88b2017-05-22 15:49:00 +05301715QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
1716 struct wmi_dbs_scan_sel_params *wmi_param);
Ganesh Kondabattini20b086b2017-07-10 11:54:11 +05301717
1718QDF_STATUS wmi_unified_send_limit_off_chan_cmd(void *wmi_hdl,
1719 struct wmi_limit_off_chan_param *wmi_param);
Anurag Chouhanc1705422017-09-11 14:56:30 +05301720QDF_STATUS wmi_unified_set_arp_stats_req(void *wmi_hdl,
1721 struct set_arp_stats *req_buf);
1722QDF_STATUS wmi_unified_get_arp_stats_req(void *wmi_hdl,
1723 struct get_arp_stats *req_buf);
Kiran Venkatappaf9b1de32017-11-08 19:32:23 +05301724
1725/**
1726 * wmi_send_bcn_offload_control_cmd - send beacon ofload control cmd to fw
1727 * @wmi_hdl: wmi handle
1728 * @bcn_ctrl_param: pointer to bcn_offload_control param
1729 *
1730 * Return: QDF_STATUS_SUCCESS for success or error code
1731 */
1732QDF_STATUS wmi_send_bcn_offload_control_cmd(void *wmi_hdl,
1733 struct bcn_offload_control *bcn_ctrl_param);
Rathees kumar Chinannanaff64b02017-11-22 17:03:57 +05301734/**
1735 * wmi_unified_send_wds_entry_list_cmd() - WMI function to get list of
1736 * wds entries from FW
1737 * @wmi_handle: wmi handle
1738 *
1739 * Send WMI_PDEV_WDS_ENTRY_LIST_CMDID parameters to fw.
1740 *
1741 * Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
1742 */
1743
1744QDF_STATUS wmi_unified_send_dump_wds_table_cmd(void *wmi_hdl);
1745
1746/**
1747 * wmi_extract_wds_entry - api to extract wds entry
1748 * @wmi_handle: wma handle
1749 * @evt_buf: pointer to event buffer
1750 * @wds_entry: wds entry
1751 * @idx: index to point wds entry in event buffer
1752 *
1753 * Return: QDF_STATUS_SUCCESS for successful event parse
1754 * else QDF_STATUS_E_INVAL or QDF_STATUS_E_FAILURE
1755 */
1756
1757QDF_STATUS wmi_extract_wds_entry(void *wmi_hdl, uint8_t *evt_buf,
1758 struct wdsentry *wds_entry, u_int32_t idx);
Govind Singhd475ea92016-03-06 19:55:02 +05301759#endif /* _WMI_UNIFIED_API_H_ */