blob: d2ec110ca34ab9db60c70fdc6506743d82c7ae0e [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Nachiket Kukade2c73ade2017-12-20 17:30:36 +05302 * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -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#ifndef WMA_API_H
29#define WMA_API_H
30
31#include "osdep.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080032#include "ani_global.h"
33#include "a_types.h"
Govind Singh5b486202016-06-09 18:29:42 +053034#include "osapi_linux.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080035#include "wmi_unified.h"
36#ifdef NOT_YET
37#include "htc_api.h"
38#endif
39#include "lim_global.h"
Krunal Soni0193b6f2016-08-15 15:53:43 -070040#include "cds_utils.h"
Krunal Sonid32c6bc2016-10-18 18:00:21 -070041#include "scheduler_api.h"
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -080042#include "wlan_policy_mgr_api.h"
Jeff Johnsonf0e54b02017-12-18 15:22:25 -080043#include "wma_sar_public_structs.h"
Tushnim Bhattacharyya45ed04f2017-03-15 10:15:05 -070044#include <cdp_txrx_ops.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080045
46typedef void *WMA_HANDLE;
47
48/**
49 * enum GEN_PARAM - general parameters
50 * @GEN_VDEV_PARAM_AMPDU: Set ampdu size
51 * @GEN_VDEV_PARAM_AMSDU: Set amsdu size
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080052 * @GEN_PARAM_CRASH_INJECT: inject crash
Rajeev Kumarf4390fa2016-12-22 13:17:33 -080053 * @GEN_PARAM_MODULATED_DTIM: moduled dtim
54 * @GEN_PARAM_CAPTURE_TSF: read tsf
55 * @GEN_PARAM_RESET_TSF_GPIO: reset tsf gpio
56 * @GEN_VDEV_ROAM_SYNCH_DELAY: roam sync delay
Mukul Sharma6398b252017-05-01 17:58:12 +053057 * @GEN_PARAM_LISTEN_INTERVAL: listen interval
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080058 */
Manikandan Mohan1dd8b5d2017-04-18 15:54:09 -070059enum GEN_PARAM {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080060 GEN_VDEV_PARAM_AMPDU = 0x1,
61 GEN_VDEV_PARAM_AMSDU,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080062 GEN_PARAM_CRASH_INJECT,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080063 GEN_PARAM_MODULATED_DTIM,
Manikandan Mohandcc21ba2016-03-15 14:31:56 -070064 GEN_PARAM_CAPTURE_TSF,
65 GEN_PARAM_RESET_TSF_GPIO,
Varun Reddy Yeturu5ab47462016-05-08 18:08:11 -070066 GEN_VDEV_ROAM_SYNCH_DELAY,
Mukul Sharma6398b252017-05-01 17:58:12 +053067 GEN_PARAM_LISTEN_INTERVAL,
Manikandan Mohan1dd8b5d2017-04-18 15:54:09 -070068};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080069
Krunal Soni0193b6f2016-08-15 15:53:43 -070070/**
71 * struct wma_caps_per_phy - various caps per phy
72 * @ht_2g: entire HT cap for 2G band in terms of 32 bit flag
73 * @ht_5g: entire HT cap for 5G band in terms of 32 bit flag
74 * @vht_2g: entire VHT cap for 2G band in terms of 32 bit flag
75 * @vht_5g: entire VHT cap for 5G band in terms of 32 bit flag
76 * @he_2g: entire HE cap for 2G band in terms of 32 bit flag
77 * @he_5g: entire HE cap for 5G band in terms of 32 bit flag
78 */
79struct wma_caps_per_phy {
80 uint32_t ht_2g;
81 uint32_t ht_5g;
82 uint32_t vht_2g;
83 uint32_t vht_5g;
84 uint32_t he_2g;
85 uint32_t he_5g;
86};
87
88
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080089#define VDEV_CMD 1
90#define PDEV_CMD 2
91#define GEN_CMD 3
92#define DBG_CMD 4
93#define PPS_CMD 5
94#define QPOWER_CMD 6
95#define GTX_CMD 7
96
97typedef void (*wma_peer_authorized_fp) (uint32_t vdev_id);
98
99
Jeff Johnson8ad89c62017-09-13 08:55:55 -0700100QDF_STATUS wma_pre_start(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800101
Krunal Sonid32c6bc2016-10-18 18:00:21 -0700102QDF_STATUS wma_mc_process_handler(struct scheduler_msg *msg);
Krunal Sonid32c6bc2016-10-18 18:00:21 -0700103
Jeff Johnsond4892552017-09-13 08:41:31 -0700104QDF_STATUS wma_start(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800105
Jeff Johnsonacc1cc72017-09-13 08:47:49 -0700106QDF_STATUS wma_stop(uint8_t reason);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800107
Jeff Johnson542da352017-09-13 09:17:28 -0700108QDF_STATUS wma_close(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800109
Jeff Johnson7b3ddc22017-09-13 09:42:44 -0700110QDF_STATUS wma_wmi_service_close(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800111
Jeff Johnson6b8473d2017-09-13 09:20:53 -0700112QDF_STATUS wma_wmi_work_close(void);
Xun Luoa858a472015-11-10 08:24:45 -0800113
Govind Singhd76a5b02016-03-08 15:12:14 +0530114int wma_rx_ready_event(void *handle, uint8_t *ev, uint32_t len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800115
Govind Singhd76a5b02016-03-08 15:12:14 +0530116int wma_rx_service_ready_event(void *handle, uint8_t *ev, uint32_t len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800117
Govind Singhd76a5b02016-03-08 15:12:14 +0530118int wma_rx_service_ready_ext_event(void *handle, uint8_t *ev, uint32_t len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800119
Jeff Johnson1f8d0a02017-09-13 08:09:05 -0700120void wma_setneedshutdown(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800121
Jeff Johnson1b5404e2017-09-13 08:04:46 -0700122bool wma_needshutdown(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800123
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530124QDF_STATUS wma_wait_for_ready_event(WMA_HANDLE handle);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800125
126uint8_t wma_map_channel(uint8_t mapChannel);
127
128int wma_cli_get_command(int vdev_id, int param_id, int vpdev);
129int wma_cli_set_command(int vdev_id, int param_id, int sval, int vpdev);
130int wma_cli_set2_command(int vdev_id, int param_id, int sval1,
131 int sval2, int vpdev);
132
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530133QDF_STATUS wma_set_htconfig(uint8_t vdev_id, uint16_t ht_capab, int value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800134
Jeff Johnsonabb74042017-08-31 11:44:55 -0700135/**
136 * wma_get_wcnss_software_version() - get wcnss software version
137 * @version: version pointer
138 * @version_buffer_size: buffer size
139 *
140 * Return: QDF_STATUS_SUCCESS for success or error code
141 */
142QDF_STATUS wma_get_wcnss_software_version(uint8_t *version,
143 uint32_t version_buffer_size);
144
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800145void wma_set_peer_authorized_cb(void *wma_ctx, wma_peer_authorized_fp auth_cb);
Govind Singhd76a5b02016-03-08 15:12:14 +0530146QDF_STATUS wma_set_peer_param(void *wma_ctx, uint8_t *peer_addr,
147 uint32_t param_id,
148 uint32_t param_value, uint32_t vdev_id);
Mukul Sharmac3886aa2017-05-04 17:53:22 +0530149QDF_STATUS wma_get_link_speed(WMA_HANDLE handle, tSirLinkSpeedInfo *pLinkSpeed);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800150#ifdef NOT_YET
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530151QDF_STATUS wma_update_channel_list(WMA_HANDLE handle, void *scan_chan_info);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800152#endif
153
154uint8_t *wma_get_vdev_address_by_vdev_id(uint8_t vdev_id);
155struct wma_txrx_node *wma_get_interface_by_vdev_id(uint8_t vdev_id);
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -0800156QDF_STATUS wma_get_connection_info(uint8_t vdev_id,
157 struct policy_mgr_vdev_entry_info *conn_table_entry);
158
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800159bool wma_is_vdev_up(uint8_t vdev_id);
160
161void *wma_get_beacon_buffer_by_vdev_id(uint8_t vdev_id, uint32_t *buffer_size);
162
Krishna Kumaar Natarajand0bbb3c2017-03-13 17:04:58 -0700163bool wma_get_fw_wlan_feat_caps(enum cap_bitmap feature);
164void wma_set_fw_wlan_feat_caps(enum cap_bitmap feature);
Rajeev Kumarfeb96382017-01-22 19:42:09 -0800165tSirRetStatus wma_post_ctrl_msg(tpAniSirGlobal pMac,
166 struct scheduler_msg *pMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800167
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800168void wma_register_wow_wakeup_events(WMA_HANDLE handle, uint8_t vdev_id,
169 uint8_t vdev_type, uint8_t sub_type);
170void wma_register_wow_default_patterns(WMA_HANDLE handle, uint8_t vdev_id);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800171int8_t wma_get_mac_id_of_vdev(uint32_t vdev_id);
172void wma_update_intf_hw_mode_params(uint32_t vdev_id, uint32_t mac_id,
173 uint32_t cfgd_hw_mode_index);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800174void wma_set_dbs_capability_ut(uint32_t dbs);
Krunal Soni0193b6f2016-08-15 15:53:43 -0700175QDF_STATUS wma_get_caps_for_phyidx_hwmode(struct wma_caps_per_phy *caps_per_phy,
176 enum hw_mode_dbs_capab hw_mode, enum cds_band_type band);
177bool wma_is_rx_ldpc_supported_for_channel(uint32_t channel);
yeshwanth sriram guntuka584c2332017-07-29 12:50:25 +0530178int wma_unified_radio_tx_mem_free(void *handle);
Krunal Soniaadaa272017-10-04 16:42:55 -0700179/**
180 * wma_form_unit_test_cmd_and_send() - to form a wma command and send it to FW
181 * @session_id: wma session id to be filled while forming the command
182 * @module_id: module id given by user to be filled in the command
183 * @arg_count: number of argument count
184 * @arg: pointer to argument list
185 *
186 * This API exposed to HDD layer which takes the argument from user and forms
187 * the wma unit test command to be sent down to firmware
188 *
189 * Return: QDF_STATUS based on overall success
190 */
191QDF_STATUS wma_form_unit_test_cmd_and_send(uint32_t vdev_id,
192 uint32_t module_id, uint32_t arg_count, uint32_t *arg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800193
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800194#if defined(FEATURE_LRO)
Dhanashri Atre09828f12016-11-13 10:36:58 -0800195int wma_lro_init(struct cdp_lro_hash_config *lro_config);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800196#endif
Ryan Hsu3c8f79f2015-12-02 16:45:09 -0800197
Gupta, Kapil4cb1d7d2016-04-16 18:16:25 -0700198QDF_STATUS wma_remove_beacon_filter(WMA_HANDLE wma,
199 struct beacon_filter_param *filter_params);
200
201QDF_STATUS wma_add_beacon_filter(WMA_HANDLE wma,
202 struct beacon_filter_param *filter_params);
Gupta, Kapil96c7f2f2016-04-25 19:13:41 +0530203QDF_STATUS wma_send_adapt_dwelltime_params(WMA_HANDLE handle,
204 struct adaptive_dwelltime_params *dwelltime_params);
Nitesh Shahf9a09ff2017-05-22 15:46:25 +0530205
206/**
207 * wma_send_dbs_scan_selection_params() - send DBS scan selection configuration
208 * params to firmware
209 * @handle: wma handler
210 * @dbs_scan_params: pointer to wmi_dbs_scan_sel_params
211 *
212 * Return: QDF_STATUS_SUCCESS on success and QDF failure reason code for failure
213 */
214QDF_STATUS wma_send_dbs_scan_selection_params(WMA_HANDLE handle,
215 struct wmi_dbs_scan_sel_params *dbs_scan_params);
Himanshu Agarwalb229a142017-12-21 10:16:45 +0530216#ifdef WLAN_SUPPORT_GREEN_AP
Ryan Hsu3c8f79f2015-12-02 16:45:09 -0800217void wma_setup_egap_support(struct wma_tgt_cfg *tgt_cfg, WMA_HANDLE handle);
218void wma_register_egap_event_handle(WMA_HANDLE handle);
Ryan Hsu3c8f79f2015-12-02 16:45:09 -0800219#else
220static inline void wma_setup_egap_support(struct wma_tgt_cfg *tgt_cfg,
221 WMA_HANDLE handle) {}
222static inline void wma_register_egap_event_handle(WMA_HANDLE handle) {}
Ryan Hsu3c8f79f2015-12-02 16:45:09 -0800223#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530224QDF_STATUS wma_set_tx_power_scale(uint8_t vdev_id, int value);
225QDF_STATUS wma_set_tx_power_scale_decr_db(uint8_t vdev_id, int value);
Naveen Rawat0fc3f692016-06-22 14:30:54 -0700226
Kiran Kumar Lokered0fad462017-06-13 18:23:48 -0700227bool wma_is_csa_offload_enabled(void);
Peng Xu8fdaa492016-06-22 10:20:47 -0700228bool wma_is_p2p_lo_capable(void);
Dustin Brown8d8d9fe2017-07-18 16:01:25 -0700229bool wma_capability_enhanced_mcast_filter(void);
Peng Xu8fdaa492016-06-22 10:20:47 -0700230QDF_STATUS wma_p2p_lo_start(struct sir_p2p_lo_start *params);
231QDF_STATUS wma_p2p_lo_stop(u_int32_t vdev_id);
Padma, Santhosh Kumar5e33beb2016-08-08 19:07:06 +0530232QDF_STATUS wma_get_wakelock_stats(struct sir_wake_lock_stats *wake_lock_stats);
Naveen Rawat8cc23b02016-07-14 12:22:56 -0700233void wma_process_pdev_hw_mode_trans_ind(void *wma,
234 wmi_pdev_hw_mode_transition_event_fixed_param *fixed_param,
235 wmi_pdev_set_hw_mode_response_vdev_mac_entry *vdev_mac_entry,
236 struct sir_hw_mode_trans_ind *hw_mode_trans_ind);
Padma, Santhosh Kumar72e7aec2016-10-12 17:23:44 +0530237
Agrawal Ashishb2d1a452016-05-05 12:23:58 +0530238/**
239 * wma_set_cts2self_for_p2p_go() - set CTS2SELF command for P2P GO.
240 * @wma_handle: pointer to wma handle.
241 * @cts2self_for_p2p_go: value needs to set to firmware.
242 *
243 * At the time of driver startup, inform about ini parma to FW that
244 * if legacy client connects to P2P GO, stop using NOA for P2P GO.
245 *
246 * Return: QDF_STATUS.
247 */
248QDF_STATUS wma_set_cts2self_for_p2p_go(void *wma_handle,
249 uint32_t cts2self_for_p2p_go);
Padma, Santhosh Kumara7119672016-08-16 16:05:14 +0530250QDF_STATUS wma_set_tx_rx_aggregation_size
251 (struct sir_set_tx_rx_aggregation_size *tx_rx_aggregation_size);
Jeff Johnsonf0e54b02017-12-18 15:22:25 -0800252
253/**
254 * wma_get_sar_limit() - get SAR limits from the target
255 * @handle: wma handle
256 * @callback: Callback function to invoke with the results
257 * @context: Opaque context to pass back to caller in the callback
258 *
259 * This function sends WMI command to get SAR limits.
260 *
261 * Return: QDF_STATUS enumeration
262 */
263QDF_STATUS wma_get_sar_limit(WMA_HANDLE handle,
264 wma_sar_cb callback, void *context);
265
Kabilan Kannan3c0a7352016-12-02 18:49:38 -0800266/**
267 * wma_set_sar_limit() - set sar limits in the target
268 * @handle: wma handle
269 * @sar_limit_cmd_params: sar limit cmd params
270 *
271 * This function sends WMI command to set SAR limits.
272 *
273 * Return: QDF_STATUS enumeration
274 */
275QDF_STATUS wma_set_sar_limit(WMA_HANDLE handle,
276 struct sar_limit_cmd_params *sar_limit_params);
Jeff Johnsonf0e54b02017-12-18 15:22:25 -0800277
Dustin Brown10a7b712016-10-07 10:31:16 -0700278/**
279 * wma_set_qpower_config() - update qpower config in wma
280 * @vdev_id: the Id of the vdev to configure
281 * @qpower: new qpower value
282 *
283 * Return: QDF_STATUS_SUCCESS on success, error number otherwise
284 */
285QDF_STATUS wma_set_qpower_config(uint8_t vdev_id, uint8_t qpower);
Krishna Kumaar Natarajan0103ef82017-02-17 18:15:56 -0800286
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -0800287bool wma_is_service_enabled(WMI_SERVICE service_type);
Zhang Qiana6e9c102016-12-22 16:47:24 +0800288
Will Huang3cd2b7c2017-11-17 13:16:56 +0800289#ifdef FEATURE_WLAN_D0WOW
290static inline bool wma_d0_wow_is_supported(void)
291{
292 return wma_is_service_enabled(WMI_SERVICE_D0WOW) &&
293 (!wma_is_service_enabled(WMI_SERVICE_UNIFIED_WOW_CAPABILITY));
294}
295#else
296static inline bool wma_d0_wow_is_supported(void)
297{
298 return false;
299}
300#endif
301
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -0700302/**
303 * wma_store_pdev() - store pdev
304 * @wma_ctx: wma context
305 * @pdev: pdev context
306 *
307 * Return: void
308 */
309void wma_store_pdev(void *wma_ctx, struct wlan_objmgr_pdev *pdev);
310
Krishna Kumaar Natarajanc7e2bb72017-03-10 10:38:46 -0800311/**
312 * wmi_to_sir_peer_type() - convert peer type from WMI to SIR enum
313 * @type: enum wmi_peer_type
314 *
315 * Return: tSirWifiPeerType
316 */
317tSirWifiPeerType wmi_to_sir_peer_type(enum wmi_peer_type type);
Yu Wang46082dc2017-09-19 12:25:38 +0800318
319QDF_STATUS wma_crash_inject(WMA_HANDLE wma_handle, uint32_t type,
320 uint32_t delay_time_ms);
Nachiket Kukade8983cf62017-10-12 18:14:48 +0530321
322/**
Dustin Brown05557182017-10-12 14:44:49 -0700323 * wma_critical_events_in_flight() - get the number of critical events in flight
324 *
325 * This API gets the number of events in flight which should prevent power
326 * collapse.
327 *
328 * Return: the number of critical events in flight
329 */
330uint32_t wma_critical_events_in_flight(void);
331
332/**
Nachiket Kukade8983cf62017-10-12 18:14:48 +0530333 * wma_set_vc_mode_config() - set voltage corner mode config to FW.
334 * @wma_handle: pointer to wma handle.
335 * @vc_bitmap: value needs to set to firmware.
336 *
337 * At the time of driver startup, set operating voltage corner mode
338 * for differenet phymode and bw configurations.
339 *
340 * Return: QDF_STATUS.
341 */
342QDF_STATUS wma_set_vc_mode_config(void *wma_handle,
343 uint32_t vc_bitmap);
344
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800345#endif