mt7996_mac_write_txwi_80211(dev, txwi, skb, key);
 
        if (txwi[1] & cpu_to_le32(MT_TXD1_FIXED_RATE)) {
+               struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
+               bool mcast = ieee80211_is_data(hdr->frame_control) &&
+                            is_multicast_ether_addr(hdr->addr1);
                u8 idx = mvif->basic_rates_idx;
 
+               if (mcast && mvif->mcast_rates_idx)
+                       idx = mvif->mcast_rates_idx;
+
                txwi[6] |= FIELD_PREP(MT_TXD6_TX_RATE, idx);
                txwi[3] |= cpu_to_le32(MT_TXD3_BA_DISABLE);
        }
 
 }
 
 static u8
-mt7996_get_rates_table(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
+mt7996_get_rates_table(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
+                      bool mcast)
 {
        struct mt7996_vif *mvif = (struct mt7996_vif *)vif->drv_priv;
        struct mt76_phy *mphy = hw->priv;
        u16 rate;
        u8 i, idx;
 
-       rate = mt76_connac2_mac_tx_rate_val(mphy, vif, false, false);
+       rate = mt76_connac2_mac_tx_rate_val(mphy, vif, false, mcast);
 
        idx = FIELD_GET(MT_TX_RATE_IDX, rate);
        for (i = 0; i < ARRAY_SIZE(mt76_rates); i++)
                }
        }
 
+       if (changed & BSS_CHANGED_MCAST_RATE)
+               mvif->mcast_rates_idx =
+                       mt7996_get_rates_table(hw, vif, true);
+
        if (changed & BSS_CHANGED_BASIC_RATES)
-               mvif->basic_rates_idx = mt7996_get_rates_table(hw, vif);
+               mvif->basic_rates_idx =
+                       mt7996_get_rates_table(hw, vif, false);
 
        if (changed & BSS_CHANGED_BEACON_ENABLED && info->enable_beacon) {
                mt7996_mcu_add_bss_info(phy, vif, true);
 
        struct cfg80211_chan_def *chandef = &phy->mt76->chandef;
        enum nl80211_band band = chandef->chan->band;
        struct tlv *tlv;
-       u8 idx = mvif->basic_rates_idx;
+       u8 idx = mvif->mcast_rates_idx ?
+                mvif->mcast_rates_idx : mvif->basic_rates_idx;
 
        tlv = mt7996_mcu_add_uni_tlv(skb, UNI_BSS_INFO_RATE, sizeof(*bmc));