blob: 8d3324463371b6f9dfa971bea7fac5b32b0dd975 [file] [log] [blame]
Govind Singhd475ea92016-03-06 19:55:02 +05301/*
2 * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
3 *
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"
39#include "wmi.h"
40#include "htc_api.h"
Govind Singh3ddda1f2016-03-09 11:34:12 +053041#include "wmi_unified_param.h"
Govind Singhd475ea92016-03-06 19:55:02 +053042
Govind Singhd7468a52016-03-09 14:32:57 +053043typedef qdf_nbuf_t wmi_buf_t;
44#define wmi_buf_data(_buf) qdf_nbuf_data(_buf)
45
46#define WMI_LOGD(args ...) \
47 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_DEBUG, ## args)
48#define WMI_LOGI(args ...) \
49 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_INFO, ## args)
50#define WMI_LOGW(args ...) \
51 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_WARN, ## args)
52#define WMI_LOGE(args ...) \
53 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_ERROR, ## args)
54#define WMI_LOGP(args ...) \
55 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
56
57#define WMI_DEBUG_ALWAYS
58
59#ifdef WMI_DEBUG_ALWAYS
60#define WMI_LOGA(args ...) \
61 QDF_TRACE(QDF_MODULE_ID_WMI, QDF_TRACE_LEVEL_FATAL, ## args)
62#else
63#define WMI_LOGA(args ...)
64#endif
Govind Singhd475ea92016-03-06 19:55:02 +053065
66/**
Govind Singh6ad6ada2016-02-04 18:42:30 +053067 * struct wmi_ops - service callbacks to upper layer
68 * @service_ready_cbk: service ready callback
69 * @service_ready_ext_cbk: service ready ext callback
70 * @ready_cbk: ready calback
71 * @wma_process_fw_event_handler_cbk: generic event handler callback
72 */
Govind Singh3ddda1f2016-03-09 11:34:12 +053073struct wmi_rx_ops {
Govind Singh4ec6ff92016-03-09 12:03:29 +053074
Govind Singh6ad6ada2016-02-04 18:42:30 +053075 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh4ec6ff92016-03-09 12:03:29 +053076 void *ev, uint8_t rx_ctx);
Govind Singh6ad6ada2016-02-04 18:42:30 +053077};
78
79/**
80 * enum wmi_target_type - type of supported wmi command
81 * @WMI_TLV_TARGET: tlv based target
82 * @WMI_NON_TLV_TARGET: non-tlv based target
83 *
84 */
85enum wmi_target_type {
86 WMI_TLV_TARGET,
87 WMI_NON_TLV_TARGET
88};
89
90/**
Govind Singh4ec6ff92016-03-09 12:03:29 +053091 * enum wmi_rx_exec_ctx - wmi rx execution context
92 * @WMI_RX_WORK_CTX: work queue context execution provided by WMI layer
93 * @WMI_RX_UMAC_CTX: execution context provided by umac layer
94 *
95 */
96enum wmi_rx_exec_ctx {
97 WMI_RX_WORK_CTX,
98 WMI_RX_UMAC_CTX
99};
100
101/**
Govind Singhd475ea92016-03-06 19:55:02 +0530102 * attach for unified WMI
103 *
104 * @param scn_handle : handle to SCN.
Govind Singh89727882016-04-15 13:58:27 +0530105 * @param target_type : type of supported wmi command
106 * @param use_cookie : flag to indicate cookie based allocation
107 * @param ops : handle to wmi ops
Govind Singhd475ea92016-03-06 19:55:02 +0530108 * @return opaque handle.
109 */
110void *wmi_unified_attach(void *scn_handle,
Govind Singh6ad6ada2016-02-04 18:42:30 +0530111 osdev_t osdev, enum wmi_target_type target_type,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530112 bool use_cookie, struct wmi_rx_ops *ops);
Govind Singh6ad6ada2016-02-04 18:42:30 +0530113
Govind Singhd475ea92016-03-06 19:55:02 +0530114/**
115 * detach for unified WMI
116 *
117 * @param wmi_handle : handle to WMI.
118 * @return void.
119 */
120void wmi_unified_detach(struct wmi_unified *wmi_handle);
121
122void
123wmi_unified_remove_work(struct wmi_unified *wmi_handle);
124
125/**
126 * generic function to allocate WMI buffer
127 *
128 * @param wmi_handle : handle to WMI.
129 * @param len : length of the buffer
130 * @return wmi_buf_t.
131 */
132#ifdef MEMORY_DEBUG
133#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
134wmi_buf_t
135wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
136 uint8_t *file_name, uint32_t line_num);
137#else
138wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
139#endif
140
141/**
142 * generic function frees WMI net buffer
143 *
144 * @param net_buf : Pointer ot net_buf to be freed
145 */
146void wmi_buf_free(wmi_buf_t net_buf);
147
148/**
149 * generic function to send unified WMI command
150 *
151 * @param wmi_handle : handle to WMI.
152 * @param buf : wmi command buffer
153 * @param buflen : wmi command buffer length
Govind Singh89727882016-04-15 13:58:27 +0530154 * @param cmd_id : WMI cmd id
Govind Singhd475ea92016-03-06 19:55:02 +0530155 * @return 0 on success and -ve on failure.
156 */
157int
Govind Singh6ad6ada2016-02-04 18:42:30 +0530158wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Govind Singh89727882016-04-15 13:58:27 +0530159 WMI_CMD_ID cmd_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530160
161/**
Govind Singh4ec6ff92016-03-09 12:03:29 +0530162 * wmi_unified_register_event_handler() - WMI event handler
163 * registration function
Govind Singhd475ea92016-03-06 19:55:02 +0530164 *
Govind Singh4ec6ff92016-03-09 12:03:29 +0530165 * @wmi_handle: handle to WMI.
166 * @event_id: WMI event ID
167 * @handler_func: Event handler call back function
168 * @rx_ctx: rx event processing context
169 *
Govind Singhd475ea92016-03-06 19:55:02 +0530170 * @return 0 on success and -ve on failure.
171 */
172int
173wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530174 uint32_t event_id,
Govind Singh4ec6ff92016-03-09 12:03:29 +0530175 wmi_unified_event_handler handler_func,
176 uint8_t rx_ctx);
Govind Singhd475ea92016-03-06 19:55:02 +0530177
178/**
179 * WMI event handler unregister function
180 *
181 * @param wmi_handle : handle to WMI.
182 * @param event_id : WMI event ID
183 * @return 0 on success and -ve on failure.
184 */
185int
186wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Govind Singh89727882016-04-15 13:58:27 +0530187 uint32_t event_id);
Govind Singhd475ea92016-03-06 19:55:02 +0530188
189/**
190 * request wmi to connet its htc service.
191 * @param wmi_handle : handle to WMI.
Govind Singh89727882016-04-15 13:58:27 +0530192 * @param htc_handle : handle to HTC.
Govind Singhd475ea92016-03-06 19:55:02 +0530193 * @return void
194 */
195int
196wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
197 void *htc_handle);
198
199/*
200 * WMI API to verify the host has enough credits to suspend
Govind Singh89727882016-04-15 13:58:27 +0530201 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530202 */
203
204int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
205
206/**
Govind Singh89727882016-04-15 13:58:27 +0530207 * WMI API to get updated host_credits
208 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530209 */
210
211int wmi_get_host_credits(wmi_unified_t wmi_handle);
212
213/**
Govind Singh89727882016-04-15 13:58:27 +0530214 * WMI API to get WMI Pending Commands in the HTC queue
215 * @param wmi_handle : handle to WMI.
Govind Singhd475ea92016-03-06 19:55:02 +0530216 */
217
218int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
219
220/**
Govind Singh89727882016-04-15 13:58:27 +0530221 * WMI API to set target suspend state
222 * @param wmi_handle : handle to WMI.
223 * @param val : suspend state boolean
Govind Singhd475ea92016-03-06 19:55:02 +0530224 */
Govind Singhd475ea92016-03-06 19:55:02 +0530225void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
226
Govind Singh89727882016-04-15 13:58:27 +0530227/**
228 * generic function to block unified WMI command
229 * @param wmi_handle : handle to WMI.
230 * @return 0 on success and -ve on failure.
231 */
232int
233wmi_stop(wmi_unified_t wmi_handle);
234
235/**
236 * API to flush all the previous packets associated with the wmi endpoint
237 *
238 * @param wmi_handle : handle to WMI.
239 */
240void
241wmi_flush_endpoint(wmi_unified_t wmi_handle);
242
243/**
244 * API to handle wmi rx event after UMAC has taken care of execution
245 * context
246 *
247 * @param wmi_handle : handle to WMI.
248 * @param evt_buf : wmi event buffer
249 */
250void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Govind Singhd475ea92016-03-06 19:55:02 +0530251#ifdef FEATURE_RUNTIME_PM
252void
253wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
254bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
255#else
256static inline void
257wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
258{
259 return;
260}
261static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
262{
263 return false;
264}
265#endif
266
Govind Singh4ec6ff92016-03-09 12:03:29 +0530267
Govind Singhd475ea92016-03-06 19:55:02 +0530268/**
Govind Singhd7468a52016-03-09 14:32:57 +0530269 * UMAC Callback to process fw event.
Govind Singh89727882016-04-15 13:58:27 +0530270 * @param wmi_handle : handle to WMI.
271 * @param evt_buf : wmi event buffer
Govind Singhd475ea92016-03-06 19:55:02 +0530272 */
Govind Singhd475ea92016-03-06 19:55:02 +0530273void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
274uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530275
276
Govind Singhd7468a52016-03-09 14:32:57 +0530277QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530278 uint8_t macaddr[IEEE80211_ADDR_LEN],
279 struct vdev_create_params *param);
280
Govind Singhd7468a52016-03-09 14:32:57 +0530281QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530282 uint8_t if_id);
283
Govind Singhd7468a52016-03-09 14:32:57 +0530284QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530285 uint8_t macaddr[IEEE80211_ADDR_LEN],
286 struct vdev_start_params *param);
287
Govind Singhd7468a52016-03-09 14:32:57 +0530288QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530289 uint8_t vdev_id);
290
Govind Singhd7468a52016-03-09 14:32:57 +0530291QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530292 uint8_t bssid[IEEE80211_ADDR_LEN],
293 struct vdev_up_params *params);
294
Govind Singhd7468a52016-03-09 14:32:57 +0530295QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530296 uint8_t vdev_id);
297
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530298QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
299 struct vdev_start_params *req);
300
301QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
302 struct hidden_ssid_vdev_restart_params *restart_params);
303
Govind Singhd7468a52016-03-09 14:32:57 +0530304QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530305 struct vdev_set_params *param);
306
Govind Singhd7468a52016-03-09 14:32:57 +0530307QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530308 uint8_t
309 peer_addr[IEEE80211_ADDR_LEN],
310 uint8_t vdev_id);
311
Govind Singhd7468a52016-03-09 14:32:57 +0530312QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530313 uint8_t peer_addr[IEEE80211_ADDR_LEN],
314 struct peer_flush_params *param);
315
Govind Singhd7468a52016-03-09 14:32:57 +0530316QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530317 uint8_t peer_addr[IEEE80211_ADDR_LEN],
318 struct peer_set_params *param);
319
Govind Singhd7468a52016-03-09 14:32:57 +0530320QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530321 struct peer_create_params *param);
322
Govind Singhd7468a52016-03-09 14:32:57 +0530323QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530324 uint8_t macaddr[IEEE80211_ADDR_LEN],
325 struct stats_request_params *param);
326
Govind Singhd7468a52016-03-09 14:32:57 +0530327QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530328 uint32_t value, uint8_t mac_id);
329
330
Govind Singhd7468a52016-03-09 14:32:57 +0530331QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530332 struct wow_cmd_params *param,
333 uint8_t mac_id);
334
Govind Singh89727882016-04-15 13:58:27 +0530335#ifdef WMI_NON_TLV_SUPPORT
336QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
337 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT);
338#else
Govind Singhd7468a52016-03-09 14:32:57 +0530339QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530340 uint8_t macaddr[IEEE80211_ADDR_LEN],
341 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530342#endif
Govind Singh3ddda1f2016-03-09 11:34:12 +0530343
Govind Singh89727882016-04-15 13:58:27 +0530344QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530345
Govind Singhd7468a52016-03-09 14:32:57 +0530346QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530347 struct suspend_params *param,
348 uint8_t mac_id);
349
Govind Singhd7468a52016-03-09 14:32:57 +0530350QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530351 uint8_t mac_id);
352
Govind Singhd7468a52016-03-09 14:32:57 +0530353QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530354wmi_unified_pdev_param_send(void *wmi_hdl,
355 struct pdev_params *param,
356 uint8_t mac_id);
357
Govind Singh89727882016-04-15 13:58:27 +0530358QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
359 struct beacon_tmpl_params *param);
360
361
Govind Singhd7468a52016-03-09 14:32:57 +0530362QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530363 struct beacon_params *param);
364
Govind Singhd7468a52016-03-09 14:32:57 +0530365QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530366 struct peer_assoc_params *param);
367
Govind Singhd7468a52016-03-09 14:32:57 +0530368QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530369 struct sta_ps_params *param);
370
Govind Singhd7468a52016-03-09 14:32:57 +0530371QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530372 uint8_t macaddr[IEEE80211_ADDR_LEN],
373 struct ap_ps_params *param);
374
Govind Singhd7468a52016-03-09 14:32:57 +0530375QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530376 struct scan_start_params *param);
377
Govind Singhd7468a52016-03-09 14:32:57 +0530378QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530379 struct scan_stop_params *param);
380
Govind Singhd7468a52016-03-09 14:32:57 +0530381QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530382 struct scan_chan_list_params *param);
383
384
Govind Singhd7468a52016-03-09 14:32:57 +0530385QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530386 struct crash_inject *param);
387
Govind Singhd7468a52016-03-09 14:32:57 +0530388QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530389 struct pdev_utf_params *param,
390 uint8_t mac_id);
391
Govind Singhd7468a52016-03-09 14:32:57 +0530392QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530393 struct dbglog_params *param);
394
Govind Singhd7468a52016-03-09 14:32:57 +0530395QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530396 struct wmi_mgmt_params *param);
397
Govind Singhd7468a52016-03-09 14:32:57 +0530398QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530399 uint32_t param_value);
400
Govind Singhd7468a52016-03-09 14:32:57 +0530401QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530402 uint32_t vdev_id, uint8_t val);
Govind Singhd7468a52016-03-09 14:32:57 +0530403QDF_STATUS
Govind Singh50988cc2016-02-26 18:09:36 +0530404wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
405 struct sta_uapsd_trig_params *param);
406
Govind Singhd7468a52016-03-09 14:32:57 +0530407QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh50988cc2016-02-26 18:09:36 +0530408
Govind Singhd7468a52016-03-09 14:32:57 +0530409QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530410 struct p2p_ps_params *oppps);
411
Govind Singhd7468a52016-03-09 14:32:57 +0530412QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh50988cc2016-02-26 18:09:36 +0530413 struct p2p_ps_params *noa);
414
Govind Singhd7468a52016-03-09 14:32:57 +0530415QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh50988cc2016-02-26 18:09:36 +0530416 int value);
417
Govind Singhd7468a52016-03-09 14:32:57 +0530418QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhe7b800c2016-03-01 15:30:53 +0530419
Govind Singhd7468a52016-03-09 14:32:57 +0530420QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530421 struct ocb_utc_param *utc);
422
Govind Singhd7468a52016-03-09 14:32:57 +0530423QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530424 struct ocb_timing_advert_param *timing_advert);
425
Govind Singhd7468a52016-03-09 14:32:57 +0530426QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530427 struct ocb_timing_advert_param *timing_advert);
428
Govind Singhd7468a52016-03-09 14:32:57 +0530429QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530430 struct ocb_config_param *config, uint32_t *ch_mhz);
431
Govind Singhd7468a52016-03-09 14:32:57 +0530432QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530433 uint8_t vdev_id);
434
Govind Singhd7468a52016-03-09 14:32:57 +0530435QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530436 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
437
Govind Singhd7468a52016-03-09 14:32:57 +0530438QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh9bad0002016-03-01 15:54:59 +0530439 struct thermal_cmd_params *thermal_info);
440
Govind Singhd7468a52016-03-09 14:32:57 +0530441QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530442 (void *wmi_hdl,
443 uint32_t adapter_1_chan_freq,
444 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
445
Govind Singhd7468a52016-03-09 14:32:57 +0530446QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh9bad0002016-03-01 15:54:59 +0530447 (void *wmi_hdl,
448 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
449
Govind Singhd7468a52016-03-09 14:32:57 +0530450QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh608e8892016-04-16 19:24:23 -0700451 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
452 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530453
Govind Singh89727882016-04-15 13:58:27 +0530454#ifndef WMI_NON_TLV_SUPPORT
Govind Singhd7468a52016-03-09 14:32:57 +0530455QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530456 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singh89727882016-04-15 13:58:27 +0530457#endif
Govind Singhae855362016-03-07 14:24:22 +0530458
Govind Singhd7468a52016-03-09 14:32:57 +0530459QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530460 uint8_t vdev_id, uint32_t max_retries,
461 uint32_t retry_interval);
462
463
Govind Singhd7468a52016-03-09 14:32:57 +0530464QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530465 struct sta_params *params);
466
Govind Singhd7468a52016-03-09 14:32:57 +0530467QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhae855362016-03-07 14:24:22 +0530468 struct wmi_gtx_config *gtx_info);
469
Govind Singh89727882016-04-15 13:58:27 +0530470#ifndef WMI_NON_TLV_SUPPORT
Govind Singhd7468a52016-03-09 14:32:57 +0530471QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530472 uint8_t vdev_id,
473 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
Govind Singh89727882016-04-15 13:58:27 +0530474#endif
Govind Singhae855362016-03-07 14:24:22 +0530475
476
Govind Singhd7468a52016-03-09 14:32:57 +0530477QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530478 uint8_t vdev_id,
479 struct wmi_probe_resp_params *probe_rsp_info,
480 uint8_t *frm);
481
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530482QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
483 struct set_key_params *key_params);
484
Govind Singhd7468a52016-03-09 14:32:57 +0530485QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530486 A_UINT32 vdev_id, uint8_t *p2p_ie);
487
488
Govind Singhd7468a52016-03-09 14:32:57 +0530489QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530490 struct gateway_update_req_param *req);
491
Govind Singhd7468a52016-03-09 14:32:57 +0530492QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530493 struct rssi_monitor_param *req);
494
Govind Singhd7468a52016-03-09 14:32:57 +0530495QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530496 struct scan_mac_oui *psetoui);
497
Govind Singhd7468a52016-03-09 14:32:57 +0530498QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530499 struct wifi_passpoint_req_param *req);
500
Govind Singhd7468a52016-03-09 14:32:57 +0530501QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530502 struct wifi_passpoint_req_param *req);
503
Govind Singh89727882016-04-15 13:58:27 +0530504#ifndef WMI_NON_TLV_SUPPORT
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530505QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
506 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
507 struct roam_offload_scan_params *roam_req);
Govind Singh89727882016-04-15 13:58:27 +0530508#endif
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530509
510QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
511 struct roam_offload_scan_rssi_params *roam_req);
512
513QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
514 struct roam_scan_filter_params *roam_req);
515
Govind Singhd7468a52016-03-09 14:32:57 +0530516QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530517 struct wifi_enhanched_pno_params *req);
518
Govind Singhd7468a52016-03-09 14:32:57 +0530519QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530520 struct ipa_offload_control_params *ipa_offload);
521
Govind Singhd7468a52016-03-09 14:32:57 +0530522QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530523 struct extscan_capabilities_params *pgetcapab);
524
Govind Singhd7468a52016-03-09 14:32:57 +0530525QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530526 struct extscan_cached_result_params *pcached_results);
527
528
Govind Singhd7468a52016-03-09 14:32:57 +0530529QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530530 struct extscan_capabilities_reset_params *reset_req);
531
532
Govind Singhd7468a52016-03-09 14:32:57 +0530533QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530534 struct extscan_set_sig_changereq_params *
535 psigchange);
536
Govind Singhd7468a52016-03-09 14:32:57 +0530537QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530538 struct extscan_bssid_hotlist_reset_params *photlist_reset);
539
Govind Singhd7468a52016-03-09 14:32:57 +0530540QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530541 struct extscan_stop_req_params *pstopcmd);
542
Govind Singhd7468a52016-03-09 14:32:57 +0530543QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530544 struct wifi_scan_cmd_req_params *pstart);
545
Govind Singhd7468a52016-03-09 14:32:57 +0530546QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530547 const struct plm_req_params *plm);
548
Govind Singhd7468a52016-03-09 14:32:57 +0530549QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530550 const struct plm_req_params *plm,
551 uint32_t *gchannel_list);
552
Govind Singhd7468a52016-03-09 14:32:57 +0530553QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530554
Govind Singh89727882016-04-15 13:58:27 +0530555#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530556QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530557 struct pno_scan_req_params *pno,
558 uint32_t *gchannel_freq_list);
Govind Singh89727882016-04-15 13:58:27 +0530559#endif
Govind Singhae855362016-03-07 14:24:22 +0530560
Govind Singhd7468a52016-03-09 14:32:57 +0530561QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530562 uint8_t is_add_ts);
563
Govind Singhd7468a52016-03-09 14:32:57 +0530564QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhae855362016-03-07 14:24:22 +0530565 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
566 uint8_t addr[IEEE80211_ADDR_LEN]);
567
Govind Singhd7468a52016-03-09 14:32:57 +0530568QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhae855362016-03-07 14:24:22 +0530569 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
570
Govind Singhd7468a52016-03-09 14:32:57 +0530571QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhae855362016-03-07 14:24:22 +0530572 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
573 uint8_t addr[IEEE80211_ADDR_LEN]);
574
Govind Singhd7468a52016-03-09 14:32:57 +0530575QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
Govind Singhae855362016-03-07 14:24:22 +0530576 struct pe_stats_req *get_stats_param,
577 uint8_t addr[IEEE80211_ADDR_LEN]);
578
Govind Singhd7468a52016-03-09 14:32:57 +0530579QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530580
Govind Singhd7468a52016-03-09 14:32:57 +0530581QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530582
Govind Singhd7468a52016-03-09 14:32:57 +0530583QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530584 struct link_status_params *link_status);
585
Govind Singh89727882016-04-15 13:58:27 +0530586#ifndef WMI_NON_TLV_SUPPORT
Govind Singhd7468a52016-03-09 14:32:57 +0530587QDF_STATUS wmi_unified_lphb_config_hbenable_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530588 wmi_hb_set_enable_cmd_fixed_param *params);
589
Govind Singhd7468a52016-03-09 14:32:57 +0530590QDF_STATUS wmi_unified_lphb_config_tcp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530591 wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
592
Govind Singhd7468a52016-03-09 14:32:57 +0530593QDF_STATUS wmi_unified_lphb_config_tcp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530594 wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
595
Govind Singhd7468a52016-03-09 14:32:57 +0530596QDF_STATUS wmi_unified_lphb_config_udp_params_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530597 wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
598
Govind Singhd7468a52016-03-09 14:32:57 +0530599QDF_STATUS wmi_unified_lphb_config_udp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530600 wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
Govind Singh229bc0d2016-03-07 15:33:31 +0530601
Govind Singhd7468a52016-03-09 14:32:57 +0530602QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530603 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
604
Govind Singhd7468a52016-03-09 14:32:57 +0530605QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530606 wmi_mac_addr peer_macaddr);
Govind Singh229bc0d2016-03-07 15:33:31 +0530607
Govind Singhd7468a52016-03-09 14:32:57 +0530608QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530609 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
610#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530611
Govind Singhd7468a52016-03-09 14:32:57 +0530612QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530613 uint32_t cmd, uint32_t value1, uint32_t value2);
614
Govind Singhd7468a52016-03-09 14:32:57 +0530615QDF_STATUS wmi_unified_wow_sta_ra_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530616 uint8_t vdev_id, uint8_t default_pattern,
617 uint16_t rate_limit_interval);
618
Govind Singhd7468a52016-03-09 14:32:57 +0530619QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530620
Govind Singhd7468a52016-03-09 14:32:57 +0530621QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530622
Govind Singhd7468a52016-03-09 14:32:57 +0530623QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530624 uint8_t data_len,
625 uint8_t *data);
626
Govind Singhd7468a52016-03-09 14:32:57 +0530627QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530628 bool dfs_phyerr_filter_offload);
629
Govind Singh89727882016-04-15 13:58:27 +0530630#ifndef WMI_NON_TLV_SUPPORT
Govind Singhd7468a52016-03-09 14:32:57 +0530631QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530632 WMI_PKTLOG_EVENT pktlog_event,
633 WMI_CMD_ID cmd_id);
Govind Singh89727882016-04-15 13:58:27 +0530634#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530635
Govind Singhd7468a52016-03-09 14:32:57 +0530636QDF_STATUS wmi_unified_add_wow_wakeup_event_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530637 uint32_t vdev_id,
638 uint32_t bitmap,
639 bool enable);
640
Govind Singhd7468a52016-03-09 14:32:57 +0530641QDF_STATUS wmi_unified_wow_patterns_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530642 uint8_t vdev_id, uint8_t ptrn_id,
643 const uint8_t *ptrn, uint8_t ptrn_len,
644 uint8_t ptrn_offset, const uint8_t *mask,
645 uint8_t mask_len, bool user,
646 uint8_t default_patterns);
647
Govind Singhd7468a52016-03-09 14:32:57 +0530648QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530649 uint8_t vdev_id);
650
Govind Singhd7468a52016-03-09 14:32:57 +0530651QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
652QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530653 uint8_t ac);
654
Govind Singhd7468a52016-03-09 14:32:57 +0530655QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530656 struct aggr_add_ts_param *aggr_qos_rsp_msg);
657
Govind Singhd7468a52016-03-09 14:32:57 +0530658QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530659 struct add_ts_param *msg);
660
Govind Singhd7468a52016-03-09 14:32:57 +0530661QDF_STATUS wmi_unified_enable_disable_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530662 uint8_t vdev_id, bool enable);
663
Govind Singhd7468a52016-03-09 14:32:57 +0530664QDF_STATUS wmi_unified_config_packet_filter_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530665 uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
666 uint8_t filter_id, bool enable);
667
Govind Singhd7468a52016-03-09 14:32:57 +0530668QDF_STATUS wmi_unified_add_clear_mcbc_filter_cmd(void *wmi_hdl,
Govind Singh89727882016-04-15 13:58:27 +0530669 uint8_t vdev_id,
670 struct qdf_mac_addr multicast_addr,
671 bool clearList);
Govind Singh229bc0d2016-03-07 15:33:31 +0530672
Govind Singhd7468a52016-03-09 14:32:57 +0530673QDF_STATUS wmi_unified_send_gtk_offload_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530674 struct gtk_offload_params *params,
675 bool enable_offload,
676 uint32_t gtk_offload_opcode);
677
Govind Singhd7468a52016-03-09 14:32:57 +0530678QDF_STATUS wmi_unified_process_gtk_offload_getinfo_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530679 uint8_t vdev_id,
680 uint64_t offload_req_opcode);
681
Govind Singhd7468a52016-03-09 14:32:57 +0530682QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530683 struct periodic_tx_pattern *
684 pAddPeriodicTxPtrnParams,
685 uint8_t vdev_id);
686
Govind Singhd7468a52016-03-09 14:32:57 +0530687QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530688 uint8_t vdev_id,
689 uint8_t pattern_id);
690
Govind Singhd7468a52016-03-09 14:32:57 +0530691QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530692 struct stats_ext_params *preq);
693
Govind Singhd7468a52016-03-09 14:32:57 +0530694QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530695 struct ext_wow_params *params);
696
Govind Singhd7468a52016-03-09 14:32:57 +0530697QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530698 struct app_type2_params *appType2Params);
699
Govind Singhd7468a52016-03-09 14:32:57 +0530700QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530701 uint32_t timer_val);
702
Govind Singhd7468a52016-03-09 14:32:57 +0530703QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530704 struct nan_req_params *nan_req);
705
Govind Singhd7468a52016-03-09 14:32:57 +0530706QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530707 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
708
Govind Singhd7468a52016-03-09 14:32:57 +0530709QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh229bc0d2016-03-07 15:33:31 +0530710
Govind Singhd7468a52016-03-09 14:32:57 +0530711QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530712 uint32_t reg_dmn, uint16_t regdmn2G,
713 uint16_t regdmn5G, int8_t ctl2G,
714 int8_t ctl5G);
715
Govind Singhd7468a52016-03-09 14:32:57 +0530716QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530717 struct tdls_channel_switch_params *chan_switch_params);
718
Govind Singhd7468a52016-03-09 14:32:57 +0530719QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530720 void *tdls_param, uint8_t tdls_state);
721
Govind Singhd7468a52016-03-09 14:32:57 +0530722QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530723 struct tdls_peer_state_params *peerStateParams,
724 uint32_t *ch_mhz);
725
Govind Singhd7468a52016-03-09 14:32:57 +0530726QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530727 struct fw_dump_req_param *mem_dump_req);
728
Govind Singhd7468a52016-03-09 14:32:57 +0530729QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh229bc0d2016-03-07 15:33:31 +0530730 struct vdev_ie_info_param *ie_info);
731
Govind Singhd7468a52016-03-09 14:32:57 +0530732QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530733 struct ocb_utc_param *utc);
Govind Singhae855362016-03-07 14:24:22 +0530734
Govind Singhd7468a52016-03-09 14:32:57 +0530735QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530736 struct dcc_get_stats_param *get_stats_param);
Govind Singhae855362016-03-07 14:24:22 +0530737
Govind Singhd7468a52016-03-09 14:32:57 +0530738QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530739 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh229bc0d2016-03-07 15:33:31 +0530740
Govind Singhd7468a52016-03-09 14:32:57 +0530741QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhe7b800c2016-03-01 15:30:53 +0530742 struct dcc_update_ndl_param *update_ndl_param);
Govind Singh71ee2d72016-03-07 16:30:32 +0530743
Govind Singhd7468a52016-03-09 14:32:57 +0530744QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530745 void *evt_buf);
746
Govind Singhd7468a52016-03-09 14:32:57 +0530747QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
Govind Singh71ee2d72016-03-07 16:30:32 +0530748 wmi_resource_config *res_cfg,
749 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
750 bool action);
751
Govind Singhd7468a52016-03-09 14:32:57 +0530752QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530753
Govind Singhd7468a52016-03-09 14:32:57 +0530754QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530755 uint8_t *custom_addr);
756
Govind Singhd7468a52016-03-09 14:32:57 +0530757QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530758 uint8_t *event,
759 uint32_t len);
760
Govind Singhd7468a52016-03-09 14:32:57 +0530761QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530762 struct wmi_wifi_start_log *start_log);
763
Govind Singhd7468a52016-03-09 14:32:57 +0530764QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singh2ae94372016-03-07 16:45:38 +0530765
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530766QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
767 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530768
Govind Singhd7468a52016-03-09 14:32:57 +0530769QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530770 uint32_t hw_mode_index);
771
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530772QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530773 struct wmi_dual_mac_config *msg);
774
Govind Singhd7468a52016-03-09 14:32:57 +0530775QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530776 struct host_offload_req_param *param, bool arp_only,
777 uint8_t vdev_id);
778
Govind Singhd7468a52016-03-09 14:32:57 +0530779QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530780 struct flashing_req_params *flashing);
781
Govind Singhd7468a52016-03-09 14:32:57 +0530782QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530783 struct app_type1_params *app_type1_params);
784
Govind Singhd7468a52016-03-09 14:32:57 +0530785QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530786 struct ssid_hotlist_request_params *request);
787
Govind Singhd7468a52016-03-09 14:32:57 +0530788QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530789 uint8_t vdev_id);
790
Govind Singhd7468a52016-03-09 14:32:57 +0530791QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530792 struct wmi_unit_test_cmd *wmi_utest);
793
Govind Singhd7468a52016-03-09 14:32:57 +0530794QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530795 struct wmi_roam_invoke_cmd *roaminvoke,
796 uint32_t ch_hz);
797
Govind Singhd7468a52016-03-09 14:32:57 +0530798QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530799 uint32_t command, uint32_t vdev_id);
800
Govind Singh89727882016-04-15 13:58:27 +0530801#ifndef WMI_NON_TLV_SUPPORT
Govind Singhd7468a52016-03-09 14:32:57 +0530802QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530803 wmi_ap_profile *ap_profile_p,
804 uint32_t vdev_id);
Govind Singh89727882016-04-15 13:58:27 +0530805#endif
Govind Singh2ae94372016-03-07 16:45:38 +0530806
Govind Singhd7468a52016-03-09 14:32:57 +0530807QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530808 uint32_t scan_period,
809 uint32_t scan_age,
810 uint32_t vdev_id);
811
Govind Singhd7468a52016-03-09 14:32:57 +0530812QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530813 uint8_t chan_count,
814 uint8_t *chan_list,
815 uint8_t list_type, uint32_t vdev_id);
816
Govind Singhd7468a52016-03-09 14:32:57 +0530817QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530818 uint32_t vdev_id,
819 int32_t rssi_change_thresh,
820 uint32_t bcn_rssi_weight,
821 uint32_t hirssi_delay_btw_scans);
822
Govind Singhd7468a52016-03-09 14:32:57 +0530823QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singh2ae94372016-03-07 16:45:38 +0530824 struct ext_scan_setbssi_hotlist_params *
825 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530826
827QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
828 uint8_t macaddr[IEEE80211_ADDR_LEN],
829 struct stats_request_params *param);
830
831QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
832 uint32_t param);
833
834QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
835 struct set_atf_params *param);
836
837QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
838 struct fips_params *param);
839
840QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
841 struct wlan_profile_params *param);
842
843QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
844 struct wlan_profile_params *param);
845
846QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
847 struct channel_param *param);
848
849QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
850 struct ht_ie_params *param);
851
852QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
853 struct vht_ie_params *param);
854
855QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
856 struct wmm_update_params *param);
857
858QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
859 struct ant_switch_tbl_params *param);
860
861QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
862 struct ratepwr_table_params *param);
863
864QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
865
866QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
867 struct ctl_table_params *param);
868
869QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
870 struct mimogain_table_params *param);
871
872QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
873 struct ratepwr_chainmsk_params *param);
874
875QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
876 struct macaddr_params *param);
877
878QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
879
880QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
881
882QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
883 struct acparams_params *param);
884
885QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
886 struct vap_dscp_tid_map_params *param);
887
888QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
889 struct proxy_ast_reserve_params *param);
890
891QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
892 struct pdev_qvit_params *param);
893
894QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
895 struct mcast_group_update_params *param);
896
897QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
898 struct peer_add_wds_entry_params *param);
899
900QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
901 struct peer_del_wds_entry_params *param);
902
903QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
904 struct peer_update_wds_entry_params *param);
905
906QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
907
908QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
909
910QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
911
912QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
913 struct smart_ant_enable_params *param);
914
915QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
916 struct smart_ant_rx_ant_params *param);
917
918QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
919 uint8_t macaddr[IEEE80211_ADDR_LEN],
920 struct smart_ant_tx_ant_params *param);
921
922QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
923 uint8_t macaddr[IEEE80211_ADDR_LEN],
924 struct smart_ant_training_info_params *param);
925
926QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
927 uint8_t macaddr[IEEE80211_ADDR_LEN],
928 struct smart_ant_node_config_params *param);
929
930QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
931 struct smart_ant_enable_tx_feedback_params *param);
932
933QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
934 struct vdev_spectral_configure_params *param);
935
936QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
937 struct vdev_spectral_enable_params *param);
938
939QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
940 struct bss_chan_info_request_params *param);
941
942QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
943 struct thermal_mitigation_params *param);
944
945QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
946 uint8_t macaddr[IEEE80211_ADDR_LEN],
947 struct set_neighbour_rx_params *param);
948
949QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
950 struct set_fwtest_params *param);
951
952QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
953 struct config_ratemask_params *param);
954
955QDF_STATUS wmi_unified_vdev_install_key_cmd_send(void *wmi_hdl,
956 uint8_t macaddr[IEEE80211_ADDR_LEN],
957 struct vdev_install_key_params *param);
958
959QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
960 struct pdev_set_regdomain_params *param);
961
962QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
963 struct set_quiet_mode_params *param);
964
965QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
966 struct set_beacon_filter_params *param);
967
968QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
969 struct remove_beacon_filter_params *param);
970
971QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
972 uint8_t macaddr[IEEE80211_ADDR_LEN],
973 struct addba_clearresponse_params *param);
974
975QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
976 uint8_t macaddr[IEEE80211_ADDR_LEN],
977 struct addba_send_params *param);
978
979QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
980 uint8_t macaddr[IEEE80211_ADDR_LEN],
981 struct delba_send_params *param);
982
983QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
984 uint8_t macaddr[IEEE80211_ADDR_LEN],
985 struct addba_setresponse_params *param);
986
987QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
988 uint8_t macaddr[IEEE80211_ADDR_LEN],
989 struct singleamsdu_params *param);
990
991QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
992 uint8_t macaddr[IEEE80211_ADDR_LEN],
993 struct set_qboost_params *param);
994
995QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
996 struct mu_scan_params *param);
997
998QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
999 struct lteu_config_params *param);
1000
1001QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1002 struct set_ps_mode_params *param);
1003
1004QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1005 target_resource_config *res_cfg,
1006 uint8_t num_mem_chunks,
1007 struct wmi_host_mem_chunk *mem_chunk);
1008
1009bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1010
1011QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf);
1012
1013QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1014
1015QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1016 void *evt_buf, target_capability_info *ev);
1017
1018QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1019 TARGET_HAL_REG_CAPABILITIES *hal_reg_cap);
1020
1021host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1022 void *evt_buf, uint8_t *num_entries);
1023
1024uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1025
1026QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1027 void *ev, uint8_t *macaddr);
1028
1029QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1030 void *ev, struct wmi_host_fw_ver *fw_ver);
1031
1032QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1033 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1034
1035QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1036
1037uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
1038 void *evt_b, uint16_t *len);
1039
1040QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1041 wmi_host_ext_resource_config *ext_cfg);
1042
1043QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1044
1045QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1046 struct packet_power_info_params *param);
1047
1048QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1049 struct gpio_config_params *param);
1050
1051QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1052 struct gpio_output_params *param);
1053
1054QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1055 struct rtt_meas_req_test_params *param);
1056
1057QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1058 struct rtt_meas_req_params *param);
1059
1060QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1061 struct rtt_keepalive_req_params *param);
1062
1063QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1064 struct lci_set_params *param);
1065
1066QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1067 struct lcr_set_params *param);
1068
1069QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1070 struct periodic_chan_stats_params *param);
1071
1072QDF_STATUS
1073wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1074 struct atf_peer_request_params *param);
1075
1076QDF_STATUS
1077wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1078 struct atf_grouping_params *param);
1079/* Extract APIs */
1080
1081QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1082 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1083
1084QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
1085 void *evt_buf, uint32_t *interference_type);
1086
1087QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1088 wmi_host_ath_dcs_cw_int *cw_int);
1089
1090QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1091 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1092
1093QDF_STATUS wmi_extract_fips_event_error_status(void *wmi_hdl, void *evt_buf,
1094 uint32_t *err_status);
1095
1096QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
1097 uint32_t *data_len, uint32_t **data);
1098QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1099 wmi_host_vdev_start_resp *vdev_rsp);
1100QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1101 uint32_t *vdev_map, uint32_t **tbttoffset_list);
1102
1103QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
1104 wmi_host_mgmt_rx_hdr *hdr, uint8_t **bufp);
1105
1106QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1107 uint32_t *vdev_id);
1108
1109QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1110 wmi_host_roam_event *ev);
1111
1112QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1113 wmi_host_scan_event *param);
1114
1115QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1116 wmi_host_mu_report_event *param);
1117
1118QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1119 wmi_host_pdev_tpc_config_event *param);
1120
1121QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1122 void *evt_buf, uint32_t *gpio_num);
1123
1124QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1125 void *evt_buf, uint32_t *result);
1126
1127QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1128 wmi_host_pdev_nfcal_power_all_channels_event *param);
1129
1130QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1131 wmi_host_pdev_tpc_event *param);
1132
1133QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1134 void *evt_buf,
1135 wmi_host_pdev_generic_buffer_event *param);
1136
1137QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1138 wmi_host_mgmt_tx_compl_event *param);
1139
1140QDF_STATUS wmi_extract_swba_vdev_map(void *wmi_hdl, void *evt_buf,
1141 uint32_t *vdev_map);
1142
1143QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1144 uint32_t idx, wmi_host_tim_info *tim_info);
1145
1146QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1147 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1148
1149QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1150 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1151
1152QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1153 wmi_host_peer_sta_kickout_event *ev);
1154
1155QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1156 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1157
1158QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1159 wmi_host_rtt_event_hdr *ev);
1160
1161QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1162 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1163 uint16_t hdump_len);
1164
1165QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1166 wmi_host_rtt_error_report_event *ev);
1167
1168QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1169 uint32_t *temp, uint32_t *level);
1170
1171QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1172 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1173
1174QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1175 uint16_t datalen, uint16_t *buf_offset,
1176 wmi_host_phyerr_t *phyerr);
1177
1178QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1179 uint16_t datalen, uint16_t *buf_offset,
1180 wmi_host_phyerr_t *phyerr);
1181
1182QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1183 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1184
1185QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1186 wmi_host_wlan_profile_ctx_t *profile_ctx);
1187
Govind Singh41da3152016-05-06 20:20:25 +05301188QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singh89727882016-04-15 13:58:27 +05301189 wmi_host_wlan_profile_t *profile_data);
1190
1191QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1192 wmi_host_chan_info_event *chan_info);
1193
1194QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1195 wmi_host_pdev_channel_hopping_event *ch_hopping);
1196
1197QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1198 wmi_host_stats_event *stats_param);
1199
1200QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1201 uint32_t index,
1202 wmi_host_pdev_stats *pdev_stats);
1203
1204QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1205 uint32_t index,
1206 wmi_host_pdev_ext_stats *pdev_ext_stats);
1207
1208QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1209 uint32_t index,
1210 wmi_host_peer_extd_stats *peer_extd_stats);
1211
1212QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1213 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1214
1215QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1216 wmi_host_inst_stats_resp *inst_rssi_resp);
1217
1218QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1219 uint32_t index, wmi_host_peer_stats *peer_stats);
1220
1221QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1222 wmi_host_tx_data_traffic_ctrl_event *ev);
1223
1224QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1225 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1226
1227QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1228 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301229
1230QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1231 struct wmi_power_dbg_params *param);
Govind Singhd475ea92016-03-06 19:55:02 +05301232#endif /* _WMI_UNIFIED_API_H_ */