blob: 6ef02519e0cc122ba216305db8946bd993fe8531 [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"
Govind Singhd475ea92016-03-06 19:55:02 +053045
Govind Singhd7468a52016-03-09 14:32:57 +053046typedef qdf_nbuf_t wmi_buf_t;
47#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
48
49#define WMI_LOGD(args ...) \
50 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
51#define WMI_LOGI(args ...) \
52 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
53#define WMI_LOGW(args ...) \
54 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
55#define WMI_LOGE(args ...) \
56 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
57#define WMI_LOGP(args ...) \
58 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
59
60#define WMI_DEBUG_ALWAYS
61
62#ifdef WMI_DEBUG_ALWAYS
63#define WMI_LOGA(args ...) \
64 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
65#else
66#define WMI_LOGA(args ...)
67#endif
Govind Singhd475ea92016-03-06 19:55:02 +053068
Soumya Bhatc09518b2016-12-20 14:27:03 +053069/* wrapper to keep WMI agnostic of event handler execution context */
70#define wmi_unified_register_event(wmi_handle, event_id, handler_func) \
71 wmi_unified_register_event_handler(wmi_handle, \
72 event_id, handler_func, WMI_RX_UMAC_CTX)
73
Govind Singhd475ea92016-03-06 19:55:02 +053074/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053075 * struct wmi_ops - service callbacks to upper layer
76 * @service_ready_cbk: service ready callback
77 * @service_ready_ext_cbk: service ready ext callback
78 * @ready_cbk: ready calback
79 * @wma_process_fw_event_handler_cbk: generic event handler callback
80 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053081struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053082
Govind Singh6ad6ada2016-02-04 18:42:30 +053083 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +053084 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +053085};
86
87/**
88 * enum wmi_target_type - type of supported wmi command
89 * @WMI_TLV_TARGET: tlv based target
90 * @WMI_NON_TLV_TARGET: non-tlv based target
91 *
92 */
93enum wmi_target_type {
94 WMI_TLV_TARGET,
95 WMI_NON_TLV_TARGET
96};
97
98/**
Govind Singh4ec6ff92016-03-09 12:03:29 +053099 * enum wmi_rx_exec_ctx - wmi rx execution context
100 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
101 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
102 *
103 */
104enum wmi_rx_exec_ctx {
105 WMI_RX_WORK_CTX,
106 WMI_RX_UMAC_CTX
107};
108
109/**
Govind Singhd475ea92016-03-06 19:55:02 +0530110 * attach for unified WMI
111 *
112 * @param scn_handle : handle to SCN.
Govind Singh89727882016-04-15 13:58:27 +0530113 * @param target_type : type of supported wmi command
114 * @param use_cookie : flag to indicate cookie based allocation
115 * @param ops : handle to wmi ops
Mukul Sharma36d159b2017-01-30 19:55:40 +0530116 * @psoc : objmgr psoc
Govind Singhd475ea92016-03-06 19:55:02 +0530117 * @return opaque handle.
118 */
119void *wmi_unified_attach(void *scn_handle,
Govind Singh6ad6ada2016-02-04 18:42:30 +0530120 osdev_t osdev, enum wmi_target_type target_type,
Mukul Sharma36d159b2017-01-30 19:55:40 +0530121 bool use_cookie, struct wmi_rx_ops *ops,
122 struct wlan_objmgr_psoc *psoc);
123
Govind Singh6ad6ada2016-02-04 18:42:30 +0530124
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700125
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700126/**
127 * wmi_mgmt_cmd_record() - Wrapper function for mgmt command logging macro
128 *
129 * @wmi_handle: wmi handle
130 * @cmd: mgmt command
131 * @header: pointer to 802.11 header
132 * @vdev_id: vdev id
133 * @chanfreq: channel frequency
134 *
135 * Return: none
136 */
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530137void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, uint32_t cmd,
Sandeep Puligilla20fb76b2016-07-19 13:20:57 -0700138 void *header, uint32_t vdev_id, uint32_t chanfreq);
Sandeep Puligilla38a294f2016-06-13 15:42:55 -0700139
Govind Singhd475ea92016-03-06 19:55:02 +0530140/**
141 * detach for unified WMI
142 *
143 * @param wmi_handle : handle to WMI.
144 * @return void.
145 */
146void wmi_unified_detach(struct wmi_unified *wmi_handle);
147
148void
149wmi_unified_remove_work(struct wmi_unified *wmi_handle);
150
151/**
152 * generic function to allocate WMI buffer
153 *
154 * @param wmi_handle : handle to WMI.
155 * @param len : length of the buffer
156 * @return wmi_buf_t.
157 */
158#ifdef MEMORY_DEBUG
159#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
160wmi_buf_t
161wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
162 uint8_t *file_name, uint32_t line_num);
163#else
164wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
165#endif
166
167/**
168 * generic function frees WMI net buffer
169 *
170 * @param net_buf : Pointer ot net_buf to be freed
171 */
172void wmi_buf_free(wmi_buf_t net_buf);
173
174/**
175 * generic function to send unified WMI command
176 *
177 * @param wmi_handle : handle to WMI.
178 * @param buf : wmi command buffer
179 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530180 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530181 * @return 0 on success and -ve on failure.
182 */
Houston Hoffman09f96f92016-09-27 23:29:49 -0700183QDF_STATUS
Govind Singh6ad6ada2016-02-04 18:42:30 +0530184wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530185 uint32_t cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530186
187/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530188 * wmi_unified_register_event_handler() - WMI event handler
189 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530190 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530191 * @wmi_handle: handle to WMI.
192 * @event_id: WMI event ID
193 * @handler_func: Event handler call back function
194 * @rx_ctx: rx event processing context
195 *
Govind Singhd475ea92016-03-06 19:55:02 +0530196 * @return 0 on success and -ve on failure.
197 */
198int
199wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530200 uint32_t event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530201 wmi_unified_event_handler handler_func,
202 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530203
204/**
205 * WMI event handler unregister function
206 *
207 * @param wmi_handle : handle to WMI.
208 * @param event_id : WMI event ID
209 * @return 0 on success and -ve on failure.
210 */
211int
212wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530213 uint32_t event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530214
215/**
216 * request wmi to connet its htc service.
217 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530218 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530219 * @return void
220 */
221int
222wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
223 void *htc_handle);
224
225/*
226 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530227 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530228 */
229
230int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
231
232/**
Govind Singh89727882016-04-15 13:58:27 +0530233 * WMI API to get updated host_credits
234 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530235 */
236
237int wmi_get_host_credits(wmi_unified_t wmi_handle);
238
239/**
Govind Singh89727882016-04-15 13:58:27 +0530240 * WMI API to get WMI Pending Commands in the HTC queue
241 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530242 */
243
244int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
245
246/**
Govind Singh89727882016-04-15 13:58:27 +0530247 * WMI API to set target suspend state
248 * @param wmi_handle : handle to WMI.
249 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530250 */
Govind Singhd475ea92016-03-06 19:55:02 +0530251void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
252
Govind Singh89727882016-04-15 13:58:27 +0530253/**
Sarada Prasanna Garnayakd49444c2017-01-05 19:30:07 +0530254 * WMI API to set bus suspend state
255 * @param wmi_handle: handle to WMI.
256 * @param val: suspend state boolean
257 */
258void wmi_set_is_wow_bus_suspended(wmi_unified_t wmi_handle, A_BOOL val);
259
260/**
261 * WMI API to set crash injection state
262 * @param wmi_handle: handle to WMI.
263 * @param val: crash injection state boolean
264 */
265void wmi_tag_crash_inject(wmi_unified_t wmi_handle, A_BOOL flag);
266
267/**
Govind Singh89727882016-04-15 13:58:27 +0530268 * generic function to block unified WMI command
269 * @param wmi_handle : handle to WMI.
270 * @return 0 on success and -ve on failure.
271 */
272int
273wmi_stop(wmi_unified_t wmi_handle);
274
275/**
276 * API to flush all the previous packets associated with the wmi endpoint
277 *
278 * @param wmi_handle : handle to WMI.
279 */
280void
281wmi_flush_endpoint(wmi_unified_t wmi_handle);
282
283/**
284 * API to handle wmi rx event after UMAC has taken care of execution
285 * context
286 *
287 * @param wmi_handle : handle to WMI.
288 * @param evt_buf : wmi event buffer
289 */
290void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530291#ifdef FEATURE_RUNTIME_PM
292void
293wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
294bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
295#else
296static inline void
297wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
298{
299 return;
300}
301static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
302{
303 return false;
304}
305#endif
306
Govind Singhd475ea92016-03-06 19:55:02 +0530307/**
Govind Singhd7468a52016-03-09 14:32:57 +0530308 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530309 * @param wmi_handle : handle to WMI.
310 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530311 */
Govind Singhd475ea92016-03-06 19:55:02 +0530312void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
313uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530314
315
Govind Singhd7468a52016-03-09 14:32:57 +0530316QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530317 uint8_t macaddr[IEEE80211_ADDR_LEN],
318 struct vdev_create_params *param);
319
Govind Singhd7468a52016-03-09 14:32:57 +0530320QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530321 uint8_t if_id);
322
Govind Singhd7468a52016-03-09 14:32:57 +0530323QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530324 uint8_t macaddr[IEEE80211_ADDR_LEN],
325 struct vdev_start_params *param);
326
Govind Singhd7468a52016-03-09 14:32:57 +0530327QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530328 uint8_t vdev_id);
329
Govind Singhd7468a52016-03-09 14:32:57 +0530330QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530331 uint8_t bssid[IEEE80211_ADDR_LEN],
332 struct vdev_up_params *params);
333
Govind Singhd7468a52016-03-09 14:32:57 +0530334QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530335 uint8_t vdev_id);
336
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530337QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
338 struct vdev_start_params *req);
339
340QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
341 struct hidden_ssid_vdev_restart_params *restart_params);
342
Govind Singhd7468a52016-03-09 14:32:57 +0530343QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530344 struct vdev_set_params *param);
345
Govind Singhd7468a52016-03-09 14:32:57 +0530346QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530347 uint8_t
348 peer_addr[IEEE80211_ADDR_LEN],
349 uint8_t vdev_id);
350
Govind Singhd7468a52016-03-09 14:32:57 +0530351QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530352 uint8_t peer_addr[IEEE80211_ADDR_LEN],
353 struct peer_flush_params *param);
354
Govind Singhd7468a52016-03-09 14:32:57 +0530355QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530356 uint8_t peer_addr[IEEE80211_ADDR_LEN],
357 struct peer_set_params *param);
358
Govind Singhd7468a52016-03-09 14:32:57 +0530359QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530360 struct peer_create_params *param);
361
Govind Singhd7468a52016-03-09 14:32:57 +0530362QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530363 uint8_t macaddr[IEEE80211_ADDR_LEN],
364 struct stats_request_params *param);
365
Govind Singhd7468a52016-03-09 14:32:57 +0530366QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530367 uint32_t value, uint8_t mac_id);
368
369
Govind Singhd7468a52016-03-09 14:32:57 +0530370QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530371 struct wow_cmd_params *param,
372 uint8_t mac_id);
373
Jeff Johnson6b8bda42016-10-07 13:03:02 -0700374QDF_STATUS wmi_unified_wow_wakeup_send(void *wmi_hdl);
375
376QDF_STATUS wmi_unified_wow_add_wakeup_event_send(void *wmi_hdl,
377 struct wow_add_wakeup_params *param);
378
379QDF_STATUS wmi_unified_wow_add_wakeup_pattern_send(void *wmi_hdl,
380 struct wow_add_wakeup_pattern_params *param);
381
382QDF_STATUS wmi_unified_wow_remove_wakeup_pattern_send(void *wmi_hdl,
383 struct wow_remove_wakeup_pattern_params *param);
384
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530385#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +0530386QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
387 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT);
388#else
Govind Singhd7468a52016-03-09 14:32:57 +0530389QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530390 uint8_t macaddr[IEEE80211_ADDR_LEN],
391 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530392#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530393
Govind Singh89727882016-04-15 13:58:27 +0530394QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530395
Govind Singhd7468a52016-03-09 14:32:57 +0530396QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530397 struct suspend_params *param,
398 uint8_t mac_id);
399
Govind Singhd7468a52016-03-09 14:32:57 +0530400QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530401 uint8_t mac_id);
402
Govind Singhd7468a52016-03-09 14:32:57 +0530403QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530404wmi_unified_pdev_param_send(void *wmi_hdl,
405 struct pdev_params *param,
406 uint8_t mac_id);
407
Govind Singh89727882016-04-15 13:58:27 +0530408QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
409 struct beacon_tmpl_params *param);
410
411
Govind Singhd7468a52016-03-09 14:32:57 +0530412QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530413 struct beacon_params *param);
414
Govind Singhd7468a52016-03-09 14:32:57 +0530415QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530416 struct peer_assoc_params *param);
417
Govind Singhd7468a52016-03-09 14:32:57 +0530418QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530419 struct sta_ps_params *param);
420
Govind Singhd7468a52016-03-09 14:32:57 +0530421QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530422 uint8_t macaddr[IEEE80211_ADDR_LEN],
423 struct ap_ps_params *param);
424
Govind Singhd7468a52016-03-09 14:32:57 +0530425QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530426 struct scan_start_params *param);
427
Govind Singhd7468a52016-03-09 14:32:57 +0530428QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530429 struct scan_stop_params *param);
430
Govind Singhd7468a52016-03-09 14:32:57 +0530431QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530432 struct scan_chan_list_params *param);
433
434
Govind Singhd7468a52016-03-09 14:32:57 +0530435QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530436 struct crash_inject *param);
437
Govind Singhd7468a52016-03-09 14:32:57 +0530438QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530439 struct pdev_utf_params *param,
440 uint8_t mac_id);
441
Govind Singhd7468a52016-03-09 14:32:57 +0530442QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530443 struct dbglog_params *param);
444
Govind Singhd7468a52016-03-09 14:32:57 +0530445QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530446 struct wmi_mgmt_params *param);
447
Govind Singhd7468a52016-03-09 14:32:57 +0530448QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530449 uint32_t param_value);
450
Govind Singhd7468a52016-03-09 14:32:57 +0530451QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530452 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530453QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530454wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
455 struct sta_uapsd_trig_params *param);
456
Govind Singhd7468a52016-03-09 14:32:57 +0530457QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530458
Govind Singhd7468a52016-03-09 14:32:57 +0530459QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530460 struct p2p_ps_params *oppps);
461
Govind Singhd7468a52016-03-09 14:32:57 +0530462QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530463 struct p2p_ps_params *noa);
464
Govind Singhd7468a52016-03-09 14:32:57 +0530465QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530466 int value);
467
Govind Singhd7468a52016-03-09 14:32:57 +0530468QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530469
Govind Singhd7468a52016-03-09 14:32:57 +0530470QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530471 struct ocb_utc_param *utc);
472
Govind Singhd7468a52016-03-09 14:32:57 +0530473QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530474 struct ocb_timing_advert_param *timing_advert);
475
Govind Singhd7468a52016-03-09 14:32:57 +0530476QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530477 struct ocb_timing_advert_param *timing_advert);
478
Govind Singhd7468a52016-03-09 14:32:57 +0530479QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530480 struct ocb_config_param *config, uint32_t *ch_mhz);
481
Govind Singhd7468a52016-03-09 14:32:57 +0530482QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530483 uint8_t vdev_id);
484
Govind Singhd7468a52016-03-09 14:32:57 +0530485QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530486 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
487
Govind Singhd7468a52016-03-09 14:32:57 +0530488QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530489 struct thermal_cmd_params *thermal_info);
490
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530491QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
492 struct wmi_peer_rate_report_params *rate_report_params);
493
Govind Singhd7468a52016-03-09 14:32:57 +0530494QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530495 (void *wmi_hdl,
496 uint32_t adapter_1_chan_freq,
497 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
498
Govind Singhd7468a52016-03-09 14:32:57 +0530499QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530500 (void *wmi_hdl,
501 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
502
Govind Singhd7468a52016-03-09 14:32:57 +0530503QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700504 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
505 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530506
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530507#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530508QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530509 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530510#endif
Govind Singhae855362016-03-07 14:24:22 +0530511
Govind Singhd7468a52016-03-09 14:32:57 +0530512QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530513 uint8_t vdev_id, uint32_t max_retries,
514 uint32_t retry_interval);
515
516
Govind Singhd7468a52016-03-09 14:32:57 +0530517QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530518 struct sta_params *params);
519
Govind Singhd7468a52016-03-09 14:32:57 +0530520QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530521 struct wmi_gtx_config *gtx_info);
522
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530523#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530524QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530525 uint8_t vdev_id,
526 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
Govind Singh89727882016-04-15 13:58:27 +0530527#endif
Govind Singhae855362016-03-07 14:24:22 +0530528
529
Govind Singhd7468a52016-03-09 14:32:57 +0530530QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530531 uint8_t vdev_id,
532 struct wmi_probe_resp_params *probe_rsp_info,
533 uint8_t *frm);
534
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530535QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
536 struct set_key_params *key_params);
537
Padma, Santhosh Kumar73524052016-09-11 18:24:59 +0530538QDF_STATUS wmi_unified_encrypt_decrypt_send_cmd(void *wmi_hdl,
539 struct encrypt_decrypt_req_params *params);
540
Govind Singhd7468a52016-03-09 14:32:57 +0530541QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530542 A_UINT32 vdev_id, uint8_t *p2p_ie);
543
544
Govind Singhd7468a52016-03-09 14:32:57 +0530545QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530546 struct gateway_update_req_param *req);
547
Govind Singhd7468a52016-03-09 14:32:57 +0530548QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530549 struct rssi_monitor_param *req);
550
Govind Singhd7468a52016-03-09 14:32:57 +0530551QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530552 struct scan_mac_oui *psetoui);
553
Govind Singhd7468a52016-03-09 14:32:57 +0530554QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530555 struct wifi_passpoint_req_param *req);
556
Govind Singhd7468a52016-03-09 14:32:57 +0530557QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530558 struct wifi_passpoint_req_param *req);
559
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530560#ifdef CONFIG_MCL
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530561QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
562 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
563 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530564#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530565
566QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
567 struct roam_offload_scan_rssi_params *roam_req);
568
569QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
570 struct roam_scan_filter_params *roam_req);
571
Govind Singhd7468a52016-03-09 14:32:57 +0530572QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530573 struct wifi_enhanched_pno_params *req);
574
Govind Singhd7468a52016-03-09 14:32:57 +0530575QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530576 struct ipa_offload_control_params *ipa_offload);
577
Govind Singhd7468a52016-03-09 14:32:57 +0530578QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530579 struct extscan_capabilities_params *pgetcapab);
580
Govind Singhd7468a52016-03-09 14:32:57 +0530581QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530582 struct extscan_cached_result_params *pcached_results);
583
584
Govind Singhd7468a52016-03-09 14:32:57 +0530585QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530586 struct extscan_capabilities_reset_params *reset_req);
587
588
Govind Singhd7468a52016-03-09 14:32:57 +0530589QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530590 struct extscan_set_sig_changereq_params *
591 psigchange);
592
Govind Singhd7468a52016-03-09 14:32:57 +0530593QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530594 struct extscan_bssid_hotlist_reset_params *photlist_reset);
595
Govind Singhd7468a52016-03-09 14:32:57 +0530596QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530597 struct extscan_stop_req_params *pstopcmd);
598
Govind Singhd7468a52016-03-09 14:32:57 +0530599QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530600 struct wifi_scan_cmd_req_params *pstart);
601
Govind Singhd7468a52016-03-09 14:32:57 +0530602QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530603 const struct plm_req_params *plm);
604
Govind Singhd7468a52016-03-09 14:32:57 +0530605QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530606 const struct plm_req_params *plm,
607 uint32_t *gchannel_list);
608
Govind Singhd7468a52016-03-09 14:32:57 +0530609QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530610
Govind Singh89727882016-04-15 13:58:27 +0530611#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530612QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530613 struct pno_scan_req_params *pno,
614 uint32_t *gchannel_freq_list);
Govind Singh89727882016-04-15 13:58:27 +0530615#endif
Govind Singhae855362016-03-07 14:24:22 +0530616
Govind Singhd7468a52016-03-09 14:32:57 +0530617QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530618 uint8_t is_add_ts);
619
Govind Singhd7468a52016-03-09 14:32:57 +0530620QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530621 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
622 uint8_t addr[IEEE80211_ADDR_LEN]);
623
Govind Singhd7468a52016-03-09 14:32:57 +0530624QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530625 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
626
Govind Singhd7468a52016-03-09 14:32:57 +0530627QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530628 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
629 uint8_t addr[IEEE80211_ADDR_LEN]);
630
Govind Singhd7468a52016-03-09 14:32:57 +0530631QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530632 struct pe_stats_req *get_stats_param,
633 uint8_t addr[IEEE80211_ADDR_LEN]);
634
Govind Singhd7468a52016-03-09 14:32:57 +0530635QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530636
Govind Singhd7468a52016-03-09 14:32:57 +0530637QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530638
Govind Singhd7468a52016-03-09 14:32:57 +0530639QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530640 struct link_status_params *link_status);
641
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530642#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530643QDF_STATUS wmi_unified_lphb_config_hbenable_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530644 wmi_hb_set_enable_cmd_fixed_param *params);
645
Govind Singhd7468a52016-03-09 14:32:57 +0530646QDF_STATUS wmi_unified_lphb_config_tcp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530647 wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
648
Govind Singhd7468a52016-03-09 14:32:57 +0530649QDF_STATUS wmi_unified_lphb_config_tcp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530650 wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
651
Govind Singhd7468a52016-03-09 14:32:57 +0530652QDF_STATUS wmi_unified_lphb_config_udp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530653 wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
654
Govind Singhd7468a52016-03-09 14:32:57 +0530655QDF_STATUS wmi_unified_lphb_config_udp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530656 wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
Govind Singh229bc0d2016-03-07 15:33:31 +0530657
Govind Singhd7468a52016-03-09 14:32:57 +0530658QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530659 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
660
Govind Singhd7468a52016-03-09 14:32:57 +0530661QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530662 wmi_mac_addr peer_macaddr);
Govind Singh229bc0d2016-03-07 15:33:31 +0530663
Govind Singhd7468a52016-03-09 14:32:57 +0530664QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530665 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
Paul Zhanga9ec9432017-01-04 16:45:42 +0800666
Govind Singh89727882016-04-15 13:58:27 +0530667#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530668
Paul Zhanga9ec9432017-01-04 16:45:42 +0800669QDF_STATUS wmi_unified_action_frame_patterns_cmd(void *wmi_hdl,
670 struct action_wakeup_set_param *action_params);
671
Govind Singhd7468a52016-03-09 14:32:57 +0530672QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530673 uint32_t cmd, uint32_t value1, uint32_t value2);
674
Govind Singhd7468a52016-03-09 14:32:57 +0530675QDF_STATUS wmi_unified_wow_sta_ra_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530676 uint8_t vdev_id, uint8_t default_pattern,
677 uint16_t rate_limit_interval);
678
Govind Singhd7468a52016-03-09 14:32:57 +0530679QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530680
Govind Singhd7468a52016-03-09 14:32:57 +0530681QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530682
Govind Singhd7468a52016-03-09 14:32:57 +0530683QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700684 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530685 uint8_t *data);
686
Govind Singhd7468a52016-03-09 14:32:57 +0530687QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530688 bool dfs_phyerr_filter_offload);
689
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530690#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530691QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530692 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530693 uint32_t cmd_id,
694 uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530695#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530696
Govind Singhd7468a52016-03-09 14:32:57 +0530697QDF_STATUS wmi_unified_add_wow_wakeup_event_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530698 uint32_t vdev_id,
699 uint32_t bitmap,
700 bool enable);
701
Govind Singhd7468a52016-03-09 14:32:57 +0530702QDF_STATUS wmi_unified_wow_patterns_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530703 uint8_t vdev_id, uint8_t ptrn_id,
704 const uint8_t *ptrn, uint8_t ptrn_len,
705 uint8_t ptrn_offset, const uint8_t *mask,
706 uint8_t mask_len, bool user,
707 uint8_t default_patterns);
708
Govind Singhd7468a52016-03-09 14:32:57 +0530709QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530710 uint8_t vdev_id);
711
Govind Singhd7468a52016-03-09 14:32:57 +0530712QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
713QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530714 uint8_t ac);
715
Govind Singhd7468a52016-03-09 14:32:57 +0530716QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530717 struct aggr_add_ts_param *aggr_qos_rsp_msg);
718
Govind Singhd7468a52016-03-09 14:32:57 +0530719QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530720 struct add_ts_param *msg);
721
Govind Singhd7468a52016-03-09 14:32:57 +0530722QDF_STATUS wmi_unified_enable_disable_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530723 uint8_t vdev_id, bool enable);
724
Govind Singhd7468a52016-03-09 14:32:57 +0530725QDF_STATUS wmi_unified_config_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530726 uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
727 uint8_t filter_id, bool enable);
728
Govind Singhd7468a52016-03-09 14:32:57 +0530729QDF_STATUS wmi_unified_add_clear_mcbc_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530730 uint8_t vdev_id,
731 struct qdf_mac_addr multicast_addr,
732 bool clearList);
Govind Singh229bc0d2016-03-07 15:33:31 +0530733
Govind Singhd7468a52016-03-09 14:32:57 +0530734QDF_STATUS wmi_unified_send_gtk_offload_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530735 struct gtk_offload_params *params,
736 bool enable_offload,
737 uint32_t gtk_offload_opcode);
738
Govind Singhd7468a52016-03-09 14:32:57 +0530739QDF_STATUS wmi_unified_process_gtk_offload_getinfo_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530740 uint8_t vdev_id,
741 uint64_t offload_req_opcode);
742
Govind Singhd7468a52016-03-09 14:32:57 +0530743QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530744 struct periodic_tx_pattern *
745 pAddPeriodicTxPtrnParams,
746 uint8_t vdev_id);
747
Govind Singhd7468a52016-03-09 14:32:57 +0530748QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530749 uint8_t vdev_id,
750 uint8_t pattern_id);
751
Govind Singhd7468a52016-03-09 14:32:57 +0530752QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530753 struct stats_ext_params *preq);
754
Govind Singhd7468a52016-03-09 14:32:57 +0530755QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530756 struct ext_wow_params *params);
757
Govind Singhd7468a52016-03-09 14:32:57 +0530758QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530759 struct app_type2_params *appType2Params);
760
Govind Singhd7468a52016-03-09 14:32:57 +0530761QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530762 uint32_t timer_val);
763
Govind Singhd7468a52016-03-09 14:32:57 +0530764QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530765 struct nan_req_params *nan_req);
766
Govind Singhd7468a52016-03-09 14:32:57 +0530767QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530768 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
769
Govind Singhd7468a52016-03-09 14:32:57 +0530770QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530771
Govind Singhd7468a52016-03-09 14:32:57 +0530772QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530773 uint32_t reg_dmn, uint16_t regdmn2G,
774 uint16_t regdmn5G, int8_t ctl2G,
775 int8_t ctl5G);
776
Govind Singhd7468a52016-03-09 14:32:57 +0530777QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530778 struct tdls_channel_switch_params *chan_switch_params);
779
Govind Singhd7468a52016-03-09 14:32:57 +0530780QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530781 void *tdls_param, uint8_t tdls_state);
782
Govind Singhd7468a52016-03-09 14:32:57 +0530783QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530784 struct tdls_peer_state_params *peerStateParams,
785 uint32_t *ch_mhz);
786
Govind Singhd7468a52016-03-09 14:32:57 +0530787QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530788 struct fw_dump_req_param *mem_dump_req);
789
Govind Singhd7468a52016-03-09 14:32:57 +0530790QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530791 struct vdev_ie_info_param *ie_info);
792
Govind Singhd7468a52016-03-09 14:32:57 +0530793QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530794 struct ocb_utc_param *utc);
Govind Singhae855362016-03-07 14:24:22 +0530795
Govind Singhd7468a52016-03-09 14:32:57 +0530796QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530797 struct dcc_get_stats_param *get_stats_param);
Govind Singhae855362016-03-07 14:24:22 +0530798
Govind Singhd7468a52016-03-09 14:32:57 +0530799QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530800 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh229bc0d2016-03-07 15:33:31 +0530801
Govind Singhd7468a52016-03-09 14:32:57 +0530802QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530803 struct dcc_update_ndl_param *update_ndl_param);
Govind Singh71ee2d72016-03-07 16:30:32 +0530804
Govind Singhd7468a52016-03-09 14:32:57 +0530805QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530806 void *evt_buf);
807
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530808#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530809QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530810 wmi_resource_config *res_cfg,
811 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
812 bool action);
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530813#endif
Govind Singh71ee2d72016-03-07 16:30:32 +0530814
Govind Singhd7468a52016-03-09 14:32:57 +0530815QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530816
Govind Singhd7468a52016-03-09 14:32:57 +0530817QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530818 uint8_t *custom_addr);
819
Govind Singhd7468a52016-03-09 14:32:57 +0530820QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530821 uint8_t *event,
822 uint32_t len);
823
Govind Singhd7468a52016-03-09 14:32:57 +0530824QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530825 struct wmi_wifi_start_log *start_log);
826
Govind Singhd7468a52016-03-09 14:32:57 +0530827QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530828
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530829QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
830 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530831
Govind Singhd7468a52016-03-09 14:32:57 +0530832QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530833 uint32_t hw_mode_index);
834
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530835QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530836 struct wmi_dual_mac_config *msg);
837
Govind Singhd7468a52016-03-09 14:32:57 +0530838QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
Mukul Sharmaac755cd2016-09-07 20:31:47 +0530839 struct host_offload_req_param *arp_offload_req,
840 struct host_offload_req_param *ns_offload_req,
841 bool arp_only,
Govind Singh2ae94372016-03-07 16:45:38 +0530842 uint8_t vdev_id);
843
Hanumanth Reddy Pothulac5c13212017-01-19 18:47:43 +0530844/**
845 * wmi_unified_configure_broadcast_filter_cmd() - Enable/Disable Broadcast
846 * filter
847 * when target goes to wow suspend/resume mode
848 * @wmi_hdl: wmi handle
849 * @vdev_id: device identifier
850 * @bc_filter: enable/disable Broadcast filter
851 *
852 *
853 * Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
854 */
855QDF_STATUS wmi_unified_configure_broadcast_filter_cmd(void *wmi_hdl,
856 uint8_t vdev_id, bool bc_filter);
857
Govind Singhd7468a52016-03-09 14:32:57 +0530858QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530859 struct flashing_req_params *flashing);
860
Govind Singhd7468a52016-03-09 14:32:57 +0530861QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530862 struct app_type1_params *app_type1_params);
863
Govind Singhd7468a52016-03-09 14:32:57 +0530864QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530865 struct ssid_hotlist_request_params *request);
866
Govind Singhd7468a52016-03-09 14:32:57 +0530867QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530868 uint8_t vdev_id);
869
Govind Singhd7468a52016-03-09 14:32:57 +0530870QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530871 struct wmi_unit_test_cmd *wmi_utest);
872
Govind Singhd7468a52016-03-09 14:32:57 +0530873QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530874 struct wmi_roam_invoke_cmd *roaminvoke,
875 uint32_t ch_hz);
876
Govind Singhd7468a52016-03-09 14:32:57 +0530877QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530878 uint32_t command, uint32_t vdev_id);
879
Kiran Venkatappa9da7e042016-08-09 22:52:35 +0530880#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530881QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530882 wmi_ap_profile *ap_profile_p,
883 uint32_t vdev_id);
Govind Singh89727882016-04-15 13:58:27 +0530884#endif
Govind Singh2ae94372016-03-07 16:45:38 +0530885
Govind Singhd7468a52016-03-09 14:32:57 +0530886QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530887 uint32_t scan_period,
888 uint32_t scan_age,
889 uint32_t vdev_id);
890
Govind Singhd7468a52016-03-09 14:32:57 +0530891QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530892 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -0700893 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +0530894 uint8_t list_type, uint32_t vdev_id);
895
Govind Singhd7468a52016-03-09 14:32:57 +0530896QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530897 uint32_t vdev_id,
898 int32_t rssi_change_thresh,
899 uint32_t bcn_rssi_weight,
900 uint32_t hirssi_delay_btw_scans);
901
Govind Singhd7468a52016-03-09 14:32:57 +0530902QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530903 struct ext_scan_setbssi_hotlist_params *
904 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530905
906QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
907 uint8_t macaddr[IEEE80211_ADDR_LEN],
908 struct stats_request_params *param);
909
910QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
911 uint32_t param);
912
Sathish Kumar50232d72016-08-09 16:50:46 +0530913QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
914 struct set_bwf_params *param);
915
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530916QDF_STATUS wmi_send_get_user_position_cmd(void *wmi_hdl, uint32_t value);
917
918QDF_STATUS wmi_send_get_peer_mumimo_tx_count_cmd(void *wmi_hdl, uint32_t value);
919
920QDF_STATUS wmi_send_reset_peer_mumimo_tx_count_cmd(void *wmi_hdl,
921 uint32_t value);
922
923QDF_STATUS wmi_send_pdev_caldata_version_check_cmd(void *wmi_hdl,
924 uint32_t value);
925
926QDF_STATUS wmi_unified_send_btcoex_wlan_priority_cmd(void *wmi_hdl,
Sathish Kumar7e566c52016-11-10 15:30:22 +0530927 struct btcoex_cfg_params *param);
928
929QDF_STATUS wmi_unified_send_btcoex_duty_cycle_cmd(void *wmi_hdl,
930 struct btcoex_cfg_params *param);
Sathish Kumar7e2eaed2016-11-14 17:44:29 +0530931
Govind Singh89727882016-04-15 13:58:27 +0530932QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
933 struct set_atf_params *param);
934
935QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
936 struct fips_params *param);
937
938QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
939 struct wlan_profile_params *param);
940
941QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
942 struct wlan_profile_params *param);
943
944QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
945 struct channel_param *param);
946
947QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
948 struct ht_ie_params *param);
949
950QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
951 struct vht_ie_params *param);
952
953QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
954 struct wmm_update_params *param);
955
956QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
957 struct ant_switch_tbl_params *param);
958
959QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
960 struct ratepwr_table_params *param);
961
962QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
963
964QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
965 struct ctl_table_params *param);
966
967QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
968 struct mimogain_table_params *param);
969
970QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
971 struct ratepwr_chainmsk_params *param);
972
973QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
974 struct macaddr_params *param);
975
976QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
977
978QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
979
980QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
981 struct acparams_params *param);
982
983QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
984 struct vap_dscp_tid_map_params *param);
985
986QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
987 struct proxy_ast_reserve_params *param);
988
989QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
990 struct pdev_qvit_params *param);
991
992QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
993 struct mcast_group_update_params *param);
994
995QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
996 struct peer_add_wds_entry_params *param);
997
998QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
999 struct peer_del_wds_entry_params *param);
1000
1001QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
1002 struct peer_update_wds_entry_params *param);
1003
1004QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1005
1006QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
1007
1008QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
1009
1010QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
1011 struct smart_ant_enable_params *param);
1012
1013QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
1014 struct smart_ant_rx_ant_params *param);
1015
1016QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
1017 uint8_t macaddr[IEEE80211_ADDR_LEN],
1018 struct smart_ant_tx_ant_params *param);
1019
1020QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
1021 uint8_t macaddr[IEEE80211_ADDR_LEN],
1022 struct smart_ant_training_info_params *param);
1023
1024QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
1025 uint8_t macaddr[IEEE80211_ADDR_LEN],
1026 struct smart_ant_node_config_params *param);
1027
1028QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
1029 struct smart_ant_enable_tx_feedback_params *param);
1030
1031QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
1032 struct vdev_spectral_configure_params *param);
1033
1034QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
1035 struct vdev_spectral_enable_params *param);
1036
1037QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
1038 struct bss_chan_info_request_params *param);
1039
1040QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
1041 struct thermal_mitigation_params *param);
1042
1043QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
1044 uint8_t macaddr[IEEE80211_ADDR_LEN],
1045 struct set_neighbour_rx_params *param);
1046
1047QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
1048 struct set_fwtest_params *param);
1049
1050QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
1051 struct config_ratemask_params *param);
1052
Govind Singh89727882016-04-15 13:58:27 +05301053
1054QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
1055 struct pdev_set_regdomain_params *param);
1056
1057QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
1058 struct set_quiet_mode_params *param);
1059
1060QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
1061 struct set_beacon_filter_params *param);
1062
1063QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
1064 struct remove_beacon_filter_params *param);
1065
1066QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
1067 uint8_t macaddr[IEEE80211_ADDR_LEN],
1068 struct addba_clearresponse_params *param);
1069
1070QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
1071 uint8_t macaddr[IEEE80211_ADDR_LEN],
1072 struct addba_send_params *param);
1073
1074QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
1075 uint8_t macaddr[IEEE80211_ADDR_LEN],
1076 struct delba_send_params *param);
1077
1078QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
1079 uint8_t macaddr[IEEE80211_ADDR_LEN],
1080 struct addba_setresponse_params *param);
1081
1082QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
1083 uint8_t macaddr[IEEE80211_ADDR_LEN],
1084 struct singleamsdu_params *param);
1085
1086QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1087 uint8_t macaddr[IEEE80211_ADDR_LEN],
1088 struct set_qboost_params *param);
1089
1090QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1091 struct mu_scan_params *param);
1092
1093QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1094 struct lteu_config_params *param);
1095
1096QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1097 struct set_ps_mode_params *param);
1098
1099QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1100 target_resource_config *res_cfg,
1101 uint8_t num_mem_chunks,
1102 struct wmi_host_mem_chunk *mem_chunk);
1103
1104bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1105
1106QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf);
1107
1108QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1109
1110QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1111 void *evt_buf, target_capability_info *ev);
1112
1113QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1114 TARGET_HAL_REG_CAPABILITIES *hal_reg_cap);
1115
1116host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1117 void *evt_buf, uint8_t *num_entries);
1118
1119uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1120
1121QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1122 void *ev, uint8_t *macaddr);
1123
1124QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1125 void *ev, struct wmi_host_fw_ver *fw_ver);
1126
1127QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1128 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1129
1130QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1131
1132uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
1133 void *evt_b, uint16_t *len);
1134
1135QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1136 wmi_host_ext_resource_config *ext_cfg);
1137
1138QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1139
1140QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1141 struct packet_power_info_params *param);
1142
1143QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1144 struct gpio_config_params *param);
1145
1146QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1147 struct gpio_output_params *param);
1148
1149QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1150 struct rtt_meas_req_test_params *param);
1151
1152QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1153 struct rtt_meas_req_params *param);
1154
1155QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1156 struct rtt_keepalive_req_params *param);
1157
1158QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1159 struct lci_set_params *param);
1160
1161QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1162 struct lcr_set_params *param);
1163
1164QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1165 struct periodic_chan_stats_params *param);
1166
1167QDF_STATUS
1168wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1169 struct atf_peer_request_params *param);
1170
1171QDF_STATUS
1172wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1173 struct atf_grouping_params *param);
1174/* Extract APIs */
1175
1176QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1177 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1178
1179QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
Kiran Venkatappa9b7a9592016-12-29 18:09:32 +05301180 void *evt_buf, struct wmi_host_dcs_interference_param *param);
Govind Singh89727882016-04-15 13:58:27 +05301181
1182QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1183 wmi_host_ath_dcs_cw_int *cw_int);
1184
1185QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1186 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1187
Govind Singh89727882016-04-15 13:58:27 +05301188QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
Kiran Venkatappa9f5fcc02016-12-29 22:07:14 +05301189 struct wmi_host_fips_event_param *param);
1190
Govind Singh89727882016-04-15 13:58:27 +05301191QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1192 wmi_host_vdev_start_resp *vdev_rsp);
1193QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1194 uint32_t *vdev_map, uint32_t **tbttoffset_list);
1195
1196QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
1197 wmi_host_mgmt_rx_hdr *hdr, uint8_t **bufp);
1198
1199QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1200 uint32_t *vdev_id);
1201
1202QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1203 wmi_host_roam_event *ev);
1204
1205QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1206 wmi_host_scan_event *param);
1207
1208QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1209 wmi_host_mu_report_event *param);
1210
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301211QDF_STATUS wmi_extract_mu_db_entry(void *wmi_hdl, void *evt_buf,
1212 uint8_t idx, wmi_host_mu_db_entry *param);
1213
1214QDF_STATUS wmi_extract_mumimo_tx_count_ev_param(void *wmi_hdl, void *evt_buf,
1215 wmi_host_peer_txmu_cnt_event *param);
1216
1217QDF_STATUS wmi_extract_peer_gid_userpos_list_ev_param(void *wmi_hdl,
1218 void *evt_buf, wmi_host_peer_gid_userpos_list_event *param);
1219
1220QDF_STATUS wmi_extract_pdev_caldata_version_check_ev_param(void *wmi_hdl,
1221 void *evt_buf, wmi_host_pdev_check_cal_version_event *param);
1222
Govind Singh89727882016-04-15 13:58:27 +05301223QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1224 wmi_host_pdev_tpc_config_event *param);
1225
1226QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1227 void *evt_buf, uint32_t *gpio_num);
1228
1229QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1230 void *evt_buf, uint32_t *result);
1231
1232QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1233 wmi_host_pdev_nfcal_power_all_channels_event *param);
1234
1235QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1236 wmi_host_pdev_tpc_event *param);
1237
1238QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1239 void *evt_buf,
1240 wmi_host_pdev_generic_buffer_event *param);
1241
1242QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1243 wmi_host_mgmt_tx_compl_event *param);
1244
1245QDF_STATUS wmi_extract_swba_vdev_map(void *wmi_hdl, void *evt_buf,
1246 uint32_t *vdev_map);
1247
1248QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1249 uint32_t idx, wmi_host_tim_info *tim_info);
1250
1251QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1252 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1253
1254QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1255 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1256
1257QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1258 wmi_host_peer_sta_kickout_event *ev);
1259
1260QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1261 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1262
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001263QDF_STATUS wmi_extract_bcnflt_stats(void *wmi_hdl, void *evt_buf,
1264 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1265
Govind Singh89727882016-04-15 13:58:27 +05301266QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1267 wmi_host_rtt_event_hdr *ev);
1268
1269QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1270 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1271 uint16_t hdump_len);
1272
1273QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1274 wmi_host_rtt_error_report_event *ev);
1275
Jeff Johnson6b8bda42016-10-07 13:03:02 -07001276QDF_STATUS wmi_extract_chan_stats(void *wmi_hdl, void *evt_buf,
1277 uint32_t index, wmi_host_chan_stats *chan_stats);
1278
Govind Singh89727882016-04-15 13:58:27 +05301279QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1280 uint32_t *temp, uint32_t *level);
1281
1282QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1283 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1284
1285QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1286 uint16_t datalen, uint16_t *buf_offset,
1287 wmi_host_phyerr_t *phyerr);
1288
1289QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1290 uint16_t datalen, uint16_t *buf_offset,
1291 wmi_host_phyerr_t *phyerr);
1292
1293QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1294 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1295
1296QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1297 wmi_host_wlan_profile_ctx_t *profile_ctx);
1298
Govind Singh41da3152016-05-06 20:20:25 +05301299QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301300 wmi_host_wlan_profile_t *profile_data);
1301
1302QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1303 wmi_host_chan_info_event *chan_info);
1304
1305QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1306 wmi_host_pdev_channel_hopping_event *ch_hopping);
1307
1308QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1309 wmi_host_stats_event *stats_param);
1310
1311QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1312 uint32_t index,
1313 wmi_host_pdev_stats *pdev_stats);
1314
1315QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1316 uint32_t index,
1317 wmi_host_pdev_ext_stats *pdev_ext_stats);
1318
1319QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1320 uint32_t index,
1321 wmi_host_peer_extd_stats *peer_extd_stats);
1322
1323QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1324 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1325
1326QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1327 wmi_host_inst_stats_resp *inst_rssi_resp);
1328
1329QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1330 uint32_t index, wmi_host_peer_stats *peer_stats);
1331
1332QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1333 wmi_host_tx_data_traffic_ctrl_event *ev);
1334
Sathish Kumar7e2eaed2016-11-14 17:44:29 +05301335QDF_STATUS wmi_extract_atf_peer_stats_ev(void *wmi_hdl, void *evt_buf,
1336 wmi_host_atf_peer_stats_event *ev);
1337
1338QDF_STATUS wmi_extract_atf_token_info_ev(void *wmi_hdl, void *evt_buf,
1339 uint8_t idx, wmi_host_atf_peer_stats_info *atf_token_info);
1340
Govind Singh89727882016-04-15 13:58:27 +05301341QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1342 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1343
1344QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1345 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301346
1347QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1348 struct wmi_power_dbg_params *param);
Manikandan Mohan7e5ad482016-12-13 13:14:06 -08001349QDF_STATUS wmi_unified_send_sar_limit_cmd(void *wmi_hdl,
1350 struct sar_limit_cmd_params *params);
Gupta, Kapil7b768002016-04-25 19:14:19 +05301351QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1352 struct wmi_adaptive_dwelltime_params *
1353 wmi_param);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301354QDF_STATUS wmi_unified_fw_test_cmd(void *wmi_hdl,
1355 struct set_fwtest_params *wmi_fwtest);
1356
Leo Chang8184e9c2016-09-28 13:43:36 -07001357QDF_STATUS wmi_unified_peer_rx_reorder_queue_setup_send(void *wmi_hdl,
1358 struct rx_reorder_queue_setup_params *param);
1359QDF_STATUS wmi_unified_peer_rx_reorder_queue_remove_send(void *wmi_hdl,
1360 struct rx_reorder_queue_remove_params *param);
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301361
1362QDF_STATUS wmi_extract_service_ready_ext(void *wmi_hdl, uint8_t *evt_buf,
1363 struct wmi_host_service_ext_param *param);
1364QDF_STATUS wmi_extract_hw_mode_cap_service_ready_ext(
1365 void *wmi_hdl,
1366 uint8_t *evt_buf, uint8_t hw_mode_idx,
1367 struct wmi_host_hw_mode_caps *param);
1368QDF_STATUS wmi_extract_mac_phy_cap_service_ready_ext(
1369 void *wmi_hdl,
Kiran Venkatappa176fe6c2016-12-26 15:38:06 +05301370 uint8_t *evt_buf,
1371 uint8_t hw_mode_id,
1372 uint8_t phy_id,
Kiran Venkatappa9c71b362016-08-10 23:55:40 +05301373 struct wmi_host_mac_phy_caps *param);
1374QDF_STATUS wmi_extract_reg_cap_service_ready_ext(
1375 void *wmi_hdl,
1376 uint8_t *evt_buf, uint8_t phy_idx,
1377 struct WMI_HOST_HAL_REG_CAPABILITIES_EXT *param);
Sathish Kumar617535c2017-01-24 17:51:26 +05301378QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
1379 uint8_t *evt_buf,
1380 struct wmi_host_pdev_utf_event *param);
Govind Singhd475ea92016-03-06 19:55:02 +05301381#endif /* _WMI_UNIFIED_API_H_ */