blob: 5a6e92f55fd2ff43e8ab7f8e87bcd02442c12d45 [file] [log] [blame]
developerad9333b2023-05-22 15:16:16 +08001From 0ec1b67bab3908a2990b9698093f5307535ee697 Mon Sep 17 00:00:00 2001
developer6a1998b2022-12-08 18:09:45 +08002From: Peter Chiu <chui-hao.chiu@mediatek.com>
3Date: Sun, 24 Apr 2022 10:07:00 +0800
developerad9333b2023-05-22 15:16:16 +08004Subject: [PATCH 1015/1033] wifi: mt76: mt7915: init rssi in WTBL when add
developer78848c62023-04-06 13:44:00 +08005 station
developer6a1998b2022-12-08 18:09:45 +08006
7---
8 mt7915/main.c | 4 ++++
9 1 file changed, 4 insertions(+)
10
11diff --git a/mt7915/main.c b/mt7915/main.c
developerad9333b2023-05-22 15:16:16 +080012index a9cbaed..972cd1a 100644
developer6a1998b2022-12-08 18:09:45 +080013--- a/mt7915/main.c
14+++ b/mt7915/main.c
developerad9333b2023-05-22 15:16:16 +080015@@ -692,6 +692,7 @@ int mt7915_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
developerb8853042023-02-17 11:50:45 +080016 struct mt7915_phy *phy = ext_phy ? mt7915_ext_phy(dev) : &dev->phy;
developer6a1998b2022-12-08 18:09:45 +080017 #endif
18 int ret, idx;
19+ u32 addr;
20
21 idx = mt76_wcid_alloc(dev->mt76.wcid_mask, MT7915_WTBL_STA);
22 if (idx < 0)
developerad9333b2023-05-22 15:16:16 +080023@@ -716,6 +717,9 @@ int mt7915_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
developer6a1998b2022-12-08 18:09:45 +080024 if (ret)
25 return ret;
26
27+ addr = mt7915_mac_wtbl_lmac_addr(dev, msta->wcid.idx, 30);
28+ mt76_rmw_field(dev, addr, GENMASK(7, 0), 0xa0);
29+
30 #ifdef CONFIG_MTK_VENDOR
31 mt7915_vendor_amnt_sta_remove(mvif->phy, sta);
32 #endif
33--
developera43cc482023-04-17 15:57:28 +0800342.18.0
developer6a1998b2022-12-08 18:09:45 +080035