wifi: mt76: mt7921: move mac shared code in mt792x-lib module
authorLorenzo Bianconi <lorenzo@kernel.org>
Wed, 28 Jun 2023 07:05:58 +0000 (15:05 +0800)
committerFelix Fietkau <nbd@nbd.name>
Wed, 26 Jul 2023 09:36:12 +0000 (11:36 +0200)
Reduce duplicated code moving mac shared code in mt792x-lib module.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Deren Wu <deren.wu@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7921/debugfs.c
drivers/net/wireless/mediatek/mt76/mt7921/mac.c
drivers/net/wireless/mediatek/mt76/mt7921/main.c
drivers/net/wireless/mediatek/mt76/mt7921/mcu.c
drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h
drivers/net/wireless/mediatek/mt76/mt7921/pci.c
drivers/net/wireless/mediatek/mt76/mt7921/sdio.c
drivers/net/wireless/mediatek/mt76/mt7921/usb.c
drivers/net/wireless/mediatek/mt76/mt792x.h
drivers/net/wireless/mediatek/mt76/mt792x_mac.c

index 59920cffee6a7e917eccc9a2080003d89aaec2dc..7d5211b99340ba91d8b04c083bd82c6ddf398322 100644 (file)
@@ -396,7 +396,7 @@ static int mt7921_chip_reset(void *data, u64 val)
        switch (val) {
        case 1:
                /* Reset wifisys directly. */
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
                break;
        default:
                /* Collect the core dump before reset wifisys. */
index 40f006664ad7deb24f61b0befbc2b14e78882d5f..70382194825ac31d9a2ac9e2d0570a6135d0ff51 100644 (file)
@@ -29,29 +29,6 @@ static u32 mt7921_mac_wtbl_lmac_addr(int idx, u8 offset)
        return MT_WTBL_LMAC_OFFS(idx, 0) + offset * 4;
 }
 
-static struct mt76_wcid *mt7921_rx_get_wcid(struct mt792x_dev *dev,
-                                           u16 idx, bool unicast)
-{
-       struct mt792x_sta *sta;
-       struct mt76_wcid *wcid;
-
-       if (idx >= ARRAY_SIZE(dev->mt76.wcid))
-               return NULL;
-
-       wcid = rcu_dereference(dev->mt76.wcid[idx]);
-       if (unicast || !wcid)
-               return wcid;
-
-       if (!wcid->sta)
-               return NULL;
-
-       sta = container_of(wcid, struct mt792x_sta, wcid);
-       if (!sta->vif)
-               return NULL;
-
-       return &sta->vif->sta.wcid;
-}
-
 static void mt7921_mac_sta_poll(struct mt792x_dev *dev)
 {
        static const u8 ac_to_tid[] = {
@@ -184,52 +161,6 @@ static void mt7921_mac_sta_poll(struct mt792x_dev *dev)
        }
 }
 
