|
@@ -3466,7 +3466,10 @@ void policy_mgr_add_sap_mandatory_chan(struct wlan_objmgr_psoc *psoc,
|
|
|
if (ch_freq == pm_ctx->sap_mandatory_channels[i])
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+ if (pm_ctx->sap_mandatory_channels_len >= NUM_CHANNELS) {
|
|
|
+ policy_mgr_err("mand list overflow (%hu)", ch_freq);
|
|
|
+ return;
|
|
|
+ }
|
|
|
policy_mgr_debug("Ch freq: %hu", ch_freq);
|
|
|
pm_ctx->sap_mandatory_channels[pm_ctx->sap_mandatory_channels_len++]
|
|
|
= ch_freq;
|
|
@@ -3486,13 +3489,27 @@ uint32_t policy_mgr_get_sap_mandatory_chan_list_len(
|
|
|
return pm_ctx->sap_mandatory_channels_len;
|
|
|
}
|
|
|
|
|
|
-void policy_mgr_init_sap_mandatory_2g_chan(struct wlan_objmgr_psoc *psoc)
|
|
|
+#if defined(CONFIG_BAND_6GHZ)
|
|
|
+/**
|
|
|
+ * policy_mgr_add_sap_mandatory_6ghz_chan() - Add 6GHz SAP mandatory channel
|
|
|
+ * list
|
|
|
+ * @psoc: Pointer to soc
|
|
|
+ *
|
|
|
+ * Add the 6GHz PSC VLP channel to SAP mandatory channel list.
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static
|
|
|
+void policy_mgr_add_sap_mandatory_6ghz_chan(struct wlan_objmgr_psoc *psoc)
|
|
|
{
|
|
|
uint32_t ch_freq_list[NUM_CHANNELS] = {0};
|
|
|
uint32_t len = 0;
|
|
|
int i;
|
|
|
QDF_STATUS status;
|
|
|
struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+ bool is_psd;
|
|
|
+ uint16_t tx_power;
|
|
|
+ uint16_t eirp_psd_power;
|
|
|
|
|
|
pm_ctx = policy_mgr_get_context(psoc);
|
|
|
if (!pm_ctx) {
|
|
@@ -3505,8 +3522,65 @@ void policy_mgr_init_sap_mandatory_2g_chan(struct wlan_objmgr_psoc *psoc)
|
|
|
policy_mgr_err("Error in getting valid channels");
|
|
|
return;
|
|
|
}
|
|
|
- pm_ctx->sap_mandatory_channels_len = 0;
|
|
|
|
|
|
+ for (i = 0; (i < len) && (i < NUM_CHANNELS) &&
|
|
|
+ (pm_ctx->sap_mandatory_channels_len < NUM_CHANNELS); i++) {
|
|
|
+ if (!WLAN_REG_IS_6GHZ_CHAN_FREQ(ch_freq_list[i]))
|
|
|
+ continue;
|
|
|
+ if (WLAN_REG_IS_6GHZ_PSC_CHAN_FREQ(ch_freq_list[i])) {
|
|
|
+ status = wlan_reg_get_6g_chan_ap_power(
|
|
|
+ pm_ctx->pdev, ch_freq_list[i], &is_psd,
|
|
|
+ &tx_power, &eirp_psd_power);
|
|
|
+ if (status != QDF_STATUS_SUCCESS || !tx_power)
|
|
|
+ continue;
|
|
|
+
|
|
|
+ policy_mgr_debug("Add chan %hu to mandatory list",
|
|
|
+ ch_freq_list[i]);
|
|
|
+ pm_ctx->sap_mandatory_channels[
|
|
|
+ pm_ctx->sap_mandatory_channels_len++] =
|
|
|
+ ch_freq_list[i];
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+#else
|
|
|
+static inline
|
|
|
+void policy_mgr_add_sap_mandatory_6ghz_chan(struct wlan_objmgr_psoc *psoc)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+/**
|
|
|
+ * policy_mgr_init_sap_mandatory_chan_by_band() - Init SAP mandatory channel
|
|
|
+ * list based on band
|
|
|
+ * @psoc: Pointer to soc
|
|
|
+ * @band_bitmap: band bitmap of type reg_wifi_band
|
|
|
+ *
|
|
|
+ * Initialize the 2.4G 5G 6G SAP mandatory channels based on band
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void
|
|
|
+policy_mgr_init_sap_mandatory_chan_by_band(struct wlan_objmgr_psoc *psoc,
|
|
|
+ uint32_t band_bitmap)
|
|
|
+{
|
|
|
+ uint32_t ch_freq_list[NUM_CHANNELS] = {0};
|
|
|
+ uint32_t len = 0;
|
|
|
+ int i;
|
|
|
+ QDF_STATUS status;
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("Invalid Context");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = policy_mgr_get_valid_chans(psoc, ch_freq_list, &len);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ policy_mgr_err("Error in getting valid channels");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ pm_ctx->sap_mandatory_channels_len = 0;
|
|
|
for (i = 0; (i < len) && (i < NUM_CHANNELS); i++) {
|
|
|
if (WLAN_REG_IS_24GHZ_CH_FREQ(ch_freq_list[i])) {
|
|
|
policy_mgr_debug("Add chan %hu to mandatory list",
|
|
@@ -3516,6 +3590,33 @@ void policy_mgr_init_sap_mandatory_2g_chan(struct wlan_objmgr_psoc *psoc)
|
|
|
ch_freq_list[i];
|
|
|
}
|
|
|
}
|
|
|
+ if (band_bitmap & BIT(REG_BAND_5G))
|
|
|
+ policy_mgr_add_sap_mandatory_chan(psoc,
|
|
|
+ SAP_MANDATORY_5G_CH_FREQ);
|
|
|
+ if (band_bitmap & BIT(REG_BAND_6G))
|
|
|
+ policy_mgr_add_sap_mandatory_6ghz_chan(psoc);
|
|
|
+}
|
|
|
+
|
|
|
+void policy_mgr_init_sap_mandatory_chan(struct wlan_objmgr_psoc *psoc,
|
|
|
+ uint32_t org_ch_freq)
|
|
|
+{
|
|
|
+ if (WLAN_REG_IS_5GHZ_CH_FREQ(org_ch_freq)) {
|
|
|
+ policy_mgr_debug("channel %hu, sap mandatory chan list enabled",
|
|
|
+ org_ch_freq);
|
|
|
+ if (!policy_mgr_get_sap_mandatory_chan_list_len(psoc))
|
|
|
+ policy_mgr_init_sap_mandatory_chan_by_band(
|
|
|
+ psoc, BIT(REG_BAND_2G));
|
|
|
+ policy_mgr_add_sap_mandatory_chan(
|
|
|
+ psoc, org_ch_freq);
|
|
|
+ } else if (WLAN_REG_IS_6GHZ_CHAN_FREQ(org_ch_freq)) {
|
|
|
+ policy_mgr_init_sap_mandatory_chan_by_band(
|
|
|
+ psoc,
|
|
|
+ BIT(REG_BAND_2G) | BIT(REG_BAND_5G) |
|
|
|
+ BIT(REG_BAND_6G));
|
|
|
+ } else {
|
|
|
+ policy_mgr_init_sap_mandatory_chan_by_band(
|
|
|
+ psoc, BIT(REG_BAND_2G));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void policy_mgr_remove_sap_mandatory_chan(struct wlan_objmgr_psoc *psoc,
|