blob: c8f5a6b9b6e5303b7cf663c0ccfe412ede0fcf96 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Kiet Lam0fb93dd2014-02-19 00:32:59 -08002 * Copyright (c) 2011-2014 The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * Copyright (c) 2011-2014 Qualcomm Atheros, Inc.
24 * All Rights Reserved.
25 * Qualcomm Atheros Confidential and Proprietary.
26 *
27 */
28
Jeff Johnson295189b2012-06-20 16:38:30 -070029
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -080030/** ------------------------------------------------------------------------- *
31 ------------------------------------------------------------------------- *
Jeff Johnson295189b2012-06-20 16:38:30 -070032
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -080033
Jeff Johnson295189b2012-06-20 16:38:30 -070034 \file csrInternal.h
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -080035
Jeff Johnson295189b2012-06-20 16:38:30 -070036 Define internal data structure for MAC.
Jeff Johnson295189b2012-06-20 16:38:30 -070037 ========================================================================== */
38#ifndef CSRINTERNAL_H__
39#define CSRINTERNAL_H__
40
Jeff Johnson295189b2012-06-20 16:38:30 -070041#include "vos_status.h"
42#include "vos_lock.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070043
44#include "palTimer.h"
45#include "csrSupport.h"
46#include "vos_nvitem.h"
47#include "wlan_qct_tl.h"
48
49#ifdef WLAN_FEATURE_NEIGHBOR_ROAMING
50#include "csrNeighborRoam.h"
51#endif
52
53#define CSR_MAX_STA (HAL_NUM_STA)
54
55#define CSR_SME_SCAN_FLAGS_DELETE_CACHE 0x80
56
57#define CSR_TITAN_MAX_RATE_MIMO_CB 240
58#define CSR_TITAN_MAX_RATE_MIMO 126
59
60//define scan return criteria. LIM should use these define as well
61#define CSR_SCAN_RETURN_AFTER_ALL_CHANNELS ( 0 )
62#define CSR_SCAN_RETURN_AFTER_FIRST_MATCH ( 0x01 )
63#define CSR_SCAN_RETURN_AFTER_5_BAND_11d_FOUND ( 0x80 )
64#define CSR_SCAN_RETURN_AFTER_24_BAND_11d_FOUND ( 0x40 )
65#define CSR_SCAN_RETURN_AFTER_EITHER_BAND_11d_FOUND ( CSR_SCAN_RETURN_AFTER_5_BAND_11d_FOUND | CSR_SCAN_RETURN_AFTER_24_BAND_11d_FOUND )
Madan Mohan Koyyalamudi4c8c6352012-10-15 16:40:16 -070066#define CSR_NUM_RSSI_CAT 15
Jeff Johnson295189b2012-06-20 16:38:30 -070067#define CSR_MAX_STATISTICS_REQ 10
Varun Reddy Yeturu9d4102c2013-12-02 15:47:03 -080068#define CSR_ROAM_SCAN_CHANNEL_SWITCH_TIME 3
Jeff Johnson295189b2012-06-20 16:38:30 -070069
70//Support for multiple session
71#define CSR_SESSION_ID_INVALID 0xFF // session ID invalid
72#define CSR_ROAM_SESSION_MAX 5 // No of sessions to be supported, and a
73 // session is for Infra, IBSS or BT-AMP
74
75#define CSR_IS_SESSION_VALID( pMac, sessionId ) ( ( (sessionId) < CSR_ROAM_SESSION_MAX ) \
76 && ( (pMac)->roam.roamSession[(sessionId)].sessionActive ) )
77#define CSR_GET_SESSION( pMac, sessionId ) \
78( \
79 (sessionId < CSR_ROAM_SESSION_MAX) ? \
80 (&(pMac)->roam.roamSession[(sessionId)]) :\
81 NULL \
82)
83
Srinivas Girigowda41c7c5f2013-10-21 19:01:38 -070084#define CSR_IS_SELECT_5GHZ_MARGIN( pMac ) \
85( \
86 (((pMac)->roam.configParam.nSelect5GHzMargin)?eANI_BOOLEAN_TRUE:eANI_BOOLEAN_FALSE) \
87)
88
Madan Mohan Koyyalamudid5026072012-11-30 14:56:21 -080089#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_CCX) || defined(FEATURE_WLAN_LFR)
90#define CSR_IS_ROAM_PREFER_5GHZ( pMac ) \
91( \
92 (((pMac)->roam.configParam.nRoamPrefer5GHz)?eANI_BOOLEAN_TRUE:eANI_BOOLEAN_FALSE) \
93)
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -070094#define CSR_IS_ROAM_INTRA_BAND_ENABLED( pMac ) \
95( \
96 (((pMac)->roam.configParam.nRoamIntraBand)?eANI_BOOLEAN_TRUE:eANI_BOOLEAN_FALSE) \
97)
Madan Mohan Koyyalamudid5026072012-11-30 14:56:21 -080098#endif
99
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700100#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
101#define CSR_IS_ROAM_SCAN_OFFLOAD_ENABLED( pMac ) \
102( \
103 (((pMac)->roam.configParam.isRoamOffloadScanEnabled)?eANI_BOOLEAN_TRUE:eANI_BOOLEAN_FALSE) \
104)
Srinivas Girigowda830bbd02013-06-13 19:44:16 -0700105
106#define CSR_IS_FASTROAM_IN_CONCURRENCY_INI_FEATURE_ENABLED( pMac ) \
107( \
108 (((pMac)->roam.configParam.bFastRoamInConIniFeatureEnabled)?eANI_BOOLEAN_TRUE:eANI_BOOLEAN_FALSE) \
109)
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700110#endif
111
Madan Mohan Koyyalamudi470d2cf2012-09-28 14:43:44 -0700112//Support for "Fast roaming" (i.e., CCX, LFR, or 802.11r.)
113#define CSR_BG_SCAN_OCCUPIED_CHANNEL_LIST_LEN 15
Jeff Johnson295189b2012-06-20 16:38:30 -0700114
115typedef enum
116{
117 //eCSR_CFG_DOT11_MODE_BEST = 0,
118 eCSR_CFG_DOT11_MODE_TAURUS = 0,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800119 eCSR_CFG_DOT11_MODE_ABG,
120 eCSR_CFG_DOT11_MODE_11A,
121 eCSR_CFG_DOT11_MODE_11B,
122 eCSR_CFG_DOT11_MODE_11G,
123 eCSR_CFG_DOT11_MODE_11N,
124 eCSR_CFG_DOT11_MODE_POLARIS,
125 eCSR_CFG_DOT11_MODE_TITAN,
Jeff Johnsone7245742012-09-05 17:12:55 -0700126#ifdef WLAN_FEATURE_11AC
127 eCSR_CFG_DOT11_MODE_11AC,
128#endif
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800129 eCSR_CFG_DOT11_MODE_11G_ONLY,
130 eCSR_CFG_DOT11_MODE_11N_ONLY,
Jeff Johnsone7245742012-09-05 17:12:55 -0700131#ifdef WLAN_FEATURE_11AC
132 eCSR_CFG_DOT11_MODE_11AC_ONLY,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800133#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700134 //This value can never set to CFG. It is for CSR's internal use
135 eCSR_CFG_DOT11_MODE_AUTO,
136}eCsrCfgDot11Mode; //Used to determine what to set to the WNI_CFG_DOT11_MODE
137
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800138typedef enum etCsrRoamCommands
Jeff Johnson295189b2012-06-20 16:38:30 -0700139{
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800140 eCsrRoamNoCommand,
Jeff Johnson295189b2012-06-20 16:38:30 -0700141 eCsrRoamCommandScan,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800142 eCsrRoamCommandRoam,
143 eCsrRoamCommandWmStatusChange,
Jeff Johnson295189b2012-06-20 16:38:30 -0700144 eCsrRoamCommandSetKey,
145 eCsrRoamCommandRemoveKey,
146
147} eCsrRoamCommands;
148
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800149typedef enum
Jeff Johnson295189b2012-06-20 16:38:30 -0700150{
151 eCsrScanOther = 1,
152 eCsrScanLostLink1,
153 eCsrScanLostLink2,
154 eCsrScanLostLink3,
155 eCsrScanLostLink4,
156 eCsrScan11d1, //First 11d scan
157 eCsrScan11d2, //First 11d scan has failed
158 eCsrScan11dDone, //11d scan succeeded, try the rest of the channel
159 eCsrScanUserRequest,
160 eCsrScanGetResult,
161 eCsrScanSetBGScanParam, //used for HO too - bg scan request in NT Handoff sub-state
162 eCsrScanForSsid,
163 eCsrScanForCapsChange,
164 eCsrScanBGScanAbort,
165 eCsrScanBGScanEnable,
166 eCsrScanIdleScan,
167 eCsrScanGetScanChnInfo, //To get the list of channels scanned
168
169 eCsrScanBgScan, // bg scan request in NRT & RT Handoff sub-states
170 eCsrScanProbeBss, // directed probe on an entry from the candidate list - HO
171 eCsrScanAbortBgScan, //aborting a BG scan (meaning the scan is triggered by LIM timer)
172 eCsrScanAbortNormalScan, //aborting a normal scan (the scan is trigger by eWNI_SME_SCAN_REQ)
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700173 eCsrScanP2PFindPeer,
174 eCsrScanGetLfrResult, // get the LFR candidates from PE scan cache
Jeff Johnson295189b2012-06-20 16:38:30 -0700175}eCsrScanReason;
176
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800177typedef enum
Jeff Johnson295189b2012-06-20 16:38:30 -0700178{
179 eCsrNoConnection, // Roaming because we have not established the initial connection.
180 eCsrCapsChange, // roaming because LIM reported a Capability change in the associated AP.
181 eCsrForcedDisassoc, // roaming becuase someone asked us to Disassoc and stay disassociated.
182 eCsrHddIssued, // roaming because an 802.11 request was issued to the driver.
183 eCsrLostLink1, // roaming because we lost link to an associated AP
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800184 eCsrLostLink2,
Jeff Johnson295189b2012-06-20 16:38:30 -0700185 eCsrLostLink3,
186 eCsrForcedDisassocMICFailure, // roaming because we need to force a Disassoc due to MIC failure
187 eCsrHddIssuedReassocToSameAP,
188 eCsrSmeIssuedReassocToSameAP,
189 eCsrSmeIssuedReassocToDiffAP,
190 eCsrForcedDeauth, // roaming becuase someone asked us to deauth and stay disassociated.
191 eCsrSmeIssuedDisassocForHandoff, // will be issued by Handoff logic to disconect from current AP
192 eCsrSmeIssuedAssocToSimilarAP, // will be issued by Handoff logic to join a new AP with same profile
193 eCsrSmeIssuedIbssJoinFailure, // ibss join timer fired before any perr showed up, so shut down the network
194 eCsrForcedIbssLeave,
195 eCsrStopBss,
196 eCsrSmeIssuedFTReassoc,
197 eCsrForcedDisassocSta,
198 eCsrForcedDeauthSta,
Madan Mohan Koyyalamudi286b60e2012-10-11 12:59:07 -0700199 eCsrPerformPreauth,
Venkata Prathyusha Kuntupalli239278b2013-03-26 15:58:18 -0700200 eCsrLostLink1Abort,
201 eCsrLostLink2Abort,
202 eCsrLostLink3Abort,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800203
Jeff Johnson295189b2012-06-20 16:38:30 -0700204}eCsrRoamReason;
205
206typedef enum
207{
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800208 eCSR_ROAM_SUBSTATE_NONE = 0,
209 eCSR_ROAM_SUBSTATE_START_BSS_REQ,
210 eCSR_ROAM_SUBSTATE_JOIN_REQ,
211 eCSR_ROAM_SUBSTATE_REASSOC_REQ,
212 eCSR_ROAM_SUBSTATE_DISASSOC_REQ,
213 eCSR_ROAM_SUBSTATE_STOP_BSS_REQ,
214 eCSR_ROAM_SUBSTATE_DISCONNECT_CONTINUE_ROAMING, //Continue the current roam command after disconnect
215 eCSR_ROAM_SUBSTATE_AUTH_REQ,
216 eCSR_ROAM_SUBSTATE_CONFIG,
217 eCSR_ROAM_SUBSTATE_DEAUTH_REQ,
218 eCSR_ROAM_SUBSTATE_DISASSOC_NOTHING_TO_JOIN,
219 eCSR_ROAM_SUBSTATE_DISASSOC_REASSOC_FAILURE,
220 eCSR_ROAM_SUBSTATE_DISASSOC_FORCED,
Jeff Johnson295189b2012-06-20 16:38:30 -0700221 eCSR_ROAM_SUBSTATE_WAIT_FOR_KEY,
222 eCSR_ROAM_SUBSTATE_DISASSOC_HANDOFF,
223 eCSR_ROAM_SUBSTATE_JOINED_NO_TRAFFIC,
224 eCSR_ROAM_SUBSTATE_JOINED_NON_REALTIME_TRAFFIC,
225 eCSR_ROAM_SUBSTATE_JOINED_REALTIME_TRAFFIC,
226// max is 15 unless the bitfield is expanded...
227} eCsrRoamSubState;
228
229
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800230typedef enum
Jeff Johnson295189b2012-06-20 16:38:30 -0700231{
232 eCSR_ROAMING_STATE_STOP = 0,
233 eCSR_ROAMING_STATE_IDLE,
234 eCSR_ROAMING_STATE_SCANNING,
235 eCSR_ROAMING_STATE_JOINING,
236 eCSR_ROAMING_STATE_JOINED,
237}eCsrRoamState;
238
239
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800240typedef enum
Jeff Johnson295189b2012-06-20 16:38:30 -0700241{
242 eCsrContinueRoaming,
243 eCsrStopRoaming,
244 eCsrStartIbss,
245 eCsrStartIbssSameIbss,
246 eCsrReassocToSelfNoCapChange,
Jeff Johnsone7245742012-09-05 17:12:55 -0700247 eCsrStopRoamingDueToConcurrency,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800248
Jeff Johnson295189b2012-06-20 16:38:30 -0700249}eCsrJoinState;
250
251typedef enum
252{
253 eCsrNotRoaming,
254 eCsrLostlinkRoamingDisassoc,
255 eCsrLostlinkRoamingDeauth,
256 eCsrDynamicRoaming,
257 eCsrReassocRoaming,
258}eCsrRoamingReason;
259
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800260typedef enum
Jeff Johnson295189b2012-06-20 16:38:30 -0700261{
262 eCsrDisassociated,
263 eCsrDeauthenticated
264
265}eCsrRoamWmStatusChangeTypes;
266
267typedef enum
268{
269 eCsrSummaryStats = 0,
270 eCsrGlobalClassAStats,
271 eCsrGlobalClassBStats,
272 eCsrGlobalClassCStats,
273 eCsrGlobalClassDStats,
274 eCsrPerStaStats,
275 eCsrMaxStats
276}eCsrRoamStatsClassTypes;
277
278#ifdef FEATURE_WLAN_DIAG_SUPPORT
279typedef enum
280{
281 eCSR_WLAN_STATUS_CONNECT =0,
282 eCSR_WLAN_STATUS_DISCONNECT
283
284}eCsrDiagWlanStatusEventSubtype;
285
286typedef enum
287{
288 eCSR_REASON_UNSPECIFIED = 0,
289 eCSR_REASON_USER_REQUESTED,
290 eCSR_REASON_MIC_ERROR,
291 eCSR_REASON_DISASSOC,
292 eCSR_REASON_DEAUTH,
293 eCSR_REASON_HANDOFF,
294
295}eCsrDiagWlanStatusEventReason;
296
297typedef enum
298{
299 eCSR_WLAN_HANDOFF_EVENT =0,
300
301}eCsrDiagWlanHandoffEventSubtype;
302
303typedef enum
304{
305 eCSR_WLAN_VCC_EVENT =0,
306
307}eCsrDiagWlanVccEventSubtype;
308
309#endif //FEATURE_WLAN_DIAG_SUPPORT
310
311typedef struct tagCsrChannel
312{
313 tANI_U8 numChannels;
314 tANI_U8 channelList[WNI_CFG_VALID_CHANNEL_LIST_LEN];
315}tCsrChannel;
316
317typedef struct tagScanProfile
318{
319 tANI_U32 minChnTime;
320 tANI_U32 maxChnTime;
321 tANI_U32 restTime; //This is ignored if not associated
322 tANI_U32 numOfChannels;
323 tANI_U8 *pChannelList;
324 tSirScanType scanType; //active or passive
325 eCsrRoamBssType bssType; //BSS or IBSS
326 tANI_U8 ssid[WNI_CFG_SSID_LEN];
327 tANI_U8 bReturnAfter1stMatch;
328 tANI_U8 fUniqueResult;
329 tANI_U8 freshScan;
330 tCsrBssid bssid;
331}tScanProfile;
332
333typedef struct tagBssConfigParam
334{
335 eCsrMediaAccessType qosType;
336 tSirMacSSid SSID;
337 tANI_U32 uRTSThresh;
338 tANI_U32 uDeferThresh; //
339 eCsrCfgDot11Mode uCfgDot11Mode;
340 eCsrBand eBand;
341 tANI_U8 standardRate[CSR_DOT11_SUPPORTED_RATES_MAX];
342 tANI_U8 extendedRate[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
343 eCsrExposedTxRate txRate;
344 tAniAuthType authType;
345 eCsrEncryptionType encType;
346 tANI_U32 uShortSlotTime;
347 tANI_U32 uHTSupport; //High throughput
348 tANI_U32 uPowerLimit;
349 tANI_U32 uHeartBeatThresh;
350 tANI_U32 uJoinTimeOut;
351 tSirMacCapabilityInfo BssCap;
352 tANI_BOOLEAN f11hSupport;
Jeff Johnsone7245742012-09-05 17:12:55 -0700353 ePhyChanBondState cbMode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700354}tBssConfigParam;
355
356
357typedef struct tagCsrRoamStartBssParams
358{
359 tSirMacSSid ssId;
360 tCsrBssid bssid; //this is the BSSID for the party we want to join (only use for IBSS or WDS)
361 tSirNwType sirNwType;
Jeff Johnsone7245742012-09-05 17:12:55 -0700362 ePhyChanBondState cbMode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700363 tSirMacRateSet operationalRateSet;
364 tSirMacRateSet extendedRateSet;
365 tANI_U8 operationChn;
366 eCsrCfgDot11Mode uCfgDot11Mode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700367 tANI_U8 privacy;
368 tANI_BOOLEAN fwdWPSPBCProbeReq;
369 tANI_BOOLEAN protEnabled;
370 tANI_BOOLEAN obssProtEnabled;
371 tAniAuthType authType;
372 tANI_U16 beaconInterval; //If this is 0, SME will fill in for caller.
373 tANI_U16 ht_protection;
374 tANI_U32 dtimPeriod;
375 tANI_U8 ApUapsdEnable;
376 tANI_U8 ssidHidden;
377 tANI_U8 wps_state;
Jeff Johnson295189b2012-06-20 16:38:30 -0700378 tVOS_CON_MODE bssPersona;
379 tANI_U16 nRSNIELength; //The byte count in the pRSNIE, if 0, pRSNIE is ignored.
380 tANI_U8 *pRSNIE; //If not null, it has the IE byte stream for RSN
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800381 tANI_BOOLEAN updatebeaconInterval; //Flag used to indicate update
382 // beaconInterval
Jeff Johnson295189b2012-06-20 16:38:30 -0700383}tCsrRoamStartBssParams;
384
385
386typedef struct tagScanCmd
387{
388 tANI_U32 scanID;
389 csrScanCompleteCallback callback;
390 void *pContext;
391 eCsrScanReason reason;
392 eCsrRoamState lastRoamState[CSR_ROAM_SESSION_MAX];
393 tCsrRoamProfile *pToRoamProfile;
394 tANI_U32 roamId; //this is the ID related to the pToRoamProfile
395 union
396 {
397 tCsrScanRequest scanRequest;
398 tCsrBGScanRequest bgScanRequest;
399 }u;
Srinivas, Dasari187ca4e2014-02-07 12:40:09 +0530400 //This flag will be set while aborting the scan due to band change
401 tANI_BOOLEAN abortScanDueToBandChange;
Jeff Johnson295189b2012-06-20 16:38:30 -0700402}tScanCmd;
403
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800404typedef struct tagRoamCmd
Jeff Johnson295189b2012-06-20 16:38:30 -0700405{
406 tANI_U32 roamId;
407 eCsrRoamReason roamReason;
408 tCsrRoamProfile roamProfile;
409 tScanResultHandle hBSSList; //BSS list fits the profile
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800410 tListElem *pRoamBssEntry; //point to the current BSS in the list that is roaming. It starts from head to tail
Jeff Johnson295189b2012-06-20 16:38:30 -0700411 tSirBssDescription *pLastRoamBss; //the last BSS we try and failed
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800412 tANI_BOOLEAN fReleaseBssList; //whether to free hBSSList
Jeff Johnson295189b2012-06-20 16:38:30 -0700413 tANI_BOOLEAN fReleaseProfile; //whether to free roamProfile
414 tANI_BOOLEAN fReassoc; //whether this command is for reassociation
415 tANI_BOOLEAN fUpdateCurRoamProfile; //whether pMac->roam.pCurRoamProfile needs to be updated
416 //this is for CSR internal used only. And it should not be assigned when creating the command
417 //This causes the roam command not to do anything.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800418 tANI_BOOLEAN fReassocToSelfNoCapChange;
Jeff Johnson295189b2012-06-20 16:38:30 -0700419
420 tANI_BOOLEAN fStopWds;
421 tSirMacAddr peerMac;
422 tSirMacReasonCodes reason;
423}tRoamCmd;
424
425typedef struct tagSetKeyCmd
426{
427 tANI_U32 roamId;
428 eCsrEncryptionType encType;
429 eCsrAuthType authType;
430 tAniKeyDirection keyDirection; //Tx, Rx or Tx-and-Rx
431 tSirMacAddr peerMac; //Peer's MAC address. ALL 1's for group key
432 tANI_U8 paeRole; //0 for supplicant
433 tANI_U8 keyId; // Kye index
434 tANI_U8 keyLength; //Number of bytes containing the key in pKey
435 tANI_U8 Key[CSR_MAX_KEY_LEN];
436 tANI_U8 keyRsc[CSR_MAX_RSC_LEN];
437} tSetKeyCmd;
438
439typedef struct tahRemoveKeyCmd
440{
441 tANI_U32 roamId;
442 eCsrEncryptionType encType;
443 eCsrAuthType authType;
444 tSirMacAddr peerMac; //Peer's MAC address. ALL 1's for group key
445 tANI_U8 keyId; //key index
446} tRemoveKeyCmd;
447
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800448typedef struct tagWmStatusChangeCmd
Jeff Johnson295189b2012-06-20 16:38:30 -0700449{
450 eCsrRoamWmStatusChangeTypes Type;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800451 union
452 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700453 tSirSmeDeauthInd DeauthIndMsg;
454 tSirSmeDisassocInd DisassocIndMsg;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800455 }u;
Jeff Johnson295189b2012-06-20 16:38:30 -0700456
457}tWmStatusChangeCmd;
458
Kiran Kumar Lokere0ad5cd32013-06-25 11:26:22 -0700459
Jeff Johnson295189b2012-06-20 16:38:30 -0700460typedef struct tagAddStaForSessionCmd
461{
462 //Session self mac addr
463 tSirMacAddr selfMacAddr;
Kiran Kumar Lokere0ad5cd32013-06-25 11:26:22 -0700464 tVOS_CON_MODE currDeviceMode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700465}tAddStaForSessionCmd;
466
467typedef struct tagDelStaForSessionCmd
468{
469 //Session self mac addr
470 tSirMacAddr selfMacAddr;
471 csrRoamSessionCloseCallback callback;
472 void *pContext;
473}tDelStaForSessionCmd;
474
475//This structure represents one scan request
476typedef struct tagCsrCmd
477{
478 tListElem Link;
479 eCsrRoamCommands command;
480 tANI_U8 sessionId; // Session ID for this command
481 union
482 {
483 tScanCmd scanCmd;
484 tRoamCmd roamCmd;
485 tWmStatusChangeCmd wmStatusChangeCmd;
486 tSetKeyCmd setKeyCmd;
487 tRemoveKeyCmd removeKeyCmd;
488 tAddStaForSessionCmd addStaSessionCmd;
489 tDelStaForSessionCmd delStaSessionCmd;
490 }u;
491}tCsrCmd;
492
493#ifdef WLAN_FEATURE_VOWIFI_11R
494typedef struct tagCsr11rConfig
495{
496 tANI_BOOLEAN IsFTResourceReqSupported;
497} tCsr11rConfig;
498#endif
499
500#ifdef WLAN_FEATURE_NEIGHBOR_ROAMING
501typedef struct tagCsrNeighborRoamConfig
502{
503 tANI_U32 nNeighborScanTimerPeriod;
504 tANI_U8 nNeighborLookupRssiThreshold;
505 tANI_U8 nNeighborReassocRssiThreshold;
506 tANI_U16 nNeighborScanMinChanTime;
507 tANI_U16 nNeighborScanMaxChanTime;
508 sCsrChannel neighborScanChanList;
509 tANI_U8 nMaxNeighborRetries;
510 tANI_U16 nNeighborResultsRefreshPeriod;
Srinivas Girigowdade697412013-02-14 16:31:48 -0800511 tANI_U16 nEmptyScanRefreshPeriod;
Jeff Johnson295189b2012-06-20 16:38:30 -0700512}tCsrNeighborRoamConfig;
513#endif
514
515typedef struct tagCsrConfig
516{
517 tANI_U32 agingCount;
518 tANI_U32 FragmentationThreshold;
519 tANI_U32 channelBondingMode24GHz;
520 tANI_U32 channelBondingMode5GHz;
521 tANI_U32 RTSThreshold;
522 eCsrPhyMode phyMode;
523 eCsrCfgDot11Mode uCfgDot11Mode;
524 eCsrBand eBand;
525 tANI_U32 HeartbeatThresh50;
526 tANI_U32 HeartbeatThresh24;
527 tANI_U32 bgScanInterval;
528 eCsrCBChoice cbChoice;
529 eCsrBand bandCapability; //indicate hw capability
530 eCsrRoamWmmUserModeType WMMSupportMode;
531 tANI_BOOLEAN Is11eSupportEnabled;
532 tANI_BOOLEAN Is11dSupportEnabled;
533 tANI_BOOLEAN Is11dSupportEnabledOriginal;
534 tANI_BOOLEAN Is11hSupportEnabled;
535 tANI_BOOLEAN shortSlotTime;
536 tANI_BOOLEAN ProprietaryRatesEnabled;
537 tANI_BOOLEAN fenableMCCMode;
538 tANI_U16 TxRate;
Madan Mohan Koyyalamudi167b95e2012-11-27 15:53:38 -0800539 tANI_U8 fAllowMCCGODiffBI;
Jeff Johnson295189b2012-06-20 16:38:30 -0700540 tANI_U8 AdHocChannel24;
541 tANI_U8 AdHocChannel5G;
542 tANI_U32 impsSleepTime; //in units of microseconds
543 tANI_U32 scanAgeTimeNCNPS; //scan result aging time threshold when Not-Connect-No-Power-Save, in seconds
544 tANI_U32 scanAgeTimeNCPS; //scan result aging time threshold when Not-Connect-Power-Save, in seconds
545 tANI_U32 scanAgeTimeCNPS; //scan result aging time threshold when Connect-No-Power-Save, in seconds,
546 tANI_U32 scanAgeTimeCPS; //scan result aging time threshold when Connect-Power-Savein seconds
547 tANI_U32 BssPreferValue[CSR_NUM_RSSI_CAT]; //each RSSI category has one value
548 int RSSICat[CSR_NUM_RSSI_CAT];
549 tANI_U8 bCatRssiOffset; //to set the RSSI difference for each category
550 tANI_U32 nRoamingTime; //In seconds, CSR will try this long before gives up, 0 means no roaming
551 //Whether to limit the channels to the ones set in Csr11dInfo. If true, the opertaional
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800552 //channels are limited to the default channel list. It is an "AND" operation between the
Jeff Johnson295189b2012-06-20 16:38:30 -0700553 //default channels and the channels in the 802.11d IE.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800554 tANI_BOOLEAN fEnforce11dChannels;
Jeff Johnson295189b2012-06-20 16:38:30 -0700555 //Country Code Priority
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800556 //0 = 802.11D > Configured Country > NV
Jeff Johnson295189b2012-06-20 16:38:30 -0700557 //1 = Configured Country > 802.11D > NV
558 tANI_BOOLEAN fSupplicantCountryCodeHasPriority;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800559 //When true, AP with unknown country code won't be see.
560 //"Unknown country code" means either Ap doesn't have 11d IE or we cannot
Jeff Johnson295189b2012-06-20 16:38:30 -0700561 //find a domain for the country code in its 11d IE.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800562 tANI_BOOLEAN fEnforceCountryCodeMatch;
Jeff Johnson295189b2012-06-20 16:38:30 -0700563 //When true, only APs in the default domain can be seen. If the Ap has "unknown country
564 //code", or the doamin of the country code doesn't match the default domain, the Ap is
565 //not acceptable.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800566 tANI_BOOLEAN fEnforceDefaultDomain;
Jeff Johnson295189b2012-06-20 16:38:30 -0700567
568 tANI_U16 vccRssiThreshold;
569 tANI_U32 vccUlMacLossThreshold;
570
571 tANI_U32 nPassiveMinChnTime; //in units of milliseconds
572 tANI_U32 nPassiveMaxChnTime; //in units of milliseconds
573 tANI_U32 nActiveMinChnTime; //in units of milliseconds
574 tANI_U32 nActiveMaxChnTime; //in units of milliseconds
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800575
576 tANI_U32 nActiveMinChnTimeBtc; //in units of milliseconds
577 tANI_U32 nActiveMaxChnTimeBtc; //in units of milliseconds
Kiran Kumar Lokere458d7322013-05-29 14:29:43 -0700578 tANI_U8 disableAggWithBtc;
Madan Mohan Koyyalamudi4ff9cd62012-10-30 17:48:57 -0700579#ifdef WLAN_AP_STA_CONCURRENCY
580 tANI_U32 nPassiveMinChnTimeConc; //in units of milliseconds
581 tANI_U32 nPassiveMaxChnTimeConc; //in units of milliseconds
582 tANI_U32 nActiveMinChnTimeConc; //in units of milliseconds
583 tANI_U32 nActiveMaxChnTimeConc; //in units of milliseconds
584 tANI_U32 nRestTimeConc; //in units of milliseconds
Sudhir Sattayappa Kohallieb97d502013-05-22 23:16:42 -0700585 tANI_U8 nNumStaChanCombinedConc; //number of channels combined for
586 //Sta in each split scan operation
587 tANI_U8 nNumP2PChanCombinedConc; //number of channels combined for
588 //P2P in each split scan operation
Madan Mohan Koyyalamudi4ff9cd62012-10-30 17:48:57 -0700589#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700590
591 tANI_BOOLEAN IsIdleScanEnabled;
592 //in dBm, the maximum TX power
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800593 //The actual TX power is the lesser of this value and 11d.
Jeff Johnson295189b2012-06-20 16:38:30 -0700594 //If 11d is disable, the lesser of this and default setting.
595 tANI_U8 nTxPowerCap;
596 tANI_U32 statsReqPeriodicity; //stats request frequency from PE while in full power
597 tANI_U32 statsReqPeriodicityInPS;//stats request frequency from PE while in power save
Jeff Johnson295189b2012-06-20 16:38:30 -0700598 tANI_U32 dtimPeriod;
599 tANI_BOOLEAN ssidHidden;
Jeff Johnson295189b2012-06-20 16:38:30 -0700600
601#ifdef WLAN_FEATURE_VOWIFI_11R
602 tCsr11rConfig csr11rConfig;
603#endif
604
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700605#ifdef FEATURE_WLAN_LFR
Srinivas Girigowda830bbd02013-06-13 19:44:16 -0700606 tANI_U8 isFastRoamIniFeatureEnabled;
Sameer Thalappil4ae66ec2013-11-05 14:17:35 -0800607 tANI_U8 MAWCEnabled;
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700608#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
Srinivas Girigowda830bbd02013-06-13 19:44:16 -0700609 tANI_U8 isRoamOffloadScanEnabled;
610 tANI_BOOLEAN bFastRoamInConIniFeatureEnabled;
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700611#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700612#endif
613
Jeff Johnson295189b2012-06-20 16:38:30 -0700614#ifdef FEATURE_WLAN_CCX
615 tANI_U8 isCcxIniFeatureEnabled;
616#endif
617
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700618#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_CCX) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowda100eb322013-03-15 16:48:20 -0700619 tANI_U8 isFastTransitionEnabled;
620 tANI_U8 RoamRssiDiff;
621 tANI_U8 nImmediateRoamRssiDiff;
622 tANI_BOOLEAN nRoamPrefer5GHz;
623 tANI_BOOLEAN nRoamIntraBand;
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -0700624 tANI_BOOLEAN isWESModeEnabled;
Srinivas Girigowda100eb322013-03-15 16:48:20 -0700625 tANI_BOOLEAN nRoamScanControl;
Varun Reddy Yeturu920df212013-05-22 08:07:23 -0700626 tANI_U8 nProbes;
627 tANI_U16 nRoamScanHomeAwayTime;
Jeff Johnson295189b2012-06-20 16:38:30 -0700628#endif
629
630#ifdef WLAN_FEATURE_NEIGHBOR_ROAMING
631 tCsrNeighborRoamConfig neighborRoamConfig;
632#endif
633
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800634 /* Instead of Reassoc, send ADDTS/DELTS even when ACM is off for that AC
Jeff Johnson295189b2012-06-20 16:38:30 -0700635 * This is mandated by WMM-AC certification */
636 tANI_BOOLEAN addTSWhenACMIsOff;
637
638 tANI_BOOLEAN fValidateList;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800639 //Remove this code once SLM_Sessionization is supported
Madan Mohan Koyyalamudi96dd30d2012-10-05 17:24:51 -0700640 //BMPS_WORKAROUND_NOT_NEEDED
Jeff Johnsone7245742012-09-05 17:12:55 -0700641 tANI_BOOLEAN doBMPSWorkaround;
Jeff Johnson295189b2012-06-20 16:38:30 -0700642
643 //To enable/disable scanning 2.4Ghz channels twice on a single scan request from HDD
644 tANI_BOOLEAN fScanTwice;
Jeff Johnsone7245742012-09-05 17:12:55 -0700645#ifdef WLAN_FEATURE_11AC
646 tANI_U32 nVhtChannelWidth;
Shailender Karmuchi08f87c22013-01-17 12:51:24 -0800647 tANI_U8 txBFEnable;
Shailender Karmuchicc3fe442013-02-16 18:18:33 -0800648 tANI_U8 txBFCsnValue;
Ravi Joshi83bfaa12013-05-28 22:12:08 -0700649 tANI_BOOLEAN enableVhtFor24GHz;
Jeff Johnsone7245742012-09-05 17:12:55 -0700650#endif
Gopichand Nakkalab2d2c312013-01-04 11:41:02 -0800651 tANI_U8 txLdpcEnable;
Jeff Johnson295189b2012-06-20 16:38:30 -0700652
Ravi Joshid2ca7c42013-07-23 08:37:49 -0700653 /*
654 * Enable/Disable heartbeat offload
655 */
656 tANI_BOOLEAN enableHeartBeatOffload;
krunal soni5afa96c2013-09-06 22:19:02 -0700657 tANI_U8 isAmsduSupportInAMPDU;
Srinivas Girigowda41c7c5f2013-10-21 19:01:38 -0700658 tANI_U8 nSelect5GHzMargin;
krunal sonie9002db2013-11-25 14:24:17 -0800659 tANI_U8 isCoalesingInIBSSAllowed;
Jeff Johnson295189b2012-06-20 16:38:30 -0700660}tCsrConfig;
661
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800662typedef struct tagCsrChannelPowerInfo
Jeff Johnson295189b2012-06-20 16:38:30 -0700663{
664 tListElem link;
665 tANI_U8 firstChannel;
666 tANI_U8 numChannels;
667 tANI_U8 txPower;
668 tANI_U8 interChannelOffset;
669}tCsrChannelPowerInfo;
670
671typedef struct tagRoamJoinStatus
672{
673 tSirResultCodes statusCode;
674 //this is set to unspecified if statusCode indicates timeout. Or it is the failed reason from the other BSS(per 802.11 spec)
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800675 tANI_U32 reasonCode;
Kiran Kumar Lokerec8550fa2013-04-15 22:23:00 -0700676 tSirMacAddr bssId;
Jeff Johnson295189b2012-06-20 16:38:30 -0700677}tCsrRoamJoinStatus;
678
679typedef struct tagCsrOsChannelMask
680{
681 tANI_U8 numChannels;
682 tANI_BOOLEAN scanEnabled[WNI_CFG_VALID_CHANNEL_LIST_LEN];
683 tANI_U8 channelList[WNI_CFG_VALID_CHANNEL_LIST_LEN];
684}tCsrOsChannelMask;
685
686
687typedef struct tagCsrScanStruct
688{
689 tScanProfile scanProfile;
690 tANI_U32 nextScanID;
Madan Mohan Koyyalamudica43cdf2012-09-24 13:15:49 -0700691 tDblLinkList scanResultList;
Jeff Johnson295189b2012-06-20 16:38:30 -0700692 tDblLinkList tempScanResults;
693 tANI_BOOLEAN fScanEnable;
694 tANI_BOOLEAN fFullScanIssued;
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530695 vos_timer_t hTimerGetResult;
Jeff Johnson295189b2012-06-20 16:38:30 -0700696#ifdef WLAN_AP_STA_CONCURRENCY
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530697 vos_timer_t hTimerStaApConcTimer;
Jeff Johnson295189b2012-06-20 16:38:30 -0700698#endif
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530699 vos_timer_t hTimerIdleScan;
700 vos_timer_t hTimerResultAging;
701 vos_timer_t hTimerResultCfgAging;
Jeff Johnson295189b2012-06-20 16:38:30 -0700702 tPalTimerHandle hTimerBgScan;
703 //changes on every scan, it is used as a flag for whether 11d info is found on every scan
Sandeep Puligilla2b6dc632012-12-17 14:44:16 -0800704 tANI_U8 channelOf11dInfo;
705 tANI_U8 scanResultCfgAgingTime;
Jeff Johnson295189b2012-06-20 16:38:30 -0700706 //changes on every scan, a flag to tell whether conflict 11d info found on each BSS
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800707 tANI_BOOLEAN fAmbiguous11dInfoFound;
Jeff Johnson295189b2012-06-20 16:38:30 -0700708 //Tush: changes on every scan, a flag to tell whether the applied 11d info present in one of the scan results
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800709 tANI_BOOLEAN fCurrent11dInfoMatch;
Jeff Johnson295189b2012-06-20 16:38:30 -0700710 tANI_BOOLEAN f11dInfoReset; //to indicate whether the 11d info in CFG is reset to default
711 tSirScanType curScanType;
712 tCsrChannel baseChannels; //This are all the supported channels AND(&) to the current eBand
713 tCsrChannel channels11d;
714 tChannelListWithPower defaultPowerTable[WNI_CFG_VALID_CHANNEL_LIST_LEN]; //From NV
715 tChannelListWithPower defaultPowerTable40MHz[WNI_CFG_VALID_CHANNEL_LIST_LEN]; //From NV
716 tANI_U32 numChannelsDefault; //total channels of NV
717 tCsrChannel base20MHzChannels; //The channel base to work on
718 tCsrChannel base40MHzChannels; //center channels for 40MHz channels
719 tDblLinkList channelPowerInfoList24;
720 tDblLinkList channelPowerInfoList5G;
721 tANI_U32 nLastAgeTimeOut;
722 tANI_U32 nAgingCountDown;
Gopichand Nakkala114718f2013-03-25 19:19:46 -0700723 tANI_U8 countryCodeDefault[WNI_CFG_COUNTRY_CODE_LEN]; //The country code from NV
724 tANI_U8 countryCodeCurrent[WNI_CFG_COUNTRY_CODE_LEN];
725 tANI_U8 countryCode11d[WNI_CFG_COUNTRY_CODE_LEN];
Jeff Johnson295189b2012-06-20 16:38:30 -0700726 v_REGDOMAIN_t domainIdDefault; //default regulatory domain
727 v_REGDOMAIN_t domainIdCurrent; //current regulatory domain
Agarwal Ashishd9d72602013-09-13 00:06:17 +0530728 tCsrBssid currentCountryBssid; // Bssid for current country code
Mihir Shetebc866f62014-02-13 16:08:53 +0530729 tANI_S8 currentCountryRSSI; // RSSI for current country code
Jeff Johnson295189b2012-06-20 16:38:30 -0700730 tANI_BOOLEAN f11dInfoApplied;
731 tANI_BOOLEAN fCancelIdleScan;
732#ifdef FEATURE_WLAN_WAPI
733// tANI_U16 NumBkidCandidate;
734// tBkidCandidateInfo BkidCandidateInfo[CSR_MAX_BKID_ALLOWED]; /* Move this as part of SessionEntry */
735#endif /* FEATURE_WLAN_WAPI */
736 tANI_U8 numBGScanChannel; //number of valid channels in the bgScanChannelList
737 tANI_U8 bgScanChannelList[WNI_CFG_BG_SCAN_CHANNEL_LIST_LEN];
738 //the ChannelInfo member is not used in this structure.
739 //numBGScanChannel and bgScanChannelList are used for the BG scan channel info
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800740 tCsrBGScanRequest bgScanParams;
Jeff Johnson295189b2012-06-20 16:38:30 -0700741 tANI_BOOLEAN fRestartIdleScan;
742 tANI_U32 nIdleScanTimeGap; //the time since last trying to trigger idle scan
743 tCsrOsChannelMask osScanChannelMask;//keep a track of channels to be scnned while in traffic condition
744 tANI_U16 nBssLimit; //the maximum number of BSS in scan cache
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800745 /*channelPowerInfoList24 has been seen corrupted. Set this flag to true trying to
Jeff Johnson295189b2012-06-20 16:38:30 -0700746 * detect when it happens. Adding this into code because we can't reproduce it easily.
747 * We don't know when it happens. */
748 tANI_BOOLEAN fValidateList;
749 /*Customer wants to start with an active scan based on the default country code.
750 * This optimization will minimize the driver load to association time.
751 * Based on this flag we will bypass the initial passive scan needed for 11d
752 * to determine the country code & domain */
753 tANI_BOOLEAN fEnableBypass11d;
754
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800755 /*Customer wants to optimize the scan time. Avoiding scans(passive) on DFS
756 * channels while swipping through both bands can save some time
Jeff Johnson295189b2012-06-20 16:38:30 -0700757 * (apprx 1.3 sec) */
758 tANI_BOOLEAN fEnableDFSChnlScan;
759
Jeff Johnsone7245742012-09-05 17:12:55 -0700760 /*
761 * To enable/disable scanning only 2.4Ghz channels on first scan
762 */
763 tANI_BOOLEAN fFirstScanOnly2GChnl;
764
Jeff Johnson295189b2012-06-20 16:38:30 -0700765 tANI_BOOLEAN fDropScanCmd; //true means we don't accept scan commands
766
767#ifdef WLAN_AP_STA_CONCURRENCY
768 tDblLinkList scanCmdPendingList;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800769#endif
Madan Mohan Koyyalamudi470d2cf2012-09-28 14:43:44 -0700770 tCsrChannel occupiedChannels; //This includes all channels on which candidate APs are found
Srinivas Girigowda41c7c5f2013-10-21 19:01:38 -0700771 tANI_S8 inScanResultBestAPRssi;
Mihir Shetefc7ff5b2014-01-27 11:30:05 +0530772
773 csrScanCompleteCallback callback11dScanDone;
Jeff Johnson295189b2012-06-20 16:38:30 -0700774}tCsrScanStruct;
775
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800776#ifdef FEATURE_WLAN_TDLS_INTERNAL
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800777/*
778 * struct to carry TDLS discovery info..
779 */
780typedef struct sCsrTdlsContext
781{
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800782 tDblLinkList tdlsPotentialPeerList ;
783 tANI_U16 tdlsCommonFlag ;
784 tANI_U16 tdlsCommonState ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800785 tANI_U16 tdlsPeerCount ;
786}tCsrTdlsCtxStruct;
787
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800788typedef struct sCsrTdlsPeerLinkInfo
789{
790 tListElem tdlsPeerStaLink ;
791 tSirTdlsPeerInfo tdlsDisPeerInfo ;
792}tCsrTdlsPeerLinkinfo ;
793#endif
Gopichand Nakkalab977a972013-02-18 19:15:09 -0800794
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800795
796
Jeff Johnson295189b2012-06-20 16:38:30 -0700797
798//Save the connected information. This structure + connectedProfile
799//should contain all information about the connection
800typedef struct tagRoamCsrConnectedInfo
801{
802 tANI_U32 nBeaconLength; //the length, in bytes, of the beacon frame, can be 0
803 tANI_U32 nAssocReqLength; //the length, in bytes, of the assoc req frame, can be 0
804 tANI_U32 nAssocRspLength; //The length, in bytes, of the assoc rsp frame, can be 0
805#ifdef WLAN_FEATURE_VOWIFI_11R
806 tANI_U32 nRICRspLength; //Length of the parsed RIC response IEs received in reassoc response
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800807#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700808#ifdef FEATURE_WLAN_CCX
809 tANI_U32 nTspecIeLength;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800810#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700811 tANI_U8 *pbFrames; //Point to a buffer contain the beacon, assoc req, assoc rsp frame, in that order
812 //user needs to use nBeaconLength, nAssocReqLength, nAssocRspLength to desice where
813 //each frame starts and ends.
814 tANI_U8 staId;
815}tCsrRoamConnectedInfo;
816
817
818typedef struct tagCsrLinkQualityIndInfo
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800819{
Jeff Johnson295189b2012-06-20 16:38:30 -0700820 csrRoamLinkQualityIndCallback callback;
821 void *context;
822}tCsrLinkQualityIndInfo;
823
824typedef struct tagCsrPeStatsReqInfo
825{
826 tListElem link; /* list links */
827 tANI_U32 statsMask;
828 tANI_U32 periodicity;
829 tANI_BOOLEAN rspPending;
830 vos_timer_t hPeStatsTimer;
831 tANI_BOOLEAN timerRunning;
832 tANI_U8 staId;
833 tANI_U8 numClient;
834 tpAniSirGlobal pMac;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800835 /* To remember if the peStats timer is stopped successfully or not */
Jeff Johnson295189b2012-06-20 16:38:30 -0700836 tANI_BOOLEAN timerStopFailed;
837
838}tCsrPeStatsReqInfo;
839
840typedef struct tagCsrStatsClientReqInfo
841{
842 tListElem link; /* list links */
843 eCsrStatsRequesterType requesterId;
844 tCsrStatsCallback callback;
845 tANI_U32 periodicity;
846 void *pContext;
847 tANI_U32 statsMask;
848 tCsrPeStatsReqInfo *pPeStaEntry;
849 tANI_U8 staId;
850 vos_timer_t timer;
851 tANI_BOOLEAN timerExpired;
852 tpAniSirGlobal pMac; // TODO: Confirm this change BTAMP
853}tCsrStatsClientReqInfo;
854
855typedef struct tagCsrTlStatsReqInfo
856{
857 tANI_U32 periodicity;
858 tANI_BOOLEAN timerRunning;
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530859 vos_timer_t hTlStatsTimer;
Jeff Johnson295189b2012-06-20 16:38:30 -0700860 tANI_U8 numClient;
861}tCsrTlStatsReqInfo;
862
863typedef struct tagCsrRoamSession
864{
865 tANI_U8 sessionId; // Session ID
866 tANI_BOOLEAN sessionActive; // TRUE if it is used
867 tCsrBssid selfMacAddr; // For BT-AMP station, this serve as BSSID for self-BSS.
868 csrRoamCompleteCallback callback;
869 void *pContext;
870 eCsrConnectState connectState;
871 tCsrRoamConnectedProfile connectedProfile;
872 tCsrRoamConnectedInfo connectedInfo;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800873 tCsrRoamProfile *pCurRoamProfile;
Jeff Johnson295189b2012-06-20 16:38:30 -0700874 tSirBssDescription *pConnectBssDesc;
875 tANI_U16 NumPmkidCache;
876 tPmkidCacheInfo PmkidCacheInfo[CSR_MAX_PMKID_ALLOWED];
877 tANI_U8 cJoinAttemps;
878 //This may or may not have the up-to-date valid channel list
879 //It is used to get WNI_CFG_VALID_CHANNEL_LIST and not allocate memory all the time
880 tSirMacChanNum validChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN];
881 tANI_S32 sPendingCommands; //0 means CSR is ok to low power
882#ifdef FEATURE_WLAN_WAPI
883 tANI_U16 NumBkidCache;
884 tBkidCacheInfo BkidCacheInfo[CSR_MAX_BKID_ALLOWED];
885#endif /* FEATURE_WLAN_WAPI */
886 tANI_BOOLEAN fRoaming; //indicate whether CSR is roaming (either via lostlink or dynamic roaming)
887 //to remember some parameters needed for START_BSS.
888 //All member must be set every time we try to join or start an IBSS or BT-AMP
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800889 tCsrRoamStartBssParams bssParams;
Jeff Johnson295189b2012-06-20 16:38:30 -0700890 tANI_U32 nWpaRsnReqIeLength; //the byte count of pWpaRsnIE;
891 tANI_U8 *pWpaRsnReqIE; //this contain the WPA/RSN IE in assoc request or the one sent in beacon (IBSS)
892 tANI_U32 nWpaRsnRspIeLength; //the byte count for pWpaRsnRspIE
893 tANI_U8 *pWpaRsnRspIE; //this contain the WPA/RSN IE in beacon/probe rsp
894#ifdef FEATURE_WLAN_WAPI
895 tANI_U32 nWapiReqIeLength; //the byte count of pWapiReqIE;
896 tANI_U8 *pWapiReqIE; //this contain the WAPI IE in assoc request or the one sent in beacon (IBSS)
897 tANI_U32 nWapiRspIeLength; //the byte count for pWapiRspIE
898 tANI_U8 *pWapiRspIE; //this contain the WAPI IE in beacon/probe rsp
899#endif /* FEATURE_WLAN_WAPI */
Agarwal Ashish4f616132013-12-30 23:32:50 +0530900 tANI_U32 nAddIEScanLength; //length of addIeScan
901 /* This contains the additional IE in (unicast)
902 * probe request at the time of join
903 */
904 tANI_U8 addIEScan[SIR_MAC_MAX_IE_LENGTH+2];
Jeff Johnson295189b2012-06-20 16:38:30 -0700905 tANI_U32 nAddIEAssocLength; //the byte count for pAddIeAssocIE
906 tANI_U8 *pAddIEAssoc; //this contains the additional IE in (re) assoc request
907
908 tANI_TIMESTAMP roamingStartTime; //in units of 10ms
909 tCsrTimerInfo roamingTimerInfo;
910 eCsrRoamingReason roamingReason;
911 tANI_BOOLEAN fCancelRoaming;
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530912 vos_timer_t hTimerRoaming;
Jeff Johnson295189b2012-06-20 16:38:30 -0700913 eCsrRoamResult roamResult; //the roamResult that is used when the roaming timer fires
914 tCsrRoamJoinStatus joinFailStatusCode; //This is the reason code for join(assoc) failure
915 //The status code returned from PE for deauth or disassoc (in case of lostlink), or our own dynamic roaming
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800916 tANI_U32 roamingStatusCode;
Jeff Johnson295189b2012-06-20 16:38:30 -0700917 tANI_U16 NumPmkidCandidate;
918 tPmkidCandidateInfo PmkidCandidateInfo[CSR_MAX_PMKID_ALLOWED];
919 #ifdef FEATURE_WLAN_WAPI
920 tANI_U16 NumBkidCandidate;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800921 tBkidCandidateInfo BkidCandidateInfo[CSR_MAX_BKID_ALLOWED];
Jeff Johnson295189b2012-06-20 16:38:30 -0700922#endif
923 tANI_BOOLEAN fWMMConnection;
Sandeep Puligillaaea98a22013-12-04 13:36:32 +0530924 tANI_BOOLEAN fQOSConnection;
925
Jeff Johnson295189b2012-06-20 16:38:30 -0700926#ifdef FEATURE_WLAN_BTAMP_UT_RF
927 //To retry a join later when it fails if so desired
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530928 vos_timer_t hTimerJoinRetry;
Jeff Johnson295189b2012-06-20 16:38:30 -0700929 tCsrTimerInfo joinRetryTimerInfo;
930 tANI_U32 maxRetryCount;
931#endif
932#ifdef FEATURE_WLAN_CCX
933 tCsrCcxCckmInfo ccxCckmInfo;
934 tANI_BOOLEAN isPrevApInfoValid;
935 tSirMacSSid prevApSSID;
936 tCsrBssid prevApBssid;
937 tANI_U8 prevOpChannel;
938 tANI_U16 clientDissSecs;
939 tANI_U32 roamTS1;
Srinivas Girigowda5cecb202013-10-08 09:13:25 -0700940#if defined(FEATURE_WLAN_CCX_UPLOAD)
941 tCsrCcxCckmIe suppCckmIeInfo;
942#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700943#endif
944 tANI_U8 bRefAssocStartCnt; //Tracking assoc start indication
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800945 /* to force the AP initiate fresh 802.1x authentication after re-association need to clear
Madan Mohan Koyyalamudiea22cdc2012-10-18 21:02:23 -0700946 * the PMKID cache. To clear the cache in this particular case this is added
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800947 * it is needed by the HS 2.0 passpoint certification 5.2.a and b testcases */
Madan Mohan Koyyalamudiea22cdc2012-10-18 21:02:23 -0700948 tANI_BOOLEAN fIgnorePMKIDCache;
Jeff Johnson295189b2012-06-20 16:38:30 -0700949} tCsrRoamSession;
950
951typedef struct tagCsrRoamStruct
952{
953 tANI_U32 nextRoamId;
954 tDblLinkList roamCmdPendingList;
955 tDblLinkList channelList5G;
956 tDblLinkList channelList24;
957 tCsrConfig configParam;
958 tANI_U32 numChannelsEeprom; //total channels of eeprom
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800959 tCsrChannel base20MHzChannels; //The channel base to work on
960 tCsrChannel base40MHzChannels; //center channels for 40MHz channels
961 eCsrRoamState curState[CSR_ROAM_SESSION_MAX];
Jeff Johnson295189b2012-06-20 16:38:30 -0700962 eCsrRoamSubState curSubState[CSR_ROAM_SESSION_MAX];
963 //This may or may not have the up-to-date valid channel list
964 //It is used to get WNI_CFG_VALID_CHANNEL_LIST and not allocate memory all the time
965 tSirMacChanNum validChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN];
966 tANI_U32 numValidChannels; //total number of channels in CFG
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800967
Jeff Johnson295189b2012-06-20 16:38:30 -0700968 tANI_S32 sPendingCommands;
Madan Mohan Koyyalamudia48c6812013-07-11 12:01:37 +0530969 vos_timer_t hTimerWaitForKey; //To support timeout for WaitForKey state
Jeff Johnson295189b2012-06-20 16:38:30 -0700970 tCsrSummaryStatsInfo summaryStatsInfo;
971 tCsrGlobalClassAStatsInfo classAStatsInfo;
972 tCsrGlobalClassBStatsInfo classBStatsInfo;
973 tCsrGlobalClassCStatsInfo classCStatsInfo;
974 tCsrGlobalClassDStatsInfo classDStatsInfo;
975 tCsrPerStaStatsInfo perStaStatsInfo[CSR_MAX_STA];
976 tDblLinkList statsClientReqList;
977 tDblLinkList peStatsReqList;
978 tCsrTlStatsReqInfo tlStatsReqInfo;
979 eCsrRoamLinkQualityInd vccLinkQuality;
980 tCsrLinkQualityIndInfo linkQualityIndInfo;
981 v_CONTEXT_t gVosContext; //used for interaction with TL
982 //To specify whether an association or a IBSS is WMM enabled
983 //This parameter is only valid during a join or start BSS command is being executed
984 //tANI_BOOLEAN fWMMConnection; /* Moving it to be part of roamsession */
985 v_U8_t ucACWeights[WLANTL_MAX_AC];
986 /* TODO : Upto here */
987 tCsrTimerInfo WaitForKeyTimerInfo;
988 tCsrRoamSession *roamSession;
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -0800989 tANI_U32 transactionId; // Current transaction ID for internal use.
990#ifdef WLAN_FEATURE_NEIGHBOR_ROAMING
Jeff Johnson295189b2012-06-20 16:38:30 -0700991 tCsrNeighborRoamControlInfo neighborRoamInfo;
992#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700993#ifdef FEATURE_WLAN_LFR
994 tANI_U8 isFastRoamIniFeatureEnabled;
995#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700996#ifdef FEATURE_WLAN_CCX
997 tANI_U8 isCcxIniFeatureEnabled;
998#endif
Jeff Johnson43971f52012-07-17 12:26:56 -0700999#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_CCX) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowda100eb322013-03-15 16:48:20 -07001000 tANI_U8 RoamRssiDiff;
Srinivas Girigowdaad34ca92013-10-22 10:54:29 -07001001 tANI_BOOLEAN isWESModeEnabled;
Jeff Johnson43971f52012-07-17 12:26:56 -07001002#endif
Leela Venkata Kiran Kumar Reddy Chirala56df73f2014-01-30 14:18:00 -08001003 tANI_U32 deauthRspStatus;
Jeff Johnson295189b2012-06-20 16:38:30 -07001004}tCsrRoamStruct;
1005
1006
1007#define GET_NEXT_ROAM_ID(pRoamStruct) (((pRoamStruct)->nextRoamId + 1 == 0) ? 1 : (pRoamStruct)->nextRoamId)
1008#define CSR_IS_ROAM_STATE(pMac, state, sessionId) ( (state) == (pMac)->roam.curState[sessionId] )
1009
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001010#define CSR_IS_ROAM_STOP(pMac, sessionId) CSR_IS_ROAM_STATE( (pMac), eCSR_ROAMING_STATE_STOP, sessionId )
1011#define CSR_IS_ROAM_INIT(pMac, sessionId) CSR_IS_ROAM_STATE( (pMac), eCSR_ROAMING_STATE_INIT, sessionId )
Jeff Johnson295189b2012-06-20 16:38:30 -07001012#define CSR_IS_ROAM_SCANNING(pMac, sessionId) CSR_IS_ROAM_STATE( pMac, eCSR_ROAMING_STATE_SCANNING, sessionId )
1013#define CSR_IS_ROAM_JOINING(pMac, sessionId) CSR_IS_ROAM_STATE( pMac, eCSR_ROAMING_STATE_JOINING, sessionId )
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001014#define CSR_IS_ROAM_IDLE(pMac, sessionId) CSR_IS_ROAM_STATE( pMac, eCSR_ROAMING_STATE_IDLE, sessionId )
Jeff Johnson295189b2012-06-20 16:38:30 -07001015#define CSR_IS_ROAM_JOINED(pMac, sessionId) CSR_IS_ROAM_STATE( pMac, eCSR_ROAMING_STATE_JOINED, sessionId )
1016
1017#define CSR_IS_ROAM_SUBSTATE(pMac, subState, sessionId) ((subState) == (pMac)->roam.curSubState[sessionId])
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001018#define CSR_IS_ROAM_SUBSTATE_JOIN_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_JOIN_REQ, sessionId)
1019#define CSR_IS_ROAM_SUBSTATE_AUTH_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_AUTH_REQ, sessionId)
1020#define CSR_IS_ROAM_SUBSTATE_REASSOC_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_REASSOC_REQ, sessionId)
1021#define CSR_IS_ROAM_SUBSTATE_DISASSOC_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISASSOC_REQ, sessionId)
1022#define CSR_IS_ROAM_SUBSTATE_DISASSOC_NO_JOIN(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISASSOC_NOTHING_TO_JOIN, sessionId)
1023#define CSR_IS_ROAM_SUBSTATE_REASSOC_FAIL(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISASSOC_REASSOC_FAILURE, sessionId)
1024#define CSR_IS_ROAM_SUBSTATE_DISASSOC_FORCED(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISASSOC_FORCED, sessionId)
1025#define CSR_IS_ROAM_SUBSTATE_DEAUTH_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DEAUTH_REQ, sessionId)
1026#define CSR_IS_ROAM_SUBSTATE_START_BSS_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_START_BSS_REQ, sessionId)
1027#define CSR_IS_ROAM_SUBSTATE_STOP_BSS_REQ(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_STOP_BSS_REQ, sessionId)
1028#define CSR_IS_ROAM_SUBSTATE_DISCONNECT_CONTINUE(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISCONNECT_CONTINUE_ROAMING, sessionId)
Jeff Johnson295189b2012-06-20 16:38:30 -07001029#define CSR_IS_ROAM_SUBSTATE_CONFIG(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_CONFIG, sessionId)
1030#define CSR_IS_ROAM_SUBSTATE_WAITFORKEY(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_WAIT_FOR_KEY, sessionId)
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001031#define CSR_IS_ROAM_SUBSTATE_DISASSOC_HO(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_DISASSOC_HANDOFF, sessionId)
1032#define CSR_IS_ROAM_SUBSTATE_HO_NT(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_JOINED_NO_TRAFFIC, sessionId)
1033#define CSR_IS_ROAM_SUBSTATE_HO_NRT(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_JOINED_NON_REALTIME_TRAFFIC, sessionId)
1034#define CSR_IS_ROAM_SUBSTATE_HO_RT(pMac, sessionId) CSR_IS_ROAM_SUBSTATE((pMac), eCSR_ROAM_SUBSTATE_JOINED_REALTIME_TRAFFIC, sessionId)
Jeff Johnson295189b2012-06-20 16:38:30 -07001035
1036#define CSR_IS_PHY_MODE_B_ONLY(pMac) \
1037 ((eCSR_DOT11_MODE_11b == (pMac)->roam.configParam.phyMode) ||\
1038 (eCSR_DOT11_MODE_11b_ONLY == (pMac)->roam.configParam.phyMode))
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001039
Jeff Johnson295189b2012-06-20 16:38:30 -07001040#define CSR_IS_PHY_MODE_G_ONLY(pMac) \
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001041 (eCSR_DOT11_MODE_11g == (pMac)->roam.configParam.phyMode || eCSR_DOT11_MODE_11g_ONLY == (pMac)->roam.configParam.phyMode)
1042
Jeff Johnson295189b2012-06-20 16:38:30 -07001043#define CSR_IS_PHY_MODE_A_ONLY(pMac) \
1044 ((eCSR_DOT11_MODE_11a == (pMac)->roam.configParam.phyMode) ||\
1045 (eCSR_DOT11_MODE_11a_ONLY == (pMac)->roam.configParam.phyMode))
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001046
Jeff Johnsone7245742012-09-05 17:12:55 -07001047#ifdef WLAN_FEATURE_11AC
1048#define CSR_IS_PHY_MODE_DUAL_BAND(phyMode) \
1049 ((eCSR_DOT11_MODE_abg & (phyMode)) || (eCSR_DOT11_MODE_11n & (phyMode)) || \
1050 (eCSR_DOT11_MODE_11ac & (phyMode)) || \
1051 (eCSR_DOT11_MODE_TAURUS & (phyMode)) || \
1052 (eCSR_DOT11_MODE_AUTO & (phyMode)))
1053#else
Jeff Johnson295189b2012-06-20 16:38:30 -07001054#define CSR_IS_PHY_MODE_DUAL_BAND(phyMode) \
1055 ((eCSR_DOT11_MODE_abg & (phyMode)) || (eCSR_DOT11_MODE_11n & (phyMode)) || \
1056 (eCSR_DOT11_MODE_TAURUS & (phyMode)) || \
1057 (eCSR_DOT11_MODE_AUTO & (phyMode)))
Jeff Johnsone7245742012-09-05 17:12:55 -07001058#endif
1059
Jeff Johnson295189b2012-06-20 16:38:30 -07001060
1061// this function returns TRUE if the NIC is operating exclusively in the 2.4 GHz band, meaning
1062// it is NOT operating in the 5.0 GHz band.
1063#define CSR_IS_24_BAND_ONLY(pMac) \
1064 (eCSR_BAND_24 == (pMac)->roam.configParam.eBand)
1065
1066#define CSR_IS_5G_BAND_ONLY(pMac) \
1067 (eCSR_BAND_5G == (pMac)->roam.configParam.eBand)
1068
1069#define CSR_IS_RADIO_DUAL_BAND(pMac) \
1070 (eCSR_BAND_ALL == (pMac)->roam.configParam.bandCapability)
1071
1072#define CSR_IS_RADIO_BG_ONLY(pMac) \
1073 (eCSR_BAND_24 == (pMac)->roam.configParam.bandCapability)
1074
1075// this function returns TRUE if the NIC is operating exclusively in the 5.0 GHz band, meaning
1076// it is NOT operating in the 2.4 GHz band
1077#define CSR_IS_RADIO_A_ONLY(pMac) \
1078 (eCSR_BAND_5G == (pMac)->roam.configParam.bandCapability)
1079
1080// this function returns TRUE if the NIC is operating in both bands.
1081#define CSR_IS_OPEARTING_DUAL_BAND(pMac) \
1082 ((eCSR_BAND_ALL == (pMac)->roam.configParam.bandCapability) && (eCSR_BAND_ALL == (pMac)->roam.configParam.eBand))
1083
1084// this function returns TRUE if the NIC can operate in the 5.0 GHz band (could operate in the
1085// 2.4 GHz band also).
1086#define CSR_IS_OPERATING_A_BAND(pMac) \
1087 (CSR_IS_OPEARTING_DUAL_BAND((pMac)) || CSR_IS_RADIO_A_ONLY((pMac)) || CSR_IS_5G_BAND_ONLY((pMac)))
1088
1089// this function returns TRUE if the NIC can operate in the 2.4 GHz band (could operate in the
1090// 5.0 GHz band also).
1091#define CSR_IS_OPERATING_BG_BAND(pMac) \
1092 (CSR_IS_OPEARTING_DUAL_BAND((pMac)) || CSR_IS_RADIO_BG_ONLY((pMac)) || CSR_IS_24_BAND_ONLY((pMac)))
1093
1094#define CSR_IS_CHANNEL_5GHZ(chnNum) \
Jeff Johnsone7245742012-09-05 17:12:55 -07001095 (((chnNum) >= CSR_MIN_5GHz_CHANNEL_NUMBER) && ((chnNum) <= CSR_MAX_5GHz_CHANNEL_NUMBER))
Jeff Johnson295189b2012-06-20 16:38:30 -07001096
Srinivas Girigowdade697412013-02-14 16:31:48 -08001097#define CSR_IS_CHANNEL_DFS(chnNum) \
1098 (NV_CHANNEL_ENABLE != vos_nv_getChannelEnabledState(chnNum))
1099
Jeff Johnson295189b2012-06-20 16:38:30 -07001100#define CSR_IS_CHANNEL_24GHZ(chnNum) \
1101 (((chnNum) > 0) && ((chnNum) <= CSR_MAX_24GHz_CHANNEL_NUMBER))
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001102
Jeff Johnson295189b2012-06-20 16:38:30 -07001103#define CSR_IS_SAME_BAND_CHANNELS(ch1, ch2) (CSR_IS_CHANNEL_5GHZ(ch1) == CSR_IS_CHANNEL_5GHZ(ch2))
1104
1105
1106#define CSR_IS_11D_INFO_FOUND(pMac) \
1107 (0 != (pMac)->scan.channelOf11dInfo)
1108// DEAUTHIND
1109#define CSR_IS_ROAMING(pSession) ((CSR_IS_LOSTLINK_ROAMING((pSession)->roamingReason)) || \
1110 (eCsrDynamicRoaming == (pSession)->roamingReason) || \
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001111 (eCsrReassocRoaming == (pSession)->roamingReason))
Jeff Johnson295189b2012-06-20 16:38:30 -07001112
1113
1114#define CSR_IS_SET_KEY_COMMAND( pCommand ) ( eSmeCommandSetKey == (pCommand)->command )
1115
1116#define CSR_IS_ADDTS_WHEN_ACMOFF_SUPPORTED(pMac) (pMac->roam.configParam.addTSWhenACMIsOff)
1117// DEAUTHIND
1118#define CSR_IS_LOSTLINK_ROAMING(reason) ((eCsrLostlinkRoamingDisassoc == (reason)) || (eCsrLostlinkRoamingDeauth == (reason)))
1119
Venkata Prathyusha Kuntupalli239278b2013-03-26 15:58:18 -07001120#define CSR_IS_ROAMING_COMMAND(pCommand) ((eCsrLostLink1 == (pCommand)->u.roamCmd.roamReason) ||\
1121 (eCsrLostLink2 == (pCommand)->u.roamCmd.roamReason) ||\
1122 (eCsrLostLink3 == (pCommand)->u.roamCmd.roamReason) )
1123
1124
Jeff Johnson295189b2012-06-20 16:38:30 -07001125//Stop CSR from asking for IMPS, This function doesn't disable IMPS from CSR
1126void csrScanSuspendIMPS( tpAniSirGlobal pMac );
1127//Start CSR from asking for IMPS. This function doesn't trigger CSR to request entering IMPS
1128//because IMPS maybe disabled.
1129void csrScanResumeIMPS( tpAniSirGlobal pMac );
1130
1131eHalStatus csrInitGetChannels(tpAniSirGlobal pMac);
Srinivas, Dasari42bf7702014-02-07 11:29:53 +05301132eHalStatus csrScanFilterResults(tpAniSirGlobal pMac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001133
1134eHalStatus csrSetModifyProfileFields(tpAniSirGlobal pMac, tANI_U32 sessionId,
1135 tCsrRoamModifyProfileFields *pModifyProfileFields);
1136/* ---------------------------------------------------------------------------
1137 \fn csrGetModifyProfileFields
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001138 \brief HDD or SME - QOS calls this function to get the current values of
Jeff Johnson295189b2012-06-20 16:38:30 -07001139 connected profile fields changing which can cause reassoc.
1140 This function must be called after CFG is downloaded and STA is in connected
1141 state.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001142 \param pModifyProfileFields - pointer to the connected profile fields
Jeff Johnson295189b2012-06-20 16:38:30 -07001143 changing which can cause reassoc
1144
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001145 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001146 -------------------------------------------------------------------------------*/
1147eHalStatus csrGetModifyProfileFields(tpAniSirGlobal pMac, tANI_U32 sessionId,
1148 tCsrRoamModifyProfileFields * pModifyProfileFields);
1149void csrSetGlobalCfgs( tpAniSirGlobal pMac );
1150void csrSetDefaultDot11Mode( tpAniSirGlobal pMac );
1151void csrScanSetChannelMask(tpAniSirGlobal pMac, tCsrChannelInfo *pChannelInfo);
1152tANI_BOOLEAN csrIsConnStateDisconnected(tpAniSirGlobal pMac, tANI_U32 sessionId);
1153tANI_BOOLEAN csrIsConnStateConnectedIbss( tpAniSirGlobal pMac, tANI_U32 sessionId );
1154tANI_BOOLEAN csrIsConnStateDisconnectedIbss( tpAniSirGlobal pMac, tANI_U32 sessionId );
1155tANI_BOOLEAN csrIsConnStateConnectedInfra( tpAniSirGlobal pMac, tANI_U32 sessionId );
1156tANI_BOOLEAN csrIsConnStateConnected( tpAniSirGlobal pMac, tANI_U32 sessionId );
1157tANI_BOOLEAN csrIsConnStateInfra( tpAniSirGlobal pMac, tANI_U32 sessionId );
1158tANI_BOOLEAN csrIsConnStateIbss( tpAniSirGlobal pMac, tANI_U32 sessionId );
1159tANI_BOOLEAN csrIsConnStateWds( tpAniSirGlobal pMac, tANI_U32 sessionId );
1160tANI_BOOLEAN csrIsConnStateConnectedWds( tpAniSirGlobal pMac, tANI_U32 sessionId );
1161tANI_BOOLEAN csrIsConnStateDisconnectedWds( tpAniSirGlobal pMac, tANI_U32 sessionId );
1162tANI_BOOLEAN csrIsAnySessionInConnectState( tpAniSirGlobal pMac );
1163tANI_BOOLEAN csrIsAllSessionDisconnected( tpAniSirGlobal pMac );
Madan Mohan Koyyalamudi48081ef2012-12-04 16:49:55 -08001164tANI_BOOLEAN csrIsStaSessionConnected( tpAniSirGlobal pMac );
1165tANI_BOOLEAN csrIsP2pSessionConnected( tpAniSirGlobal pMac );
Madan Mohan Koyyalamudid3d22592012-09-24 14:01:29 -07001166tANI_BOOLEAN csrIsAnySessionConnected( tpAniSirGlobal pMac );
Jeff Johnson295189b2012-06-20 16:38:30 -07001167tANI_BOOLEAN csrIsInfraConnected( tpAniSirGlobal pMac );
1168tANI_BOOLEAN csrIsConcurrentInfraConnected( tpAniSirGlobal pMac );
Jeff Johnsone7245742012-09-05 17:12:55 -07001169tANI_BOOLEAN csrIsConcurrentSessionRunning( tpAniSirGlobal pMac );
Jeff Johnsone7245742012-09-05 17:12:55 -07001170tANI_BOOLEAN csrIsInfraApStarted( tpAniSirGlobal pMac );
Jeff Johnson295189b2012-06-20 16:38:30 -07001171tANI_BOOLEAN csrIsIBSSStarted( tpAniSirGlobal pMac );
1172tANI_BOOLEAN csrIsBTAMPStarted( tpAniSirGlobal pMac );
1173tANI_BOOLEAN csrIsBTAMP( tpAniSirGlobal pMac, tANI_U32 sessionId );
1174eHalStatus csrIsBTAMPAllowed( tpAniSirGlobal pMac, tANI_U32 chnId );
Jeff Johnsone7245742012-09-05 17:12:55 -07001175tANI_BOOLEAN csrIsValidMcConcurrentSession(tpAniSirGlobal pMac, tANI_U32 sessionId,
1176 tSirBssDescription *pBssDesc);
Jeff Johnson295189b2012-06-20 16:38:30 -07001177tANI_BOOLEAN csrIsConnStateConnectedInfraAp( tpAniSirGlobal pMac, tANI_U32 sessionId );
Jeff Johnson295189b2012-06-20 16:38:30 -07001178/*----------------------------------------------------------------------------
1179 \fn csrRoamRegisterLinkQualityIndCallback
1180
1181 \brief
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001182 a CSR function to allow HDD to register a callback handler with CSR for
1183 link quality indications.
Jeff Johnson295189b2012-06-20 16:38:30 -07001184
1185 Only one callback may be registered at any time.
1186 In order to deregister the callback, a NULL cback may be provided.
1187
1188 Registration happens in the task context of the caller.
1189
1190 \param callback - Call back being registered
1191 \param pContext - user data
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001192
Jeff Johnson295189b2012-06-20 16:38:30 -07001193 DEPENDENCIES: After CSR open
1194
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001195 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001196-----------------------------------------------------------------------------*/
1197eHalStatus csrRoamRegisterLinkQualityIndCallback(tpAniSirGlobal pMac,
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001198 csrRoamLinkQualityIndCallback callback,
Jeff Johnson295189b2012-06-20 16:38:30 -07001199 void *pContext);
1200/* ---------------------------------------------------------------------------
1201 \fn csrGetStatistics
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001202 \brief csr function that client calls to register a callback to get
1203 different PHY level statistics from CSR.
1204
Jeff Johnson295189b2012-06-20 16:38:30 -07001205 \param requesterId - different client requesting for statistics, HDD, UMA/GAN etc
1206 \param statsMask - The different category/categories of stats requester is looking for
1207 \param callback - SME sends back the requested stats using the callback
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001208 \param periodicity - If requester needs periodic update, 0 means it's an one
Jeff Johnson295189b2012-06-20 16:38:30 -07001209 time request
1210 \param cache - If requester is happy with cached stats
1211 \param staId - The station ID for which the stats is requested for
1212 \param pContext - user context to be passed back along with the callback
1213
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001214 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001215 ---------------------------------------------------------------------------*/
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001216eHalStatus csrGetStatistics(tpAniSirGlobal pMac, eCsrStatsRequesterType requesterId,
1217 tANI_U32 statsMask,
1218 tCsrStatsCallback callback,
1219 tANI_U32 periodicity, tANI_BOOLEAN cache,
Jeff Johnson295189b2012-06-20 16:38:30 -07001220 tANI_U8 staId, void *pContext);
1221
Madan Mohan Koyyalamudi8af9b402013-07-11 14:59:10 +05301222/* ---------------------------------------------------------------------------
1223 \fn csrGetTLSTAState
1224 \helper function to get the TL STA State whenever the function is called.
1225
1226 \param staId - The staID to be passed to the TL
1227 to get the relevant TL STA State
1228 \return the state as tANI_U16
1229 ---------------------------------------------------------------------------*/
1230tANI_U16 csrGetTLSTAState(tpAniSirGlobal pMac, tANI_U8 staId);
Jeff Johnson295189b2012-06-20 16:38:30 -07001231
1232eHalStatus csrGetRssi(tpAniSirGlobal pMac,tCsrRssiCallback callback,tANI_U8 staId,tCsrBssid bssId,void * pContext,void * pVosContext);
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +05301233
1234/* ---------------------------------------------------------------------------
1235 \fn csrGetSnr
1236 \brief csr function that client calls to register a callback to get
1237 SNR stored in TL
1238
1239 \param callback - SME sends back the requested stats using the callback
1240 \param staId - The station ID for which the stats is requested for
1241 \param bssid - The bssid for the connected session
1242 \param pContext - user context to be passed back along with the callback
1243
1244 \return eHalStatus
1245 ---------------------------------------------------------------------------*/
1246eHalStatus csrGetSnr(tpAniSirGlobal pMac, tCsrSnrCallback callback,
1247 tANI_U8 staId, tCsrBssid bssId, void *pContext);
1248
Srinivas Girigowdad34cedb2013-01-25 13:33:11 -08001249#if defined WLAN_FEATURE_VOWIFI_11R || defined FEATURE_WLAN_CCX || defined(FEATURE_WLAN_LFR)
1250eHalStatus csrGetRoamRssi(tpAniSirGlobal pMac,
1251 tCsrRssiCallback callback,
1252 tANI_U8 staId,
1253 tCsrBssid bssId,
1254 void * pContext,
1255 void * pVosContext);
1256#endif
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07001257
1258#if defined(FEATURE_WLAN_CCX) && defined(FEATURE_WLAN_CCX_UPLOAD)
1259eHalStatus csrGetTsmStats(tpAniSirGlobal pMac, tCsrTsmStatsCallback callback, tANI_U8 staId,
1260 tCsrBssid bssId, void *pContext, void* pVosContext,
1261 tANI_U8 tid);
1262#endif /* FEATURE_WLAN_CCX && FEATURE_WLAN_CCX_UPLOAD */
1263
Jeff Johnson295189b2012-06-20 16:38:30 -07001264eHalStatus csrRoamRegisterCallback(tpAniSirGlobal pMac, csrRoamCompleteCallback callback, void *pContext);
1265/* ---------------------------------------------------------------------------
1266 \fn csrGetConfigParam
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001267 \brief HDD calls this function to get the global settings currently maintained by CSR.
Jeff Johnson295189b2012-06-20 16:38:30 -07001268 \param pParam - caller allocated memory
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001269 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001270 -------------------------------------------------------------------------------*/
1271eHalStatus csrGetConfigParam(tpAniSirGlobal pMac, tCsrConfigParam *pParam);
1272
1273/* ---------------------------------------------------------------------------
1274 \fn csrMsgProcessor
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001275 \brief HDD calls this function to change some global settings.
Jeff Johnson295189b2012-06-20 16:38:30 -07001276 caller must set the all fields or call csrGetConfigParam to prefill the fields.
1277 \param pParam - caller allocated memory
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001278 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001279 -------------------------------------------------------------------------------*/
1280eHalStatus csrChangeDefaultConfigParam(tpAniSirGlobal pMac, tCsrConfigParam *pParam);
1281
1282
1283/* ---------------------------------------------------------------------------
1284 \fn csrMsgProcessor
1285 \brief HDD calls this function for the messages that are handled by CSR.
1286 \param pMsgBuf - a pointer to a buffer that maps to various structures base on the message type.
1287 The beginning of the buffer can always map to tSirSmeRsp.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001288 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001289 -------------------------------------------------------------------------------*/
1290eHalStatus csrMsgProcessor( tpAniSirGlobal pMac, void *pMsgBuf );
1291
1292/* ---------------------------------------------------------------------------
1293 \fn csrOpen
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001294 \brief This function must be called before any API call to CSR.
1295 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001296 -------------------------------------------------------------------------------*/
1297eHalStatus csrOpen(tpAniSirGlobal pMac);
Mihir Shetee1093ba2014-01-21 20:13:32 +05301298
1299/* ---------------------------------------------------------------------------
1300 \fn csrInitChannels
1301 \brief This function must be called to initialize CSR channel lists
1302 \return eHalStatus
1303 -------------------------------------------------------------------------------*/
1304eHalStatus csrInitChannels(tpAniSirGlobal pMac);
1305
Jeff Johnson295189b2012-06-20 16:38:30 -07001306/* ---------------------------------------------------------------------------
1307 \fn csrClose
1308 \brief To close down CSR module. There should not be any API call into CSR after calling this function.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001309 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001310 -------------------------------------------------------------------------------*/
1311eHalStatus csrClose(tpAniSirGlobal pMac);
1312/* ---------------------------------------------------------------------------
1313 \fn csrStart
1314 \brief To start CSR.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001315 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001316 -------------------------------------------------------------------------------*/
1317eHalStatus csrStart(tpAniSirGlobal pMac);
1318/* ---------------------------------------------------------------------------
1319 \fn csrStop
1320 \brief To stop CSR. CSR still keeps its current setting.
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001321 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001322 -------------------------------------------------------------------------------*/
Kiet Lama72a2322013-11-15 11:18:11 +05301323eHalStatus csrStop(tpAniSirGlobal pMac, tHalStopType stopType);
Jeff Johnson295189b2012-06-20 16:38:30 -07001324/* ---------------------------------------------------------------------------
1325 \fn csrReady
1326 \brief To let CSR is ready to operate
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001327 \return eHalStatus
Jeff Johnson295189b2012-06-20 16:38:30 -07001328 -------------------------------------------------------------------------------*/
1329eHalStatus csrReady(tpAniSirGlobal pMac);
1330
1331#ifdef FEATURE_WLAN_WAPI
1332eHalStatus csrRoamGetBKIDCache(tpAniSirGlobal pMac, tANI_U32 sessionId, tANI_U32 *pNum,
1333 tBkidCacheInfo *pBkidCache);
1334
1335
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001336eHalStatus csrScanGetBKIDCandidateList(tpAniSirGlobal pMac, tANI_U32 sessionId,
Jeff Johnson295189b2012-06-20 16:38:30 -07001337 tBkidCandidateInfo *pBkidList, tANI_U32 *pNumItems );
1338tANI_U32 csrRoamGetNumBKIDCache(tpAniSirGlobal pMac, tANI_U32 sessionId);
1339eHalStatus csrRoamSetBKIDCache( tpAniSirGlobal pMac, tANI_U32 sessionId, tBkidCacheInfo *pBKIDCache,
1340 tANI_U32 numItems );
1341/* ---------------------------------------------------------------------------
1342 \fn csrRoamGetWapiReqIE
1343 \brief return the WAPI IE CSR passes to PE to JOIN request or START_BSS request
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001344 \param pLen - caller allocated memory that has the length of pBuf as input. Upon returned, *pLen has the
Jeff Johnson295189b2012-06-20 16:38:30 -07001345 needed or IE length in pBuf.
1346 \param pBuf - Caller allocated memory that contain the IE field, if any, upon return
1347 \return eHalStatus - when fail, it usually means the buffer allocated is not big enough
1348 -------------------------------------------------------------------------------*/
1349eHalStatus csrRoamGetWapiReqIE(tpAniSirGlobal pMac, tANI_U32 sessionId, tANI_U32 *pLen, tANI_U8 *pBuf);
1350
1351/* ---------------------------------------------------------------------------
1352 \fn csrRoamGetWapiRspIE
1353 \brief return the WAPI IE from the beacon or probe rsp if connected
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001354 \param pLen - caller allocated memory that has the length of pBuf as input. Upon returned, *pLen has the
Jeff Johnson295189b2012-06-20 16:38:30 -07001355 needed or IE length in pBuf.
1356 \param pBuf - Caller allocated memory that contain the IE field, if any, upon return
1357 \return eHalStatus - when fail, it usually means the buffer allocated is not big enough
1358 -------------------------------------------------------------------------------*/
1359eHalStatus csrRoamGetWapiRspIE(tpAniSirGlobal pMac, tANI_U32 sessionId, tANI_U32 *pLen, tANI_U8 *pBuf);
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001360tANI_U8 csrConstructWapiIe( tpAniSirGlobal pMac, tANI_U32 sessionId, tCsrRoamProfile *pProfile,
Jeff Johnson295189b2012-06-20 16:38:30 -07001361 tSirBssDescription *pSirBssDesc, tDot11fBeaconIEs *pIes, tCsrWapiIe *pWapiIe );
1362#endif /* FEATURE_WLAN_WAPI */
1363
Jeff Johnson295189b2012-06-20 16:38:30 -07001364eHalStatus csrRoamUpdateAPWPSIE( tpAniSirGlobal pMac, tANI_U32 sessionId, tSirAPWPSIEs *pAPWPSIES );
1365eHalStatus csrRoamUpdateWPARSNIEs( tpAniSirGlobal pMac, tANI_U32 sessionId, tSirRSNie * pAPSirRSNie);
Jeff Johnson295189b2012-06-20 16:38:30 -07001366void csrSetCfgPrivacy( tpAniSirGlobal pMac, tCsrRoamProfile *pProfile, tANI_BOOLEAN fPrivacy );
1367tANI_S8 csrGetInfraSessionId( tpAniSirGlobal pMac );
1368tANI_U8 csrGetInfraOperationChannel( tpAniSirGlobal pMac, tANI_U8 sessionId);
1369tANI_U8 csrGetConcurrentOperationChannel( tpAniSirGlobal pMac );
1370
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001371eHalStatus csrRoamCopyConnectProfile(tpAniSirGlobal pMac, tANI_U32 sessionId,
Jeff Johnson295189b2012-06-20 16:38:30 -07001372 tCsrRoamConnectedProfile *pProfile);
1373tANI_BOOLEAN csrIsSetKeyAllowed(tpAniSirGlobal pMac, tANI_U32 sessionId);
1374
1375void csrSetOppositeBandChannelInfo( tpAniSirGlobal pMac );
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001376void csrConstructCurrentValidChannelList( tpAniSirGlobal pMac, tDblLinkList *pChannelSetList,
Jeff Johnson295189b2012-06-20 16:38:30 -07001377 tANI_U8 *pChannelList, tANI_U8 bSize, tANI_U8 *pNumChannels );
Manjunathappa Prakash4f1d5a52013-11-11 16:22:19 -08001378
1379#ifdef FEATURE_WLAN_SCAN_PNO
Srikant Kuppa066904f2013-05-07 13:56:02 -07001380eHalStatus csrScanSavePreferredNetworkFound(tpAniSirGlobal pMac,
1381 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd);
Manjunathappa Prakash4f1d5a52013-11-11 16:22:19 -08001382#endif //FEATURE_WLAN_SCAN_PNO
Jeff Johnson295189b2012-06-20 16:38:30 -07001383#endif
1384
1385#ifdef WLAN_FEATURE_VOWIFI_11R
1386//Returns whether the current association is a 11r assoc or not
1387tANI_BOOLEAN csrRoamIs11rAssoc(tpAniSirGlobal pMac);
1388#endif
1389
1390#ifdef FEATURE_WLAN_CCX
1391//Returns whether the current association is a CCX assoc or not
1392tANI_BOOLEAN csrRoamIsCCXAssoc(tpAniSirGlobal pMac);
Srinivas Girigowda5cecb202013-10-08 09:13:25 -07001393tANI_BOOLEAN csrRoamIsCcxIniFeatureEnabled(tpAniSirGlobal pMac);
1394tANI_BOOLEAN csrNeighborRoamIsCCXAssoc(tpAniSirGlobal pMac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001395#endif
1396
Kiran Kumar Lokere3527f0c2013-02-24 22:21:28 -08001397//Remove this code once SLM_Sessionization is supported
Madan Mohan Koyyalamudi96dd30d2012-10-05 17:24:51 -07001398//BMPS_WORKAROUND_NOT_NEEDED
Jeff Johnson295189b2012-06-20 16:38:30 -07001399void csrDisconnectAllActiveSessions(tpAniSirGlobal pMac);
Mohit Khanna349bc392012-09-11 17:24:52 -07001400
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001401#ifdef FEATURE_WLAN_LFR
1402//Returns whether "Legacy Fast Roaming" is enabled...or not
Madan Mohan Koyyalamudi03aae5f2012-11-28 01:51:22 +05301403tANI_BOOLEAN csrRoamIsFastRoamEnabled(tpAniSirGlobal pMac, tANI_U32 sessionId);
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -07001404#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
1405tANI_BOOLEAN csrRoamIsRoamOffloadScanEnabled(tpAniSirGlobal pMac);
1406#endif
Madan Mohan Koyyalamudi470d2cf2012-09-28 14:43:44 -07001407tANI_BOOLEAN csrIsChannelPresentInList( tANI_U8 *pChannelList, int numChannels, tANI_U8 channel );
1408VOS_STATUS csrAddToChannelListFront( tANI_U8 *pChannelList, int numChannels, tANI_U8 channel );
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -07001409#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
1410eHalStatus csrScanRequestLfrResult(tpAniSirGlobal pMac, tANI_U32 sessionId,
1411 csrScanCompleteCallback callback, void *pContext);
Varun Reddy Yeturucc661d22013-05-20 11:47:10 -07001412eHalStatus csrRoamOffloadScanRspHdlr(tpAniSirGlobal pMac, tANI_U8 reason);
1413eHalStatus csrHandoffRequest(tpAniSirGlobal pMac, tCsrHandoffRequest *pHandoffInfo);
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -07001414#endif
1415tANI_BOOLEAN csrRoamIsStaMode(tpAniSirGlobal pMac, tANI_U32 sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001416#endif
1417