|
@@ -1,5 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. 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
|
|
@@ -2021,6 +2022,32 @@ enum policy_mgr_three_connection_mode
|
|
|
pm_conc_connection_list[list_ndi[0]].freq)) {
|
|
|
index = PM_NDI_NDI_NAN_DISC_24_SMM;
|
|
|
}
|
|
|
+ } else if (count_sap == 3) {
|
|
|
+ if (WLAN_REG_IS_SAME_BAND_FREQS(
|
|
|
+ pm_conc_connection_list[list_sap[0]].freq,
|
|
|
+ pm_conc_connection_list[list_sap[1]].freq)) {
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
|
|
+ pm_conc_connection_list[list_sap[2]].freq))
|
|
|
+ index = PM_SAP_SAP_SCC_5_SAP_24_DBS;
|
|
|
+ else
|
|
|
+ index = PM_SAP_SAP_SCC_24_SAP_5_DBS;
|
|
|
+ } else if (WLAN_REG_IS_SAME_BAND_FREQS(
|
|
|
+ pm_conc_connection_list[list_sap[0]].freq,
|
|
|
+ pm_conc_connection_list[list_sap[2]].freq)) {
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
|
|
+ pm_conc_connection_list[list_sap[1]].freq))
|
|
|
+ index = PM_SAP_SAP_SCC_5_SAP_24_DBS;
|
|
|
+ else
|
|
|
+ index = PM_SAP_SAP_SCC_24_SAP_5_DBS;
|
|
|
+ } else if (WLAN_REG_IS_SAME_BAND_FREQS(
|
|
|
+ pm_conc_connection_list[list_sap[1]].freq,
|
|
|
+ pm_conc_connection_list[list_sap[2]].freq)) {
|
|
|
+ if (WLAN_REG_IS_24GHZ_CH_FREQ(
|
|
|
+ pm_conc_connection_list[list_sap[0]].freq))
|
|
|
+ index = PM_SAP_SAP_SCC_5_SAP_24_DBS;
|
|
|
+ else
|
|
|
+ index = PM_SAP_SAP_SCC_24_SAP_5_DBS;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
policy_mgr_debug(
|