blob: 9229e13865f57161e46b0fa0e5be9b4d31a7302b [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
yeshwanth sriram guntuka310b3ac2016-11-15 23:25:26 +05302 * Copyright (c) 2012-2017 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#if !defined(__SME_API_H)
29#define __SME_API_H
30
31/**
32 * file smeApi.h
33 *
34 * brief prototype for SME APIs
35 */
36
37/*--------------------------------------------------------------------------
38 Include Files
39 ------------------------------------------------------------------------*/
40#include "csr_api.h"
Anurag Chouhana37b5b72016-02-21 14:53:42 +053041#include "qdf_lock.h"
Anurag Chouhan6d760662016-02-20 16:05:43 +053042#include "qdf_types.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080043#include "sir_api.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080044#include "p2p_api.h"
45#include "cds_regdomain.h"
46#include "sme_internal.h"
Krishna Kumaar Natarajan052c6e62015-09-28 15:32:55 -070047#include "wma_tgt_cfg.h"
Jeff Johnson6136fb92017-03-30 15:21:49 -070048#include "wma_fips_public_structs.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080049
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080050#include "sme_rrm_internal.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080051#include "sir_types.h"
Krunal Sonid32c6bc2016-10-18 18:00:21 -070052#include "scheduler_api.h"
Varun Reddy Yeturu35c07f92017-02-28 10:35:00 -080053#include "wlan_serialization_legacy_api.h"
Krunal Sonid32c6bc2016-10-18 18:00:21 -070054
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080055/*--------------------------------------------------------------------------
56 Preprocessor definitions and constants
57 ------------------------------------------------------------------------*/
58
Jeff Johnson97fdfd02017-03-13 09:25:31 -070059#define SME_SUMMARY_STATS (1 << eCsrSummaryStats)
60#define SME_GLOBAL_CLASSA_STATS (1 << eCsrGlobalClassAStats)
Jeff Johnson97fdfd02017-03-13 09:25:31 -070061#define SME_GLOBAL_CLASSD_STATS (1 << eCsrGlobalClassDStats)
Jeff Johnson97fdfd02017-03-13 09:25:31 -070062#define SME_PER_CHAIN_RSSI_STATS (1 << csr_per_chain_rssi_stats)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080063
Srinivas Girigowdaaf487f62017-03-16 15:53:46 -070064#define sme_log(level, args...) QDF_TRACE(QDF_MODULE_ID_SME, level, ## args)
65#define sme_logfl(level, format, args...) sme_log(level, FL(format), ## args)
66
67#define sme_alert(format, args...) \
68 sme_logfl(QDF_TRACE_LEVEL_FATAL, format, ## args)
69#define sme_err(format, args...) \
70 sme_logfl(QDF_TRACE_LEVEL_ERROR, format, ## args)
71#define sme_warn(format, args...) \
72 sme_logfl(QDF_TRACE_LEVEL_WARN, format, ## args)
73#define sme_info(format, args...) \
74 sme_logfl(QDF_TRACE_LEVEL_INFO, format, ## args)
75#define sme_debug(format, args...) \
76 sme_logfl(QDF_TRACE_LEVEL_DEBUG, format, ## args)
77
78#define SME_ENTER() sme_logfl(QDF_TRACE_LEVEL_DEBUG, "enter")
79#define SME_EXIT() sme_logfl(QDF_TRACE_LEVEL_DEBUG, "exit")
80
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080081#define SME_SESSION_ID_ANY 50
82
83#define SME_INVALID_COUNTRY_CODE "XX"
84
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080085#define SME_SET_CHANNEL_REG_POWER(reg_info_1, val) do { \
86 reg_info_1 &= 0xff00ffff; \
87 reg_info_1 |= ((val & 0xff) << 16); \
88} while (0)
89
90#define SME_SET_CHANNEL_MAX_TX_POWER(reg_info_2, val) do { \
91 reg_info_2 &= 0xffff00ff; \
92 reg_info_2 |= ((val & 0xff) << 8); \
93} while (0)
94
Varun Reddy Yeturub43fda12015-09-10 18:16:21 -070095#define SME_CONFIG_TO_ROAM_CONFIG 1
96#define ROAM_CONFIG_TO_SME_CONFIG 2
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080097
Kiran Kumar Lokere666bf852016-05-02 12:23:02 -070098#define NUM_OF_BANDS 2
Naveen Rawatb56880c2016-12-13 17:56:03 -080099
100#define SME_ACTIVE_LIST_CMD_TIMEOUT_VALUE (30*1000)
101#define SME_CMD_TIMEOUT_VALUE (SME_ACTIVE_LIST_CMD_TIMEOUT_VALUE + 1000)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800102/*--------------------------------------------------------------------------
103 Type declarations
104 ------------------------------------------------------------------------*/
105typedef void (*hdd_ftm_msg_processor)(void *);
106typedef struct _smeConfigParams {
107 tCsrConfigParam csrConfig;
Krishna Kumaar Natarajanf599c6e2015-11-03 11:44:03 -0800108 struct rrm_config_param rrmConfig;
Kapil Gupta4f0c0c12017-02-07 15:21:15 +0530109 bool snr_monitor_enabled;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800110} tSmeConfigParams, *tpSmeConfigParams;
111
112#ifdef FEATURE_WLAN_TDLS
113#define SME_TDLS_MAX_SUPP_CHANNELS 128
114#define SME_TDLS_MAX_SUPP_OPER_CLASSES 32
115
116typedef struct _smeTdlsPeerCapParams {
117 uint8_t isPeerResponder;
118 uint8_t peerUapsdQueue;
119 uint8_t peerMaxSp;
120 uint8_t peerBuffStaSupport;
121 uint8_t peerOffChanSupport;
122 uint8_t peerCurrOperClass;
123 uint8_t selfCurrOperClass;
124 uint8_t peerChanLen;
125 uint8_t peerChan[SME_TDLS_MAX_SUPP_CHANNELS];
126 uint8_t peerOperClassLen;
127 uint8_t peerOperClass[SME_TDLS_MAX_SUPP_OPER_CLASSES];
128 uint8_t prefOffChanNum;
129 uint8_t prefOffChanBandwidth;
130 uint8_t opClassForPrefOffChan;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800131} tSmeTdlsPeerCapParams;
132
Kabilan Kannan421714b2015-11-23 04:44:59 -0800133/**
134 * eSmeTdlsPeerState - tdls peer state
135 * @eSME_TDLS_PEER_STATE_PEERING: tdls connection in progress
136 * @eSME_TDLS_PEER_STATE_CONNECTED: tdls peer is connected
137 * @eSME_TDLS_PEER_STATE_TEARDOWN: tdls peer is tear down
138 * @eSME_TDLS_PEER_ADD_MAC_ADDR: add peer mac into connection table
139 * @eSME_TDLS_PEER_REMOVE_MAC_ADDR: remove peer mac from connection table
140 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800141typedef enum {
142 eSME_TDLS_PEER_STATE_PEERING,
143 eSME_TDLS_PEER_STATE_CONNECTED,
Kabilan Kannan421714b2015-11-23 04:44:59 -0800144 eSME_TDLS_PEER_STATE_TEARDOWN,
145 eSME_TDLS_PEER_ADD_MAC_ADDR,
146 eSME_TDLS_PEER_REMOVE_MAC_ADDR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800147} eSmeTdlsPeerState;
148
149typedef struct _smeTdlsPeerStateParams {
150 uint32_t vdevId;
151 tSirMacAddr peerMacAddr;
152 uint32_t peerState;
153 tSmeTdlsPeerCapParams peerCap;
154} tSmeTdlsPeerStateParams;
155
156#define ENABLE_CHANSWITCH 1
157#define DISABLE_CHANSWITCH 2
158#define BW_20_OFFSET_BIT 0
159#define BW_40_OFFSET_BIT 1
160#define BW_80_OFFSET_BIT 2
161#define BW_160_OFFSET_BIT 3
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -0700162typedef struct sme_tdls_chan_switch_param_struct {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800163 uint32_t vdev_id;
164 tSirMacAddr peer_mac_addr;
165 uint16_t tdls_off_ch_bw_offset;/* Target Off Channel Bandwidth offset */
166 uint8_t tdls_off_channel; /* Target Off Channel */
167 uint8_t tdls_off_ch_mode; /* TDLS Off Channel Mode */
168 uint8_t is_responder; /* is peer responder or initiator */
Masti, Narayanraddic4a7ab82015-11-25 15:41:10 +0530169 uint8_t opclass; /* tdls operating class */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800170} sme_tdls_chan_switch_params;
171#endif /* FEATURE_WLAN_TDLS */
172
173/* Thermal Mitigation*/
174typedef struct {
175 uint16_t smeMinTempThreshold;
176 uint16_t smeMaxTempThreshold;
177} tSmeThermalLevelInfo;
178
179#define SME_MAX_THERMAL_LEVELS (4)
Poddar, Siddarth83905022016-04-16 17:56:08 -0700180#define SME_MAX_THROTTLE_LEVELS (4)
181
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800182typedef struct {
183 /* Array of thermal levels */
184 tSmeThermalLevelInfo smeThermalLevels[SME_MAX_THERMAL_LEVELS];
185 uint8_t smeThermalMgmtEnabled;
186 uint32_t smeThrottlePeriod;
Poddar, Siddarth83905022016-04-16 17:56:08 -0700187 uint8_t sme_throttle_duty_cycle_tbl[SME_MAX_THROTTLE_LEVELS];
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800188} tSmeThermalParams;
189
190typedef enum {
191 SME_AC_BK = 0,
192 SME_AC_BE = 1,
193 SME_AC_VI = 2,
194 SME_AC_VO = 3
195} sme_ac_enum_type;
196
Abhishek Singh12be60f2017-08-11 13:52:42 +0530197/*
198 * Enumeration of the various TSPEC directions
199 * From 802.11e/WMM specifications
200 */
201enum sme_qos_wmm_dir_type {
Naveen Rawatd9dd4b32017-07-05 14:32:54 -0700202 SME_QOS_WMM_TS_DIR_UPLINK = 0,
203 SME_QOS_WMM_TS_DIR_DOWNLINK = 1,
204 SME_QOS_WMM_TS_DIR_RESV = 2, /* Reserved */
205 SME_QOS_WMM_TS_DIR_BOTH = 3,
Abhishek Singh12be60f2017-08-11 13:52:42 +0530206};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800207
Krishna Kumaar Natarajan53ca2902015-12-04 14:01:46 -0800208/**
209 * struct sme_oem_capability - OEM capability to be exchanged between host
210 * and userspace
211 * @ftm_rr: FTM range report capability bit
212 * @lci_capability: LCI capability bit
213 * @reserved1: reserved
214 * @reserved2: reserved
215 */
216struct sme_oem_capability {
217 uint32_t ftm_rr:1;
218 uint32_t lci_capability:1;
219 uint32_t reserved1:30;
220 uint32_t reserved2;
221};
222
Manjeet Singha9cae432017-02-28 11:58:22 +0530223/**
224 * struct sme_5g_pref_params : 5G preference params to be read from ini
225 * @rssi_boost_threshold_5g: RSSI threshold above which 5 GHz is favored
226 * @rssi_boost_factor_5g: Factor by which 5GHz RSSI is boosted
227 * @max_rssi_boost_5g: Maximum boost that can be applied to 5GHz RSSI
228 * @rssi_penalize_threshold_5g: RSSI threshold below which 5G is not favored
229 * @rssi_penalize_factor_5g: Factor by which 5GHz RSSI is penalized
230 * @max_rssi_penalize_5g: Maximum penalty that can be applied to 5G RSSI
231 */
232struct sme_5g_band_pref_params {
233 int8_t rssi_boost_threshold_5g;
234 uint8_t rssi_boost_factor_5g;
235 uint8_t max_rssi_boost_5g;
236 int8_t rssi_penalize_threshold_5g;
237 uint8_t rssi_penalize_factor_5g;
238 uint8_t max_rssi_penalize_5g;
239};
240
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800241/*-------------------------------------------------------------------------
242 Function declarations and documenation
243 ------------------------------------------------------------------------*/
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530244QDF_STATUS sme_open(tHalHandle hHal);
245QDF_STATUS sme_init_chan_list(tHalHandle hal, uint8_t *alpha2,
Amar Singhala297bfa2015-10-15 15:07:29 -0700246 enum country_src cc_src);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530247QDF_STATUS sme_close(tHalHandle hHal);
248QDF_STATUS sme_start(tHalHandle hHal);
249QDF_STATUS sme_stop(tHalHandle hHal, tHalStopType stopType);
250QDF_STATUS sme_open_session(tHalHandle hHal, csr_roam_completeCallback callback,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800251 void *pContext, uint8_t *pSelfMacAddr,
Dustin Brownd28772b2017-03-17 14:16:07 -0700252 uint8_t session_id, uint32_t type,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800253 uint32_t subType);
Peng Xuf5d60c82015-10-02 17:17:03 -0700254void sme_set_curr_device_mode(tHalHandle hHal,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530255 enum tQDF_ADAPTER_MODE currDeviceMode);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530256QDF_STATUS sme_close_session(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800257 csr_roamSessionCloseCallback callback,
258 void *pContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530259QDF_STATUS sme_update_roam_params(tHalHandle hHal, uint8_t session_id,
Srinivas Girigowda72f30392017-07-13 18:55:09 -0700260 struct roam_ext_params *roam_params_src, int update_param);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530261QDF_STATUS sme_update_config(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800262 tpSmeConfigParams pSmeConfigParams);
263
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530264QDF_STATUS sme_set11dinfo(tHalHandle hHal, tpSmeConfigParams pSmeConfigParams);
265QDF_STATUS sme_get_soft_ap_domain(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800266 v_REGDOMAIN_t *domainIdSoftAp);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530267QDF_STATUS sme_hdd_ready_ind(tHalHandle hHal);
Krunal Sonia8270f52017-02-23 19:51:25 -0800268/**
269 * sme_ser_cmd_callback() - callback from serialization module
270 * @buf: serialization command buffer
271 * @reason: reason why serialization module has given this callback
272 *
273 * Serialization module will give callback to SME for why it triggered
274 * the callback
275 *
276 * Return: QDF_STATUS_SUCCESS
277 */
278QDF_STATUS sme_ser_cmd_callback(void *buf,
279 enum wlan_serialization_cb_reason reason);
Rajeev Kumar8eaedf62017-01-21 11:03:13 -0800280QDF_STATUS sme_process_msg(tHalHandle hHal, struct scheduler_msg *pMsg);
Krunal Sonid32c6bc2016-10-18 18:00:21 -0700281QDF_STATUS sme_mc_process_handler(struct scheduler_msg *msg);
Rajeev Kumar8eaedf62017-01-21 11:03:13 -0800282void sme_free_msg(tHalHandle hHal, struct scheduler_msg *pMsg);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530283QDF_STATUS sme_scan_request(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800284 tCsrScanRequest *, csr_scan_completeCallback callback,
285 void *pContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530286QDF_STATUS sme_scan_get_result(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800287 tCsrScanResultFilter *pFilter,
288 tScanResultHandle *phResult);
Archana Ramachandran2eb7a612017-03-23 22:58:42 -0700289QDF_STATUS sme_get_ap_channel_from_scan_cache(
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800290 tCsrRoamProfile *profile,
291 tScanResultHandle *scan_cache,
292 uint8_t *ap_chnl_id);
Archana Ramachandran2eb7a612017-03-23 22:58:42 -0700293QDF_STATUS sme_get_ap_channel_from_scan(void *profile,
294 tScanResultHandle *scan_cache,
295 uint8_t *ap_chnl_id);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800296bool sme_store_joinreq_param(tHalHandle hal_handle,
297 tCsrRoamProfile *profile,
298 tScanResultHandle scan_cache,
299 uint32_t *roam_id,
300 uint32_t session_id);
301bool sme_clear_joinreq_param(tHalHandle hal_handle,
302 uint32_t session_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530303QDF_STATUS sme_issue_stored_joinreq(tHalHandle hal_handle,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800304 uint32_t *roam_id,
305 uint32_t session_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530306QDF_STATUS sme_scan_flush_result(tHalHandle hHal);
307QDF_STATUS sme_filter_scan_results(tHalHandle hHal, uint8_t sessionId);
308QDF_STATUS sme_scan_flush_p2p_result(tHalHandle hHal, uint8_t sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800309tCsrScanResultInfo *sme_scan_result_get_first(tHalHandle,
310 tScanResultHandle hScanResult);
311tCsrScanResultInfo *sme_scan_result_get_next(tHalHandle,
312 tScanResultHandle hScanResult);
Archana Ramachandran2eb7a612017-03-23 22:58:42 -0700313QDF_STATUS sme_scan_result_purge(tScanResultHandle hScanResult);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530314QDF_STATUS sme_scan_get_pmkid_candidate_list(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800315 tPmkidCandidateInfo *pPmkidList,
316 uint32_t *pNumItems);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530317QDF_STATUS sme_roam_connect(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800318 tCsrRoamProfile *pProfile, uint32_t *pRoamId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530319QDF_STATUS sme_roam_reassoc(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800320 tCsrRoamProfile *pProfile,
321 tCsrRoamModifyProfileFields modProfileFields,
322 uint32_t *pRoamId, bool fForce);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530323QDF_STATUS sme_roam_connect_to_last_profile(tHalHandle hHal, uint8_t sessionId);
324QDF_STATUS sme_roam_disconnect(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800325 eCsrRoamDisconnectReason reason);
Abhishek Singhca408032016-09-13 15:26:12 +0530326void sme_dhcp_done_ind(tHalHandle hal, uint8_t session_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530327QDF_STATUS sme_roam_stop_bss(tHalHandle hHal, uint8_t sessionId);
328QDF_STATUS sme_roam_get_associated_stas(tHalHandle hHal, uint8_t sessionId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530329 QDF_MODULE_ID modId, void *pUsrContext,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800330 void *pfnSapEventCallback,
331 uint8_t *pAssocStasBuf);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530332QDF_STATUS sme_roam_disconnect_sta(tHalHandle hHal, uint8_t sessionId,
Deepthi Gowrib3bfefd2016-09-13 15:14:34 +0530333 struct tagCsrDelStaParams *p_del_sta_params);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530334QDF_STATUS sme_roam_deauth_sta(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800335 struct tagCsrDelStaParams *pDelStaParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530336QDF_STATUS sme_roam_tkip_counter_measures(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800337 bool bEnable);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530338QDF_STATUS sme_roam_get_wps_session_overlap(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800339 void *pUsrContext,
340 void *pfnSapEventCallback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530341 struct qdf_mac_addr pRemoveMac);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530342QDF_STATUS sme_roam_get_connect_state(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800343 eCsrConnectState *pState);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530344QDF_STATUS sme_roam_get_connect_profile(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800345 tCsrRoamConnectedProfile *pProfile);
Naveen Rawatdf0a7e72016-01-06 18:35:53 -0800346void sme_roam_free_connect_profile(tCsrRoamConnectedProfile *profile);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530347QDF_STATUS sme_roam_set_pmkid_cache(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800348 tPmkidCacheInfo *pPMKIDCache,
349 uint32_t numItems,
350 bool update_entire_cache);
351
352#ifdef WLAN_FEATURE_ROAM_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530353QDF_STATUS sme_roam_set_psk_pmk(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800354 uint8_t *pPSK_PMK, size_t pmk_len);
355#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530356QDF_STATUS sme_roam_get_security_req_ie(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800357 uint32_t *pLen, uint8_t *pBuf,
358 eCsrSecurityType secType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530359QDF_STATUS sme_roam_get_security_rsp_ie(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800360 uint32_t *pLen, uint8_t *pBuf,
361 eCsrSecurityType secType);
362uint32_t sme_roam_get_num_pmkid_cache(tHalHandle hHal, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530363QDF_STATUS sme_roam_get_pmkid_cache(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800364 uint32_t *pNum,
365 tPmkidCacheInfo *pPmkidCache);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530366QDF_STATUS sme_get_config_param(tHalHandle hHal, tSmeConfigParams *pParam);
367QDF_STATUS sme_get_statistics(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800368 eCsrStatsRequesterType requesterId,
369 uint32_t statsMask, tCsrStatsCallback callback,
Naveen Rawatd0ca4412017-06-16 14:19:19 -0700370 uint8_t staId, void *pContext, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530371QDF_STATUS sme_get_rssi(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800372 tCsrRssiCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530373 uint8_t staId, struct qdf_mac_addr bssId, int8_t lastRSSI,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800374 void *pContext, void *p_cds_context);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530375QDF_STATUS sme_get_snr(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800376 tCsrSnrCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530377 uint8_t staId, struct qdf_mac_addr bssId, void *pContext);
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -0800378#ifdef FEATURE_WLAN_ESE
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530379QDF_STATUS sme_get_tsm_stats(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800380 tCsrTsmStatsCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530381 uint8_t staId, struct qdf_mac_addr bssId,
Jeff Johnson30f84552017-09-13 14:55:25 -0700382 void *pContext, uint8_t tid);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530383QDF_STATUS sme_set_cckm_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800384 uint8_t sessionId,
385 uint8_t *pCckmIe, uint8_t cckmIeLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530386QDF_STATUS sme_set_ese_beacon_request(tHalHandle hHal, const uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800387 const tCsrEseBeaconReq *pEseBcnReq);
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -0800388QDF_STATUS sme_set_plm_request(tHalHandle hHal, tpSirPlmReq pPlm);
389#endif /*FEATURE_WLAN_ESE */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530390QDF_STATUS sme_cfg_set_int(tHalHandle hal, uint16_t cfg_id, uint32_t value);
391QDF_STATUS sme_cfg_set_str(tHalHandle hal, uint16_t cfg_id, uint8_t *str,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800392 uint32_t length);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530393QDF_STATUS sme_cfg_get_int(tHalHandle hal, uint16_t cfg_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800394 uint32_t *cfg_value);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530395QDF_STATUS sme_cfg_get_str(tHalHandle hal, uint16_t cfg_id, uint8_t *str,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800396 uint32_t *length);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530397QDF_STATUS sme_get_modify_profile_fields(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800398 tCsrRoamModifyProfileFields *
399 pModifyProfileFields);
400
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530401extern QDF_STATUS sme_set_host_power_save(tHalHandle hHal, bool psMode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800402
403void sme_set_dhcp_till_power_active_flag(tHalHandle hHal, uint8_t flag);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530404extern QDF_STATUS sme_register11d_scan_done_callback(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800405 csr_scan_completeCallback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530406void sme_deregister11d_scan_done_callback(tHalHandle hHal);
407
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800408#ifdef FEATURE_OEM_DATA_SUPPORT
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530409extern QDF_STATUS sme_register_oem_data_rsp_callback(tHalHandle h_hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800410 sme_send_oem_data_rsp_msg callback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530411void sme_deregister_oem_data_rsp_callback(tHalHandle h_hal);
412
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800413#else
Naveen Rawat910726a2017-03-06 11:42:51 -0800414static inline QDF_STATUS sme_register_oem_data_rsp_callback(tHalHandle hal,
415 void *callback)
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800416{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530417 return QDF_STATUS_SUCCESS;
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800418}
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530419static inline void sme_deregister_oem_data_rsp_callback(tHalHandle h_hal)
420{
421}
422
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800423#endif
424
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530425extern QDF_STATUS sme_wow_add_pattern(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800426 struct wow_add_pattern *pattern, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530427extern QDF_STATUS sme_wow_delete_pattern(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800428 struct wow_delete_pattern *pattern, uint8_t sessionId);
429
430void sme_register_ftm_msg_processor(tHalHandle hal,
431 hdd_ftm_msg_processor callback);
432
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530433extern QDF_STATUS sme_enter_wowl(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800434 void (*enter_wowl_callback_routine)(void
435 *callbackContext,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530436 QDF_STATUS status),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800437 void *enter_wowl_callback_context,
438#ifdef WLAN_WAKEUP_EVENTS
439 void (*wake_reason_ind_cb)(void *callbackContext,
440 tpSirWakeReasonInd
441 wake_reason_ind),
442 void *wake_reason_ind_cb_ctx,
443#endif /* WLAN_WAKEUP_EVENTS */
444 tpSirSmeWowlEnterParams wowl_enter_params,
445 uint8_t sessionId);
446
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530447extern QDF_STATUS sme_exit_wowl(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800448 tpSirSmeWowlExitParams wowl_exit_params);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530449QDF_STATUS sme_roam_set_key(tHalHandle, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800450 tCsrRoamSetKey *pSetKey, uint32_t *pRoamId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530451QDF_STATUS sme_get_country_code(tHalHandle hHal, uint8_t *pBuf, uint8_t *pbLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800452
453
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800454/* some support functions */
455bool sme_is11d_supported(tHalHandle hHal);
456bool sme_is11h_supported(tHalHandle hHal);
457bool sme_is_wmm_supported(tHalHandle hHal);
458
459typedef void (*tSmeChangeCountryCallback)(void *pContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530460QDF_STATUS sme_change_country_code(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800461 tSmeChangeCountryCallback callback,
462 uint8_t *pCountry,
463 void *pContext,
464 void *p_cds_context,
Srinivas Girigowda74a66d62017-06-21 23:28:25 -0700465 bool countryFromUserSpace,
466 bool sendRegHint);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530467QDF_STATUS sme_generic_change_country_code(tHalHandle hHal,
Amar Singhal7f1f3ec2015-10-13 17:14:08 -0700468 uint8_t *pCountry);
Rajeev Kumar8e3e2832015-11-06 16:02:54 -0800469QDF_STATUS sme_tx_fail_monitor_start_stop_ind(tHalHandle hHal,
470 uint8_t tx_fail_count,
471 void *txFailIndCallback);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530472QDF_STATUS sme_dhcp_start_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800473 uint8_t device_mode,
474 uint8_t *macAddr, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530475QDF_STATUS sme_dhcp_stop_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800476 uint8_t device_mode,
477 uint8_t *macAddr, uint8_t sessionId);
478void sme_set_cfg_privacy(tHalHandle hHal, tCsrRoamProfile *pProfile,
479 bool fPrivacy);
480void sme_get_recovery_stats(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530481QDF_STATUS sme_neighbor_report_request(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800482 tpRrmNeighborReq pRrmNeighborReq,
483 tpRrmNeighborRspCallbackInfo callbackInfo);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530484QDF_STATUS sme_get_wcnss_wlan_compiled_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800485 tSirVersionType * pVersion);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530486QDF_STATUS sme_get_wcnss_wlan_reported_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800487 tSirVersionType *pVersion);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530488QDF_STATUS sme_get_wcnss_software_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800489 uint8_t *pVersion, uint32_t versionBufferSize);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530490QDF_STATUS sme_get_wcnss_hardware_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800491 uint8_t *pVersion, uint32_t versionBufferSize);
492#ifdef FEATURE_WLAN_WAPI
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530493QDF_STATUS sme_scan_get_bkid_candidate_list(tHalHandle hHal, uint32_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800494 tBkidCandidateInfo * pBkidList,
495 uint32_t *pNumItems);
496#endif /* FEATURE_WLAN_WAPI */
497#ifdef FEATURE_OEM_DATA_SUPPORT
Krishna Kumaar Natarajanc1fa17d2016-08-03 14:19:20 -0700498QDF_STATUS sme_oem_data_req(tHalHandle hHal, struct oem_data_req *);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530499QDF_STATUS sme_oem_update_capability(tHalHandle hHal,
Krishna Kumaar Natarajan53ca2902015-12-04 14:01:46 -0800500 struct sme_oem_capability *cap);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530501QDF_STATUS sme_oem_get_capability(tHalHandle hHal,
Krishna Kumaar Natarajan53ca2902015-12-04 14:01:46 -0800502 struct sme_oem_capability *cap);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800503#endif /*FEATURE_OEM_DATA_SUPPORT */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530504QDF_STATUS sme_roam_update_apwpsie(tHalHandle, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800505 tSirAPWPSIEs * pAPWPSIES);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530506QDF_STATUS sme_roam_update_apwparsni_es(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800507 tSirRSNie *pAPSirRSNie);
Archana Ramachandran2eb7a612017-03-23 22:58:42 -0700508QDF_STATUS sme_change_mcc_beacon_interval(uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530509QDF_STATUS sme_set_host_offload(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800510 tpSirHostOffloadReq pRequest);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530511QDF_STATUS sme_set_keep_alive(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800512 tpSirKeepAliveReq pRequest);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530513QDF_STATUS sme_get_operation_channel(tHalHandle hHal, uint32_t *pChannel,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800514 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530515QDF_STATUS sme_register_mgmt_frame(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800516 uint16_t frameType, uint8_t *matchData,
517 uint16_t matchLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530518QDF_STATUS sme_deregister_mgmt_frame(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800519 uint16_t frameType, uint8_t *matchData,
520 uint16_t matchLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530521QDF_STATUS sme_ConfigureAppsCpuWakeupState(tHalHandle hHal, bool isAppsAwake);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800522#ifdef WLAN_FEATURE_EXTWOW_SUPPORT
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530523QDF_STATUS sme_configure_ext_wow(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800524 tpSirExtWoWParams wlanExtParams,
525 csr_readyToSuspendCallback callback,
526 void *callbackContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530527QDF_STATUS sme_configure_app_type1_params(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800528 tpSirAppType1Params wlanAppType1Params);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530529QDF_STATUS sme_configure_app_type2_params(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800530 tpSirAppType2Params wlanAppType2Params);
531#endif
532int8_t sme_get_infra_session_id(tHalHandle hHal);
533uint8_t sme_get_infra_operation_channel(tHalHandle hHal, uint8_t sessionId);
534uint8_t sme_get_concurrent_operation_channel(tHalHandle hHal);
535#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
536uint16_t sme_check_concurrent_channel_overlap(tHalHandle hHal, uint16_t sap_ch,
537 eCsrPhyMode sapPhyMode,
538 uint8_t cc_switch_mode);
539#endif
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800540QDF_STATUS sme_get_cfg_valid_channels(uint8_t *aValidChannels,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800541 uint32_t *len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800542#ifdef WLAN_FEATURE_PACKET_FILTERING
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530543QDF_STATUS sme_8023_multicast_list(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800544 tpSirRcvFltMcAddrList pMulticastAddrs);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800545#endif /* WLAN_FEATURE_PACKET_FILTERING */
546bool sme_is_channel_valid(tHalHandle hHal, uint8_t channel);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530547QDF_STATUS sme_set_freq_band(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800548 eCsrBand eBand);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530549QDF_STATUS sme_get_freq_band(tHalHandle hHal, eCsrBand *pBand);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800550uint16_t sme_chn_to_freq(uint8_t chanNum);
551bool sme_is_channel_valid(tHalHandle hHal, uint8_t channel);
Anurag Chouhan6d760662016-02-20 16:05:43 +0530552QDF_STATUS sme_set_max_tx_power(tHalHandle hHal, struct qdf_mac_addr pBssid,
553 struct qdf_mac_addr pSelfMacAddress, int8_t dB);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530554QDF_STATUS sme_set_max_tx_power_per_band(eCsrBand band, int8_t db);
555QDF_STATUS sme_set_tx_power(tHalHandle hHal, uint8_t sessionId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530556 struct qdf_mac_addr bssid,
557 enum tQDF_ADAPTER_MODE dev_mode, int power);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530558QDF_STATUS sme_set_custom_mac_addr(tSirMacAddr customMacAddr);
559QDF_STATUS sme_hide_ssid(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800560 uint8_t ssidHidden);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530561QDF_STATUS sme_set_tm_level(tHalHandle hHal, uint16_t newTMLevel,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800562 uint16_t tmMode);
563void sme_feature_caps_exchange(tHalHandle hHal);
564void sme_disable_feature_capablity(uint8_t feature_index);
565void sme_reset_power_values_for5_g(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530566QDF_STATUS sme_update_roam_prefer5_g_hz(tHalHandle hHal, bool nRoamPrefer5GHz);
567QDF_STATUS sme_set_roam_intra_band(tHalHandle hHal, const bool nRoamIntraBand);
568QDF_STATUS sme_update_roam_scan_n_probes(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800569 const uint8_t nProbes);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530570QDF_STATUS sme_update_roam_scan_home_away_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800571 uint8_t sessionId,
572 const uint16_t nRoamScanHomeAwayTime,
573 const bool bSendOffloadCmd);
574
575bool sme_get_roam_intra_band(tHalHandle hHal);
576uint8_t sme_get_roam_scan_n_probes(tHalHandle hHal);
577uint16_t sme_get_roam_scan_home_away_time(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530578QDF_STATUS sme_update_roam_rssi_diff(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800579 uint8_t RoamRssiDiff);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530580QDF_STATUS sme_update_fast_transition_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800581 bool isFastTransitionEnabled);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530582QDF_STATUS sme_update_wes_mode(tHalHandle hHal, bool isWESModeEnabled,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800583 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530584QDF_STATUS sme_set_roam_scan_control(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800585 bool roamScanControl);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800586
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530587QDF_STATUS sme_update_is_fast_roam_ini_feature_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800588 uint8_t sessionId,
589 const bool
590 isFastRoamIniFeatureEnabled);
Mukul Sharma69c44cd2016-09-12 18:33:57 +0530591
592QDF_STATUS sme_config_fast_roaming(tHalHandle hal, uint8_t session_id,
593 const bool is_fast_roam_enabled);
594
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530595QDF_STATUS sme_update_is_mawc_ini_feature_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800596 const bool MAWCEnabled);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530597QDF_STATUS sme_stop_roaming(tHalHandle hHal, uint8_t sessionId, uint8_t reason);
598QDF_STATUS sme_start_roaming(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800599 uint8_t reason);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530600QDF_STATUS sme_update_enable_fast_roam_in_concurrency(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800601 bool bFastRoamInConIniFeatureEnabled);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800602#ifdef FEATURE_WLAN_ESE
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530603QDF_STATUS sme_update_is_ese_feature_enabled(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800604 const bool isEseIniFeatureEnabled);
605#endif /* FEATURE_WLAN_ESE */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530606QDF_STATUS sme_update_config_fw_rssi_monitoring(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800607 bool fEnableFwRssiMonitoring);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530608QDF_STATUS sme_set_roam_rescan_rssi_diff(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800609 uint8_t sessionId,
610 const uint8_t nRoamRescanRssiDiff);
611uint8_t sme_get_roam_rescan_rssi_diff(tHalHandle hHal);
612
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530613QDF_STATUS sme_set_roam_opportunistic_scan_threshold_diff(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800614 uint8_t sessionId,
615 const uint8_t nOpportunisticThresholdDiff);
616uint8_t sme_get_roam_opportunistic_scan_threshold_diff(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530617QDF_STATUS sme_set_neighbor_lookup_rssi_threshold(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800618 uint8_t sessionId, uint8_t neighborLookupRssiThreshold);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530619QDF_STATUS sme_set_delay_before_vdev_stop(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800620 uint8_t sessionId, uint8_t delay_before_vdev_stop);
621uint8_t sme_get_neighbor_lookup_rssi_threshold(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530622QDF_STATUS sme_set_neighbor_scan_refresh_period(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800623 uint8_t sessionId, uint16_t neighborScanResultsRefreshPeriod);
624uint16_t sme_get_neighbor_scan_refresh_period(tHalHandle hHal);
625uint16_t sme_get_empty_scan_refresh_period(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530626QDF_STATUS sme_update_empty_scan_refresh_period(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800627 uint8_t sessionId, uint16_t nEmptyScanRefreshPeriod);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530628QDF_STATUS sme_set_neighbor_scan_min_chan_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800629 const uint16_t nNeighborScanMinChanTime,
630 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530631QDF_STATUS sme_set_neighbor_scan_max_chan_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800632 uint8_t sessionId, const uint16_t nNeighborScanMaxChanTime);
633uint16_t sme_get_neighbor_scan_min_chan_time(tHalHandle hHal,
634 uint8_t sessionId);
635uint32_t sme_get_neighbor_roam_state(tHalHandle hHal, uint8_t sessionId);
636uint32_t sme_get_current_roam_state(tHalHandle hHal, uint8_t sessionId);
637uint32_t sme_get_current_roam_sub_state(tHalHandle hHal, uint8_t sessionId);
638uint32_t sme_get_lim_sme_state(tHalHandle hHal);
639uint32_t sme_get_lim_mlm_state(tHalHandle hHal);
640bool sme_is_lim_session_valid(tHalHandle hHal, uint8_t sessionId);
641uint32_t sme_get_lim_sme_session_state(tHalHandle hHal, uint8_t sessionId);
642uint32_t sme_get_lim_mlm_session_state(tHalHandle hHal, uint8_t sessionId);
643uint16_t sme_get_neighbor_scan_max_chan_time(tHalHandle hHal,
644 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530645QDF_STATUS sme_set_neighbor_scan_period(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800646 const uint16_t nNeighborScanPeriod);
647uint16_t sme_get_neighbor_scan_period(tHalHandle hHal, uint8_t sessionId);
Sridhar Selvaraj1b2330c2017-07-21 15:16:42 +0530648QDF_STATUS sme_set_neighbor_scan_min_period(tHalHandle h_hal,
649 uint8_t session_id, const uint16_t neighbor_scan_min_period);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530650QDF_STATUS sme_set_roam_bmiss_first_bcnt(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800651 uint8_t sessionId, const uint8_t nRoamBmissFirstBcnt);
652uint8_t sme_get_roam_bmiss_first_bcnt(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530653QDF_STATUS sme_set_roam_bmiss_final_bcnt(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800654 const uint8_t nRoamBmissFinalBcnt);
655uint8_t sme_get_roam_bmiss_final_bcnt(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530656QDF_STATUS sme_set_roam_beacon_rssi_weight(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800657 const uint8_t nRoamBeaconRssiWeight);
658uint8_t sme_get_roam_beacon_rssi_weight(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800659uint8_t sme_get_roam_rssi_diff(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530660QDF_STATUS sme_change_roam_scan_channel_list(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800661 uint8_t *pChannelList,
662 uint8_t numChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530663QDF_STATUS sme_set_ese_roam_scan_channel_list(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800664 uint8_t sessionId, uint8_t *pChannelList,
665 uint8_t numChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530666QDF_STATUS sme_get_roam_scan_channel_list(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800667 uint8_t *pChannelList, uint8_t *pNumChannels,
668 uint8_t sessionId);
669bool sme_get_is_ese_feature_enabled(tHalHandle hHal);
670bool sme_get_wes_mode(tHalHandle hHal);
671bool sme_get_roam_scan_control(tHalHandle hHal);
672bool sme_get_is_lfr_feature_enabled(tHalHandle hHal);
673bool sme_get_is_ft_feature_enabled(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530674QDF_STATUS sme_update_roam_scan_offload_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800675 bool nRoamScanOffloadEnabled);
Krishna Kumaar Natarajand0bbb3c2017-03-13 17:04:58 -0700676bool sme_is_feature_supported_by_fw(enum cap_bitmap feature);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800677#ifdef FEATURE_WLAN_TDLS
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530678QDF_STATUS sme_send_tdls_link_establish_params(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800679 uint8_t sessionId,
680 const tSirMacAddr peerMac,
681 tCsrTdlsLinkEstablishParams *
682 tdlsLinkEstablishParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530683QDF_STATUS sme_send_tdls_mgmt_frame(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800684 const tSirMacAddr peerMac, uint8_t frame_type,
685 uint8_t dialog, uint16_t status,
686 uint32_t peerCapability, uint8_t *buf,
687 uint8_t len, uint8_t responder);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530688QDF_STATUS sme_change_tdls_peer_sta(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800689 const tSirMacAddr peerMac,
690 tCsrStaParams *pstaParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530691QDF_STATUS sme_add_tdls_peer_sta(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800692 const tSirMacAddr peerMac);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530693QDF_STATUS sme_delete_tdls_peer_sta(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800694 const tSirMacAddr peerMac);
695void sme_set_tdls_power_save_prohibited(tHalHandle hHal, uint32_t sessionId,
696 bool val);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530697QDF_STATUS sme_send_tdls_chan_switch_req(
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800698 tHalHandle hal,
699 sme_tdls_chan_switch_params *ch_switch_params);
700#endif
701
702/*
703 * SME API to enable/disable WLAN driver initiated SSR
704 */
705void sme_update_enable_ssr(tHalHandle hHal, bool enableSSR);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530706QDF_STATUS sme_set_phy_mode(tHalHandle hHal, eCsrPhyMode phyMode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800707eCsrPhyMode sme_get_phy_mode(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530708QDF_STATUS sme_handoff_request(tHalHandle hHal, uint8_t sessionId,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700709 tCsrHandoffRequest *pHandoffInfo);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530710QDF_STATUS sme_is_sta_p2p_client_connected(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530711QDF_STATUS sme_add_periodic_tx_ptrn(tHalHandle hHal, tSirAddPeriodicTxPtrn
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800712 *addPeriodicTxPtrnParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530713QDF_STATUS sme_del_periodic_tx_ptrn(tHalHandle hHal, tSirDelPeriodicTxPtrn
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800714 *delPeriodicTxPtrnParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530715QDF_STATUS sme_send_rate_update_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800716 tSirRateUpdateInd *rateUpdateParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530717QDF_STATUS sme_roam_del_pmkid_from_cache(tHalHandle hHal, uint8_t sessionId,
Sridhar Selvarajc3684c72017-08-21 14:32:47 +0530718 tPmkidCacheInfo *pmksa, bool flush_cache);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800719void sme_get_command_q_status(tHalHandle hHal);
720
Rajeev Kumar8e3e2832015-11-06 16:02:54 -0800721QDF_STATUS sme_enable_rmc(tHalHandle hHal, uint32_t sessionId);
722QDF_STATUS sme_disable_rmc(tHalHandle hHal, uint32_t sessionId);
723QDF_STATUS sme_send_rmc_action_period(tHalHandle hHal, uint32_t sessionId);
724QDF_STATUS sme_request_ibss_peer_info(tHalHandle hHal, void *pUserData,
725 pIbssPeerInfoCb peerInfoCbk, bool allPeerInfoReqd, uint8_t staIdx);
726QDF_STATUS sme_send_cesium_enable_ind(tHalHandle hHal, uint32_t sessionId);
727
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800728/*
729 * SME API to enable/disable idle mode powersave
730 * This should be called only if powersave offload
731 * is enabled
732 */
Jeff Johnson4f519342017-09-13 14:27:17 -0700733QDF_STATUS sme_set_idle_powersave_config(tHalHandle hHal, uint32_t value);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530734QDF_STATUS sme_notify_modem_power_state(tHalHandle hHal, uint32_t value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800735
736/*SME API to convert convert the ini value to the ENUM used in csr and MAC*/
737ePhyChanBondState sme_get_cb_phy_state_from_cb_ini_value(uint32_t cb_ini_value);
738int sme_update_ht_config(tHalHandle hHal, uint8_t sessionId, uint16_t htCapab,
739 int value);
740int16_t sme_get_ht_config(tHalHandle hHal, uint8_t session_id,
741 uint16_t ht_capab);
742#ifdef QCA_HT_2040_COEX
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530743QDF_STATUS sme_notify_ht2040_mode(tHalHandle hHal, uint16_t staId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530744 struct qdf_mac_addr macAddrSTA,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800745 uint8_t sessionId,
746 uint8_t channel_type);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530747QDF_STATUS sme_set_ht2040_mode(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800748 uint8_t channel_type, bool obssEnabled);
749#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530750QDF_STATUS sme_get_reg_info(tHalHandle hHal, uint8_t chanId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800751 uint32_t *regInfo1, uint32_t *regInfo2);
752#ifdef FEATURE_WLAN_TDLS
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530753QDF_STATUS sme_update_fw_tdls_state(tHalHandle hHal, void *psmeTdlsParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800754 bool useSmeLock);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530755QDF_STATUS sme_update_tdls_peer_state(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800756 tSmeTdlsPeerStateParams *pPeerStateParams);
757#endif /* FEATURE_WLAN_TDLS */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530758QDF_STATUS sme_ch_avoid_update_req(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800759#ifdef FEATURE_WLAN_AUTO_SHUTDOWN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530760QDF_STATUS sme_set_auto_shutdown_cb(tHalHandle hHal, void (*pCallbackfn)(void));
761QDF_STATUS sme_set_auto_shutdown_timer(tHalHandle hHal, uint32_t timer_value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800762#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530763QDF_STATUS sme_roam_channel_change_req(tHalHandle hHal,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700764 struct qdf_mac_addr bssid,
Amar Singhal5cccafe2017-02-15 12:42:58 -0800765 struct ch_params *ch_params,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700766 tCsrRoamProfile *profile);
767
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530768QDF_STATUS sme_roam_start_beacon_req(tHalHandle hHal,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530769 struct qdf_mac_addr bssid, uint8_t dfsCacWaitStatus);
770QDF_STATUS sme_roam_csa_ie_request(tHalHandle hHal, struct qdf_mac_addr bssid,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700771 uint8_t targetChannel, uint8_t csaIeReqd,
Amar Singhal5cccafe2017-02-15 12:42:58 -0800772 struct ch_params *ch_params);
Amar Singhale4f28ee2015-10-21 14:36:56 -0700773
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530774QDF_STATUS sme_init_thermal_info(tHalHandle hHal,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700775 tSmeThermalParams thermalParam);
776
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530777QDF_STATUS sme_set_thermal_level(tHalHandle hHal, uint8_t level);
778QDF_STATUS sme_txpower_limit(tHalHandle hHal, tSirTxPowerLimit *psmetx);
779QDF_STATUS sme_get_link_speed(tHalHandle hHal, tSirLinkSpeedInfo *lsReq,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800780 void *plsContext,
781 void (*pCallbackfn)(tSirLinkSpeedInfo *indParam,
782 void *pContext));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530783QDF_STATUS sme_modify_add_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800784 tSirModifyIE *pModifyIE, eUpdateIEsType updateType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530785QDF_STATUS sme_update_add_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800786 tSirUpdateIE *pUpdateIE, eUpdateIEsType updateType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530787QDF_STATUS sme_update_connect_debug(tHalHandle hHal, uint32_t set_value);
Sreelakshmi Konamki39acb132015-12-16 13:06:22 +0530788const char *sme_request_type_to_string(const uint8_t request_type);
Rajeev Kumar43e25b12016-04-15 16:26:36 -0700789const char *sme_scan_type_to_string(const uint8_t scan_type);
790const char *sme_bss_type_to_string(const uint8_t bss_type);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530791QDF_STATUS sme_ap_disable_intra_bss_fwd(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800792 bool disablefwd);
793uint32_t sme_get_channel_bonding_mode5_g(tHalHandle hHal);
794uint32_t sme_get_channel_bonding_mode24_g(tHalHandle hHal);
795#ifdef WLAN_FEATURE_STATS_EXT
796typedef struct sStatsExtRequestReq {
797 uint32_t request_data_len;
798 uint8_t *request_data;
799} tStatsExtRequestReq, *tpStatsExtRequestReq;
800typedef void (*StatsExtCallback)(void *, tStatsExtEvent *);
801void sme_stats_ext_register_callback(tHalHandle hHal,
802 StatsExtCallback callback);
lifeng66831662017-05-19 16:01:35 +0800803/**
804 * sme_register_stats_ext2_callback() - Register stats ext2 register
805 * @hal_handle: hal handle for getting global mac struct
806 * @stats_ext2_cb: callback to be registered
807 *
808 * This function will register a callback for frame aggregation failure
809 * indications processing.
810 *
811 * Return: void
812 */
813void sme_stats_ext2_register_callback(tHalHandle hal_handle,
814 void (*stats_ext2_cb)(void *, struct sir_sme_rx_aggr_hole_ind *));
815
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530816void sme_stats_ext_deregister_callback(tHalHandle hhal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530817QDF_STATUS sme_stats_ext_request(uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800818 tpStatsExtRequestReq input);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530819QDF_STATUS sme_stats_ext_event(tHalHandle hHal, void *pMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800820#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530821QDF_STATUS sme_update_dfs_scan_mode(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800822 uint8_t sessionId,
823 uint8_t allowDFSChannelRoam);
824uint8_t sme_get_dfs_scan_mode(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800825
826#ifdef FEATURE_WLAN_EXTSCAN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530827QDF_STATUS sme_get_valid_channels_by_band(tHalHandle hHal, uint8_t wifiBand,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800828 uint32_t *aValidChannels,
829 uint8_t *pNumChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530830QDF_STATUS sme_ext_scan_get_capabilities(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800831 tSirGetExtScanCapabilitiesReqParams *pReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530832QDF_STATUS sme_ext_scan_start(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800833 tSirWifiScanCmdReqParams *pStartCmd);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530834QDF_STATUS sme_ext_scan_stop(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800835 tSirExtScanStopReqParams *pStopReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530836QDF_STATUS sme_set_bss_hotlist(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800837 tSirExtScanSetBssidHotListReqParams *
838 pSetHotListReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530839QDF_STATUS sme_reset_bss_hotlist(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800840 tSirExtScanResetBssidHotlistReqParams *
841 pResetReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530842QDF_STATUS sme_set_significant_change(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800843 tSirExtScanSetSigChangeReqParams *
844 pSetSignificantChangeReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530845QDF_STATUS sme_reset_significant_change(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800846 tSirExtScanResetSignificantChangeReqParams
847 *pResetReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530848QDF_STATUS sme_get_cached_results(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800849 tSirExtScanGetCachedResultsReqParams *
850 pCachedResultsReq);
851
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530852QDF_STATUS sme_set_epno_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800853 struct wifi_epno_params *req_msg);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530854QDF_STATUS sme_set_passpoint_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800855 struct wifi_passpoint_req *req_msg);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530856QDF_STATUS sme_reset_passpoint_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800857 struct wifi_passpoint_req *req_msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800858
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530859QDF_STATUS sme_ext_scan_register_callback(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800860 void (*pExtScanIndCb)(void *, const uint16_t, void *));
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800861#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530862static inline QDF_STATUS sme_ext_scan_register_callback(tHalHandle hHal,
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800863 void (*pExtScanIndCb)(void *, const uint16_t, void *))
864{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530865 return QDF_STATUS_SUCCESS;
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800866}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800867#endif /* FEATURE_WLAN_EXTSCAN */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530868QDF_STATUS sme_abort_roam_scan(tHalHandle hHal, uint8_t sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800869#ifdef WLAN_FEATURE_LINK_LAYER_STATS
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530870QDF_STATUS sme_ll_stats_clear_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800871 tSirLLStatsClearReq * pclearStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530872QDF_STATUS sme_ll_stats_set_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800873 tSirLLStatsSetReq *psetStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530874QDF_STATUS sme_ll_stats_get_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800875 tSirLLStatsGetReq *pgetStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530876QDF_STATUS sme_set_link_layer_stats_ind_cb(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800877 void (*callbackRoutine)(void *callbackCtx,
878 int indType, void *pRsp));
Zhang Qiana6e9c102016-12-22 16:47:24 +0800879QDF_STATUS sme_set_link_layer_ext_cb(tHalHandle hal,
880 void (*ll_stats_ext_cb)(tHddHandle callback_ctx,
881 tSirLLStatsResults * rsp));
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530882QDF_STATUS sme_reset_link_layer_stats_ind_cb(tHalHandle hhal);
Zhang Qian73c348a2017-03-13 16:15:55 +0800883QDF_STATUS sme_ll_stats_set_thresh(tHalHandle hal,
884 struct sir_ll_ext_stats_threshold *threshold);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800885#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
886
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530887QDF_STATUS sme_fw_mem_dump(tHalHandle hHal, void *recvd_req);
888QDF_STATUS sme_fw_mem_dump_register_cb(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800889 void (*callback_routine)(void *cb_context,
890 struct fw_dump_rsp *rsp));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530891QDF_STATUS sme_fw_mem_dump_unregister_cb(tHalHandle hHal);
Manikandan Mohan80dea792016-04-28 16:36:48 -0700892QDF_STATUS sme_set_wisa_params(tHalHandle hal,
893 struct sir_wisa_params *wisa_params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800894#ifdef WLAN_FEATURE_ROAM_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530895QDF_STATUS sme_update_roam_offload_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800896 bool nRoamOffloadEnabled);
Deepak Dhamdheref2a7d8b2016-08-19 16:17:38 -0700897QDF_STATUS sme_update_roam_key_mgmt_offload_enabled(tHalHandle hal_ctx,
898 uint8_t session_id,
899 bool key_mgmt_offload_enabled,
Deepak Dhamdhere828f1892017-02-09 11:51:19 -0800900 struct pmkid_mode_bits *pmkid_modes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800901#endif
902#ifdef WLAN_FEATURE_NAN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530903QDF_STATUS sme_nan_event(tHalHandle hHal, void *pMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800904#endif /* WLAN_FEATURE_NAN */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530905QDF_STATUS sme_get_link_status(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800906 tCsrLinkStatusCallback callback,
907 void *pContext, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530908QDF_STATUS sme_get_temperature(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800909 void *tempContext,
910 void (*pCallbackfn)(int temperature,
911 void *pContext));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530912QDF_STATUS sme_set_scanning_mac_oui(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800913 tSirScanMacOui *pScanMacOui);
914
915#ifdef IPA_OFFLOAD
916/* ---------------------------------------------------------------------------
917 \fn sme_ipa_offload_enable_disable
918 \brief API to enable/disable IPA offload
919 \param hHal - The handle returned by macOpen.
920 \param sessionId - Session Identifier
921 \param pRequest - Pointer to the offload request.
Deepak Dhamdhere0f076bd2016-06-02 11:29:21 -0700922 \return QDF_STATUS
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800923 ---------------------------------------------------------------------------*/
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530924QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800925 uint8_t session_id,
926 struct sir_ipa_offload_enable_disable *request);
927#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530928static inline QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800929 uint8_t session_id,
930 struct sir_ipa_offload_enable_disable *request)
931{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530932 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800933}
934#endif /* IPA_OFFLOAD */
935
936#ifdef DHCP_SERVER_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530937QDF_STATUS sme_set_dhcp_srv_offload(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800938 tSirDhcpSrvOffloadInfo * pDhcpSrvInfo);
939#endif /* DHCP_SERVER_OFFLOAD */
940#ifdef WLAN_FEATURE_GPIO_LED_FLASHING
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530941QDF_STATUS sme_set_led_flashing(tHalHandle hHal, uint8_t type,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800942 uint32_t x0, uint32_t x1);
943#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530944QDF_STATUS sme_handle_dfs_chan_scan(tHalHandle hHal, uint8_t dfs_flag);
945QDF_STATUS sme_set_mas(uint32_t val);
946QDF_STATUS sme_set_miracast(tHalHandle hal, uint8_t filter_type);
947QDF_STATUS sme_ext_change_channel(tHalHandle hHal, uint32_t channel,
Abhishek Singh518323d2015-10-19 17:42:01 +0530948 uint8_t session_id);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800949
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530950QDF_STATUS sme_configure_modulated_dtim(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800951 uint32_t modulated_dtim);
952
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530953QDF_STATUS sme_configure_stats_avg_factor(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800954 uint16_t stats_avg_factor);
955
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530956QDF_STATUS sme_configure_guard_time(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800957 uint32_t guard_time);
958
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530959QDF_STATUS sme_wifi_start_logger(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800960 struct sir_wifi_start_log start_log);
961
962bool sme_neighbor_middle_of_roaming(tHalHandle hHal,
963 uint8_t sessionId);
964
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530965QDF_STATUS sme_enable_uapsd_for_ac(void *cds_ctx, uint8_t sta_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800966 sme_ac_enum_type ac, uint8_t tid,
967 uint8_t pri, uint32_t srvc_int,
968 uint32_t sus_int,
Abhishek Singh12be60f2017-08-11 13:52:42 +0530969 enum sme_qos_wmm_dir_type dir,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800970 uint8_t psb, uint32_t sessionId,
971 uint32_t delay_interval);
972
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530973QDF_STATUS sme_disable_uapsd_for_ac(void *cds_ctx, uint8_t sta_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800974 sme_ac_enum_type ac,
975 uint32_t sessionId);
976
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530977QDF_STATUS sme_set_rssi_monitoring(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800978 struct rssi_monitor_req *input);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530979QDF_STATUS sme_set_rssi_threshold_breached_cb(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800980 void (*cb)(void *, struct rssi_breach_event *));
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530981QDF_STATUS sme_reset_rssi_threshold_breached_cb(tHalHandle hal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800982
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530983QDF_STATUS sme_register_mgmt_frame_ind_callback(tHalHandle hal,
Abhishek Singh7996eb72015-12-30 17:24:02 +0530984 sir_mgmt_frame_ind_callback callback);
985
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530986QDF_STATUS sme_update_nss(tHalHandle h_hal, uint8_t nss);
Archana Ramachandran5041b252016-04-25 14:29:25 -0700987void sme_update_user_configured_nss(tHalHandle hal, uint8_t nss);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800988
989bool sme_is_any_session_in_connected_state(tHalHandle h_hal);
990
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800991QDF_STATUS sme_pdev_set_pcl(struct policy_mgr_pcl_list msg);
992QDF_STATUS sme_pdev_set_hw_mode(struct policy_mgr_hw_mode msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800993void sme_register_hw_mode_trans_cb(tHalHandle hal,
994 hw_mode_transition_cb callback);
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800995QDF_STATUS sme_nss_update_request(uint32_t vdev_id,
996 uint8_t new_nss, policy_mgr_nss_update_cback cback,
997 uint8_t next_action, struct wlan_objmgr_psoc *psoc,
998 enum policy_mgr_conn_update_reason reason);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800999
1000typedef void (*sme_peer_authorized_fp) (uint32_t vdev_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301001QDF_STATUS sme_set_peer_authorized(uint8_t *peer_addr,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001002 sme_peer_authorized_fp auth_fp,
1003 uint32_t vdev_id);
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001004QDF_STATUS sme_soc_set_dual_mac_config(struct policy_mgr_dual_mac_config msg);
Archana Ramachandrand41c3ed2016-02-10 15:48:06 -08001005QDF_STATUS sme_soc_set_antenna_mode(tHalHandle hal,
1006 struct sir_antenna_mode_param *msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001007
1008void sme_set_scan_disable(tHalHandle h_hal, int value);
1009void sme_setdef_dot11mode(tHalHandle hal);
1010
Amar Singhal7c1e8982016-05-19 15:08:09 -07001011QDF_STATUS sme_handle_set_fcc_channel(tHalHandle hHal,
Amar Singhal83a047a2016-05-19 15:56:11 -07001012 bool fcc_constraint,
1013 bool scan_pending);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001014
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301015QDF_STATUS sme_update_roam_scan_hi_rssi_scan_params(tHalHandle hal_handle,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001016 uint8_t session_id,
1017 uint32_t notify_id,
1018 int32_t val);
1019
1020void wlan_sap_enable_phy_error_logs(tHalHandle hal, bool enable_log);
Agrawal Ashishb141b092016-09-02 19:59:26 +05301021#ifdef WLAN_FEATURE_DSRC
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001022void sme_set_dot11p_config(tHalHandle hal, bool enable_dot11p);
1023
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301024QDF_STATUS sme_ocb_set_config(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001025 ocb_callback callback,
1026 struct sir_ocb_config *config);
1027
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301028QDF_STATUS sme_ocb_set_utc_time(tHalHandle hHal, struct sir_ocb_utc *utc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001029
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301030QDF_STATUS sme_ocb_start_timing_advert(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001031 struct sir_ocb_timing_advert *timing_advert);
1032
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301033QDF_STATUS sme_ocb_stop_timing_advert(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001034 struct sir_ocb_timing_advert *timing_advert);
1035
Naveen Rawatb4d37622015-11-13 16:15:25 -08001036int sme_ocb_gen_timing_advert_frame(tHalHandle hHal, tSirMacAddr self_addr,
1037 uint8_t **buf, uint32_t *timestamp_offset,
1038 uint32_t *time_value_offset);
1039
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301040QDF_STATUS sme_ocb_get_tsf_timer(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001041 ocb_callback callback,
1042 struct sir_ocb_get_tsf_timer *request);
1043
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301044QDF_STATUS sme_dcc_get_stats(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001045 ocb_callback callback,
1046 struct sir_dcc_get_stats *request);
1047
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301048QDF_STATUS sme_dcc_clear_stats(tHalHandle hHal, uint32_t vdev_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001049 uint32_t dcc_stats_bitmap);
1050
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301051QDF_STATUS sme_dcc_update_ndl(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001052 ocb_callback callback,
1053 struct sir_dcc_update_ndl *request);
1054
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301055QDF_STATUS sme_register_for_dcc_stats_event(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001056 ocb_callback callback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301057QDF_STATUS sme_deregister_for_dcc_stats_event(tHalHandle hHal);
1058
Agrawal Ashishb141b092016-09-02 19:59:26 +05301059#else
1060static inline void sme_set_dot11p_config(tHalHandle hal, bool enable_dot11p)
1061{
1062 return;
1063}
1064
1065static inline QDF_STATUS sme_ocb_set_config(tHalHandle hHal, void *context,
1066 ocb_callback callback,
1067 struct sir_ocb_config *config)
1068{
1069 return QDF_STATUS_SUCCESS;
1070}
1071
1072static inline QDF_STATUS sme_ocb_set_utc_time(struct sir_ocb_utc *utc)
1073{
1074 return QDF_STATUS_SUCCESS;
1075}
1076
1077static inline QDF_STATUS sme_ocb_start_timing_advert(
1078 struct sir_ocb_timing_advert *timing_advert)
1079{
1080 return QDF_STATUS_SUCCESS;
1081}
1082
1083static inline QDF_STATUS sme_ocb_stop_timing_advert(struct sir_ocb_timing_advert
1084 *timing_advert)
1085{
1086 return QDF_STATUS_SUCCESS;
1087}
1088
1089static inline int sme_ocb_gen_timing_advert_frame(tHalHandle hHal,
1090 tSirMacAddr self_addr, uint8_t **buf,
1091 uint32_t *timestamp_offset,
1092 uint32_t *time_value_offset)
1093{
1094 return 0;
1095}
1096
1097static inline QDF_STATUS sme_ocb_get_tsf_timer(tHalHandle hHal, void *context,
1098 ocb_callback callback,
1099 struct sir_ocb_get_tsf_timer *request)
1100{
1101 return QDF_STATUS_SUCCESS;
1102}
1103
1104static inline QDF_STATUS sme_dcc_get_stats(tHalHandle hHal, void *context,
1105 ocb_callback callback,
1106 struct sir_dcc_get_stats *request)
1107{
1108 return QDF_STATUS_SUCCESS;
1109}
1110
1111static inline QDF_STATUS sme_dcc_clear_stats(uint32_t vdev_id,
1112 uint32_t dcc_stats_bitmap)
1113{
1114 return QDF_STATUS_SUCCESS;
1115}
1116
1117static inline QDF_STATUS sme_dcc_update_ndl(tHalHandle hHal, void *context,
1118 ocb_callback callback,
1119 struct sir_dcc_update_ndl *request)
1120{
1121 return QDF_STATUS_SUCCESS;
1122}
1123
1124static inline QDF_STATUS sme_register_for_dcc_stats_event(tHalHandle hHal,
1125 void *context, ocb_callback callback)
1126{
1127 return QDF_STATUS_SUCCESS;
1128}
1129static inline QDF_STATUS sme_deregister_for_dcc_stats_event(tHalHandle hHal)
1130{
1131 return QDF_STATUS_SUCCESS;
1132}
1133#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001134void sme_add_set_thermal_level_callback(tHalHandle hal,
1135 sme_set_thermal_level_callback callback);
1136
Krishna Kumaar Natarajan052c6e62015-09-28 15:32:55 -07001137void sme_update_tgt_services(tHalHandle hal, struct wma_tgt_services *cfg);
Edhar, Mahesh Kumardf2ec122015-11-16 11:33:16 +05301138bool sme_validate_sap_channel_switch(tHalHandle hal,
1139 uint16_t sap_ch, eCsrPhyMode sap_phy_mode,
1140 uint8_t cc_switch_mode, uint8_t session_id);
Masti, Narayanraddic4a7ab82015-11-25 15:41:10 +05301141
Chandrasekaran, Manishekar2859de42016-02-11 16:17:38 +05301142bool sme_is_session_id_valid(tHalHandle hal, uint32_t session_id);
1143
Masti, Narayanraddic4a7ab82015-11-25 15:41:10 +05301144#ifdef FEATURE_WLAN_TDLS
1145void sme_get_opclass(tHalHandle hal, uint8_t channel, uint8_t bw_offset,
1146 uint8_t *opclass);
1147#else
1148static inline void
1149sme_get_opclass(tHalHandle hal, uint8_t channel, uint8_t bw_offset,
1150 uint8_t *opclass)
1151{
1152}
1153#endif
1154
Ravi Joshi61c3c7a2015-11-09 18:41:20 -08001155#ifdef FEATURE_LFR_SUBNET_DETECTION
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301156QDF_STATUS sme_gateway_param_update(tHalHandle hHal,
Ravi Joshi61c3c7a2015-11-09 18:41:20 -08001157 struct gateway_param_update_req *request);
1158#endif
1159
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001160#ifdef FEATURE_GREEN_AP
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301161QDF_STATUS sme_send_egap_conf_params(uint32_t enable,
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001162 uint32_t inactivity_time,
1163 uint32_t wait_time,
1164 uint32_t flags);
1165#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301166static inline QDF_STATUS sme_send_egap_conf_params(uint32_t enable,
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001167 uint32_t inactivity_time,
1168 uint32_t wait_time,
1169 uint32_t flags)
1170{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301171 return QDF_STATUS_E_NOSUPPORT;
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001172}
1173#endif
Krunal Sonie3531942016-04-12 17:43:53 -07001174
Selvaraj, Sridhar57bb4d02016-08-31 16:14:15 +05301175void sme_update_fine_time_measurement_capab(tHalHandle hal, uint8_t session_id,
1176 uint32_t val);
Sandeep Puligillae0875662016-02-12 16:09:21 -08001177QDF_STATUS sme_ht40_stop_obss_scan(tHalHandle hHal, uint32_t vdev_id);
Anurag Chouhanbf5e0e22016-09-12 12:54:09 +05301178QDF_STATUS sme_set_fw_test(struct set_fwtest_params *fw_test);
Manikandan Mohandcc21ba2016-03-15 14:31:56 -07001179QDF_STATUS sme_set_tsfcb(tHalHandle hHal,
1180 int (*cb_fn)(void *cb_ctx, struct stsf *ptsf), void *cb_ctx);
Krunal Sonie3531942016-04-12 17:43:53 -07001181
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301182QDF_STATUS sme_reset_tsfcb(tHalHandle h_hal);
1183
Manikandan Mohan976e7562016-03-15 16:33:31 -07001184#ifdef WLAN_FEATURE_TSF
1185QDF_STATUS sme_set_tsf_gpio(tHalHandle h_hal, uint32_t pinvalue);
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301186QDF_STATUS sme_reset_tsf_gpio(tHalHandle h_hal);
1187
Manikandan Mohan976e7562016-03-15 16:33:31 -07001188#else
1189static inline QDF_STATUS sme_set_tsf_gpio(tHalHandle h_hal, uint32_t pinvalue)
1190{
1191 return QDF_STATUS_E_FAILURE;
1192}
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301193static inline QDF_STATUS sme_reset_tsf_gpio(tHalHandle h_hal)
1194{
1195 return QDF_STATUS_E_FAILURE;
1196}
1197
Manikandan Mohan976e7562016-03-15 16:33:31 -07001198#endif
1199
Archana Ramachandran20d2e232016-02-11 16:58:40 -08001200QDF_STATUS sme_update_mimo_power_save(tHalHandle hHal,
1201 uint8_t is_ht_smps_enabled,
Archana Ramachandranfec24812016-02-16 16:31:56 -08001202 uint8_t ht_smps_mode,
1203 bool send_smps_action);
Archana Ramachandran20d2e232016-02-11 16:58:40 -08001204
1205bool sme_is_sta_smps_allowed(tHalHandle hHal, uint8_t session_id);
Gupta, Kapil4cb1d7d2016-04-16 18:16:25 -07001206QDF_STATUS sme_add_beacon_filter(tHalHandle hal,
1207 uint32_t session_id, uint32_t *ie_map);
1208QDF_STATUS sme_remove_beacon_filter(tHalHandle hal, uint32_t session_id);
Arun Khandavalli2476ef52016-04-26 20:19:43 +05301209
Jeff Johnsona867e0c2017-01-26 13:43:51 -08001210/**
1211 * sme_get_bpf_offload_capabilities() - Get BPF offload capabilities
1212 * @hal: Global HAL handle
1213 * @callback: Callback function to be called with the result
1214 * @context: Opaque context to be used by the caller to associate the
1215 * request with the response
1216 *
1217 * This function constructs the cds message and fill in message type,
1218 * post the same to WDA.
1219 *
1220 * Return: QDF_STATUS enumeration
1221 */
1222QDF_STATUS sme_get_bpf_offload_capabilities(tHalHandle hal,
1223 bpf_get_offload_cb callback,
1224 void *context);
1225
Arun Khandavalli2476ef52016-04-26 20:19:43 +05301226QDF_STATUS sme_set_bpf_instructions(tHalHandle hal,
1227 struct sir_bpf_set_offload *);
Abhishek Singh1c676222016-05-09 14:20:28 +05301228uint32_t sme_get_wni_dot11_mode(tHalHandle hal);
Manjunathappa Prakash59f861d2016-04-21 10:33:31 -07001229QDF_STATUS sme_create_mon_session(tHalHandle hal_handle, uint8_t *bssid);
Gupta, Kapil96c7f2f2016-04-25 19:13:41 +05301230QDF_STATUS sme_set_adaptive_dwelltime_config(tHalHandle hal,
1231 struct adaptive_dwelltime_params *dwelltime_params);
Naveen Rawata410c5a2016-09-19 14:22:33 -07001232
1233void sme_set_vdev_ies_per_band(tHalHandle hal, uint8_t vdev_id);
Kiran Kumar Lokere666bf852016-05-02 12:23:02 -07001234void sme_set_pdev_ht_vht_ies(tHalHandle hHal, bool enable2x2);
1235
1236void sme_update_vdev_type_nss(tHalHandle hal, uint8_t max_supp_nss,
1237 uint32_t vdev_type_nss, eCsrBand band);
Nitesh Shahdb5ea0d2017-03-22 15:17:47 +05301238void sme_update_hw_dbs_capable(tHalHandle hal, uint8_t hw_dbs_capable);
Peng Xu8fdaa492016-06-22 10:20:47 -07001239void sme_register_p2p_lo_event(tHalHandle hHal, void *context,
1240 p2p_lo_callback callback);
Manjeet Singhf82ed072016-07-08 11:40:00 +05301241
Abhishek Singhc9941602016-08-09 16:06:22 +05301242QDF_STATUS sme_remove_bssid_from_scan_list(tHalHandle hal,
1243 tSirMacAddr bssid);
1244
Manjeet Singhf82ed072016-07-08 11:40:00 +05301245QDF_STATUS sme_process_mac_pwr_dbg_cmd(tHalHandle hal, uint32_t session_id,
1246 struct sir_mac_pwr_dbg_cmd*
1247 dbg_args);
1248
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001249void sme_get_vdev_type_nss(enum tQDF_ADAPTER_MODE dev_mode,
Tushnim Bhattacharyyaf44a9d82016-07-05 10:52:06 -07001250 uint8_t *nss_2g, uint8_t *nss_5g);
Masti, Narayanraddiab712a72016-08-04 11:59:11 +05301251QDF_STATUS sme_roam_set_default_key_index(tHalHandle hal, uint8_t session_id,
1252 uint8_t default_idx);
Selvaraj, Sridhar4577a9b2016-09-04 15:17:07 +05301253QDF_STATUS sme_register_p2p_ack_ind_callback(tHalHandle hal,
1254 sir_p2p_ack_ind_callback callback);
Kondabattini, Ganesh3f2d02c2016-09-13 12:23:47 +05301255void sme_send_disassoc_req_frame(tHalHandle hal, uint8_t session_id, uint8_t
1256 *peer_mac, uint16_t reason, uint8_t
1257 wait_for_ack);
Kondabattini, Ganeshe4f18e02016-09-13 13:01:22 +05301258QDF_STATUS sme_update_access_policy_vendor_ie(tHalHandle hal,
1259 uint8_t session_id, uint8_t *vendor_ie,
1260 int access_policy);
1261
Krishna Kumaar Natarajanf1581df2017-02-21 13:42:08 -08001262/**
1263 * sme_set_peer_param() - set peer param
1264 * @vdev_id: vdev ID
1265 * @peer_addr: peer MAC address
1266 * @param_id: param ID to be updated
1267 * @param_Value: paraam value
1268 *
1269 * This SME API is used to send the peer param to WMA to be sent to FW.
1270 *
1271 * Return: QDF_STATUS
1272 */
1273QDF_STATUS sme_set_peer_param(uint8_t *peer_addr, uint32_t param_id,
1274 uint32_t param_value, uint32_t vdev_id);
1275
Agrawal Ashish21ba2572016-09-03 16:40:10 +05301276QDF_STATUS sme_update_sta_roam_policy(tHalHandle hal,
1277 enum sta_roam_policy_dfs_mode dfs_mode,
1278 bool skip_unsafe_channels,
Agrawal, Ashish9f84c402016-11-30 16:19:44 +05301279 uint8_t session_id, uint8_t sap_operating_band);
Selvaraj, Sridharebda0f22016-08-29 16:05:23 +05301280QDF_STATUS sme_enable_disable_chanavoidind_event(tHalHandle hal,
1281 uint8_t set_value);
Deepak Dhamdhereb106ae52016-08-10 20:55:30 +05301282QDF_STATUS sme_set_default_scan_ie(tHalHandle hal, uint16_t session_id,
1283 uint8_t *ie_data, uint16_t ie_len);
Selvaraj, Sridhar7231c5f2016-09-28 12:42:33 +05301284/**
1285 * sme_update_session_param() - API to update PE session param
1286 * @hal: HAL handle for device
1287 * @session_id: Session ID
1288 * @param_type: Param type to be updated
1289 * @param_val: Param value to be update
1290 *
1291 * Note: this setting will not persist over reboots.
1292 *
1293 * Return: QDF_STATUS
1294 */
1295QDF_STATUS sme_update_session_param(tHalHandle hal, uint8_t session_id,
1296 uint32_t param_type, uint32_t param_val);
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301297
Padma, Santhosh Kumar72e7aec2016-10-12 17:23:44 +05301298#ifdef WLAN_FEATURE_DISA
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301299/**
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301300 * sme_encrypt_decrypt_msg() - handles encrypt/decrypt mesaage
1301 * @hal: HAL handle
1302 * @encrypt_decrypt_params: struct to set encryption/decryption params.
Jeff Johnsone8216e82017-01-26 15:54:51 -08001303 * @callback: callback function to be called with the result
1304 * @context: Opaque context to be passed to callback function
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301305 *
1306 * Return: QDF_STATUS enumeration.
1307 */
1308QDF_STATUS sme_encrypt_decrypt_msg(tHalHandle hal,
Jeff Johnsone8216e82017-01-26 15:54:51 -08001309 struct encrypt_decrypt_req_params *encrypt_decrypt_params,
1310 sme_encrypt_decrypt_callback callback,
1311 void *context);
Padma, Santhosh Kumar72e7aec2016-10-12 17:23:44 +05301312#endif
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301313
Jeff Johnson6136fb92017-03-30 15:21:49 -07001314#ifdef WLAN_FEATURE_FIPS
1315/**
1316 * sme_fips_request() - Perform a FIPS certification operation
1317 * @hal: Hal handle for the object being certified
1318 * @param: The FIPS certification parameters
1319 * @callback: Callback function to invoke with the results
1320 * @context: Opaque context to pass back to caller in the callback
1321 *
1322 * Return: QDF_STATUS_SUCCESS if the request is successfully sent
1323 * to firmware for processing, otherwise an error status.
1324 */
1325QDF_STATUS sme_fips_request(tHalHandle hal, struct fips_params *param,
1326 wma_fips_cb callback, void *context);
1327#else
1328static inline
1329QDF_STATUS sme_fips_request(tHalHandle hal, struct fips_params *param,
1330 wma_fips_cb callback, void *context)
1331{
1332 return QDF_STATUS_E_NOSUPPORT;
1333}
1334#endif /* WLAN_FEATURE_FIPS */
1335
Agrawal Ashishb2d1a452016-05-05 12:23:58 +05301336/**
1337 * sme_set_cts2self_for_p2p_go() - sme function to set ini parms to FW.
1338 * @hal: reference to the HAL
1339 *
1340 * Return: QDF_STATUS
1341 */
1342QDF_STATUS sme_set_cts2self_for_p2p_go(tHalHandle hal);
Kiran Kumar Lokere1aa9c9a2016-10-05 18:50:59 -07001343void sme_set_prefer_80MHz_over_160MHz(tHalHandle hal,
1344 bool sta_prefer_80MHz_over_160MHz);
Agrawal, Ashish35b251d2016-09-08 19:21:03 +05301345QDF_STATUS sme_update_tx_fail_cnt_threshold(tHalHandle hal_handle,
1346 uint8_t session_id, uint32_t tx_fail_count);
Agrawal Ashishda3e9502016-09-21 17:43:51 +05301347QDF_STATUS sme_update_short_retry_limit_threshold(tHalHandle hal_handle,
1348 struct sme_short_retry_limit *short_retry_limit_th);
1349QDF_STATUS sme_update_long_retry_limit_threshold(tHalHandle hal_handle,
1350 struct sme_long_retry_limit *long_retry_limit_th);
yeshwanth sriram guntukaa1ba9a22017-02-28 16:17:32 +05301351/**
1352 * sme_roam_is_ese_assoc() - Check if association type is ESE
1353 * @roam_info: Pointer to roam info
1354 *
1355 * Return: true if ESE Association, false otherwise.
1356 */
1357#ifdef FEATURE_WLAN_ESE
1358bool sme_roam_is_ese_assoc(tCsrRoamInfo *roam_info);
1359#else
1360static inline bool sme_roam_is_ese_assoc(tCsrRoamInfo *roam_info)
1361{
1362 return false;
1363}
1364#endif
1365/**
1366 * sme_neighbor_roam_is11r_assoc() - Check if association type is 11R
1367 * @hal_ctx: HAL handle
1368 * @session_id: session id
1369 *
1370 * Return: true if 11r Association, false otherwise.
1371 */
1372bool sme_neighbor_roam_is11r_assoc(tHalHandle hal_ctx, uint8_t session_id);
Agrawal, Ashish4e5fa1c2016-09-21 19:03:43 +05301373
1374/**
1375 * sme_update_sta_inactivity_timeout(): Update sta_inactivity_timeout to FW
1376 * @hal: Handle returned by mac_open
1377 * @sta_inactivity_timer: struct for sta inactivity timer
1378 *
1379 * If a station does not send anything in sta_inactivity_timeout seconds, an
1380 * empty data frame is sent to it in order to verify whether it is
1381 * still in range. If this frame is not ACKed, the station will be
1382 * disassociated and then deauthenticated.
1383 *
1384 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1385*/
1386QDF_STATUS sme_update_sta_inactivity_timeout(tHalHandle hal_handle,
1387 struct sme_sta_inactivity_timeout *sta_inactivity_timer);
1388
Sreelakshmi Konamki58c72432016-11-09 17:06:44 +05301389/**
1390 * sme_set_lost_link_info_cb() - plug in callback function for receiving
1391 * @hal: HAL handle
1392 * @cb: callback function
1393 *
1394 * Return: HAL status
1395 */
1396QDF_STATUS sme_set_lost_link_info_cb(tHalHandle hal,
1397 void (*cb)(void *, struct sir_lost_link_info *));
Yingying Tang95409972016-10-20 15:16:15 +08001398
Kapil Gupta8878ad92017-02-13 11:56:04 +05301399/**
1400 * sme_update_new_channel_event() - update new channel event for sapFsm
1401 * @hal: HAL handle
1402 * @session_id: session id
1403 *
1404 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1405 */
1406QDF_STATUS sme_update_new_channel_event(tHalHandle hal, uint8_t session_id);
Sridhar Selvarajdc400d22016-10-18 17:18:03 +05301407#ifdef WLAN_POWER_DEBUGFS
1408QDF_STATUS sme_power_debug_stats_req(tHalHandle hal, void (*callback_fn)
1409 (struct power_stats_response *response,
1410 void *context), void *power_stats_context);
1411#endif
Kabilan Kannan3c0a7352016-12-02 18:49:38 -08001412/**
1413 * sme_set_sar_power_limits() - set sar limits
1414 * @hal: HAL handle
1415 * @sar_limit_cmd: struct to send sar limit cmd.
1416 *
1417 * Return: QDF_STATUS enumeration.
1418 */
1419QDF_STATUS sme_set_sar_power_limits(tHalHandle hal,
1420 struct sar_limit_cmd_params *sar_limit_cmd);
Amar Singhal6edf9732016-11-20 21:43:40 -08001421void sme_set_cc_src(tHalHandle hal_handle, enum country_src);
Yingying Tang95409972016-10-20 15:16:15 +08001422
1423
1424#ifdef WLAN_FEATURE_WOW_PULSE
1425QDF_STATUS sme_set_wow_pulse(struct wow_pulse_mode *wow_pulse_set_info);
1426#endif
1427
Anurag Chouhan3920c0f2017-09-11 17:10:56 +05301428/* ARP DEBUG STATS */
1429QDF_STATUS sme_set_nud_debug_stats(tHalHandle hal,
1430 struct set_arp_stats_params
1431 *set_stats_param);
1432QDF_STATUS sme_get_nud_debug_stats(tHalHandle hal,
1433 struct get_arp_stats_params
1434 *get_stats_param);
1435QDF_STATUS sme_set_nud_debug_stats_cb(tHalHandle hal,
1436 void (*cb)(void *, struct rsp_stats *));
1437
Kapil Gupta4f0c0c12017-02-07 15:21:15 +05301438/**
1439 * sme_set_chan_info_callback() - Register chan info callback
1440 * @hal - MAC global handle
1441 * @callback_routine - callback routine from HDD
1442 *
1443 * This API is invoked by HDD to register its callback to mac
1444 *
1445 * Return: QDF_STATUS
1446 */
1447void sme_set_chan_info_callback(tHalHandle hal_handle,
1448 void (*callback)(struct scan_chan_info *chan_info));
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001449
1450/**
Hanumanth Reddy Pothula90051782017-05-04 22:14:43 +05301451 * sme_get_rssi_snr_by_bssid() - gets the rssi and snr by bssid from scan cache
1452 * @hal: handle returned by mac_open
1453 * @profile: current connected profile
1454 * @bssid: bssid to look for in scan cache
1455 * @rssi: rssi value found
1456 * @snr: snr value found
1457 *
1458 * Return: QDF_STATUS
1459 */
1460QDF_STATUS sme_get_rssi_snr_by_bssid(tHalHandle hal, tCsrRoamProfile *profile,
1461 const uint8_t *bssid, int8_t *rssi,
1462 int8_t *snr);
1463
1464/**
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001465 * sme_get_beacon_frm() - gets the bss descriptor from scan cache and prepares
1466 * beacon frame
1467 * @hal: handle returned by mac_open
1468 * @profile: current connected profile
1469 * @bssid: bssid to look for in scan cache
1470 * @frame_buf: frame buffer to populate
1471 * @frame_len: length of constructed frame
Selvaraj, Sridhar64b0a9c2017-05-11 16:50:15 +05301472 * @channel: Pointer to channel info to be filled
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001473 *
1474 * Return: QDF_STATUS
1475 */
1476QDF_STATUS sme_get_beacon_frm(tHalHandle hal, tCsrRoamProfile *profile,
1477 const tSirMacAddr bssid,
Selvaraj, Sridhar64b0a9c2017-05-11 16:50:15 +05301478 uint8_t **frame_buf, uint32_t *frame_len,
1479 int *channel);
Naveen Rawat4195c5e2017-05-22 17:07:45 -07001480/**
1481 * sme_fast_reassoc() - invokes FAST REASSOC command
1482 * @hal: handle returned by mac_open
1483 * @profile: current connected profile
1484 * @bssid: bssid to look for in scan cache
1485 * @channel: channel on which reassoc should be send
1486 * @vdev_id: vdev id
1487 *
1488 * Return: QDF_STATUS
1489 */
1490QDF_STATUS sme_fast_reassoc(tHalHandle hal, tCsrRoamProfile *profile,
1491 const tSirMacAddr bssid, int channel,
1492 uint8_t vdev_id);
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001493
Padma, Santhosh Kumar16dacfb2017-03-21 19:05:40 +05301494/**
1495 * sme_congestion_register_callback(): registers congestion callback
1496 * @hal: handler for HAL
1497 * @congestion_cb: congestion callback
1498 *
1499 * Return: QDF_STATUS
1500 */
1501QDF_STATUS sme_congestion_register_callback(tHalHandle hal,
1502 void (*congestion_cb)(void *, uint32_t congestion, uint32_t vdev_id));
1503
Nitesh Shah99dd9552017-03-20 19:27:47 +05301504QDF_STATUS sme_delete_all_tdls_peers(tHalHandle hal, uint8_t session_id);
1505
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001506/**
Sreelakshmi Konamki88a2a412017-04-14 15:11:55 +05301507 * sme_rso_cmd_status_cb() - Set RSO cmd status callback
1508 * @hal: HAL Handle
1509 * @cb: HDD Callback to rso comman status read
1510 *
1511 * This function is used to save HDD RSO Command status callback in MAC
1512 *
1513 * Return: QDF_STATUS
1514 */
1515QDF_STATUS sme_rso_cmd_status_cb(tHalHandle hal,
1516 void (*cb)(void *, struct rso_cmd_status *));
1517
1518/**
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001519 * sme_register_set_connection_info_cb() - Register connection
1520 * info callback
1521 * @hal - MAC global handle
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001522 * @set_connection_info_cb - callback routine from HDD to set
1523 * connection info flag
1524 * @get_connection_info_cb - callback routine from HDD to get
1525 * connection info
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001526 *
1527 * This API is invoked by HDD to register its callback to mac
1528 *
1529 * Return: QDF_STATUS
1530 */
1531QDF_STATUS sme_register_set_connection_info_cb(tHalHandle hHal,
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001532 bool (*set_connection_info_cb)(bool),
1533 bool (*get_connection_info_cb)(uint8_t *session_id,
1534 enum scan_reject_states *reason));
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001535
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001536/**
Nitesh Shahf9a09ff2017-05-22 15:46:25 +05301537 * sme_set_dbs_scan_selection_config() - Update DBS scan selection
1538 * configuration
1539 * @hal: The handle returned by macOpen
1540 * @params: wmi_dbs_scan_sel_params config
1541 *
1542 * Return: QDF_STATUS if DBS scan selection update
1543 * configuration success else failure status
1544 */
1545QDF_STATUS sme_set_dbs_scan_selection_config(tHalHandle hal,
1546 struct wmi_dbs_scan_sel_params *params);
1547
1548/**
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001549 * sme_store_pdev() - store pdev
1550 * @hal - MAC global handle
1551 * @pdev - pdev ptr
1552 *
1553 * Return: QDF_STATUS
1554 */
1555void sme_store_pdev(tHalHandle hal, struct wlan_objmgr_pdev *pdev);
1556
Sandeep Puligillaf587adf2017-04-27 19:53:21 -07001557/**
1558 * sme_ipa_uc_stat_request() - set ipa config parameters
1559 * @vdev_id: virtual device for the command
1560 * @param_id: parameter id
1561 * @param_val: parameter value
1562 * @req_cat: parameter category
1563 *
1564 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1565 */
1566QDF_STATUS sme_ipa_uc_stat_request(tHalHandle hal,
1567 uint32_t vdev_id, uint32_t param_id,
1568 uint32_t param_val, uint32_t req_cat);
lifeng66831662017-05-19 16:01:35 +08001569
1570/**
1571 * sme_set_reorder_timeout() - set reorder timeout value
1572 * including Voice,Video,Besteffort,Background parameters
1573 * @hal: hal handle for getting global mac struct
1574 * @reg: struct sir_set_rx_reorder_timeout_val
1575 *
1576 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1577 */
1578QDF_STATUS sme_set_reorder_timeout(tHalHandle hal,
1579 struct sir_set_rx_reorder_timeout_val *req);
1580
1581/**
1582 * sme_set_rx_set_blocksize() - set blocksize value
1583 * including mac_addr and win_limit parameters
1584 * @hal: hal handle for getting global mac struct
1585 * @reg: struct sir_peer_set_rx_blocksize
1586 *
1587 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1588 */
1589
1590QDF_STATUS sme_set_rx_set_blocksize(tHalHandle hal,
1591 struct sir_peer_set_rx_blocksize *req);
1592
Ravi Kumar Bokka05c14e52017-03-27 14:48:23 +05301593/*
1594 * sme_set_chip_pwr_save_fail_cb() - set chip power save failure callback
1595 * @hal: global hal handle
1596 * @cb: callback function pointer
1597 *
1598 * This function stores the chip power save failure callback function.
1599 *
1600 * Return: QDF_STATUS enumeration.
1601 */
1602
1603QDF_STATUS sme_set_chip_pwr_save_fail_cb(tHalHandle hal, void (*cb)(void *,
1604 struct chip_pwr_save_fail_detected_params *));
Naveen Rawat247a8682017-06-05 15:00:31 -07001605/**
1606 * sme_cli_set_command() - SME wrapper API over WMA "set" command
1607 * processor cmd
1608 * @vdev_id: virtual device for the command
1609 * @param_id: parameter id
1610 * @sval: parameter value
1611 * @vpdev: parameter category
1612 *
1613 * Command handler for set operations
1614 *
1615 * Return: 0 on success, errno on failure
1616 */
1617int sme_cli_set_command(int vdev_id, int param_id, int sval, int vpdev);
Ravi Kumar Bokka05c14e52017-03-27 14:48:23 +05301618
Vidyullatha Kanchanapallybe0ebb32017-03-23 14:36:21 +05301619/**
1620 * sme_set_bt_activity_info_cb - set the callback handler for bt events
1621 * @hal: handle returned by mac_open
1622 * @cb: callback handler
1623 *
1624 * Return: QDF_STATUS
1625 */
1626QDF_STATUS sme_set_bt_activity_info_cb(tHalHandle hal,
1627 void (*cb)(void *, uint32_t profile_info));
1628
Will Huang558f8082017-05-31 16:22:24 +08001629/**
Ashish Kumar Dhanotiyab28338c2017-07-21 20:12:34 +05301630 * sme_set_smps_cfg() - set SMPS config params
1631 * @vdev_id: virtual device for the command
1632 * @param_id: parameter id
1633 * @param_val: parameter value
1634 *
1635 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1636 */
1637
1638QDF_STATUS sme_set_smps_cfg(uint32_t vdev_id, uint32_t param_id,
1639 uint32_t param_val);
1640/**
Will Huang558f8082017-05-31 16:22:24 +08001641 * sme_get_peer_info() - sme api to get peer info
1642 * @hal: hal handle for getting global mac struct
1643 * @req: peer info request struct send to wma
1644 * @context: context of callback function
1645 * @callbackfn: hdd callback function when receive response
1646 *
1647 * This function will send WMA_GET_PEER_INFO to WMA
1648 *
1649 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1650 */
1651QDF_STATUS sme_get_peer_info(tHalHandle hal,
1652 struct sir_peer_info_req req,
1653 void *context,
1654 void (*callbackfn)(struct sir_peer_info_resp *param,
1655 void *pcontext));
1656
1657/**
1658 * sme_get_peer_info_ext() - sme api to get peer ext info
1659 * @hal: hal handle for getting global mac struct
1660 * @req: peer ext info request struct send to wma
1661 * @context: context of callback function
1662 * @callbackfn: hdd callback function when receive response
1663 *
1664 * This function will send WMA_GET_PEER_INFO_EXT to WMA
1665 *
1666 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1667 */
1668QDF_STATUS sme_get_peer_info_ext(tHalHandle hal,
1669 struct sir_peer_info_ext_req *req,
1670 void *context,
1671 void (*callbackfn)(struct sir_peer_info_ext_resp *param,
1672 void *pcontext));
Manjeet Singha9cae432017-02-28 11:58:22 +05301673
Tushnim Bhattacharyya518e80f2017-08-30 17:35:33 -07001674/**
1675 * sme_set_5g_band_pref() - sme api to set 5Ghz preference
1676 * @hal: hal handle for getting global mac struct
1677 * @pref_params: preference info request struct
1678 *
1679 * This function will set 5Ghz preference for STA connection
1680 *
1681 * Return: None
1682 */
Manjeet Singha9cae432017-02-28 11:58:22 +05301683void sme_set_5g_band_pref(tHalHandle hal_handle,
1684 struct sme_5g_band_pref_params *pref_params);
1685
lifengd217d192017-05-09 19:44:16 +08001686/**
1687 * sme_get_chain_rssi() - Get chain rssi
1688 * @hal: Global HAL handle
1689 * @input: get chain rssi req params
1690 * @callback: Callback function to be called with the result
1691 * @context: Opaque context to be used by the caller to associate the
1692 * request with the response
1693 *
1694 * This function constructs the cds message and fill in message type,
1695 * post the same to WDA.
1696 *
1697 * Return: QDF_STATUS enumeration
1698 */
1699QDF_STATUS sme_get_chain_rssi(tHalHandle hal,
1700 struct get_chain_rssi_req_params *input,
1701 get_chain_rssi_callback callback,
1702 void *context);
Tushnim Bhattacharyyac3c375e2017-08-04 23:39:55 -07001703
1704/**
1705 * sme_get_valid_channels() - sme api to get valid channels for
1706 * current regulatory domain
1707 * @chan_list: list of the valid channels
1708 * @list_len: length of the channel list
1709 *
1710 * This function will get valid channels for current regulatory
1711 * domain
1712 *
1713 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1714 */
1715QDF_STATUS sme_get_valid_channels(uint8_t *chan_list, uint32_t *list_len);
Tushnim Bhattacharyya518e80f2017-08-30 17:35:33 -07001716
1717/**
1718 * sme_get_mac_context() - sme api to get the pmac context
1719 *
1720 * This function will return the pmac context
1721 *
1722 * Return: pointer to pmac context
1723 */
1724tpAniSirGlobal sme_get_mac_context(void);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001725#endif /* #if !defined( __SME_API_H ) */