mac80211: add handling for BSS color
authorJohn Crispin <john@phrozen.org>
Tue, 17 Dec 2019 14:19:19 +0000 (15:19 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 15 Jan 2020 10:18:50 +0000 (11:18 +0100)
It is now possible to propagate BSS color settings into the subsystem. Lets
make mac80211 also handle them so that we can send them further down the
stack into the drivers. We drop the old bss_color field and change iwlwifi
to use the new he_bss_color struct.

Signed-off-by: John Crispin <john@phrozen.org>
Link: https://lore.kernel.org/r/20191217141921.8114-2-john@phrozen.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
include/net/cfg80211.h
include/net/mac80211.h
net/mac80211/cfg.c
net/mac80211/mlme.c

index 32dc9d6f0fb62d2d2218b22b0a6dacf2c29e8fb4..01ef054e9176aace026e8b11a7e572ec20ee20e1 100644 (file)
@@ -2016,7 +2016,7 @@ static void iwl_mvm_cfg_he_sta(struct iwl_mvm *mvm,
        struct iwl_he_sta_context_cmd sta_ctxt_cmd = {
                .sta_id = sta_id,
                .tid_limit = IWL_MAX_TID_COUNT,
-               .bss_color = vif->bss_conf.bss_color,
+               .bss_color = vif->bss_conf.he_bss_color.color,
                .htc_trig_based_pkt_ext = vif->bss_conf.htc_trig_based_pkt_ext,
                .frame_time_rts_th =
                        cpu_to_le16(vif->bss_conf.frame_time_rts_th),
index 5c0b1b5ec77bdae647a32637caa75cb7e88d7410..fa027d0d031b05e94f3aa5199f1d6c50aecb1096 100644 (file)
@@ -272,6 +272,19 @@ struct cfg80211_he_bss_color {
        bool partial;
 };
 
+/**
+ * struct ieee80211_he_bss_color - AP settings for BSS coloring
+ *
+ * @color: the current color.
+ * @disabled: is the feature disabled.
+ * @partial: define the AID equation.
+ */
+struct ieee80211_he_bss_color {
+       u8 color;
+       bool disabled;
+       bool partial;
+};
+
 /**
  * struct ieee80211_sta_ht_cap - STA's HT capabilities
  *
index 682fd2f4431b1c7c3a3eeb5c524ca5f9ce732c09..6d4ea71523d287a94aee7d79ea16eda9fd49547d 100644 (file)
@@ -316,6 +316,7 @@ struct ieee80211_vif_chanctx_switch {
  *     functionality changed for this BSS (AP mode).
  * @BSS_CHANGED_TWT: TWT status changed
  * @BSS_CHANGED_HE_OBSS_PD: OBSS Packet Detection status changed.
+ * @BSS_CHANGED_HE_BSS_COLOR: BSS Color has changed
  *
  */
 enum ieee80211_bss_change {
@@ -348,6 +349,7 @@ enum ieee80211_bss_change {
        BSS_CHANGED_FTM_RESPONDER       = 1<<26,
        BSS_CHANGED_TWT                 = 1<<27,
        BSS_CHANGED_HE_OBSS_PD          = 1<<28,
+       BSS_CHANGED_HE_BSS_COLOR        = 1<<29,
 
        /* when adding here, make sure to change ieee80211_reconfig */
 };
@@ -494,7 +496,6 @@ struct ieee80211_ftm_responder_params {
  * This structure keeps information about a BSS (and an association
  * to that BSS) that can change during the lifetime of the BSS.
  *
- * @bss_color: 6-bit value to mark inter-BSS frame, if BSS supports HE
  * @htc_trig_based_pkt_ext: default PE in 4us units, if BSS supports HE
  * @multi_sta_back_32bit: supports BA bitmap of 32-bits in Multi-STA BACK
  * @uora_exists: is the UORA element advertised by AP
@@ -604,10 +605,10 @@ struct ieee80211_ftm_responder_params {
  *     in order to discover all the nontransmitted BSSIDs in the set.
  * @he_operation: HE operation information of the AP we are connected to
  * @he_obss_pd: OBSS Packet Detection parameters.
+ * @he_bss_color: BSS coloring settings, if BSS supports HE
  */
 struct ieee80211_bss_conf {
        const u8 *bssid;
-       u8 bss_color;
        u8 htc_trig_based_pkt_ext;
        bool multi_sta_back_32bit;
        bool uora_exists;
@@ -667,6 +668,7 @@ struct ieee80211_bss_conf {
        u8 profile_periodicity;
        struct ieee80211_he_operation he_operation;
        struct ieee80211_he_obss_pd he_obss_pd;
+       struct cfg80211_he_bss_color he_bss_color;
 };
 
 /**
index 4fb7f1f1210980df126c0560fd6cc824fc1388c9..a11bd1669c13d651844bfb56cec3ba6d7ba9c938 100644 (file)
@@ -981,7 +981,8 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
                      BSS_CHANGED_P2P_PS |
                      BSS_CHANGED_TXPOWER |
                      BSS_CHANGED_TWT |
-                     BSS_CHANGED_HE_OBSS_PD;
+                     BSS_CHANGED_HE_OBSS_PD |
+                     BSS_CHANGED_HE_BSS_COLOR;
        int err;
        int prev_beacon_int;
 
@@ -1054,6 +1055,8 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
        sdata->vif.bss_conf.twt_responder = params->twt_responder;
        memcpy(&sdata->vif.bss_conf.he_obss_pd, &params->he_obss_pd,
               sizeof(struct ieee80211_he_obss_pd));
+       memcpy(&sdata->vif.bss_conf.he_bss_color, &params->he_bss_color,
+              sizeof(struct ieee80211_he_bss_color));
 
        sdata->vif.bss_conf.ssid_len = params->ssid_len;
        if (params->ssid_len)
index 5fa13176036f4f3d9d9edeff6a903580597e11f0..6e4099009eab57110eae63deb519d40072e9a390 100644 (file)
@@ -3368,9 +3368,16 @@ static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
        }
 
        if (bss_conf->he_support) {
-               bss_conf->bss_color =
+               bss_conf->he_bss_color.color =
                        le32_get_bits(elems->he_operation->he_oper_params,
                                      IEEE80211_HE_OPERATION_BSS_COLOR_MASK);
+               bss_conf->he_bss_color.partial =
+                       le32_get_bits(elems->he_operation->he_oper_params,
+                                     IEEE80211_HE_OPERATION_PARTIAL_BSS_COLOR);
+               bss_conf->he_bss_color.disabled =
+                       le32_get_bits(elems->he_operation->he_oper_params,
+                                     IEEE80211_HE_OPERATION_BSS_COLOR_DISABLED);
+               changed |= BSS_CHANGED_HE_BSS_COLOR;
 
                bss_conf->htc_trig_based_pkt_ext =
                        le32_get_bits(elems->he_operation->he_oper_params,