blob: eacaee60970d7f6bd4f50bd7372e825288084717 [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"
38#include "ol_defines.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053039#ifdef CONFIG_MCL
Govind Singhd475ea92016-03-06 19:55:02 +053040#include "wmi.h"
Himanshu Agarwal56c292f2016-07-19 15:41:51 +053041#endif
Govind Singhd475ea92016-03-06 19:55:02 +053042#include "htc_api.h"
Govind Singh3ddda1f2016-03-09 11:34:12 +053043#include "wmi_unified_param.h"
Mukul Sharma36d159b2017-01-30 19:55:40 +053044#include "wlan_objmgr_psoc_obj.h"
Himanshu Agarwal53d526b2017-01-05 14:23:18 +053045#include "wlan_mgmt_txrx_utils_api.h"
Govind Singhd475ea92016-03-06 19:55:02 +053046
Govind Singhd7468a52016-03-09 14:32:57 +053047typedef qdf_nbuf_t wmi_buf_t;
48#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
49
50#define WMI_LOGD(args ...) \
51 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
52#define WMI_LOGI(args ...) \
53 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
54#define WMI_LOGW(args ...) \
55 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
56#define WMI_LOGE(args ...) \
57 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
58#define WMI_LOGP(args ...) \
59 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
60
61#define WMI_DEBUG_ALWAYS
62
63#ifdef WMI_DEBUG_ALWAYS
64#define WMI_LOGA(args ...) \
65 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
66#else
67#define WMI_LOGA(args ...)
68#endif
Govind Singhd475ea92016-03-06 19:55:02 +053069
Soumya Bhatc09518b2016-12-20 14:27:03 +053070/* wrapper to keep WMI agnostic of event handler execution context */
71#define wmi_unified_register_event(wmi_handle, event_id, handler_func) \
72 wmi_unified_register_event_handler(wmi_handle, \
73 event_id, handler_func, WMI_RX_UMAC_CTX)
74
Govind Singhd475ea92016-03-06 19:55:02 +053075/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053076 * struct wmi_ops - service callbacks to upper layer
77 * @service_ready_cbk: service ready callback
78 * @service_ready_ext_cbk: service ready ext callback
79 * @ready_cbk: ready calback
80 * @wma_process_fw_event_handler_cbk: generic event handler callback
81 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053082struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053083
Govind Singh6ad6ada2016-02-04 18:42:30 +053084 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +053085 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +053086};
87
88/**
89 * enum wmi_target_type - type of supported wmi command
90 * @WMI_TLV_TARGET: tlv based target
91 * @WMI_NON_TLV_TARGET: non-tlv based target
92 *
93 */
94enum wmi_target_type {
95 WMI_TLV_TARGET,
96 WMI_NON_TLV_TARGET
97};
98
99/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530100 * enum wmi_rx_exec_ctx - wmi rx execution context
101 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
102 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
103 *
104 */
105enum wmi_rx_exec_ctx {
106 WMI_RX_WORK_CTX,
107 WMI_RX_UMAC_CTX
108};
109
110/**
Govind Singhd475ea92016-03-06 19:55:02 +0530111 * attach for unified WMI
112 *
113 * @param scn_handle : handle to SCN.
Govind Singh89727882016-04-15 13:58:27 +0530114 * @param target_type : type of supported wmi command
115 * @param use_cookie : flag to indicate cookie based allocation
116 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530117 * @psoc : objmgr psoc
Govind Singhd475ea92016-03-06 19:55:02 +0530118 * @return opaque handle.
119 */
120void *wmi_unified_attach(void *scn_handle,
Govind Singh6ad6ada2016-02-04 18:42:30 +0530121 osdev_t osdev, enum wmi_target_type target_type,
Mukul Sharma36d159b2017-01-30 19:55:40 +0530122 bool use_cookie, struct wmi_rx_ops *ops,
123 struct wlan_objmgr_psoc *psoc);
124
Govind Singh6ad6ada2016-02-04 18:42:30 +0530125
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700126
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700127/**
128 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
129 *
130 * @wmi_handle: wmi handle
131 * @cmd: mgmt command
132 * @header: pointer to 802.11 header
133 * @vdev_id: vdev id
134 * @chanfreq: channel frequency
135 *
136 * Return: none
137 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530138void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700139 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700140
Govind Singhd475ea92016-03-06 19:55:02 +0530141/**
142 * detach for unified WMI
143 *
144 * @param wmi_handle : handle to WMI.
145 * @return void.
146 */
147void wmi_unified_detach(struct wmi_unified *wmi_handle);
148
149void
150wmi_unified_remove_work(struct wmi_unified *wmi_handle);
151
152/**
153 * generic function to allocate WMI buffer
154 *
155 * @param wmi_handle : handle to WMI.
156 * @param len : length of the buffer
157 * @return wmi_buf_t.
158 */
159#ifdef MEMORY_DEBUG
160#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
161wmi_buf_t
162wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
163 uint8_t *file_name, uint32_t line_num);
164#else
165wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
166#endif
167
168/**
169 * generic function frees WMI net buffer
170 *
171 * @param net_buf : Pointer ot net_buf to be freed
172 */
173void wmi_buf_free(wmi_buf_t net_buf);
174
175/**
176 * generic function to send unified WMI command
177 *
178 * @param wmi_handle : handle to WMI.
179 * @param buf : wmi command buffer
180 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530181 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530182 * @return 0 on success and -ve on failure.
183 */
Houston Hoffman09f96f92016-09-27 23:29:49 -0700184QDF_STATUS
Govind Singh6ad6ada2016-02-04 18:42:30 +0530185wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530186 uint32_t cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530187
188/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530189 * wmi_unified_register_event_handler() - WMI event handler
190 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530191 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530192 * @wmi_handle: handle to WMI.
193 * @event_id: WMI event ID
194 * @handler_func: Event handler call back function
195 * @rx_ctx: rx event processing context
196 *
Govind Singhd475ea92016-03-06 19:55:02 +0530197 * @return 0 on success and -ve on failure.
198 */
199int
200wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530201 uint32_t event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530202 wmi_unified_event_handler handler_func,
203 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530204
205/**
206 * WMI event handler unregister function
207 *
208 * @param wmi_handle : handle to WMI.
209 * @param event_id : WMI event ID
210 * @return 0 on success and -ve on failure.
211 */
212int
213wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530214 uint32_t event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530215
216/**
217 * request wmi to connet its htc service.
218 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530219 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530220 * @return void
221 */
222int
223wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
224 void *htc_handle);
225
226/*
227 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530228 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530229 */
230
231int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
232
233/**
Govind Singh89727882016-04-15 13:58:27 +0530234 * WMI API to get updated host_credits
235 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530236 */
237
238int wmi_get_host_credits(wmi_unified_t wmi_handle);
239
240/**
Govind Singh89727882016-04-15 13:58:27 +0530241 * WMI API to get WMI Pending Commands in the HTC queue
242 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530243 */
244
245int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
246
247/**
Govind Singh89727882016-04-15 13:58:27 +0530248 * WMI API to set target suspend state
249 * @param wmi_handle : handle to WMI.
250 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530251 */
Govind Singhd475ea92016-03-06 19:55:02 +0530252void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
253
Govind Singh89727882016-04-15 13:58:27 +0530254/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530255 * WMI API to set bus suspend state
256 * @param wmi_handle: handle to WMI.
257 * @param val: suspend state boolean
258 */
259void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
260
261/**
262 * WMI API to set crash injection state
263 * @param wmi_handle: handle to WMI.
264 * @param val: crash injection state boolean
265 */
266void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
267
268/**
Govind Singh89727882016-04-15 13:58:27 +0530269 * generic function to block unified WMI command
270 * @param wmi_handle : handle to WMI.
271 * @return 0 on success and -ve on failure.
272 */
273int
274wmi_stop(wmi_unified_t wmi_handle);
275
276/**
277 * API to flush all the previous packets associated with the wmi endpoint
278 *
279 * @param wmi_handle : handle to WMI.
280 */
281void
282wmi_flush_endpoint(wmi_unified_t wmi_handle);
283
284/**
285 * API to handle wmi rx event after UMAC has taken care of execution
286 * context
287 *
288 * @param wmi_handle : handle to WMI.
289 * @param evt_buf : wmi event buffer
290 */
291void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530292#ifdef FEATURE_RUNTIME_PM
293void
294wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
295bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
296#else
297static inline void
298wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
299{
300 return;
301}
302static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
303{
304 return false;
305}
306#endif
307
Govind Singhd475ea92016-03-06 19:55:02 +0530308/**
Govind Singhd7468a52016-03-09 14:32:57 +0530309 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530310 * @param wmi_handle : handle to WMI.
311 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530312 */
Govind Singhd475ea92016-03-06 19:55:02 +0530313void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
314uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530315
316
Govind Singhd7468a52016-03-09 14:32:57 +0530317QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530318 uint8_t macaddr[IEEE80211_ADDR_LEN],
319 struct vdev_create_params *param);
320
Govind Singhd7468a52016-03-09 14:32:57 +0530321QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530322 uint8_t if_id);
323
Govind Singhd7468a52016-03-09 14:32:57 +0530324QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530325 uint8_t macaddr[IEEE80211_ADDR_LEN],
326 struct vdev_start_params *param);
327
Govind Singhd7468a52016-03-09 14:32:57 +0530328QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530329 uint8_t vdev_id);
330
Govind Singhd7468a52016-03-09 14:32:57 +0530331QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530332 uint8_t bssid[IEEE80211_ADDR_LEN],
333 struct vdev_up_params *params);
334
Govind Singhd7468a52016-03-09 14:32:57 +0530335QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530336 uint8_t vdev_id);
337
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530338QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
339 struct vdev_start_params *req);
340
341QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
342 struct hidden_ssid_vdev_restart_params *restart_params);
343
Govind Singhd7468a52016-03-09 14:32:57 +0530344QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530345 struct vdev_set_params *param);
346
Govind Singhd7468a52016-03-09 14:32:57 +0530347QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530348 uint8_t
349 peer_addr[IEEE80211_ADDR_LEN],
350 uint8_t vdev_id);
351
Govind Singhd7468a52016-03-09 14:32:57 +0530352QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530353 uint8_t peer_addr[IEEE80211_ADDR_LEN],
354 struct peer_flush_params *param);
355
Govind Singhd7468a52016-03-09 14:32:57 +0530356QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530357 uint8_t peer_addr[IEEE80211_ADDR_LEN],
358 struct peer_set_params *param);
359
Govind Singhd7468a52016-03-09 14:32:57 +0530360QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530361 struct peer_create_params *param);
362
Govind Singhd7468a52016-03-09 14:32:57 +0530363QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530364 uint8_t macaddr[IEEE80211_ADDR_LEN],
365 struct stats_request_params *param);
366
Govind Singhd7468a52016-03-09 14:32:57 +0530367QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530368 uint32_t value, uint8_t mac_id);
369
370
Govind Singhd7468a52016-03-09 14:32:57 +0530371QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530372 struct wow_cmd_params *param,
373 uint8_t mac_id);
374
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700375QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
376
377QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
378 struct wow_add_wakeup_params *param);
379
380QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
381 struct wow_add_wakeup_pattern_params *param);
382
383QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
384 struct wow_remove_wakeup_pattern_params *param);
385
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530386#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530387QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
388 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT);
389#else
Govind Singhd7468a52016-03-09 14:32:57 +0530390QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530391 uint8_t macaddr[IEEE80211_ADDR_LEN],
392 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530393#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530394
Govind Singh89727882016-04-15 13:58:27 +0530395QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530396
Govind Singhd7468a52016-03-09 14:32:57 +0530397QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530398 struct suspend_params *param,
399 uint8_t mac_id);
400
Govind Singhd7468a52016-03-09 14:32:57 +0530401QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530402 uint8_t mac_id);
403
Govind Singhd7468a52016-03-09 14:32:57 +0530404QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530405wmi_unified_pdev_param_send(void *wmi_hdl,
406 struct pdev_params *param,
407 uint8_t mac_id);
408
Govind Singh89727882016-04-15 13:58:27 +0530409QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
410 struct beacon_tmpl_params *param);
411
412
Govind Singhd7468a52016-03-09 14:32:57 +0530413QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530414 struct beacon_params *param);
415
Govind Singhd7468a52016-03-09 14:32:57 +0530416QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530417 struct peer_assoc_params *param);
418
Govind Singhd7468a52016-03-09 14:32:57 +0530419QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530420 struct sta_ps_params *param);
421
Govind Singhd7468a52016-03-09 14:32:57 +0530422QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530423 uint8_t macaddr[IEEE80211_ADDR_LEN],
424 struct ap_ps_params *param);
425
Govind Singhd7468a52016-03-09 14:32:57 +0530426QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530427 struct scan_start_params *param);
428
Govind Singhd7468a52016-03-09 14:32:57 +0530429QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530430 struct scan_stop_params *param);
431
Govind Singhd7468a52016-03-09 14:32:57 +0530432QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530433 struct scan_chan_list_params *param);
434
435
Govind Singhd7468a52016-03-09 14:32:57 +0530436QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530437 struct crash_inject *param);
438
Govind Singhd7468a52016-03-09 14:32:57 +0530439QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530440 struct pdev_utf_params *param,
441 uint8_t mac_id);
442
Govind Singhd7468a52016-03-09 14:32:57 +0530443QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530444 struct dbglog_params *param);
445
Govind Singhd7468a52016-03-09 14:32:57 +0530446QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530447 struct wmi_mgmt_params *param);
448
Govind Singhd7468a52016-03-09 14:32:57 +0530449QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530450 uint32_t param_value);
451
Govind Singhd7468a52016-03-09 14:32:57 +0530452QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530453 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530454QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530455wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
456 struct sta_uapsd_trig_params *param);
457
Govind Singhd7468a52016-03-09 14:32:57 +0530458QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530459
Govind Singhd7468a52016-03-09 14:32:57 +0530460QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530461 struct p2p_ps_params *oppps);
462
Govind Singhd7468a52016-03-09 14:32:57 +0530463QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530464 struct p2p_ps_params *noa);
465
Govind Singhd7468a52016-03-09 14:32:57 +0530466QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530467 int value);
468
Govind Singhd7468a52016-03-09 14:32:57 +0530469QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530470
Govind Singhd7468a52016-03-09 14:32:57 +0530471QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530472 struct ocb_utc_param *utc);
473
Govind Singhd7468a52016-03-09 14:32:57 +0530474QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530475 struct ocb_timing_advert_param *timing_advert);
476
Govind Singhd7468a52016-03-09 14:32:57 +0530477QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530478 struct ocb_timing_advert_param *timing_advert);
479
Govind Singhd7468a52016-03-09 14:32:57 +0530480QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530481 struct ocb_config_param *config, uint32_t *ch_mhz);
482
Govind Singhd7468a52016-03-09 14:32:57 +0530483QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530484 uint8_t vdev_id);
485
Govind Singhd7468a52016-03-09 14:32:57 +0530486QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530487 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
488
Govind Singhd7468a52016-03-09 14:32:57 +0530489QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530490 struct thermal_cmd_params *thermal_info);
491
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530492QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
493 struct wmi_peer_rate_report_params *rate_report_params);
494
Govind Singhd7468a52016-03-09 14:32:57 +0530495QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530496 (void *wmi_hdl,
497 uint32_t adapter_1_chan_freq,
498 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
499
Govind Singhd7468a52016-03-09 14:32:57 +0530500QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530501 (void *wmi_hdl,
502 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
503
Govind Singhd7468a52016-03-09 14:32:57 +0530504QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700505 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
506 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530507
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530508#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530509QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530510 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530511#endif
Govind Singhae855362016-03-07 14:24:22 +0530512
Govind Singhd7468a52016-03-09 14:32:57 +0530513QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530514 uint8_t vdev_id, uint32_t max_retries,
515 uint32_t retry_interval);
516
517
Govind Singhd7468a52016-03-09 14:32:57 +0530518QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530519 struct sta_params *params);
520
Govind Singhd7468a52016-03-09 14:32:57 +0530521QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530522 struct wmi_gtx_config *gtx_info);
523
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530524#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530525QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530526 uint8_t vdev_id,
527 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
Govind Singh89727882016-04-15 13:58:27 +0530528#endif
Govind Singhae855362016-03-07 14:24:22 +0530529
530
Govind Singhd7468a52016-03-09 14:32:57 +0530531QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530532 uint8_t vdev_id,
533 struct wmi_probe_resp_params *probe_rsp_info,
534 uint8_t *frm);
535
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530536QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
537 struct set_key_params *key_params);
538
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530539QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
540 struct encrypt_decrypt_req_params *params);
541
Govind Singhd7468a52016-03-09 14:32:57 +0530542QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530543 A_UINT32 vdev_id, uint8_t *p2p_ie);
544
545
Govind Singhd7468a52016-03-09 14:32:57 +0530546QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530547 struct gateway_update_req_param *req);
548
Govind Singhd7468a52016-03-09 14:32:57 +0530549QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530550 struct rssi_monitor_param *req);
551
Govind Singhd7468a52016-03-09 14:32:57 +0530552QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530553 struct scan_mac_oui *psetoui);
554
Govind Singhd7468a52016-03-09 14:32:57 +0530555QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530556 struct wifi_passpoint_req_param *req);
557
Govind Singhd7468a52016-03-09 14:32:57 +0530558QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530559 struct wifi_passpoint_req_param *req);
560
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530561#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530562QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
563 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
564 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530565#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530566
567QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
568 struct roam_offload_scan_rssi_params *roam_req);
569
570QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
571 struct roam_scan_filter_params *roam_req);
572
Govind Singhd7468a52016-03-09 14:32:57 +0530573QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530574 struct wifi_enhanched_pno_params *req);
575
Govind Singhd7468a52016-03-09 14:32:57 +0530576QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530577 struct ipa_offload_control_params *ipa_offload);
578
Govind Singhd7468a52016-03-09 14:32:57 +0530579QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530580 struct extscan_capabilities_params *pgetcapab);
581
Govind Singhd7468a52016-03-09 14:32:57 +0530582QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530583 struct extscan_cached_result_params *pcached_results);
584
585
Govind Singhd7468a52016-03-09 14:32:57 +0530586QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530587 struct extscan_capabilities_reset_params *reset_req);
588
589
Govind Singhd7468a52016-03-09 14:32:57 +0530590QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530591 struct extscan_set_sig_changereq_params *
592 psigchange);
593
Govind Singhd7468a52016-03-09 14:32:57 +0530594QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530595 struct extscan_bssid_hotlist_reset_params *photlist_reset);
596
Govind Singhd7468a52016-03-09 14:32:57 +0530597QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530598 struct extscan_stop_req_params *pstopcmd);
599
Govind Singhd7468a52016-03-09 14:32:57 +0530600QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530601 struct wifi_scan_cmd_req_params *pstart);
602
Govind Singhd7468a52016-03-09 14:32:57 +0530603QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530604 const struct plm_req_params *plm);
605
Govind Singhd7468a52016-03-09 14:32:57 +0530606QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530607 const struct plm_req_params *plm,
608 uint32_t *gchannel_list);
609
Govind Singhd7468a52016-03-09 14:32:57 +0530610QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530611
Govind Singh89727882016-04-15 13:58:27 +0530612#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530613QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530614 struct pno_scan_req_params *pno,
615 uint32_t *gchannel_freq_list);
Govind Singh89727882016-04-15 13:58:27 +0530616#endif
Govind Singhae855362016-03-07 14:24:22 +0530617
Govind Singhd7468a52016-03-09 14:32:57 +0530618QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530619 uint8_t is_add_ts);
620
Govind Singhd7468a52016-03-09 14:32:57 +0530621QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530622 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
623 uint8_t addr[IEEE80211_ADDR_LEN]);
624
Govind Singhd7468a52016-03-09 14:32:57 +0530625QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530626 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
627
Govind Singhd7468a52016-03-09 14:32:57 +0530628QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530629 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
630 uint8_t addr[IEEE80211_ADDR_LEN]);
631
Govind Singhd7468a52016-03-09 14:32:57 +0530632QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530633 struct pe_stats_req *get_stats_param,
634 uint8_t addr[IEEE80211_ADDR_LEN]);
635
Govind Singhd7468a52016-03-09 14:32:57 +0530636QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530637
Govind Singhd7468a52016-03-09 14:32:57 +0530638QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530639
Govind Singhd7468a52016-03-09 14:32:57 +0530640QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530641 struct link_status_params *link_status);
642
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530643#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530644QDF_STATUS wmi_unified_lphb_config_hbenable_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530645 wmi_hb_set_enable_cmd_fixed_param *params);
646
Govind Singhd7468a52016-03-09 14:32:57 +0530647QDF_STATUS wmi_unified_lphb_config_tcp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530648 wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
649
Govind Singhd7468a52016-03-09 14:32:57 +0530650QDF_STATUS wmi_unified_lphb_config_tcp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530651 wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
652
Govind Singhd7468a52016-03-09 14:32:57 +0530653QDF_STATUS wmi_unified_lphb_config_udp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530654 wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
655
Govind Singhd7468a52016-03-09 14:32:57 +0530656QDF_STATUS wmi_unified_lphb_config_udp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530657 wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
Govind Singh229bc0d2016-03-07 15:33:31 +0530658
Govind Singhd7468a52016-03-09 14:32:57 +0530659QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530660 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
661
Govind Singhd7468a52016-03-09 14:32:57 +0530662QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530663 wmi_mac_addr peer_macaddr);
Govind Singh229bc0d2016-03-07 15:33:31 +0530664
Govind Singhd7468a52016-03-09 14:32:57 +0530665QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530666 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
Paul Zhanga9ec9432017-01-04 16:45:42 +0800667
Govind Singh89727882016-04-15 13:58:27 +0530668#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530669
Paul Zhanga9ec9432017-01-04 16:45:42 +0800670QDF_STATUS wmi_unified_action_frame_patterns_cmd(void *wmi_hdl,
671 struct action_wakeup_set_param *action_params);
672
Govind Singhd7468a52016-03-09 14:32:57 +0530673QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530674 uint32_t cmd, uint32_t value1, uint32_t value2);
675
Govind Singhd7468a52016-03-09 14:32:57 +0530676QDF_STATUS wmi_unified_wow_sta_ra_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530677 uint8_t vdev_id, uint8_t default_pattern,
678 uint16_t rate_limit_interval);
679
Govind Singhd7468a52016-03-09 14:32:57 +0530680QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530681
Govind Singhd7468a52016-03-09 14:32:57 +0530682QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530683
Govind Singhd7468a52016-03-09 14:32:57 +0530684QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700685 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530686 uint8_t *data);
687
Govind Singhd7468a52016-03-09 14:32:57 +0530688QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530689 bool dfs_phyerr_filter_offload);
690
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530691#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530692QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530693 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530694 uint32_t cmd_id,
695 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530696#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530697
Govind Singhd7468a52016-03-09 14:32:57 +0530698QDF_STATUS wmi_unified_add_wow_wakeup_event_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530699 uint32_t vdev_id,
700 uint32_t bitmap,
701 bool enable);
702
Govind Singhd7468a52016-03-09 14:32:57 +0530703QDF_STATUS wmi_unified_wow_patterns_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530704 uint8_t vdev_id, uint8_t ptrn_id,
705 const uint8_t *ptrn, uint8_t ptrn_len,
706 uint8_t ptrn_offset, const uint8_t *mask,
707 uint8_t mask_len, bool user,
708 uint8_t default_patterns);
709
Govind Singhd7468a52016-03-09 14:32:57 +0530710QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530711 uint8_t vdev_id);
712
Govind Singhd7468a52016-03-09 14:32:57 +0530713QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
714QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530715 uint8_t ac);
716
Govind Singhd7468a52016-03-09 14:32:57 +0530717QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530718 struct aggr_add_ts_param *aggr_qos_rsp_msg);
719
Govind Singhd7468a52016-03-09 14:32:57 +0530720QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530721 struct add_ts_param *msg);
722
Govind Singhd7468a52016-03-09 14:32:57 +0530723QDF_STATUS wmi_unified_enable_disable_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530724 uint8_t vdev_id, bool enable);
725
Govind Singhd7468a52016-03-09 14:32:57 +0530726QDF_STATUS wmi_unified_config_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530727 uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
728 uint8_t filter_id, bool enable);
729
Govind Singhd7468a52016-03-09 14:32:57 +0530730QDF_STATUS wmi_unified_add_clear_mcbc_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530731 uint8_t vdev_id,
732 struct qdf_mac_addr multicast_addr,
733 bool clearList);
Govind Singh229bc0d2016-03-07 15:33:31 +0530734
Govind Singhd7468a52016-03-09 14:32:57 +0530735QDF_STATUS wmi_unified_send_gtk_offload_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530736 struct gtk_offload_params *params,
737 bool enable_offload,
738 uint32_t gtk_offload_opcode);
739
Govind Singhd7468a52016-03-09 14:32:57 +0530740QDF_STATUS wmi_unified_process_gtk_offload_getinfo_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530741 uint8_t vdev_id,
742 uint64_t offload_req_opcode);
743
Govind Singhd7468a52016-03-09 14:32:57 +0530744QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530745 struct periodic_tx_pattern *
746 pAddPeriodicTxPtrnParams,
747 uint8_t vdev_id);
748
Govind Singhd7468a52016-03-09 14:32:57 +0530749QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530750 uint8_t vdev_id,
751 uint8_t pattern_id);
752
Govind Singhd7468a52016-03-09 14:32:57 +0530753QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530754 struct stats_ext_params *preq);
755
Govind Singhd7468a52016-03-09 14:32:57 +0530756QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530757 struct ext_wow_params *params);
758
Govind Singhd7468a52016-03-09 14:32:57 +0530759QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530760 struct app_type2_params *appType2Params);
761
Govind Singhd7468a52016-03-09 14:32:57 +0530762QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530763 uint32_t timer_val);
764
Govind Singhd7468a52016-03-09 14:32:57 +0530765QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530766 struct nan_req_params *nan_req);
767
Govind Singhd7468a52016-03-09 14:32:57 +0530768QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530769 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
770
Govind Singhd7468a52016-03-09 14:32:57 +0530771QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530772
Govind Singhd7468a52016-03-09 14:32:57 +0530773QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530774 uint32_t reg_dmn, uint16_t regdmn2G,
775 uint16_t regdmn5G, int8_t ctl2G,
776 int8_t ctl5G);
777
Govind Singhd7468a52016-03-09 14:32:57 +0530778QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530779 struct tdls_channel_switch_params *chan_switch_params);
780
Govind Singhd7468a52016-03-09 14:32:57 +0530781QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530782 void *tdls_param, uint8_t tdls_state);
783
Govind Singhd7468a52016-03-09 14:32:57 +0530784QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530785 struct tdls_peer_state_params *peerStateParams,
786 uint32_t *ch_mhz);
787
Govind Singhd7468a52016-03-09 14:32:57 +0530788QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530789 struct fw_dump_req_param *mem_dump_req);
790
Govind Singhd7468a52016-03-09 14:32:57 +0530791QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530792 struct vdev_ie_info_param *ie_info);
793
Govind Singhd7468a52016-03-09 14:32:57 +0530794QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530795 struct ocb_utc_param *utc);
Govind Singhae855362016-03-07 14:24:22 +0530796
Govind Singhd7468a52016-03-09 14:32:57 +0530797QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530798 struct dcc_get_stats_param *get_stats_param);
Govind Singhae855362016-03-07 14:24:22 +0530799
Govind Singhd7468a52016-03-09 14:32:57 +0530800QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530801 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh229bc0d2016-03-07 15:33:31 +0530802
Govind Singhd7468a52016-03-09 14:32:57 +0530803QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530804 struct dcc_update_ndl_param *update_ndl_param);
Govind Singh71ee2d72016-03-07 16:30:32 +0530805
Govind Singhd7468a52016-03-09 14:32:57 +0530806QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530807 void *evt_buf);
808
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530809#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530810QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530811 wmi_resource_config *res_cfg,
812 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
813 bool action);
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530814#endif
Govind Singh71ee2d72016-03-07 16:30:32 +0530815
Govind Singhd7468a52016-03-09 14:32:57 +0530816QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530817
Govind Singhd7468a52016-03-09 14:32:57 +0530818QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530819 uint8_t *custom_addr);
820
Govind Singhd7468a52016-03-09 14:32:57 +0530821QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530822 uint8_t *event,
823 uint32_t len);
824
Govind Singhd7468a52016-03-09 14:32:57 +0530825QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530826 struct wmi_wifi_start_log *start_log);
827
Govind Singhd7468a52016-03-09 14:32:57 +0530828QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530829
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530830QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
831 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530832
Govind Singhd7468a52016-03-09 14:32:57 +0530833QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530834 uint32_t hw_mode_index);
835
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530836QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530837 struct wmi_dual_mac_config *msg);
838
Govind Singhd7468a52016-03-09 14:32:57 +0530839QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
Mukul Sharmaac755cd2016-09-07 20:31:47 +0530840 struct host_offload_req_param *arp_offload_req,
841 struct host_offload_req_param *ns_offload_req,
842 bool arp_only,
Govind Singh2ae94372016-03-07 16:45:38 +0530843 uint8_t vdev_id);
844
Hanumanth Reddy Pothulac5c13212017-01-19 18:47:43 +0530845/**
846 * wmi_unified_configure_broadcast_filter_cmd() - Enable/Disable Broadcast
847 * filter
848 * when target goes to wow suspend/resume mode
849 * @wmi_hdl: wmi handle
850 * @vdev_id: device identifier
851 * @bc_filter: enable/disable Broadcast filter
852 *
853 *
854 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
855 */
856QDF_STATUS wmi_unified_configure_broadcast_filter_cmd(void *wmi_hdl,
857 uint8_t vdev_id, bool bc_filter);
858
Govind Singhd7468a52016-03-09 14:32:57 +0530859QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530860 struct flashing_req_params *flashing);
861
Govind Singhd7468a52016-03-09 14:32:57 +0530862QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530863 struct app_type1_params *app_type1_params);
864
Govind Singhd7468a52016-03-09 14:32:57 +0530865QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530866 struct ssid_hotlist_request_params *request);
867
Govind Singhd7468a52016-03-09 14:32:57 +0530868QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530869 uint8_t vdev_id);
870
Govind Singhd7468a52016-03-09 14:32:57 +0530871QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530872 struct wmi_unit_test_cmd *wmi_utest);
873
Govind Singhd7468a52016-03-09 14:32:57 +0530874QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530875 struct wmi_roam_invoke_cmd *roaminvoke,
876 uint32_t ch_hz);
877
Govind Singhd7468a52016-03-09 14:32:57 +0530878QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530879 uint32_t command, uint32_t vdev_id);
880
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530881#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530882QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530883 wmi_ap_profile *ap_profile_p,
884 uint32_t vdev_id);
Govind Singh89727882016-04-15 13:58:27 +0530885#endif
Govind Singh2ae94372016-03-07 16:45:38 +0530886
Govind Singhd7468a52016-03-09 14:32:57 +0530887QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530888 uint32_t scan_period,
889 uint32_t scan_age,
890 uint32_t vdev_id);
891
Govind Singhd7468a52016-03-09 14:32:57 +0530892QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530893 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -0700894 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +0530895 uint8_t list_type, uint32_t vdev_id);
896
Govind Singhd7468a52016-03-09 14:32:57 +0530897QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530898 uint32_t vdev_id,
899 int32_t rssi_change_thresh,
900 uint32_t bcn_rssi_weight,
901 uint32_t hirssi_delay_btw_scans);
902
Govind Singhd7468a52016-03-09 14:32:57 +0530903QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530904 struct ext_scan_setbssi_hotlist_params *
905 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530906
907QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
908 uint8_t macaddr[IEEE80211_ADDR_LEN],
909 struct stats_request_params *param);
910
911QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
912 uint32_t param);
913
Sathish Kumar50232d72016-08-09 16:50:46 +0530914QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
915 struct set_bwf_params *param);
916
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530917QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
918
919QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
920
921QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
922 uint32_t value);
923
924QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
925 uint32_t value);
926
927QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +0530928 struct btcoex_cfg_params *param);
929
930QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
931 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530932
Sathish Kumar612d0c22017-01-19 14:57:37 +0530933QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
934 coex_ver_cfg_t *param);
935
Govind Singh89727882016-04-15 13:58:27 +0530936QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
937 struct set_atf_params *param);
938
939QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
940 struct fips_params *param);
941
942QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
943 struct wlan_profile_params *param);
944
945QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
946 struct wlan_profile_params *param);
947
948QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
949 struct channel_param *param);
950
951QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
952 struct ht_ie_params *param);
953
954QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
955 struct vht_ie_params *param);
956
957QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
958 struct wmm_update_params *param);
959
960QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
961 struct ant_switch_tbl_params *param);
962
963QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
964 struct ratepwr_table_params *param);
965
966QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
967
968QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
969 struct ctl_table_params *param);
970
971QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
972 struct mimogain_table_params *param);
973
974QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
975 struct ratepwr_chainmsk_params *param);
976
977QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
978 struct macaddr_params *param);
979
980QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
981
982QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
983
984QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
985 struct acparams_params *param);
986
987QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
988 struct vap_dscp_tid_map_params *param);
989
990QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
991 struct proxy_ast_reserve_params *param);
992
993QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
994 struct pdev_qvit_params *param);
995
996QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
997 struct mcast_group_update_params *param);
998
999QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
1000 struct peer_add_wds_entry_params *param);
1001
1002QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
1003 struct peer_del_wds_entry_params *param);
1004
1005QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1006 struct peer_update_wds_entry_params *param);
1007
1008QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1009
1010QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1011
1012QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1013
1014QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1015 struct smart_ant_enable_params *param);
1016
1017QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1018 struct smart_ant_rx_ant_params *param);
1019
1020QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1021 uint8_t macaddr[IEEE80211_ADDR_LEN],
1022 struct smart_ant_tx_ant_params *param);
1023
1024QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1025 uint8_t macaddr[IEEE80211_ADDR_LEN],
1026 struct smart_ant_training_info_params *param);
1027
1028QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1029 uint8_t macaddr[IEEE80211_ADDR_LEN],
1030 struct smart_ant_node_config_params *param);
1031
1032QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1033 struct smart_ant_enable_tx_feedback_params *param);
1034
1035QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1036 struct vdev_spectral_configure_params *param);
1037
1038QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1039 struct vdev_spectral_enable_params *param);
1040
1041QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1042 struct bss_chan_info_request_params *param);
1043
1044QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1045 struct thermal_mitigation_params *param);
1046
1047QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1048 uint8_t macaddr[IEEE80211_ADDR_LEN],
1049 struct set_neighbour_rx_params *param);
1050
1051QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1052 struct set_fwtest_params *param);
1053
1054QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1055 struct config_ratemask_params *param);
1056
Govind Singh89727882016-04-15 13:58:27 +05301057
1058QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1059 struct pdev_set_regdomain_params *param);
1060
1061QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1062 struct set_quiet_mode_params *param);
1063
1064QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1065 struct set_beacon_filter_params *param);
1066
1067QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1068 struct remove_beacon_filter_params *param);
1069
1070QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1071 uint8_t macaddr[IEEE80211_ADDR_LEN],
1072 struct addba_clearresponse_params *param);
1073
1074QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1075 uint8_t macaddr[IEEE80211_ADDR_LEN],
1076 struct addba_send_params *param);
1077
1078QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1079 uint8_t macaddr[IEEE80211_ADDR_LEN],
1080 struct delba_send_params *param);
1081
1082QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1083 uint8_t macaddr[IEEE80211_ADDR_LEN],
1084 struct addba_setresponse_params *param);
1085
1086QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1087 uint8_t macaddr[IEEE80211_ADDR_LEN],
1088 struct singleamsdu_params *param);
1089
1090QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1091 uint8_t macaddr[IEEE80211_ADDR_LEN],
1092 struct set_qboost_params *param);
1093
1094QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1095 struct mu_scan_params *param);
1096
1097QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1098 struct lteu_config_params *param);
1099
1100QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1101 struct set_ps_mode_params *param);
1102
1103QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1104 target_resource_config *res_cfg,
1105 uint8_t num_mem_chunks,
1106 struct wmi_host_mem_chunk *mem_chunk);
1107
1108bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1109
Rajeev Kumar5d8497b2017-02-12 02:12:17 -08001110QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf,
1111 void *bitmap_buf);
Govind Singh89727882016-04-15 13:58:27 +05301112
1113QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1114
1115QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1116 void *evt_buf, target_capability_info *ev);
1117
1118QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1119 TARGET_HAL_REG_CAPABILITIES *hal_reg_cap);
1120
1121host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1122 void *evt_buf, uint8_t *num_entries);
1123
1124uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1125
1126QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1127 void *ev, uint8_t *macaddr);
1128
1129QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1130 void *ev, struct wmi_host_fw_ver *fw_ver);
1131
1132QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1133 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1134
1135QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1136
1137uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
Rajeev Kumar45fdf7f2017-01-25 12:46:21 -08001138 void *evt_b, uint32_t *len);
Govind Singh89727882016-04-15 13:58:27 +05301139
1140QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1141 wmi_host_ext_resource_config *ext_cfg);
1142
1143QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1144
1145QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1146 struct packet_power_info_params *param);
1147
1148QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1149 struct gpio_config_params *param);
1150
1151QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1152 struct gpio_output_params *param);
1153
1154QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1155 struct rtt_meas_req_test_params *param);
1156
1157QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1158 struct rtt_meas_req_params *param);
1159
1160QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1161 struct rtt_keepalive_req_params *param);
1162
1163QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1164 struct lci_set_params *param);
1165
1166QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1167 struct lcr_set_params *param);
1168
1169QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1170 struct periodic_chan_stats_params *param);
1171
1172QDF_STATUS
1173wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1174 struct atf_peer_request_params *param);
1175
1176QDF_STATUS
1177wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1178 struct atf_grouping_params *param);
1179/* Extract APIs */
1180
1181QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1182 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1183
1184QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05301185 void *evt_buf, struct wmi_host_dcs_interference_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301186
1187QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1188 wmi_host_ath_dcs_cw_int *cw_int);
1189
1190QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1191 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1192
Govind Singh89727882016-04-15 13:58:27 +05301193QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301194 struct wmi_host_fips_event_param *param);
1195
Govind Singh89727882016-04-15 13:58:27 +05301196QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1197 wmi_host_vdev_start_resp *vdev_rsp);
1198QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1199 uint32_t *vdev_map, uint32_t **tbttoffset_list);
1200
1201QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
Himanshu Agarwal53d526b2017-01-05 14:23:18 +05301202 struct mgmt_rx_event_params *hdr, uint8_t **bufp);
Govind Singh89727882016-04-15 13:58:27 +05301203
1204QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1205 uint32_t *vdev_id);
1206
1207QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1208 wmi_host_roam_event *ev);
1209
1210QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1211 wmi_host_scan_event *param);
1212
1213QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1214 wmi_host_mu_report_event *param);
1215
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301216QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1217 uint8_t idx, wmi_host_mu_db_entry *param);
1218
1219QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1220 wmi_host_peer_txmu_cnt_event *param);
1221
1222QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1223 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1224
1225QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1226 void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1227
Govind Singh89727882016-04-15 13:58:27 +05301228QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1229 wmi_host_pdev_tpc_config_event *param);
1230
1231QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1232 void *evt_buf, uint32_t *gpio_num);
1233
1234QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1235 void *evt_buf, uint32_t *result);
1236
1237QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1238 wmi_host_pdev_nfcal_power_all_channels_event *param);
1239
1240QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1241 wmi_host_pdev_tpc_event *param);
1242
1243QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1244 void *evt_buf,
1245 wmi_host_pdev_generic_buffer_event *param);
1246
1247QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1248 wmi_host_mgmt_tx_compl_event *param);
1249
1250QDF_STATUS wmi_extract_swba_vdev_map(void *wmi_hdl, void *evt_buf,
1251 uint32_t *vdev_map);
1252
1253QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1254 uint32_t idx, wmi_host_tim_info *tim_info);
1255
1256QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1257 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1258
1259QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1260 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1261
1262QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1263 wmi_host_peer_sta_kickout_event *ev);
1264
1265QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1266 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1267
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001268QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1269 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1270
Govind Singh89727882016-04-15 13:58:27 +05301271QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1272 wmi_host_rtt_event_hdr *ev);
1273
1274QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1275 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1276 uint16_t hdump_len);
1277
1278QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1279 wmi_host_rtt_error_report_event *ev);
1280
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001281QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1282 uint32_t index, wmi_host_chan_stats *chan_stats);
1283
Govind Singh89727882016-04-15 13:58:27 +05301284QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1285 uint32_t *temp, uint32_t *level);
1286
1287QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1288 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1289
1290QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1291 uint16_t datalen, uint16_t *buf_offset,
1292 wmi_host_phyerr_t *phyerr);
1293
1294QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1295 uint16_t datalen, uint16_t *buf_offset,
1296 wmi_host_phyerr_t *phyerr);
1297
1298QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1299 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1300
1301QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1302 wmi_host_wlan_profile_ctx_t *profile_ctx);
1303
Govind Singh41da3152016-05-06 20:20:25 +05301304QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301305 wmi_host_wlan_profile_t *profile_data);
1306
1307QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1308 wmi_host_chan_info_event *chan_info);
1309
1310QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1311 wmi_host_pdev_channel_hopping_event *ch_hopping);
1312
1313QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1314 wmi_host_stats_event *stats_param);
1315
1316QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1317 uint32_t index,
1318 wmi_host_pdev_stats *pdev_stats);
1319
1320QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1321 uint32_t index,
1322 wmi_host_pdev_ext_stats *pdev_ext_stats);
1323
1324QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1325 uint32_t index,
1326 wmi_host_peer_extd_stats *peer_extd_stats);
1327
1328QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1329 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1330
1331QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1332 wmi_host_inst_stats_resp *inst_rssi_resp);
1333
1334QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1335 uint32_t index, wmi_host_peer_stats *peer_stats);
1336
1337QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1338 wmi_host_tx_data_traffic_ctrl_event *ev);
1339
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301340QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1341 wmi_host_atf_peer_stats_event *ev);
1342
1343QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
1344 uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
1345
Govind Singh89727882016-04-15 13:58:27 +05301346QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1347 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1348
1349QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1350 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301351
1352QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1353 struct wmi_power_dbg_params *param);
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001354QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1355 struct sar_limit_cmd_params *params);
Gupta, Kapil7b768002016-04-25 19:14:19 +05301356QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1357 struct wmi_adaptive_dwelltime_params *
1358 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301359QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1360 struct set_fwtest_params *wmi_fwtest);
1361
Leo Chang8184e9c2016-09-28 13:43:36 -07001362QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1363 struct rx_reorder_queue_setup_params *param);
1364QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1365 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301366
1367QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
1368 struct wmi_host_service_ext_param *param);
1369QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1370 void *wmi_hdl,
1371 uint8_t *evt_buf, uint8_t hw_mode_idx,
1372 struct wmi_host_hw_mode_caps *param);
1373QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1374 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301375 uint8_t *evt_buf,
1376 uint8_t hw_mode_id,
1377 uint8_t phy_id,
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301378 struct wmi_host_mac_phy_caps *param);
1379QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1380 void *wmi_hdl,
1381 uint8_t *evt_buf, uint8_t phy_idx,
1382 struct WMI_HOST_HAL_REG_CAPABILITIES_EXT *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301383
Sathish Kumar617535c2017-01-24 17:51:26 +05301384QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1385 uint8_t *evt_buf,
1386 struct wmi_host_pdev_utf_event *param);
Vijay Pamidipatiadd0ba72017-01-17 12:53:05 +05301387
1388QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
1389 uint8_t *evt_buf,
1390 struct wmi_host_peer_delete_response_event *param);
Govind Singhd475ea92016-03-06 19:55:02 +05301391#endif /* _WMI_UNIFIED_API_H_ */