blob: 45bdef410dfb362c4d9c6e165fab705bdbf862af [file] [log] [blame]
developer56c1c852022-07-01 18:26:42 +08001From ab47a5638c81b4e79bce84ea0c67cf5e89820e3b Mon Sep 17 00:00:00 2001
2From: Shayne Chen <shayne.chen@mediatek.com>
3Date: Wed, 13 Jul 2022 10:43:16 +0800
4Subject: [PATCH] mt76: mt7915: add spatial extension index support
5
6Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
7---
8 .../net/wireless/mediatek/mt76/mt76_connac.h | 11 ++++++++
9 .../wireless/mediatek/mt76/mt76_connac_mac.c | 11 +++++---
10 .../wireless/mediatek/mt76/mt76_connac_mcu.h | 2 +-
11 .../net/wireless/mediatek/mt76/mt7915/main.c | 3 ---
12 .../net/wireless/mediatek/mt76/mt7915/mcu.c | 26 +++++++++++++++++--
13 .../net/wireless/mediatek/mt76/mt7915/mcu.h | 1 +
14 .../wireless/mediatek/mt76/mt7915/testmode.c | 9 +++----
15 7 files changed, 48 insertions(+), 15 deletions(-)
16
17diff --git a/mt76_connac.h b/mt76_connac.h
18index 9070162c..5a9c1c97 100644
19--- a/mt76_connac.h
20+++ b/mt76_connac.h
21@@ -255,6 +255,17 @@ mt76_connac_txwi_to_txp(struct mt76_dev *dev, struct mt76_txwi_cache *t)
22 return (void *)(txwi + MT_TXD_SIZE);
23 }
24
25+static inline u8 mt76_connac_spe_idx(u8 antenna_mask)
26+{
27+ static const u8 ant_to_spe[] = {0, 0, 1, 0, 3, 2, 4, 0,
28+ 9, 8, 6, 10, 16, 12, 18, 0};
29+
30+ if (antenna_mask >= sizeof(ant_to_spe))
31+ return 0;
32+
33+ return ant_to_spe[antenna_mask];
34+}
35+
36 int mt76_connac_pm_wake(struct mt76_phy *phy, struct mt76_connac_pm *pm);
37 void mt76_connac_power_save_sched(struct mt76_phy *phy,
38 struct mt76_connac_pm *pm);
39diff --git a/mt76_connac_mac.c b/mt76_connac_mac.c
40index d83ed593..33abe5d6 100644
41--- a/mt76_connac_mac.c
42+++ b/mt76_connac_mac.c
43@@ -402,9 +402,6 @@ mt76_connac2_mac_write_txwi_80211(struct mt76_dev *dev, __le32 *txwi,
44 if (ieee80211_is_beacon(fc)) {
45 txwi[3] &= ~cpu_to_le32(MT_TXD3_SW_POWER_MGMT);
46 txwi[3] |= cpu_to_le32(MT_TXD3_REM_TX_COUNT);
47- if (!is_mt7921(dev))
48- txwi[7] |= cpu_to_le32(FIELD_PREP(MT_TXD7_SPE_IDX,
49- 0x18));
50 }
51
52 if (info->flags & IEEE80211_TX_CTL_INJECTED) {
53@@ -531,6 +528,14 @@ void mt76_connac2_mac_write_txwi(struct mt76_dev *dev, __le32 *txwi,
54 val |= FIELD_PREP(MT_TXD6_TX_RATE, rate);
55 txwi[6] |= cpu_to_le32(val);
56 txwi[3] |= cpu_to_le32(MT_TXD3_BA_DISABLE);
57+
58+ if (!is_mt7921(dev)) {
59+ u8 spe_idx = mt76_connac_spe_idx(mphy->antenna_mask);
60+
61+ if (!spe_idx)
62+ spe_idx = 24 + ext_phy;
63+ txwi[7] |= cpu_to_le32(FIELD_PREP(MT_TXD7_SPE_IDX, spe_idx));
64+ }
65 }
66 }
67 EXPORT_SYMBOL_GPL(mt76_connac2_mac_write_txwi);
68diff --git a/mt76_connac_mcu.h b/mt76_connac_mcu.h
69index e94d6706..17e5213c 100644
70--- a/mt76_connac_mcu.h
71+++ b/mt76_connac_mcu.h
72@@ -572,7 +572,7 @@ struct sta_rec_ra_fixed {
73
74 struct sta_phy phy;
75
76- u8 spe_en;
77+ u8 spe_idx;
78 u8 short_preamble;
79 u8 is_5g;
80 u8 mmps_mode;
81diff --git a/mt7915/main.c b/mt7915/main.c
82index 39587992..080e935c 100644
83--- a/mt7915/main.c
84+++ b/mt7915/main.c
85@@ -957,9 +957,6 @@ mt7915_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
86 if (!tx_ant || tx_ant != rx_ant || ffs(tx_ant) > max_nss)
87 return -EINVAL;
88
89- if ((BIT(hweight8(tx_ant)) - 1) != tx_ant)
90- tx_ant = BIT(ffs(tx_ant) - 1) - 1;
91-
92 mutex_lock(&dev->mt76.mutex);
93
94 phy->mt76->antenna_mask = tx_ant;
95diff --git a/mt7915/mcu.c b/mt7915/mcu.c
96index 6587be2f..03a3c252 100644
97--- a/mt7915/mcu.c
98+++ b/mt7915/mcu.c
99@@ -1306,6 +1306,9 @@ int mt7915_mcu_set_fixed_rate_ctrl(struct mt7915_dev *dev,
100 case RATE_PARAM_MMPS_UPDATE:
101 ra->mmps_mode = mt7915_mcu_get_mmps_mode(sta->smps_mode);
102 break;
103+ case RATE_PARAM_SPE_UPDATE:
104+ ra->spe_idx = *(u8 *)data;
105+ break;
106 default:
107 break;
108 }
109@@ -1348,6 +1351,22 @@ int mt7915_mcu_add_smps(struct mt7915_dev *dev, struct ieee80211_vif *vif,
110 RATE_PARAM_MMPS_UPDATE);
111 }
112
113+static int
114+mt7915_mcu_set_spe_idx(struct mt7915_dev *dev, struct ieee80211_vif *vif,
115+ struct ieee80211_sta *sta, bool fixed_rate)
116+{
117+ struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv;
118+ struct mt76_phy *mphy = mvif->phy->mt76;
119+ u8 spe_idx = mt76_connac_spe_idx(mphy->antenna_mask);
120+
121+ if (!spe_idx && !fixed_rate &&
122+ mphy->antenna_mask == mphy->hw->wiphy->available_antennas_tx)
123+ spe_idx = 24 + mvif->mt76.band_idx;
124+
125+ return mt7915_mcu_set_fixed_rate_ctrl(dev, vif, sta, &spe_idx,
126+ RATE_PARAM_SPE_UPDATE);
127+}
128+
129 static int
130 mt7915_mcu_add_rate_ctrl_fixed(struct mt7915_dev *dev,
131 struct ieee80211_vif *vif,
132@@ -1393,7 +1412,7 @@ mt7915_mcu_add_rate_ctrl_fixed(struct mt7915_dev *dev,
133 mask->control[band].he_gi == GENMASK(7, 0) &&
134 mask->control[band].he_ltf == GENMASK(7, 0) &&
135 nrates != 1)
136- return 0;
137+ return mt7915_mcu_set_spe_idx(dev, vif, sta, false);
138
139 /* fixed single rate */
140 if (nrates == 1) {
141@@ -1433,7 +1452,7 @@ mt7915_mcu_add_rate_ctrl_fixed(struct mt7915_dev *dev,
142 return ret;
143 }
144
145- return 0;
146+ return mt7915_mcu_set_spe_idx(dev, vif, sta, true);
147 }
148
149 static void
150@@ -2649,6 +2668,9 @@ int mt7915_mcu_set_chan_info(struct mt7915_phy *phy, int cmd)
151 }
152 #endif
153
154+ if (mt76_connac_spe_idx(phy->mt76->antenna_mask))
155+ req.tx_streams_num = fls(phy->mt76->antenna_mask);
156+
157 if (cmd == MCU_EXT_CMD(SET_RX_PATH) ||
158 dev->mt76.hw->conf.flags & IEEE80211_CONF_MONITOR)
159 req.switch_reason = CH_SWITCH_NORMAL;
160diff --git a/mt7915/mcu.h b/mt7915/mcu.h
161index 110e4f36..ed949802 100644
162--- a/mt7915/mcu.h
163+++ b/mt7915/mcu.h
164@@ -395,6 +395,7 @@ enum {
165 RATE_PARAM_FIXED_MCS,
166 RATE_PARAM_FIXED_GI = 11,
167 RATE_PARAM_AUTO = 20,
168+ RATE_PARAM_SPE_UPDATE = 22,
169 };
170
171 #define RATE_CFG_MCS GENMASK(3, 0)
172diff --git a/mt7915/testmode.c b/mt7915/testmode.c
173index 123ceaf9..b2eee3f2 100644
174--- a/mt7915/testmode.c
175+++ b/mt7915/testmode.c
176@@ -473,8 +473,6 @@ mt7915_tm_update_channel(struct mt7915_phy *phy)
177 static void
178 mt7915_tm_set_tx_frames(struct mt7915_phy *phy, bool en)
179 {
180- static const u8 spe_idx_map[] = {0, 0, 1, 0, 3, 2, 4, 0,
181- 9, 8, 6, 10, 16, 12, 18, 0};
182 struct mt76_testmode_data *td = &phy->mt76->test;
183 struct mt7915_dev *dev = phy->dev;
184 struct ieee80211_tx_info *info;
185@@ -488,11 +486,10 @@ mt7915_tm_set_tx_frames(struct mt7915_phy *phy, bool en)
186 if (en) {
187 mt7915_tm_update_channel(phy);
188
189- if (td->tx_spe_idx) {
190+ if (td->tx_spe_idx)
191 phy->test.spe_idx = td->tx_spe_idx;
192- } else {
193- phy->test.spe_idx = spe_idx_map[td->tx_antenna_mask];
194- }
195+ else
196+ phy->test.spe_idx = mt76_connac_spe_idx(td->tx_antenna_mask);
197 }
198
199 mt7915_tm_set_tam_arb(phy, en,
200--
2012.25.1
202