-static void
-mt7921_get_status_freq_info(struct mt792x_dev *dev, struct mt76_phy *mphy,
-                           struct mt76_rx_status *status, u8 chfreq)
-{
-       if (chfreq > 180) {
-               status->band = NL80211_BAND_6GHZ;
-               chfreq = (chfreq - 181) * 4 + 1;
-       } else if (chfreq > 14) {
-               status->band = NL80211_BAND_5GHZ;
-       } else {
-               status->band = NL80211_BAND_2GHZ;
-       }
-       status->freq = ieee80211_channel_to_frequency(chfreq, status->band);
-}
-
-static void
-mt7921_mac_rssi_iter(void *priv, u8 *mac, struct ieee80211_vif *vif)
-{
-       struct sk_buff *skb = priv;
-       struct mt76_rx_status *status = (struct mt76_rx_status *)skb->cb;
-       struct mt792x_vif *mvif = (struct mt792x_vif *)vif->drv_priv;
-       struct ieee80211_hdr *hdr = mt76_skb_get_hdr(skb);
-
-       if (status->signal > 0)
-               return;
-
-       if (!ether_addr_equal(vif->addr, hdr->addr1))
-               return;
-
-       ewma_rssi_add(&mvif->rssi, -status->signal);
-}
-
-static void
-mt7921_mac_assoc_rssi(struct mt792x_dev *dev, struct sk_buff *skb)
-{
-       struct ieee80211_hdr *hdr = mt76_skb_get_hdr(skb);
-
-       if (!ieee80211_is_assoc_resp(hdr->frame_control) &&
-           !ieee80211_is_auth(hdr->frame_control))
-               return;
-
-       ieee80211_iterate_active_interfaces_atomic(mt76_hw(dev),
-               IEEE80211_IFACE_ITER_RESUME_ALL,
-               mt7921_mac_rssi_iter, skb);
-}
-
 static int
 mt7921_mac_fill_rx(struct mt792x_dev *dev, struct sk_buff *skb)
 {
@@ -276,7 +207,7 @@ mt7921_mac_fill_rx(struct mt792x_dev *dev, struct sk_buff *skb)
        chfreq = FIELD_GET(MT_RXD3_NORMAL_CH_FREQ, rxd3);
        unicast = FIELD_GET(MT_RXD3_NORMAL_ADDR_TYPE, rxd3) == MT_RXD3_NORMAL_U2M;
        idx = FIELD_GET(MT_RXD1_NORMAL_WLAN_IDX, rxd1);
-       status->wcid = mt7921_rx_get_wcid(dev, idx, unicast);
+       status->wcid = mt792x_rx_get_wcid(dev, idx, unicast);
 
        if (status->wcid) {
                msta = container_of(status->wcid, struct mt792x_sta, wcid);
@@ -287,7 +218,7 @@ mt7921_mac_fill_rx(struct mt792x_dev *dev, struct sk_buff *skb)
                spin_unlock_bh(&dev->mt76.sta_poll_lock);
        }
 
-       mt7921_get_status_freq_info(dev, mphy, status, chfreq);
+       mt792x_get_status_freq_info(status, chfreq);
 
        switch (status->band) {
        case NL80211_BAND_5GHZ:
@@ -496,7 +427,7 @@ mt7921_mac_fill_rx(struct mt792x_dev *dev, struct sk_buff *skb)
                status->flag |= RX_FLAG_8023;
        }
 
-       mt7921_mac_assoc_rssi(dev, skb);
+       mt792x_mac_assoc_rssi(dev, skb);
 
        if (rxv && mode >= MT_PHY_TYPE_HE_SU && !(status->flag & RX_FLAG_8023))
                mt76_connac2_mac_decode_he_radiotap(&dev->mt76, skb, rxv, mode);
@@ -699,81 +630,6 @@ void mt7921_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
 }
 EXPORT_SYMBOL_GPL(mt7921_queue_rx_skb);
 
