blob: 2a4c9e90c0db22670da27f1b171f6eef0c95fb0c [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 Singh3ddda1f2016-03-09 11:34:12 +053029 * This file contains the API definitions for the Unified Wireless
30 * Module Interface (WMI).
Govind Singhd475ea92016-03-06 19:55:02 +053031 */
32#ifndef _WMI_UNIFIED_PRIV_H_
33#define _WMI_UNIFIED_PRIV_H_
34#include <osdep.h>
35#include "a_types.h"
Govind Singh89727882016-04-15 13:58:27 +053036#include "wmi_unified_param.h"
Govind Singhd7468a52016-03-09 14:32:57 +053037#include "qdf_atomic.h"
Govind Singhd475ea92016-03-06 19:55:02 +053038
39#define WMI_UNIFIED_MAX_EVENT 0x100
40#define WMI_MAX_CMDS 1024
41
Govind Singhd7468a52016-03-09 14:32:57 +053042typedef qdf_nbuf_t wmi_buf_t;
Govind Singhd475ea92016-03-06 19:55:02 +053043
44#ifdef WMI_INTERFACE_EVENT_LOGGING
45
46#define WMI_EVENT_DEBUG_MAX_ENTRY (1024)
Govind Singh5fed03b2016-05-12 12:45:51 +053047#define WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH (16)
48/* wmi_mgmt commands */
49#define WMI_MGMT_EVENT_DEBUG_MAX_ENTRY (256)
Govind Singhd475ea92016-03-06 19:55:02 +053050
Govind Singh5fed03b2016-05-12 12:45:51 +053051/**
52 * struct wmi_command_debug - WMI command log buffer data type
53 * @ command - Store WMI Command id
54 * @ data - Stores WMI command data
55 * @ time - Time of WMI command handling
56 */
Govind Singhd475ea92016-03-06 19:55:02 +053057struct wmi_command_debug {
58 uint32_t command;
Govind Singh5fed03b2016-05-12 12:45:51 +053059 /*16 bytes of WMI cmd excluding TLV and WMI headers */
60 uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
Govind Singhd475ea92016-03-06 19:55:02 +053061 uint64_t time;
62};
63
Govind Singh5fed03b2016-05-12 12:45:51 +053064/**
65 * struct wmi_event_debug - WMI event log buffer data type
66 * @ command - Store WMI Event id
67 * @ data - Stores WMI Event data
68 * @ time - Time of WMI Event handling
69 */
Govind Singhd475ea92016-03-06 19:55:02 +053070struct wmi_event_debug {
71 uint32_t event;
Govind Singh5fed03b2016-05-12 12:45:51 +053072 /*16 bytes of WMI event data excluding TLV header */
73 uint32_t data[WMI_EVENT_DEBUG_ENTRY_MAX_LENGTH/sizeof(uint32_t)];
Govind Singhd475ea92016-03-06 19:55:02 +053074 uint64_t time;
75};
76
Govind Singh5fed03b2016-05-12 12:45:51 +053077/**
Sandeep Puligilla38a294f2016-06-13 15:42:55 -070078 * struct wmi_command_header - Type for accessing frame data
79 * @ type - 802.11 Frame type
80 * @ subType - 802.11 Frame subtype
81 * @ protVer - 802.11 Version
82 */
83struct wmi_command_header {
84#ifndef ANI_LITTLE_BIT_ENDIAN
85
86 uint32_t sub_type:4;
87 uint32_t type:2;
88 uint32_t prot_ver:2;
89
90#else
91
92 uint32_t prot_ver:2;
93 uint32_t type:2;
94 uint32_t sub_type:4;
95
96#endif
97};
98
99/**
Govind Singh5fed03b2016-05-12 12:45:51 +0530100 * struct wmi_log_buf_t - WMI log buffer information type
101 * @buf - Refernce to WMI log buffer
102 * @ length - length of buffer
103 * @ buf_tail_idx - Tail index of buffer
104 * @ p_buf_tail_idx - refernce to buffer tail index. It is added to accommodate
105 * unified design since MCL uses global variable for buffer tail index
106 */
107struct wmi_log_buf_t {
108 void *buf;
109 uint32_t length;
110 uint32_t buf_tail_idx;
111 uint32_t *p_buf_tail_idx;
112};
113
114/**
115 * struct wmi_debug_log_info - Meta data to hold information of all buffers
116 * used for WMI logging
117 * @wmi_command_log_buf_info - Buffer info for WMI Command log
118 * @wmi_command_tx_cmp_log_buf_info - Buffer info for WMI Command Tx completion
119 * log
120 * @wmi_event_log_buf_info - Buffer info for WMI Event log
121 * @wmi_rx_event_log_buf_info - Buffer info for WMI event received log
122 * @wmi_mgmt_command_log_buf_info - Buffer info for WMI Management Command log
123 * @wmi_mgmt_command_tx_cmp_log_buf_info - Buffer info for WMI Management
124 * Command Tx completion log
125 * @wmi_mgmt_event_log_buf_info - Buffer info for WMI Management event log
126 * @wmi_record_lock - Lock WMI recording
127 * @wmi_logging_enable - Enable/Disable state for WMI logging
128 * @buf_offset_command - Offset from where WMI command data should be logged
129 * @buf_offset_event - Offset from where WMI event data should be logged
130 * @is_management_record - Function refernce to check if command/event is
131 * management record
132 * @wmi_id_to_name - Function refernce to API to convert Command id to
133 * string name
134 * @wmi_log_debugfs_dir - refernce to debugfs directory
135 */
136struct wmi_debug_log_info {
137 struct wmi_log_buf_t wmi_command_log_buf_info;
138 struct wmi_log_buf_t wmi_command_tx_cmp_log_buf_info;
139
140 struct wmi_log_buf_t wmi_event_log_buf_info;
141 struct wmi_log_buf_t wmi_rx_event_log_buf_info;
142
143 struct wmi_log_buf_t wmi_mgmt_command_log_buf_info;
144 struct wmi_log_buf_t wmi_mgmt_command_tx_cmp_log_buf_info;
145 struct wmi_log_buf_t wmi_mgmt_event_log_buf_info;
146
147 qdf_spinlock_t wmi_record_lock;
148 bool wmi_logging_enable;
149 uint32_t buf_offset_command;
150 uint32_t buf_offset_event;
151 bool (*is_management_record)(uint32_t cmd_id);
152 uint8_t *(*wmi_id_to_name)(uint32_t cmd_id);
153 struct dentry *wmi_log_debugfs_dir;
154 uint8_t wmi_instance_id;
155};
156
Govind Singhd475ea92016-03-06 19:55:02 +0530157#endif /*WMI_INTERFACE_EVENT_LOGGING */
158
159#ifdef WLAN_OPEN_SOURCE
160struct fwdebug {
161 struct sk_buff_head fwlog_queue;
162 struct completion fwlog_completion;
163 A_BOOL fwlog_open;
164};
165#endif /* WLAN_OPEN_SOURCE */
166
Govind Singh3ddda1f2016-03-09 11:34:12 +0530167struct wmi_ops {
Govind Singhd7468a52016-03-09 14:32:57 +0530168QDF_STATUS (*send_vdev_create_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530169 uint8_t macaddr[IEEE80211_ADDR_LEN],
170 struct vdev_create_params *param);
171
Govind Singhd7468a52016-03-09 14:32:57 +0530172QDF_STATUS (*send_vdev_delete_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530173 uint8_t if_id);
174
Govind Singhd7468a52016-03-09 14:32:57 +0530175QDF_STATUS (*send_vdev_stop_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530176 uint8_t vdev_id);
177
Govind Singhd7468a52016-03-09 14:32:57 +0530178QDF_STATUS (*send_vdev_down_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530179 uint8_t vdev_id);
180
Himanshu Agarwal7e4f4bc2016-03-09 16:49:38 +0530181QDF_STATUS (*send_vdev_start_cmd)(wmi_unified_t wmi,
182 struct vdev_start_params *req);
183
184QDF_STATUS (*send_hidden_ssid_vdev_restart_cmd)(wmi_unified_t wmi_handle,
185 struct hidden_ssid_vdev_restart_params *restart_params);
186
Govind Singhd7468a52016-03-09 14:32:57 +0530187QDF_STATUS (*send_peer_flush_tids_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530188 uint8_t peer_addr[IEEE80211_ADDR_LEN],
189 struct peer_flush_params *param);
190
Govind Singhd7468a52016-03-09 14:32:57 +0530191QDF_STATUS (*send_peer_delete_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530192 uint8_t peer_addr[IEEE80211_ADDR_LEN],
193 uint8_t vdev_id);
194
Govind Singhd7468a52016-03-09 14:32:57 +0530195QDF_STATUS (*send_peer_param_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530196 uint8_t peer_addr[IEEE80211_ADDR_LEN],
197 struct peer_set_params *param);
198
Govind Singhd7468a52016-03-09 14:32:57 +0530199QDF_STATUS (*send_vdev_up_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530200 uint8_t bssid[IEEE80211_ADDR_LEN],
201 struct vdev_up_params *params);
202
Govind Singhd7468a52016-03-09 14:32:57 +0530203QDF_STATUS (*send_peer_create_cmd)(wmi_unified_t wmi,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530204 struct peer_create_params *param);
205
Govind Singhd7468a52016-03-09 14:32:57 +0530206QDF_STATUS (*send_green_ap_ps_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530207 uint32_t value, uint8_t mac_id);
208
Govind Singhd7468a52016-03-09 14:32:57 +0530209QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530210(*send_pdev_utf_cmd)(wmi_unified_t wmi_handle,
211 struct pdev_utf_params *param,
212 uint8_t mac_id);
213
Govind Singhd7468a52016-03-09 14:32:57 +0530214QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530215(*send_pdev_param_cmd)(wmi_unified_t wmi_handle,
216 struct pdev_params *param,
217 uint8_t mac_id);
218
Govind Singhd7468a52016-03-09 14:32:57 +0530219QDF_STATUS (*send_suspend_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530220 struct suspend_params *param,
221 uint8_t mac_id);
222
Govind Singhd7468a52016-03-09 14:32:57 +0530223QDF_STATUS (*send_resume_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530224 uint8_t mac_id);
225
Govind Singhd7468a52016-03-09 14:32:57 +0530226QDF_STATUS (*send_wow_enable_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530227 struct wow_cmd_params *param,
228 uint8_t mac_id);
229
Govind Singhd7468a52016-03-09 14:32:57 +0530230QDF_STATUS (*send_set_ap_ps_param_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530231 uint8_t *peer_addr,
232 struct ap_ps_params *param);
233
Govind Singhd7468a52016-03-09 14:32:57 +0530234QDF_STATUS (*send_set_sta_ps_param_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530235 struct sta_ps_params *param);
236
Govind Singhd7468a52016-03-09 14:32:57 +0530237QDF_STATUS (*send_crash_inject_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530238 struct crash_inject *param);
239
Govind Singhd7468a52016-03-09 14:32:57 +0530240QDF_STATUS
Govind Singh3ddda1f2016-03-09 11:34:12 +0530241(*send_dbglog_cmd)(wmi_unified_t wmi_handle,
242 struct dbglog_params *dbglog_param);
243
Govind Singhd7468a52016-03-09 14:32:57 +0530244QDF_STATUS (*send_vdev_set_param_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530245 struct vdev_set_params *param);
246
Govind Singhd7468a52016-03-09 14:32:57 +0530247QDF_STATUS (*send_stats_request_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530248 uint8_t macaddr[IEEE80211_ADDR_LEN],
249 struct stats_request_params *param);
250
Govind Singhfa201d92016-06-08 19:40:11 +0530251#ifdef CONFIG_WIN
Govind Singh89727882016-04-15 13:58:27 +0530252QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
253 WMI_HOST_PKTLOG_EVENT PKTLOG_EVENT);
254#else
Govind Singhd7468a52016-03-09 14:32:57 +0530255QDF_STATUS (*send_packet_log_enable_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530256 uint8_t macaddr[IEEE80211_ADDR_LEN],
257 struct packet_enable_params *param);
Govind Singh89727882016-04-15 13:58:27 +0530258#endif
259
260QDF_STATUS (*send_packet_log_disable_cmd)(wmi_unified_t wmi_handle);
Govind Singh3ddda1f2016-03-09 11:34:12 +0530261
Govind Singhd7468a52016-03-09 14:32:57 +0530262QDF_STATUS (*send_beacon_send_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530263 struct beacon_params *param);
264
Govind Singh89727882016-04-15 13:58:27 +0530265QDF_STATUS (*send_beacon_tmpl_send_cmd)(wmi_unified_t wmi_handle,
266 struct beacon_tmpl_params *param);
267
Govind Singhd7468a52016-03-09 14:32:57 +0530268QDF_STATUS (*send_peer_assoc_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530269 struct peer_assoc_params *param);
270
Govind Singhd7468a52016-03-09 14:32:57 +0530271QDF_STATUS (*send_scan_start_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530272 struct scan_start_params *param);
273
Govind Singhd7468a52016-03-09 14:32:57 +0530274QDF_STATUS (*send_scan_stop_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530275 struct scan_stop_params *param);
276
Govind Singhd7468a52016-03-09 14:32:57 +0530277QDF_STATUS (*send_scan_chan_list_cmd)(wmi_unified_t wmi_handle,
Govind Singh3ddda1f2016-03-09 11:34:12 +0530278 struct scan_chan_list_params *param);
Govind Singh50988cc2016-02-26 18:09:36 +0530279
Govind Singhd7468a52016-03-09 14:32:57 +0530280QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530281 struct wmi_mgmt_params *param);
282
Govind Singhd7468a52016-03-09 14:32:57 +0530283QDF_STATUS (*send_modem_power_state_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530284 uint32_t param_value);
285
Govind Singhd7468a52016-03-09 14:32:57 +0530286QDF_STATUS (*send_set_sta_ps_mode_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530287 uint32_t vdev_id, uint8_t val);
288
Govind Singhd7468a52016-03-09 14:32:57 +0530289QDF_STATUS (*send_get_temperature_cmd)(wmi_unified_t wmi_handle);
Govind Singh50988cc2016-02-26 18:09:36 +0530290
Govind Singhd7468a52016-03-09 14:32:57 +0530291QDF_STATUS (*send_set_p2pgo_oppps_req_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530292 struct p2p_ps_params *oppps);
293
Govind Singhd7468a52016-03-09 14:32:57 +0530294QDF_STATUS (*send_set_p2pgo_noa_req_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530295 struct p2p_ps_params *noa);
296
Govind Singhd7468a52016-03-09 14:32:57 +0530297QDF_STATUS (*send_set_smps_params_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530298 uint8_t vdev_id,
299 int value);
Govind Singh50988cc2016-02-26 18:09:36 +0530300
Govind Singhd7468a52016-03-09 14:32:57 +0530301QDF_STATUS (*send_set_mimops_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530302 uint8_t vdev_id, int value);
303
Govind Singhd7468a52016-03-09 14:32:57 +0530304QDF_STATUS (*send_set_sta_uapsd_auto_trig_cmd)(wmi_unified_t wmi_handle,
Govind Singh50988cc2016-02-26 18:09:36 +0530305 struct sta_uapsd_trig_params *param);
Govind Singhe7b800c2016-03-01 15:30:53 +0530306
Govind Singhd7468a52016-03-09 14:32:57 +0530307QDF_STATUS (*send_ocb_set_utc_time_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530308 struct ocb_utc_param *utc);
309
Govind Singhd7468a52016-03-09 14:32:57 +0530310QDF_STATUS (*send_ocb_get_tsf_timer_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530311 uint8_t vdev_id);
312
Govind Singhd7468a52016-03-09 14:32:57 +0530313QDF_STATUS (*send_ocb_start_timing_advert_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530314 struct ocb_timing_advert_param *timing_advert);
315
Govind Singhd7468a52016-03-09 14:32:57 +0530316QDF_STATUS (*send_ocb_stop_timing_advert_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530317 struct ocb_timing_advert_param *timing_advert);
318
Govind Singhd7468a52016-03-09 14:32:57 +0530319QDF_STATUS (*send_dcc_get_stats_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530320 struct dcc_get_stats_param *get_stats_param);
321
Govind Singhd7468a52016-03-09 14:32:57 +0530322QDF_STATUS (*send_dcc_clear_stats_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530323 uint32_t vdev_id, uint32_t dcc_stats_bitmap);
324
Govind Singhd7468a52016-03-09 14:32:57 +0530325QDF_STATUS (*send_dcc_update_ndl_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530326 struct dcc_update_ndl_param *update_ndl_param);
327
Govind Singhd7468a52016-03-09 14:32:57 +0530328QDF_STATUS (*send_ocb_set_config_cmd)(wmi_unified_t wmi_handle,
Govind Singhe7b800c2016-03-01 15:30:53 +0530329 struct ocb_config_param *config, uint32_t *ch_mhz);
Govind Singhae855362016-03-07 14:24:22 +0530330
Govind Singhd7468a52016-03-09 14:32:57 +0530331QDF_STATUS (*send_lro_config_cmd)(wmi_unified_t wmi_handle,
Govind Singh9bad0002016-03-01 15:54:59 +0530332 struct wmi_lro_config_cmd_t *wmi_lro_cmd);
333
Govind Singhd7468a52016-03-09 14:32:57 +0530334QDF_STATUS (*send_set_thermal_mgmt_cmd)(wmi_unified_t wmi_handle,
Govind Singh9bad0002016-03-01 15:54:59 +0530335 struct thermal_cmd_params *thermal_info);
336
Poddar, Siddarth794b9962016-04-28 15:49:11 +0530337QDF_STATUS (*send_peer_rate_report_cmd)(wmi_unified_t wmi_handle,
338 struct wmi_peer_rate_report_params *rate_report_params);
339
Govind Singhd7468a52016-03-09 14:32:57 +0530340QDF_STATUS (*send_set_mcc_channel_time_quota_cmd)
Govind Singh9bad0002016-03-01 15:54:59 +0530341 (wmi_unified_t wmi_handle,
342 uint32_t adapter_1_chan_freq,
343 uint32_t adapter_1_quota, uint32_t adapter_2_chan_freq);
344
Govind Singhd7468a52016-03-09 14:32:57 +0530345QDF_STATUS (*send_set_mcc_channel_time_latency_cmd)
Govind Singh9bad0002016-03-01 15:54:59 +0530346 (wmi_unified_t wmi_handle,
347 uint32_t mcc_channel_freq, uint32_t mcc_channel_time_latency);
348
Govind Singhd7468a52016-03-09 14:32:57 +0530349QDF_STATUS (*send_set_enable_disable_mcc_adaptive_scheduler_cmd)(
Govind Singh608e8892016-04-16 19:24:23 -0700350 wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
351 uint32_t pdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530352
Govind Singhd7468a52016-03-09 14:32:57 +0530353QDF_STATUS (*send_p2p_go_set_beacon_ie_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530354 A_UINT32 vdev_id, uint8_t *p2p_ie);
355
Govind Singhd7468a52016-03-09 14:32:57 +0530356QDF_STATUS (*send_probe_rsp_tmpl_send_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530357 uint8_t vdev_id,
358 struct wmi_probe_resp_params *probe_rsp_info,
359 uint8_t *frm);
360
Himanshu Agarwal9efd9bf2016-03-09 18:49:18 +0530361QDF_STATUS (*send_setup_install_key_cmd)(wmi_unified_t wmi_handle,
362 struct set_key_params *key_params);
363
Govind Singhd7468a52016-03-09 14:32:57 +0530364QDF_STATUS (*send_vdev_set_gtx_cfg_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530365 uint32_t if_id,
366 struct wmi_gtx_config *gtx_info);
367
Govind Singhd7468a52016-03-09 14:32:57 +0530368QDF_STATUS (*send_set_sta_keep_alive_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530369 struct sta_params *params);
370
Govind Singhd7468a52016-03-09 14:32:57 +0530371QDF_STATUS (*send_set_sta_sa_query_param_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530372 uint8_t vdev_id, uint32_t max_retries,
373 uint32_t retry_interval);
Govind Singhae855362016-03-07 14:24:22 +0530374
Govind Singhd7468a52016-03-09 14:32:57 +0530375QDF_STATUS (*send_set_gateway_params_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530376 struct gateway_update_req_param *req);
377
Govind Singhd7468a52016-03-09 14:32:57 +0530378QDF_STATUS (*send_set_rssi_monitoring_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530379 struct rssi_monitor_param *req);
380
Govind Singhd7468a52016-03-09 14:32:57 +0530381QDF_STATUS (*send_scan_probe_setoui_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530382 struct scan_mac_oui *psetoui);
383
Govind Singhd7468a52016-03-09 14:32:57 +0530384QDF_STATUS (*send_reset_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530385 struct wifi_passpoint_req_param *req);
Himanshu Agarwal5f2d0482016-03-09 15:25:44 +0530386
387QDF_STATUS (*send_roam_scan_offload_rssi_thresh_cmd)(wmi_unified_t wmi_handle,
388 struct roam_offload_scan_rssi_params *roam_req);
389
390QDF_STATUS (*send_roam_scan_filter_cmd)(wmi_unified_t wmi_handle,
391 struct roam_scan_filter_params *roam_req);
392
Govind Singhd7468a52016-03-09 14:32:57 +0530393QDF_STATUS (*send_set_passpoint_network_list_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530394 struct wifi_passpoint_req_param *req);
395
Govind Singhd7468a52016-03-09 14:32:57 +0530396QDF_STATUS (*send_set_epno_network_list_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530397 struct wifi_enhanched_pno_params *req);
398
Govind Singhd7468a52016-03-09 14:32:57 +0530399QDF_STATUS (*send_extscan_get_capabilities_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530400 struct extscan_capabilities_params *pgetcapab);
401
Govind Singhd7468a52016-03-09 14:32:57 +0530402QDF_STATUS (*send_extscan_get_cached_results_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530403 struct extscan_cached_result_params *pcached_results);
404
Govind Singhd7468a52016-03-09 14:32:57 +0530405QDF_STATUS (*send_extscan_stop_change_monitor_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530406 struct extscan_capabilities_reset_params *reset_req);
407
Govind Singhd7468a52016-03-09 14:32:57 +0530408QDF_STATUS (*send_extscan_start_change_monitor_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530409 struct extscan_set_sig_changereq_params *
410 psigchange);
411
Govind Singhd7468a52016-03-09 14:32:57 +0530412QDF_STATUS (*send_extscan_stop_hotlist_monitor_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530413 struct extscan_bssid_hotlist_reset_params *photlist_reset);
414
Govind Singhd7468a52016-03-09 14:32:57 +0530415QDF_STATUS (*send_stop_extscan_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530416 struct extscan_stop_req_params *pstopcmd);
417
Govind Singhd7468a52016-03-09 14:32:57 +0530418QDF_STATUS (*send_start_extscan_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530419 struct wifi_scan_cmd_req_params *pstart);
420
Govind Singhd7468a52016-03-09 14:32:57 +0530421QDF_STATUS (*send_plm_stop_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530422 const struct plm_req_params *plm);
423
Govind Singh89727882016-04-15 13:58:27 +0530424
Govind Singhd7468a52016-03-09 14:32:57 +0530425QDF_STATUS (*send_plm_start_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530426 const struct plm_req_params *plm,
427 uint32_t *gchannel_list);
428
Govind Singhd7468a52016-03-09 14:32:57 +0530429QDF_STATUS (*send_csa_offload_enable_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530430 uint8_t vdev_id);
431
Govind Singhd7468a52016-03-09 14:32:57 +0530432QDF_STATUS (*send_pno_stop_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
Govind Singhae855362016-03-07 14:24:22 +0530433
Govind Singh89727882016-04-15 13:58:27 +0530434#ifdef FEATURE_WLAN_SCAN_PNO
Govind Singhd7468a52016-03-09 14:32:57 +0530435QDF_STATUS (*send_pno_start_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530436 struct pno_scan_req_params *pno,
437 uint32_t *gchannel_freq_list);
Govind Singh89727882016-04-15 13:58:27 +0530438#endif
Govind Singhae855362016-03-07 14:24:22 +0530439
Govind Singhd7468a52016-03-09 14:32:57 +0530440QDF_STATUS (*send_ipa_offload_control_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530441 struct ipa_offload_control_params *ipa_offload);
442
Govind Singhd7468a52016-03-09 14:32:57 +0530443QDF_STATUS (*send_set_ric_req_cmd)(wmi_unified_t wmi_handle, void *msg,
Govind Singhae855362016-03-07 14:24:22 +0530444 uint8_t is_add_ts);
445
Govind Singhd7468a52016-03-09 14:32:57 +0530446QDF_STATUS (*send_process_ll_stats_clear_cmd)
Govind Singhae855362016-03-07 14:24:22 +0530447 (wmi_unified_t wmi_handle,
448 const struct ll_stats_clear_params *clear_req,
449 uint8_t addr[IEEE80211_ADDR_LEN]);
450
Govind Singhd7468a52016-03-09 14:32:57 +0530451QDF_STATUS (*send_process_ll_stats_set_cmd)
Govind Singhae855362016-03-07 14:24:22 +0530452 (wmi_unified_t wmi_handle, const struct ll_stats_set_params *set_req);
453
Govind Singhd7468a52016-03-09 14:32:57 +0530454QDF_STATUS (*send_process_ll_stats_get_cmd)
Govind Singhae855362016-03-07 14:24:22 +0530455 (wmi_unified_t wmi_handle, const struct ll_stats_get_params *get_req,
456 uint8_t addr[IEEE80211_ADDR_LEN]);
457
Govind Singhd7468a52016-03-09 14:32:57 +0530458QDF_STATUS (*send_get_stats_cmd)(wmi_unified_t wmi_handle,
Govind Singhae855362016-03-07 14:24:22 +0530459 struct pe_stats_req *get_stats_param,
460 uint8_t addr[IEEE80211_ADDR_LEN]);
Govind Singh229bc0d2016-03-07 15:33:31 +0530461
Govind Singhd7468a52016-03-09 14:32:57 +0530462QDF_STATUS (*send_snr_request_cmd)(wmi_unified_t wmi_handle);
Govind Singh229bc0d2016-03-07 15:33:31 +0530463
Govind Singhd7468a52016-03-09 14:32:57 +0530464QDF_STATUS (*send_snr_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530465
Govind Singhd7468a52016-03-09 14:32:57 +0530466QDF_STATUS (*send_link_status_req_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530467 struct link_status_params *link_status);
Govind Singhfa201d92016-06-08 19:40:11 +0530468#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530469QDF_STATUS (*send_lphb_config_hbenable_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530470 wmi_hb_set_enable_cmd_fixed_param *params);
471
Govind Singhd7468a52016-03-09 14:32:57 +0530472QDF_STATUS (*send_lphb_config_tcp_params_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530473 wmi_hb_set_tcp_params_cmd_fixed_param *lphb_conf_req);
474
Govind Singhd7468a52016-03-09 14:32:57 +0530475QDF_STATUS (*send_lphb_config_tcp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530476 wmi_hb_set_tcp_pkt_filter_cmd_fixed_param *g_hb_tcp_filter_fp);
477
Govind Singhd7468a52016-03-09 14:32:57 +0530478QDF_STATUS (*send_lphb_config_udp_params_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530479 wmi_hb_set_udp_params_cmd_fixed_param *lphb_conf_req);
480
Govind Singhd7468a52016-03-09 14:32:57 +0530481QDF_STATUS (*send_lphb_config_udp_pkt_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530482 wmi_hb_set_udp_pkt_filter_cmd_fixed_param *lphb_conf_req);
483
Govind Singhd7468a52016-03-09 14:32:57 +0530484QDF_STATUS (*send_process_dhcp_ind_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530485 wmi_peer_set_param_cmd_fixed_param *ta_dhcp_ind);
486
Govind Singhd7468a52016-03-09 14:32:57 +0530487QDF_STATUS (*send_get_link_speed_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530488 wmi_mac_addr peer_macaddr);
489
Govind Singhd7468a52016-03-09 14:32:57 +0530490QDF_STATUS (*send_egap_conf_params_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530491 wmi_ap_ps_egap_param_cmd_fixed_param *egap_params);
Govind Singhfa201d92016-06-08 19:40:11 +0530492
493QDF_STATUS (*send_process_update_edca_param_cmd)(wmi_unified_t wmi_handle,
494 uint8_t vdev_id,
495 wmi_wmm_vparams gwmm_param[WMI_MAX_NUM_AC]);
496
497QDF_STATUS (*send_bcn_buf_ll_cmd)(wmi_unified_t wmi_handle,
498 wmi_bcn_send_from_host_cmd_fixed_param * param);
499
500QDF_STATUS (*send_roam_scan_offload_mode_cmd)(wmi_unified_t wmi_handle,
501 wmi_start_scan_cmd_fixed_param * scan_cmd_fp,
502 struct roam_offload_scan_params *roam_req);
503
504QDF_STATUS (*send_roam_scan_offload_ap_profile_cmd)(wmi_unified_t wmi_handle,
505 wmi_ap_profile * ap_profile_p,
506 uint32_t vdev_id);
507
508QDF_STATUS (*send_pktlog_wmi_send_cmd)(wmi_unified_t wmi_handle,
509 WMI_PKTLOG_EVENT pktlog_event,
Nirav Shah9d1f1ac2016-07-27 19:06:13 +0530510 WMI_CMD_ID cmd_id, uint8_t user_triggered);
Govind Singh89727882016-04-15 13:58:27 +0530511#endif
Govind Singh229bc0d2016-03-07 15:33:31 +0530512
Govind Singhd7468a52016-03-09 14:32:57 +0530513QDF_STATUS (*send_fw_profiling_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530514 uint32_t cmd, uint32_t value1, uint32_t value2);
515
Govind Singhd7468a52016-03-09 14:32:57 +0530516QDF_STATUS (*send_wow_sta_ra_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530517 uint8_t vdev_id, uint8_t default_pattern,
518 uint16_t rate_limit_interval);
519
Govind Singhd7468a52016-03-09 14:32:57 +0530520QDF_STATUS (*send_nat_keepalive_en_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id);
Govind Singh229bc0d2016-03-07 15:33:31 +0530521
Govind Singhd7468a52016-03-09 14:32:57 +0530522QDF_STATUS (*send_start_oem_data_cmd)(wmi_unified_t wmi_handle,
Krishna Kumaar Natarajan7a59ca02016-07-21 15:02:44 -0700523 uint32_t data_len,
Govind Singh229bc0d2016-03-07 15:33:31 +0530524 uint8_t *data);
525
Govind Singhd7468a52016-03-09 14:32:57 +0530526QDF_STATUS
Govind Singh229bc0d2016-03-07 15:33:31 +0530527(*send_dfs_phyerr_filter_offload_en_cmd)(wmi_unified_t wmi_handle,
528 bool dfs_phyerr_filter_offload);
Govind Singh229bc0d2016-03-07 15:33:31 +0530529
Govind Singhd7468a52016-03-09 14:32:57 +0530530QDF_STATUS (*send_add_wow_wakeup_event_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530531 uint32_t vdev_id,
532 uint32_t bitmap,
533 bool enable);
534
Govind Singhd7468a52016-03-09 14:32:57 +0530535QDF_STATUS (*send_wow_patterns_to_fw_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530536 uint8_t vdev_id, uint8_t ptrn_id,
537 const uint8_t *ptrn, uint8_t ptrn_len,
538 uint8_t ptrn_offset, const uint8_t *mask,
539 uint8_t mask_len, bool user,
540 uint8_t default_patterns);
541
Govind Singhd7468a52016-03-09 14:32:57 +0530542QDF_STATUS (*send_wow_delete_pattern_cmd)(wmi_unified_t wmi_handle, uint8_t ptrn_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530543 uint8_t vdev_id);
544
Govind Singhd7468a52016-03-09 14:32:57 +0530545QDF_STATUS (*send_host_wakeup_ind_to_fw_cmd)(wmi_unified_t wmi_handle);
Govind Singh229bc0d2016-03-07 15:33:31 +0530546
Govind Singhd7468a52016-03-09 14:32:57 +0530547QDF_STATUS (*send_del_ts_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530548 uint8_t ac);
549
Govind Singhd7468a52016-03-09 14:32:57 +0530550QDF_STATUS (*send_aggr_qos_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530551 struct aggr_add_ts_param *aggr_qos_rsp_msg);
552
Govind Singhd7468a52016-03-09 14:32:57 +0530553QDF_STATUS (*send_add_ts_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530554 struct add_ts_param *msg);
555
Govind Singhd7468a52016-03-09 14:32:57 +0530556QDF_STATUS (*send_enable_disable_packet_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530557 uint8_t vdev_id, bool enable);
558
Govind Singhd7468a52016-03-09 14:32:57 +0530559QDF_STATUS (*send_config_packet_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530560 uint8_t vdev_id, struct rcv_pkt_filter_config *rcv_filter_param,
561 uint8_t filter_id, bool enable);
562
Govind Singhd7468a52016-03-09 14:32:57 +0530563QDF_STATUS (*send_add_clear_mcbc_filter_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530564 uint8_t vdev_id,
Govind Singhd7468a52016-03-09 14:32:57 +0530565 struct qdf_mac_addr multicast_addr,
Govind Singh229bc0d2016-03-07 15:33:31 +0530566 bool clearList);
567
Govind Singhd7468a52016-03-09 14:32:57 +0530568QDF_STATUS (*send_gtk_offload_cmd)(wmi_unified_t wmi_handle, uint8_t vdev_id,
Govind Singh229bc0d2016-03-07 15:33:31 +0530569 struct gtk_offload_params *params,
570 bool enable_offload,
571 uint32_t gtk_offload_opcode);
572
Govind Singhd7468a52016-03-09 14:32:57 +0530573QDF_STATUS (*send_process_gtk_offload_getinfo_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530574 uint8_t vdev_id,
575 uint64_t offload_req_opcode);
576
Govind Singhd7468a52016-03-09 14:32:57 +0530577QDF_STATUS (*send_process_add_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530578 struct periodic_tx_pattern *
579 pAddPeriodicTxPtrnParams,
580 uint8_t vdev_id);
581
Govind Singhd7468a52016-03-09 14:32:57 +0530582QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530583 uint8_t vdev_id,
584 uint8_t pattern_id);
585
Govind Singhd7468a52016-03-09 14:32:57 +0530586QDF_STATUS (*send_stats_ext_req_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530587 struct stats_ext_params *preq);
588
Govind Singhd7468a52016-03-09 14:32:57 +0530589QDF_STATUS (*send_enable_ext_wow_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530590 struct ext_wow_params *params);
591
Govind Singhd7468a52016-03-09 14:32:57 +0530592QDF_STATUS (*send_set_app_type2_params_in_fw_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530593 struct app_type2_params *appType2Params);
594
Govind Singhd7468a52016-03-09 14:32:57 +0530595QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530596 uint32_t timer_val);
597
Govind Singhd7468a52016-03-09 14:32:57 +0530598QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530599 struct nan_req_params *nan_req);
600
Govind Singhd7468a52016-03-09 14:32:57 +0530601QDF_STATUS (*send_process_dhcpserver_offload_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530602 struct dhcp_offload_info_params *pDhcpSrvOffloadInfo);
603
Govind Singhd7468a52016-03-09 14:32:57 +0530604QDF_STATUS (*send_process_ch_avoid_update_cmd)(wmi_unified_t wmi_handle);
Govind Singh229bc0d2016-03-07 15:33:31 +0530605
Govind Singhd7468a52016-03-09 14:32:57 +0530606QDF_STATUS (*send_regdomain_info_to_fw_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530607 uint32_t reg_dmn, uint16_t regdmn2G,
608 uint16_t regdmn5G, int8_t ctl2G,
609 int8_t ctl5G);
610
Govind Singhd7468a52016-03-09 14:32:57 +0530611QDF_STATUS (*send_set_tdls_offchan_mode_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530612 struct tdls_channel_switch_params *chan_switch_params);
613
Govind Singhd7468a52016-03-09 14:32:57 +0530614QDF_STATUS (*send_update_fw_tdls_state_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530615 void *tdls_param, uint8_t tdls_state);
616
Govind Singhd7468a52016-03-09 14:32:57 +0530617QDF_STATUS (*send_update_tdls_peer_state_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530618 struct tdls_peer_state_params *peerStateParams,
619 uint32_t *ch_mhz);
620
621
Govind Singhd7468a52016-03-09 14:32:57 +0530622QDF_STATUS (*send_process_fw_mem_dump_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530623 struct fw_dump_req_param *mem_dump_req);
624
Govind Singhd7468a52016-03-09 14:32:57 +0530625QDF_STATUS (*send_process_set_ie_info_cmd)(wmi_unified_t wmi_handle,
Govind Singh229bc0d2016-03-07 15:33:31 +0530626 struct vdev_ie_info_param *ie_info);
Govind Singh71ee2d72016-03-07 16:30:32 +0530627
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530628#ifdef CONFIG_MCL
Govind Singhd7468a52016-03-09 14:32:57 +0530629QDF_STATUS (*send_init_cmd)(wmi_unified_t wmi_handle,
Govind Singh71ee2d72016-03-07 16:30:32 +0530630 wmi_resource_config *res_cfg,
631 uint8_t num_mem_chunks, struct wmi_host_mem_chunk *mem_chunk,
632 bool action);
Himanshu Agarwal56c292f2016-07-19 15:41:51 +0530633#endif
Govind Singh71ee2d72016-03-07 16:30:32 +0530634
Govind Singhd7468a52016-03-09 14:32:57 +0530635QDF_STATUS (*save_fw_version_cmd)(wmi_unified_t wmi_handle, void *evt_buf);
Govind Singh71ee2d72016-03-07 16:30:32 +0530636
Govind Singhd7468a52016-03-09 14:32:57 +0530637QDF_STATUS (*check_and_update_fw_version_cmd)(wmi_unified_t wmi_hdl, void *ev);
Govind Singh71ee2d72016-03-07 16:30:32 +0530638
Govind Singhd7468a52016-03-09 14:32:57 +0530639QDF_STATUS (*send_saved_init_cmd)(wmi_unified_t wmi_handle);
Govind Singh2ae94372016-03-07 16:45:38 +0530640
Govind Singhd7468a52016-03-09 14:32:57 +0530641QDF_STATUS (*send_set_base_macaddr_indicate_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530642 uint8_t *custom_addr);
643
Govind Singhd7468a52016-03-09 14:32:57 +0530644QDF_STATUS (*send_log_supported_evt_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530645 uint8_t *event,
646 uint32_t len);
647
Govind Singhd7468a52016-03-09 14:32:57 +0530648QDF_STATUS (*send_enable_specific_fw_logs_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530649 struct wmi_wifi_start_log *start_log);
650
Govind Singhd7468a52016-03-09 14:32:57 +0530651QDF_STATUS (*send_flush_logs_to_fw_cmd)(wmi_unified_t wmi_handle);
Govind Singh2ae94372016-03-07 16:45:38 +0530652
Manishekar Chandrasekaranb8c59382016-04-21 19:16:32 +0530653QDF_STATUS (*send_pdev_set_pcl_cmd)(wmi_unified_t wmi_handle,
654 struct wmi_pcl_chan_weights *msg);
Govind Singh2ae94372016-03-07 16:45:38 +0530655
Manishekar Chandrasekaran68430d32016-04-27 12:29:16 +0530656QDF_STATUS (*send_pdev_set_hw_mode_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530657 uint32_t hw_mode_index);
658
Manishekar Chandrasekaran81d7aaa2016-04-27 12:52:51 +0530659QDF_STATUS (*send_pdev_set_dual_mac_config_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530660 struct wmi_dual_mac_config *msg);
661
Govind Singhd7468a52016-03-09 14:32:57 +0530662QDF_STATUS (*send_enable_arp_ns_offload_cmd)(wmi_unified_t wmi_handle,
Mukul Sharmaac755cd2016-09-07 20:31:47 +0530663 struct host_offload_req_param *arp_offload_req,
664 struct host_offload_req_param *ns_offload_req,
665 bool arp_only,
Govind Singh2ae94372016-03-07 16:45:38 +0530666 uint8_t vdev_id);
667
Govind Singhd7468a52016-03-09 14:32:57 +0530668QDF_STATUS (*send_set_led_flashing_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530669 struct flashing_req_params *flashing);
670
Govind Singhd7468a52016-03-09 14:32:57 +0530671QDF_STATUS (*send_app_type1_params_in_fw_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530672 struct app_type1_params *app_type1_params);
673
Govind Singhd7468a52016-03-09 14:32:57 +0530674QDF_STATUS (*send_set_ssid_hotlist_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530675 struct ssid_hotlist_request_params *request);
676
Govind Singhd7468a52016-03-09 14:32:57 +0530677QDF_STATUS (*send_process_roam_synch_complete_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530678 uint8_t vdev_id);
679
Govind Singhd7468a52016-03-09 14:32:57 +0530680QDF_STATUS (*send_unit_test_cmd)(wmi_unified_t wmi_handle,
Anurag Chouhan4d41be72016-07-22 20:19:54 +0530681 struct wmi_unit_test_cmd *wmi_utest);
Govind Singh2ae94372016-03-07 16:45:38 +0530682
Govind Singhd7468a52016-03-09 14:32:57 +0530683QDF_STATUS (*send_roam_invoke_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530684 struct wmi_roam_invoke_cmd *roaminvoke,
685 uint32_t ch_hz);
686
Govind Singhd7468a52016-03-09 14:32:57 +0530687QDF_STATUS (*send_roam_scan_offload_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530688 uint32_t command, uint32_t vdev_id);
Govind Singh2ae94372016-03-07 16:45:38 +0530689
Govind Singhd7468a52016-03-09 14:32:57 +0530690QDF_STATUS (*send_roam_scan_offload_scan_period_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530691 uint32_t scan_period,
692 uint32_t scan_age,
693 uint32_t vdev_id);
694
Govind Singhd7468a52016-03-09 14:32:57 +0530695QDF_STATUS (*send_roam_scan_offload_chan_list_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530696 uint8_t chan_count,
Varun Reddy Yeturub47fa402016-07-07 17:42:49 -0700697 uint32_t *chan_list,
Govind Singh2ae94372016-03-07 16:45:38 +0530698 uint8_t list_type, uint32_t vdev_id);
699
Govind Singhd7468a52016-03-09 14:32:57 +0530700QDF_STATUS (*send_roam_scan_offload_rssi_change_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530701 uint32_t vdev_id,
702 int32_t rssi_change_thresh,
703 uint32_t bcn_rssi_weight,
704 uint32_t hirssi_delay_btw_scans);
705
Govind Singhd7468a52016-03-09 14:32:57 +0530706QDF_STATUS (*send_get_buf_extscan_hotlist_cmd)(wmi_unified_t wmi_handle,
Govind Singh2ae94372016-03-07 16:45:38 +0530707 struct ext_scan_setbssi_hotlist_params *
708 photlist, int *buf_len);
Govind Singh89727882016-04-15 13:58:27 +0530709
710QDF_STATUS (*send_pdev_get_tpc_config_cmd)(wmi_unified_t wmi_handle,
711 uint32_t param);
712
Sathish Kumar50232d72016-08-09 16:50:46 +0530713QDF_STATUS (*send_set_bwf_cmd)(wmi_unified_t wmi_handle,
714 struct set_bwf_params *param);
715
Govind Singh89727882016-04-15 13:58:27 +0530716QDF_STATUS (*send_set_atf_cmd)(wmi_unified_t wmi_handle,
717 struct set_atf_params *param);
718
719QDF_STATUS (*send_pdev_fips_cmd)(wmi_unified_t wmi_handle,
720 struct fips_params *param);
721
722QDF_STATUS (*send_wlan_profile_enable_cmd)(wmi_unified_t wmi_handle,
723 struct wlan_profile_params *param);
724
725QDF_STATUS (*send_wlan_profile_trigger_cmd)(wmi_unified_t wmi_handle,
726 struct wlan_profile_params *param);
727
728QDF_STATUS (*send_pdev_set_chan_cmd)(wmi_unified_t wmi_handle,
729 struct channel_param *param);
730
731QDF_STATUS (*send_set_ht_ie_cmd)(wmi_unified_t wmi_handle,
732 struct ht_ie_params *param);
733
734QDF_STATUS (*send_set_vht_ie_cmd)(wmi_unified_t wmi_handle,
735 struct vht_ie_params *param);
736
737QDF_STATUS (*send_wmm_update_cmd)(wmi_unified_t wmi_handle,
738 struct wmm_update_params *param);
739
740QDF_STATUS (*send_set_ant_switch_tbl_cmd)(wmi_unified_t wmi_handle,
741 struct ant_switch_tbl_params *param);
742
743QDF_STATUS (*send_set_ratepwr_table_cmd)(wmi_unified_t wmi_handle,
744 struct ratepwr_table_params *param);
745
746QDF_STATUS (*send_get_ratepwr_table_cmd)(wmi_unified_t wmi_handle);
747
748QDF_STATUS (*send_set_ctl_table_cmd)(wmi_unified_t wmi_handle,
749 struct ctl_table_params *param);
750
751QDF_STATUS (*send_set_mimogain_table_cmd)(wmi_unified_t wmi_handle,
752 struct mimogain_table_params *param);
753
754QDF_STATUS (*send_set_ratepwr_chainmsk_cmd)(wmi_unified_t wmi_handle,
755 struct ratepwr_chainmsk_params *param);
756
757QDF_STATUS (*send_set_macaddr_cmd)(wmi_unified_t wmi_handle,
758 struct macaddr_params *param);
759
760QDF_STATUS (*send_pdev_scan_start_cmd)(wmi_unified_t wmi_handle);
761
762QDF_STATUS (*send_pdev_scan_end_cmd)(wmi_unified_t wmi_handle);
763
764QDF_STATUS (*send_set_acparams_cmd)(wmi_unified_t wmi_handle,
765 struct acparams_params *param);
766
767QDF_STATUS (*send_set_vap_dscp_tid_map_cmd)(wmi_unified_t wmi_handle,
768 struct vap_dscp_tid_map_params *param);
769
770QDF_STATUS (*send_proxy_ast_reserve_cmd)(wmi_unified_t wmi_handle,
771 struct proxy_ast_reserve_params *param);
772
773QDF_STATUS (*send_pdev_qvit_cmd)(wmi_unified_t wmi_handle,
774 struct pdev_qvit_params *param);
775
776QDF_STATUS (*send_mcast_group_update_cmd)(wmi_unified_t wmi_handle,
777 struct mcast_group_update_params *param);
778
779QDF_STATUS (*send_peer_add_wds_entry_cmd)(wmi_unified_t wmi_handle,
780 struct peer_add_wds_entry_params *param);
781
782QDF_STATUS (*send_peer_del_wds_entry_cmd)(wmi_unified_t wmi_handle,
783 struct peer_del_wds_entry_params *param);
784
785QDF_STATUS (*send_peer_update_wds_entry_cmd)(wmi_unified_t wmi_handle,
786 struct peer_update_wds_entry_params *param);
787
788QDF_STATUS (*send_phyerr_enable_cmd)(wmi_unified_t wmi_handle);
789
790QDF_STATUS (*send_phyerr_disable_cmd)(wmi_unified_t wmi_handle);
791
792QDF_STATUS (*send_smart_ant_enable_cmd)(wmi_unified_t wmi_handle,
793 struct smart_ant_enable_params *param);
794
795QDF_STATUS (*send_smart_ant_set_rx_ant_cmd)(wmi_unified_t wmi_handle,
796 struct smart_ant_rx_ant_params *param);
797
798QDF_STATUS (*send_smart_ant_set_tx_ant_cmd)(wmi_unified_t wmi_handle,
799 uint8_t macaddr[IEEE80211_ADDR_LEN],
800 struct smart_ant_tx_ant_params *param);
801
802QDF_STATUS (*send_smart_ant_set_training_info_cmd)(wmi_unified_t wmi_handle,
803 uint8_t macaddr[IEEE80211_ADDR_LEN],
804 struct smart_ant_training_info_params *param);
805
806QDF_STATUS (*send_smart_ant_set_node_config_cmd)(wmi_unified_t wmi_handle,
807 uint8_t macaddr[IEEE80211_ADDR_LEN],
808 struct smart_ant_node_config_params *param);
809
810QDF_STATUS (*send_smart_ant_enable_tx_feedback_cmd)(wmi_unified_t wmi_handle,
811 struct smart_ant_enable_tx_feedback_params *param);
812
813QDF_STATUS (*send_vdev_spectral_configure_cmd)(wmi_unified_t wmi_handle,
814 struct vdev_spectral_configure_params *param);
815
816QDF_STATUS (*send_vdev_spectral_enable_cmd)(wmi_unified_t wmi_handle,
817 struct vdev_spectral_enable_params *param);
818
819QDF_STATUS (*send_bss_chan_info_request_cmd)(wmi_unified_t wmi_handle,
820 struct bss_chan_info_request_params *param);
821
822QDF_STATUS (*send_thermal_mitigation_param_cmd)(wmi_unified_t wmi_handle,
823 struct thermal_mitigation_params *param);
824
825QDF_STATUS (*send_vdev_set_neighbour_rx_cmd)(wmi_unified_t wmi_handle,
826 uint8_t macaddr[IEEE80211_ADDR_LEN],
827 struct set_neighbour_rx_params *param);
828
829QDF_STATUS (*send_vdev_set_fwtest_param_cmd)(wmi_unified_t wmi_handle,
830 struct set_fwtest_params *param);
831
832QDF_STATUS (*send_vdev_config_ratemask_cmd)(wmi_unified_t wmi_handle,
833 struct config_ratemask_params *param);
834
835QDF_STATUS (*send_vdev_install_key_cmd)(wmi_unified_t wmi_handle,
836 uint8_t macaddr[IEEE80211_ADDR_LEN],
837 struct vdev_install_key_params *param);
838
839QDF_STATUS (*send_wow_wakeup_cmd)(wmi_unified_t wmi_handle);
840
841QDF_STATUS (*send_wow_add_wakeup_event_cmd)(wmi_unified_t wmi_handle,
842 struct wow_add_wakeup_params *param);
843
844QDF_STATUS (*send_wow_add_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
845 struct wow_add_wakeup_pattern_params *param);
846
847QDF_STATUS (*send_wow_remove_wakeup_pattern_cmd)(wmi_unified_t wmi_handle,
848 struct wow_remove_wakeup_pattern_params *param);
849
850QDF_STATUS (*send_pdev_set_regdomain_cmd)(wmi_unified_t wmi_handle,
851 struct pdev_set_regdomain_params *param);
852
853QDF_STATUS (*send_set_quiet_mode_cmd)(wmi_unified_t wmi_handle,
854 struct set_quiet_mode_params *param);
855
856QDF_STATUS (*send_set_beacon_filter_cmd)(wmi_unified_t wmi_handle,
857 struct set_beacon_filter_params *param);
858
859QDF_STATUS (*send_remove_beacon_filter_cmd)(wmi_unified_t wmi_handle,
860 struct remove_beacon_filter_params *param);
861/*
862QDF_STATUS (*send_mgmt_cmd)(wmi_unified_t wmi_handle,
863 uint8_t macaddr[IEEE80211_ADDR_LEN],
864 struct mgmt_params *param);
865 */
866
867QDF_STATUS (*send_addba_clearresponse_cmd)(wmi_unified_t wmi_handle,
868 uint8_t macaddr[IEEE80211_ADDR_LEN],
869 struct addba_clearresponse_params *param);
870
871QDF_STATUS (*send_addba_send_cmd)(wmi_unified_t wmi_handle,
872 uint8_t macaddr[IEEE80211_ADDR_LEN],
873 struct addba_send_params *param);
874
875QDF_STATUS (*send_delba_send_cmd)(wmi_unified_t wmi_handle,
876 uint8_t macaddr[IEEE80211_ADDR_LEN],
877 struct delba_send_params *param);
878
879QDF_STATUS (*send_addba_setresponse_cmd)(wmi_unified_t wmi_handle,
880 uint8_t macaddr[IEEE80211_ADDR_LEN],
881 struct addba_setresponse_params *param);
882
883QDF_STATUS (*send_singleamsdu_cmd)(wmi_unified_t wmi_handle,
884 uint8_t macaddr[IEEE80211_ADDR_LEN],
885 struct singleamsdu_params *param);
886
887QDF_STATUS (*send_set_qboost_param_cmd)(wmi_unified_t wmi_handle,
888 uint8_t macaddr[IEEE80211_ADDR_LEN],
889 struct set_qboost_params *param);
890
891QDF_STATUS (*send_mu_scan_cmd)(wmi_unified_t wmi_handle,
892 struct mu_scan_params *param);
893
894QDF_STATUS (*send_lteu_config_cmd)(wmi_unified_t wmi_handle,
895 struct lteu_config_params *param);
896
897QDF_STATUS (*send_set_ps_mode_cmd)(wmi_unified_t wmi_handle,
898 struct set_ps_mode_params *param);
899void (*save_service_bitmap)(wmi_unified_t wmi_handle,
900 void *evt_buf);
901bool (*is_service_enabled)(wmi_unified_t wmi_handle,
902 uint32_t service_id);
903QDF_STATUS (*get_target_cap_from_service_ready)(wmi_unified_t wmi_handle,
904 void *evt_buf, target_capability_info *ev);
905
906QDF_STATUS (*extract_fw_version)(wmi_unified_t wmi_handle,
907 void *ev, struct wmi_host_fw_ver *fw_ver);
908
909QDF_STATUS (*extract_fw_abi_version)(wmi_unified_t wmi_handle,
910 void *ev, struct wmi_host_fw_abi_ver *fw_ver);
911
912QDF_STATUS (*extract_hal_reg_cap)(wmi_unified_t wmi_handle, void *evt_buf,
913 TARGET_HAL_REG_CAPABILITIES *hal_reg_cap);
914
915host_mem_req * (*extract_host_mem_req)(wmi_unified_t wmi_handle,
916 void *evt_buf, uint8_t *num_entries);
917
918QDF_STATUS (*init_cmd_send)(wmi_unified_t wmi_handle,
919 target_resource_config *res_cfg,
920 uint8_t num_mem_chunks,
921 struct wmi_host_mem_chunk *mem_chunk);
922
923QDF_STATUS (*save_fw_version)(wmi_unified_t wmi_handle, void *evt_buf);
924uint32_t (*ready_extract_init_status)(wmi_unified_t wmi_hdl, void *ev);
925QDF_STATUS (*ready_extract_mac_addr)(wmi_unified_t wmi_hdl, void *ev,
926 uint8_t *macaddr);
927QDF_STATUS (*check_and_update_fw_version)(wmi_unified_t wmi_hdl, void *ev);
928uint8_t* (*extract_dbglog_data_len)(wmi_unified_t wmi_handle, void *evt_buf,
929 uint16_t *len);
930QDF_STATUS (*send_ext_resource_config)(wmi_unified_t wmi_handle,
931 wmi_host_ext_resource_config *ext_cfg);
932
933QDF_STATUS (*send_nf_dbr_dbm_info_get_cmd)(wmi_unified_t wmi_handle);
934
935QDF_STATUS (*send_packet_power_info_get_cmd)(wmi_unified_t wmi_handle,
936 struct packet_power_info_params *param);
937
938QDF_STATUS (*send_gpio_config_cmd)(wmi_unified_t wmi_handle,
939 struct gpio_config_params *param);
940
941QDF_STATUS (*send_gpio_output_cmd)(wmi_unified_t wmi_handle,
942 struct gpio_output_params *param);
943
944QDF_STATUS (*send_rtt_meas_req_test_cmd)(wmi_unified_t wmi_handle,
945 struct rtt_meas_req_test_params *param);
946
947QDF_STATUS (*send_rtt_meas_req_cmd)(wmi_unified_t wmi_handle,
948 struct rtt_meas_req_params *param);
949
950QDF_STATUS (*send_rtt_keepalive_req_cmd)(wmi_unified_t wmi_handle,
951 struct rtt_keepalive_req_params *param);
952
953QDF_STATUS (*send_lci_set_cmd)(wmi_unified_t wmi_handle,
954 struct lci_set_params *param);
955
956QDF_STATUS (*send_lcr_set_cmd)(wmi_unified_t wmi_handle,
957 struct lcr_set_params *param);
958
959QDF_STATUS (*send_periodic_chan_stats_config_cmd)(wmi_unified_t wmi_handle,
960 struct periodic_chan_stats_params *param);
961
962QDF_STATUS
963(*send_atf_peer_request_cmd)(wmi_unified_t wmi_handle,
964 struct atf_peer_request_params *param);
965
966QDF_STATUS
967(*send_set_atf_grouping_cmd)(wmi_unified_t wmi_handle,
968 struct atf_grouping_params *param);
969
970QDF_STATUS (*extract_wds_addr_event)(wmi_unified_t wmi_handle,
971 void *evt_buf, uint16_t len, wds_addr_event_t *wds_ev);
972
973QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
974 void *evt_buf, uint32_t *interference_type);
975
976QDF_STATUS (*extract_dcs_cw_int)(wmi_unified_t wmi_handle, void *evt_buf,
977 wmi_host_ath_dcs_cw_int *cw_int);
978
979QDF_STATUS (*extract_dcs_im_tgt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
980 wmi_host_dcs_im_tgt_stats_t *wlan_stat);
981
982QDF_STATUS (*extract_fips_event_error_status)(wmi_unified_t wmi_handle,
983 void *evt_buf, uint32_t *err_status);
984
985QDF_STATUS (*extract_fips_event_data)(wmi_unified_t wmi_handle,
986 void *evt_buf, uint32_t *data_len, uint32_t **data);
987QDF_STATUS (*extract_vdev_start_resp)(wmi_unified_t wmi_handle, void *evt_buf,
988 wmi_host_vdev_start_resp *vdev_rsp);
989
990QDF_STATUS (*extract_tbttoffset_update_params)(void *wmi_hdl, void *evt_buf,
991 uint32_t *vdev_map, uint32_t **tbttoffset_list);
992
993QDF_STATUS (*extract_mgmt_rx_params)(wmi_unified_t wmi_handle, void *evt_buf,
994 wmi_host_mgmt_rx_hdr *hdr, uint8_t **bufp);
995
996QDF_STATUS (*extract_vdev_stopped_param)(wmi_unified_t wmi_handle,
997 void *evt_buf, uint32_t *vdev_id);
998
999QDF_STATUS (*extract_vdev_roam_param)(wmi_unified_t wmi_handle, void *evt_buf,
1000 wmi_host_roam_event *param);
1001
1002QDF_STATUS (*extract_vdev_scan_ev_param)(wmi_unified_t wmi_handle,
1003 void *evt_buf, wmi_host_scan_event *param);
1004
1005QDF_STATUS (*extract_mu_ev_param)(wmi_unified_t wmi_handle, void *evt_buf,
1006 wmi_host_mu_report_event *param);
1007
1008QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
1009 void *evt_buf, wmi_host_pdev_tpc_config_event *param);
1010
1011QDF_STATUS (*extract_gpio_input_ev_param)(wmi_unified_t wmi_handle,
1012 void *evt_buf, uint32_t *gpio_num);
1013
1014QDF_STATUS (*extract_pdev_reserve_ast_ev_param)(wmi_unified_t wmi_handle,
1015 void *evt_buf, uint32_t *result);
1016
1017QDF_STATUS (*extract_nfcal_power_ev_param)(wmi_unified_t wmi_handle,
1018 void *evt_buf,
1019 wmi_host_pdev_nfcal_power_all_channels_event *param);
1020
1021QDF_STATUS (*extract_pdev_tpc_ev_param)(wmi_unified_t wmi_handle,
1022 void *evt_buf, wmi_host_pdev_tpc_event *param);
1023
1024QDF_STATUS (*extract_pdev_generic_buffer_ev_param)(wmi_unified_t wmi_handle,
1025 void *evt_buf, wmi_host_pdev_generic_buffer_event *param);
1026
1027QDF_STATUS (*extract_mgmt_tx_compl_param)(wmi_unified_t wmi_handle,
1028 void *evt_buf, wmi_host_mgmt_tx_compl_event *param);
1029
1030QDF_STATUS (*extract_swba_vdev_map)(wmi_unified_t wmi_handle, void *evt_buf,
1031 uint32_t *vdev_map);
1032
1033QDF_STATUS (*extract_swba_tim_info)(wmi_unified_t wmi_handle, void *evt_buf,
1034 uint32_t idx, wmi_host_tim_info *tim_info);
1035
1036QDF_STATUS (*extract_swba_noa_info)(wmi_unified_t wmi_handle, void *evt_buf,
1037 uint32_t idx, wmi_host_p2p_noa_info *p2p_desc);
1038
1039QDF_STATUS (*extract_peer_sta_ps_statechange_ev)(wmi_unified_t wmi_handle,
1040 void *evt_buf, wmi_host_peer_sta_ps_statechange_event *ev);
1041
1042QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
1043 void *evt_buf, wmi_host_peer_sta_kickout_event *ev);
1044
1045QDF_STATUS (*extract_peer_ratecode_list_ev)(wmi_unified_t wmi_handle,
1046 void *evt_buf, uint8_t *peer_mac, wmi_sa_rate_cap *rate_cap);
1047
1048QDF_STATUS (*extract_comb_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
1049 uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
1050
1051QDF_STATUS (*extract_single_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
1052 uint16_t datalen, uint16_t *buf_offset, wmi_host_phyerr_t *phyerr);
1053
1054QDF_STATUS (*extract_composite_phyerr)(wmi_unified_t wmi_handle, void *evt_buf,
1055 uint16_t datalen, wmi_host_phyerr_t *phyerr);
1056
1057QDF_STATUS (*extract_rtt_hdr)(wmi_unified_t wmi_handle, void *evt_buf,
1058 wmi_host_rtt_event_hdr *ev);
1059
1060QDF_STATUS (*extract_rtt_ev)(wmi_unified_t wmi_handle, void *evt_buf,
1061 wmi_host_rtt_meas_event *ev, uint8_t *hdump, uint16_t hdump_len);
1062
1063QDF_STATUS (*extract_rtt_error_report_ev)(wmi_unified_t wmi_handle,
1064 void *evt_buf, wmi_host_rtt_error_report_event *ev);
1065
1066QDF_STATUS (*extract_all_stats_count)(wmi_unified_t wmi_handle, void *evt_buf,
1067 wmi_host_stats_event *stats_param);
1068
1069QDF_STATUS (*extract_pdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1070 uint32_t index, wmi_host_pdev_stats *pdev_stats);
1071
1072QDF_STATUS (*extract_pdev_ext_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1073 uint32_t index, wmi_host_pdev_ext_stats *pdev_ext_stats);
1074
1075QDF_STATUS (*extract_vdev_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1076 uint32_t index, wmi_host_vdev_stats *vdev_stats);
1077
1078QDF_STATUS (*extract_peer_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1079 uint32_t index, wmi_host_peer_stats *peer_stats);
1080
1081QDF_STATUS (*extract_bcnflt_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1082 uint32_t index, wmi_host_bcnflt_stats *bcnflt_stats);
1083
1084QDF_STATUS (*extract_peer_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1085 uint32_t index, wmi_host_peer_extd_stats *peer_extd_stats);
1086
1087QDF_STATUS (*extract_chan_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1088 uint32_t index, wmi_host_chan_stats *chan_stats);
1089
1090QDF_STATUS (*extract_thermal_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1091 uint32_t *temp, uint32_t *level);
1092
1093QDF_STATUS (*extract_thermal_level_stats)(wmi_unified_t wmi_handle,
1094 void *evt_buf, uint8_t idx, uint32_t *levelcount,
1095 uint32_t *dccount);
1096
1097QDF_STATUS (*extract_profile_ctx)(wmi_unified_t wmi_handle, void *evt_buf,
1098 wmi_host_wlan_profile_ctx_t *profile_ctx);
1099
1100QDF_STATUS (*extract_profile_data)(wmi_unified_t wmi_handle, void *evt_buf,
Govind Singh41da3152016-05-06 20:20:25 +05301101 uint8_t idx,
1102 wmi_host_wlan_profile_t *profile_data);
Govind Singh89727882016-04-15 13:58:27 +05301103
1104QDF_STATUS (*extract_chan_info_event)(wmi_unified_t wmi_handle, void *evt_buf,
1105 wmi_host_chan_info_event *chan_info);
1106
1107QDF_STATUS (*extract_channel_hopping_event)(wmi_unified_t wmi_handle,
1108 void *evt_buf,
1109 wmi_host_pdev_channel_hopping_event *ch_hopping);
1110
1111QDF_STATUS (*extract_bss_chan_info_event)(wmi_unified_t wmi_handle,
1112 void *evt_buf,
1113 wmi_host_pdev_bss_chan_info_event *bss_chan_info);
1114
1115QDF_STATUS (*extract_inst_rssi_stats_event)(wmi_unified_t wmi_handle,
1116 void *evt_buf, wmi_host_inst_stats_resp *inst_rssi_resp);
1117
1118QDF_STATUS (*extract_tx_data_traffic_ctrl_ev)(wmi_unified_t wmi_handle,
1119 void *evt_buf, wmi_host_tx_data_traffic_ctrl_event *ev);
1120
1121QDF_STATUS (*extract_vdev_extd_stats)(wmi_unified_t wmi_handle, void *evt_buf,
1122 uint32_t index, wmi_host_vdev_extd_stats *vdev_extd_stats);
Govind Singhc10bde82016-05-02 17:59:24 +05301123
1124QDF_STATUS (*send_power_dbg_cmd)(wmi_unified_t wmi_handle,
1125 struct wmi_power_dbg_params *param);
Gupta, Kapil7b768002016-04-25 19:14:19 +05301126
1127QDF_STATUS (*send_adapt_dwelltime_params_cmd)(wmi_unified_t wmi_handle,
1128 struct wmi_adaptive_dwelltime_params *dwelltime_params);
Anurag Chouhan4d41be72016-07-22 20:19:54 +05301129
1130QDF_STATUS (*send_fw_test_cmd)(wmi_unified_t wmi_handle,
1131 struct set_fwtest_params *wmi_fwtest);
Govind Singh89727882016-04-15 13:58:27 +05301132};
1133
1134struct target_abi_version {
1135 A_UINT32 abi_version_0;
1136 /** WMI Major and Minor versions */
1137 A_UINT32 abi_version_1;
1138 /** WMI change revision */
1139 A_UINT32 abi_version_ns_0;
1140 /** ABI version namespace first four dwords */
1141 A_UINT32 abi_version_ns_1;
1142 /** ABI version namespace second four dwords */
1143 A_UINT32 abi_version_ns_2;
1144 /** ABI version namespace third four dwords */
1145 A_UINT32 abi_version_ns_3;
1146 /** ABI version namespace fourth four dwords */
Govind Singh2ae94372016-03-07 16:45:38 +05301147};
1148
Govind Singh229bc0d2016-03-07 15:33:31 +05301149/**
1150 * struct wmi_init_cmd - Saved wmi INIT command
1151 * @buf: Buffer containing the wmi INIT command
1152 * @buf_len: Length of the buffer
1153 */
Govind Singhec0bdef2016-03-16 16:27:50 +05301154struct wmi_cmd_init {
Govind Singh229bc0d2016-03-07 15:33:31 +05301155 wmi_buf_t buf;
1156 uint32_t buf_len;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301157};
1158
Govind Singhd475ea92016-03-06 19:55:02 +05301159struct wmi_unified {
Govind Singh89727882016-04-15 13:58:27 +05301160 void *scn_handle; /* handle to device */
Govind Singh6ad6ada2016-02-04 18:42:30 +05301161 osdev_t osdev; /* handle to use OS-independent services */
Govind Singhd7468a52016-03-09 14:32:57 +05301162 qdf_atomic_t pending_cmds;
Govind Singhd475ea92016-03-06 19:55:02 +05301163 HTC_ENDPOINT_ID wmi_endpoint_id;
1164 uint16_t max_msg_len;
Himanshu Agarwal56c292f2016-07-19 15:41:51 +05301165 uint32_t event_id[WMI_UNIFIED_MAX_EVENT];
Govind Singhd475ea92016-03-06 19:55:02 +05301166 wmi_unified_event_handler event_handler[WMI_UNIFIED_MAX_EVENT];
Govind Singh4ec6ff92016-03-09 12:03:29 +05301167 enum wmi_rx_exec_ctx ctx[WMI_UNIFIED_MAX_EVENT];
Govind Singhd475ea92016-03-06 19:55:02 +05301168 uint32_t max_event_idx;
1169 void *htc_handle;
Govind Singhd7468a52016-03-09 14:32:57 +05301170 qdf_spinlock_t eventq_lock;
1171 qdf_nbuf_queue_t event_queue;
Govind Singhd475ea92016-03-06 19:55:02 +05301172 struct work_struct rx_event_work;
Govind Singh6ad6ada2016-02-04 18:42:30 +05301173 int wmi_stop_in_progress;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301174#ifdef CONFIG_MCL
Govind Singh229bc0d2016-03-07 15:33:31 +05301175 struct _wmi_abi_version fw_abi_version;
1176 struct _wmi_abi_version final_abi_vers;
Govind Singh89727882016-04-15 13:58:27 +05301177#endif
Govind Singhec0bdef2016-03-16 16:27:50 +05301178 struct wmi_cmd_init saved_wmi_init_cmd;
Govind Singh229bc0d2016-03-07 15:33:31 +05301179 uint32_t num_of_diag_events_logs;
1180 uint32_t *events_logs_list;
1181 struct host_offload_req_param arp_info;
Govind Singhd475ea92016-03-06 19:55:02 +05301182#ifdef WLAN_OPEN_SOURCE
1183 struct fwdebug dbglog;
1184 struct dentry *debugfs_phy;
1185#endif /* WLAN_OPEN_SOURCE */
1186
1187#ifdef WMI_INTERFACE_EVENT_LOGGING
Govind Singh5fed03b2016-05-12 12:45:51 +05301188 struct wmi_debug_log_info log_info;
Govind Singhd475ea92016-03-06 19:55:02 +05301189#endif /*WMI_INTERFACE_EVENT_LOGGING */
1190
Govind Singhd7468a52016-03-09 14:32:57 +05301191 qdf_atomic_t is_target_suspended;
Govind Singhd475ea92016-03-06 19:55:02 +05301192
1193#ifdef FEATURE_RUNTIME_PM
Govind Singhd7468a52016-03-09 14:32:57 +05301194 qdf_atomic_t runtime_pm_inprogress;
Govind Singhd475ea92016-03-06 19:55:02 +05301195#endif
1196
Govind Singh89727882016-04-15 13:58:27 +05301197 enum wmi_target_type target_type;
Govind Singh3ddda1f2016-03-09 11:34:12 +05301198 struct wmi_rx_ops rx_ops;
1199 struct wmi_ops *ops;
Govind Singh6ad6ada2016-02-04 18:42:30 +05301200 bool use_cookie;
Govind Singh89727882016-04-15 13:58:27 +05301201 bool wmi_stopinprogress;
Govind Singhf06948c2016-03-12 09:26:52 +05301202 qdf_spinlock_t ctx_lock;
Kiran Venkatappa9da7e042016-08-09 22:52:35 +05301203#ifndef CONFIG_MCL
Govind Singh89727882016-04-15 13:58:27 +05301204 /* WMI service bitmap recieved from target */
1205 uint32_t wmi_service_bitmap[wmi_services_max];
1206 uint32_t wmi_events[wmi_events_max];
1207 uint32_t pdev_param[wmi_pdev_param_max];
1208 uint32_t vdev_param[wmi_vdev_param_max];
1209 uint32_t services[wmi_services_max];
1210#endif
Govind Singhd475ea92016-03-06 19:55:02 +05301211};
Govind Singh89727882016-04-15 13:58:27 +05301212#ifdef WMI_NON_TLV_SUPPORT
Govind Singhfa201d92016-06-08 19:40:11 +05301213/* ONLY_NON_TLV_TARGET:TLV attach dummy function defintion for case when
1214 * driver supports only NON-TLV target (WIN mainline) */
Govind Singh89727882016-04-15 13:58:27 +05301215#define wmi_tlv_attach(x) qdf_print("TLV Unavailable\n")
1216#else
1217void wmi_tlv_attach(wmi_unified_t wmi_handle);
1218#endif
1219void wmi_non_tlv_attach(wmi_unified_t wmi_handle);
Govind Singh53c7ac82016-03-28 22:02:42 +05301220
1221/**
1222 * wmi_align() - provides word aligned parameter
1223 * @param: parameter to be aligned
1224 *
1225 * Return: word aligned parameter
1226 */
1227static inline uint32_t wmi_align(uint32_t param)
1228{
1229 return roundup(param, sizeof(uint32_t));
1230}
Govind Singhd475ea92016-03-06 19:55:02 +05301231#endif