blob: dbd5ecee0f6a5d1b06640feebdb4aafb3176f8ec [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_get_wps_session_overlap(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800337 void *pUsrContext,
338 void *pfnSapEventCallback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530339 struct qdf_mac_addr pRemoveMac);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530340QDF_STATUS sme_roam_get_connect_state(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800341 eCsrConnectState *pState);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530342QDF_STATUS sme_roam_get_connect_profile(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800343 tCsrRoamConnectedProfile *pProfile);
Naveen Rawatdf0a7e72016-01-06 18:35:53 -0800344void sme_roam_free_connect_profile(tCsrRoamConnectedProfile *profile);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530345QDF_STATUS sme_roam_set_pmkid_cache(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800346 tPmkidCacheInfo *pPMKIDCache,
347 uint32_t numItems,
348 bool update_entire_cache);
349
350#ifdef WLAN_FEATURE_ROAM_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530351QDF_STATUS sme_roam_set_psk_pmk(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800352 uint8_t *pPSK_PMK, size_t pmk_len);
353#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530354QDF_STATUS sme_roam_get_security_req_ie(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800355 uint32_t *pLen, uint8_t *pBuf,
356 eCsrSecurityType secType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530357QDF_STATUS sme_roam_get_security_rsp_ie(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800358 uint32_t *pLen, uint8_t *pBuf,
359 eCsrSecurityType secType);
360uint32_t sme_roam_get_num_pmkid_cache(tHalHandle hHal, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530361QDF_STATUS sme_roam_get_pmkid_cache(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800362 uint32_t *pNum,
363 tPmkidCacheInfo *pPmkidCache);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530364QDF_STATUS sme_get_config_param(tHalHandle hHal, tSmeConfigParams *pParam);
365QDF_STATUS sme_get_statistics(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800366 eCsrStatsRequesterType requesterId,
367 uint32_t statsMask, tCsrStatsCallback callback,
Naveen Rawatd0ca4412017-06-16 14:19:19 -0700368 uint8_t staId, void *pContext, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530369QDF_STATUS sme_get_rssi(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800370 tCsrRssiCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530371 uint8_t staId, struct qdf_mac_addr bssId, int8_t lastRSSI,
Jeff Johnson8bd23352017-09-26 11:39:24 -0700372 void *pContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530373QDF_STATUS sme_get_snr(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800374 tCsrSnrCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530375 uint8_t staId, struct qdf_mac_addr bssId, void *pContext);
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -0800376#ifdef FEATURE_WLAN_ESE
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530377QDF_STATUS sme_get_tsm_stats(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800378 tCsrTsmStatsCallback callback,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530379 uint8_t staId, struct qdf_mac_addr bssId,
Jeff Johnson30f84552017-09-13 14:55:25 -0700380 void *pContext, uint8_t tid);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530381QDF_STATUS sme_set_cckm_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800382 uint8_t sessionId,
383 uint8_t *pCckmIe, uint8_t cckmIeLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530384QDF_STATUS sme_set_ese_beacon_request(tHalHandle hHal, const uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800385 const tCsrEseBeaconReq *pEseBcnReq);
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -0800386QDF_STATUS sme_set_plm_request(tHalHandle hHal, tpSirPlmReq pPlm);
387#endif /*FEATURE_WLAN_ESE */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530388QDF_STATUS sme_cfg_set_int(tHalHandle hal, uint16_t cfg_id, uint32_t value);
389QDF_STATUS sme_cfg_set_str(tHalHandle hal, uint16_t cfg_id, uint8_t *str,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800390 uint32_t length);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530391QDF_STATUS sme_cfg_get_int(tHalHandle hal, uint16_t cfg_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800392 uint32_t *cfg_value);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530393QDF_STATUS sme_cfg_get_str(tHalHandle hal, uint16_t cfg_id, uint8_t *str,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800394 uint32_t *length);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530395QDF_STATUS sme_get_modify_profile_fields(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800396 tCsrRoamModifyProfileFields *
397 pModifyProfileFields);
398
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530399extern QDF_STATUS sme_set_host_power_save(tHalHandle hHal, bool psMode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800400
401void sme_set_dhcp_till_power_active_flag(tHalHandle hHal, uint8_t flag);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530402extern QDF_STATUS sme_register11d_scan_done_callback(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800403 csr_scan_completeCallback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530404void sme_deregister11d_scan_done_callback(tHalHandle hHal);
405
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800406#ifdef FEATURE_OEM_DATA_SUPPORT
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530407extern QDF_STATUS sme_register_oem_data_rsp_callback(tHalHandle h_hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800408 sme_send_oem_data_rsp_msg callback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530409void sme_deregister_oem_data_rsp_callback(tHalHandle h_hal);
410
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800411#else
Naveen Rawat910726a2017-03-06 11:42:51 -0800412static inline QDF_STATUS sme_register_oem_data_rsp_callback(tHalHandle hal,
413 void *callback)
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800414{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530415 return QDF_STATUS_SUCCESS;
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800416}
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530417static inline void sme_deregister_oem_data_rsp_callback(tHalHandle h_hal)
418{
419}
420
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800421#endif
422
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530423extern QDF_STATUS sme_wow_add_pattern(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800424 struct wow_add_pattern *pattern, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530425extern QDF_STATUS sme_wow_delete_pattern(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800426 struct wow_delete_pattern *pattern, uint8_t sessionId);
427
428void sme_register_ftm_msg_processor(tHalHandle hal,
429 hdd_ftm_msg_processor callback);
430
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530431extern QDF_STATUS sme_enter_wowl(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800432 void (*enter_wowl_callback_routine)(void
433 *callbackContext,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530434 QDF_STATUS status),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800435 void *enter_wowl_callback_context,
436#ifdef WLAN_WAKEUP_EVENTS
437 void (*wake_reason_ind_cb)(void *callbackContext,
438 tpSirWakeReasonInd
439 wake_reason_ind),
440 void *wake_reason_ind_cb_ctx,
441#endif /* WLAN_WAKEUP_EVENTS */
442 tpSirSmeWowlEnterParams wowl_enter_params,
443 uint8_t sessionId);
444
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530445extern QDF_STATUS sme_exit_wowl(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800446 tpSirSmeWowlExitParams wowl_exit_params);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530447QDF_STATUS sme_roam_set_key(tHalHandle, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800448 tCsrRoamSetKey *pSetKey, uint32_t *pRoamId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530449QDF_STATUS sme_get_country_code(tHalHandle hHal, uint8_t *pBuf, uint8_t *pbLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800450
451
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800452/* some support functions */
453bool sme_is11d_supported(tHalHandle hHal);
454bool sme_is11h_supported(tHalHandle hHal);
455bool sme_is_wmm_supported(tHalHandle hHal);
456
457typedef void (*tSmeChangeCountryCallback)(void *pContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530458QDF_STATUS sme_change_country_code(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800459 tSmeChangeCountryCallback callback,
460 uint8_t *pCountry,
461 void *pContext,
462 void *p_cds_context,
Srinivas Girigowda74a66d62017-06-21 23:28:25 -0700463 bool countryFromUserSpace,
464 bool sendRegHint);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530465QDF_STATUS sme_generic_change_country_code(tHalHandle hHal,
Amar Singhal7f1f3ec2015-10-13 17:14:08 -0700466 uint8_t *pCountry);
Rajeev Kumar8e3e2832015-11-06 16:02:54 -0800467QDF_STATUS sme_tx_fail_monitor_start_stop_ind(tHalHandle hHal,
468 uint8_t tx_fail_count,
469 void *txFailIndCallback);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530470QDF_STATUS sme_dhcp_start_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800471 uint8_t device_mode,
472 uint8_t *macAddr, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530473QDF_STATUS sme_dhcp_stop_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800474 uint8_t device_mode,
475 uint8_t *macAddr, uint8_t sessionId);
476void sme_set_cfg_privacy(tHalHandle hHal, tCsrRoamProfile *pProfile,
477 bool fPrivacy);
478void sme_get_recovery_stats(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530479QDF_STATUS sme_neighbor_report_request(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800480 tpRrmNeighborReq pRrmNeighborReq,
481 tpRrmNeighborRspCallbackInfo callbackInfo);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530482QDF_STATUS sme_get_wcnss_wlan_compiled_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800483 tSirVersionType * pVersion);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530484QDF_STATUS sme_get_wcnss_wlan_reported_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_software_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800487 uint8_t *pVersion, uint32_t versionBufferSize);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530488QDF_STATUS sme_get_wcnss_hardware_version(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800489 uint8_t *pVersion, uint32_t versionBufferSize);
490#ifdef FEATURE_WLAN_WAPI
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530491QDF_STATUS sme_scan_get_bkid_candidate_list(tHalHandle hHal, uint32_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800492 tBkidCandidateInfo * pBkidList,
493 uint32_t *pNumItems);
494#endif /* FEATURE_WLAN_WAPI */
495#ifdef FEATURE_OEM_DATA_SUPPORT
Krishna Kumaar Natarajanc1fa17d2016-08-03 14:19:20 -0700496QDF_STATUS sme_oem_data_req(tHalHandle hHal, struct oem_data_req *);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530497QDF_STATUS sme_oem_update_capability(tHalHandle hHal,
Krishna Kumaar Natarajan53ca2902015-12-04 14:01:46 -0800498 struct sme_oem_capability *cap);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530499QDF_STATUS sme_oem_get_capability(tHalHandle hHal,
Krishna Kumaar Natarajan53ca2902015-12-04 14:01:46 -0800500 struct sme_oem_capability *cap);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800501#endif /*FEATURE_OEM_DATA_SUPPORT */
Archana Ramachandran2eb7a612017-03-23 22:58:42 -0700502QDF_STATUS sme_change_mcc_beacon_interval(uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530503QDF_STATUS sme_set_host_offload(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800504 tpSirHostOffloadReq pRequest);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530505QDF_STATUS sme_set_keep_alive(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800506 tpSirKeepAliveReq pRequest);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530507QDF_STATUS sme_get_operation_channel(tHalHandle hHal, uint32_t *pChannel,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800508 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530509QDF_STATUS sme_register_mgmt_frame(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800510 uint16_t frameType, uint8_t *matchData,
511 uint16_t matchLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530512QDF_STATUS sme_deregister_mgmt_frame(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800513 uint16_t frameType, uint8_t *matchData,
514 uint16_t matchLen);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530515QDF_STATUS sme_ConfigureAppsCpuWakeupState(tHalHandle hHal, bool isAppsAwake);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800516#ifdef WLAN_FEATURE_EXTWOW_SUPPORT
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530517QDF_STATUS sme_configure_ext_wow(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800518 tpSirExtWoWParams wlanExtParams,
519 csr_readyToSuspendCallback callback,
520 void *callbackContext);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530521QDF_STATUS sme_configure_app_type1_params(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800522 tpSirAppType1Params wlanAppType1Params);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530523QDF_STATUS sme_configure_app_type2_params(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800524 tpSirAppType2Params wlanAppType2Params);
525#endif
526int8_t sme_get_infra_session_id(tHalHandle hHal);
527uint8_t sme_get_infra_operation_channel(tHalHandle hHal, uint8_t sessionId);
528uint8_t sme_get_concurrent_operation_channel(tHalHandle hHal);
529#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
530uint16_t sme_check_concurrent_channel_overlap(tHalHandle hHal, uint16_t sap_ch,
531 eCsrPhyMode sapPhyMode,
532 uint8_t cc_switch_mode);
533#endif
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800534QDF_STATUS sme_get_cfg_valid_channels(uint8_t *aValidChannels,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800535 uint32_t *len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800536#ifdef WLAN_FEATURE_PACKET_FILTERING
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530537QDF_STATUS sme_8023_multicast_list(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800538 tpSirRcvFltMcAddrList pMulticastAddrs);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800539#endif /* WLAN_FEATURE_PACKET_FILTERING */
540bool sme_is_channel_valid(tHalHandle hHal, uint8_t channel);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530541QDF_STATUS sme_set_freq_band(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800542 eCsrBand eBand);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530543QDF_STATUS sme_get_freq_band(tHalHandle hHal, eCsrBand *pBand);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800544uint16_t sme_chn_to_freq(uint8_t chanNum);
545bool sme_is_channel_valid(tHalHandle hHal, uint8_t channel);
Anurag Chouhan6d760662016-02-20 16:05:43 +0530546QDF_STATUS sme_set_max_tx_power(tHalHandle hHal, struct qdf_mac_addr pBssid,
547 struct qdf_mac_addr pSelfMacAddress, int8_t dB);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530548QDF_STATUS sme_set_max_tx_power_per_band(eCsrBand band, int8_t db);
549QDF_STATUS sme_set_tx_power(tHalHandle hHal, uint8_t sessionId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530550 struct qdf_mac_addr bssid,
551 enum tQDF_ADAPTER_MODE dev_mode, int power);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530552QDF_STATUS sme_set_custom_mac_addr(tSirMacAddr customMacAddr);
553QDF_STATUS sme_hide_ssid(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800554 uint8_t ssidHidden);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530555QDF_STATUS sme_set_tm_level(tHalHandle hHal, uint16_t newTMLevel,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800556 uint16_t tmMode);
557void sme_feature_caps_exchange(tHalHandle hHal);
558void sme_disable_feature_capablity(uint8_t feature_index);
559void sme_reset_power_values_for5_g(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530560QDF_STATUS sme_update_roam_prefer5_g_hz(tHalHandle hHal, bool nRoamPrefer5GHz);
561QDF_STATUS sme_set_roam_intra_band(tHalHandle hHal, const bool nRoamIntraBand);
562QDF_STATUS sme_update_roam_scan_n_probes(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800563 const uint8_t nProbes);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530564QDF_STATUS sme_update_roam_scan_home_away_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800565 uint8_t sessionId,
566 const uint16_t nRoamScanHomeAwayTime,
567 const bool bSendOffloadCmd);
568
569bool sme_get_roam_intra_band(tHalHandle hHal);
570uint8_t sme_get_roam_scan_n_probes(tHalHandle hHal);
571uint16_t sme_get_roam_scan_home_away_time(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530572QDF_STATUS sme_update_roam_rssi_diff(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800573 uint8_t RoamRssiDiff);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530574QDF_STATUS sme_update_fast_transition_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800575 bool isFastTransitionEnabled);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530576QDF_STATUS sme_update_wes_mode(tHalHandle hHal, bool isWESModeEnabled,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800577 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530578QDF_STATUS sme_set_roam_scan_control(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800579 bool roamScanControl);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800580
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530581QDF_STATUS sme_update_is_fast_roam_ini_feature_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800582 uint8_t sessionId,
583 const bool
584 isFastRoamIniFeatureEnabled);
Mukul Sharma69c44cd2016-09-12 18:33:57 +0530585
586QDF_STATUS sme_config_fast_roaming(tHalHandle hal, uint8_t session_id,
587 const bool is_fast_roam_enabled);
588
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530589QDF_STATUS sme_update_is_mawc_ini_feature_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800590 const bool MAWCEnabled);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530591QDF_STATUS sme_stop_roaming(tHalHandle hHal, uint8_t sessionId, uint8_t reason);
Abhishek Singhd5686472017-09-20 15:18:50 +0530592
593/**
594 * sme_indicate_disconnect_inprogress() - Indicate to csr that disconnect is in
595 * progress
596 * @hal: The handle returned by mac_open
597 * @session_id: sessionId on which disconenct has started
598 *
599 * Return: void
600 */
601void sme_indicate_disconnect_inprogress(tHalHandle hal, uint8_t session_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530602QDF_STATUS sme_start_roaming(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800603 uint8_t reason);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530604QDF_STATUS sme_update_enable_fast_roam_in_concurrency(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800605 bool bFastRoamInConIniFeatureEnabled);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800606#ifdef FEATURE_WLAN_ESE
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530607QDF_STATUS sme_update_is_ese_feature_enabled(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800608 const bool isEseIniFeatureEnabled);
609#endif /* FEATURE_WLAN_ESE */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530610QDF_STATUS sme_update_config_fw_rssi_monitoring(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800611 bool fEnableFwRssiMonitoring);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530612QDF_STATUS sme_set_roam_rescan_rssi_diff(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800613 uint8_t sessionId,
614 const uint8_t nRoamRescanRssiDiff);
615uint8_t sme_get_roam_rescan_rssi_diff(tHalHandle hHal);
616
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530617QDF_STATUS sme_set_roam_opportunistic_scan_threshold_diff(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800618 uint8_t sessionId,
619 const uint8_t nOpportunisticThresholdDiff);
620uint8_t sme_get_roam_opportunistic_scan_threshold_diff(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530621QDF_STATUS sme_set_neighbor_lookup_rssi_threshold(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800622 uint8_t sessionId, uint8_t neighborLookupRssiThreshold);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530623QDF_STATUS sme_set_delay_before_vdev_stop(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800624 uint8_t sessionId, uint8_t delay_before_vdev_stop);
625uint8_t sme_get_neighbor_lookup_rssi_threshold(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530626QDF_STATUS sme_set_neighbor_scan_refresh_period(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800627 uint8_t sessionId, uint16_t neighborScanResultsRefreshPeriod);
628uint16_t sme_get_neighbor_scan_refresh_period(tHalHandle hHal);
629uint16_t sme_get_empty_scan_refresh_period(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530630QDF_STATUS sme_update_empty_scan_refresh_period(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800631 uint8_t sessionId, uint16_t nEmptyScanRefreshPeriod);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530632QDF_STATUS sme_set_neighbor_scan_min_chan_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800633 const uint16_t nNeighborScanMinChanTime,
634 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530635QDF_STATUS sme_set_neighbor_scan_max_chan_time(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800636 uint8_t sessionId, const uint16_t nNeighborScanMaxChanTime);
637uint16_t sme_get_neighbor_scan_min_chan_time(tHalHandle hHal,
638 uint8_t sessionId);
639uint32_t sme_get_neighbor_roam_state(tHalHandle hHal, uint8_t sessionId);
640uint32_t sme_get_current_roam_state(tHalHandle hHal, uint8_t sessionId);
641uint32_t sme_get_current_roam_sub_state(tHalHandle hHal, uint8_t sessionId);
642uint32_t sme_get_lim_sme_state(tHalHandle hHal);
643uint32_t sme_get_lim_mlm_state(tHalHandle hHal);
644bool sme_is_lim_session_valid(tHalHandle hHal, uint8_t sessionId);
645uint32_t sme_get_lim_sme_session_state(tHalHandle hHal, uint8_t sessionId);
646uint32_t sme_get_lim_mlm_session_state(tHalHandle hHal, uint8_t sessionId);
647uint16_t sme_get_neighbor_scan_max_chan_time(tHalHandle hHal,
648 uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530649QDF_STATUS sme_set_neighbor_scan_period(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800650 const uint16_t nNeighborScanPeriod);
651uint16_t sme_get_neighbor_scan_period(tHalHandle hHal, uint8_t sessionId);
Sridhar Selvaraj1b2330c2017-07-21 15:16:42 +0530652QDF_STATUS sme_set_neighbor_scan_min_period(tHalHandle h_hal,
653 uint8_t session_id, const uint16_t neighbor_scan_min_period);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530654QDF_STATUS sme_set_roam_bmiss_first_bcnt(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800655 uint8_t sessionId, const uint8_t nRoamBmissFirstBcnt);
656uint8_t sme_get_roam_bmiss_first_bcnt(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530657QDF_STATUS sme_set_roam_bmiss_final_bcnt(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800658 const uint8_t nRoamBmissFinalBcnt);
659uint8_t sme_get_roam_bmiss_final_bcnt(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530660QDF_STATUS sme_set_roam_beacon_rssi_weight(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800661 const uint8_t nRoamBeaconRssiWeight);
662uint8_t sme_get_roam_beacon_rssi_weight(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800663uint8_t sme_get_roam_rssi_diff(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530664QDF_STATUS sme_change_roam_scan_channel_list(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800665 uint8_t *pChannelList,
666 uint8_t numChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530667QDF_STATUS sme_set_ese_roam_scan_channel_list(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800668 uint8_t sessionId, uint8_t *pChannelList,
669 uint8_t numChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530670QDF_STATUS sme_get_roam_scan_channel_list(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800671 uint8_t *pChannelList, uint8_t *pNumChannels,
672 uint8_t sessionId);
673bool sme_get_is_ese_feature_enabled(tHalHandle hHal);
674bool sme_get_wes_mode(tHalHandle hHal);
675bool sme_get_roam_scan_control(tHalHandle hHal);
676bool sme_get_is_lfr_feature_enabled(tHalHandle hHal);
677bool sme_get_is_ft_feature_enabled(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530678QDF_STATUS sme_update_roam_scan_offload_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800679 bool nRoamScanOffloadEnabled);
Krishna Kumaar Natarajand0bbb3c2017-03-13 17:04:58 -0700680bool sme_is_feature_supported_by_fw(enum cap_bitmap feature);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800681
682/*
683 * SME API to enable/disable WLAN driver initiated SSR
684 */
685void sme_update_enable_ssr(tHalHandle hHal, bool enableSSR);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530686QDF_STATUS sme_set_phy_mode(tHalHandle hHal, eCsrPhyMode phyMode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800687eCsrPhyMode sme_get_phy_mode(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530688QDF_STATUS sme_handoff_request(tHalHandle hHal, uint8_t sessionId,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700689 tCsrHandoffRequest *pHandoffInfo);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530690QDF_STATUS sme_is_sta_p2p_client_connected(tHalHandle hHal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530691QDF_STATUS sme_add_periodic_tx_ptrn(tHalHandle hHal, tSirAddPeriodicTxPtrn
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800692 *addPeriodicTxPtrnParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530693QDF_STATUS sme_del_periodic_tx_ptrn(tHalHandle hHal, tSirDelPeriodicTxPtrn
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800694 *delPeriodicTxPtrnParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530695QDF_STATUS sme_send_rate_update_ind(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800696 tSirRateUpdateInd *rateUpdateParams);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530697QDF_STATUS sme_roam_del_pmkid_from_cache(tHalHandle hHal, uint8_t sessionId,
Sridhar Selvarajc3684c72017-08-21 14:32:47 +0530698 tPmkidCacheInfo *pmksa, bool flush_cache);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800699void sme_get_command_q_status(tHalHandle hHal);
700
Rajeev Kumar8e3e2832015-11-06 16:02:54 -0800701QDF_STATUS sme_enable_rmc(tHalHandle hHal, uint32_t sessionId);
702QDF_STATUS sme_disable_rmc(tHalHandle hHal, uint32_t sessionId);
703QDF_STATUS sme_send_rmc_action_period(tHalHandle hHal, uint32_t sessionId);
704QDF_STATUS sme_request_ibss_peer_info(tHalHandle hHal, void *pUserData,
705 pIbssPeerInfoCb peerInfoCbk, bool allPeerInfoReqd, uint8_t staIdx);
706QDF_STATUS sme_send_cesium_enable_ind(tHalHandle hHal, uint32_t sessionId);
707
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800708/*
709 * SME API to enable/disable idle mode powersave
710 * This should be called only if powersave offload
711 * is enabled
712 */
Arunk Khandavalli847969d2017-09-25 15:15:36 +0530713QDF_STATUS sme_set_idle_powersave_config(bool value);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530714QDF_STATUS sme_notify_modem_power_state(tHalHandle hHal, uint32_t value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800715
716/*SME API to convert convert the ini value to the ENUM used in csr and MAC*/
717ePhyChanBondState sme_get_cb_phy_state_from_cb_ini_value(uint32_t cb_ini_value);
718int sme_update_ht_config(tHalHandle hHal, uint8_t sessionId, uint16_t htCapab,
719 int value);
720int16_t sme_get_ht_config(tHalHandle hHal, uint8_t session_id,
721 uint16_t ht_capab);
722#ifdef QCA_HT_2040_COEX
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530723QDF_STATUS sme_notify_ht2040_mode(tHalHandle hHal, uint16_t staId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530724 struct qdf_mac_addr macAddrSTA,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800725 uint8_t sessionId,
726 uint8_t channel_type);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530727QDF_STATUS sme_set_ht2040_mode(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800728 uint8_t channel_type, bool obssEnabled);
729#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530730QDF_STATUS sme_get_reg_info(tHalHandle hHal, uint8_t chanId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800731 uint32_t *regInfo1, uint32_t *regInfo2);
732#ifdef FEATURE_WLAN_TDLS
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530733QDF_STATUS sme_update_fw_tdls_state(tHalHandle hHal, void *psmeTdlsParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800734 bool useSmeLock);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800735#endif /* FEATURE_WLAN_TDLS */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530736QDF_STATUS sme_ch_avoid_update_req(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800737#ifdef FEATURE_WLAN_AUTO_SHUTDOWN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530738QDF_STATUS sme_set_auto_shutdown_cb(tHalHandle hHal, void (*pCallbackfn)(void));
739QDF_STATUS sme_set_auto_shutdown_timer(tHalHandle hHal, uint32_t timer_value);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800740#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530741QDF_STATUS sme_roam_channel_change_req(tHalHandle hHal,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700742 struct qdf_mac_addr bssid,
Amar Singhal5cccafe2017-02-15 12:42:58 -0800743 struct ch_params *ch_params,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700744 tCsrRoamProfile *profile);
745
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530746QDF_STATUS sme_roam_start_beacon_req(tHalHandle hHal,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530747 struct qdf_mac_addr bssid, uint8_t dfsCacWaitStatus);
748QDF_STATUS sme_roam_csa_ie_request(tHalHandle hHal, struct qdf_mac_addr bssid,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700749 uint8_t targetChannel, uint8_t csaIeReqd,
Amar Singhal5cccafe2017-02-15 12:42:58 -0800750 struct ch_params *ch_params);
Amar Singhale4f28ee2015-10-21 14:36:56 -0700751
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530752QDF_STATUS sme_init_thermal_info(tHalHandle hHal,
Amar Singhale4f28ee2015-10-21 14:36:56 -0700753 tSmeThermalParams thermalParam);
754
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530755QDF_STATUS sme_set_thermal_level(tHalHandle hHal, uint8_t level);
756QDF_STATUS sme_txpower_limit(tHalHandle hHal, tSirTxPowerLimit *psmetx);
757QDF_STATUS sme_get_link_speed(tHalHandle hHal, tSirLinkSpeedInfo *lsReq,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800758 void *plsContext,
759 void (*pCallbackfn)(tSirLinkSpeedInfo *indParam,
760 void *pContext));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530761QDF_STATUS sme_modify_add_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800762 tSirModifyIE *pModifyIE, eUpdateIEsType updateType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530763QDF_STATUS sme_update_add_ie(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800764 tSirUpdateIE *pUpdateIE, eUpdateIEsType updateType);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530765QDF_STATUS sme_update_connect_debug(tHalHandle hHal, uint32_t set_value);
Sreelakshmi Konamki39acb132015-12-16 13:06:22 +0530766const char *sme_request_type_to_string(const uint8_t request_type);
Rajeev Kumar43e25b12016-04-15 16:26:36 -0700767const char *sme_scan_type_to_string(const uint8_t scan_type);
768const char *sme_bss_type_to_string(const uint8_t bss_type);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530769QDF_STATUS sme_ap_disable_intra_bss_fwd(tHalHandle hHal, uint8_t sessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800770 bool disablefwd);
771uint32_t sme_get_channel_bonding_mode5_g(tHalHandle hHal);
772uint32_t sme_get_channel_bonding_mode24_g(tHalHandle hHal);
773#ifdef WLAN_FEATURE_STATS_EXT
774typedef struct sStatsExtRequestReq {
775 uint32_t request_data_len;
776 uint8_t *request_data;
777} tStatsExtRequestReq, *tpStatsExtRequestReq;
778typedef void (*StatsExtCallback)(void *, tStatsExtEvent *);
779void sme_stats_ext_register_callback(tHalHandle hHal,
780 StatsExtCallback callback);
lifeng66831662017-05-19 16:01:35 +0800781/**
782 * sme_register_stats_ext2_callback() - Register stats ext2 register
783 * @hal_handle: hal handle for getting global mac struct
784 * @stats_ext2_cb: callback to be registered
785 *
786 * This function will register a callback for frame aggregation failure
787 * indications processing.
788 *
789 * Return: void
790 */
791void sme_stats_ext2_register_callback(tHalHandle hal_handle,
792 void (*stats_ext2_cb)(void *, struct sir_sme_rx_aggr_hole_ind *));
793
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530794void sme_stats_ext_deregister_callback(tHalHandle hhal);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530795QDF_STATUS sme_stats_ext_request(uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800796 tpStatsExtRequestReq input);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530797QDF_STATUS sme_stats_ext_event(tHalHandle hHal, void *pMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800798#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530799QDF_STATUS sme_update_dfs_scan_mode(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800800 uint8_t sessionId,
801 uint8_t allowDFSChannelRoam);
802uint8_t sme_get_dfs_scan_mode(tHalHandle hHal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800803
804#ifdef FEATURE_WLAN_EXTSCAN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530805QDF_STATUS sme_get_valid_channels_by_band(tHalHandle hHal, uint8_t wifiBand,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800806 uint32_t *aValidChannels,
807 uint8_t *pNumChannels);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530808QDF_STATUS sme_ext_scan_get_capabilities(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800809 tSirGetExtScanCapabilitiesReqParams *pReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530810QDF_STATUS sme_ext_scan_start(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800811 tSirWifiScanCmdReqParams *pStartCmd);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530812QDF_STATUS sme_ext_scan_stop(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800813 tSirExtScanStopReqParams *pStopReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530814QDF_STATUS sme_set_bss_hotlist(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800815 tSirExtScanSetBssidHotListReqParams *
816 pSetHotListReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530817QDF_STATUS sme_reset_bss_hotlist(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800818 tSirExtScanResetBssidHotlistReqParams *
819 pResetReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530820QDF_STATUS sme_set_significant_change(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800821 tSirExtScanSetSigChangeReqParams *
822 pSetSignificantChangeReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530823QDF_STATUS sme_reset_significant_change(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800824 tSirExtScanResetSignificantChangeReqParams
825 *pResetReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530826QDF_STATUS sme_get_cached_results(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800827 tSirExtScanGetCachedResultsReqParams *
828 pCachedResultsReq);
829
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530830QDF_STATUS sme_set_epno_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800831 struct wifi_epno_params *req_msg);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530832QDF_STATUS sme_set_passpoint_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800833 struct wifi_passpoint_req *req_msg);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530834QDF_STATUS sme_reset_passpoint_list(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800835 struct wifi_passpoint_req *req_msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800836
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530837QDF_STATUS sme_ext_scan_register_callback(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800838 void (*pExtScanIndCb)(void *, const uint16_t, void *));
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800839#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530840static inline QDF_STATUS sme_ext_scan_register_callback(tHalHandle hHal,
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800841 void (*pExtScanIndCb)(void *, const uint16_t, void *))
842{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530843 return QDF_STATUS_SUCCESS;
Prashanth Bhatta75fa9a12016-01-11 18:30:08 -0800844}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800845#endif /* FEATURE_WLAN_EXTSCAN */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530846QDF_STATUS sme_abort_roam_scan(tHalHandle hHal, uint8_t sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800847#ifdef WLAN_FEATURE_LINK_LAYER_STATS
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530848QDF_STATUS sme_ll_stats_clear_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800849 tSirLLStatsClearReq * pclearStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530850QDF_STATUS sme_ll_stats_set_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800851 tSirLLStatsSetReq *psetStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530852QDF_STATUS sme_ll_stats_get_req(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800853 tSirLLStatsGetReq *pgetStatsReq);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530854QDF_STATUS sme_set_link_layer_stats_ind_cb(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800855 void (*callbackRoutine)(void *callbackCtx,
856 int indType, void *pRsp));
Zhang Qiana6e9c102016-12-22 16:47:24 +0800857QDF_STATUS sme_set_link_layer_ext_cb(tHalHandle hal,
858 void (*ll_stats_ext_cb)(tHddHandle callback_ctx,
859 tSirLLStatsResults * rsp));
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530860QDF_STATUS sme_reset_link_layer_stats_ind_cb(tHalHandle hhal);
Zhang Qian73c348a2017-03-13 16:15:55 +0800861QDF_STATUS sme_ll_stats_set_thresh(tHalHandle hal,
862 struct sir_ll_ext_stats_threshold *threshold);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800863#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
864
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530865QDF_STATUS sme_fw_mem_dump(tHalHandle hHal, void *recvd_req);
866QDF_STATUS sme_fw_mem_dump_register_cb(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800867 void (*callback_routine)(void *cb_context,
868 struct fw_dump_rsp *rsp));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530869QDF_STATUS sme_fw_mem_dump_unregister_cb(tHalHandle hHal);
Manikandan Mohan80dea792016-04-28 16:36:48 -0700870QDF_STATUS sme_set_wisa_params(tHalHandle hal,
871 struct sir_wisa_params *wisa_params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800872#ifdef WLAN_FEATURE_ROAM_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530873QDF_STATUS sme_update_roam_offload_enabled(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800874 bool nRoamOffloadEnabled);
Deepak Dhamdheref2a7d8b2016-08-19 16:17:38 -0700875QDF_STATUS sme_update_roam_key_mgmt_offload_enabled(tHalHandle hal_ctx,
876 uint8_t session_id,
877 bool key_mgmt_offload_enabled,
Deepak Dhamdhere828f1892017-02-09 11:51:19 -0800878 struct pmkid_mode_bits *pmkid_modes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800879#endif
880#ifdef WLAN_FEATURE_NAN
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530881QDF_STATUS sme_nan_event(tHalHandle hHal, void *pMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800882#endif /* WLAN_FEATURE_NAN */
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530883QDF_STATUS sme_get_link_status(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800884 tCsrLinkStatusCallback callback,
885 void *pContext, uint8_t sessionId);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530886QDF_STATUS sme_get_temperature(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800887 void *tempContext,
888 void (*pCallbackfn)(int temperature,
889 void *pContext));
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530890QDF_STATUS sme_set_scanning_mac_oui(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800891 tSirScanMacOui *pScanMacOui);
892
893#ifdef IPA_OFFLOAD
894/* ---------------------------------------------------------------------------
895 \fn sme_ipa_offload_enable_disable
896 \brief API to enable/disable IPA offload
897 \param hHal - The handle returned by macOpen.
898 \param sessionId - Session Identifier
899 \param pRequest - Pointer to the offload request.
Deepak Dhamdhere0f076bd2016-06-02 11:29:21 -0700900 \return QDF_STATUS
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800901 ---------------------------------------------------------------------------*/
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530902QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800903 uint8_t session_id,
904 struct sir_ipa_offload_enable_disable *request);
905#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530906static inline QDF_STATUS sme_ipa_offload_enable_disable(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800907 uint8_t session_id,
908 struct sir_ipa_offload_enable_disable *request)
909{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530910 return QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800911}
912#endif /* IPA_OFFLOAD */
913
914#ifdef DHCP_SERVER_OFFLOAD
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530915QDF_STATUS sme_set_dhcp_srv_offload(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800916 tSirDhcpSrvOffloadInfo * pDhcpSrvInfo);
917#endif /* DHCP_SERVER_OFFLOAD */
918#ifdef WLAN_FEATURE_GPIO_LED_FLASHING
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530919QDF_STATUS sme_set_led_flashing(tHalHandle hHal, uint8_t type,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800920 uint32_t x0, uint32_t x1);
921#endif
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530922QDF_STATUS sme_handle_dfs_chan_scan(tHalHandle hHal, uint8_t dfs_flag);
923QDF_STATUS sme_set_mas(uint32_t val);
924QDF_STATUS sme_set_miracast(tHalHandle hal, uint8_t filter_type);
925QDF_STATUS sme_ext_change_channel(tHalHandle hHal, uint32_t channel,
Abhishek Singh518323d2015-10-19 17:42:01 +0530926 uint8_t session_id);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800927
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530928QDF_STATUS sme_configure_modulated_dtim(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800929 uint32_t modulated_dtim);
930
Mukul Sharma6398b252017-05-01 17:58:12 +0530931QDF_STATUS sme_override_listen_interval(tHalHandle h_hal, uint8_t session_id,
932 uint32_t override_li);
933
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530934QDF_STATUS sme_configure_stats_avg_factor(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800935 uint16_t stats_avg_factor);
936
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530937QDF_STATUS sme_configure_guard_time(tHalHandle hal, uint8_t session_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800938 uint32_t guard_time);
939
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530940QDF_STATUS sme_wifi_start_logger(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800941 struct sir_wifi_start_log start_log);
942
943bool sme_neighbor_middle_of_roaming(tHalHandle hHal,
944 uint8_t sessionId);
945
Jeff Johnsona1e92612017-09-24 15:33:44 -0700946/**
947 * sme_enable_uapsd_for_ac() - enable uapsd for access catagory request to WMA
948 * @sta_id: station id
949 * @ac: access catagory
950 * @tid: tid value
951 * @pri: user priority
952 * @srvc_int: service interval
953 * @sus_int: suspend interval
954 * @dir: tspec direction
955 * @psb: PSB value
956 * @sessionId: session id
957 * @delay_interval: delay interval
958 *
959 * Return: QDF status
960 */
961QDF_STATUS sme_enable_uapsd_for_ac(uint8_t sta_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800962 sme_ac_enum_type ac, uint8_t tid,
963 uint8_t pri, uint32_t srvc_int,
964 uint32_t sus_int,
Abhishek Singh12be60f2017-08-11 13:52:42 +0530965 enum sme_qos_wmm_dir_type dir,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800966 uint8_t psb, uint32_t sessionId,
967 uint32_t delay_interval);
968
Jeff Johnsona1e92612017-09-24 15:33:44 -0700969/**
970 * sme_disable_uapsd_for_ac() - disable uapsd access catagory request to WMA
971 * @sta_id: station id
972 * @ac: access catagory
973 * @sessionId: session id
974 *
975 * Return: QDF status
976 */
977QDF_STATUS sme_disable_uapsd_for_ac(uint8_t sta_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800978 sme_ac_enum_type ac,
979 uint32_t sessionId);
980
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530981QDF_STATUS sme_set_rssi_monitoring(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800982 struct rssi_monitor_req *input);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530983QDF_STATUS sme_set_rssi_threshold_breached_cb(tHalHandle hal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800984 void (*cb)(void *, struct rssi_breach_event *));
Arun Khandavalli4b55da72016-07-19 19:55:01 +0530985QDF_STATUS sme_reset_rssi_threshold_breached_cb(tHalHandle hal);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800986
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530987QDF_STATUS sme_register_mgmt_frame_ind_callback(tHalHandle hal,
Abhishek Singh7996eb72015-12-30 17:24:02 +0530988 sir_mgmt_frame_ind_callback callback);
989
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530990QDF_STATUS sme_update_nss(tHalHandle h_hal, uint8_t nss);
Archana Ramachandran5041b252016-04-25 14:29:25 -0700991void sme_update_user_configured_nss(tHalHandle hal, uint8_t nss);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800992
993bool sme_is_any_session_in_connected_state(tHalHandle h_hal);
994
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800995QDF_STATUS sme_pdev_set_pcl(struct policy_mgr_pcl_list msg);
996QDF_STATUS sme_pdev_set_hw_mode(struct policy_mgr_hw_mode msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800997void sme_register_hw_mode_trans_cb(tHalHandle hal,
998 hw_mode_transition_cb callback);
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -0800999QDF_STATUS sme_nss_update_request(uint32_t vdev_id,
1000 uint8_t new_nss, policy_mgr_nss_update_cback cback,
1001 uint8_t next_action, struct wlan_objmgr_psoc *psoc,
1002 enum policy_mgr_conn_update_reason reason);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001003
1004typedef void (*sme_peer_authorized_fp) (uint32_t vdev_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301005QDF_STATUS sme_set_peer_authorized(uint8_t *peer_addr,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001006 sme_peer_authorized_fp auth_fp,
1007 uint32_t vdev_id);
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001008QDF_STATUS sme_soc_set_dual_mac_config(struct policy_mgr_dual_mac_config msg);
Archana Ramachandrand41c3ed2016-02-10 15:48:06 -08001009QDF_STATUS sme_soc_set_antenna_mode(tHalHandle hal,
1010 struct sir_antenna_mode_param *msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001011
1012void sme_set_scan_disable(tHalHandle h_hal, int value);
1013void sme_setdef_dot11mode(tHalHandle hal);
1014
Amar Singhal7c1e8982016-05-19 15:08:09 -07001015QDF_STATUS sme_handle_set_fcc_channel(tHalHandle hHal,
Amar Singhal83a047a2016-05-19 15:56:11 -07001016 bool fcc_constraint,
1017 bool scan_pending);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001018
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301019QDF_STATUS sme_update_roam_scan_hi_rssi_scan_params(tHalHandle hal_handle,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001020 uint8_t session_id,
1021 uint32_t notify_id,
1022 int32_t val);
1023
1024void wlan_sap_enable_phy_error_logs(tHalHandle hal, bool enable_log);
Agrawal Ashishb141b092016-09-02 19:59:26 +05301025#ifdef WLAN_FEATURE_DSRC
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001026void sme_set_dot11p_config(tHalHandle hal, bool enable_dot11p);
1027
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301028QDF_STATUS sme_ocb_set_config(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001029 ocb_callback callback,
1030 struct sir_ocb_config *config);
1031
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301032QDF_STATUS sme_ocb_set_utc_time(tHalHandle hHal, struct sir_ocb_utc *utc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001033
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301034QDF_STATUS sme_ocb_start_timing_advert(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001035 struct sir_ocb_timing_advert *timing_advert);
1036
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301037QDF_STATUS sme_ocb_stop_timing_advert(tHalHandle hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001038 struct sir_ocb_timing_advert *timing_advert);
1039
Naveen Rawatb4d37622015-11-13 16:15:25 -08001040int sme_ocb_gen_timing_advert_frame(tHalHandle hHal, tSirMacAddr self_addr,
1041 uint8_t **buf, uint32_t *timestamp_offset,
1042 uint32_t *time_value_offset);
1043
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301044QDF_STATUS sme_ocb_get_tsf_timer(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001045 ocb_callback callback,
1046 struct sir_ocb_get_tsf_timer *request);
1047
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301048QDF_STATUS sme_dcc_get_stats(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001049 ocb_callback callback,
1050 struct sir_dcc_get_stats *request);
1051
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301052QDF_STATUS sme_dcc_clear_stats(tHalHandle hHal, uint32_t vdev_id,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001053 uint32_t dcc_stats_bitmap);
1054
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301055QDF_STATUS sme_dcc_update_ndl(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001056 ocb_callback callback,
1057 struct sir_dcc_update_ndl *request);
1058
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301059QDF_STATUS sme_register_for_dcc_stats_event(tHalHandle hHal, void *context,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001060 ocb_callback callback);
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301061QDF_STATUS sme_deregister_for_dcc_stats_event(tHalHandle hHal);
1062
Agrawal Ashishb141b092016-09-02 19:59:26 +05301063#else
1064static inline void sme_set_dot11p_config(tHalHandle hal, bool enable_dot11p)
1065{
1066 return;
1067}
1068
1069static inline QDF_STATUS sme_ocb_set_config(tHalHandle hHal, void *context,
1070 ocb_callback callback,
1071 struct sir_ocb_config *config)
1072{
1073 return QDF_STATUS_SUCCESS;
1074}
1075
1076static inline QDF_STATUS sme_ocb_set_utc_time(struct sir_ocb_utc *utc)
1077{
1078 return QDF_STATUS_SUCCESS;
1079}
1080
1081static inline QDF_STATUS sme_ocb_start_timing_advert(
1082 struct sir_ocb_timing_advert *timing_advert)
1083{
1084 return QDF_STATUS_SUCCESS;
1085}
1086
1087static inline QDF_STATUS sme_ocb_stop_timing_advert(struct sir_ocb_timing_advert
1088 *timing_advert)
1089{
1090 return QDF_STATUS_SUCCESS;
1091}
1092
1093static inline int sme_ocb_gen_timing_advert_frame(tHalHandle hHal,
1094 tSirMacAddr self_addr, uint8_t **buf,
1095 uint32_t *timestamp_offset,
1096 uint32_t *time_value_offset)
1097{
1098 return 0;
1099}
1100
1101static inline QDF_STATUS sme_ocb_get_tsf_timer(tHalHandle hHal, void *context,
1102 ocb_callback callback,
1103 struct sir_ocb_get_tsf_timer *request)
1104{
1105 return QDF_STATUS_SUCCESS;
1106}
1107
1108static inline QDF_STATUS sme_dcc_get_stats(tHalHandle hHal, void *context,
1109 ocb_callback callback,
1110 struct sir_dcc_get_stats *request)
1111{
1112 return QDF_STATUS_SUCCESS;
1113}
1114
1115static inline QDF_STATUS sme_dcc_clear_stats(uint32_t vdev_id,
1116 uint32_t dcc_stats_bitmap)
1117{
1118 return QDF_STATUS_SUCCESS;
1119}
1120
1121static inline QDF_STATUS sme_dcc_update_ndl(tHalHandle hHal, void *context,
1122 ocb_callback callback,
1123 struct sir_dcc_update_ndl *request)
1124{
1125 return QDF_STATUS_SUCCESS;
1126}
1127
1128static inline QDF_STATUS sme_register_for_dcc_stats_event(tHalHandle hHal,
1129 void *context, ocb_callback callback)
1130{
1131 return QDF_STATUS_SUCCESS;
1132}
1133static inline QDF_STATUS sme_deregister_for_dcc_stats_event(tHalHandle hHal)
1134{
1135 return QDF_STATUS_SUCCESS;
1136}
1137#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001138void sme_add_set_thermal_level_callback(tHalHandle hal,
1139 sme_set_thermal_level_callback callback);
1140
Krishna Kumaar Natarajan052c6e62015-09-28 15:32:55 -07001141void sme_update_tgt_services(tHalHandle hal, struct wma_tgt_services *cfg);
Edhar, Mahesh Kumardf2ec122015-11-16 11:33:16 +05301142bool sme_validate_sap_channel_switch(tHalHandle hal,
1143 uint16_t sap_ch, eCsrPhyMode sap_phy_mode,
1144 uint8_t cc_switch_mode, uint8_t session_id);
Masti, Narayanraddic4a7ab82015-11-25 15:41:10 +05301145
Chandrasekaran, Manishekar2859de42016-02-11 16:17:38 +05301146bool sme_is_session_id_valid(tHalHandle hal, uint32_t session_id);
1147
Masti, Narayanraddic4a7ab82015-11-25 15:41:10 +05301148#ifdef FEATURE_WLAN_TDLS
1149void sme_get_opclass(tHalHandle hal, uint8_t channel, uint8_t bw_offset,
1150 uint8_t *opclass);
1151#else
1152static inline void
1153sme_get_opclass(tHalHandle hal, uint8_t channel, uint8_t bw_offset,
1154 uint8_t *opclass)
1155{
1156}
1157#endif
1158
Ravi Joshi61c3c7a2015-11-09 18:41:20 -08001159#ifdef FEATURE_LFR_SUBNET_DETECTION
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301160QDF_STATUS sme_gateway_param_update(tHalHandle hHal,
Ravi Joshi61c3c7a2015-11-09 18:41:20 -08001161 struct gateway_param_update_req *request);
1162#endif
1163
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001164#ifdef FEATURE_GREEN_AP
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301165QDF_STATUS sme_send_egap_conf_params(uint32_t enable,
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001166 uint32_t inactivity_time,
1167 uint32_t wait_time,
1168 uint32_t flags);
1169#else
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301170static inline QDF_STATUS sme_send_egap_conf_params(uint32_t enable,
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001171 uint32_t inactivity_time,
1172 uint32_t wait_time,
1173 uint32_t flags)
1174{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301175 return QDF_STATUS_E_NOSUPPORT;
Ryan Hsu3c8f79f2015-12-02 16:45:09 -08001176}
1177#endif
Krunal Sonie3531942016-04-12 17:43:53 -07001178
Selvaraj, Sridhar57bb4d02016-08-31 16:14:15 +05301179void sme_update_fine_time_measurement_capab(tHalHandle hal, uint8_t session_id,
1180 uint32_t val);
Sandeep Puligillae0875662016-02-12 16:09:21 -08001181QDF_STATUS sme_ht40_stop_obss_scan(tHalHandle hHal, uint32_t vdev_id);
Anurag Chouhanbf5e0e22016-09-12 12:54:09 +05301182QDF_STATUS sme_set_fw_test(struct set_fwtest_params *fw_test);
Manikandan Mohandcc21ba2016-03-15 14:31:56 -07001183QDF_STATUS sme_set_tsfcb(tHalHandle hHal,
1184 int (*cb_fn)(void *cb_ctx, struct stsf *ptsf), void *cb_ctx);
Krunal Sonie3531942016-04-12 17:43:53 -07001185
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301186QDF_STATUS sme_reset_tsfcb(tHalHandle h_hal);
1187
Manikandan Mohan976e7562016-03-15 16:33:31 -07001188#ifdef WLAN_FEATURE_TSF
1189QDF_STATUS sme_set_tsf_gpio(tHalHandle h_hal, uint32_t pinvalue);
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301190QDF_STATUS sme_reset_tsf_gpio(tHalHandle h_hal);
1191
Manikandan Mohan976e7562016-03-15 16:33:31 -07001192#else
1193static inline QDF_STATUS sme_set_tsf_gpio(tHalHandle h_hal, uint32_t pinvalue)
1194{
1195 return QDF_STATUS_E_FAILURE;
1196}
Arun Khandavalli4b55da72016-07-19 19:55:01 +05301197static inline QDF_STATUS sme_reset_tsf_gpio(tHalHandle h_hal)
1198{
1199 return QDF_STATUS_E_FAILURE;
1200}
1201
Manikandan Mohan976e7562016-03-15 16:33:31 -07001202#endif
1203
Archana Ramachandran20d2e232016-02-11 16:58:40 -08001204QDF_STATUS sme_update_mimo_power_save(tHalHandle hHal,
1205 uint8_t is_ht_smps_enabled,
Archana Ramachandranfec24812016-02-16 16:31:56 -08001206 uint8_t ht_smps_mode,
1207 bool send_smps_action);
Archana Ramachandran20d2e232016-02-11 16:58:40 -08001208
1209bool sme_is_sta_smps_allowed(tHalHandle hHal, uint8_t session_id);
Gupta, Kapil4cb1d7d2016-04-16 18:16:25 -07001210QDF_STATUS sme_add_beacon_filter(tHalHandle hal,
1211 uint32_t session_id, uint32_t *ie_map);
1212QDF_STATUS sme_remove_beacon_filter(tHalHandle hal, uint32_t session_id);
Arun Khandavalli2476ef52016-04-26 20:19:43 +05301213
Jeff Johnsona867e0c2017-01-26 13:43:51 -08001214/**
1215 * sme_get_bpf_offload_capabilities() - Get BPF offload capabilities
1216 * @hal: Global HAL handle
1217 * @callback: Callback function to be called with the result
1218 * @context: Opaque context to be used by the caller to associate the
1219 * request with the response
1220 *
1221 * This function constructs the cds message and fill in message type,
1222 * post the same to WDA.
1223 *
1224 * Return: QDF_STATUS enumeration
1225 */
1226QDF_STATUS sme_get_bpf_offload_capabilities(tHalHandle hal,
1227 bpf_get_offload_cb callback,
1228 void *context);
1229
Arun Khandavalli2476ef52016-04-26 20:19:43 +05301230QDF_STATUS sme_set_bpf_instructions(tHalHandle hal,
1231 struct sir_bpf_set_offload *);
Abhishek Singh1c676222016-05-09 14:20:28 +05301232uint32_t sme_get_wni_dot11_mode(tHalHandle hal);
Manjunathappa Prakash59f861d2016-04-21 10:33:31 -07001233QDF_STATUS sme_create_mon_session(tHalHandle hal_handle, uint8_t *bssid);
Gupta, Kapil96c7f2f2016-04-25 19:13:41 +05301234QDF_STATUS sme_set_adaptive_dwelltime_config(tHalHandle hal,
1235 struct adaptive_dwelltime_params *dwelltime_params);
Naveen Rawata410c5a2016-09-19 14:22:33 -07001236
1237void sme_set_vdev_ies_per_band(tHalHandle hal, uint8_t vdev_id);
Kiran Kumar Lokere666bf852016-05-02 12:23:02 -07001238void sme_set_pdev_ht_vht_ies(tHalHandle hHal, bool enable2x2);
1239
1240void sme_update_vdev_type_nss(tHalHandle hal, uint8_t max_supp_nss,
1241 uint32_t vdev_type_nss, eCsrBand band);
Nitesh Shahdb5ea0d2017-03-22 15:17:47 +05301242void sme_update_hw_dbs_capable(tHalHandle hal, uint8_t hw_dbs_capable);
Peng Xu8fdaa492016-06-22 10:20:47 -07001243void sme_register_p2p_lo_event(tHalHandle hHal, void *context,
1244 p2p_lo_callback callback);
Manjeet Singhf82ed072016-07-08 11:40:00 +05301245
Abhishek Singhc9941602016-08-09 16:06:22 +05301246QDF_STATUS sme_remove_bssid_from_scan_list(tHalHandle hal,
1247 tSirMacAddr bssid);
1248
Manjeet Singhf82ed072016-07-08 11:40:00 +05301249QDF_STATUS sme_process_mac_pwr_dbg_cmd(tHalHandle hal, uint32_t session_id,
1250 struct sir_mac_pwr_dbg_cmd*
1251 dbg_args);
1252
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001253void sme_get_vdev_type_nss(enum tQDF_ADAPTER_MODE dev_mode,
Tushnim Bhattacharyyaf44a9d82016-07-05 10:52:06 -07001254 uint8_t *nss_2g, uint8_t *nss_5g);
Masti, Narayanraddiab712a72016-08-04 11:59:11 +05301255QDF_STATUS sme_roam_set_default_key_index(tHalHandle hal, uint8_t session_id,
1256 uint8_t default_idx);
Selvaraj, Sridhar4577a9b2016-09-04 15:17:07 +05301257QDF_STATUS sme_register_p2p_ack_ind_callback(tHalHandle hal,
1258 sir_p2p_ack_ind_callback callback);
Kondabattini, Ganesh3f2d02c2016-09-13 12:23:47 +05301259void sme_send_disassoc_req_frame(tHalHandle hal, uint8_t session_id, uint8_t
1260 *peer_mac, uint16_t reason, uint8_t
1261 wait_for_ack);
Kondabattini, Ganeshe4f18e02016-09-13 13:01:22 +05301262QDF_STATUS sme_update_access_policy_vendor_ie(tHalHandle hal,
1263 uint8_t session_id, uint8_t *vendor_ie,
1264 int access_policy);
1265
Krishna Kumaar Natarajanf1581df2017-02-21 13:42:08 -08001266/**
1267 * sme_set_peer_param() - set peer param
1268 * @vdev_id: vdev ID
1269 * @peer_addr: peer MAC address
1270 * @param_id: param ID to be updated
1271 * @param_Value: paraam value
1272 *
1273 * This SME API is used to send the peer param to WMA to be sent to FW.
1274 *
1275 * Return: QDF_STATUS
1276 */
1277QDF_STATUS sme_set_peer_param(uint8_t *peer_addr, uint32_t param_id,
1278 uint32_t param_value, uint32_t vdev_id);
1279
Agrawal Ashish21ba2572016-09-03 16:40:10 +05301280QDF_STATUS sme_update_sta_roam_policy(tHalHandle hal,
1281 enum sta_roam_policy_dfs_mode dfs_mode,
1282 bool skip_unsafe_channels,
Agrawal, Ashish9f84c402016-11-30 16:19:44 +05301283 uint8_t session_id, uint8_t sap_operating_band);
Selvaraj, Sridharebda0f22016-08-29 16:05:23 +05301284QDF_STATUS sme_enable_disable_chanavoidind_event(tHalHandle hal,
1285 uint8_t set_value);
Deepak Dhamdhereb106ae52016-08-10 20:55:30 +05301286QDF_STATUS sme_set_default_scan_ie(tHalHandle hal, uint16_t session_id,
1287 uint8_t *ie_data, uint16_t ie_len);
Selvaraj, Sridhar7231c5f2016-09-28 12:42:33 +05301288/**
1289 * sme_update_session_param() - API to update PE session param
1290 * @hal: HAL handle for device
1291 * @session_id: Session ID
1292 * @param_type: Param type to be updated
1293 * @param_val: Param value to be update
1294 *
1295 * Note: this setting will not persist over reboots.
1296 *
1297 * Return: QDF_STATUS
1298 */
1299QDF_STATUS sme_update_session_param(tHalHandle hal, uint8_t session_id,
1300 uint32_t param_type, uint32_t param_val);
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301301
Padma, Santhosh Kumar72e7aec2016-10-12 17:23:44 +05301302#ifdef WLAN_FEATURE_DISA
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301303/**
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301304 * sme_encrypt_decrypt_msg() - handles encrypt/decrypt mesaage
1305 * @hal: HAL handle
1306 * @encrypt_decrypt_params: struct to set encryption/decryption params.
Jeff Johnsone8216e82017-01-26 15:54:51 -08001307 * @callback: callback function to be called with the result
1308 * @context: Opaque context to be passed to callback function
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301309 *
1310 * Return: QDF_STATUS enumeration.
1311 */
1312QDF_STATUS sme_encrypt_decrypt_msg(tHalHandle hal,
Jeff Johnsone8216e82017-01-26 15:54:51 -08001313 struct encrypt_decrypt_req_params *encrypt_decrypt_params,
1314 sme_encrypt_decrypt_callback callback,
1315 void *context);
Padma, Santhosh Kumar72e7aec2016-10-12 17:23:44 +05301316#endif
Padma, Santhosh Kumard7cc0792016-06-28 18:54:12 +05301317
Jeff Johnson6136fb92017-03-30 15:21:49 -07001318#ifdef WLAN_FEATURE_FIPS
1319/**
1320 * sme_fips_request() - Perform a FIPS certification operation
1321 * @hal: Hal handle for the object being certified
1322 * @param: The FIPS certification parameters
1323 * @callback: Callback function to invoke with the results
1324 * @context: Opaque context to pass back to caller in the callback
1325 *
1326 * Return: QDF_STATUS_SUCCESS if the request is successfully sent
1327 * to firmware for processing, otherwise an error status.
1328 */
1329QDF_STATUS sme_fips_request(tHalHandle hal, struct fips_params *param,
1330 wma_fips_cb callback, void *context);
1331#else
1332static inline
1333QDF_STATUS sme_fips_request(tHalHandle hal, struct fips_params *param,
1334 wma_fips_cb callback, void *context)
1335{
1336 return QDF_STATUS_E_NOSUPPORT;
1337}
1338#endif /* WLAN_FEATURE_FIPS */
1339
Agrawal Ashishb2d1a452016-05-05 12:23:58 +05301340/**
1341 * sme_set_cts2self_for_p2p_go() - sme function to set ini parms to FW.
1342 * @hal: reference to the HAL
1343 *
1344 * Return: QDF_STATUS
1345 */
1346QDF_STATUS sme_set_cts2self_for_p2p_go(tHalHandle hal);
Kiran Kumar Lokere1aa9c9a2016-10-05 18:50:59 -07001347void sme_set_prefer_80MHz_over_160MHz(tHalHandle hal,
1348 bool sta_prefer_80MHz_over_160MHz);
Agrawal, Ashish35b251d2016-09-08 19:21:03 +05301349QDF_STATUS sme_update_tx_fail_cnt_threshold(tHalHandle hal_handle,
1350 uint8_t session_id, uint32_t tx_fail_count);
Agrawal Ashishda3e9502016-09-21 17:43:51 +05301351QDF_STATUS sme_update_short_retry_limit_threshold(tHalHandle hal_handle,
1352 struct sme_short_retry_limit *short_retry_limit_th);
1353QDF_STATUS sme_update_long_retry_limit_threshold(tHalHandle hal_handle,
1354 struct sme_long_retry_limit *long_retry_limit_th);
yeshwanth sriram guntukaa1ba9a22017-02-28 16:17:32 +05301355/**
1356 * sme_roam_is_ese_assoc() - Check if association type is ESE
1357 * @roam_info: Pointer to roam info
1358 *
1359 * Return: true if ESE Association, false otherwise.
1360 */
1361#ifdef FEATURE_WLAN_ESE
1362bool sme_roam_is_ese_assoc(tCsrRoamInfo *roam_info);
1363#else
1364static inline bool sme_roam_is_ese_assoc(tCsrRoamInfo *roam_info)
1365{
1366 return false;
1367}
1368#endif
1369/**
1370 * sme_neighbor_roam_is11r_assoc() - Check if association type is 11R
1371 * @hal_ctx: HAL handle
1372 * @session_id: session id
1373 *
1374 * Return: true if 11r Association, false otherwise.
1375 */
1376bool sme_neighbor_roam_is11r_assoc(tHalHandle hal_ctx, uint8_t session_id);
Agrawal, Ashish4e5fa1c2016-09-21 19:03:43 +05301377
1378/**
1379 * sme_update_sta_inactivity_timeout(): Update sta_inactivity_timeout to FW
1380 * @hal: Handle returned by mac_open
1381 * @sta_inactivity_timer: struct for sta inactivity timer
1382 *
1383 * If a station does not send anything in sta_inactivity_timeout seconds, an
1384 * empty data frame is sent to it in order to verify whether it is
1385 * still in range. If this frame is not ACKed, the station will be
1386 * disassociated and then deauthenticated.
1387 *
1388 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1389*/
1390QDF_STATUS sme_update_sta_inactivity_timeout(tHalHandle hal_handle,
1391 struct sme_sta_inactivity_timeout *sta_inactivity_timer);
1392
Sreelakshmi Konamki58c72432016-11-09 17:06:44 +05301393/**
1394 * sme_set_lost_link_info_cb() - plug in callback function for receiving
1395 * @hal: HAL handle
1396 * @cb: callback function
1397 *
1398 * Return: HAL status
1399 */
1400QDF_STATUS sme_set_lost_link_info_cb(tHalHandle hal,
1401 void (*cb)(void *, struct sir_lost_link_info *));
Yingying Tang95409972016-10-20 15:16:15 +08001402
Kapil Gupta8878ad92017-02-13 11:56:04 +05301403/**
1404 * sme_update_new_channel_event() - update new channel event for sapFsm
1405 * @hal: HAL handle
1406 * @session_id: session id
1407 *
1408 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1409 */
1410QDF_STATUS sme_update_new_channel_event(tHalHandle hal, uint8_t session_id);
Sridhar Selvarajdc400d22016-10-18 17:18:03 +05301411#ifdef WLAN_POWER_DEBUGFS
1412QDF_STATUS sme_power_debug_stats_req(tHalHandle hal, void (*callback_fn)
1413 (struct power_stats_response *response,
1414 void *context), void *power_stats_context);
1415#endif
Kabilan Kannan3c0a7352016-12-02 18:49:38 -08001416/**
1417 * sme_set_sar_power_limits() - set sar limits
1418 * @hal: HAL handle
1419 * @sar_limit_cmd: struct to send sar limit cmd.
1420 *
1421 * Return: QDF_STATUS enumeration.
1422 */
1423QDF_STATUS sme_set_sar_power_limits(tHalHandle hal,
1424 struct sar_limit_cmd_params *sar_limit_cmd);
Amar Singhal6edf9732016-11-20 21:43:40 -08001425void sme_set_cc_src(tHalHandle hal_handle, enum country_src);
Yingying Tang95409972016-10-20 15:16:15 +08001426
1427
1428#ifdef WLAN_FEATURE_WOW_PULSE
1429QDF_STATUS sme_set_wow_pulse(struct wow_pulse_mode *wow_pulse_set_info);
1430#endif
1431
Anurag Chouhan3920c0f2017-09-11 17:10:56 +05301432/* ARP DEBUG STATS */
1433QDF_STATUS sme_set_nud_debug_stats(tHalHandle hal,
1434 struct set_arp_stats_params
1435 *set_stats_param);
1436QDF_STATUS sme_get_nud_debug_stats(tHalHandle hal,
1437 struct get_arp_stats_params
1438 *get_stats_param);
1439QDF_STATUS sme_set_nud_debug_stats_cb(tHalHandle hal,
1440 void (*cb)(void *, struct rsp_stats *));
1441
Kapil Gupta4f0c0c12017-02-07 15:21:15 +05301442/**
1443 * sme_set_chan_info_callback() - Register chan info callback
1444 * @hal - MAC global handle
1445 * @callback_routine - callback routine from HDD
1446 *
1447 * This API is invoked by HDD to register its callback to mac
1448 *
1449 * Return: QDF_STATUS
1450 */
1451void sme_set_chan_info_callback(tHalHandle hal_handle,
1452 void (*callback)(struct scan_chan_info *chan_info));
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001453
1454/**
Hanumanth Reddy Pothula90051782017-05-04 22:14:43 +05301455 * sme_get_rssi_snr_by_bssid() - gets the rssi and snr by bssid from scan cache
1456 * @hal: handle returned by mac_open
1457 * @profile: current connected profile
1458 * @bssid: bssid to look for in scan cache
1459 * @rssi: rssi value found
1460 * @snr: snr value found
1461 *
1462 * Return: QDF_STATUS
1463 */
1464QDF_STATUS sme_get_rssi_snr_by_bssid(tHalHandle hal, tCsrRoamProfile *profile,
1465 const uint8_t *bssid, int8_t *rssi,
1466 int8_t *snr);
1467
1468/**
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001469 * sme_get_beacon_frm() - gets the bss descriptor from scan cache and prepares
1470 * beacon frame
1471 * @hal: handle returned by mac_open
1472 * @profile: current connected profile
1473 * @bssid: bssid to look for in scan cache
1474 * @frame_buf: frame buffer to populate
1475 * @frame_len: length of constructed frame
Selvaraj, Sridhar64b0a9c2017-05-11 16:50:15 +05301476 * @channel: Pointer to channel info to be filled
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001477 *
1478 * Return: QDF_STATUS
1479 */
1480QDF_STATUS sme_get_beacon_frm(tHalHandle hal, tCsrRoamProfile *profile,
1481 const tSirMacAddr bssid,
Selvaraj, Sridhar64b0a9c2017-05-11 16:50:15 +05301482 uint8_t **frame_buf, uint32_t *frame_len,
1483 int *channel);
Naveen Rawat4195c5e2017-05-22 17:07:45 -07001484/**
1485 * sme_fast_reassoc() - invokes FAST REASSOC command
1486 * @hal: handle returned by mac_open
1487 * @profile: current connected profile
1488 * @bssid: bssid to look for in scan cache
1489 * @channel: channel on which reassoc should be send
1490 * @vdev_id: vdev id
1491 *
1492 * Return: QDF_STATUS
1493 */
1494QDF_STATUS sme_fast_reassoc(tHalHandle hal, tCsrRoamProfile *profile,
1495 const tSirMacAddr bssid, int channel,
1496 uint8_t vdev_id);
Naveen Rawat664a7cb2017-01-19 17:58:14 -08001497
Padma, Santhosh Kumar16dacfb2017-03-21 19:05:40 +05301498/**
1499 * sme_congestion_register_callback(): registers congestion callback
1500 * @hal: handler for HAL
1501 * @congestion_cb: congestion callback
1502 *
1503 * Return: QDF_STATUS
1504 */
1505QDF_STATUS sme_congestion_register_callback(tHalHandle hal,
1506 void (*congestion_cb)(void *, uint32_t congestion, uint32_t vdev_id));
1507
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001508/**
Sreelakshmi Konamki88a2a412017-04-14 15:11:55 +05301509 * sme_rso_cmd_status_cb() - Set RSO cmd status callback
1510 * @hal: HAL Handle
1511 * @cb: HDD Callback to rso comman status read
1512 *
1513 * This function is used to save HDD RSO Command status callback in MAC
1514 *
1515 * Return: QDF_STATUS
1516 */
1517QDF_STATUS sme_rso_cmd_status_cb(tHalHandle hal,
1518 void (*cb)(void *, struct rso_cmd_status *));
1519
1520/**
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001521 * sme_register_set_connection_info_cb() - Register connection
1522 * info callback
1523 * @hal - MAC global handle
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001524 * @set_connection_info_cb - callback routine from HDD to set
1525 * connection info flag
1526 * @get_connection_info_cb - callback routine from HDD to get
1527 * connection info
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001528 *
1529 * This API is invoked by HDD to register its callback to mac
1530 *
1531 * Return: QDF_STATUS
1532 */
1533QDF_STATUS sme_register_set_connection_info_cb(tHalHandle hHal,
Tushnim Bhattacharyya0c4ad2d2017-03-09 15:59:03 -08001534 bool (*set_connection_info_cb)(bool),
1535 bool (*get_connection_info_cb)(uint8_t *session_id,
1536 enum scan_reject_states *reason));
Tushnim Bhattacharyya9e81b4c2017-02-15 17:11:14 -08001537
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001538/**
Nitesh Shahf9a09ff2017-05-22 15:46:25 +05301539 * sme_set_dbs_scan_selection_config() - Update DBS scan selection
1540 * configuration
1541 * @hal: The handle returned by macOpen
1542 * @params: wmi_dbs_scan_sel_params config
1543 *
1544 * Return: QDF_STATUS if DBS scan selection update
1545 * configuration success else failure status
1546 */
1547QDF_STATUS sme_set_dbs_scan_selection_config(tHalHandle hal,
1548 struct wmi_dbs_scan_sel_params *params);
1549
1550/**
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001551 * sme_store_pdev() - store pdev
1552 * @hal - MAC global handle
1553 * @pdev - pdev ptr
1554 *
1555 * Return: QDF_STATUS
1556 */
1557void sme_store_pdev(tHalHandle hal, struct wlan_objmgr_pdev *pdev);
1558
Sandeep Puligillaf587adf2017-04-27 19:53:21 -07001559/**
1560 * sme_ipa_uc_stat_request() - set ipa config parameters
1561 * @vdev_id: virtual device for the command
1562 * @param_id: parameter id
1563 * @param_val: parameter value
1564 * @req_cat: parameter category
1565 *
1566 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1567 */
1568QDF_STATUS sme_ipa_uc_stat_request(tHalHandle hal,
1569 uint32_t vdev_id, uint32_t param_id,
1570 uint32_t param_val, uint32_t req_cat);
lifeng66831662017-05-19 16:01:35 +08001571
1572/**
1573 * sme_set_reorder_timeout() - set reorder timeout value
1574 * including Voice,Video,Besteffort,Background parameters
1575 * @hal: hal handle for getting global mac struct
1576 * @reg: struct sir_set_rx_reorder_timeout_val
1577 *
1578 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1579 */
1580QDF_STATUS sme_set_reorder_timeout(tHalHandle hal,
1581 struct sir_set_rx_reorder_timeout_val *req);
1582
1583/**
1584 * sme_set_rx_set_blocksize() - set blocksize value
1585 * including mac_addr and win_limit parameters
1586 * @hal: hal handle for getting global mac struct
1587 * @reg: struct sir_peer_set_rx_blocksize
1588 *
1589 * Return: QDF_STATUS_SUCCESS or non-zero on failure.
1590 */
1591
1592QDF_STATUS sme_set_rx_set_blocksize(tHalHandle hal,
1593 struct sir_peer_set_rx_blocksize *req);
1594
Ravi Kumar Bokka05c14e52017-03-27 14:48:23 +05301595/*
1596 * sme_set_chip_pwr_save_fail_cb() - set chip power save failure callback
1597 * @hal: global hal handle
1598 * @cb: callback function pointer
1599 *
1600 * This function stores the chip power save failure callback function.
1601 *
1602 * Return: QDF_STATUS enumeration.
1603 */
1604
1605QDF_STATUS sme_set_chip_pwr_save_fail_cb(tHalHandle hal, void (*cb)(void *,
1606 struct chip_pwr_save_fail_detected_params *));
Naveen Rawat247a8682017-06-05 15:00:31 -07001607/**
1608 * sme_cli_set_command() - SME wrapper API over WMA "set" command
1609 * processor cmd
1610 * @vdev_id: virtual device for the command
1611 * @param_id: parameter id
1612 * @sval: parameter value
1613 * @vpdev: parameter category
1614 *
1615 * Command handler for set operations
1616 *
1617 * Return: 0 on success, errno on failure
1618 */
1619int sme_cli_set_command(int vdev_id, int param_id, int sval, int vpdev);
Ravi Kumar Bokka05c14e52017-03-27 14:48:23 +05301620
Vidyullatha Kanchanapallybe0ebb32017-03-23 14:36:21 +05301621/**
1622 * sme_set_bt_activity_info_cb - set the callback handler for bt events
1623 * @hal: handle returned by mac_open
1624 * @cb: callback handler
1625 *
1626 * Return: QDF_STATUS
1627 */
1628QDF_STATUS sme_set_bt_activity_info_cb(tHalHandle hal,
1629 void (*cb)(void *, uint32_t profile_info));
1630
Will Huang558f8082017-05-31 16:22:24 +08001631/**
Ashish Kumar Dhanotiyab28338c2017-07-21 20:12:34 +05301632 * sme_set_smps_cfg() - set SMPS config params
1633 * @vdev_id: virtual device for the command
1634 * @param_id: parameter id
1635 * @param_val: parameter value
1636 *
1637 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1638 */
1639
1640QDF_STATUS sme_set_smps_cfg(uint32_t vdev_id, uint32_t param_id,
1641 uint32_t param_val);
1642/**
Will Huang558f8082017-05-31 16:22:24 +08001643 * sme_get_peer_info() - sme api to get peer info
1644 * @hal: hal handle for getting global mac struct
1645 * @req: peer info request struct send to wma
1646 * @context: context of callback function
1647 * @callbackfn: hdd callback function when receive response
1648 *
1649 * This function will send WMA_GET_PEER_INFO to WMA
1650 *
1651 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1652 */
1653QDF_STATUS sme_get_peer_info(tHalHandle hal,
1654 struct sir_peer_info_req req,
1655 void *context,
1656 void (*callbackfn)(struct sir_peer_info_resp *param,
1657 void *pcontext));
1658
1659/**
1660 * sme_get_peer_info_ext() - sme api to get peer ext info
1661 * @hal: hal handle for getting global mac struct
1662 * @req: peer ext info request struct send to wma
1663 * @context: context of callback function
1664 * @callbackfn: hdd callback function when receive response
1665 *
1666 * This function will send WMA_GET_PEER_INFO_EXT to WMA
1667 *
1668 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1669 */
1670QDF_STATUS sme_get_peer_info_ext(tHalHandle hal,
1671 struct sir_peer_info_ext_req *req,
1672 void *context,
1673 void (*callbackfn)(struct sir_peer_info_ext_resp *param,
1674 void *pcontext));
Manjeet Singha9cae432017-02-28 11:58:22 +05301675
Tushnim Bhattacharyya518e80f2017-08-30 17:35:33 -07001676/**
1677 * sme_set_5g_band_pref() - sme api to set 5Ghz preference
1678 * @hal: hal handle for getting global mac struct
1679 * @pref_params: preference info request struct
1680 *
1681 * This function will set 5Ghz preference for STA connection
1682 *
1683 * Return: None
1684 */
Manjeet Singha9cae432017-02-28 11:58:22 +05301685void sme_set_5g_band_pref(tHalHandle hal_handle,
1686 struct sme_5g_band_pref_params *pref_params);
lifengd217d192017-05-09 19:44:16 +08001687/**
1688 * sme_get_chain_rssi() - Get chain rssi
1689 * @hal: Global HAL handle
1690 * @input: get chain rssi req params
1691 * @callback: Callback function to be called with the result
1692 * @context: Opaque context to be used by the caller to associate the
1693 * request with the response
1694 *
1695 * This function constructs the cds message and fill in message type,
1696 * post the same to WDA.
1697 *
1698 * Return: QDF_STATUS enumeration
1699 */
1700QDF_STATUS sme_get_chain_rssi(tHalHandle hal,
1701 struct get_chain_rssi_req_params *input,
1702 get_chain_rssi_callback callback,
1703 void *context);
Tushnim Bhattacharyyac3c375e2017-08-04 23:39:55 -07001704
1705/**
1706 * sme_get_valid_channels() - sme api to get valid channels for
1707 * current regulatory domain
1708 * @chan_list: list of the valid channels
1709 * @list_len: length of the channel list
1710 *
1711 * This function will get valid channels for current regulatory
1712 * domain
1713 *
1714 * Return: QDF_STATUS_SUCCESS or non-zero on failure
1715 */
1716QDF_STATUS sme_get_valid_channels(uint8_t *chan_list, uint32_t *list_len);
Tushnim Bhattacharyya518e80f2017-08-30 17:35:33 -07001717
1718/**
1719 * sme_get_mac_context() - sme api to get the pmac context
1720 *
1721 * This function will return the pmac context
1722 *
1723 * Return: pointer to pmac context
1724 */
1725tpAniSirGlobal sme_get_mac_context(void);
Vignesh Viswanathan66c951d2017-09-06 12:23:42 +05301726
1727/**
1728 * sme_display_disconnect_stats() - Display per session Disconnect stats
1729 * @hal: hal global context
1730 * session_id: SME session id
1731 *
1732 * Return: None
1733 */
1734void sme_display_disconnect_stats(tHalHandle hal, uint8_t session_id);
Sandeep Puligilla1426d612017-04-12 18:22:06 -07001735
1736/**
1737 * sme_process_msg_callback() - process callback message from LIM
1738 * @hal: global hal handle
1739 * @msg: scheduler message
1740 *
1741 * This function process the callback messages from LIM.
1742 *
1743 * Return: QDF_STATUS enumeration.
1744 */
1745QDF_STATUS sme_process_msg_callback(tHalHandle hal,
1746 struct scheduler_msg *msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001747#endif /* #if !defined( __SME_API_H ) */