qcacld-3.0: Update ciphers in RSO command from crypto component

Currently driver fills unicast, multicast & auth mode values from
csr session which is not updated after roaming to AP with different
security profile. This causes incorrect values in AP profile command.
Send correct authmode/unicast and multicast ciphers in AP profile
command to firmware.

Also modify the below 2 ini default values as:
candidate_min_rssi_for_beacon_miss=-75
candidate_min_rssi_for_disconnect=-75

Change-Id: I33cc9f516447071e977768f01738eea7a2ecd99c
CRs-Fixed: 2879943
此提交包含在:
Pragaspathi Thilagaraj
2021-02-17 19:40:22 +05:30
提交者 snandini
父節點 b577d7479e
當前提交 1cbfd5f909
共有 6 個檔案被更改,包括 44 行新增67 行删除

查看文件

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -177,7 +177,7 @@
* idle roam trigger(in dBm).
* @Min: -120
* @Max: 0
* @Default: -70
* @Default: -75
*
* Minimum RSSI value of the candidate AP to consider it as candidate for
* roaming when roam trigger is Deauthentication/Disconnection from current
@@ -196,7 +196,7 @@
"candidate_min_rssi_for_disconnect", \
-120, \
0, \
-70, \
-75, \
CFG_VALUE_OR_DEFAULT, \
"Minimum RSSI of candidate AP for Disconnect roam trigger")
@@ -206,7 +206,7 @@
* miss roam trigger (in dBm)
* @Min: -120
* @Max: 0
* @Default: -70
* @Default: -75
*
* Minimum RSSI value of the candidate AP to consider it as candidate for
* roaming when roam trigger is disconnection from current AP due to beacon
@@ -225,7 +225,7 @@
"candidate_min_rssi_for_beacon_miss", \
-120, \
0, \
-70, \
-75, \
CFG_VALUE_OR_DEFAULT, \
"Minimum RSSI of candidate AP for Bmiss roam trigger")