blob: b7425fd8086ff05c4d22bdce545c42c0f0b5a2c7 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002 * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
Kiet Lam842dad02014-02-18 18:44:02 -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.
Kiet Lamaa8e15a2014-02-11 23:30:06 -080020 */
Kiet Lam842dad02014-02-18 18:44:02 -080021
Jeff Johnson295189b2012-06-20 16:38:30 -070022/*
Kiet Lam842dad02014-02-18 18:44:02 -080023 * 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/*
Jeff Johnson295189b2012-06-20 16:38:30 -070029 * This file schBeaconProcess.cc contains beacon processing related
30 * functions
31 *
32 * Author: Sandesh Goel
33 * Date: 02/25/02
34 * History:-
35 * Date Modified by Modification Information
36 * --------------------------------------------------------------------
37 *
38 */
39
40#include "palTypes.h"
Jeff Johnson62c27982013-02-27 17:53:55 -080041#include "wniCfgSta.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070042
43#include "cfgApi.h"
44#include "pmmApi.h"
45#include "limApi.h"
46#include "utilsApi.h"
47#include "schDebug.h"
48#include "schApi.h"
49
Jeff Johnson295189b2012-06-20 16:38:30 -070050
51#include "limUtils.h"
52#include "limSendMessages.h"
53#include "limStaHashApi.h"
54
55#if defined WLAN_FEATURE_VOWIFI
56#include "rrmApi.h"
57#endif
58
59#ifdef FEATURE_WLAN_DIAG_SUPPORT
60#include "vos_diag_core_log.h"
61#endif //FEATURE_WLAN_DIAG_SUPPORT
62
63/**
64 * Number of bytes of variation in beacon length from the last beacon
65 * to trigger reprogramming of rx delay register
66 */
67#define SCH_BEACON_LEN_DELTA 3
68
69// calculate 2^cw - 1
70#define CW_GET(cw) (((cw) == 0) ? 1 : ((1 << (cw)) - 1))
71
72static void
73ap_beacon_process(
74 tpAniSirGlobal pMac,
75 tANI_U8* pRxPacketInfo,
76 tpSchBeaconStruct pBcnStruct,
77 tpUpdateBeaconParams pBeaconParams,
78 tpPESession psessionEntry)
79{
80 tpSirMacMgmtHdr pMh = WDA_GET_RX_MAC_HEADER(pRxPacketInfo);
81 tANI_U32 phyMode;
82 tSirRFBand rfBand = SIR_BAND_UNKNOWN;
83 //Get RF band from psessionEntry
84 rfBand = psessionEntry->limRFBand;
85
86 limGetPhyMode(pMac, &phyMode, psessionEntry);
87
88 if(SIR_BAND_5_GHZ == rfBand)
89 {
Jeff Johnsone7245742012-09-05 17:12:55 -070090 if (psessionEntry->htCapability)
Jeff Johnson295189b2012-06-20 16:38:30 -070091 {
92 if (pBcnStruct->channelNumber == psessionEntry->currentOperChannel)
93 {
94 //11a (non HT) AP overlaps or
95 //HT AP with HT op mode as mixed overlaps.
96 //HT AP with HT op mode as overlap legacy overlaps.
97 if ((!pBcnStruct->HTInfo.present) ||
98 (eSIR_HT_OP_MODE_MIXED == pBcnStruct->HTInfo.opMode) ||
99 (eSIR_HT_OP_MODE_OVERLAP_LEGACY == pBcnStruct->HTInfo.opMode))
100 {
101 limUpdateOverlapStaParam(pMac, pMh->bssId, &(pMac->lim.gLimOverlap11aParams));
102
103 if (pMac->lim.gLimOverlap11aParams.numSta &&
104 !pMac->lim.gLimOverlap11aParams.protectionEnabled)
105 {
106 limEnable11aProtection(pMac, true, true, pBeaconParams,psessionEntry);
107 }
108 }
109 //HT AP with HT20 op mode overlaps.
110 else if(eSIR_HT_OP_MODE_NO_LEGACY_20MHZ_HT == pBcnStruct->HTInfo.opMode)
111 {
112 limUpdateOverlapStaParam(pMac, pMh->bssId, &(pMac->lim.gLimOverlapHt20Params));
113
114 if (pMac->lim.gLimOverlapHt20Params.numSta &&
115 !pMac->lim.gLimOverlapHt20Params.protectionEnabled)
116 {
117 limEnableHT20Protection(pMac, true, true, pBeaconParams,psessionEntry);
118 }
119 }
120 }
121 }
122 }
123 else if(SIR_BAND_2_4_GHZ == rfBand)
124 {
125 //We are 11G AP.
126 if ((phyMode == WNI_CFG_PHY_MODE_11G) &&
Jeff Johnsone7245742012-09-05 17:12:55 -0700127 (false == psessionEntry->htCapability))
Jeff Johnson295189b2012-06-20 16:38:30 -0700128 {
129 if (pBcnStruct->channelNumber == psessionEntry->currentOperChannel)
130 {
131 if (((!(pBcnStruct->erpPresent)) &&
132 !(pBcnStruct->HTInfo.present))||
133 //if erp not present then 11B AP overlapping
134 (pBcnStruct->erpPresent &&
135 (pBcnStruct->erpIEInfo.useProtection ||
136 pBcnStruct->erpIEInfo.nonErpPresent)))
137 {
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800138#ifdef FEATURE_WLAN_ESE
139 if( psessionEntry->isESEconnection )
Jeff Johnson295189b2012-06-20 16:38:30 -0700140 {
141 VOS_TRACE (VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800142 "%s: [INFOLOG]ESE 11g erpPresent=%d useProtection=%d nonErpPresent=%d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -0700143 pBcnStruct->erpPresent,
144 pBcnStruct->erpIEInfo.useProtection,
145 pBcnStruct->erpIEInfo.nonErpPresent);
146 }
147#endif
148 limEnableOverlap11gProtection(pMac, pBeaconParams, pMh,psessionEntry);
149 }
150
151 }
152 }
153 // handling the case when HT AP has overlapping legacy BSS.
Jeff Johnsone7245742012-09-05 17:12:55 -0700154 else if(psessionEntry->htCapability)
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700155 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700156 if (pBcnStruct->channelNumber == psessionEntry->currentOperChannel)
157 {
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700158 if (((!(pBcnStruct->erpPresent)) &&
159 !(pBcnStruct->HTInfo.present))||
160 //if erp not present then 11B AP overlapping
161 (pBcnStruct->erpPresent &&
162 (pBcnStruct->erpIEInfo.useProtection ||
163 pBcnStruct->erpIEInfo.nonErpPresent)))
Jeff Johnson295189b2012-06-20 16:38:30 -0700164 {
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800165#ifdef FEATURE_WLAN_ESE
166 if( psessionEntry->isESEconnection )
Jeff Johnson295189b2012-06-20 16:38:30 -0700167 {
168 VOS_TRACE (VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800169 "%s: [INFOLOG]ESE 11g erpPresent=%d useProtection=%d nonErpPresent=%d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -0700170 pBcnStruct->erpPresent,
171 pBcnStruct->erpIEInfo.useProtection,
172 pBcnStruct->erpIEInfo.nonErpPresent);
173 }
174#endif
175 limEnableOverlap11gProtection(pMac, pBeaconParams, pMh,psessionEntry);
176 }
177
178 //11g device overlaps
179 if (pBcnStruct->erpPresent &&
180 !(pBcnStruct->erpIEInfo.useProtection ||
181 pBcnStruct->erpIEInfo.nonErpPresent) && !(pBcnStruct->HTInfo.present))
182 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700183 limUpdateOverlapStaParam(pMac, pMh->bssId, &(psessionEntry->gLimOverlap11gParams));
184
185 if (psessionEntry->gLimOverlap11gParams.numSta &&
186 !psessionEntry->gLimOverlap11gParams.protectionEnabled)
Jeff Johnson295189b2012-06-20 16:38:30 -0700187 {
188 limEnableHtProtectionFrom11g(pMac, true, true, pBeaconParams,psessionEntry);
189 }
190 }
191
192 //ht device overlaps.
193 //here we will check for HT related devices only which might need protection.
194 //check for 11b and 11g is already done in the previous blocks.
195 //so we will not check for HT operating mode as MIXED.
196 if (pBcnStruct->HTInfo.present)
197 {
198 //if we are not already in mixed mode or legacy mode as HT operating mode
199 //and received beacon has HT operating mode as legacy
200 //then we need to enable protection from 11g station.
201 //we don't need protection from 11b because if that's needed then our operating
202 //mode would have already been set to legacy in the previous blocks.
203 if(eSIR_HT_OP_MODE_OVERLAP_LEGACY == pBcnStruct->HTInfo.opMode)
204 {
205 if((eSIR_HT_OP_MODE_MIXED != pMac->lim.gHTOperMode) &&
206 (eSIR_HT_OP_MODE_OVERLAP_LEGACY != pMac->lim.gHTOperMode))
207 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700208 limUpdateOverlapStaParam(pMac, pMh->bssId, &(psessionEntry->gLimOverlap11gParams));
209 if (psessionEntry->gLimOverlap11gParams.numSta &&
210 !psessionEntry->gLimOverlap11gParams.protectionEnabled)
Jeff Johnson295189b2012-06-20 16:38:30 -0700211 {
212 limEnableHtProtectionFrom11g(pMac, true, true, pBeaconParams,psessionEntry);
213 }
214 }
215 }
216 else if(eSIR_HT_OP_MODE_NO_LEGACY_20MHZ_HT == pBcnStruct->HTInfo.opMode)
217 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700218 limUpdateOverlapStaParam(pMac, pMh->bssId, &(psessionEntry->gLimOverlapHt20Params));
219 if (psessionEntry->gLimOverlapHt20Params.numSta &&
220 !psessionEntry->gLimOverlapHt20Params.protectionEnabled)
Jeff Johnson295189b2012-06-20 16:38:30 -0700221 {
222 limEnableHT20Protection(pMac, true, true, pBeaconParams,psessionEntry);
223 }
224 }
225 }
226
227 }
228 }
229 }
230 pMac->sch.gSchBcnIgnored++;
231}
232// --------------------------------------------------------------------
233
234
235
236
237/**
238 * __schBeaconProcessNoSession
239 *
240 * FUNCTION:
241 * Process the received beacon frame when
242 * -- Station is not scanning
243 * -- No corresponding session is found
244 *
245 * LOGIC:
246 * Following scenarios exist when Session Does not exist:
247 * * IBSS Beacons, when IBSS session already exists with same SSID,
248 * but from STA which has not yet joined and has a different BSSID.
249 * - invoke limHandleIBSScoalescing with the session context of existing IBSS session.
250 *
251 * * IBSS Beacons when IBSS session does not exist, only Infra or BT-AMP session exists,
252 * then save the beacon in the scan results and throw it away.
253 *
254 * * Infra Beacons
255 * - beacons received when no session active
256 * should not come here, it should be handled as part of scanning,
257 * else they should not be getting received, should update scan results and drop it if that happens.
258 * - beacons received when IBSS session active:
259 * update scan results and drop it.
260 * - beacons received when Infra session(STA) is active:
261 * update scan results and drop it
262 * - beacons received when BT-STA session is active:
263 * update scan results and drop it.
264 * - beacons received when Infra/BT-STA or Infra/IBSS is active.
265 * update scan results and drop it.
266 *
267
268 */
269static void __schBeaconProcessNoSession(tpAniSirGlobal pMac, tpSchBeaconStruct pBeacon,tANI_U8* pRxPacketInfo)
270{
271 tpPESession psessionEntry = NULL;
272
273 if( (psessionEntry = limIsIBSSSessionActive(pMac)) != NULL)
274 {
275 limHandleIBSScoalescing(pMac, pBeacon, pRxPacketInfo, psessionEntry);
276 }
277
278 //If station(STA/BT-STA/BT-AP/IBSS) mode, Always save the beacon in the scan results, if atleast one session is active
279 //schBeaconProcessNoSession will be called only when there is atleast one session active, so not checking
280 //it again here.
281 limCheckAndAddBssDescription(pMac, pBeacon, pRxPacketInfo, eANI_BOOLEAN_FALSE, eANI_BOOLEAN_FALSE);
282 return;
283}
284
285
286
287/*
288 * __schBeaconProcessForSession
289 *
290 * FUNCTION:
291 * Process the received beacon frame when
292 * -- Station is not scanning
293 * -- Corresponding session is found
294 *
295 * LOGIC:
296 * Following scenarios exist when Session exists
297 * * IBSS STA receving beacons from IBSS Peers, who are part of IBSS.
298 * - call limHandleIBSScoalescing with that session context.
299 * * Infra STA receving beacons from AP to which it is connected
300 * - call schBeaconProcessFromAP with that session's context.
301 * * BTAMP STA receving beacons from BTAMP AP
302 * - call schBeaconProcessFromAP with that session's context.
303 * * BTAMP AP receiving beacons from BTAMP STA
304 * (here need to make sure BTAP creates session entry for BT STA)
305 * - just update the beacon count for heart beat purposes for now,
306 * for now, don't process the beacon.
307 * * Infra/IBSS both active and receives IBSS beacon:
308 * - call limHandleIBSScoalescing with that session context.
309 * * Infra/IBSS both active and receives Infra beacon:
310 * - call schBeaconProcessFromAP with that session's context.
311 * any updates to EDCA parameters will be effective for IBSS as well,
312 * even though no WMM for IBSS ?? Need to figure out how to handle this scenario.
313 * * Infra/BTSTA both active and receive Infra beacon.
314 * - change in EDCA parameters on Infra affect the BTSTA link.
315 * Update the same parameters on BT link
316 * * Infra/BTSTA both active and receive BT-AP beacon.
317 * -update beacon cnt for heartbeat
318 * * Infra/BTAP both active and receive Infra beacon.
319 * - BT-AP starts advertising BE parameters from Infra AP, if they get changed.
320 *
321 * * Infra/BTAP both active and receive BTSTA beacon.
322 * - update beacon cnt for heartbeat
323 */
324
325static void __schBeaconProcessForSession( tpAniSirGlobal pMac,
326 tpSchBeaconStruct pBeacon,
327 tANI_U8* pRxPacketInfo,
328 tpPESession psessionEntry)
329{
330 tANI_U32 bi;
331 tANI_U8 bssIdx = 0;
332 //tpSirMacMgmtHdr pMh = SIR_MAC_BD_TO_MPDUHEADER(pRxPacketInfo);
333 //tANI_U8 bssid[sizeof(tSirMacAddr)];
334 tUpdateBeaconParams beaconParams;
335 tANI_U8 sendProbeReq = FALSE;
336 tpDphHashNode pStaDs = NULL;
Mohit Khanna4a70d262012-09-11 16:30:12 -0700337#ifdef WLAN_FEATURE_11AC
338 tpSirMacMgmtHdr pMh = WDA_GET_RX_MAC_HEADER(pRxPacketInfo);
339 tANI_U16 aid;
340 tANI_U8 operMode;
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700341 tANI_U8 chWidth = 0;
Mohit Khanna4a70d262012-09-11 16:30:12 -0700342#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800343#if defined FEATURE_WLAN_ESE || defined FEATURE_WLAN_VOWIFI
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530344 tPowerdBm regMax = 0,maxTxPower = 0;
345#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700346
Kaushik, Sushantfb156732014-01-07 15:36:03 +0530347 vos_mem_zero(&beaconParams, sizeof(tUpdateBeaconParams));
Jeff Johnson295189b2012-06-20 16:38:30 -0700348 beaconParams.paramChangeBitmap = 0;
349
350 if(eLIM_STA_IN_IBSS_ROLE == psessionEntry->limSystemRole )
351 {
Abhishek Singhd5c31272014-03-07 14:46:50 +0530352 if( limHandleIBSScoalescing(pMac, pBeacon, pRxPacketInfo, psessionEntry)
353 != eSIR_SUCCESS )
354 return;
Jeff Johnson295189b2012-06-20 16:38:30 -0700355 }
356 else if( (eLIM_STA_ROLE == psessionEntry->limSystemRole) ||
357 (eLIM_BT_AMP_STA_ROLE == psessionEntry->limSystemRole))
358 {
359 /*
360 * This handles two cases:
361 * -- Infra STA receving beacons from AP
362 * -- BTAMP_STA receving beacons from BTAMP_AP
363 */
Jeff Johnson295189b2012-06-20 16:38:30 -0700364 //Always save the beacon into LIM's cached scan results
365 limCheckAndAddBssDescription(pMac, pBeacon, pRxPacketInfo, eANI_BOOLEAN_FALSE, eANI_BOOLEAN_FALSE);
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530366
Jeff Johnson295189b2012-06-20 16:38:30 -0700367 /**
368 * This is the Beacon received from the AP we're currently associated with. Check
369 * if there are any changes in AP's capabilities
370 */
371 if((tANI_U8) pBeacon->channelNumber != psessionEntry->currentOperChannel)
372 {
Katya Nigam70d68332013-09-16 16:49:45 +0530373 PELOGE(schLog(pMac, LOGE, FL("Channel Change from %d --> %d - "
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700374 "Ignoring beacon!"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700375 psessionEntry->currentOperChannel, pBeacon->channelNumber);)
376 goto fail;
377 }
378 limDetectChangeInApCapabilities(pMac, pBeacon, psessionEntry);
379 if(limGetStaHashBssidx(pMac, DPH_STA_HASH_INDEX_PEER, &bssIdx, psessionEntry) != eSIR_SUCCESS)
380 goto fail;
381 beaconParams.bssIdx = bssIdx;
Madan Mohan Koyyalamudifff03f22013-07-11 11:32:07 +0530382 vos_mem_copy(( tANI_U8* )&psessionEntry->lastBeaconTimeStamp,
383 ( tANI_U8* )pBeacon->timeStamp, sizeof(tANI_U64));
Jeff Johnson295189b2012-06-20 16:38:30 -0700384 psessionEntry->lastBeaconDtimCount = pBeacon->tim.dtimCount;
385 psessionEntry->lastBeaconDtimPeriod= pBeacon->tim.dtimPeriod;
386 psessionEntry->currentBssBeaconCnt++;
387
388
389
Jeff Johnsone7245742012-09-05 17:12:55 -0700390 MTRACE(macTrace(pMac, TRACE_CODE_RX_MGMT_TSF, psessionEntry->peSessionId, pBeacon->timeStamp[0]);)
391 MTRACE(macTrace(pMac, TRACE_CODE_RX_MGMT_TSF, psessionEntry->peSessionId, pBeacon->timeStamp[1]);)
Jeff Johnson295189b2012-06-20 16:38:30 -0700392
393 /* Read beacon interval session Entry */
394 bi = psessionEntry->beaconParams.beaconInterval;
395 if (bi != pBeacon->beaconInterval)
396 {
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700397 PELOG1(schLog(pMac, LOG1, FL("Beacon interval changed from %d to %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700398 pBeacon->beaconInterval, bi);)
399
400 bi = pBeacon->beaconInterval;
401 psessionEntry->beaconParams.beaconInterval = (tANI_U16) bi;
402 beaconParams.paramChangeBitmap |= PARAM_BCN_INTERVAL_CHANGED;
403 beaconParams.beaconInterval = (tANI_U16)bi;
404 }
405
406 if (pBeacon->cfPresent)
407 {
408 cfgSetInt(pMac, WNI_CFG_CFP_PERIOD, pBeacon->cfParamSet.cfpPeriod);
409 limSendCFParams(pMac, bssIdx, pBeacon->cfParamSet.cfpCount, pBeacon->cfParamSet.cfpPeriod);
410 }
411
412 if (pBeacon->timPresent)
413 {
414 cfgSetInt(pMac, WNI_CFG_DTIM_PERIOD, pBeacon->tim.dtimPeriod);
415 //No need to send DTIM Period and Count to HAL/SMAC
416 //SMAC already parses TIM bit.
417 }
418
Jeff Johnson295189b2012-06-20 16:38:30 -0700419 if(pMac->lim.gLimProtectionControl != WNI_CFG_FORCE_POLICY_PROTECTION_DISABLE)
420
421 limDecideStaProtection(pMac, pBeacon, &beaconParams, psessionEntry);
422 if (pBeacon->erpPresent)
423 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700424 if (pBeacon->erpIEInfo.barkerPreambleMode)
425 limEnableShortPreamble(pMac, false, &beaconParams, psessionEntry);
426 else
427 limEnableShortPreamble(pMac, true, &beaconParams, psessionEntry);
Jeff Johnson295189b2012-06-20 16:38:30 -0700428 }
429 limUpdateShortSlot(pMac, pBeacon, &beaconParams,psessionEntry);
430
431 pStaDs = dphGetHashEntry(pMac, DPH_STA_HASH_INDEX_PEER, &psessionEntry->dph.dphHashTable);
432 if ((pBeacon->wmeEdcaPresent && (psessionEntry->limWmeEnabled)) ||
433 (pBeacon->edcaPresent && (psessionEntry->limQosEnabled)))
434 {
435 if(pBeacon->edcaParams.qosInfo.count != psessionEntry->gLimEdcaParamSetCount)
436 {
437 if (schBeaconEdcaProcess(pMac, &pBeacon->edcaParams, psessionEntry) != eSIR_SUCCESS)
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700438 PELOGE(schLog(pMac, LOGE, FL("EDCA parameter processing error"));)
Jeff Johnson295189b2012-06-20 16:38:30 -0700439 else if(pStaDs != NULL)
440 {
441 // If needed, downgrade the EDCA parameters
442 limSetActiveEdcaParams(pMac, psessionEntry->gLimEdcaParams, psessionEntry);
443
444 if (pStaDs->aniPeer == eANI_BOOLEAN_TRUE)
445 limSendEdcaParams(pMac, psessionEntry->gLimEdcaParamsActive, pStaDs->bssId, eANI_BOOLEAN_TRUE);
446 else
447 limSendEdcaParams(pMac, psessionEntry->gLimEdcaParamsActive, pStaDs->bssId, eANI_BOOLEAN_FALSE);
448 }
449 else
Katya Nigam70d68332013-09-16 16:49:45 +0530450 PELOGE(schLog(pMac, LOGE, FL("Self Entry missing in Hash Table"));)
Jeff Johnson295189b2012-06-20 16:38:30 -0700451 }
452 }
453 else if( (pBeacon->qosCapabilityPresent && psessionEntry->limQosEnabled) &&
454 (pBeacon->qosCapability.qosInfo.count != psessionEntry->gLimEdcaParamSetCount))
455 sendProbeReq = TRUE;
456 }
457
Jeff Johnsone7245742012-09-05 17:12:55 -0700458 if ( psessionEntry->htCapability && pBeacon->HTInfo.present )
Jeff Johnson295189b2012-06-20 16:38:30 -0700459 {
460 limUpdateStaRunTimeHTSwitchChnlParams( pMac, &pBeacon->HTInfo, bssIdx,psessionEntry);
461 }
462
Jeff Johnson295189b2012-06-20 16:38:30 -0700463 if ( (psessionEntry->limSystemRole == eLIM_STA_ROLE) ||(psessionEntry->limSystemRole == eLIM_BT_AMP_STA_ROLE) ||
464 (psessionEntry->limSystemRole == eLIM_STA_IN_IBSS_ROLE) )
465 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700466 /* Channel Switch information element updated */
Kiet Lamaa8e15a2014-02-11 23:30:06 -0800467 if(pBeacon->channelSwitchPresent ||
Jeff Johnson295189b2012-06-20 16:38:30 -0700468 pBeacon->propIEinfo.propChannelSwitchPresent)
469 {
470 limUpdateChannelSwitch(pMac, pBeacon, psessionEntry);
471 }
Jeff Johnsone7245742012-09-05 17:12:55 -0700472 else if (psessionEntry->gLimSpecMgmt.dot11hChanSwState == eLIM_11H_CHANSW_RUNNING)
Jeff Johnson295189b2012-06-20 16:38:30 -0700473 {
474 limCancelDot11hChannelSwitch(pMac, psessionEntry);
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530475 }
Sandeep Puligilla60342762014-01-30 21:05:37 +0530476 // check for HT capability
477 pStaDs = dphLookupHashEntry(pMac, pMh->sa, &aid,
478 &psessionEntry->dph.dphHashTable);
479 if (pStaDs != NULL)
480 {
481 /* Following check is related to HT40 on 2.4GHz mode*/
482 if ((pStaDs->htSecondaryChannelOffset !=
483 pBeacon->HTInfo.secondaryChannelOffset) &&
484 (IS_HT40_OBSS_SCAN_FEATURE_ENABLE) &&
Kiet Lamaa8e15a2014-02-11 23:30:06 -0800485 (psessionEntry->currentOperChannel <= RF_CHAN_14))
Sandeep Puligilla60342762014-01-30 21:05:37 +0530486 {
487 VOS_TRACE( VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
488 FL(" Current Secondarychanoffset %d received "
489 " secondaryChannelOffset %d, staIdx = %d"),
490 pStaDs->htSecondaryChannelOffset,
491 pBeacon->HTInfo.secondaryChannelOffset,
492 pStaDs->staIndex);
493 if (eANI_BOOLEAN_TRUE ==(limCheckHTChanBondModeChange(pMac,
494 psessionEntry,
495 pBeacon->HTInfo.secondaryChannelOffset,
496 pStaDs->htSecondaryChannelOffset,
497 pStaDs->staIndex)))
498 {
499 pStaDs->htSupportedChannelWidthSet =
500 pBeacon->HTInfo.recommendedTxWidthSet;
Kiet Lamaa8e15a2014-02-11 23:30:06 -0800501 pStaDs->htSecondaryChannelOffset =
Sandeep Puligilla60342762014-01-30 21:05:37 +0530502 pBeacon->HTInfo.secondaryChannelOffset;
503 }
504 }
505 }
506 else
507 PELOGE(schLog(pMac, LOGE, FL("Self Entry missing in Hash Table"));)
Jeff Johnson295189b2012-06-20 16:38:30 -0700508 }
Sandeep Puligilla60342762014-01-30 21:05:37 +0530509 /* TODO : Below condition checks can be merged with the if */
Mohit Khanna4a70d262012-09-11 16:30:12 -0700510#ifdef WLAN_FEATURE_11AC
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700511 if ((psessionEntry->limSystemRole == eLIM_STA_ROLE) ||
512 (psessionEntry->limSystemRole == eLIM_BT_AMP_STA_ROLE) ||
513 (psessionEntry->limSystemRole == eLIM_STA_IN_IBSS_ROLE))
Mohit Khanna4a70d262012-09-11 16:30:12 -0700514 {
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700515 // check for VHT capability
516 pStaDs = dphLookupHashEntry(pMac, pMh->sa, &aid,
517 &psessionEntry->dph.dphHashTable);
518 if (NULL != pStaDs)
519 {
520 if (psessionEntry->vhtCapability && pBeacon->OperatingMode.present )
521 {
522 operMode = pStaDs->vhtSupportedChannelWidthSet ?
523 eHT_CHANNEL_WIDTH_80MHZ :
524 pStaDs->htSupportedChannelWidthSet ?
525 eHT_CHANNEL_WIDTH_40MHZ: eHT_CHANNEL_WIDTH_20MHZ;
526 if (operMode != pBeacon->OperatingMode.chanWidth)
527 {
Katya Nigam70d68332013-09-16 16:49:45 +0530528 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700529 FL(" received OpMode Chanwidth %d, staIdx = %d"),
530 pBeacon->OperatingMode.chanWidth,
531 pStaDs->staIndex);)
Katya Nigam70d68332013-09-16 16:49:45 +0530532 PELOG1(schLog(pMac, LOG1, FL(" MAC - %0x:%0x:%0x:%0x:%0x:%0x"),
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700533 pMh->sa[0],
534 pMh->sa[1],
535 pMh->sa[2],
536 pMh->sa[3],
537 pMh->sa[4],
538 pMh->sa[5]);)
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700539
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700540 if (pBeacon->OperatingMode.chanWidth == eHT_CHANNEL_WIDTH_80MHZ)
541 {
Katya Nigam70d68332013-09-16 16:49:45 +0530542 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700543 FL("Updating the CH Width to 80MHz"));)
544 pStaDs->vhtSupportedChannelWidthSet =
545 WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ;
546 pStaDs->htSupportedChannelWidthSet = eHT_CHANNEL_WIDTH_40MHZ;
547 }
548 else if (pBeacon->OperatingMode.chanWidth == eHT_CHANNEL_WIDTH_40MHZ)
549 {
Katya Nigam70d68332013-09-16 16:49:45 +0530550 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700551 FL("Updating the CH Width to 40MHz"));)
552 pStaDs->vhtSupportedChannelWidthSet =
553 WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ;
554 pStaDs->htSupportedChannelWidthSet = eHT_CHANNEL_WIDTH_40MHZ;
555 }
556 else if (pBeacon->OperatingMode.chanWidth ==
557 eHT_CHANNEL_WIDTH_20MHZ)
558 {
Katya Nigam70d68332013-09-16 16:49:45 +0530559 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700560 FL("Updating the CH Width to 20MHz"));)
561 pStaDs->vhtSupportedChannelWidthSet =
562 WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ;
563 pStaDs->htSupportedChannelWidthSet = eHT_CHANNEL_WIDTH_20MHZ;
564 }
565 limCheckVHTOpModeChange(pMac, psessionEntry,
566 pBeacon->OperatingMode.chanWidth,
567 pStaDs->staIndex);
568 }
569 }
570 else if (psessionEntry->vhtCapability && pBeacon->VHTOperation.present)
571 {
572 operMode = pStaDs->vhtSupportedChannelWidthSet;
573 if (operMode != pBeacon->VHTOperation.chanWidth)
574 {
Katya Nigam70d68332013-09-16 16:49:45 +0530575 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700576 FL(" received VHTOP CHWidth %d staIdx = %d"),
577 pBeacon->VHTOperation.chanWidth,
578 pStaDs->staIndex);)
Katya Nigam70d68332013-09-16 16:49:45 +0530579 PELOG1(schLog(pMac, LOG1, FL(" MAC - %0x:%0x:%0x:%0x:%0x:%0x"),
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700580 pMh->sa[0],
581 pMh->sa[1],
582 pMh->sa[2],
583 pMh->sa[3],
584 pMh->sa[4],
585 pMh->sa[5]);)
586
587 if (pBeacon->VHTOperation.chanWidth ==
588 WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ)
589 {
Katya Nigam70d68332013-09-16 16:49:45 +0530590 PELOG1(schLog(pMac, LOG1,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700591 FL("Updating the CH Width to 80MHz"));)
592 pStaDs->vhtSupportedChannelWidthSet =
593 WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ;
594 pStaDs->htSupportedChannelWidthSet = eHT_CHANNEL_WIDTH_40MHZ;
595 chWidth = eHT_CHANNEL_WIDTH_80MHZ;
596 }
597 else if (pBeacon->VHTOperation.chanWidth ==
598 WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ)
599 {
600 pStaDs->vhtSupportedChannelWidthSet =
601 WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ;
602 if (pBeacon->HTCaps.supportedChannelWidthSet)
603 {
Katya Nigam70d68332013-09-16 16:49:45 +0530604 PELOG1(schLog(pMac, LOG1,
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700605 FL("Updating the CH Width to 40MHz"));)
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700606 pStaDs->htSupportedChannelWidthSet =
607 eHT_CHANNEL_WIDTH_40MHZ;
608 chWidth = eHT_CHANNEL_WIDTH_40MHZ;
609 }
610 else
611 {
Katya Nigam70d68332013-09-16 16:49:45 +0530612 PELOG1(schLog(pMac, LOG1,
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700613 FL("Updating the CH Width to 20MHz"));)
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700614 pStaDs->htSupportedChannelWidthSet =
615 eHT_CHANNEL_WIDTH_20MHZ;
616 chWidth = eHT_CHANNEL_WIDTH_20MHZ;
617 }
618 }
Kiran Kumar Lokere6e455332013-06-21 19:31:12 -0700619 limCheckVHTOpModeChange(pMac, psessionEntry,
Ravi Joshi0fc681b2013-09-11 16:46:07 -0700620 chWidth, pStaDs->staIndex);
621 }
622 }
623 }
Mohit Khanna4a70d262012-09-11 16:30:12 -0700624 }
625#endif
626
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800627#if defined (FEATURE_WLAN_ESE) || defined (FEATURE_WLAN_VOWIFI)
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530628 /* Obtain the Max Tx power for the current regulatory */
629 regMax = cfgGetRegulatoryMaxTransmitPower( pMac, psessionEntry->currentOperChannel );
630#endif
631
632#if defined FEATURE_WLAN_VOWIFI
633 {
634 tPowerdBm localRRMConstraint = 0;
635 if ( pMac->rrm.rrmPEContext.rrmEnable && pBeacon->powerConstraintPresent )
636 {
637 localRRMConstraint = pBeacon->localPowerConstraint.localPowerConstraints;
638 }
639 else
640 {
641 localRRMConstraint = 0;
642 }
643 maxTxPower = VOS_MIN(regMax,(regMax - localRRMConstraint));
644 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800645#elif defined FEATURE_WLAN_ESE
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530646 maxTxPower = regMax;
647#endif
648
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800649#if defined FEATURE_WLAN_ESE
650 if( psessionEntry->isESEconnection )
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530651 {
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800652 tPowerdBm localESEConstraint = 0;
653 if (pBeacon->eseTxPwr.present)
Jeff Johnson295189b2012-06-20 16:38:30 -0700654 {
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800655 localESEConstraint = pBeacon->eseTxPwr.power_limit;
656 maxTxPower = limGetMaxTxPower(maxTxPower, localESEConstraint, pMac->roam.configParam.nTxPowerCap);
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530657 }
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800658 schLog( pMac, LOG1, "RegMax = %d, localESECons = %d, MaxTx = %d", regMax, localESEConstraint, maxTxPower );
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530659 }
660#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700661
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800662#if defined (FEATURE_WLAN_ESE) || defined (FEATURE_WLAN_VOWIFI)
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530663 {
664 //If maxTxPower is increased or decreased
665 if( maxTxPower != psessionEntry->maxTxPower )
666 {
Katya Nigam70d68332013-09-16 16:49:45 +0530667 schLog( pMac, LOG1, "Local power constraint change..updating new maxTx power %d to HAL",maxTxPower);
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530668 if( limSendSetMaxTxPowerReq ( pMac, maxTxPower, psessionEntry ) == eSIR_SUCCESS )
Jeff Johnson295189b2012-06-20 16:38:30 -0700669 psessionEntry->maxTxPower = maxTxPower;
Jeff Johnson295189b2012-06-20 16:38:30 -0700670 }
Madan Mohan Koyyalamudi016117f2013-08-06 16:42:11 +0530671 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700672#endif
673
674 // Indicate to LIM that Beacon is received
675
676 if (pBeacon->HTInfo.present)
677 limReceivedHBHandler(pMac, (tANI_U8)pBeacon->HTInfo.primaryChannel, psessionEntry);
678 else
679 limReceivedHBHandler(pMac, (tANI_U8)pBeacon->channelNumber, psessionEntry);
680
681 // I don't know if any additional IE is required here. Currently, not include addIE.
682 if(sendProbeReq)
683 limSendProbeReqMgmtFrame(pMac, &psessionEntry->ssId,
684 psessionEntry->bssId, psessionEntry->currentOperChannel,psessionEntry->selfMacAddr,
685 psessionEntry->dot11mode, 0, NULL);
686
Jeff Johnson295189b2012-06-20 16:38:30 -0700687 if(beaconParams.paramChangeBitmap)
688 {
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700689 PELOGW(schLog(pMac, LOGW, FL("Beacon for session[%d] got changed. "), psessionEntry->peSessionId);)
690 PELOGW(schLog(pMac, LOGW, FL("sending beacon param change bitmap: 0x%x "), beaconParams.paramChangeBitmap);)
Jeff Johnson295189b2012-06-20 16:38:30 -0700691 limSendBeaconParams(pMac, &beaconParams, psessionEntry);
692 }
693
694fail:
695 return;
696
697}
698
699
700
701/**
702 * schBeaconProcess
703 *
704 * FUNCTION:
705 * Process the received beacon frame
706 *
707 * LOGIC:
708 *
709 * ASSUMPTIONS:
710 *
711 * NOTE:
712 *
713 * @param pRxPacketInfo pointer to buffer descriptor
714 * @return None
715 */
716
717void schBeaconProcess(tpAniSirGlobal pMac, tANI_U8* pRxPacketInfo, tpPESession psessionEntry)
718{
719 static tSchBeaconStruct beaconStruct;
720 tUpdateBeaconParams beaconParams;
721 tpPESession pAPSession = NULL;
Kaushik, Sushantfb156732014-01-07 15:36:03 +0530722 vos_mem_zero(&beaconParams, sizeof(tUpdateBeaconParams));
Jeff Johnson295189b2012-06-20 16:38:30 -0700723 beaconParams.paramChangeBitmap = 0;
724
725 pMac->sch.gSchBcnRcvCnt++;
726
727 // Convert the beacon frame into a structure
728 if (sirConvertBeaconFrame2Struct(pMac, (tANI_U8 *) pRxPacketInfo, &beaconStruct)!= eSIR_SUCCESS)
729 {
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700730 PELOGE(schLog(pMac, LOGE, FL("beacon parsing failed"));)
Jeff Johnson295189b2012-06-20 16:38:30 -0700731 pMac->sch.gSchBcnParseErrorCnt++;
732 return;
733 }
734
735 if (beaconStruct.ssidPresent)
736 {
737 beaconStruct.ssId.ssId[beaconStruct.ssId.length] = 0;
738 }
739
740 /*
741 * First process the beacon in the context of any existing AP or BTAP session.
742 * This takes cares of following two scenarios:
743 * - psessionEntry = NULL:
744 * e.g. beacon received from a neighboring BSS, you want to apply the protection settings to BTAP/InfraAP beacons
745 * - psessionEntry is non NULL:
746 * e.g. beacon received is from the INFRA AP to which you are connected on another concurrent link.
747 * In this case also, we want to apply the protection settings(as advertised by Infra AP) to BTAP beacons
748 *
749 *
750 */
751
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700752 if (((pAPSession = limIsApSessionActive(pMac)) != NULL)
753#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
754 && (!(WDA_GET_OFFLOADSCANLEARN(pRxPacketInfo)))
755#endif
756 )
Jeff Johnson295189b2012-06-20 16:38:30 -0700757 {
758 beaconParams.bssIdx = pAPSession->bssIdx;
Jeff Johnson295189b2012-06-20 16:38:30 -0700759 if (pAPSession->gLimProtectionControl != WNI_CFG_FORCE_POLICY_PROTECTION_DISABLE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700760 ap_beacon_process(pMac, pRxPacketInfo, &beaconStruct, &beaconParams, pAPSession);
761
762 if (beaconParams.paramChangeBitmap)
763 {
764 //Update the beacons and apply the new settings to HAL
765 schSetFixedBeaconFields(pMac, pAPSession);
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700766 PELOG1(schLog(pMac, LOG1, FL("Beacon for PE session[%d] got changed. "), pAPSession->peSessionId);)
767 PELOG1(schLog(pMac, LOG1, FL("sending beacon param change bitmap: 0x%x "), beaconParams.paramChangeBitmap);)
Jeff Johnson295189b2012-06-20 16:38:30 -0700768 limSendBeaconParams(pMac, &beaconParams, pAPSession);
769 }
770 }
771
772 /*
773 * Now process the beacon in the context of the BSS which is transmitting the beacons, if one is found
774 */
775 if(psessionEntry == NULL)
776 {
777 __schBeaconProcessNoSession(pMac, &beaconStruct, pRxPacketInfo );
778 }
779 else
780 {
781 __schBeaconProcessForSession(pMac, &beaconStruct, pRxPacketInfo, psessionEntry );
782 }
783
784}
785
786
787
788
789
790// --------------------------------------------------------------------
791/**
792 * schBeaconEdcaProcess
793 *
794 * FUNCTION:
795 * Process the EDCA parameter set in the received beacon frame
796 *
797 * LOGIC:
798 *
799 * ASSUMPTIONS:
800 *
801 * NOTE:
802 *
803 * @param edca reference to edca parameters in beacon struct
804 * @return success
805 */
806
807tSirRetStatus schBeaconEdcaProcess(tpAniSirGlobal pMac, tSirMacEdcaParamSetIE *edca, tpPESession psessionEntry)
808{
809 tANI_U8 i;
810#ifdef FEATURE_WLAN_DIAG_SUPPORT
811 vos_log_qos_edca_pkt_type *log_ptr = NULL;
812#endif //FEATURE_WLAN_DIAG_SUPPORT
813
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700814 PELOG1(schLog(pMac, LOG1, FL("Updating parameter set count: Old %d ---> new %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700815 psessionEntry->gLimEdcaParamSetCount, edca->qosInfo.count);)
816
817 psessionEntry->gLimEdcaParamSetCount = edca->qosInfo.count;
818 psessionEntry->gLimEdcaParams[EDCA_AC_BE] = edca->acbe;
819 psessionEntry->gLimEdcaParams[EDCA_AC_BK] = edca->acbk;
820 psessionEntry->gLimEdcaParams[EDCA_AC_VI] = edca->acvi;
821 psessionEntry->gLimEdcaParams[EDCA_AC_VO] = edca->acvo;
822//log: LOG_WLAN_QOS_EDCA_C
823#ifdef FEATURE_WLAN_DIAG_SUPPORT
824 WLAN_VOS_DIAG_LOG_ALLOC(log_ptr, vos_log_qos_edca_pkt_type, LOG_WLAN_QOS_EDCA_C);
825 if(log_ptr)
826 {
827 log_ptr->aci_be = psessionEntry->gLimEdcaParams[EDCA_AC_BE].aci.aci;
828 log_ptr->cw_be = psessionEntry->gLimEdcaParams[EDCA_AC_BE].cw.max << 4 |
829 psessionEntry->gLimEdcaParams[EDCA_AC_BE].cw.min;
830 log_ptr->txoplimit_be = psessionEntry->gLimEdcaParams[EDCA_AC_BE].txoplimit;
831 log_ptr->aci_bk = psessionEntry->gLimEdcaParams[EDCA_AC_BK].aci.aci;
832 log_ptr->cw_bk = psessionEntry->gLimEdcaParams[EDCA_AC_BK].cw.max << 4 |
833 psessionEntry->gLimEdcaParams[EDCA_AC_BK].cw.min;
834 log_ptr->txoplimit_bk = psessionEntry->gLimEdcaParams[EDCA_AC_BK].txoplimit;
835 log_ptr->aci_vi = psessionEntry->gLimEdcaParams[EDCA_AC_VI].aci.aci;
836 log_ptr->cw_vi = psessionEntry->gLimEdcaParams[EDCA_AC_VI].cw.max << 4 |
837 psessionEntry->gLimEdcaParams[EDCA_AC_VI].cw.min;
838 log_ptr->txoplimit_vi = psessionEntry->gLimEdcaParams[EDCA_AC_VI].txoplimit;
839 log_ptr->aci_vo = psessionEntry->gLimEdcaParams[EDCA_AC_VO].aci.aci;
840 log_ptr->cw_vo = psessionEntry->gLimEdcaParams[EDCA_AC_VO].cw.max << 4 |
841 psessionEntry->gLimEdcaParams[EDCA_AC_VO].cw.min;
842 log_ptr->txoplimit_vo = psessionEntry->gLimEdcaParams[EDCA_AC_VO].txoplimit;
843 }
844 WLAN_VOS_DIAG_LOG_REPORT(log_ptr);
845#endif //FEATURE_WLAN_DIAG_SUPPORT
846 PELOG1(schLog(pMac, LOGE, FL("Updating Local EDCA Params(gLimEdcaParams) to: "));)
847 for(i=0; i<MAX_NUM_AC; i++)
848 {
Kiran Kumar Lokereaf882c82013-03-18 16:07:05 -0700849 PELOG1(schLog(pMac, LOG1, FL("AC[%d]: AIFSN: %d, ACM %d, CWmin %d, CWmax %d, TxOp %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700850 i,
851 psessionEntry->gLimEdcaParams[i].aci.aifsn,
852 psessionEntry->gLimEdcaParams[i].aci.acm,
853 psessionEntry->gLimEdcaParams[i].cw.min,
854 psessionEntry->gLimEdcaParams[i].cw.max,
855 psessionEntry->gLimEdcaParams[i].txoplimit);)
856 }
857
858 return eSIR_SUCCESS;
859}