mt76: mt7615: add 4 WMM sets support
authorRyder Lee <ryder.lee@mediatek.com>
Mon, 22 Jul 2019 08:50:08 +0000 (16:50 +0800)
committerFelix Fietkau <nbd@nbd.name>
Thu, 5 Sep 2019 15:42:30 +0000 (17:42 +0200)
Hardware supports 4 sets of WMM that should be put to good use.
And fix incorrect queue mapping in mt7615_conf_tx().

Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7615/mac.c
drivers/net/wireless/mediatek/mt76/mt7615/main.c
drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h

index 48473f480c704d0536b51c989f6304ba1ca60943..b8d87529b85b993bf066e47c09df4c518a5f14aa 100644 (file)
@@ -314,7 +314,7 @@ int mt7615_mac_write_txwi(struct mt7615_dev *dev, __le32 *txwi,
        struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
        struct ieee80211_vif *vif = info->control.vif;
        int tx_count = 8;
-       u8 fc_type, fc_stype, p_fmt, q_idx, omac_idx = 0;
+       u8 fc_type, fc_stype, p_fmt, q_idx, omac_idx = 0, wmm_idx = 0;
        __le16 fc = hdr->frame_control;
        u16 seqno = 0;
        u32 val;
@@ -323,6 +323,7 @@ int mt7615_mac_write_txwi(struct mt7615_dev *dev, __le32 *txwi,
                struct mt7615_vif *mvif = (struct mt7615_vif *)vif->drv_priv;
 
                omac_idx = mvif->omac_idx;
+               wmm_idx = mvif->wmm_idx;
        }
 
        if (sta) {
@@ -335,7 +336,7 @@ int mt7615_mac_write_txwi(struct mt7615_dev *dev, __le32 *txwi,
        fc_stype = (le16_to_cpu(fc) & IEEE80211_FCTL_STYPE) >> 4;
 
        if (ieee80211_is_data(fc) || ieee80211_is_bufferable_mmpdu(fc)) {
-               q_idx = skb_get_queue_mapping(skb);
+               q_idx = skb_get_queue_mapping(skb) + wmm_idx * MT7615_MAX_WMM_SETS;
                p_fmt = MT_TX_TYPE_CT;
        } else if (ieee80211_is_beacon(fc)) {
                q_idx = MT_LMAC_BCN0;
index 1c365b02d7f88e4695acd939f8157eef09efc289..6238b29170ae11a4836765b44fae0766d79b2945 100644 (file)
@@ -85,9 +85,9 @@ static int mt7615_add_interface(struct ieee80211_hw *hw,
        }
        mvif->omac_idx = idx;
 
-       /* TODO: DBDC support. Use band 0 and wmm 0 for now */
+       /* TODO: DBDC support. Use band 0 for now */
        mvif->band_idx = 0;
-       mvif->wmm_idx = 0;
+       mvif->wmm_idx = mvif->idx % MT7615_MAX_WMM_SETS;
 
        ret = mt7615_mcu_set_dev_info(dev, vif, 1);
        if (ret)
@@ -239,16 +239,12 @@ static int
 mt7615_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
               const struct ieee80211_tx_queue_params *params)
 {
+       struct mt7615_vif *mvif = (struct mt7615_vif *)vif->drv_priv;
        struct mt7615_dev *dev = hw->priv;
-       static const u8 wmm_queue_map[] = {
-               [IEEE80211_AC_BK] = 0,
-               [IEEE80211_AC_BE] = 1,
-               [IEEE80211_AC_VI] = 2,
-               [IEEE80211_AC_VO] = 3,
-       };
 
-       /* TODO: hw wmm_set 1~3 */
-       return mt7615_mcu_set_wmm(dev, wmm_queue_map[queue], params);
+       queue += mvif->wmm_idx * MT7615_MAX_WMM_SETS;
+
+       return mt7615_mcu_set_wmm(dev, queue, params);
 }
 
 static void mt7615_configure_filter(struct ieee80211_hw *hw,
index a014f7b1782545c8277aa25fda2d7c6bd6725ffa..da4d0a5b8e325a9381b98c31fffbb45c99071ff2 100644 (file)
@@ -10,6 +10,7 @@
 #include "regs.h"
 
 #define MT7615_MAX_INTERFACES          4
+#define MT7615_MAX_WMM_SETS            4
 #define MT7615_WTBL_SIZE               128
 #define MT7615_WTBL_RESERVED           (MT7615_WTBL_SIZE - 1)
 #define MT7615_WTBL_STA                        (MT7615_WTBL_RESERVED - \