From ed0d0fce888b20fab8cc5ba773d9092a119a19b1 Mon Sep 17 00:00:00 2001 From: sheenam monga Date: Fri, 8 Oct 2021 09:34:52 +0530 Subject: [PATCH] qcacld-3.0: Add support for for 3rd connection in DBS Currently, If CLI+CLI is present in 5G SCC or 5G MCC then 3rd connection should come in DBS. Hw mode change is required to come up in DBS. As entries for CLI+CLI are missing in policy_mgr_next_action_three_connection_table_type, by default next action is updtaed as NO_OP and hw mode change fails due to which connection fails. Fix is to add CLI+CLI entries in policy_mgr_next_action_three_connection_table_type to avoid connection failure. Change-Id: Ia935866506a62e54fb0e410df81a367e3e5b56b1 CRs-Fixed: 3052752 --- .../policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/cmn_services/policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h b/components/cmn_services/policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h index a7823a78e1..a6722824b0 100644 --- a/components/cmn_services/policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h +++ b/components/cmn_services/policy_mgr/src/wlan_policy_mgr_tables_2x2_dbs_i.h @@ -2065,6 +2065,12 @@ static policy_mgr_next_action_three_connection_table_type [PM_P2P_CLI_SAP_DBS_2x2] = {PM_NOP, PM_NOP}, [PM_P2P_CLI_SAP_SBS_5_1x1] = {PM_DBS_UPGRADE, PM_NOP}, + [PM_P2P_CLI_P2P_CLI_SCC_5_1x1] = {PM_DBS, PM_SBS}, + [PM_P2P_CLI_P2P_CLI_SCC_5_2x2] = {PM_DBS, PM_SBS_DOWNGRADE}, + [PM_P2P_CLI_P2P_CLI_MCC_5_1x1] = {PM_DBS, PM_SBS}, + [PM_P2P_CLI_P2P_CLI_MCC_5_2x2] = {PM_DBS, PM_SBS_DOWNGRADE}, + [PM_P2P_CLI_P2P_CLI_SBS_5_1x1] = {PM_DBS_UPGRADE, PM_NOP}, + [PM_STA_STA_SCC_24_1x1] = {PM_NOP, PM_NOP}, [PM_STA_STA_SCC_24_2x2] = {PM_NOP, PM_NOP}, [PM_STA_STA_MCC_24_1x1] = {PM_NOP, PM_NOP},