|
@@ -615,6 +615,134 @@ reg_modify_chan_list_for_srd_channels(struct wlan_objmgr_pdev *pdev,
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef DISABLE_UNII_SHARED_BANDS
|
|
|
+/**
|
|
|
+ * reg_is_reg_unii_band_1_set() - Check UNII bitmap
|
|
|
+ * @unii_bitmap: 5G UNII band bitmap
|
|
|
+ *
|
|
|
+ * This function checks the input bitmap to disable UNII-1 band channels.
|
|
|
+ *
|
|
|
+ * Return: Return true if UNII-1 channels need to be disabled,
|
|
|
+ * else return false.
|
|
|
+ */
|
|
|
+static bool reg_is_reg_unii_band_1_set(uint8_t unii_bitmap)
|
|
|
+{
|
|
|
+ return !!(unii_bitmap & BIT(REG_UNII_BAND_1));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * reg_is_reg_unii_band_2a_set() - Check UNII bitmap
|
|
|
+ * @unii_bitmap: 5G UNII band bitmap
|
|
|
+ *
|
|
|
+ * This function checks the input bitmap to disable UNII-2A band channels.
|
|
|
+ *
|
|
|
+ * Return: Return true if UNII-2A channels need to be disabled,
|
|
|
+ * else return false.
|
|
|
+ */
|
|
|
+static bool reg_is_reg_unii_band_2a_set(uint8_t unii_bitmap)
|
|
|
+{
|
|
|
+ return !!(unii_bitmap & BIT(REG_UNII_BAND_2A));
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * reg_is_5g_enum() - Check if channel enum is a 5G channel enum
|
|
|
+ * @chan_enum: channel enum
|
|
|
+ *
|
|
|
+ * Return: Return true if the input channel enum is 5G, else return false.
|
|
|
+ */
|
|
|
+static bool reg_is_5g_enum(enum channel_enum chan_enum)
|
|
|
+{
|
|
|
+ return (chan_enum >= MIN_5GHZ_CHANNEL && chan_enum <= MAX_5GHZ_CHANNEL);
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * reg_remove_unii_chan_from_chan_list() - Remove UNII band channels
|
|
|
+ * @chan_list: Pointer to current channel list
|
|
|
+ * @start_enum: starting enum value
|
|
|
+ * @end_enum: ending enum value
|
|
|
+ *
|
|
|
+ * Remove channels in a unii band based in on the input start_enum and end_enum.
|
|
|
+ * Disable the state and flags. Set disable_coex flag to true.
|
|
|
+ *
|
|
|
+ * return: void.
|
|
|
+ */
|
|
|
+static void
|
|
|
+reg_remove_unii_chan_from_chan_list(struct regulatory_channel *chan_list,
|
|
|
+ enum channel_enum start_enum,
|
|
|
+ enum channel_enum end_enum)
|
|
|
+{
|
|
|
+ enum channel_enum chan_enum;
|
|
|
+
|
|
|
+ if (!(reg_is_5g_enum(start_enum) && reg_is_5g_enum(end_enum))) {
|
|
|
+ reg_err_rl("start_enum or end_enum is invalid");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (chan_enum = start_enum; chan_enum <= end_enum; chan_enum++) {
|
|
|
+ chan_list[chan_enum].state = CHANNEL_STATE_DISABLE;
|
|
|
+ chan_list[chan_enum].chan_flags |= REGULATORY_CHAN_DISABLED;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * reg_modify_disable_chan_list_for_unii1_and_unii2a() - Disable UNII-1 and
|
|
|
+ * UNII2A band
|
|
|
+ * @pdev_priv_obj: Pointer to pdev private object
|
|
|
+ *
|
|
|
+ * This function disables the UNII-1 and UNII-2A band channels
|
|
|
+ * based on input unii_5g_bitmap.
|
|
|
+ *
|
|
|
+ * Return: void.
|
|
|
+ */
|
|
|
+static void
|
|
|
+reg_modify_disable_chan_list_for_unii1_and_unii2a(
|
|
|
+ struct wlan_regulatory_pdev_priv_obj *pdev_priv_obj)
|
|
|
+{
|
|
|
+ uint8_t unii_bitmap = pdev_priv_obj->unii_5g_bitmap;
|
|
|
+ struct regulatory_channel *chan_list = pdev_priv_obj->cur_chan_list;
|
|
|
+
|
|
|
+ if (reg_is_reg_unii_band_1_set(unii_bitmap)) {
|
|
|
+ reg_remove_unii_chan_from_chan_list(chan_list,
|
|
|
+ MIN_UNII_1_BAND_CHANNEL,
|
|
|
+ MAX_UNII_1_BAND_CHANNEL);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (reg_is_reg_unii_band_2a_set(unii_bitmap)) {
|
|
|
+ reg_remove_unii_chan_from_chan_list(chan_list,
|
|
|
+ MIN_UNII_2A_BAND_CHANNEL,
|
|
|
+ MAX_UNII_2A_BAND_CHANNEL);
|
|
|
+ }
|
|
|
+}
|
|
|
+#else
|
|
|
+static inline bool reg_is_reg_unii_band_1_set(uint8_t unii_bitmap)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+static inline bool reg_is_reg_unii_band_2a_set(uint8_t unii_bitmap)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+static inline bool reg_is_5g_enum(enum channel_enum chan_enum)
|
|
|
+{
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+static inline void
|
|
|
+reg_remove_unii_chan_from_chan_list(struct regulatory_channel *chan_list,
|
|
|
+ enum channel_enum start_enum,
|
|
|
+ enum channel_enum end_enum)
|
|
|
+{
|
|
|
+}
|
|
|
+
|
|
|
+static inline void
|
|
|
+reg_modify_disable_chan_list_for_unii1_and_unii2a(
|
|
|
+ struct wlan_regulatory_pdev_priv_obj *pdev_priv_obj)
|
|
|
+{
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
void reg_compute_pdev_current_chan_list(struct wlan_regulatory_pdev_priv_obj
|
|
|
*pdev_priv_obj)
|
|
|
{
|
|
@@ -630,6 +758,8 @@ void reg_compute_pdev_current_chan_list(struct wlan_regulatory_pdev_priv_obj
|
|
|
reg_modify_chan_list_for_band(pdev_priv_obj->cur_chan_list,
|
|
|
pdev_priv_obj->band_capability);
|
|
|
|
|
|
+ reg_modify_disable_chan_list_for_unii1_and_unii2a(pdev_priv_obj);
|
|
|
+
|
|
|
reg_modify_chan_list_for_dfs_channels(pdev_priv_obj->cur_chan_list,
|
|
|
pdev_priv_obj->dfs_enabled);
|
|
|
|