mt76: mt7915: remove SCS feature
authorRyder Lee <ryder.lee@mediatek.com>
Tue, 12 Apr 2022 22:27:24 +0000 (06:27 +0800)
committerFelix Fietkau <nbd@nbd.name>
Fri, 13 May 2022 07:39:34 +0000 (09:39 +0200)
SCS is obsoleted and no longer used, so remove it.

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

index c3c9333..561fb03 100644 (file)
@@ -974,7 +974,6 @@ enum {
        MCU_EXT_CMD_SET_RDD_PATTERN = 0x7d,
        MCU_EXT_CMD_MWDS_SUPPORT = 0x80,
        MCU_EXT_CMD_SET_SER_TRIGGER = 0x81,
-       MCU_EXT_CMD_SCS_CTRL = 0x82,
        MCU_EXT_CMD_TWT_AGRT_UPDATE = 0x94,
        MCU_EXT_CMD_FW_DBG_CTRL = 0x95,
        MCU_EXT_CMD_OFFCH_SCAN_CTRL = 0x9a,
index 9b8defb..5177b19 100644 (file)
@@ -42,10 +42,6 @@ static int mt7915_start(struct ieee80211_hw *hw)
                if (ret)
                        goto out;
 
-               ret = mt7915_mcu_set_scs(dev, 0, true);
-               if (ret)
-                       goto out;
-
                mt7915_mac_enable_nf(dev, 0);
        }
 
@@ -58,10 +54,6 @@ static int mt7915_start(struct ieee80211_hw *hw)
                if (ret)
                        goto out;
 
-               ret = mt7915_mcu_set_scs(dev, 1, true);
-               if (ret)
-                       goto out;
-
                mt7915_mac_enable_nf(dev, 1);
        }
 
index 6bd8e75..98a3b22 100644 (file)
@@ -2589,22 +2589,6 @@ int mt7915_mcu_set_mac(struct mt7915_dev *dev, int band,
                                 &req_mac, sizeof(req_mac), true);
 }
 
-int mt7915_mcu_set_scs(struct mt7915_dev *dev, u8 band, bool enable)
-{
-       struct {
-               __le32 cmd;
-               u8 band;
-               u8 enable;
-       } __packed req = {
-               .cmd = cpu_to_le32(SCS_ENABLE),
-               .band = band,
-               .enable = enable + 1,
-       };
-
-       return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(SCS_CTRL), &req,
-                                sizeof(req), false);
-}
-
 int mt7915_mcu_update_edca(struct mt7915_dev *dev, void *param)
 {
        struct mt7915_mcu_tx *req = (struct mt7915_mcu_tx *)param;
index 960072a..064d33e 100644 (file)
@@ -304,16 +304,6 @@ enum mcu_mmps_mode {
        MCU_MMPS_DISABLE,
 };
 
-enum {
-       SCS_SEND_DATA,
-       SCS_SET_MANUAL_PD_TH,
-       SCS_CONFIG,
-       SCS_ENABLE,
-       SCS_SHOW_INFO,
-       SCS_GET_GLO_ADDR,
-       SCS_GET_GLO_ADDR_EVENT,
-};
-
 struct bss_info_bmc_rate {
        __le16 tag;
        __le16 len;
index ca129e5..419ff08 100644 (file)
@@ -486,7 +486,6 @@ int mt7915_mcu_set_mac(struct mt7915_dev *dev, int band, bool enable,
                       bool hdr_trans);
 int mt7915_mcu_set_test_param(struct mt7915_dev *dev, u8 param, bool test_mode,
                              u8 en);
-int mt7915_mcu_set_scs(struct mt7915_dev *dev, u8 band, bool enable);
 int mt7915_mcu_set_ser(struct mt7915_dev *dev, u8 action, u8 set, u8 band);
 int mt7915_mcu_set_sku_en(struct mt7915_phy *phy, bool enable);
 int mt7915_mcu_set_txpower_sku(struct mt7915_phy *phy);