|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2012-2020 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
|
|
@@ -30,6 +30,7 @@
|
|
|
#include "wlan_policy_mgr_i.h"
|
|
|
#include "qdf_types.h"
|
|
|
#include "qdf_trace.h"
|
|
|
+#include "qdf_str.h"
|
|
|
#include "wlan_objmgr_global_obj.h"
|
|
|
#include "wlan_utility.h"
|
|
|
#include "wlan_mlme_ucfg_api.h"
|
|
@@ -559,7 +560,10 @@ static QDF_STATUS policy_mgr_pcl_modification_for_sap(
|
|
|
uint32_t *len)
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
- uint32_t i;
|
|
|
+ bool mandatory_modified_pcl = false;
|
|
|
+ bool nol_modified_pcl = false;
|
|
|
+ bool dfs_modified_pcl = false;
|
|
|
+ bool modified_final_pcl = false;
|
|
|
|
|
|
if (policy_mgr_is_sap_mandatory_channel_set(psoc)) {
|
|
|
status = policy_mgr_modify_sap_pcl_based_on_mandatory_channel(
|
|
@@ -569,10 +573,7 @@ static QDF_STATUS policy_mgr_pcl_modification_for_sap(
|
|
|
"failed to get mandatory modified pcl for SAP");
|
|
|
return status;
|
|
|
}
|
|
|
- policy_mgr_debug("mandatory modified pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++)
|
|
|
- policy_mgr_debug("chan:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
+ mandatory_modified_pcl = true;
|
|
|
}
|
|
|
|
|
|
status = policy_mgr_modify_sap_pcl_based_on_nol(
|
|
@@ -581,10 +582,7 @@ static QDF_STATUS policy_mgr_pcl_modification_for_sap(
|
|
|
policy_mgr_err("failed to get nol modified pcl for SAP");
|
|
|
return status;
|
|
|
}
|
|
|
- policy_mgr_debug("nol modified pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++)
|
|
|
- policy_mgr_debug("chan:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
+ nol_modified_pcl = true;
|
|
|
|
|
|
status = policy_mgr_modify_sap_pcl_based_on_dfs(
|
|
|
psoc, pcl_channels, pcl_weight, len);
|
|
@@ -592,10 +590,7 @@ static QDF_STATUS policy_mgr_pcl_modification_for_sap(
|
|
|
policy_mgr_err("failed to get dfs modified pcl for SAP");
|
|
|
return status;
|
|
|
}
|
|
|
- policy_mgr_debug("dfs modified pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++)
|
|
|
- policy_mgr_debug("chan:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
+ dfs_modified_pcl = true;
|
|
|
|
|
|
status = policy_mgr_modify_pcl_based_on_srd
|
|
|
(psoc, pcl_channels, pcl_weight, len);
|
|
@@ -603,10 +598,12 @@ static QDF_STATUS policy_mgr_pcl_modification_for_sap(
|
|
|
policy_mgr_err("failed to get srd modified pcl for SAP");
|
|
|
return status;
|
|
|
}
|
|
|
- policy_mgr_debug("modified final pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++)
|
|
|
- policy_mgr_debug("chan:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
+ modified_final_pcl = true;
|
|
|
+ policy_mgr_debug(" %d %d %d %d",
|
|
|
+ mandatory_modified_pcl,
|
|
|
+ nol_modified_pcl,
|
|
|
+ dfs_modified_pcl,
|
|
|
+ modified_final_pcl);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
@@ -618,7 +615,6 @@ static QDF_STATUS policy_mgr_pcl_modification_for_p2p_go(
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
- uint32_t i;
|
|
|
|
|
|
pm_ctx = policy_mgr_get_context(psoc);
|
|
|
if (!pm_ctx) {
|
|
@@ -639,10 +635,7 @@ static QDF_STATUS policy_mgr_pcl_modification_for_p2p_go(
|
|
|
policy_mgr_err("failed to get srd modified pcl for P2P-GO");
|
|
|
return status;
|
|
|
}
|
|
|
- policy_mgr_debug("modified pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++)
|
|
|
- policy_mgr_debug("ch freq:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
+ policy_mgr_dump_channel_list(*len, pcl_channels, pcl_weight);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
@@ -726,7 +719,7 @@ QDF_STATUS policy_mgr_get_pcl(struct wlan_objmgr_psoc *psoc,
|
|
|
uint8_t *pcl_weight, uint32_t weight_len)
|
|
|
{
|
|
|
QDF_STATUS status = QDF_STATUS_E_FAILURE;
|
|
|
- uint32_t num_connections = 0, i;
|
|
|
+ uint32_t num_connections = 0;
|
|
|
enum policy_mgr_conc_priority_mode first_index = 0;
|
|
|
enum policy_mgr_one_connection_mode second_index = 0;
|
|
|
enum policy_mgr_two_connection_mode third_index = 0;
|
|
@@ -819,10 +812,6 @@ QDF_STATUS policy_mgr_get_pcl(struct wlan_objmgr_psoc *psoc,
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- policy_mgr_debug("index1:%d index2:%d index3:%d pcl:%d dbs:%d",
|
|
|
- first_index, second_index, third_index,
|
|
|
- pcl, policy_mgr_is_hw_dbs_capable(psoc));
|
|
|
-
|
|
|
/* once the PCL enum is obtained find out the exact channel list with
|
|
|
* help from sme_get_cfg_valid_channels
|
|
|
*/
|
|
@@ -833,11 +822,7 @@ QDF_STATUS policy_mgr_get_pcl(struct wlan_objmgr_psoc *psoc,
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
- policy_mgr_debug("pcl len:%d", *len);
|
|
|
- for (i = 0; i < *len; i++) {
|
|
|
- policy_mgr_debug("chan:%d weight:%d",
|
|
|
- pcl_channels[i], pcl_weight[i]);
|
|
|
- }
|
|
|
+ policy_mgr_dump_channel_list(*len, pcl_channels, pcl_weight);
|
|
|
|
|
|
policy_mgr_mode_specific_modification_on_pcl(
|
|
|
psoc, pcl_channels, pcl_weight, len, mode);
|
|
@@ -2418,3 +2403,72 @@ uint32_t policy_mgr_get_alternate_channel_for_sap(
|
|
|
return ch_freq;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * Buffer len size to consider the 4 char freq, 3 char weight, 2 char
|
|
|
+ * for open close brackets and space and a space, Total 10
|
|
|
+ */
|
|
|
+#define CHAN_WEIGHT_CHAR_LEN 10
|
|
|
+#define MAX_CHAN_TO_PRINT 39
|
|
|
+
|
|
|
+bool policy_mgr_dump_channel_list(uint32_t len, uint32_t *pcl_channels,
|
|
|
+ uint8_t *pcl_weight)
|
|
|
+{
|
|
|
+ uint32_t idx, buff_len, num = 0, count = 0, count_6G = 0;
|
|
|
+ char *chan_buff = NULL;
|
|
|
+
|
|
|
+ buff_len = (QDF_MIN(len, MAX_CHAN_TO_PRINT) * CHAN_WEIGHT_CHAR_LEN) + 1;
|
|
|
+ chan_buff = qdf_mem_malloc(buff_len);
|
|
|
+ if (!chan_buff)
|
|
|
+ return false;
|
|
|
+
|
|
|
+ policymgr_nofl_debug("Total PCL Chan Freq %d", len);
|
|
|
+ for (idx = 0; idx < len; idx++) {
|
|
|
+ if (!WLAN_REG_IS_6GHZ_CHAN_FREQ(pcl_channels[idx])) {
|
|
|
+ num += qdf_scnprintf(chan_buff + num, buff_len - num,
|
|
|
+ " %d[%d]", pcl_channels[idx],
|
|
|
+ pcl_weight[idx]);
|
|
|
+ count++;
|
|
|
+ if (count >= MAX_CHAN_TO_PRINT) {
|
|
|
+ /* Print the MAX_CHAN_TO_PRINT channels */
|
|
|
+ policymgr_nofl_debug("2G+5G Freq[weight]:%s",
|
|
|
+ chan_buff);
|
|
|
+ count = 0;
|
|
|
+ num = 0;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ count_6G++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /* Print any pending channels */
|
|
|
+ if (num)
|
|
|
+ policymgr_nofl_debug("2G+5G Freq[weight]:%s", chan_buff);
|
|
|
+
|
|
|
+ if (!count_6G)
|
|
|
+ goto free;
|
|
|
+
|
|
|
+ count = 0;
|
|
|
+ num = 0;
|
|
|
+ for (idx = 0; idx < len; idx++) {
|
|
|
+ if (WLAN_REG_IS_6GHZ_CHAN_FREQ(pcl_channels[idx])) {
|
|
|
+ num += qdf_scnprintf(chan_buff + num, buff_len - num,
|
|
|
+ " %d[%d]", pcl_channels[idx],
|
|
|
+ pcl_weight[idx]);
|
|
|
+ count++;
|
|
|
+ if (count >= MAX_CHAN_TO_PRINT) {
|
|
|
+ /* Print the MAX_CHAN_TO_PRINT channels */
|
|
|
+ policymgr_nofl_debug("6G Freq[weight]:%s",
|
|
|
+ chan_buff);
|
|
|
+ count = 0;
|
|
|
+ num = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /* Print any pending channels */
|
|
|
+ if (num)
|
|
|
+ policymgr_nofl_debug("6G Freq[weight]:%s", chan_buff);
|
|
|
+
|
|
|
+free:
|
|
|
+ qdf_mem_free(chan_buff);
|
|
|
+
|
|
|
+ return true;
|
|
|
+}
|