diff options
| author | Ashish Kumar Dhanotiya <adhanoti@codeaurora.org> | 2019-04-18 19:27:45 +0530 |
|---|---|---|
| committer | Bruno Martins <bgcngm@gmail.com> | 2020-10-25 11:14:58 +0200 |
| commit | cd1f30100e7706b01076db8cf1edfda3852af354 (patch) | |
| tree | 1d78985ccac5dfdbb93289ae7b27937b6793a50b /wifi | |
| parent | 022bfee0159b0ec25c6ee1a848540dca99436fdb (diff) | |
pro1: wifi: ini file changes for Andorid Q upgrade
Default ini values for enable_twt, gEnableEarlyStopScan,
pcl_weightage and gcmp_enabled, need to change in
MSM8998 for Android Q upgrade.
Update the ini values as below:
set RoamRssiDiff as 5
set gWlanMccToSccSwitchMode as 3
set enable_twt to disable by default
set gEnableEarlyStopScan as enabled by default
set rx_mode to 5 by default
set pcl_weightage to zero and
disable gcmp_enabled.
Change-Id: I0a81e9c472b98bf4e6dd77867a0730a01267c72e
CRs-fixed: 2437902
Diffstat (limited to 'wifi')
| -rw-r--r-- | wifi/WCNSS_qcom_cfg.ini | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/wifi/WCNSS_qcom_cfg.ini b/wifi/WCNSS_qcom_cfg.ini index 48f8967..0e05bc0 100644 --- a/wifi/WCNSS_qcom_cfg.ini +++ b/wifi/WCNSS_qcom_cfg.ini @@ -91,7 +91,7 @@ FastRoamEnabled=1 # terms of RSSI. Checking is disabled if set to Zero.Otherwise it will # use this value as to how better the RSSI of the new/roamable AP should # be for roaming -RoamRssiDiff=3 +RoamRssiDiff=5 # To enable, set gRoamIntraBand=1 (Roaming within band) # To disable, set gRoamIntraBand=0 (Roaming across band) @@ -181,7 +181,7 @@ gEnableMCCMode=1 # 3-Force SCC if same band, without SAP restart by sending (E)CSA # 4-Force SCC if same band (or) use SAP mandatory channel for DBS, # without SAP restart by sending (E)CSA -gWlanMccToSccSwitchMode = 0 +gWlanMccToSccSwitchMode=3 # 1=enable STBC; 0=disable STBC gEnableRXSTBC=1 @@ -399,7 +399,7 @@ gCEClassifyEnable=1 # Enable Rx handling options # Rx_thread=1 RPS=2(default for ROME) NAPI=4(default for ihelium) -rx_mode=4 +rx_mode=5 # Enable(Tx) fastpath for data traffic. # 1 - enable(default) 0 - disable @@ -449,6 +449,28 @@ adapt_dwell_wifi_act_threshold=10 # 0- Disable DTIM Synth gEnableLPRx=0 +#Enable Target Wake Time support +enable_twt=0 + +# This ini is used to set early stop scan. Early stop +#scan is a feature for roaming to stop the scans at +#an early stage as soon as we find a better AP to roam. +#This would make the roaming happen quickly. +gEnableEarlyStopScan=1 + +#This ini is used to increase/decrease PCL weightage in best +#candidate selection. +#If some APs are in PCL list, those AP will get addition weightage. +pcl_weightage=0 + +#Currently Firmware update the sequence number for each TID with +#because of security issues. But with this PN mechanism, throughput drop +#is observed. With this ini FW takes the decision to trade off between +#security and throughput +gcmp_enabled=0 + +gTxBFCsnValue=4 + END # Note: Configuration parser would not read anything past the END marker |
