mt76: unify add_interface
authorStanislaw Gruszka <sgruszka@redhat.com>
Tue, 4 Sep 2018 14:41:06 +0000 (16:41 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Sep 2018 10:29:15 +0000 (12:29 +0200)
Make common add_interface for mt76x0 and mt76x2e. This change behavior
for mt76x0, but it should work with the new implementation.

mt76x2u has different implementation. Maybe it can use common one,
but for now leave it as is.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x0/main.c
drivers/net/wireless/mediatek/mt76/mt76x02_util.c
drivers/net/wireless/mediatek/mt76/mt76x02_util.h
drivers/net/wireless/mediatek/mt76/mt76x2_main.c

index d8efa009126c8dff698ad48d861e52f9cccd3317..809ee41e7121d5c17630ff84b614eb0357a6314b 100644 (file)
@@ -51,17 +51,6 @@ static void mt76x0_stop(struct ieee80211_hw *hw)
        mutex_unlock(&dev->mt76.mutex);
 }
 
-
-static int mt76x0_add_interface(struct ieee80211_hw *hw,
-                                struct ieee80211_vif *vif)
-{
-       struct mt76x0_dev *dev = hw->priv;
-       unsigned int idx = 0;
-
-       mt76x02_vif_init(&dev->mt76, vif, idx);
-       return 0;
-}
-
 static int mt76x0_config(struct ieee80211_hw *hw, u32 changed)
 {
        struct mt76x0_dev *dev = hw->priv;
@@ -194,7 +183,7 @@ const struct ieee80211_ops mt76x0_ops = {
        .tx = mt76x0_tx,
        .start = mt76x0_start,
        .stop = mt76x0_stop,
-       .add_interface = mt76x0_add_interface,
+       .add_interface = mt76x02_add_interface,
        .remove_interface = mt76x02_remove_interface,
        .config = mt76x0_config,
        .configure_filter = mt76x02_configure_filter,
index 3b68102e55aeaf25d16fb4e13c20c324c369b0ec..41406ba09296ef4acff5cc3af221f459cd46cee3 100644 (file)
@@ -127,6 +127,36 @@ void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif,
 }
 EXPORT_SYMBOL_GPL(mt76x02_vif_init);
 
+int
+mt76x02_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
+{
+       struct mt76_dev *dev = hw->priv;
+       unsigned int idx = 0;
+
+       if (vif->addr[0] & BIT(1))
+               idx = 1 + (((dev->macaddr[0] ^ vif->addr[0]) >> 2) & 7);
+
+       /*
+        * Client mode typically only has one configurable BSSID register,
+        * which is used for bssidx=0. This is linked to the MAC address.
+        * Since mac80211 allows changing interface types, and we cannot
+        * force the use of the primary MAC address for a station mode
+        * interface, we need some other way of configuring a per-interface
+        * remote BSSID.
+        * The hardware provides an AP-Client feature, where bssidx 0-7 are
+        * used for AP mode and bssidx 8-15 for client mode.
+        * We shift the station interface bss index by 8 to force the
+        * hardware to recognize the BSSID.
+        * The resulting bssidx mismatch for unicast frames is ignored by hw.
+        */
+       if (vif->type == NL80211_IFTYPE_STATION)
+               idx += 8;
+
+       mt76x02_vif_init(dev, vif, idx);
+       return 0;
+}
+EXPORT_SYMBOL_GPL(mt76x02_add_interface);
+
 void mt76x02_remove_interface(struct ieee80211_hw *hw,
                             struct ieee80211_vif *vif)
 {
index a61c9f2b9a620dce1b992c5b73326f1423c2a6d3..f8890ab7b04ec5464635deb277c0afa031ad7476 100644 (file)
@@ -28,6 +28,8 @@ int mt76x02_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 
 void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif,
                     unsigned int idx);
+int mt76x02_add_interface(struct ieee80211_hw *hw,
+                        struct ieee80211_vif *vif);
 void mt76x02_remove_interface(struct ieee80211_hw *hw,
                             struct ieee80211_vif *vif);
 
index 128a1c1c0f64b5e4d3375cbdf6a4ba37871968ea..99d9033efa15157c8ebad50a0544ccbe31f318cd 100644 (file)
@@ -54,35 +54,6 @@ mt76x2_stop(struct ieee80211_hw *hw)
        mutex_unlock(&dev->mt76.mutex);
 }
 
-static int
-mt76x2_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
-{
-       struct mt76x2_dev *dev = hw->priv;
-       unsigned int idx = 0;
-
-       if (vif->addr[0] & BIT(1))
-               idx = 1 + (((dev->mt76.macaddr[0] ^ vif->addr[0]) >> 2) & 7);
-
-       /*
-        * Client mode typically only has one configurable BSSID register,
-        * which is used for bssidx=0. This is linked to the MAC address.
-        * Since mac80211 allows changing interface types, and we cannot
-        * force the use of the primary MAC address for a station mode
-        * interface, we need some other way of configuring a per-interface
-        * remote BSSID.
-        * The hardware provides an AP-Client feature, where bssidx 0-7 are
-        * used for AP mode and bssidx 8-15 for client mode.
-        * We shift the station interface bss index by 8 to force the
-        * hardware to recognize the BSSID.
-        * The resulting bssidx mismatch for unicast frames is ignored by hw.
-        */
-       if (vif->type == NL80211_IFTYPE_STATION)
-               idx += 8;
-
-       mt76x02_vif_init(&dev->mt76, vif, idx);
-       return 0;
-}
-
 static int
 mt76x2_set_channel(struct mt76x2_dev *dev, struct cfg80211_chan_def *chandef)
 {
@@ -313,7 +284,7 @@ const struct ieee80211_ops mt76x2_ops = {
        .tx = mt76x2_tx,
        .start = mt76x2_start,
        .stop = mt76x2_stop,
-       .add_interface = mt76x2_add_interface,
+       .add_interface = mt76x02_add_interface,
        .remove_interface = mt76x02_remove_interface,
        .config = mt76x2_config,
        .configure_filter = mt76x02_configure_filter,