blob: a2892873b03089d57c629337a519c52ed14abf9e [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>
37#include "a_types.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053038#ifdef CONFIG_MCL
Govind Singhd475ea92016-03-06 19:55:02 +053039#include "wmi.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053040#endif
Govind Singhd475ea92016-03-06 19:55:02 +053041#include "htc_api.h"
Govind Singh3ddda1f2016-03-09 11:34:12 +053042#include "wmi_unified_param.h"
Mukul Sharma36d159b2017-01-30 19:55:40 +053043#include "wlan_objmgr_psoc_obj.h"
Himanshu Agarwal53d526b2017-01-05 14:23:18 +053044#include "wlan_mgmt_txrx_utils_api.h"
Mukul Sharmaba196f52017-02-25 01:50:47 +053045#ifdef WLAN_PMO_ENABLE
46#include "wmi_unified_pmo_api.h"
47#endif
Wu Gao07ba6b42017-03-13 20:17:34 +080048#ifdef CONVERGED_P2P_ENABLE
49#include "wlan_p2p_public_struct.h"
50#endif
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +053051#include "wlan_scan_public_structs.h"
Govind Singhd475ea92016-03-06 19:55:02 +053052
Govind Singhd7468a52016-03-09 14:32:57 +053053typedef qdf_nbuf_t wmi_buf_t;
54#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
55
56#define WMI_LOGD(args ...) \
57 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
58#define WMI_LOGI(args ...) \
59 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
60#define WMI_LOGW(args ...) \
61 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
62#define WMI_LOGE(args ...) \
63 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
64#define WMI_LOGP(args ...) \
65 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
66
67#define WMI_DEBUG_ALWAYS
68
69#ifdef WMI_DEBUG_ALWAYS
70#define WMI_LOGA(args ...) \
71 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
72#else
73#define WMI_LOGA(args ...)
74#endif
Govind Singhd475ea92016-03-06 19:55:02 +053075
Kiran Venkatappa929dd292017-02-10 16:57:59 +053076struct wmi_soc;
Govind Singhd475ea92016-03-06 19:55:02 +053077/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053078 * struct wmi_ops - service callbacks to upper layer
79 * @service_ready_cbk: service ready callback
80 * @service_ready_ext_cbk: service ready ext callback
81 * @ready_cbk: ready calback
82 * @wma_process_fw_event_handler_cbk: generic event handler callback
83 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053084struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053085
Govind Singh6ad6ada2016-02-04 18:42:30 +053086 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +053087 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +053088};
89
90/**
91 * enum wmi_target_type - type of supported wmi command
92 * @WMI_TLV_TARGET: tlv based target
93 * @WMI_NON_TLV_TARGET: non-tlv based target
94 *
95 */
96enum wmi_target_type {
97 WMI_TLV_TARGET,
98 WMI_NON_TLV_TARGET
99};
100
101/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530102 * enum wmi_rx_exec_ctx - wmi rx execution context
103 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
104 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
105 *
106 */
107enum wmi_rx_exec_ctx {
108 WMI_RX_WORK_CTX,
109 WMI_RX_UMAC_CTX
110};
111
112/**
Govind Singhd475ea92016-03-06 19:55:02 +0530113 * attach for unified WMI
114 *
115 * @param scn_handle : handle to SCN.
Govind Singh89727882016-04-15 13:58:27 +0530116 * @param target_type : type of supported wmi command
117 * @param use_cookie : flag to indicate cookie based allocation
118 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530119 * @psoc : objmgr psoc
Govind Singhd475ea92016-03-06 19:55:02 +0530120 * @return opaque handle.
121 */
122void *wmi_unified_attach(void *scn_handle,
Govind Singh6ad6ada2016-02-04 18:42:30 +0530123 osdev_t osdev, enum wmi_target_type target_type,
Mukul Sharma36d159b2017-01-30 19:55:40 +0530124 bool use_cookie, struct wmi_rx_ops *ops,
125 struct wlan_objmgr_psoc *psoc);
126
Govind Singh6ad6ada2016-02-04 18:42:30 +0530127
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700128
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700129/**
130 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
131 *
132 * @wmi_handle: wmi handle
133 * @cmd: mgmt command
134 * @header: pointer to 802.11 header
135 * @vdev_id: vdev id
136 * @chanfreq: channel frequency
137 *
138 * Return: none
139 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530140void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700141 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700142
Govind Singhd475ea92016-03-06 19:55:02 +0530143/**
144 * detach for unified WMI
145 *
146 * @param wmi_handle : handle to WMI.
147 * @return void.
148 */
149void wmi_unified_detach(struct wmi_unified *wmi_handle);
150
151void
152wmi_unified_remove_work(struct wmi_unified *wmi_handle);
153
154/**
155 * generic function to allocate WMI buffer
156 *
157 * @param wmi_handle : handle to WMI.
158 * @param len : length of the buffer
159 * @return wmi_buf_t.
160 */
161#ifdef MEMORY_DEBUG
162#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
163wmi_buf_t
164wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
165 uint8_t *file_name, uint32_t line_num);
166#else
167wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
168#endif
169
170/**
171 * generic function frees WMI net buffer
172 *
173 * @param net_buf : Pointer ot net_buf to be freed
174 */
175void wmi_buf_free(wmi_buf_t net_buf);
176
177/**
178 * generic function to send unified WMI command
179 *
180 * @param wmi_handle : handle to WMI.
181 * @param buf : wmi command buffer
182 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530183 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530184 * @return 0 on success and -ve on failure.
185 */
Houston Hoffman09f96f92016-09-27 23:29:49 -0700186QDF_STATUS
Govind Singh6ad6ada2016-02-04 18:42:30 +0530187wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530188 uint32_t cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530189
190/**
Soumya Bhat49a84812017-03-22 14:41:01 +0530191 * wmi_unified_register_event() - WMI event handler
192 * registration function for converged components
193 *
194 * @wmi_handle: handle to WMI.
195 * @event_id: WMI event ID
196 * @handler_func: Event handler call back function
197 *
198 * @return 0 on success and -ve on failure.
199 */
200int
201wmi_unified_register_event(wmi_unified_t wmi_handle,
202 uint32_t event_id,
203 wmi_unified_event_handler handler_func);
204
205/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530206 * wmi_unified_register_event_handler() - WMI event handler
207 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530208 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530209 * @wmi_handle: handle to WMI.
210 * @event_id: WMI event ID
211 * @handler_func: Event handler call back function
212 * @rx_ctx: rx event processing context
213 *
Govind Singhd475ea92016-03-06 19:55:02 +0530214 * @return 0 on success and -ve on failure.
215 */
216int
217wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530218 uint32_t event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530219 wmi_unified_event_handler handler_func,
220 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530221
222/**
Soumya Bhat070cd052017-03-27 12:26:56 +0530223 * WMI event handler unregister function for converged componets
224 *
225 * @param wmi_handle : handle to WMI.
226 * @param event_id : WMI event ID
227 * @return 0 on success and -ve on failure.
228 */
229int
230wmi_unified_unregister_event(wmi_unified_t wmi_handle,
231 uint32_t event_id);
232
233/**
Govind Singhd475ea92016-03-06 19:55:02 +0530234 * WMI event handler unregister function
235 *
236 * @param wmi_handle : handle to WMI.
237 * @param event_id : WMI event ID
238 * @return 0 on success and -ve on failure.
239 */
240int
241wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530242 uint32_t event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530243
244/**
245 * request wmi to connet its htc service.
246 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530247 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530248 * @return void
249 */
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530250QDF_STATUS
Govind Singhd475ea92016-03-06 19:55:02 +0530251wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
252 void *htc_handle);
253
254/*
255 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530256 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530257 */
258
259int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
260
261/**
Govind Singh89727882016-04-15 13:58:27 +0530262 * WMI API to get updated host_credits
263 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530264 */
265
266int wmi_get_host_credits(wmi_unified_t wmi_handle);
267
268/**
Govind Singh89727882016-04-15 13:58:27 +0530269 * WMI API to get WMI Pending Commands in the HTC queue
270 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530271 */
272
273int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
274
275/**
Govind Singh89727882016-04-15 13:58:27 +0530276 * WMI API to set target suspend state
277 * @param wmi_handle : handle to WMI.
278 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530279 */
Govind Singhd475ea92016-03-06 19:55:02 +0530280void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
281
Govind Singh89727882016-04-15 13:58:27 +0530282/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530283 * WMI API to set bus suspend state
284 * @param wmi_handle: handle to WMI.
285 * @param val: suspend state boolean
286 */
287void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
288
289/**
290 * WMI API to set crash injection state
291 * @param wmi_handle: handle to WMI.
292 * @param val: crash injection state boolean
293 */
294void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
295
296/**
Govind Singh89727882016-04-15 13:58:27 +0530297 * generic function to block unified WMI command
298 * @param wmi_handle : handle to WMI.
299 * @return 0 on success and -ve on failure.
300 */
301int
302wmi_stop(wmi_unified_t wmi_handle);
303
304/**
305 * API to flush all the previous packets associated with the wmi endpoint
306 *
307 * @param wmi_handle : handle to WMI.
308 */
309void
310wmi_flush_endpoint(wmi_unified_t wmi_handle);
311
312/**
Kiran Venkatappa49341042017-05-10 16:24:51 +0530313 * wmi_pdev_id_conversion_enable() - API to enable pdev_id conversion in WMI
314 * By default pdev_id conversion is not done in WMI.
315 * This API can be used enable conversion in WMI.
316 * @param wmi_handle : handle to WMI
317 * Return none
318 */
319void wmi_pdev_id_conversion_enable(wmi_unified_t wmi_handle);
320
321/**
Govind Singh89727882016-04-15 13:58:27 +0530322 * API to handle wmi rx event after UMAC has taken care of execution
323 * context
324 *
325 * @param wmi_handle : handle to WMI.
326 * @param evt_buf : wmi event buffer
327 */
328void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530329#ifdef FEATURE_RUNTIME_PM
330void
331wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
332bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
333#else
334static inline void
335wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
336{
337 return;
338}
339static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
340{
341 return false;
342}
343#endif
344
Kiran Venkatappa929dd292017-02-10 16:57:59 +0530345void *wmi_unified_get_soc_handle(struct wmi_unified *wmi_handle);
346
347void *wmi_unified_get_pdev_handle(struct wmi_soc *soc, uint32_t pdev_idx);
348
Govind Singhd475ea92016-03-06 19:55:02 +0530349/**
Govind Singhd7468a52016-03-09 14:32:57 +0530350 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530351 * @param wmi_handle : handle to WMI.
352 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530353 */
Govind Singhd475ea92016-03-06 19:55:02 +0530354void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
355uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530356
357
Govind Singhd7468a52016-03-09 14:32:57 +0530358QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530359 uint8_t macaddr[IEEE80211_ADDR_LEN],
360 struct vdev_create_params *param);
361
Govind Singhd7468a52016-03-09 14:32:57 +0530362QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530363 uint8_t if_id);
364
Govind Singhd7468a52016-03-09 14:32:57 +0530365QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530366 uint8_t macaddr[IEEE80211_ADDR_LEN],
367 struct vdev_start_params *param);
368
Govind Singhd7468a52016-03-09 14:32:57 +0530369QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530370 uint8_t vdev_id);
371
Govind Singhd7468a52016-03-09 14:32:57 +0530372QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530373 uint8_t bssid[IEEE80211_ADDR_LEN],
374 struct vdev_up_params *params);
375
Govind Singhd7468a52016-03-09 14:32:57 +0530376QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530377 uint8_t vdev_id);
378
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530379QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
380 struct vdev_start_params *req);
381
382QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
383 struct hidden_ssid_vdev_restart_params *restart_params);
384
Govind Singhd7468a52016-03-09 14:32:57 +0530385QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530386 struct vdev_set_params *param);
387
Govind Singhd7468a52016-03-09 14:32:57 +0530388QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530389 uint8_t
390 peer_addr[IEEE80211_ADDR_LEN],
391 uint8_t vdev_id);
392
Govind Singhd7468a52016-03-09 14:32:57 +0530393QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530394 uint8_t peer_addr[IEEE80211_ADDR_LEN],
395 struct peer_flush_params *param);
396
Govind Singhd7468a52016-03-09 14:32:57 +0530397QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530398 uint8_t peer_addr[IEEE80211_ADDR_LEN],
399 struct peer_set_params *param);
400
Govind Singhd7468a52016-03-09 14:32:57 +0530401QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530402 struct peer_create_params *param);
403
Govind Singhd7468a52016-03-09 14:32:57 +0530404QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530405 uint8_t macaddr[IEEE80211_ADDR_LEN],
406 struct stats_request_params *param);
407
Govind Singhd7468a52016-03-09 14:32:57 +0530408QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530409 uint32_t value, uint8_t mac_id);
410
411
Govind Singhd7468a52016-03-09 14:32:57 +0530412QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530413 struct wow_cmd_params *param,
414 uint8_t mac_id);
415
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700416QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
417
418QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
419 struct wow_add_wakeup_params *param);
420
421QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
422 struct wow_add_wakeup_pattern_params *param);
423
424QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
425 struct wow_remove_wakeup_pattern_params *param);
426
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530427#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530428QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Keyur Parekh483138e2017-05-07 08:54:47 -0700429 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT, uint8_t mac_id);
Govind Singh89727882016-04-15 13:58:27 +0530430#else
Govind Singhd7468a52016-03-09 14:32:57 +0530431QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530432 uint8_t macaddr[IEEE80211_ADDR_LEN],
433 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530434#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530435
Keyur Parekh483138e2017-05-07 08:54:47 -0700436QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl, uint8_t mac_id);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530437
Govind Singhd7468a52016-03-09 14:32:57 +0530438QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530439 struct suspend_params *param,
440 uint8_t mac_id);
441
Govind Singhd7468a52016-03-09 14:32:57 +0530442QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530443 uint8_t mac_id);
444
Govind Singhd7468a52016-03-09 14:32:57 +0530445QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530446wmi_unified_pdev_param_send(void *wmi_hdl,
447 struct pdev_params *param,
448 uint8_t mac_id);
449
Govind Singh89727882016-04-15 13:58:27 +0530450QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
451 struct beacon_tmpl_params *param);
452
453
Govind Singhd7468a52016-03-09 14:32:57 +0530454QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530455 struct beacon_params *param);
456
Govind Singhd7468a52016-03-09 14:32:57 +0530457QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530458 struct peer_assoc_params *param);
459
Govind Singhd7468a52016-03-09 14:32:57 +0530460QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530461 struct sta_ps_params *param);
462
Govind Singhd7468a52016-03-09 14:32:57 +0530463QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530464 uint8_t macaddr[IEEE80211_ADDR_LEN],
465 struct ap_ps_params *param);
466
Govind Singhd7468a52016-03-09 14:32:57 +0530467QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530468 struct scan_req_params *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530469
Govind Singhd7468a52016-03-09 14:32:57 +0530470QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +0530471 struct scan_cancel_param *param);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530472
Govind Singhd7468a52016-03-09 14:32:57 +0530473QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530474 struct scan_chan_list_params *param);
475
476
Govind Singhd7468a52016-03-09 14:32:57 +0530477QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530478 struct crash_inject *param);
479
Govind Singhd7468a52016-03-09 14:32:57 +0530480QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530481 struct pdev_utf_params *param,
482 uint8_t mac_id);
483
Govind Singhd7468a52016-03-09 14:32:57 +0530484QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530485 struct dbglog_params *param);
486
Govind Singhd7468a52016-03-09 14:32:57 +0530487QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530488 struct wmi_mgmt_params *param);
489
Kiran Venkatappa25c47022017-03-19 22:58:09 +0530490QDF_STATUS wmi_offchan_data_tx_cmd_send(void *wmi_hdl,
491 struct wmi_offchan_data_tx_params *param);
492
Govind Singhd7468a52016-03-09 14:32:57 +0530493QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530494 uint32_t param_value);
495
Govind Singhd7468a52016-03-09 14:32:57 +0530496QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530497 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530498QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530499wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
500 struct sta_uapsd_trig_params *param);
501
Govind Singhd7468a52016-03-09 14:32:57 +0530502QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530503
Govind Singhd7468a52016-03-09 14:32:57 +0530504QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530505 struct p2p_ps_params *oppps);
506
Govind Singhd7468a52016-03-09 14:32:57 +0530507QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530508 struct p2p_ps_params *noa);
509
Wu Gao07ba6b42017-03-13 20:17:34 +0800510#ifdef CONVERGED_P2P_ENABLE
511QDF_STATUS wmi_unified_p2p_lo_start_cmd(void *wmi_hdl,
512 struct p2p_lo_start *param);
513
514QDF_STATUS wmi_unified_p2p_lo_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
515#endif
516
Govind Singhd7468a52016-03-09 14:32:57 +0530517QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530518 int value);
519
Govind Singhd7468a52016-03-09 14:32:57 +0530520QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530521
Govind Singhd7468a52016-03-09 14:32:57 +0530522QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530523 struct ocb_utc_param *utc);
524
Govind Singhd7468a52016-03-09 14:32:57 +0530525QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530526 struct ocb_timing_advert_param *timing_advert);
527
Govind Singhd7468a52016-03-09 14:32:57 +0530528QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530529 struct ocb_timing_advert_param *timing_advert);
530
Govind Singhd7468a52016-03-09 14:32:57 +0530531QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530532 struct ocb_config_param *config, uint32_t *ch_mhz);
533
Govind Singhd7468a52016-03-09 14:32:57 +0530534QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530535 uint8_t vdev_id);
536
Govind Singhd7468a52016-03-09 14:32:57 +0530537QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530538 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
539
Govind Singhd7468a52016-03-09 14:32:57 +0530540QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530541 struct thermal_cmd_params *thermal_info);
542
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530543QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
544 struct wmi_peer_rate_report_params *rate_report_params);
545
Govind Singhd7468a52016-03-09 14:32:57 +0530546QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530547 (void *wmi_hdl,
548 uint32_t adapter_1_chan_freq,
549 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
550
Govind Singhd7468a52016-03-09 14:32:57 +0530551QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530552 (void *wmi_hdl,
553 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
554
Govind Singhd7468a52016-03-09 14:32:57 +0530555QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700556 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
557 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530558
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530559#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530560QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530561 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530562#endif
Govind Singhae855362016-03-07 14:24:22 +0530563
Govind Singhd7468a52016-03-09 14:32:57 +0530564QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530565 uint8_t vdev_id, uint32_t max_retries,
566 uint32_t retry_interval);
567
568
Govind Singhd7468a52016-03-09 14:32:57 +0530569QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530570 struct sta_params *params);
571
Govind Singhd7468a52016-03-09 14:32:57 +0530572QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530573 struct wmi_gtx_config *gtx_info);
574
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530575#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530576QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530577 uint8_t vdev_id,
578 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
Govind Singh89727882016-04-15 13:58:27 +0530579#endif
Govind Singhae855362016-03-07 14:24:22 +0530580
581
Govind Singhd7468a52016-03-09 14:32:57 +0530582QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530583 uint8_t vdev_id,
584 struct wmi_probe_resp_params *probe_rsp_info,
585 uint8_t *frm);
586
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530587QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
588 struct set_key_params *key_params);
589
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530590QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
591 struct encrypt_decrypt_req_params *params);
592
Govind Singhd7468a52016-03-09 14:32:57 +0530593QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530594 A_UINT32 vdev_id, uint8_t *p2p_ie);
595
596
Govind Singhd7468a52016-03-09 14:32:57 +0530597QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530598 struct gateway_update_req_param *req);
599
Govind Singhd7468a52016-03-09 14:32:57 +0530600QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530601 struct rssi_monitor_param *req);
602
Govind Singhd7468a52016-03-09 14:32:57 +0530603QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530604 struct scan_mac_oui *psetoui);
605
Govind Singhd7468a52016-03-09 14:32:57 +0530606QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530607 struct wifi_passpoint_req_param *req);
608
Govind Singhd7468a52016-03-09 14:32:57 +0530609QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530610 struct wifi_passpoint_req_param *req);
611
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530612#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530613QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
614 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
615 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530616#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530617
618QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
619 struct roam_offload_scan_rssi_params *roam_req);
620
621QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
622 struct roam_scan_filter_params *roam_req);
623
Govind Singhd7468a52016-03-09 14:32:57 +0530624QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530625 struct wifi_enhanched_pno_params *req);
626
Govind Singhd7468a52016-03-09 14:32:57 +0530627QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530628 struct ipa_offload_control_params *ipa_offload);
629
Govind Singhd7468a52016-03-09 14:32:57 +0530630QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530631 struct extscan_capabilities_params *pgetcapab);
632
Govind Singhd7468a52016-03-09 14:32:57 +0530633QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530634 struct extscan_cached_result_params *pcached_results);
635
636
Govind Singhd7468a52016-03-09 14:32:57 +0530637QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530638 struct extscan_capabilities_reset_params *reset_req);
639
640
Govind Singhd7468a52016-03-09 14:32:57 +0530641QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530642 struct extscan_set_sig_changereq_params *
643 psigchange);
644
Govind Singhd7468a52016-03-09 14:32:57 +0530645QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530646 struct extscan_bssid_hotlist_reset_params *photlist_reset);
647
Govind Singhd7468a52016-03-09 14:32:57 +0530648QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530649 struct extscan_stop_req_params *pstopcmd);
650
Govind Singhd7468a52016-03-09 14:32:57 +0530651QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530652 struct wifi_scan_cmd_req_params *pstart);
653
Govind Singhd7468a52016-03-09 14:32:57 +0530654QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530655 const struct plm_req_params *plm);
656
Govind Singhd7468a52016-03-09 14:32:57 +0530657QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530658 const struct plm_req_params *plm,
659 uint32_t *gchannel_list);
660
Govind Singhd7468a52016-03-09 14:32:57 +0530661QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530662
Govind Singh89727882016-04-15 13:58:27 +0530663#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530664QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Abhishek Singhd4184662017-03-03 22:09:07 +0530665 struct pno_scan_req_params *pno);
Govind Singh89727882016-04-15 13:58:27 +0530666#endif
Govind Singhae855362016-03-07 14:24:22 +0530667
Govind Singhd7468a52016-03-09 14:32:57 +0530668QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530669 uint8_t is_add_ts);
670
Govind Singhd7468a52016-03-09 14:32:57 +0530671QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530672 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
673 uint8_t addr[IEEE80211_ADDR_LEN]);
674
Govind Singhd7468a52016-03-09 14:32:57 +0530675QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530676 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
677
Govind Singhd7468a52016-03-09 14:32:57 +0530678QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530679 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
680 uint8_t addr[IEEE80211_ADDR_LEN]);
681
Govind Singhd7468a52016-03-09 14:32:57 +0530682QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530683 struct pe_stats_req *get_stats_param,
684 uint8_t addr[IEEE80211_ADDR_LEN]);
685
Padma, Santhosh Kumard3261902017-03-21 19:09:35 +0530686/**
687 * wmi_unified_congestion_request_cmd() - send request to fw to get CCA
688 * @wmi_hdl: wma handle
689 * @vdev_id: vdev id
690 *
691 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
692 */
693QDF_STATUS wmi_unified_congestion_request_cmd(void *wmi_hdl,
694 uint8_t vdev_id);
695
Govind Singhd7468a52016-03-09 14:32:57 +0530696QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530697
Govind Singhd7468a52016-03-09 14:32:57 +0530698QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530699
Govind Singhd7468a52016-03-09 14:32:57 +0530700QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530701 struct link_status_params *link_status);
702
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530703#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530704QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530705 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
706
Govind Singhd7468a52016-03-09 14:32:57 +0530707QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530708 wmi_mac_addr peer_macaddr);
Govind Singh229bc0d2016-03-07 15:33:31 +0530709
Govind Singhd7468a52016-03-09 14:32:57 +0530710QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530711 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
Paul Zhanga9ec9432017-01-04 16:45:42 +0800712
Govind Singh89727882016-04-15 13:58:27 +0530713#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530714
Govind Singhd7468a52016-03-09 14:32:57 +0530715QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530716 uint32_t cmd, uint32_t value1, uint32_t value2);
717
Govind Singhd7468a52016-03-09 14:32:57 +0530718QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530719
Govind Singhd7468a52016-03-09 14:32:57 +0530720QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530721
Naveen Rawat90bc8fd2017-05-13 15:56:57 -0700722#ifdef WLAN_FEATURE_CIF_CFR
723/**
724 * wmi_unified_oem_dma_ring_cfg() - configure OEM DMA rings
725 * @wmi_handle: wmi handle
726 * @data_len: len of dma cfg req
727 * @data: dma cfg req
728 *
729 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
730 */
731QDF_STATUS wmi_unified_oem_dma_ring_cfg(void *wmi_hdl,
732 wmi_oem_dma_ring_cfg_req_fixed_param *cfg);
733#endif
734
Govind Singhd7468a52016-03-09 14:32:57 +0530735QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700736 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530737 uint8_t *data);
738
Govind Singhd7468a52016-03-09 14:32:57 +0530739QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530740 bool dfs_phyerr_filter_offload);
741
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530742#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530743QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530744 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530745 uint32_t cmd_id,
746 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530747#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530748
Govind Singhd7468a52016-03-09 14:32:57 +0530749QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530750 uint8_t vdev_id);
751
Govind Singhd7468a52016-03-09 14:32:57 +0530752QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
753QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530754 uint8_t ac);
755
Govind Singhd7468a52016-03-09 14:32:57 +0530756QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530757 struct aggr_add_ts_param *aggr_qos_rsp_msg);
758
Govind Singhd7468a52016-03-09 14:32:57 +0530759QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530760 struct add_ts_param *msg);
761
Govind Singhd7468a52016-03-09 14:32:57 +0530762QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530763 struct periodic_tx_pattern *
764 pAddPeriodicTxPtrnParams,
765 uint8_t vdev_id);
766
Govind Singhd7468a52016-03-09 14:32:57 +0530767QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530768 uint8_t vdev_id,
769 uint8_t pattern_id);
770
Govind Singhd7468a52016-03-09 14:32:57 +0530771QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530772 struct stats_ext_params *preq);
773
Govind Singhd7468a52016-03-09 14:32:57 +0530774QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530775 struct ext_wow_params *params);
776
Govind Singhd7468a52016-03-09 14:32:57 +0530777QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530778 struct app_type2_params *appType2Params);
779
Govind Singhd7468a52016-03-09 14:32:57 +0530780QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530781 uint32_t timer_val);
782
Govind Singhd7468a52016-03-09 14:32:57 +0530783QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530784 struct nan_req_params *nan_req);
785
Govind Singhd7468a52016-03-09 14:32:57 +0530786QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530787 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
788
Govind Singhd7468a52016-03-09 14:32:57 +0530789QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530790
Govind Singhd7468a52016-03-09 14:32:57 +0530791QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530792 uint32_t reg_dmn, uint16_t regdmn2G,
Rajeev Kumar Sirasanagandlaacf22bf2017-06-06 13:27:56 +0530793 uint16_t regdmn5G, uint8_t ctl2G,
794 uint8_t ctl5G);
Govind Singh229bc0d2016-03-07 15:33:31 +0530795
Govind Singhd7468a52016-03-09 14:32:57 +0530796QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530797 struct tdls_channel_switch_params *chan_switch_params);
798
Govind Singhd7468a52016-03-09 14:32:57 +0530799QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530800 void *tdls_param, uint8_t tdls_state);
801
Govind Singhd7468a52016-03-09 14:32:57 +0530802QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530803 struct tdls_peer_state_params *peerStateParams,
804 uint32_t *ch_mhz);
805
Govind Singhd7468a52016-03-09 14:32:57 +0530806QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530807 struct fw_dump_req_param *mem_dump_req);
808
Govind Singhd7468a52016-03-09 14:32:57 +0530809QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530810 struct vdev_ie_info_param *ie_info);
811
Govind Singhd7468a52016-03-09 14:32:57 +0530812QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530813 struct ocb_utc_param *utc);
Govind Singhae855362016-03-07 14:24:22 +0530814
Govind Singhd7468a52016-03-09 14:32:57 +0530815QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530816 struct dcc_get_stats_param *get_stats_param);
Govind Singhae855362016-03-07 14:24:22 +0530817
Govind Singhd7468a52016-03-09 14:32:57 +0530818QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530819 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh229bc0d2016-03-07 15:33:31 +0530820
Govind Singhd7468a52016-03-09 14:32:57 +0530821QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530822 struct dcc_update_ndl_param *update_ndl_param);
Govind Singh71ee2d72016-03-07 16:30:32 +0530823
Govind Singhd7468a52016-03-09 14:32:57 +0530824QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530825 void *evt_buf);
826
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530827#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530828QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530829 wmi_resource_config *res_cfg,
830 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
831 bool action);
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530832#endif
Govind Singh71ee2d72016-03-07 16:30:32 +0530833
Govind Singhd7468a52016-03-09 14:32:57 +0530834QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530835
Govind Singhd7468a52016-03-09 14:32:57 +0530836QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530837 uint8_t *custom_addr);
838
Govind Singhd7468a52016-03-09 14:32:57 +0530839QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530840 uint8_t *event,
841 uint32_t len);
842
Govind Singhd7468a52016-03-09 14:32:57 +0530843QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530844 struct wmi_wifi_start_log *start_log);
845
Govind Singhd7468a52016-03-09 14:32:57 +0530846QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530847
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530848QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
849 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530850
Govind Singhd7468a52016-03-09 14:32:57 +0530851QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530852 uint32_t hw_mode_index);
853
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530854QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530855 struct wmi_dual_mac_config *msg);
856
Govind Singhd7468a52016-03-09 14:32:57 +0530857QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530858 struct flashing_req_params *flashing);
859
Govind Singhd7468a52016-03-09 14:32:57 +0530860QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530861 struct app_type1_params *app_type1_params);
862
Govind Singhd7468a52016-03-09 14:32:57 +0530863QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530864 struct ssid_hotlist_request_params *request);
865
Govind Singhd7468a52016-03-09 14:32:57 +0530866QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530867 uint8_t vdev_id);
868
Govind Singhd7468a52016-03-09 14:32:57 +0530869QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530870 struct wmi_unit_test_cmd *wmi_utest);
871
Govind Singhd7468a52016-03-09 14:32:57 +0530872QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530873 struct wmi_roam_invoke_cmd *roaminvoke,
874 uint32_t ch_hz);
875
Govind Singhd7468a52016-03-09 14:32:57 +0530876QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530877 uint32_t command, uint32_t vdev_id);
878
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530879#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530880QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530881 wmi_ap_profile *ap_profile_p,
882 uint32_t vdev_id);
Govind Singh89727882016-04-15 13:58:27 +0530883#endif
Govind Singh2ae94372016-03-07 16:45:38 +0530884
Govind Singhd7468a52016-03-09 14:32:57 +0530885QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530886 uint32_t scan_period,
887 uint32_t scan_age,
888 uint32_t vdev_id);
889
Govind Singhd7468a52016-03-09 14:32:57 +0530890QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530891 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -0700892 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +0530893 uint8_t list_type, uint32_t vdev_id);
894
Govind Singhd7468a52016-03-09 14:32:57 +0530895QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530896 uint32_t vdev_id,
897 int32_t rssi_change_thresh,
898 uint32_t bcn_rssi_weight,
899 uint32_t hirssi_delay_btw_scans);
900
Kapil Guptaf6eb7312017-02-24 15:50:03 +0530901/**
902 * wmi_unified_set_per_roam_config() - set PER roam config in FW
903 * @wmi_hdl: wmi handle
904 * @req_buf: per roam config request buffer
905 *
906 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
907 */
908QDF_STATUS wmi_unified_set_per_roam_config(void *wmi_hdl,
909 struct wmi_per_roam_config_req *req_buf);
910
Govind Singhd7468a52016-03-09 14:32:57 +0530911QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530912 struct ext_scan_setbssi_hotlist_params *
913 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530914
Dustin Brown4def3162017-01-13 15:24:07 -0800915/**
916 * wmi_unified_set_active_bpf_mode_cmd() - config active BPF mode in FW
917 * @wmi_hdl: the WMI handle
918 * @vdev_id: the Id of the vdev to apply the configuration to
919 * @ucast_mode: the active BPF mode to configure for unicast packets
920 * @mcast_bcast_mode: the active BPF mode to configure for multicast/broadcast
921 * packets
922 */
923QDF_STATUS wmi_unified_set_active_bpf_mode_cmd(void *wmi_hdl,
924 uint8_t vdev_id,
925 enum wmi_host_active_bpf_mode ucast_mode,
926 enum wmi_host_active_bpf_mode mcast_bcast_mode);
927
Govind Singh89727882016-04-15 13:58:27 +0530928QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
929 uint8_t macaddr[IEEE80211_ADDR_LEN],
930 struct stats_request_params *param);
931
932QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
933 uint32_t param);
934
Sathish Kumar50232d72016-08-09 16:50:46 +0530935QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
936 struct set_bwf_params *param);
937
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530938QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
939
940QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
941
942QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
943 uint32_t value);
944
945QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
946 uint32_t value);
947
948QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +0530949 struct btcoex_cfg_params *param);
950
951QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
952 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530953
Sathish Kumar612d0c22017-01-19 14:57:37 +0530954QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
955 coex_ver_cfg_t *param);
956
Sathish Kumar125754e2017-04-24 11:36:00 +0530957QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
958 struct coex_config_params *param);
959
Govind Singh89727882016-04-15 13:58:27 +0530960QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
961 struct set_atf_params *param);
962
963QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
964 struct fips_params *param);
965
966QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
967 struct wlan_profile_params *param);
968
969QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
970 struct wlan_profile_params *param);
971
972QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
973 struct channel_param *param);
974
975QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
976 struct ht_ie_params *param);
977
978QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
979 struct vht_ie_params *param);
980
981QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
982 struct wmm_update_params *param);
983
984QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
985 struct ant_switch_tbl_params *param);
986
987QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
988 struct ratepwr_table_params *param);
989
990QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
991
992QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
993 struct ctl_table_params *param);
994
995QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
996 struct mimogain_table_params *param);
997
998QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
999 struct ratepwr_chainmsk_params *param);
1000
1001QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
1002 struct macaddr_params *param);
1003
1004QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
1005
1006QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
1007
1008QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
1009 struct acparams_params *param);
1010
1011QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
1012 struct vap_dscp_tid_map_params *param);
1013
1014QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
1015 struct proxy_ast_reserve_params *param);
1016
1017QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
1018 struct pdev_qvit_params *param);
1019
1020QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
1021 struct mcast_group_update_params *param);
1022
1023QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1024 struct peer_add_wds_entry_params *param);
1025
1026QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1027 struct peer_del_wds_entry_params *param);
1028
1029QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1030 struct peer_update_wds_entry_params *param);
1031
1032QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1033
1034QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1035
1036QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1037
1038QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1039 struct smart_ant_enable_params *param);
1040
1041QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1042 struct smart_ant_rx_ant_params *param);
1043
1044QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1045 uint8_t macaddr[IEEE80211_ADDR_LEN],
1046 struct smart_ant_tx_ant_params *param);
1047
1048QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1049 uint8_t macaddr[IEEE80211_ADDR_LEN],
1050 struct smart_ant_training_info_params *param);
1051
1052QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1053 uint8_t macaddr[IEEE80211_ADDR_LEN],
1054 struct smart_ant_node_config_params *param);
1055
1056QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1057 struct smart_ant_enable_tx_feedback_params *param);
1058
1059QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1060 struct vdev_spectral_configure_params *param);
1061
1062QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1063 struct vdev_spectral_enable_params *param);
1064
1065QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1066 struct bss_chan_info_request_params *param);
1067
1068QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1069 struct thermal_mitigation_params *param);
1070
1071QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1072 uint8_t macaddr[IEEE80211_ADDR_LEN],
1073 struct set_neighbour_rx_params *param);
1074
1075QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1076 struct set_fwtest_params *param);
1077
1078QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1079 struct config_ratemask_params *param);
1080
Govind Singh89727882016-04-15 13:58:27 +05301081
1082QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1083 struct pdev_set_regdomain_params *param);
1084
1085QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1086 struct set_quiet_mode_params *param);
1087
1088QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1089 struct set_beacon_filter_params *param);
1090
1091QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1092 struct remove_beacon_filter_params *param);
1093
1094QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1095 uint8_t macaddr[IEEE80211_ADDR_LEN],
1096 struct addba_clearresponse_params *param);
1097
1098QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1099 uint8_t macaddr[IEEE80211_ADDR_LEN],
1100 struct addba_send_params *param);
1101
1102QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1103 uint8_t macaddr[IEEE80211_ADDR_LEN],
1104 struct delba_send_params *param);
1105
1106QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1107 uint8_t macaddr[IEEE80211_ADDR_LEN],
1108 struct addba_setresponse_params *param);
1109
1110QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1111 uint8_t macaddr[IEEE80211_ADDR_LEN],
1112 struct singleamsdu_params *param);
1113
1114QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1115 uint8_t macaddr[IEEE80211_ADDR_LEN],
1116 struct set_qboost_params *param);
1117
1118QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1119 struct mu_scan_params *param);
1120
1121QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1122 struct lteu_config_params *param);
1123
1124QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1125 struct set_ps_mode_params *param);
1126
1127QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
Kiran Venkatappaaf1dae32016-12-23 19:58:54 +05301128 struct wmi_init_cmd_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301129
1130bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1131
Rajeev Kumar5d8497b2017-02-12 02:12:17 -08001132QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1133 void *bitmap_buf);
Govind Singh89727882016-04-15 13:58:27 +05301134
1135QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1136
1137QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001138 void *evt_buf,
1139 struct wlan_psoc_target_capability_info *ev);
Govind Singh89727882016-04-15 13:58:27 +05301140
1141QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001142 struct wlan_psoc_hal_reg_capability *hal_reg_cap);
Govind Singh89727882016-04-15 13:58:27 +05301143
1144host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1145 void *evt_buf, uint8_t *num_entries);
1146
1147uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1148
1149QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1150 void *ev, uint8_t *macaddr);
1151
1152QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1153 void *ev, struct wmi_host_fw_ver *fw_ver);
1154
1155QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1156 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1157
1158QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1159
1160uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
Rajeev Kumar45fdf7f2017-01-25 12:46:21 -08001161 void *evt_b, uint32_t *len);
Govind Singh89727882016-04-15 13:58:27 +05301162
1163QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1164 wmi_host_ext_resource_config *ext_cfg);
1165
1166QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1167
1168QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1169 struct packet_power_info_params *param);
1170
1171QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1172 struct gpio_config_params *param);
1173
1174QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1175 struct gpio_output_params *param);
1176
1177QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1178 struct rtt_meas_req_test_params *param);
1179
1180QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1181 struct rtt_meas_req_params *param);
1182
1183QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1184 struct rtt_keepalive_req_params *param);
1185
1186QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1187 struct lci_set_params *param);
1188
1189QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1190 struct lcr_set_params *param);
1191
1192QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1193 struct periodic_chan_stats_params *param);
1194
1195QDF_STATUS
1196wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1197 struct atf_peer_request_params *param);
1198
1199QDF_STATUS
1200wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1201 struct atf_grouping_params *param);
1202/* Extract APIs */
1203
1204QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1205 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1206
1207QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05301208 void *evt_buf, struct wmi_host_dcs_interference_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301209
1210QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1211 wmi_host_ath_dcs_cw_int *cw_int);
1212
1213QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1214 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1215
Govind Singh89727882016-04-15 13:58:27 +05301216QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301217 struct wmi_host_fips_event_param *param);
1218
Govind Singh89727882016-04-15 13:58:27 +05301219QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1220 wmi_host_vdev_start_resp *vdev_rsp);
Sathish Kumar744fbf72017-05-17 18:05:15 +05301221
Govind Singh89727882016-04-15 13:58:27 +05301222QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
Sathish Kumar744fbf72017-05-17 18:05:15 +05301223 uint8_t idx, struct tbttoffset_params *tbtt_param);
1224
1225QDF_STATUS wmi_extract_ext_tbttoffset_update_params(void *wmi_hdl,
1226 void *evt_buf, uint8_t idx,
1227 struct tbttoffset_params *tbtt_param);
1228
1229QDF_STATUS wmi_extract_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1230 uint32_t *num_vdevs);
1231
1232QDF_STATUS wmi_extract_ext_tbttoffset_num_vdevs(void *wmi_hdl, void *evt_buf,
1233 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301234
1235QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
Himanshu Agarwal53d526b2017-01-05 14:23:18 +05301236 struct mgmt_rx_event_params *hdr, uint8_t **bufp);
Govind Singh89727882016-04-15 13:58:27 +05301237
1238QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1239 uint32_t *vdev_id);
1240
1241QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1242 wmi_host_roam_event *ev);
1243
1244QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi91452bf2017-02-25 15:53:30 +05301245 struct scan_event *param);
Govind Singh89727882016-04-15 13:58:27 +05301246
Frank Liu0ba573b2017-03-15 17:51:43 +08001247#ifdef CONVERGED_TDLS_ENABLE
1248/**
1249 * wmi_extract_vdev_tdls_ev_param - extract vdev tdls param from event
1250 * @wmi_handle: wmi handle
1251 * @param evt_buf: pointer to event buffer
1252 * @param param: Pointer to hold vdev tdls param
1253 *
1254 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
1255 */
1256QDF_STATUS wmi_extract_vdev_tdls_ev_param(void *wmi_hdl, void *evt_buf,
1257 struct tdls_event_info *param);
1258#endif
1259
Govind Singh89727882016-04-15 13:58:27 +05301260QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1261 wmi_host_mu_report_event *param);
1262
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301263QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1264 uint8_t idx, wmi_host_mu_db_entry *param);
1265
1266QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1267 wmi_host_peer_txmu_cnt_event *param);
1268
1269QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1270 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1271
1272QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1273 void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1274
Govind Singh89727882016-04-15 13:58:27 +05301275QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1276 wmi_host_pdev_tpc_config_event *param);
1277
1278QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1279 void *evt_buf, uint32_t *gpio_num);
1280
1281QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
Kiran Venkatappa3f061a92017-02-08 14:57:16 +05301282 void *evt_buf, struct wmi_host_proxy_ast_reserve_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301283
1284QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1285 wmi_host_pdev_nfcal_power_all_channels_event *param);
1286
1287QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1288 wmi_host_pdev_tpc_event *param);
1289
1290QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1291 void *evt_buf,
1292 wmi_host_pdev_generic_buffer_event *param);
1293
1294QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1295 wmi_host_mgmt_tx_compl_event *param);
1296
Kiran Venkatappa25c47022017-03-19 22:58:09 +05301297QDF_STATUS wmi_extract_offchan_data_tx_compl_param(void *wmi_hdl, void *evt_buf,
1298 struct wmi_host_offchan_data_tx_compl_event *param);
1299
Sathish Kumar907a7462017-02-27 10:35:40 +05301300QDF_STATUS wmi_extract_pdev_csa_switch_count_status(void *wmi_hdl,
1301 void *evt_buf,
1302 struct pdev_csa_switch_count_status *param);
1303
Sathish Kumar744fbf72017-05-17 18:05:15 +05301304QDF_STATUS wmi_extract_swba_num_vdevs(void *wmi_hdl, void *evt_buf,
1305 uint32_t *num_vdevs);
Govind Singh89727882016-04-15 13:58:27 +05301306
1307QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1308 uint32_t idx, wmi_host_tim_info *tim_info);
1309
1310QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1311 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1312
Wu Gao07ba6b42017-03-13 20:17:34 +08001313#ifdef CONVERGED_P2P_ENABLE
1314QDF_STATUS wmi_extract_p2p_lo_stop_ev_param(void *wmi_hdl,
1315 void *evt_buf, struct p2p_lo_event *param);
1316
1317QDF_STATUS wmi_extract_p2p_noa_ev_param(void *wmi_hdl,
1318 void *evt_buf, struct p2p_noa_info *param);
1319#endif
1320
Govind Singh89727882016-04-15 13:58:27 +05301321QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1322 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1323
1324QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1325 wmi_host_peer_sta_kickout_event *ev);
1326
1327QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1328 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1329
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001330QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1331 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1332
Govind Singh89727882016-04-15 13:58:27 +05301333QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1334 wmi_host_rtt_event_hdr *ev);
1335
1336QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1337 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1338 uint16_t hdump_len);
1339
1340QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1341 wmi_host_rtt_error_report_event *ev);
1342
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001343QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1344 uint32_t index, wmi_host_chan_stats *chan_stats);
1345
Govind Singh89727882016-04-15 13:58:27 +05301346QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
Om Prakash Tripathi2f54fbb2017-04-19 16:57:31 +05301347 uint32_t *temp, uint32_t *level, uint32_t *pdev_id);
Govind Singh89727882016-04-15 13:58:27 +05301348
1349QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1350 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1351
1352QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1353 uint16_t datalen, uint16_t *buf_offset,
1354 wmi_host_phyerr_t *phyerr);
1355
1356QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1357 uint16_t datalen, uint16_t *buf_offset,
1358 wmi_host_phyerr_t *phyerr);
1359
1360QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1361 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1362
1363QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1364 wmi_host_wlan_profile_ctx_t *profile_ctx);
1365
Govind Singh41da3152016-05-06 20:20:25 +05301366QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301367 wmi_host_wlan_profile_t *profile_data);
1368
1369QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1370 wmi_host_chan_info_event *chan_info);
1371
1372QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1373 wmi_host_pdev_channel_hopping_event *ch_hopping);
1374
1375QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1376 wmi_host_stats_event *stats_param);
1377
1378QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1379 uint32_t index,
1380 wmi_host_pdev_stats *pdev_stats);
1381
1382QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1383 uint32_t index,
1384 wmi_host_pdev_ext_stats *pdev_ext_stats);
1385
1386QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1387 uint32_t index,
1388 wmi_host_peer_extd_stats *peer_extd_stats);
1389
1390QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1391 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1392
1393QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1394 wmi_host_inst_stats_resp *inst_rssi_resp);
1395
1396QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1397 uint32_t index, wmi_host_peer_stats *peer_stats);
1398
1399QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1400 wmi_host_tx_data_traffic_ctrl_event *ev);
1401
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301402QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1403 wmi_host_atf_peer_stats_event *ev);
1404
1405QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
1406 uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
1407
Govind Singh89727882016-04-15 13:58:27 +05301408QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1409 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1410
1411QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1412 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301413
1414QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1415 struct wmi_power_dbg_params *param);
Sathish Kumar907a7462017-02-27 10:35:40 +05301416
1417QDF_STATUS wmi_unified_send_multiple_vdev_restart_req_cmd(void *wmi_hdl,
1418 struct multiple_vdev_restart_params *param);
1419
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001420QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1421 struct sar_limit_cmd_params *params);
Gupta, Kapil7b768002016-04-25 19:14:19 +05301422QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1423 struct wmi_adaptive_dwelltime_params *
1424 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301425QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1426 struct set_fwtest_params *wmi_fwtest);
1427
Leo Chang8184e9c2016-09-28 13:43:36 -07001428QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1429 struct rx_reorder_queue_setup_params *param);
1430QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1431 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301432
1433QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001434 struct wlan_psoc_host_service_ext_param *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301435QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1436 void *wmi_hdl,
1437 uint8_t *evt_buf, uint8_t hw_mode_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001438 struct wlan_psoc_host_hw_mode_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301439QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1440 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301441 uint8_t *evt_buf,
1442 uint8_t hw_mode_id,
1443 uint8_t phy_id,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001444 struct wlan_psoc_host_mac_phy_caps *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301445QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1446 void *wmi_hdl,
1447 uint8_t *evt_buf, uint8_t phy_idx,
Rajeev Kumar0b6b2852017-02-03 00:39:49 -08001448 struct wlan_psoc_host_hal_reg_capabilities_ext *param);
Sathish Kumar617535c2017-01-24 17:51:26 +05301449QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1450 uint8_t *evt_buf,
1451 struct wmi_host_pdev_utf_event *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301452
Kiran Venkatappa3d514982017-02-28 14:19:17 +05301453QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
1454 uint8_t *evt_buf,
1455 struct wmi_host_pdev_qvit_event *param);
1456
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301457QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1458 uint8_t *evt_buf,
1459 struct wmi_host_peer_delete_response_event *param);
Arif Hussain85604fb2017-01-07 18:21:55 -08001460
Vikram Kandukuric83feb62017-03-07 18:40:13 +05301461QDF_STATUS wmi_extract_chainmask_tables(void *wmi_hdl, uint8_t *evt_buf,
1462 struct wlan_psoc_host_chainmask_table *chainmask_table);
Arif Hussain85604fb2017-01-07 18:21:55 -08001463/**
1464 * wmi_unified_dfs_phyerr_offload_en_cmd() - enable dfs phyerr offload
1465 * @wmi_handle: wmi handle
1466 * @pdev_id: pdev id
1467 *
1468 * Return: QDF_STATUS
1469 */
1470QDF_STATUS wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
1471 uint32_t pdev_id);
1472
1473/**
1474 * wmi_unified_dfs_phyerr_offload_dis_cmd() - disable dfs phyerr offload
1475 * @wmi_handle: wmi handle
1476 * @pdev_id: pdev id
1477 *
1478 * Return: QDF_STATUS
1479 */
1480QDF_STATUS wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
1481 uint32_t pdev_id);
Dustin Browne58fbc72017-04-03 17:00:07 -07001482
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001483QDF_STATUS wmi_unified_set_country_cmd_send(void *wmi_hdl,
1484 struct set_country *param);
1485
Dustin Browne58fbc72017-04-03 17:00:07 -07001486#ifdef WMI_INTERFACE_EVENT_LOGGING
1487void wmi_print_cmd_log(wmi_unified_t wmi, uint32_t count,
1488 qdf_abstract_print *print, void *print_priv);
1489
1490void wmi_print_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1491 qdf_abstract_print *print, void *print_priv);
1492
1493void wmi_print_mgmt_cmd_log(wmi_unified_t wmi, uint32_t count,
1494 qdf_abstract_print *print, void *print_priv);
1495
1496void wmi_print_mgmt_cmd_tx_cmp_log(wmi_unified_t wmi, uint32_t count,
1497 qdf_abstract_print *print, void *print_priv);
1498
1499void wmi_print_event_log(wmi_unified_t wmi, uint32_t count,
1500 qdf_abstract_print *print, void *print_priv);
1501
1502void wmi_print_rx_event_log(wmi_unified_t wmi, uint32_t count,
1503 qdf_abstract_print *print, void *print_priv);
1504
1505void wmi_print_mgmt_event_log(wmi_unified_t wmi, uint32_t count,
1506 qdf_abstract_print *print, void *print_priv);
Kiran Kumar Lokeree70e6052017-04-24 00:56:03 -07001507
Dustin Browne58fbc72017-04-03 17:00:07 -07001508#endif /* WMI_INTERFACE_EVENT_LOGGING */
1509
Nitesh Shahfb9e88b2017-05-22 15:49:00 +05301510QDF_STATUS wmi_unified_send_dbs_scan_sel_params_cmd(void *wmi_hdl,
1511 struct wmi_dbs_scan_sel_params *wmi_param);
Govind Singhd475ea92016-03-06 19:55:02 +05301512#endif /* _WMI_UNIFIED_API_H_ */