blob: 1bd40a0325b03d4e223f6ba7a09f5c00dd03c0f2 [file] [log] [blame]
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08001/*
Houston Hoffmanc5141b02015-11-18 02:36:30 -08002 * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08003 *
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 Singh01dd33e2016-02-04 18:42:30 +053029 * This file contains the API definitions for the Unified Wireless Module
30 * Interface (WMI).
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080031 */
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 Singhe9cda9a2016-03-09 11:34:12 +053041#include "wmi_unified_param.h"
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080042
Govind Singh236fc202016-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
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -080065
66/**
Govind Singh01dd33e2016-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 Singhe9cda9a2016-03-09 11:34:12 +053073struct wmi_rx_ops {
Govind Singh3f302ec2016-03-09 12:03:29 +053074
Govind Singh01dd33e2016-02-04 18:42:30 +053075 int (*wma_process_fw_event_handler_cbk)(void *ctx,
Govind Singh3f302ec2016-03-09 12:03:29 +053076 void *ev, uint8_t rx_ctx);
Govind Singh01dd33e2016-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 Singh3f302ec2016-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/**
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800102 * attach for unified WMI
103 *
104 * @param scn_handle : handle to SCN.
Govind Singha5e18c42016-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
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800108 * @return opaque handle.
109 */
110void *wmi_unified_attach(void *scn_handle,
Govind Singh01dd33e2016-02-04 18:42:30 +0530111 osdev_t osdev, enum wmi_target_type target_type,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530112 bool use_cookie, struct wmi_rx_ops *ops);
Govind Singh01dd33e2016-02-04 18:42:30 +0530113
Sandeep Puligillaac71f152016-06-13 15:42:55 -0700114
115void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, WMI_CMD_ID cmd,
116 uint32_t type, uint32_t subtype,
117 uint32_t vdev_id, uint32_t chanfreq);
118
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800119/**
120 * detach for unified WMI
121 *
122 * @param wmi_handle : handle to WMI.
123 * @return void.
124 */
125void wmi_unified_detach(struct wmi_unified *wmi_handle);
126
Xun Luo9a863a42015-11-10 08:24:45 -0800127void
128wmi_unified_remove_work(struct wmi_unified *wmi_handle);
129
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800130/**
131 * generic function to allocate WMI buffer
132 *
133 * @param wmi_handle : handle to WMI.
134 * @param len : length of the buffer
135 * @return wmi_buf_t.
136 */
137#ifdef MEMORY_DEBUG
138#define wmi_buf_alloc(h, l) wmi_buf_alloc_debug(h, l, __FILE__, __LINE__)
139wmi_buf_t
140wmi_buf_alloc_debug(wmi_unified_t wmi_handle, uint16_t len,
141 uint8_t *file_name, uint32_t line_num);
142#else
143wmi_buf_t wmi_buf_alloc(wmi_unified_t wmi_handle, uint16_t len);
144#endif
145
146/**
147 * generic function frees WMI net buffer
148 *
149 * @param net_buf : Pointer ot net_buf to be freed
150 */
151void wmi_buf_free(wmi_buf_t net_buf);
152
153/**
154 * generic function to send unified WMI command
155 *
156 * @param wmi_handle : handle to WMI.
157 * @param buf : wmi command buffer
158 * @param buflen : wmi command buffer length
Govind Singha5e18c42016-04-15 13:58:27 +0530159 * @param cmd_id : WMI cmd id
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800160 * @return 0 on success and -ve on failure.
161 */
162int
Govind Singh01dd33e2016-02-04 18:42:30 +0530163wmi_unified_cmd_send(wmi_unified_t wmi_handle, wmi_buf_t buf, uint32_t buflen,
Govind Singha5e18c42016-04-15 13:58:27 +0530164 WMI_CMD_ID cmd_id);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800165
166/**
Govind Singh3f302ec2016-03-09 12:03:29 +0530167 * wmi_unified_register_event_handler() - WMI event handler
168 * registration function
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800169 *
Govind Singh3f302ec2016-03-09 12:03:29 +0530170 * @wmi_handle: handle to WMI.
171 * @event_id: WMI event ID
172 * @handler_func: Event handler call back function
173 * @rx_ctx: rx event processing context
174 *
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800175 * @return 0 on success and -ve on failure.
176 */
177int
178wmi_unified_register_event_handler(wmi_unified_t wmi_handle,
Govind Singha5e18c42016-04-15 13:58:27 +0530179 uint32_t event_id,
Govind Singh3f302ec2016-03-09 12:03:29 +0530180 wmi_unified_event_handler handler_func,
181 uint8_t rx_ctx);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800182
183/**
184 * WMI event handler unregister function
185 *
186 * @param wmi_handle : handle to WMI.
187 * @param event_id : WMI event ID
188 * @return 0 on success and -ve on failure.
189 */
190int
191wmi_unified_unregister_event_handler(wmi_unified_t wmi_handle,
Govind Singha5e18c42016-04-15 13:58:27 +0530192 uint32_t event_id);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800193
194/**
195 * request wmi to connet its htc service.
196 * @param wmi_handle : handle to WMI.
Govind Singha5e18c42016-04-15 13:58:27 +0530197 * @param htc_handle : handle to HTC.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800198 * @return void
199 */
200int
201wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
202 void *htc_handle);
203
204/*
205 * WMI API to verify the host has enough credits to suspend
Govind Singha5e18c42016-04-15 13:58:27 +0530206 * @param wmi_handle : handle to WMI.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800207 */
208
209int wmi_is_suspend_ready(wmi_unified_t wmi_handle);
210
211/**
Govind Singha5e18c42016-04-15 13:58:27 +0530212 * WMI API to get updated host_credits
213 * @param wmi_handle : handle to WMI.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800214 */
215
216int wmi_get_host_credits(wmi_unified_t wmi_handle);
217
218/**
Govind Singha5e18c42016-04-15 13:58:27 +0530219 * WMI API to get WMI Pending Commands in the HTC queue
220 * @param wmi_handle : handle to WMI.
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800221 */
222
223int wmi_get_pending_cmds(wmi_unified_t wmi_handle);
224
225/**
Govind Singha5e18c42016-04-15 13:58:27 +0530226 * WMI API to set target suspend state
227 * @param wmi_handle : handle to WMI.
228 * @param val : suspend state boolean
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800229 */
Houston Hoffmanc5141b02015-11-18 02:36:30 -0800230void wmi_set_target_suspend(wmi_unified_t wmi_handle, bool val);
231
Govind Singha5e18c42016-04-15 13:58:27 +0530232/**
233 * generic function to block unified WMI command
234 * @param wmi_handle : handle to WMI.
235 * @return 0 on success and -ve on failure.
236 */
237int
238wmi_stop(wmi_unified_t wmi_handle);
239
240/**
241 * API to flush all the previous packets associated with the wmi endpoint
242 *
243 * @param wmi_handle : handle to WMI.
244 */
245void
246wmi_flush_endpoint(wmi_unified_t wmi_handle);
247
248/**
249 * API to handle wmi rx event after UMAC has taken care of execution
250 * context
251 *
252 * @param wmi_handle : handle to WMI.
253 * @param evt_buf : wmi event buffer
254 */
255void __wmi_control_rx(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
Houston Hoffmanc5141b02015-11-18 02:36:30 -0800256#ifdef FEATURE_RUNTIME_PM
257void
258wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val);
259bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle);
260#else
261static inline void
262wmi_set_runtime_pm_inprogress(wmi_unified_t wmi_handle, bool val)
263{
264 return;
265}
266static inline bool wmi_get_runtime_pm_inprogress(wmi_unified_t wmi_handle)
267{
268 return false;
269}
270#endif
271
Govind Singh3f302ec2016-03-09 12:03:29 +0530272
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800273/**
Govind Singh236fc202016-03-09 14:32:57 +0530274 * UMAC Callback to process fw event.
Govind Singha5e18c42016-04-15 13:58:27 +0530275 * @param wmi_handle : handle to WMI.
276 * @param evt_buf : wmi event buffer
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800277 */
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -0800278void wmi_process_fw_event(struct wmi_unified *wmi_handle, wmi_buf_t evt_buf);
279uint16_t wmi_get_max_msg_len(wmi_unified_t wmi_handle);
Govind Singhe9cda9a2016-03-09 11:34:12 +0530280
281
Govind Singh236fc202016-03-09 14:32:57 +0530282QDF_STATUS wmi_unified_vdev_create_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530283 uint8_t macaddr[IEEE80211_ADDR_LEN],
284 struct vdev_create_params *param);
285
Govind Singh236fc202016-03-09 14:32:57 +0530286QDF_STATUS wmi_unified_vdev_delete_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530287 uint8_t if_id);
288
Govind Singh236fc202016-03-09 14:32:57 +0530289QDF_STATUS wmi_unified_vdev_restart_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530290 uint8_t macaddr[IEEE80211_ADDR_LEN],
291 struct vdev_start_params *param);
292
Govind Singh236fc202016-03-09 14:32:57 +0530293QDF_STATUS wmi_unified_vdev_stop_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530294 uint8_t vdev_id);
295
Govind Singh236fc202016-03-09 14:32:57 +0530296QDF_STATUS wmi_unified_vdev_up_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530297 uint8_t bssid[IEEE80211_ADDR_LEN],
298 struct vdev_up_params *params);
299
Govind Singh236fc202016-03-09 14:32:57 +0530300QDF_STATUS wmi_unified_vdev_down_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530301 uint8_t vdev_id);
302
Himanshu Agarwal915c2702016-03-09 16:49:38 +0530303QDF_STATUS wmi_unified_vdev_start_send(void *wmi_hdl,
304 struct vdev_start_params *req);
305
306QDF_STATUS wmi_unified_hidden_ssid_vdev_restart_send(void *wmi_hdl,
307 struct hidden_ssid_vdev_restart_params *restart_params);
308
Govind Singh236fc202016-03-09 14:32:57 +0530309QDF_STATUS wmi_unified_vdev_set_param_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530310 struct vdev_set_params *param);
311
Govind Singh236fc202016-03-09 14:32:57 +0530312QDF_STATUS wmi_unified_peer_delete_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530313 uint8_t
314 peer_addr[IEEE80211_ADDR_LEN],
315 uint8_t vdev_id);
316
Govind Singh236fc202016-03-09 14:32:57 +0530317QDF_STATUS wmi_unified_peer_flush_tids_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530318 uint8_t peer_addr[IEEE80211_ADDR_LEN],
319 struct peer_flush_params *param);
320
Govind Singh236fc202016-03-09 14:32:57 +0530321QDF_STATUS wmi_set_peer_param_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530322 uint8_t peer_addr[IEEE80211_ADDR_LEN],
323 struct peer_set_params *param);
324
Govind Singh236fc202016-03-09 14:32:57 +0530325QDF_STATUS wmi_unified_peer_create_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530326 struct peer_create_params *param);
327
Govind Singh236fc202016-03-09 14:32:57 +0530328QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530329 uint8_t macaddr[IEEE80211_ADDR_LEN],
330 struct stats_request_params *param);
331
Govind Singh236fc202016-03-09 14:32:57 +0530332QDF_STATUS wmi_unified_green_ap_ps_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530333 uint32_t value, uint8_t mac_id);
334
335
Govind Singh236fc202016-03-09 14:32:57 +0530336QDF_STATUS wmi_unified_wow_enable_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530337 struct wow_cmd_params *param,
338 uint8_t mac_id);
339
Govind Singha5e18c42016-04-15 13:58:27 +0530340#ifdef WMI_NON_TLV_SUPPORT
341QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
342 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT);
343#else
Govind Singh236fc202016-03-09 14:32:57 +0530344QDF_STATUS wmi_unified_packet_log_enable_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530345 uint8_t macaddr[IEEE80211_ADDR_LEN],
346 struct packet_enable_params *param);
Govind Singha5e18c42016-04-15 13:58:27 +0530347#endif
Govind Singhe9cda9a2016-03-09 11:34:12 +0530348
Govind Singha5e18c42016-04-15 13:58:27 +0530349QDF_STATUS wmi_unified_packet_log_disable_send(void *wmi_hdl);
Govind Singhe9cda9a2016-03-09 11:34:12 +0530350
Govind Singh236fc202016-03-09 14:32:57 +0530351QDF_STATUS wmi_unified_suspend_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530352 struct suspend_params *param,
353 uint8_t mac_id);
354
Govind Singh236fc202016-03-09 14:32:57 +0530355QDF_STATUS wmi_unified_resume_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530356 uint8_t mac_id);
357
Govind Singh236fc202016-03-09 14:32:57 +0530358QDF_STATUS
Govind Singhe9cda9a2016-03-09 11:34:12 +0530359wmi_unified_pdev_param_send(void *wmi_hdl,
360 struct pdev_params *param,
361 uint8_t mac_id);
362
Govind Singha5e18c42016-04-15 13:58:27 +0530363QDF_STATUS wmi_unified_beacon_tmpl_send_cmd(void *wmi_hdl,
364 struct beacon_tmpl_params *param);
365
366
Govind Singh236fc202016-03-09 14:32:57 +0530367QDF_STATUS wmi_unified_beacon_send_cmd(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530368 struct beacon_params *param);
369
Govind Singh236fc202016-03-09 14:32:57 +0530370QDF_STATUS wmi_unified_peer_assoc_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530371 struct peer_assoc_params *param);
372
Govind Singh236fc202016-03-09 14:32:57 +0530373QDF_STATUS wmi_unified_sta_ps_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530374 struct sta_ps_params *param);
375
Govind Singh236fc202016-03-09 14:32:57 +0530376QDF_STATUS wmi_unified_ap_ps_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530377 uint8_t macaddr[IEEE80211_ADDR_LEN],
378 struct ap_ps_params *param);
379
Govind Singh236fc202016-03-09 14:32:57 +0530380QDF_STATUS wmi_unified_scan_start_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530381 struct scan_start_params *param);
382
Govind Singh236fc202016-03-09 14:32:57 +0530383QDF_STATUS wmi_unified_scan_stop_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530384 struct scan_stop_params *param);
385
Govind Singh236fc202016-03-09 14:32:57 +0530386QDF_STATUS wmi_unified_scan_chan_list_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530387 struct scan_chan_list_params *param);
388
389
Govind Singh236fc202016-03-09 14:32:57 +0530390QDF_STATUS wmi_crash_inject(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530391 struct crash_inject *param);
392
Govind Singh236fc202016-03-09 14:32:57 +0530393QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530394 struct pdev_utf_params *param,
395 uint8_t mac_id);
396
Govind Singh236fc202016-03-09 14:32:57 +0530397QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
Govind Singhe9cda9a2016-03-09 11:34:12 +0530398 struct dbglog_params *param);
399
Govind Singh236fc202016-03-09 14:32:57 +0530400QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
Govind Singh12438e62016-02-26 18:09:36 +0530401 struct wmi_mgmt_params *param);
402
Govind Singh236fc202016-03-09 14:32:57 +0530403QDF_STATUS wmi_unified_modem_power_state(void *wmi_hdl,
Govind Singh12438e62016-02-26 18:09:36 +0530404 uint32_t param_value);
405
Govind Singh236fc202016-03-09 14:32:57 +0530406QDF_STATUS wmi_unified_set_sta_ps_mode(void *wmi_hdl,
Govind Singh12438e62016-02-26 18:09:36 +0530407 uint32_t vdev_id, uint8_t val);
Govind Singh236fc202016-03-09 14:32:57 +0530408QDF_STATUS
Govind Singh12438e62016-02-26 18:09:36 +0530409wmi_unified_set_sta_uapsd_auto_trig_cmd(void *wmi_hdl,
410 struct sta_uapsd_trig_params *param);
411
Govind Singh236fc202016-03-09 14:32:57 +0530412QDF_STATUS wmi_unified_get_temperature(void *wmi_hdl);
Govind Singh12438e62016-02-26 18:09:36 +0530413
Govind Singh236fc202016-03-09 14:32:57 +0530414QDF_STATUS wmi_unified_set_p2pgo_oppps_req(void *wmi_hdl,
Govind Singh12438e62016-02-26 18:09:36 +0530415 struct p2p_ps_params *oppps);
416
Govind Singh236fc202016-03-09 14:32:57 +0530417QDF_STATUS wmi_unified_set_p2pgo_noa_req_cmd(void *wmi_hdl,
Govind Singh12438e62016-02-26 18:09:36 +0530418 struct p2p_ps_params *noa);
419
Govind Singh236fc202016-03-09 14:32:57 +0530420QDF_STATUS wmi_unified_set_smps_params(void *wmi_hdl, uint8_t vdev_id,
Govind Singh12438e62016-02-26 18:09:36 +0530421 int value);
422
Govind Singh236fc202016-03-09 14:32:57 +0530423QDF_STATUS wmi_unified_set_mimops(void *wmi_hdl, uint8_t vdev_id, int value);
Govind Singhd0fd7262016-03-01 15:30:53 +0530424
Govind Singh236fc202016-03-09 14:32:57 +0530425QDF_STATUS wmi_unified_ocb_set_utc_time(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530426 struct ocb_utc_param *utc);
427
Govind Singh236fc202016-03-09 14:32:57 +0530428QDF_STATUS wmi_unified_ocb_start_timing_advert(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530429 struct ocb_timing_advert_param *timing_advert);
430
Govind Singh236fc202016-03-09 14:32:57 +0530431QDF_STATUS wmi_unified_ocb_stop_timing_advert(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530432 struct ocb_timing_advert_param *timing_advert);
433
Govind Singh236fc202016-03-09 14:32:57 +0530434QDF_STATUS wmi_unified_ocb_set_config(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530435 struct ocb_config_param *config, uint32_t *ch_mhz);
436
Govind Singh236fc202016-03-09 14:32:57 +0530437QDF_STATUS wmi_unified_ocb_get_tsf_timer(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530438 uint8_t vdev_id);
439
Govind Singh236fc202016-03-09 14:32:57 +0530440QDF_STATUS wmi_unified_lro_config_cmd(void *wmi_hdl,
Govind Singh86b28182016-03-01 15:54:59 +0530441 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
442
Govind Singh236fc202016-03-09 14:32:57 +0530443QDF_STATUS wmi_unified_set_thermal_mgmt_cmd(void *wmi_hdl,
Govind Singh86b28182016-03-01 15:54:59 +0530444 struct thermal_cmd_params *thermal_info);
445
Poddar, Siddarth1f21bbb2016-04-28 15:49:11 +0530446QDF_STATUS wmi_unified_peer_rate_report_cmd(void *wmi_hdl,
447 struct wmi_peer_rate_report_params *rate_report_params);
448
Govind Singh236fc202016-03-09 14:32:57 +0530449QDF_STATUS wmi_unified_set_mcc_channel_time_quota_cmd
Govind Singh86b28182016-03-01 15:54:59 +0530450 (void *wmi_hdl,
451 uint32_t adapter_1_chan_freq,
452 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
453
Govind Singh236fc202016-03-09 14:32:57 +0530454QDF_STATUS wmi_unified_set_mcc_channel_time_latency_cmd
Govind Singh86b28182016-03-01 15:54:59 +0530455 (void *wmi_hdl,
456 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
457
Govind Singh236fc202016-03-09 14:32:57 +0530458QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
Govind Singh01d950e2016-04-16 19:24:23 -0700459 void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
460 uint32_t pdev_id);
Govind Singhfef95e22016-03-07 14:24:22 +0530461
Govind Singha5e18c42016-04-15 13:58:27 +0530462#ifndef WMI_NON_TLV_SUPPORT
Govind Singh236fc202016-03-09 14:32:57 +0530463QDF_STATUS wmi_unified_bcn_buf_ll_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530464 wmi_bcn_send_from_host_cmd_fixed_param *param);
Govind Singha5e18c42016-04-15 13:58:27 +0530465#endif
Govind Singhfef95e22016-03-07 14:24:22 +0530466
Govind Singh236fc202016-03-09 14:32:57 +0530467QDF_STATUS wmi_unified_set_sta_sa_query_param_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530468 uint8_t vdev_id, uint32_t max_retries,
469 uint32_t retry_interval);
470
471
Govind Singh236fc202016-03-09 14:32:57 +0530472QDF_STATUS wmi_unified_set_sta_keep_alive_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530473 struct sta_params *params);
474
Govind Singh236fc202016-03-09 14:32:57 +0530475QDF_STATUS wmi_unified_vdev_set_gtx_cfg_cmd(void *wmi_hdl, uint32_t if_id,
Govind Singhfef95e22016-03-07 14:24:22 +0530476 struct wmi_gtx_config *gtx_info);
477
Govind Singha5e18c42016-04-15 13:58:27 +0530478#ifndef WMI_NON_TLV_SUPPORT
Govind Singh236fc202016-03-09 14:32:57 +0530479QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530480 uint8_t vdev_id,
481 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
Govind Singha5e18c42016-04-15 13:58:27 +0530482#endif
Govind Singhfef95e22016-03-07 14:24:22 +0530483
484
Govind Singh236fc202016-03-09 14:32:57 +0530485QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530486 uint8_t vdev_id,
487 struct wmi_probe_resp_params *probe_rsp_info,
488 uint8_t *frm);
489
Himanshu Agarwala41da1d2016-03-09 18:49:18 +0530490QDF_STATUS wmi_unified_setup_install_key_cmd(void *wmi_hdl,
491 struct set_key_params *key_params);
492
Govind Singh236fc202016-03-09 14:32:57 +0530493QDF_STATUS wmi_unified_p2p_go_set_beacon_ie_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530494 A_UINT32 vdev_id, uint8_t *p2p_ie);
495
496
Govind Singh236fc202016-03-09 14:32:57 +0530497QDF_STATUS wmi_unified_set_gateway_params_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530498 struct gateway_update_req_param *req);
499
Govind Singh236fc202016-03-09 14:32:57 +0530500QDF_STATUS wmi_unified_set_rssi_monitoring_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530501 struct rssi_monitor_param *req);
502
Govind Singh236fc202016-03-09 14:32:57 +0530503QDF_STATUS wmi_unified_scan_probe_setoui_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530504 struct scan_mac_oui *psetoui);
505
Govind Singh236fc202016-03-09 14:32:57 +0530506QDF_STATUS wmi_unified_reset_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530507 struct wifi_passpoint_req_param *req);
508
Govind Singh236fc202016-03-09 14:32:57 +0530509QDF_STATUS wmi_unified_set_passpoint_network_list_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530510 struct wifi_passpoint_req_param *req);
511
Govind Singha5e18c42016-04-15 13:58:27 +0530512#ifndef WMI_NON_TLV_SUPPORT
Himanshu Agarwale2082f22016-03-09 15:25:44 +0530513QDF_STATUS wmi_unified_roam_scan_offload_mode_cmd(void *wmi_hdl,
514 wmi_start_scan_cmd_fixed_param *scan_cmd_fp,
515 struct roam_offload_scan_params *roam_req);
Govind Singha5e18c42016-04-15 13:58:27 +0530516#endif
Himanshu Agarwale2082f22016-03-09 15:25:44 +0530517
518QDF_STATUS wmi_unified_roam_scan_offload_rssi_thresh_cmd(void *wmi_hdl,
519 struct roam_offload_scan_rssi_params *roam_req);
520
521QDF_STATUS wmi_unified_roam_scan_filter_cmd(void *wmi_hdl,
522 struct roam_scan_filter_params *roam_req);
523
Govind Singh236fc202016-03-09 14:32:57 +0530524QDF_STATUS wmi_unified_set_epno_network_list_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530525 struct wifi_enhanched_pno_params *req);
526
Govind Singh236fc202016-03-09 14:32:57 +0530527QDF_STATUS wmi_unified_ipa_offload_control_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530528 struct ipa_offload_control_params *ipa_offload);
529
Govind Singh236fc202016-03-09 14:32:57 +0530530QDF_STATUS wmi_unified_extscan_get_capabilities_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530531 struct extscan_capabilities_params *pgetcapab);
532
Govind Singh236fc202016-03-09 14:32:57 +0530533QDF_STATUS wmi_unified_extscan_get_cached_results_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530534 struct extscan_cached_result_params *pcached_results);
535
536
Govind Singh236fc202016-03-09 14:32:57 +0530537QDF_STATUS wmi_unified_extscan_stop_change_monitor_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530538 struct extscan_capabilities_reset_params *reset_req);
539
540
Govind Singh236fc202016-03-09 14:32:57 +0530541QDF_STATUS wmi_unified_extscan_start_change_monitor_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530542 struct extscan_set_sig_changereq_params *
543 psigchange);
544
Govind Singh236fc202016-03-09 14:32:57 +0530545QDF_STATUS wmi_unified_extscan_stop_hotlist_monitor_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530546 struct extscan_bssid_hotlist_reset_params *photlist_reset);
547
Govind Singh236fc202016-03-09 14:32:57 +0530548QDF_STATUS wmi_unified_stop_extscan_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530549 struct extscan_stop_req_params *pstopcmd);
550
Govind Singh236fc202016-03-09 14:32:57 +0530551QDF_STATUS wmi_unified_start_extscan_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530552 struct wifi_scan_cmd_req_params *pstart);
553
Govind Singh236fc202016-03-09 14:32:57 +0530554QDF_STATUS wmi_unified_plm_stop_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530555 const struct plm_req_params *plm);
556
Govind Singh236fc202016-03-09 14:32:57 +0530557QDF_STATUS wmi_unified_plm_start_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530558 const struct plm_req_params *plm,
559 uint32_t *gchannel_list);
560
Govind Singh236fc202016-03-09 14:32:57 +0530561QDF_STATUS wmi_unified_pno_stop_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singhfef95e22016-03-07 14:24:22 +0530562
Govind Singha5e18c42016-04-15 13:58:27 +0530563#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singh236fc202016-03-09 14:32:57 +0530564QDF_STATUS wmi_unified_pno_start_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530565 struct pno_scan_req_params *pno,
566 uint32_t *gchannel_freq_list);
Govind Singha5e18c42016-04-15 13:58:27 +0530567#endif
Govind Singhfef95e22016-03-07 14:24:22 +0530568
Govind Singh236fc202016-03-09 14:32:57 +0530569QDF_STATUS wmi_unified_set_ric_req_cmd(void *wmi_hdl, void *msg,
Govind Singhfef95e22016-03-07 14:24:22 +0530570 uint8_t is_add_ts);
571
Govind Singh236fc202016-03-09 14:32:57 +0530572QDF_STATUS wmi_unified_process_ll_stats_clear_cmd
Govind Singhfef95e22016-03-07 14:24:22 +0530573 (void *wmi_hdl, const struct ll_stats_clear_params *clear_req,
574 uint8_t addr[IEEE80211_ADDR_LEN]);
575
Govind Singh236fc202016-03-09 14:32:57 +0530576QDF_STATUS wmi_unified_process_ll_stats_set_cmd
Govind Singhfef95e22016-03-07 14:24:22 +0530577 (void *wmi_hdl, const struct ll_stats_set_params *set_req);
578
Govind Singh236fc202016-03-09 14:32:57 +0530579QDF_STATUS wmi_unified_process_ll_stats_get_cmd
Govind Singhfef95e22016-03-07 14:24:22 +0530580 (void *wmi_hdl, const struct ll_stats_get_params *get_req,
581 uint8_t addr[IEEE80211_ADDR_LEN]);
582
Govind Singh236fc202016-03-09 14:32:57 +0530583QDF_STATUS wmi_unified_get_stats_cmd(void *wmi_hdl,
Govind Singhfef95e22016-03-07 14:24:22 +0530584 struct pe_stats_req *get_stats_param,
585 uint8_t addr[IEEE80211_ADDR_LEN]);
586
Govind Singh236fc202016-03-09 14:32:57 +0530587QDF_STATUS wmi_unified_snr_request_cmd(void *wmi_hdl);
Govind Singh25729ce2016-03-07 15:33:31 +0530588
Govind Singh236fc202016-03-09 14:32:57 +0530589QDF_STATUS wmi_unified_snr_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh25729ce2016-03-07 15:33:31 +0530590
Govind Singh236fc202016-03-09 14:32:57 +0530591QDF_STATUS wmi_unified_link_status_req_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530592 struct link_status_params *link_status);
593
Govind Singha5e18c42016-04-15 13:58:27 +0530594#ifndef WMI_NON_TLV_SUPPORT
Govind Singh236fc202016-03-09 14:32:57 +0530595QDF_STATUS wmi_unified_lphb_config_hbenable_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530596 wmi_hb_set_enable_cmd_fixed_param *params);
597
Govind Singh236fc202016-03-09 14:32:57 +0530598QDF_STATUS wmi_unified_lphb_config_tcp_params_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530599 wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
600
Govind Singh236fc202016-03-09 14:32:57 +0530601QDF_STATUS wmi_unified_lphb_config_tcp_pkt_filter_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530602 wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
603
Govind Singh236fc202016-03-09 14:32:57 +0530604QDF_STATUS wmi_unified_lphb_config_udp_params_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530605 wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
606
Govind Singh236fc202016-03-09 14:32:57 +0530607QDF_STATUS wmi_unified_lphb_config_udp_pkt_filter_cmd(void *wmi_hdl,
Govind Singha5e18c42016-04-15 13:58:27 +0530608 wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
Govind Singh25729ce2016-03-07 15:33:31 +0530609
Govind Singh236fc202016-03-09 14:32:57 +0530610QDF_STATUS wmi_unified_process_dhcp_ind(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530611 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
612
Govind Singh236fc202016-03-09 14:32:57 +0530613QDF_STATUS wmi_unified_get_link_speed_cmd(void *wmi_hdl,
Govind Singha5e18c42016-04-15 13:58:27 +0530614 wmi_mac_addr peer_macaddr);
Govind Singh25729ce2016-03-07 15:33:31 +0530615
Govind Singh236fc202016-03-09 14:32:57 +0530616QDF_STATUS wmi_unified_egap_conf_params_cmd(void *wmi_hdl,
Govind Singha5e18c42016-04-15 13:58:27 +0530617 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
618#endif
Govind Singh25729ce2016-03-07 15:33:31 +0530619
Govind Singh236fc202016-03-09 14:32:57 +0530620QDF_STATUS wmi_unified_fw_profiling_data_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530621 uint32_t cmd, uint32_t value1, uint32_t value2);
622
Govind Singh236fc202016-03-09 14:32:57 +0530623QDF_STATUS wmi_unified_wow_sta_ra_filter_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530624 uint8_t vdev_id, uint8_t default_pattern,
625 uint16_t rate_limit_interval);
626
Govind Singh236fc202016-03-09 14:32:57 +0530627QDF_STATUS wmi_unified_nat_keepalive_en_cmd(void *wmi_hdl, uint8_t vdev_id);
Govind Singh25729ce2016-03-07 15:33:31 +0530628
Govind Singh236fc202016-03-09 14:32:57 +0530629QDF_STATUS wmi_unified_csa_offload_enable(void *wmi_hdl, uint8_t vdev_id);
Govind Singh25729ce2016-03-07 15:33:31 +0530630
Govind Singh236fc202016-03-09 14:32:57 +0530631QDF_STATUS wmi_unified_start_oem_data_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530632 uint8_t data_len,
633 uint8_t *data);
634
Govind Singh236fc202016-03-09 14:32:57 +0530635QDF_STATUS wmi_unified_dfs_phyerr_filter_offload_en_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530636 bool dfs_phyerr_filter_offload);
637
Govind Singha5e18c42016-04-15 13:58:27 +0530638#ifndef WMI_NON_TLV_SUPPORT
Govind Singh236fc202016-03-09 14:32:57 +0530639QDF_STATUS wmi_unified_pktlog_wmi_send_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530640 WMI_PKTLOG_EVENT pktlog_event,
641 WMI_CMD_ID cmd_id);
Govind Singha5e18c42016-04-15 13:58:27 +0530642#endif
Govind Singh25729ce2016-03-07 15:33:31 +0530643
Govind Singh236fc202016-03-09 14:32:57 +0530644QDF_STATUS wmi_unified_add_wow_wakeup_event_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530645 uint32_t vdev_id,
646 uint32_t bitmap,
647 bool enable);
648
Govind Singh236fc202016-03-09 14:32:57 +0530649QDF_STATUS wmi_unified_wow_patterns_to_fw_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530650 uint8_t vdev_id, uint8_t ptrn_id,
651 const uint8_t *ptrn, uint8_t ptrn_len,
652 uint8_t ptrn_offset, const uint8_t *mask,
653 uint8_t mask_len, bool user,
654 uint8_t default_patterns);
655
Govind Singh236fc202016-03-09 14:32:57 +0530656QDF_STATUS wmi_unified_wow_delete_pattern_cmd(void *wmi_hdl, uint8_t ptrn_id,
Govind Singh25729ce2016-03-07 15:33:31 +0530657 uint8_t vdev_id);
658
Govind Singh236fc202016-03-09 14:32:57 +0530659QDF_STATUS wmi_unified_host_wakeup_ind_to_fw_cmd(void *wmi_hdl);
660QDF_STATUS wmi_unified_del_ts_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh25729ce2016-03-07 15:33:31 +0530661 uint8_t ac);
662
Govind Singh236fc202016-03-09 14:32:57 +0530663QDF_STATUS wmi_unified_aggr_qos_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530664 struct aggr_add_ts_param *aggr_qos_rsp_msg);
665
Govind Singh236fc202016-03-09 14:32:57 +0530666QDF_STATUS wmi_unified_add_ts_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530667 struct add_ts_param *msg);
668
Govind Singh236fc202016-03-09 14:32:57 +0530669QDF_STATUS wmi_unified_enable_disable_packet_filter_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530670 uint8_t vdev_id, bool enable);
671
Govind Singh236fc202016-03-09 14:32:57 +0530672QDF_STATUS wmi_unified_config_packet_filter_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530673 uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
674 uint8_t filter_id, bool enable);
675
Govind Singh236fc202016-03-09 14:32:57 +0530676QDF_STATUS wmi_unified_add_clear_mcbc_filter_cmd(void *wmi_hdl,
Govind Singha5e18c42016-04-15 13:58:27 +0530677 uint8_t vdev_id,
678 struct qdf_mac_addr multicast_addr,
679 bool clearList);
Govind Singh25729ce2016-03-07 15:33:31 +0530680
Govind Singh236fc202016-03-09 14:32:57 +0530681QDF_STATUS wmi_unified_send_gtk_offload_cmd(void *wmi_hdl, uint8_t vdev_id,
Govind Singh25729ce2016-03-07 15:33:31 +0530682 struct gtk_offload_params *params,
683 bool enable_offload,
684 uint32_t gtk_offload_opcode);
685
Govind Singh236fc202016-03-09 14:32:57 +0530686QDF_STATUS wmi_unified_process_gtk_offload_getinfo_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530687 uint8_t vdev_id,
688 uint64_t offload_req_opcode);
689
Govind Singh236fc202016-03-09 14:32:57 +0530690QDF_STATUS wmi_unified_process_add_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530691 struct periodic_tx_pattern *
692 pAddPeriodicTxPtrnParams,
693 uint8_t vdev_id);
694
Govind Singh236fc202016-03-09 14:32:57 +0530695QDF_STATUS wmi_unified_process_del_periodic_tx_ptrn_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530696 uint8_t vdev_id,
697 uint8_t pattern_id);
698
Govind Singh236fc202016-03-09 14:32:57 +0530699QDF_STATUS wmi_unified_stats_ext_req_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530700 struct stats_ext_params *preq);
701
Govind Singh236fc202016-03-09 14:32:57 +0530702QDF_STATUS wmi_unified_enable_ext_wow_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530703 struct ext_wow_params *params);
704
Govind Singh236fc202016-03-09 14:32:57 +0530705QDF_STATUS wmi_unified_set_app_type2_params_in_fw_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530706 struct app_type2_params *appType2Params);
707
Govind Singh236fc202016-03-09 14:32:57 +0530708QDF_STATUS wmi_unified_set_auto_shutdown_timer_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530709 uint32_t timer_val);
710
Govind Singh236fc202016-03-09 14:32:57 +0530711QDF_STATUS wmi_unified_nan_req_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530712 struct nan_req_params *nan_req);
713
Govind Singh236fc202016-03-09 14:32:57 +0530714QDF_STATUS wmi_unified_process_dhcpserver_offload_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530715 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
716
Govind Singh236fc202016-03-09 14:32:57 +0530717QDF_STATUS wmi_unified_process_ch_avoid_update_cmd(void *wmi_hdl);
Govind Singh25729ce2016-03-07 15:33:31 +0530718
Govind Singh236fc202016-03-09 14:32:57 +0530719QDF_STATUS wmi_unified_send_regdomain_info_to_fw_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530720 uint32_t reg_dmn, uint16_t regdmn2G,
721 uint16_t regdmn5G, int8_t ctl2G,
722 int8_t ctl5G);
723
Govind Singh236fc202016-03-09 14:32:57 +0530724QDF_STATUS wmi_unified_set_tdls_offchan_mode_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530725 struct tdls_channel_switch_params *chan_switch_params);
726
Govind Singh236fc202016-03-09 14:32:57 +0530727QDF_STATUS wmi_unified_update_fw_tdls_state_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530728 void *tdls_param, uint8_t tdls_state);
729
Govind Singh236fc202016-03-09 14:32:57 +0530730QDF_STATUS wmi_unified_update_tdls_peer_state_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530731 struct tdls_peer_state_params *peerStateParams,
732 uint32_t *ch_mhz);
733
Govind Singh236fc202016-03-09 14:32:57 +0530734QDF_STATUS wmi_unified_process_fw_mem_dump_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530735 struct fw_dump_req_param *mem_dump_req);
736
Govind Singh236fc202016-03-09 14:32:57 +0530737QDF_STATUS wmi_unified_process_set_ie_info_cmd(void *wmi_hdl,
Govind Singh25729ce2016-03-07 15:33:31 +0530738 struct vdev_ie_info_param *ie_info);
739
Govind Singh236fc202016-03-09 14:32:57 +0530740QDF_STATUS wmi_unified_ocb_set_utc_time_cmd(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530741 struct ocb_utc_param *utc);
Govind Singhfef95e22016-03-07 14:24:22 +0530742
Govind Singh236fc202016-03-09 14:32:57 +0530743QDF_STATUS wmi_unified_dcc_get_stats_cmd(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530744 struct dcc_get_stats_param *get_stats_param);
Govind Singhfef95e22016-03-07 14:24:22 +0530745
Govind Singh236fc202016-03-09 14:32:57 +0530746QDF_STATUS wmi_unified_dcc_clear_stats(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530747 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
Govind Singh25729ce2016-03-07 15:33:31 +0530748
Govind Singh236fc202016-03-09 14:32:57 +0530749QDF_STATUS wmi_unified_dcc_update_ndl(void *wmi_hdl,
Govind Singhd0fd7262016-03-01 15:30:53 +0530750 struct dcc_update_ndl_param *update_ndl_param);
Govind Singhb75690a2016-03-07 16:30:32 +0530751
Govind Singh236fc202016-03-09 14:32:57 +0530752QDF_STATUS wmi_unified_save_fw_version_cmd(void *wmi_hdl,
Govind Singhb75690a2016-03-07 16:30:32 +0530753 void *evt_buf);
754
Govind Singh236fc202016-03-09 14:32:57 +0530755QDF_STATUS wmi_unified_send_init_cmd(void *wmi_hdl,
Govind Singhb75690a2016-03-07 16:30:32 +0530756 wmi_resource_config *res_cfg,
757 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
758 bool action);
759
Govind Singh236fc202016-03-09 14:32:57 +0530760QDF_STATUS wmi_unified_send_saved_init_cmd(void *wmi_hdl);
Govind Singha2e792e2016-03-07 16:45:38 +0530761
Govind Singh236fc202016-03-09 14:32:57 +0530762QDF_STATUS wmi_unified_set_base_macaddr_indicate_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530763 uint8_t *custom_addr);
764
Govind Singh236fc202016-03-09 14:32:57 +0530765QDF_STATUS wmi_unified_log_supported_evt_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530766 uint8_t *event,
767 uint32_t len);
768
Govind Singh236fc202016-03-09 14:32:57 +0530769QDF_STATUS wmi_unified_enable_specific_fw_logs_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530770 struct wmi_wifi_start_log *start_log);
771
Govind Singh236fc202016-03-09 14:32:57 +0530772QDF_STATUS wmi_unified_flush_logs_to_fw_cmd(void *wmi_hdl);
Govind Singha2e792e2016-03-07 16:45:38 +0530773
Manishekar Chandrasekaranb3a30732016-04-21 19:16:32 +0530774QDF_STATUS wmi_unified_pdev_set_pcl_cmd(void *wmi_hdl,
775 struct wmi_pcl_chan_weights *msg);
Govind Singha2e792e2016-03-07 16:45:38 +0530776
Govind Singh236fc202016-03-09 14:32:57 +0530777QDF_STATUS wmi_unified_soc_set_hw_mode_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530778 uint32_t hw_mode_index);
779
Manishekar Chandrasekaran7e21d102016-04-27 12:52:51 +0530780QDF_STATUS wmi_unified_pdev_set_dual_mac_config_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530781 struct wmi_dual_mac_config *msg);
782
Govind Singh236fc202016-03-09 14:32:57 +0530783QDF_STATUS wmi_unified_enable_arp_ns_offload_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530784 struct host_offload_req_param *param, bool arp_only,
785 uint8_t vdev_id);
786
Govind Singh236fc202016-03-09 14:32:57 +0530787QDF_STATUS wmi_unified_set_led_flashing_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530788 struct flashing_req_params *flashing);
789
Govind Singh236fc202016-03-09 14:32:57 +0530790QDF_STATUS wmi_unified_app_type1_params_in_fw_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530791 struct app_type1_params *app_type1_params);
792
Govind Singh236fc202016-03-09 14:32:57 +0530793QDF_STATUS wmi_unified_set_ssid_hotlist_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530794 struct ssid_hotlist_request_params *request);
795
Govind Singh236fc202016-03-09 14:32:57 +0530796QDF_STATUS wmi_unified_roam_synch_complete_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530797 uint8_t vdev_id);
798
Govind Singh236fc202016-03-09 14:32:57 +0530799QDF_STATUS wmi_unified_unit_test_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530800 struct wmi_unit_test_cmd *wmi_utest);
801
Govind Singh236fc202016-03-09 14:32:57 +0530802QDF_STATUS wmi_unified_roam_invoke_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530803 struct wmi_roam_invoke_cmd *roaminvoke,
804 uint32_t ch_hz);
805
Govind Singh236fc202016-03-09 14:32:57 +0530806QDF_STATUS wmi_unified_roam_scan_offload_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530807 uint32_t command, uint32_t vdev_id);
808
Govind Singha5e18c42016-04-15 13:58:27 +0530809#ifndef WMI_NON_TLV_SUPPORT
Govind Singh236fc202016-03-09 14:32:57 +0530810QDF_STATUS wmi_unified_send_roam_scan_offload_ap_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530811 wmi_ap_profile *ap_profile_p,
812 uint32_t vdev_id);
Govind Singha5e18c42016-04-15 13:58:27 +0530813#endif
Govind Singha2e792e2016-03-07 16:45:38 +0530814
Govind Singh236fc202016-03-09 14:32:57 +0530815QDF_STATUS wmi_unified_roam_scan_offload_scan_period(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530816 uint32_t scan_period,
817 uint32_t scan_age,
818 uint32_t vdev_id);
819
Govind Singh236fc202016-03-09 14:32:57 +0530820QDF_STATUS wmi_unified_roam_scan_offload_chan_list_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530821 uint8_t chan_count,
Varun Reddy Yeturuf99241e2016-07-07 17:42:49 -0700822 uint32_t *chan_list,
Govind Singha2e792e2016-03-07 16:45:38 +0530823 uint8_t list_type, uint32_t vdev_id);
824
Govind Singh236fc202016-03-09 14:32:57 +0530825QDF_STATUS wmi_unified_roam_scan_offload_rssi_change_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530826 uint32_t vdev_id,
827 int32_t rssi_change_thresh,
828 uint32_t bcn_rssi_weight,
829 uint32_t hirssi_delay_btw_scans);
830
Govind Singh236fc202016-03-09 14:32:57 +0530831QDF_STATUS wmi_unified_get_buf_extscan_hotlist_cmd(void *wmi_hdl,
Govind Singha2e792e2016-03-07 16:45:38 +0530832 struct ext_scan_setbssi_hotlist_params *
833 photlist, int *buf_len);
Govind Singha5e18c42016-04-15 13:58:27 +0530834
835QDF_STATUS wmi_unified_stats_request_send(void *wmi_hdl,
836 uint8_t macaddr[IEEE80211_ADDR_LEN],
837 struct stats_request_params *param);
838
839QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
840 uint32_t param);
841
842QDF_STATUS wmi_unified_set_atf_cmd_send(void *wmi_hdl,
843 struct set_atf_params *param);
844
845QDF_STATUS wmi_unified_pdev_fips_cmd_send(void *wmi_hdl,
846 struct fips_params *param);
847
848QDF_STATUS wmi_unified_wlan_profile_enable_cmd_send(void *wmi_hdl,
849 struct wlan_profile_params *param);
850
851QDF_STATUS wmi_unified_wlan_profile_trigger_cmd_send(void *wmi_hdl,
852 struct wlan_profile_params *param);
853
854QDF_STATUS wmi_unified_set_chan_cmd_send(void *wmi_hdl,
855 struct channel_param *param);
856
857QDF_STATUS wmi_unified_set_ht_ie_cmd_send(void *wmi_hdl,
858 struct ht_ie_params *param);
859
860QDF_STATUS wmi_unified_set_vht_ie_cmd_send(void *wmi_hdl,
861 struct vht_ie_params *param);
862
863QDF_STATUS wmi_unified_wmm_update_cmd_send(void *wmi_hdl,
864 struct wmm_update_params *param);
865
866QDF_STATUS wmi_unified_set_ant_switch_tbl_cmd_send(void *wmi_hdl,
867 struct ant_switch_tbl_params *param);
868
869QDF_STATUS wmi_unified_set_ratepwr_table_cmd_send(void *wmi_hdl,
870 struct ratepwr_table_params *param);
871
872QDF_STATUS wmi_unified_get_ratepwr_table_cmd_send(void *wmi_hdl);
873
874QDF_STATUS wmi_unified_set_ctl_table_cmd_send(void *wmi_hdl,
875 struct ctl_table_params *param);
876
877QDF_STATUS wmi_unified_set_mimogain_table_cmd_send(void *wmi_hdl,
878 struct mimogain_table_params *param);
879
880QDF_STATUS wmi_unified_set_ratepwr_chainmsk_cmd_send(void *wmi_hdl,
881 struct ratepwr_chainmsk_params *param);
882
883QDF_STATUS wmi_unified_set_macaddr_cmd_send(void *wmi_hdl,
884 struct macaddr_params *param);
885
886QDF_STATUS wmi_unified_pdev_scan_start_cmd_send(void *wmi_hdl);
887
888QDF_STATUS wmi_unified_pdev_scan_end_cmd_send(void *wmi_hdl);
889
890QDF_STATUS wmi_unified_set_acparams_cmd_send(void *wmi_hdl,
891 struct acparams_params *param);
892
893QDF_STATUS wmi_unified_set_vap_dscp_tid_map_cmd_send(void *wmi_hdl,
894 struct vap_dscp_tid_map_params *param);
895
896QDF_STATUS wmi_unified_proxy_ast_reserve_cmd_send(void *wmi_hdl,
897 struct proxy_ast_reserve_params *param);
898
899QDF_STATUS wmi_unified_pdev_qvit_cmd_send(void *wmi_hdl,
900 struct pdev_qvit_params *param);
901
902QDF_STATUS wmi_unified_mcast_group_update_cmd_send(void *wmi_hdl,
903 struct mcast_group_update_params *param);
904
905QDF_STATUS wmi_unified_peer_add_wds_entry_cmd_send(void *wmi_hdl,
906 struct peer_add_wds_entry_params *param);
907
908QDF_STATUS wmi_unified_peer_del_wds_entry_cmd_send(void *wmi_hdl,
909 struct peer_del_wds_entry_params *param);
910
911QDF_STATUS wmi_unified_peer_update_wds_entry_cmd_send(void *wmi_hdl,
912 struct peer_update_wds_entry_params *param);
913
914QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
915
916QDF_STATUS wmi_unified_phyerr_enable_cmd_send(void *wmi_hdl);
917
918QDF_STATUS wmi_unified_phyerr_disable_cmd_send(void *wmi_hdl);
919
920QDF_STATUS wmi_unified_smart_ant_enable_cmd_send(void *wmi_hdl,
921 struct smart_ant_enable_params *param);
922
923QDF_STATUS wmi_unified_smart_ant_set_rx_ant_cmd_send(void *wmi_hdl,
924 struct smart_ant_rx_ant_params *param);
925
926QDF_STATUS wmi_unified_smart_ant_set_tx_ant_cmd_send(void *wmi_hdl,
927 uint8_t macaddr[IEEE80211_ADDR_LEN],
928 struct smart_ant_tx_ant_params *param);
929
930QDF_STATUS wmi_unified_smart_ant_set_training_info_cmd_send(void *wmi_hdl,
931 uint8_t macaddr[IEEE80211_ADDR_LEN],
932 struct smart_ant_training_info_params *param);
933
934QDF_STATUS wmi_unified_smart_ant_node_config_cmd_send(void *wmi_hdl,
935 uint8_t macaddr[IEEE80211_ADDR_LEN],
936 struct smart_ant_node_config_params *param);
937
938QDF_STATUS wmi_unified_smart_ant_enable_tx_feedback_cmd_send(void *wmi_hdl,
939 struct smart_ant_enable_tx_feedback_params *param);
940
941QDF_STATUS wmi_unified_vdev_spectral_configure_cmd_send(void *wmi_hdl,
942 struct vdev_spectral_configure_params *param);
943
944QDF_STATUS wmi_unified_vdev_spectral_enable_cmd_send(void *wmi_hdl,
945 struct vdev_spectral_enable_params *param);
946
947QDF_STATUS wmi_unified_bss_chan_info_request_cmd_send(void *wmi_hdl,
948 struct bss_chan_info_request_params *param);
949
950QDF_STATUS wmi_unified_thermal_mitigation_param_cmd_send(void *wmi_hdl,
951 struct thermal_mitigation_params *param);
952
953QDF_STATUS wmi_unified_vdev_set_neighbour_rx_cmd_send(void *wmi_hdl,
954 uint8_t macaddr[IEEE80211_ADDR_LEN],
955 struct set_neighbour_rx_params *param);
956
957QDF_STATUS wmi_unified_vdev_set_fwtest_param_cmd_send(void *wmi_hdl,
958 struct set_fwtest_params *param);
959
960QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
961 struct config_ratemask_params *param);
962
963QDF_STATUS wmi_unified_vdev_install_key_cmd_send(void *wmi_hdl,
964 uint8_t macaddr[IEEE80211_ADDR_LEN],
965 struct vdev_install_key_params *param);
966
967QDF_STATUS wmi_unified_pdev_set_regdomain_cmd_send(void *wmi_hdl,
968 struct pdev_set_regdomain_params *param);
969
970QDF_STATUS wmi_unified_set_quiet_mode_cmd_send(void *wmi_hdl,
971 struct set_quiet_mode_params *param);
972
973QDF_STATUS wmi_unified_set_beacon_filter_cmd_send(void *wmi_hdl,
974 struct set_beacon_filter_params *param);
975
976QDF_STATUS wmi_unified_remove_beacon_filter_cmd_send(void *wmi_hdl,
977 struct remove_beacon_filter_params *param);
978
979QDF_STATUS wmi_unified_addba_clearresponse_cmd_send(void *wmi_hdl,
980 uint8_t macaddr[IEEE80211_ADDR_LEN],
981 struct addba_clearresponse_params *param);
982
983QDF_STATUS wmi_unified_addba_send_cmd_send(void *wmi_hdl,
984 uint8_t macaddr[IEEE80211_ADDR_LEN],
985 struct addba_send_params *param);
986
987QDF_STATUS wmi_unified_delba_send_cmd_send(void *wmi_hdl,
988 uint8_t macaddr[IEEE80211_ADDR_LEN],
989 struct delba_send_params *param);
990
991QDF_STATUS wmi_unified_addba_setresponse_cmd_send(void *wmi_hdl,
992 uint8_t macaddr[IEEE80211_ADDR_LEN],
993 struct addba_setresponse_params *param);
994
995QDF_STATUS wmi_unified_singleamsdu_cmd_send(void *wmi_hdl,
996 uint8_t macaddr[IEEE80211_ADDR_LEN],
997 struct singleamsdu_params *param);
998
999QDF_STATUS wmi_unified_set_qboost_param_cmd_send(void *wmi_hdl,
1000 uint8_t macaddr[IEEE80211_ADDR_LEN],
1001 struct set_qboost_params *param);
1002
1003QDF_STATUS wmi_unified_mu_scan_cmd_send(void *wmi_hdl,
1004 struct mu_scan_params *param);
1005
1006QDF_STATUS wmi_unified_lteu_config_cmd_send(void *wmi_hdl,
1007 struct lteu_config_params *param);
1008
1009QDF_STATUS wmi_unified_set_psmode_cmd_send(void *wmi_hdl,
1010 struct set_ps_mode_params *param);
1011
1012QDF_STATUS wmi_unified_init_cmd_send(void *wmi_hdl,
1013 target_resource_config *res_cfg,
1014 uint8_t num_mem_chunks,
1015 struct wmi_host_mem_chunk *mem_chunk);
1016
1017bool wmi_service_enabled(void *wmi_hdl, uint32_t service_id);
1018
1019QDF_STATUS wmi_save_service_bitmap(void *wmi_hdl, void *evt_buf);
1020
1021QDF_STATUS wmi_save_fw_version(void *wmi_hdl, void *evt_buf);
1022
1023QDF_STATUS wmi_get_target_cap_from_service_ready(void *wmi_hdl,
1024 void *evt_buf, target_capability_info *ev);
1025
1026QDF_STATUS wmi_extract_hal_reg_cap(void *wmi_hdl, void *evt_buf,
1027 TARGET_HAL_REG_CAPABILITIES *hal_reg_cap);
1028
1029host_mem_req *wmi_extract_host_mem_req_from_service_ready(void *wmi_hdl,
1030 void *evt_buf, uint8_t *num_entries);
1031
1032uint32_t wmi_ready_extract_init_status(void *wmi_hdl, void *ev);
1033
1034QDF_STATUS wmi_ready_extract_mac_addr(void *wmi_hdl,
1035 void *ev, uint8_t *macaddr);
1036
1037QDF_STATUS wmi_extract_fw_version(void *wmi_hdl,
1038 void *ev, struct wmi_host_fw_ver *fw_ver);
1039
1040QDF_STATUS wmi_extract_fw_abi_version(void *wmi_hdl,
1041 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
1042
1043QDF_STATUS wmi_check_and_update_fw_version(void *wmi_hdl, void *ev);
1044
1045uint8_t *wmi_extract_dbglog_data_len(void *wmi_hdl,
1046 void *evt_b, uint16_t *len);
1047
1048QDF_STATUS wmi_send_ext_resource_config(void *wmi_hdl,
1049 wmi_host_ext_resource_config *ext_cfg);
1050
1051QDF_STATUS wmi_unified_nf_dbr_dbm_info_get_cmd_send(void *wmi_hdl);
1052
1053QDF_STATUS wmi_unified_packet_power_info_get_cmd_send(void *wmi_hdl,
1054 struct packet_power_info_params *param);
1055
1056QDF_STATUS wmi_unified_gpio_config_cmd_send(void *wmi_hdl,
1057 struct gpio_config_params *param);
1058
1059QDF_STATUS wmi_unified_gpio_output_cmd_send(void *wmi_hdl,
1060 struct gpio_output_params *param);
1061
1062QDF_STATUS wmi_unified_rtt_meas_req_test_cmd_send(void *wmi_hdl,
1063 struct rtt_meas_req_test_params *param);
1064
1065QDF_STATUS wmi_unified_rtt_meas_req_cmd_send(void *wmi_hdl,
1066 struct rtt_meas_req_params *param);
1067
1068QDF_STATUS wmi_unified_rtt_keepalive_req_cmd_send(void *wmi_hdl,
1069 struct rtt_keepalive_req_params *param);
1070
1071QDF_STATUS wmi_unified_lci_set_cmd_send(void *wmi_hdl,
1072 struct lci_set_params *param);
1073
1074QDF_STATUS wmi_unified_lcr_set_cmd_send(void *wmi_hdl,
1075 struct lcr_set_params *param);
1076
1077QDF_STATUS wmi_unified_send_periodic_chan_stats_config_cmd(void *wmi_hdl,
1078 struct periodic_chan_stats_params *param);
1079
1080QDF_STATUS
1081wmi_send_atf_peer_request_cmd(void *wmi_hdl,
1082 struct atf_peer_request_params *param);
1083
1084QDF_STATUS
1085wmi_send_set_atf_grouping_cmd(void *wmi_hdl,
1086 struct atf_grouping_params *param);
1087/* Extract APIs */
1088
1089QDF_STATUS wmi_extract_wds_addr_event(void *wmi_hdl,
1090 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
1091
1092QDF_STATUS wmi_extract_dcs_interference_type(void *wmi_hdl,
1093 void *evt_buf, uint32_t *interference_type);
1094
1095QDF_STATUS wmi_extract_dcs_cw_int(void *wmi_hdl, void *evt_buf,
1096 wmi_host_ath_dcs_cw_int *cw_int);
1097
1098QDF_STATUS wmi_extract_dcs_im_tgt_stats(void *wmi_hdl, void *evt_buf,
1099 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
1100
1101QDF_STATUS wmi_extract_fips_event_error_status(void *wmi_hdl, void *evt_buf,
1102 uint32_t *err_status);
1103
1104QDF_STATUS wmi_extract_fips_event_data(void *wmi_hdl, void *evt_buf,
1105 uint32_t *data_len, uint32_t **data);
1106QDF_STATUS wmi_extract_vdev_start_resp(void *wmi_hdl, void *evt_buf,
1107 wmi_host_vdev_start_resp *vdev_rsp);
1108QDF_STATUS wmi_extract_tbttoffset_update_params(void *wmi_hdl, void *evt_buf,
1109 uint32_t *vdev_map, uint32_t **tbttoffset_list);
1110
1111QDF_STATUS wmi_extract_mgmt_rx_params(void *wmi_hdl, void *evt_buf,
1112 wmi_host_mgmt_rx_hdr *hdr, uint8_t **bufp);
1113
1114QDF_STATUS wmi_extract_vdev_stopped_param(void *wmi_hdl, void *evt_buf,
1115 uint32_t *vdev_id);
1116
1117QDF_STATUS wmi_extract_vdev_roam_param(void *wmi_hdl, void *evt_buf,
1118 wmi_host_roam_event *ev);
1119
1120QDF_STATUS wmi_extract_vdev_scan_ev_param(void *wmi_hdl, void *evt_buf,
1121 wmi_host_scan_event *param);
1122
1123QDF_STATUS wmi_extract_mu_ev_param(void *wmi_hdl, void *evt_buf,
1124 wmi_host_mu_report_event *param);
1125
1126QDF_STATUS wmi_extract_pdev_tpc_config_ev_param(void *wmi_hdl, void *evt_buf,
1127 wmi_host_pdev_tpc_config_event *param);
1128
1129QDF_STATUS wmi_extract_gpio_input_ev_param(void *wmi_hdl,
1130 void *evt_buf, uint32_t *gpio_num);
1131
1132QDF_STATUS wmi_extract_pdev_reserve_ast_ev_param(void *wmi_hdl,
1133 void *evt_buf, uint32_t *result);
1134
1135QDF_STATUS wmi_extract_nfcal_power_ev_param(void *wmi_hdl, void *evt_buf,
1136 wmi_host_pdev_nfcal_power_all_channels_event *param);
1137
1138QDF_STATUS wmi_extract_pdev_tpc_ev_param(void *wmi_hdl, void *evt_buf,
1139 wmi_host_pdev_tpc_event *param);
1140
1141QDF_STATUS wmi_extract_pdev_generic_buffer_ev_param(void *wmi_hdl,
1142 void *evt_buf,
1143 wmi_host_pdev_generic_buffer_event *param);
1144
1145QDF_STATUS wmi_extract_mgmt_tx_compl_param(void *wmi_hdl, void *evt_buf,
1146 wmi_host_mgmt_tx_compl_event *param);
1147
1148QDF_STATUS wmi_extract_swba_vdev_map(void *wmi_hdl, void *evt_buf,
1149 uint32_t *vdev_map);
1150
1151QDF_STATUS wmi_extract_swba_tim_info(void *wmi_hdl, void *evt_buf,
1152 uint32_t idx, wmi_host_tim_info *tim_info);
1153
1154QDF_STATUS wmi_extract_swba_noa_info(void *wmi_hdl, void *evt_buf,
1155 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1156
1157QDF_STATUS wmi_extract_peer_sta_ps_statechange_ev(void *wmi_hdl,
1158 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1159
1160QDF_STATUS wmi_extract_peer_sta_kickout_ev(void *wmi_hdl, void *evt_buf,
1161 wmi_host_peer_sta_kickout_event *ev);
1162
1163QDF_STATUS wmi_extract_peer_ratecode_list_ev(void *wmi_hdl, void *evt_buf,
1164 uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1165
1166QDF_STATUS wmi_extract_rtt_hdr(void *wmi_hdl, void *evt_buf,
1167 wmi_host_rtt_event_hdr *ev);
1168
1169QDF_STATUS wmi_extract_rtt_ev(void *wmi_hdl, void *evt_buf,
1170 wmi_host_rtt_meas_event *ev, uint8_t *hdump,
1171 uint16_t hdump_len);
1172
1173QDF_STATUS wmi_extract_rtt_error_report_ev(void *wmi_hdl, void *evt_buf,
1174 wmi_host_rtt_error_report_event *ev);
1175
1176QDF_STATUS wmi_extract_thermal_stats(void *wmi_hdl, void *evt_buf,
1177 uint32_t *temp, uint32_t *level);
1178
1179QDF_STATUS wmi_extract_thermal_level_stats(void *wmi_hdl, void *evt_buf,
1180 uint8_t idx, uint32_t *levelcount, uint32_t *dccount);
1181
1182QDF_STATUS wmi_extract_comb_phyerr(void *wmi_hdl, void *evt_buf,
1183 uint16_t datalen, uint16_t *buf_offset,
1184 wmi_host_phyerr_t *phyerr);
1185
1186QDF_STATUS wmi_extract_single_phyerr(void *wmi_hdl, void *evt_buf,
1187 uint16_t datalen, uint16_t *buf_offset,
1188 wmi_host_phyerr_t *phyerr);
1189
1190QDF_STATUS wmi_extract_composite_phyerr(void *wmi_hdl, void *evt_buf,
1191 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1192
1193QDF_STATUS wmi_extract_profile_ctx(void *wmi_hdl, void *evt_buf,
1194 wmi_host_wlan_profile_ctx_t *profile_ctx);
1195
Govind Singhfe2c8152016-05-06 20:20:25 +05301196QDF_STATUS wmi_extract_profile_data(void *wmi_hdl, void *evt_buf, uint8_t idx,
Govind Singha5e18c42016-04-15 13:58:27 +05301197 wmi_host_wlan_profile_t *profile_data);
1198
1199QDF_STATUS wmi_extract_chan_info_event(void *wmi_hdl, void *evt_buf,
1200 wmi_host_chan_info_event *chan_info);
1201
1202QDF_STATUS wmi_extract_channel_hopping_event(void *wmi_hdl, void *evt_buf,
1203 wmi_host_pdev_channel_hopping_event *ch_hopping);
1204
1205QDF_STATUS wmi_extract_stats_param(void *wmi_hdl, void *evt_buf,
1206 wmi_host_stats_event *stats_param);
1207
1208QDF_STATUS wmi_extract_pdev_stats(void *wmi_hdl, void *evt_buf,
1209 uint32_t index,
1210 wmi_host_pdev_stats *pdev_stats);
1211
1212QDF_STATUS wmi_extract_pdev_ext_stats(void *wmi_hdl, void *evt_buf,
1213 uint32_t index,
1214 wmi_host_pdev_ext_stats *pdev_ext_stats);
1215
1216QDF_STATUS wmi_extract_peer_extd_stats(void *wmi_hdl, void *evt_buf,
1217 uint32_t index,
1218 wmi_host_peer_extd_stats *peer_extd_stats);
1219
1220QDF_STATUS wmi_extract_bss_chan_info_event(void *wmi_hdl, void *evt_buf,
1221 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1222
1223QDF_STATUS wmi_extract_inst_rssi_stats_event(void *wmi_hdl, void *evt_buf,
1224 wmi_host_inst_stats_resp *inst_rssi_resp);
1225
1226QDF_STATUS wmi_extract_peer_stats(void *wmi_hdl, void *evt_buf,
1227 uint32_t index, wmi_host_peer_stats *peer_stats);
1228
1229QDF_STATUS wmi_extract_tx_data_traffic_ctrl_ev(void *wmi_hdl, void *evt_buf,
1230 wmi_host_tx_data_traffic_ctrl_event *ev);
1231
1232QDF_STATUS wmi_extract_vdev_stats(void *wmi_hdl, void *evt_buf,
1233 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1234
1235QDF_STATUS wmi_extract_vdev_extd_stats(void *wmi_hdl, void *evt_buf,
1236 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singh2a56c222016-05-02 17:59:24 +05301237
1238QDF_STATUS wmi_unified_send_power_dbg_cmd(void *wmi_hdl,
1239 struct wmi_power_dbg_params *param);
Gupta, Kapil86ab1712016-04-25 19:14:19 +05301240QDF_STATUS wmi_unified_send_adapt_dwelltime_params_cmd(void *wmi_hdl,
1241 struct wmi_adaptive_dwelltime_params *
1242 wmi_param);
Prakash Dhavalid5c9f1c2015-11-08 19:04:44 -08001243#endif /* _WMI_UNIFIED_API_H_ */