-void mt7921_mac_reset_counters(struct mt792x_phy *phy)
-{
-       struct mt792x_dev *dev = phy->dev;
-       int i;
-
-       for (i = 0; i < 4; i++) {
-               mt76_rr(dev, MT_TX_AGG_CNT(0, i));
-               mt76_rr(dev, MT_TX_AGG_CNT2(0, i));
-       }
-
-       dev->mt76.phy.survey_time = ktime_get_boottime();
-       memset(phy->mt76->aggr_stats, 0, sizeof(phy->mt76->aggr_stats));
-
-       /* reset airtime counters */
-       mt76_rr(dev, MT_MIB_SDR9(0));
-       mt76_rr(dev, MT_MIB_SDR36(0));
-       mt76_rr(dev, MT_MIB_SDR37(0));
-
-       mt76_set(dev, MT_WF_RMAC_MIB_TIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
-       mt76_set(dev, MT_WF_RMAC_MIB_AIRTIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
-}
-
-static u8
-mt7921_phy_get_nf(struct mt792x_phy *phy, int idx)
-{
-       return 0;
-}
-
-static void
-mt7921_phy_update_channel(struct mt76_phy *mphy, int idx)
-{
-       struct mt792x_dev *dev = container_of(mphy->dev, struct mt792x_dev, mt76);
-       struct mt792x_phy *phy = (struct mt792x_phy *)mphy->priv;
-       struct mt76_channel_state *state;
-       u64 busy_time, tx_time, rx_time, obss_time;
-       int nf;
-
-       busy_time = mt76_get_field(dev, MT_MIB_SDR9(idx),
-                                  MT_MIB_SDR9_BUSY_MASK);
-       tx_time = mt76_get_field(dev, MT_MIB_SDR36(idx),
-                                MT_MIB_SDR36_TXTIME_MASK);
-       rx_time = mt76_get_field(dev, MT_MIB_SDR37(idx),
-                                MT_MIB_SDR37_RXTIME_MASK);
-       obss_time = mt76_get_field(dev, MT_WF_RMAC_MIB_AIRTIME14(idx),
-                                  MT_MIB_OBSSTIME_MASK);
-
-       nf = mt7921_phy_get_nf(phy, idx);
-       if (!phy->noise)
-               phy->noise = nf << 4;
-       else if (nf)
-               phy->noise += nf - (phy->noise >> 4);
-
-       state = mphy->chan_state;
-       state->cc_busy += busy_time;
-       state->cc_tx += tx_time;
-       state->cc_rx += rx_time + obss_time;
-       state->cc_bss_rx += rx_time;
-       state->noise = -(phy->noise >> 4);
-}
-
-void mt7921_update_channel(struct mt76_phy *mphy)
-{
-       struct mt792x_dev *dev = container_of(mphy->dev, struct mt792x_dev, mt76);
-
-       if (mt76_connac_pm_wake(mphy, &dev->pm))
-               return;
-
-       mt7921_phy_update_channel(mphy, 0);
-       /* reset obss airtime */
-       mt76_set(dev, MT_WF_RMAC_MIB_TIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
-
-       mt76_connac_power_save_sched(mphy, &dev->pm);
-}
-EXPORT_SYMBOL_GPL(mt7921_update_channel);
-
 static void
 mt7921_vif_connect_iter(void *priv, u8 *mac,
                        struct ieee80211_vif *vif)
@@ -843,24 +699,6 @@ void mt7921_mac_reset_work(struct work_struct *work)
        mt76_connac_power_save_sched(&dev->mt76.phy, pm);
 }
 
-void mt7921_reset(struct mt76_dev *mdev)
-{
-       struct mt792x_dev *dev = container_of(mdev, struct mt792x_dev, mt76);
-       struct mt76_connac_pm *pm = &dev->pm;
-
-       if (!dev->hw_init_done)
-               return;
-
-       if (dev->hw_full_reset)
-               return;
-
-       if (pm->suspended)
-               return;
-
-       queue_work(dev->mt76.wq, &dev->reset_work);
-}
-EXPORT_SYMBOL_GPL(mt7921_reset);
-
 void mt7921_pm_wake_work(struct work_struct *work)
 {
        struct mt792x_dev *dev;
@@ -975,7 +813,7 @@ void mt7921_coredump_work(struct work_struct *work)
                dev_coredumpv(dev->mt76.dev, dump, MT76_CONNAC_COREDUMP_SZ,
                              GFP_KERNEL);
 
-       mt7921_reset(&dev->mt76);
+       mt792x_reset(&dev->mt76);
 }
 
 /* usb_sdio */
index 2239688075169a270fe4786f3157d341f6aab5db..73f29fed216fe3576d7b48d32051702bcbe2a4d8 100644 (file)
@@ -240,7 +240,7 @@ int __mt7921_start(struct mt792x_phy *phy)
        if (err)
                return err;
 
-       mt7921_mac_reset_counters(phy);
+       mt792x_mac_reset_counters(phy);
        set_bit(MT76_STATE_RUNNING, &mphy->state);
 
        ieee80211_queue_delayed_work(mphy->hw, &mphy->mac_work,
@@ -454,7 +454,7 @@ static int mt7921_set_channel(struct mt792x_phy *phy)
 
        mt792x_mac_set_timeing(phy);
 
-       mt7921_mac_reset_counters(phy);
+       mt792x_mac_reset_counters(phy);
        phy->noise = 0;
 
 out:
index 3dd9ff5e466b98464608d3673a5d7917e472b15a..ed02fa48841cab34a9cce859a2e9164f70f5ec98 100644 (file)
@@ -25,7 +25,7 @@ int mt7921_mcu_parse_response(struct mt76_dev *mdev, int cmd,
        if (!skb) {
                dev_err(mdev->dev, "Message %08x (seq %d) timeout\n",
                        cmd, seq);
-               mt7921_reset(mdev);
+               mt792x_reset(mdev);
 
                return -ETIMEDOUT;
        }
@@ -958,7 +958,7 @@ out:
        mutex_unlock(&pm->mutex);
 
        if (err)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
@@ -980,7 +980,7 @@ out:
        mutex_unlock(&pm->mutex);
 
        if (err)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
index 4722952bb846dbaa7ee968afff77510ed4e0be3b..31fa51b8695e12da9f8b417eae3a41c201995ab2 100644 (file)
@@ -282,7 +282,6 @@ mt7921_skb_add_usb_sdio_hdr(struct mt792x_dev *dev, struct sk_buff *skb,
 
 void mt7921_stop(struct ieee80211_hw *hw);
 int mt7921_mac_init(struct mt792x_dev *dev);
-void mt7921_mac_reset_counters(struct mt792x_phy *phy);
 bool mt7921_mac_wtbl_update(struct mt792x_dev *dev, int idx, u32 mask);
 int mt7921_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
                       struct ieee80211_sta *sta);
@@ -291,7 +290,6 @@ void mt7921_mac_sta_assoc(struct mt76_dev *mdev, struct ieee80211_vif *vif,
 void mt7921_mac_sta_remove(struct mt76_dev *mdev, struct ieee80211_vif *vif,
                           struct ieee80211_sta *sta);
 void mt7921_mac_reset_work(struct work_struct *work);
-void mt7921_reset(struct mt76_dev *mdev);
 int mt7921e_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
                           enum mt76_txq_id qid, struct mt76_wcid *wcid,
                           struct ieee80211_sta *sta,
@@ -302,7 +300,6 @@ void mt7921_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
                         struct sk_buff *skb, u32 *info);
 void mt7921_stats_work(struct work_struct *work);
 void mt7921_set_stream_he_caps(struct mt792x_phy *phy);
-void mt7921_update_channel(struct mt76_phy *mphy);
 int mt7921_init_debugfs(struct mt792x_dev *dev);
 
 int mt7921_mcu_set_beacon_filter(struct mt792x_dev *dev,
index 4227b5028a6ffd83907356493648d48ada61c9bd..67eaa6232a02b391f63f256014fe590267fae924 100644 (file)
@@ -245,7 +245,7 @@ static int mt7921_pci_probe(struct pci_dev *pdev,
                .sta_add = mt7921_mac_sta_add,
                .sta_assoc = mt7921_mac_sta_assoc,
                .sta_remove = mt7921_mac_sta_remove,
-               .update_survey = mt7921_update_channel,
+               .update_survey = mt792x_update_channel,
        };
        static const struct mt792x_hif_ops mt7921_pcie_ops = {
                .init_reset = mt7921e_init_reset,
@@ -450,7 +450,7 @@ restore_suspend:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
@@ -500,7 +500,7 @@ failed:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
index b438947c2bd8b17292dc4ce36ecae0a20d3ddeff..f0117ac3459451f4958954c8fc82d847ea59499e 100644 (file)
@@ -102,7 +102,7 @@ static int mt7921s_probe(struct sdio_func *func,
                .sta_add = mt7921_mac_sta_add,
                .sta_assoc = mt7921_mac_sta_assoc,
                .sta_remove = mt7921_mac_sta_remove,
-               .update_survey = mt7921_update_channel,
+               .update_survey = mt792x_update_channel,
        };
        static const struct mt76_bus_ops mt7921s_ops = {
                .rr = mt76s_rr,
@@ -269,7 +269,7 @@ restore_suspend:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
@@ -302,7 +302,7 @@ failed:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
index 9d54be3d3d0389cece61a38a85330d6e5dc732be..3bf902cacd28422d7dfbe598210e1fcbea4c83dd 100644 (file)
@@ -189,7 +189,7 @@ static int mt7921u_probe(struct usb_interface *usb_intf,
                .sta_add = mt7921_mac_sta_add,
                .sta_assoc = mt7921_mac_sta_assoc,
                .sta_remove = mt7921_mac_sta_remove,
-               .update_survey = mt7921_update_channel,
+               .update_survey = mt792x_update_channel,
        };
        static const struct mt792x_hif_ops hif_ops = {
                .mcu_init = mt7921u_mcu_init,
@@ -322,7 +322,7 @@ failed:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
@@ -364,7 +364,7 @@ failed:
        pm->suspended = false;
 
        if (err < 0)
-               mt7921_reset(&dev->mt76);
+               mt792x_reset(&dev->mt76);
 
        return err;
 }
index 83236a6c300e4bd6361aab08d3c80e2ade67b6e3..f0f9fb3fd9703d6979bb664e3c68bc31e05f7c6a 100644 (file)
@@ -155,11 +155,31 @@ mt792x_hw_phy(struct ieee80211_hw *hw)
        return phy->priv;
 }
 
+static inline void
+mt792x_get_status_freq_info(struct mt76_rx_status *status, u8 chfreq)
+{
+       if (chfreq > 180) {
+               status->band = NL80211_BAND_6GHZ;
+               chfreq = (chfreq - 181) * 4 + 1;
+       } else if (chfreq > 14) {
+               status->band = NL80211_BAND_5GHZ;
+       } else {
+               status->band = NL80211_BAND_2GHZ;
+       }
+       status->freq = ieee80211_channel_to_frequency(chfreq, status->band);
+}
+
 #define mt792x_mutex_acquire(dev)      \
        mt76_connac_mutex_acquire(&(dev)->mt76, &(dev)->pm)
 #define mt792x_mutex_release(dev)      \
        mt76_connac_mutex_release(&(dev)->mt76, &(dev)->pm)
 
+void mt792x_reset(struct mt76_dev *mdev);
+void mt792x_update_channel(struct mt76_phy *mphy);
+void mt792x_mac_reset_counters(struct mt792x_phy *phy);
+void mt792x_mac_assoc_rssi(struct mt792x_dev *dev, struct sk_buff *skb);
+struct mt76_wcid *mt792x_rx_get_wcid(struct mt792x_dev *dev, u16 idx,
+                                    bool unicast);
 void mt792x_mac_update_mib_stats(struct mt792x_phy *phy);
 void mt792x_mac_set_timeing(struct mt792x_phy *phy);
 void mt792x_mac_work(struct work_struct *work);
index 862cca816aae8e845b36362c69daf274a0ff4682..130b4352cf92dd85e46897674311d5ea7c8acb07 100644 (file)
@@ -134,3 +134,151 @@ void mt792x_mac_update_mib_stats(struct mt792x_phy *phy)
        }
 }
 EXPORT_SYMBOL_GPL(mt792x_mac_update_mib_stats);
+
+struct mt76_wcid *mt792x_rx_get_wcid(struct mt792x_dev *dev, u16 idx,
+                                    bool unicast)
+{
+       struct mt792x_sta *sta;
+       struct mt76_wcid *wcid;
+
+       if (idx >= ARRAY_SIZE(dev->mt76.wcid))
+               return NULL;
+
+       wcid = rcu_dereference(dev->mt76.wcid[idx]);
+       if (unicast || !wcid)
+               return wcid;
+
+       if (!wcid->sta)
+               return NULL;
+
+       sta = container_of(wcid, struct mt792x_sta, wcid);
+       if (!sta->vif)
+               return NULL;
+
+       return &sta->vif->sta.wcid;
+}
+EXPORT_SYMBOL_GPL(mt792x_rx_get_wcid);
+
+static void
+mt792x_mac_rssi_iter(void *priv, u8 *mac, struct ieee80211_vif *vif)
+{
+       struct sk_buff *skb = priv;
+       struct mt76_rx_status *status = (struct mt76_rx_status *)skb->cb;
+       struct mt792x_vif *mvif = (struct mt792x_vif *)vif->drv_priv;
+       struct ieee80211_hdr *hdr = mt76_skb_get_hdr(skb);
+
+       if (status->signal > 0)
+               return;
+
+       if (!ether_addr_equal(vif->addr, hdr->addr1))
+               return;
+
+       ewma_rssi_add(&mvif->rssi, -status->signal);
+}
+
+void mt792x_mac_assoc_rssi(struct mt792x_dev *dev, struct sk_buff *skb)
+{
+       struct ieee80211_hdr *hdr = mt76_skb_get_hdr(skb);
+
+       if (!ieee80211_is_assoc_resp(hdr->frame_control) &&
+           !ieee80211_is_auth(hdr->frame_control))
+               return;
+
+       ieee80211_iterate_active_interfaces_atomic(mt76_hw(dev),
+               IEEE80211_IFACE_ITER_RESUME_ALL,
+               mt792x_mac_rssi_iter, skb);
+}
+EXPORT_SYMBOL_GPL(mt792x_mac_assoc_rssi);
+
+void mt792x_mac_reset_counters(struct mt792x_phy *phy)
+{
+       struct mt792x_dev *dev = phy->dev;
+       int i;
+
+       for (i = 0; i < 4; i++) {
+               mt76_rr(dev, MT_TX_AGG_CNT(0, i));
+               mt76_rr(dev, MT_TX_AGG_CNT2(0, i));
+       }
+
+       dev->mt76.phy.survey_time = ktime_get_boottime();
+       memset(phy->mt76->aggr_stats, 0, sizeof(phy->mt76->aggr_stats));
+
+       /* reset airtime counters */
+       mt76_rr(dev, MT_MIB_SDR9(0));
+       mt76_rr(dev, MT_MIB_SDR36(0));
+       mt76_rr(dev, MT_MIB_SDR37(0));
+
+       mt76_set(dev, MT_WF_RMAC_MIB_TIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
+       mt76_set(dev, MT_WF_RMAC_MIB_AIRTIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
+}
+EXPORT_SYMBOL_GPL(mt792x_mac_reset_counters);
+
+static u8
+mt792x_phy_get_nf(struct mt792x_phy *phy, int idx)
+{
+       return 0;
+}
+
+static void
+mt792x_phy_update_channel(struct mt76_phy *mphy, int idx)
+{
+       struct mt792x_dev *dev = container_of(mphy->dev, struct mt792x_dev, mt76);
+       struct mt792x_phy *phy = (struct mt792x_phy *)mphy->priv;
+       struct mt76_channel_state *state;
+       u64 busy_time, tx_time, rx_time, obss_time;
+       int nf;
+
+       busy_time = mt76_get_field(dev, MT_MIB_SDR9(idx),
+                                  MT_MIB_SDR9_BUSY_MASK);
+       tx_time = mt76_get_field(dev, MT_MIB_SDR36(idx),
+                                MT_MIB_SDR36_TXTIME_MASK);
+       rx_time = mt76_get_field(dev, MT_MIB_SDR37(idx),
+                                MT_MIB_SDR37_RXTIME_MASK);
+       obss_time = mt76_get_field(dev, MT_WF_RMAC_MIB_AIRTIME14(idx),
+                                  MT_MIB_OBSSTIME_MASK);
+
+       nf = mt792x_phy_get_nf(phy, idx);
+       if (!phy->noise)
+               phy->noise = nf << 4;
+       else if (nf)
+               phy->noise += nf - (phy->noise >> 4);
+
+       state = mphy->chan_state;
+       state->cc_busy += busy_time;
+       state->cc_tx += tx_time;
+       state->cc_rx += rx_time + obss_time;
+       state->cc_bss_rx += rx_time;
+       state->noise = -(phy->noise >> 4);
+}
+
+void mt792x_update_channel(struct mt76_phy *mphy)
+{
+       struct mt792x_dev *dev = container_of(mphy->dev, struct mt792x_dev, mt76);
+
+       if (mt76_connac_pm_wake(mphy, &dev->pm))
+               return;
+
+       mt792x_phy_update_channel(mphy, 0);
+       /* reset obss airtime */
+       mt76_set(dev, MT_WF_RMAC_MIB_TIME0(0), MT_WF_RMAC_MIB_RXTIME_CLR);
+       mt76_connac_power_save_sched(mphy, &dev->pm);
+}
+EXPORT_SYMBOL_GPL(mt792x_update_channel);
+
+void mt792x_reset(struct mt76_dev *mdev)
+{
+       struct mt792x_dev *dev = container_of(mdev, struct mt792x_dev, mt76);
+       struct mt76_connac_pm *pm = &dev->pm;
+
+       if (!dev->hw_init_done)
+               return;
+
+       if (dev->hw_full_reset)
+               return;
+
+       if (pm->suspended)
+               return;
+
+       queue_work(dev->mt76.wq, &dev->reset_work);
+}
+EXPORT_SYMBOL_GPL(mt792x_reset);