developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1 | From 333678e670a88fe48c859af6dbb357405f084a52 Mon Sep 17 00:00:00 2001 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2 | From: Shayne Chen <shayne.chen@mediatek.com> |
| 3 | Date: Thu, 21 Apr 2022 15:43:19 +0800 |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 4 | Subject: [PATCH] wifi: mt76: testmode: additional supports |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 5 | |
| 6 | Signed-off-by: Shayne Chen <shayne.chen@mediatek.com> |
developer | f8871e8 | 2023-03-08 17:22:32 +0800 | [diff] [blame] | 7 | Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com> |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 8 | --- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 9 | dma.c | 3 +- |
| 10 | mac80211.c | 12 + |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 11 | mt76.h | 108 +++- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 12 | mt76_connac_mcu.c | 4 + |
| 13 | mt76_connac_mcu.h | 2 + |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 14 | mt7915/eeprom.c | 2 +- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 15 | mt7915/init.c | 2 +- |
developer | cf3c4c7 | 2023-01-31 15:21:28 +0800 | [diff] [blame] | 16 | mt7915/mac.c | 39 +- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 17 | mt7915/main.c | 2 +- |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 18 | mt7915/mcu.c | 22 +- |
developer | c07d01e | 2023-05-05 13:45:43 +0800 | [diff] [blame] | 19 | mt7915/mcu.h | 29 +- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 20 | mt7915/mmio.c | 2 + |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 21 | mt7915/mt7915.h | 16 +- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 22 | mt7915/regs.h | 3 + |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 23 | mt7915/testmode.c | 1222 ++++++++++++++++++++++++++++++++++++++++++--- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 24 | mt7915/testmode.h | 278 +++++++++++ |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 25 | testmode.c | 282 +++++++++-- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 26 | testmode.h | 75 +++ |
developer | 51e4042 | 2023-03-21 17:28:34 +0800 | [diff] [blame] | 27 | tools/fields.c | 84 +++- |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 28 | tx.c | 3 +- |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 29 | 20 files changed, 2024 insertions(+), 166 deletions(-) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 30 | |
| 31 | diff --git a/dma.c b/dma.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 32 | index c9d2671..fc92e39 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 33 | --- a/dma.c |
| 34 | +++ b/dma.c |
developer | a43cc48 | 2023-04-17 15:57:28 +0800 | [diff] [blame] | 35 | @@ -574,8 +574,7 @@ free: |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 36 | if (mt76_is_testmode_skb(dev, skb, &hw)) { |
| 37 | struct mt76_phy *phy = hw->priv; |
| 38 | |
| 39 | - if (tx_info.skb == phy->test.tx_skb) |
| 40 | - phy->test.tx_done--; |
| 41 | + phy->test.tx_done--; |
| 42 | } |
| 43 | #endif |
| 44 | |
| 45 | diff --git a/mac80211.c b/mac80211.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 46 | index eac90b3..ed1d659 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 47 | --- a/mac80211.c |
| 48 | +++ b/mac80211.c |
developer | a43cc48 | 2023-04-17 15:57:28 +0800 | [diff] [blame] | 49 | @@ -55,6 +55,13 @@ static const struct ieee80211_channel mt76_channels_5ghz[] = { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 50 | CHAN5G(60, 5300), |
| 51 | CHAN5G(64, 5320), |
| 52 | |
| 53 | + CHAN5G(68, 5340), |
| 54 | + CHAN5G(80, 5400), |
| 55 | + CHAN5G(84, 5420), |
| 56 | + CHAN5G(88, 5440), |
| 57 | + CHAN5G(92, 5460), |
| 58 | + CHAN5G(96, 5480), |
| 59 | + |
| 60 | CHAN5G(100, 5500), |
| 61 | CHAN5G(104, 5520), |
| 62 | CHAN5G(108, 5540), |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 63 | @@ -76,6 +83,11 @@ static const struct ieee80211_channel mt76_channels_5ghz[] = { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 64 | CHAN5G(169, 5845), |
| 65 | CHAN5G(173, 5865), |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 66 | CHAN5G(177, 5885), |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 67 | + |
| 68 | + CHAN5G(184, 4920), |
| 69 | + CHAN5G(188, 4940), |
| 70 | + CHAN5G(192, 4960), |
| 71 | + CHAN5G(196, 4980), |
| 72 | }; |
| 73 | |
| 74 | static const struct ieee80211_channel mt76_channels_6ghz[] = { |
| 75 | diff --git a/mt76.h b/mt76.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 76 | index c2ad06a..a5908de 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 77 | --- a/mt76.h |
| 78 | +++ b/mt76.h |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 79 | @@ -657,6 +657,21 @@ struct mt76_testmode_ops { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 80 | int (*set_params)(struct mt76_phy *phy, struct nlattr **tb, |
| 81 | enum mt76_testmode_state new_state); |
| 82 | int (*dump_stats)(struct mt76_phy *phy, struct sk_buff *msg); |
| 83 | + int (*set_eeprom)(struct mt76_phy *phy, u32 offset, u8 *val, u8 action); |
| 84 | +}; |
| 85 | + |
| 86 | +struct mt76_testmode_entry_data { |
| 87 | + struct sk_buff *tx_skb; |
| 88 | + |
| 89 | + u16 tx_mpdu_len; |
| 90 | + u8 tx_rate_idx; |
| 91 | + u8 tx_rate_nss; |
| 92 | + u8 tx_rate_ldpc; |
| 93 | + |
| 94 | + u8 addr[3][ETH_ALEN]; |
| 95 | + u8 aid; |
| 96 | + u8 ru_alloc; |
| 97 | + u8 ru_idx; |
| 98 | }; |
| 99 | |
| 100 | #define MT_TM_FW_RX_COUNT BIT(0) |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 101 | @@ -665,16 +680,11 @@ struct mt76_testmode_data { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 102 | enum mt76_testmode_state state; |
| 103 | |
| 104 | u32 param_set[DIV_ROUND_UP(NUM_MT76_TM_ATTRS, 32)]; |
| 105 | - struct sk_buff *tx_skb; |
| 106 | |
| 107 | u32 tx_count; |
| 108 | - u16 tx_mpdu_len; |
| 109 | |
| 110 | u8 tx_rate_mode; |
| 111 | - u8 tx_rate_idx; |
| 112 | - u8 tx_rate_nss; |
| 113 | u8 tx_rate_sgi; |
| 114 | - u8 tx_rate_ldpc; |
| 115 | u8 tx_rate_stbc; |
| 116 | u8 tx_ltf; |
| 117 | |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 118 | @@ -690,10 +700,37 @@ struct mt76_testmode_data { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 119 | u8 tx_power[4]; |
| 120 | u8 tx_power_control; |
| 121 | |
| 122 | - u8 addr[3][ETH_ALEN]; |
| 123 | + struct list_head tm_entry_list; |
| 124 | + struct mt76_wcid *cur_entry; |
| 125 | + u8 entry_num; |
| 126 | + union { |
| 127 | + struct mt76_testmode_entry_data ed; |
| 128 | + struct { |
| 129 | + /* must be the same as mt76_testmode_entry_data */ |
| 130 | + struct sk_buff *tx_skb; |
| 131 | + |
| 132 | + u16 tx_mpdu_len; |
| 133 | + u8 tx_rate_idx; |
| 134 | + u8 tx_rate_nss; |
| 135 | + u8 tx_rate_ldpc; |
| 136 | + |
| 137 | + u8 addr[3][ETH_ALEN]; |
| 138 | + u8 aid; |
| 139 | + u8 ru_alloc; |
| 140 | + u8 ru_idx; |
| 141 | + }; |
| 142 | + }; |
| 143 | |
| 144 | u8 flag; |
| 145 | |
| 146 | + struct { |
| 147 | + u8 type; |
| 148 | + u8 enable; |
| 149 | + } cfg; |
| 150 | + |
| 151 | + u8 txbf_act; |
| 152 | + u16 txbf_param[8]; |
| 153 | + |
| 154 | u32 tx_pending; |
| 155 | u32 tx_queued; |
| 156 | u16 tx_queued_limit; |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 157 | @@ -1258,6 +1295,59 @@ static inline bool mt76_testmode_enabled(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 158 | #endif |
| 159 | } |
| 160 | |
| 161 | +#ifdef CONFIG_NL80211_TESTMODE |
| 162 | +static inline struct mt76_wcid * |
| 163 | +mt76_testmode_first_entry(struct mt76_phy *phy) |
| 164 | +{ |
| 165 | + if (list_empty(&phy->test.tm_entry_list) && !phy->test.aid) |
| 166 | + return &phy->dev->global_wcid; |
| 167 | + |
| 168 | + return list_first_entry(&phy->test.tm_entry_list, |
| 169 | + typeof(struct mt76_wcid), |
| 170 | + list); |
| 171 | +} |
| 172 | + |
| 173 | +static inline struct mt76_testmode_entry_data * |
| 174 | +mt76_testmode_entry_data(struct mt76_phy *phy, struct mt76_wcid *wcid) |
| 175 | +{ |
| 176 | + if (!wcid) |
| 177 | + return NULL; |
| 178 | + if (wcid == &phy->dev->global_wcid) |
| 179 | + return &phy->test.ed; |
| 180 | + |
| 181 | + return (struct mt76_testmode_entry_data *)((u8 *)wcid + |
| 182 | + phy->hw->sta_data_size); |
| 183 | +} |
| 184 | + |
| 185 | +#define mt76_tm_for_each_entry(phy, wcid, ed) \ |
| 186 | + for (wcid = mt76_testmode_first_entry(phy), \ |
| 187 | + ed = mt76_testmode_entry_data(phy, wcid); \ |
| 188 | + ((phy->test.aid && \ |
| 189 | + !list_entry_is_head(wcid, &phy->test.tm_entry_list, list)) || \ |
| 190 | + (!phy->test.aid && wcid == &phy->dev->global_wcid)) && ed; \ |
| 191 | + wcid = list_next_entry(wcid, list), \ |
| 192 | + ed = mt76_testmode_entry_data(phy, wcid)) |
| 193 | +#endif |
| 194 | + |
| 195 | +static inline bool __mt76_is_testmode_skb(struct mt76_phy *phy, |
| 196 | + struct sk_buff *skb) |
| 197 | +{ |
| 198 | +#ifdef CONFIG_NL80211_TESTMODE |
| 199 | + struct mt76_testmode_entry_data *ed = &phy->test.ed; |
| 200 | + struct mt76_wcid *wcid; |
| 201 | + |
| 202 | + if (skb == ed->tx_skb) |
| 203 | + return true; |
| 204 | + |
| 205 | + mt76_tm_for_each_entry(phy, wcid, ed) |
| 206 | + if (skb == ed->tx_skb) |
| 207 | + return true; |
| 208 | + return false; |
| 209 | +#else |
| 210 | + return false; |
| 211 | +#endif |
| 212 | +} |
| 213 | + |
| 214 | static inline bool mt76_is_testmode_skb(struct mt76_dev *dev, |
| 215 | struct sk_buff *skb, |
| 216 | struct ieee80211_hw **hw) |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 217 | @@ -1268,7 +1358,8 @@ static inline bool mt76_is_testmode_skb(struct mt76_dev *dev, |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 218 | for (i = 0; i < ARRAY_SIZE(dev->phys); i++) { |
| 219 | struct mt76_phy *phy = dev->phys[i]; |
| 220 | |
| 221 | - if (phy && skb == phy->test.tx_skb) { |
| 222 | + if (phy && mt76_testmode_enabled(phy) && |
| 223 | + __mt76_is_testmode_skb(phy, skb)) { |
| 224 | *hw = dev->phys[i]->hw; |
| 225 | return true; |
| 226 | } |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 227 | @@ -1370,7 +1461,8 @@ int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 228 | int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 229 | struct netlink_callback *cb, void *data, int len); |
| 230 | int mt76_testmode_set_state(struct mt76_phy *phy, enum mt76_testmode_state state); |
| 231 | -int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len); |
| 232 | +int mt76_testmode_init_skb(struct mt76_phy *phy, u32 len, |
| 233 | + struct sk_buff **tx_skb, u8 (*addr)[ETH_ALEN]); |
| 234 | |
| 235 | static inline void mt76_testmode_reset(struct mt76_phy *phy, bool disable) |
| 236 | { |
| 237 | diff --git a/mt76_connac_mcu.c b/mt76_connac_mcu.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 238 | index a558c68..74b63f0 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 239 | --- a/mt76_connac_mcu.c |
| 240 | +++ b/mt76_connac_mcu.c |
developer | ad9333b | 2023-05-22 15:16:16 +0800 | [diff] [blame] | 241 | @@ -395,6 +395,7 @@ void mt76_connac_mcu_sta_basic_tlv(struct mt76_dev *dev, struct sk_buff *skb, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 242 | switch (vif->type) { |
| 243 | case NL80211_IFTYPE_MESH_POINT: |
| 244 | case NL80211_IFTYPE_AP: |
| 245 | + case NL80211_IFTYPE_MONITOR: |
developer | ad9333b | 2023-05-22 15:16:16 +0800 | [diff] [blame] | 246 | if (vif->p2p && !is_mt7921(dev)) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 247 | conn_type = CONNECTION_P2P_GC; |
| 248 | else |
developer | a43cc48 | 2023-04-17 15:57:28 +0800 | [diff] [blame] | 249 | @@ -576,6 +577,9 @@ void mt76_connac_mcu_wtbl_generic_tlv(struct mt76_dev *dev, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 250 | rx->rca2 = 1; |
| 251 | rx->rv = 1; |
| 252 | |
| 253 | + if (vif->type == NL80211_IFTYPE_MONITOR) |
| 254 | + rx->rca1 = 0; |
| 255 | + |
| 256 | if (!is_connac_v1(dev)) |
| 257 | return; |
| 258 | |
| 259 | diff --git a/mt76_connac_mcu.h b/mt76_connac_mcu.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 260 | index 92e0b91..e3980c3 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 261 | --- a/mt76_connac_mcu.h |
| 262 | +++ b/mt76_connac_mcu.h |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 263 | @@ -998,6 +998,7 @@ enum { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 264 | MCU_EXT_EVENT_FW_LOG_2_HOST = 0x13, |
| 265 | MCU_EXT_EVENT_THERMAL_PROTECT = 0x22, |
| 266 | MCU_EXT_EVENT_ASSERT_DUMP = 0x23, |
| 267 | + MCU_EXT_EVENT_BF_STATUS_READ = 0x35, |
| 268 | MCU_EXT_EVENT_RDD_REPORT = 0x3a, |
| 269 | MCU_EXT_EVENT_CSA_NOTIFY = 0x4f, |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 270 | MCU_EXT_EVENT_WA_TX_STAT = 0x74, |
| 271 | @@ -1200,6 +1201,7 @@ enum { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 272 | MCU_EXT_CMD_PHY_STAT_INFO = 0xad, |
| 273 | /* for vendor csi and air monitor */ |
| 274 | MCU_EXT_CMD_SMESH_CTRL = 0xae, |
| 275 | + MCU_EXT_CMD_RX_STAT_USER_CTRL = 0xb3, |
| 276 | MCU_EXT_CMD_CERT_CFG = 0xb7, |
| 277 | MCU_EXT_CMD_CSI_CTRL = 0xc2, |
| 278 | }; |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 279 | diff --git a/mt7915/eeprom.c b/mt7915/eeprom.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 280 | index 76be730..f5ab331 100644 |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 281 | --- a/mt7915/eeprom.c |
| 282 | +++ b/mt7915/eeprom.c |
developer | ad9333b | 2023-05-22 15:16:16 +0800 | [diff] [blame] | 283 | @@ -131,7 +131,7 @@ static int mt7915_eeprom_load(struct mt7915_dev *dev) |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 284 | /* read eeprom data from efuse */ |
| 285 | block_num = DIV_ROUND_UP(eeprom_size, eeprom_blk_size); |
| 286 | for (i = 0; i < block_num; i++) { |
| 287 | - ret = mt7915_mcu_get_eeprom(dev, i * eeprom_blk_size); |
| 288 | + ret = mt7915_mcu_get_eeprom(dev, i * eeprom_blk_size, NULL); |
| 289 | if (ret < 0) |
| 290 | return ret; |
| 291 | } |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 292 | diff --git a/mt7915/init.c b/mt7915/init.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 293 | index 361c384..6d1c0f7 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 294 | --- a/mt7915/init.c |
| 295 | +++ b/mt7915/init.c |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 296 | @@ -730,7 +730,7 @@ static void mt7915_init_work(struct work_struct *work) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 297 | struct mt7915_dev *dev = container_of(work, struct mt7915_dev, |
| 298 | init_work); |
| 299 | |
| 300 | - mt7915_mcu_set_eeprom(dev); |
| 301 | + mt7915_mcu_set_eeprom(dev, dev->flash_mode); |
| 302 | mt7915_mac_init(dev); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 303 | mt7915_txbf_init(dev); |
| 304 | } |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 305 | diff --git a/mt7915/mac.c b/mt7915/mac.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 306 | index 7ae34b7..6c9401d 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 307 | --- a/mt7915/mac.c |
| 308 | +++ b/mt7915/mac.c |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 309 | @@ -604,16 +604,38 @@ mt7915_mac_write_txwi_tm(struct mt7915_phy *phy, __le32 *txwi, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 310 | { |
| 311 | #ifdef CONFIG_NL80211_TESTMODE |
| 312 | struct mt76_testmode_data *td = &phy->mt76->test; |
| 313 | + struct mt76_testmode_entry_data *ed; |
| 314 | + struct mt76_wcid *wcid; |
| 315 | const struct ieee80211_rate *r; |
| 316 | - u8 bw, mode, nss = td->tx_rate_nss; |
| 317 | - u8 rate_idx = td->tx_rate_idx; |
| 318 | + u8 bw, mode, nss, rate_idx, ldpc; |
| 319 | u16 rateval = 0; |
| 320 | u32 val; |
| 321 | bool cck = false; |
| 322 | int band; |
| 323 | |
| 324 | - if (skb != phy->mt76->test.tx_skb) |
| 325 | + txwi[3] &= ~cpu_to_le32(MT_TXD3_SN_VALID); |
| 326 | + txwi[7] |= cpu_to_le32(FIELD_PREP(MT_TXD7_SPE_IDX, |
| 327 | + phy->test.spe_idx)); |
| 328 | + |
| 329 | + if (td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU) { |
| 330 | + txwi[1] |= cpu_to_le32(BIT(18)); |
| 331 | + txwi[2] = 0; |
| 332 | + txwi[3] &= ~cpu_to_le32(MT_TXD3_NO_ACK); |
| 333 | + le32p_replace_bits(&txwi[3], 0x1f, MT_TXD3_REM_TX_COUNT); |
| 334 | + |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 335 | return; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 336 | + } |
| 337 | + |
| 338 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) |
| 339 | + if (ed->tx_skb == skb) |
| 340 | + break; |
| 341 | + |
| 342 | + if (!ed) |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 343 | + return; |
| 344 | + |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 345 | + nss = ed->tx_rate_nss; |
| 346 | + rate_idx = ed->tx_rate_idx; |
| 347 | + ldpc = ed->tx_rate_ldpc; |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 348 | |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 349 | switch (td->tx_rate_mode) { |
| 350 | case MT76_TM_TX_MODE_HT: |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 351 | @@ -644,7 +666,7 @@ mt7915_mac_write_txwi_tm(struct mt7915_phy *phy, __le32 *txwi, |
developer | cf3c4c7 | 2023-01-31 15:21:28 +0800 | [diff] [blame] | 352 | rate_idx += 4; |
| 353 | |
| 354 | r = &phy->mt76->hw->wiphy->bands[band]->bitrates[rate_idx]; |
| 355 | - val = cck ? r->hw_value_short : r->hw_value; |
| 356 | + val = r->hw_value; |
| 357 | |
| 358 | mode = val >> 8; |
| 359 | rate_idx = val & 0xff; |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 360 | @@ -703,13 +725,14 @@ mt7915_mac_write_txwi_tm(struct mt7915_phy *phy, __le32 *txwi, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 361 | if (mode >= MT_PHY_TYPE_HE_SU) |
| 362 | val |= FIELD_PREP(MT_TXD6_HELTF, td->tx_ltf); |
| 363 | |
| 364 | - if (td->tx_rate_ldpc || (bw > 0 && mode >= MT_PHY_TYPE_HE_SU)) |
| 365 | + if (ldpc || (bw > 0 && mode >= MT_PHY_TYPE_HE_SU)) |
| 366 | val |= MT_TXD6_LDPC; |
| 367 | |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 368 | txwi[3] &= ~cpu_to_le32(MT_TXD3_SN_VALID); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 369 | + if (phy->test.bf_en) |
| 370 | + val |= MT_TXD6_TX_IBF | MT_TXD6_TX_EBF; |
| 371 | + |
| 372 | txwi[6] |= cpu_to_le32(val); |
| 373 | - txwi[7] |= cpu_to_le32(FIELD_PREP(MT_TXD7_SPE_IDX, |
| 374 | - phy->test.spe_idx)); |
| 375 | #endif |
| 376 | } |
| 377 | |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 378 | @@ -1415,7 +1438,7 @@ mt7915_mac_restart(struct mt7915_dev *dev) |
developer | 2cbf2fb | 2022-11-16 12:20:48 +0800 | [diff] [blame] | 379 | goto out; |
| 380 | |
| 381 | /* set the necessary init items */ |
| 382 | - ret = mt7915_mcu_set_eeprom(dev); |
| 383 | + ret = mt7915_mcu_set_eeprom(dev, dev->flash_mode); |
| 384 | if (ret) |
| 385 | goto out; |
| 386 | |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 387 | diff --git a/mt7915/main.c b/mt7915/main.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 388 | index 9b54ba1..d7bcd5f 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 389 | --- a/mt7915/main.c |
| 390 | +++ b/mt7915/main.c |
developer | 2aa1e64 | 2022-12-19 11:33:22 +0800 | [diff] [blame] | 391 | @@ -238,7 +238,7 @@ static int mt7915_add_interface(struct ieee80211_hw *hw, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 392 | mvif->phy = phy; |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 393 | mvif->mt76.band_idx = phy->mt76->band_idx; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 394 | |
| 395 | - mvif->mt76.wmm_idx = vif->type != NL80211_IFTYPE_AP; |
| 396 | + mvif->mt76.wmm_idx = (vif->type != NL80211_IFTYPE_AP && vif->type != NL80211_IFTYPE_MONITOR); |
| 397 | if (ext_phy) |
| 398 | mvif->mt76.wmm_idx += 2; |
| 399 | |
| 400 | diff --git a/mt7915/mcu.c b/mt7915/mcu.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 401 | index 1f5f938..6a5f204 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 402 | --- a/mt7915/mcu.c |
| 403 | +++ b/mt7915/mcu.c |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 404 | @@ -389,6 +389,11 @@ mt7915_mcu_rx_ext_event(struct mt7915_dev *dev, struct sk_buff *skb) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 405 | case MCU_EXT_EVENT_BCC_NOTIFY: |
| 406 | mt7915_mcu_rx_bcc_notify(dev, skb); |
| 407 | break; |
| 408 | +#ifdef CONFIG_NL80211_TESTMODE |
| 409 | + case MCU_EXT_EVENT_BF_STATUS_READ: |
| 410 | + mt7915_tm_txbf_status_read(dev, skb); |
| 411 | + break; |
| 412 | +#endif |
| 413 | default: |
| 414 | break; |
| 415 | } |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 416 | @@ -420,6 +425,7 @@ void mt7915_mcu_rx_event(struct mt7915_dev *dev, struct sk_buff *skb) |
| 417 | rxd->ext_eid == MCU_EXT_EVENT_ASSERT_DUMP || |
| 418 | rxd->ext_eid == MCU_EXT_EVENT_PS_SYNC || |
| 419 | rxd->ext_eid == MCU_EXT_EVENT_BCC_NOTIFY || |
| 420 | + rxd->ext_eid == MCU_EXT_EVENT_BF_STATUS_READ || |
| 421 | !rxd->seq) && |
| 422 | !(rxd->eid == MCU_CMD_EXT_CID && |
| 423 | rxd->ext_eid == MCU_EXT_EVENT_WA_TX_STAT)) |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 424 | @@ -2755,7 +2761,8 @@ int mt7915_mcu_set_chan_info(struct mt7915_phy *phy, int cmd) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 425 | } |
| 426 | #endif |
| 427 | |
| 428 | - if (mt76_connac_spe_idx(phy->mt76->antenna_mask)) |
| 429 | + if (mt76_connac_spe_idx(phy->mt76->antenna_mask) && |
| 430 | + !mt76_testmode_enabled(phy->mt76)) |
| 431 | req.tx_path_num = fls(phy->mt76->antenna_mask); |
| 432 | |
| 433 | if (dev->mt76.hw->conf.flags & IEEE80211_CONF_MONITOR) |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 434 | @@ -2823,21 +2830,21 @@ static int mt7915_mcu_set_eeprom_flash(struct mt7915_dev *dev) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 435 | return 0; |
| 436 | } |
| 437 | |
| 438 | -int mt7915_mcu_set_eeprom(struct mt7915_dev *dev) |
| 439 | +int mt7915_mcu_set_eeprom(struct mt7915_dev *dev, bool flash_mode) |
| 440 | { |
| 441 | struct mt7915_mcu_eeprom req = { |
| 442 | .buffer_mode = EE_MODE_EFUSE, |
| 443 | .format = EE_FORMAT_WHOLE, |
| 444 | }; |
| 445 | |
| 446 | - if (dev->flash_mode) |
| 447 | + if (flash_mode) |
| 448 | return mt7915_mcu_set_eeprom_flash(dev); |
| 449 | |
| 450 | return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(EFUSE_BUFFER_MODE), |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 451 | &req, sizeof(req), true); |
| 452 | } |
| 453 | |
| 454 | -int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset) |
| 455 | +int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset, u8 *read_buf) |
| 456 | { |
| 457 | struct mt7915_mcu_eeprom_info req = { |
| 458 | .addr = cpu_to_le32(round_down(offset, |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 459 | @@ -2846,7 +2853,7 @@ int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset) |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 460 | struct mt7915_mcu_eeprom_info *res; |
| 461 | struct sk_buff *skb; |
| 462 | int ret; |
| 463 | - u8 *buf; |
| 464 | + u8 *buf = read_buf; |
| 465 | |
| 466 | ret = mt76_mcu_send_and_get_msg(&dev->mt76, |
| 467 | MCU_EXT_QUERY(EFUSE_ACCESS), |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 468 | @@ -2855,8 +2862,11 @@ int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset) |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 469 | return ret; |
| 470 | |
| 471 | res = (struct mt7915_mcu_eeprom_info *)skb->data; |
| 472 | - buf = dev->mt76.eeprom.data + le32_to_cpu(res->addr); |
| 473 | + |
| 474 | + if (!buf) |
| 475 | + buf = dev->mt76.eeprom.data + le32_to_cpu(res->addr); |
| 476 | memcpy(buf, res->data, MT7915_EEPROM_BLOCK_SIZE); |
| 477 | + |
| 478 | dev_kfree_skb(skb); |
| 479 | |
| 480 | return 0; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 481 | diff --git a/mt7915/mcu.h b/mt7915/mcu.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 482 | index c15b4b7..9982735 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 483 | --- a/mt7915/mcu.h |
| 484 | +++ b/mt7915/mcu.h |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 485 | @@ -8,10 +8,15 @@ |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 486 | |
| 487 | enum { |
| 488 | MCU_ATE_SET_TRX = 0x1, |
| 489 | + MCU_ATE_SET_TSSI = 0x5, |
| 490 | + MCU_ATE_SET_DPD = 0x6, |
| 491 | + MCU_ATE_SET_RATE_POWER_OFFSET = 0x7, |
| 492 | + MCU_ATE_SET_THERMAL_COMP = 0x8, |
| 493 | MCU_ATE_SET_FREQ_OFFSET = 0xa, |
| 494 | MCU_ATE_SET_PHY_COUNT = 0x11, |
| 495 | MCU_ATE_SET_SLOT_TIME = 0x13, |
| 496 | MCU_ATE_CLEAN_TXQUEUE = 0x1c, |
| 497 | + MCU_ATE_SET_MU_RX_AID = 0x1e, |
| 498 | }; |
| 499 | |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 500 | struct mt7915_mcu_thermal_ctrl { |
developer | c07d01e | 2023-05-05 13:45:43 +0800 | [diff] [blame] | 501 | @@ -527,6 +532,12 @@ enum { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 502 | |
| 503 | enum { |
| 504 | MT_BF_SOUNDING_ON = 1, |
| 505 | + MT_BF_DATA_PACKET_APPLY = 2, |
| 506 | + MT_BF_PFMU_TAG_READ = 5, |
| 507 | + MT_BF_PFMU_TAG_WRITE = 6, |
| 508 | + MT_BF_PHASE_CAL = 14, |
| 509 | + MT_BF_IBF_PHASE_COMP = 15, |
| 510 | + MT_BF_PROFILE_WRITE_ALL = 17, |
| 511 | MT_BF_TYPE_UPDATE = 20, |
| 512 | MT_BF_MODULE_UPDATE = 25 |
| 513 | }; |
developer | c07d01e | 2023-05-05 13:45:43 +0800 | [diff] [blame] | 514 | @@ -775,10 +786,20 @@ struct mt7915_muru { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 515 | #define MURU_OFDMA_SCH_TYPE_UL BIT(1) |
| 516 | |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 517 | /* Common Config */ |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 518 | -#define MURU_COMM_PPDU_FMT BIT(0) |
| 519 | -#define MURU_COMM_SCH_TYPE BIT(1) |
| 520 | -#define MURU_COMM_SET (MURU_COMM_PPDU_FMT | MURU_COMM_SCH_TYPE) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 521 | -/* DL&UL User config*/ |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 522 | +/* #define MURU_COMM_PPDU_FMT BIT(0) */ |
| 523 | +/* #define MURU_COMM_SCH_TYPE BIT(1) */ |
| 524 | +/* #define MURU_COMM_SET (MURU_COMM_PPDU_FMT | MURU_COMM_SCH_TYPE) */ |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 525 | +#define MURU_COMM_PPDU_FMT BIT(0) |
| 526 | +#define MURU_COMM_SCH_TYPE BIT(1) |
| 527 | +#define MURU_COMM_BAND BIT(2) |
| 528 | +#define MURU_COMM_WMM BIT(3) |
| 529 | +#define MURU_COMM_SPE_IDX BIT(4) |
| 530 | +#define MURU_COMM_PROC_TYPE BIT(5) |
developer | c07d01e | 2023-05-05 13:45:43 +0800 | [diff] [blame] | 531 | +#define MURU_COMM_SET (MURU_COMM_PPDU_FMT | MURU_COMM_SCH_TYPE) |
| 532 | +#define MURU_COMM_SET_TM (MURU_COMM_PPDU_FMT | MURU_COMM_BAND | \ |
| 533 | + MURU_COMM_WMM | MURU_COMM_SPE_IDX) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 534 | + |
| 535 | +/* DL&UL User config */ |
| 536 | #define MURU_USER_CNT BIT(4) |
| 537 | |
| 538 | enum { |
| 539 | diff --git a/mt7915/mmio.c b/mt7915/mmio.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 540 | index b23679a..6505d76 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 541 | --- a/mt7915/mmio.c |
| 542 | +++ b/mt7915/mmio.c |
developer | f3f5d9b | 2023-02-07 15:24:34 +0800 | [diff] [blame] | 543 | @@ -134,6 +134,7 @@ static const u32 mt7915_offs[] = { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 544 | [ARB_DRNGR0] = 0x194, |
| 545 | [ARB_SCR] = 0x080, |
| 546 | [RMAC_MIB_AIRTIME14] = 0x3b8, |
| 547 | + [AGG_AALCR0] = 0x048, |
| 548 | [AGG_AWSCR0] = 0x05c, |
| 549 | [AGG_PCR0] = 0x06c, |
| 550 | [AGG_ACR0] = 0x084, |
developer | f3f5d9b | 2023-02-07 15:24:34 +0800 | [diff] [blame] | 551 | @@ -209,6 +210,7 @@ static const u32 mt7916_offs[] = { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 552 | [ARB_DRNGR0] = 0x1e0, |
| 553 | [ARB_SCR] = 0x000, |
| 554 | [RMAC_MIB_AIRTIME14] = 0x0398, |
| 555 | + [AGG_AALCR0] = 0x028, |
| 556 | [AGG_AWSCR0] = 0x030, |
| 557 | [AGG_PCR0] = 0x040, |
| 558 | [AGG_ACR0] = 0x054, |
| 559 | diff --git a/mt7915/mt7915.h b/mt7915/mt7915.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 560 | index bf0f7de..c91415f 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 561 | --- a/mt7915/mt7915.h |
| 562 | +++ b/mt7915/mt7915.h |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 563 | @@ -272,6 +272,9 @@ struct mt7915_phy { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 564 | u8 last_snr; |
| 565 | |
| 566 | u8 spe_idx; |
| 567 | + |
| 568 | + bool bf_en; |
| 569 | + bool bf_ever_en; |
| 570 | } test; |
| 571 | #endif |
| 572 | |
developer | 26d6cc5 | 2023-07-31 12:27:06 +0800 | [diff] [blame] | 573 | @@ -368,6 +371,14 @@ struct mt7915_dev { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 574 | void __iomem *dcm; |
| 575 | void __iomem *sku; |
| 576 | |
| 577 | +#ifdef CONFIG_NL80211_TESTMODE |
| 578 | + struct { |
| 579 | + void *txbf_phase_cal; |
| 580 | + void *txbf_pfmu_data; |
| 581 | + void *txbf_pfmu_tag; |
| 582 | + } test; |
| 583 | +#endif |
| 584 | + |
| 585 | #ifdef MTK_DEBUG |
| 586 | u16 wlan_idx; |
| 587 | struct { |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 588 | @@ -539,8 +550,8 @@ int mt7915_mcu_set_fixed_rate_ctrl(struct mt7915_dev *dev, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 589 | struct ieee80211_vif *vif, |
| 590 | struct ieee80211_sta *sta, |
| 591 | void *data, u32 field); |
| 592 | -int mt7915_mcu_set_eeprom(struct mt7915_dev *dev); |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 593 | -int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 594 | +int mt7915_mcu_set_eeprom(struct mt7915_dev *dev, bool flash_mode); |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 595 | +int mt7915_mcu_get_eeprom(struct mt7915_dev *dev, u32 offset, u8 *read_buf); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 596 | int mt7915_mcu_get_eeprom_free_block(struct mt7915_dev *dev, u8 *block_num); |
| 597 | int mt7915_mcu_set_mac(struct mt7915_dev *dev, int band, bool enable, |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 598 | bool hdr_trans); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 599 | @@ -579,6 +590,7 @@ int mt7915_mcu_fw_log_2_host(struct mt7915_dev *dev, u8 type, u8 ctrl); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 600 | int mt7915_mcu_fw_dbg_ctrl(struct mt7915_dev *dev, u32 module, u8 level); |
| 601 | void mt7915_mcu_rx_event(struct mt7915_dev *dev, struct sk_buff *skb); |
| 602 | void mt7915_mcu_exit(struct mt7915_dev *dev); |
| 603 | +int mt7915_tm_txbf_status_read(struct mt7915_dev *dev, struct sk_buff *skb); |
| 604 | |
| 605 | static inline u16 mt7915_wtbl_size(struct mt7915_dev *dev) |
| 606 | { |
| 607 | diff --git a/mt7915/regs.h b/mt7915/regs.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 608 | index 038596c..428f482 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 609 | --- a/mt7915/regs.h |
| 610 | +++ b/mt7915/regs.h |
developer | 3d5faf2 | 2022-11-29 18:07:22 +0800 | [diff] [blame] | 611 | @@ -62,6 +62,7 @@ enum offs_rev { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 612 | ARB_DRNGR0, |
| 613 | ARB_SCR, |
| 614 | RMAC_MIB_AIRTIME14, |
| 615 | + AGG_AALCR0, |
| 616 | AGG_AWSCR0, |
| 617 | AGG_PCR0, |
| 618 | AGG_ACR0, |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 619 | @@ -485,6 +486,8 @@ enum offs_rev { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 620 | #define MT_WF_AGG_BASE(_band) ((_band) ? 0x820f2000 : 0x820e2000) |
| 621 | #define MT_WF_AGG(_band, ofs) (MT_WF_AGG_BASE(_band) + (ofs)) |
| 622 | |
| 623 | +#define MT_AGG_AALCR0(_band, _n) MT_WF_AGG(_band, (__OFFS(AGG_AALCR0) + \ |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 624 | + (_n) * 4)) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 625 | #define MT_AGG_AWSCR0(_band, _n) MT_WF_AGG(_band, (__OFFS(AGG_AWSCR0) + \ |
| 626 | (_n) * 4)) |
| 627 | #define MT_AGG_PCR0(_band, _n) MT_WF_AGG(_band, (__OFFS(AGG_PCR0) + \ |
| 628 | diff --git a/mt7915/testmode.c b/mt7915/testmode.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 629 | index 4693919..e5d0ef9 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 630 | --- a/mt7915/testmode.c |
| 631 | +++ b/mt7915/testmode.c |
| 632 | @@ -9,6 +9,9 @@ |
| 633 | enum { |
| 634 | TM_CHANGED_TXPOWER, |
| 635 | TM_CHANGED_FREQ_OFFSET, |
| 636 | + TM_CHANGED_AID, |
| 637 | + TM_CHANGED_CFG, |
| 638 | + TM_CHANGED_TXBF_ACT, |
| 639 | |
| 640 | /* must be last */ |
| 641 | NUM_TM_CHANGED |
| 642 | @@ -17,6 +20,9 @@ enum { |
| 643 | static const u8 tm_change_map[] = { |
| 644 | [TM_CHANGED_TXPOWER] = MT76_TM_ATTR_TX_POWER, |
| 645 | [TM_CHANGED_FREQ_OFFSET] = MT76_TM_ATTR_FREQ_OFFSET, |
| 646 | + [TM_CHANGED_AID] = MT76_TM_ATTR_AID, |
| 647 | + [TM_CHANGED_CFG] = MT76_TM_ATTR_CFG, |
| 648 | + [TM_CHANGED_TXBF_ACT] = MT76_TM_ATTR_TXBF_ACT, |
| 649 | }; |
| 650 | |
| 651 | struct reg_band { |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 652 | @@ -33,6 +39,57 @@ struct reg_band { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 653 | #define TM_REG_MAX_ID 20 |
| 654 | static struct reg_band reg_backup_list[TM_REG_MAX_ID]; |
| 655 | |
| 656 | +static void mt7915_tm_update_entry(struct mt7915_phy *phy); |
| 657 | + |
| 658 | +static u8 mt7915_tm_chan_bw(enum nl80211_chan_width width) |
| 659 | +{ |
| 660 | + static const u8 width_to_bw[] = { |
| 661 | + [NL80211_CHAN_WIDTH_40] = TM_CBW_40MHZ, |
| 662 | + [NL80211_CHAN_WIDTH_80] = TM_CBW_80MHZ, |
| 663 | + [NL80211_CHAN_WIDTH_80P80] = TM_CBW_8080MHZ, |
| 664 | + [NL80211_CHAN_WIDTH_160] = TM_CBW_160MHZ, |
| 665 | + [NL80211_CHAN_WIDTH_5] = TM_CBW_5MHZ, |
| 666 | + [NL80211_CHAN_WIDTH_10] = TM_CBW_10MHZ, |
| 667 | + [NL80211_CHAN_WIDTH_20] = TM_CBW_20MHZ, |
| 668 | + [NL80211_CHAN_WIDTH_20_NOHT] = TM_CBW_20MHZ, |
| 669 | + }; |
| 670 | + |
| 671 | + if (width >= ARRAY_SIZE(width_to_bw)) |
| 672 | + return 0; |
| 673 | + |
| 674 | + return width_to_bw[width]; |
| 675 | +} |
| 676 | + |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 677 | +static int |
| 678 | +mt7915_tm_check_antenna(struct mt7915_phy *phy) |
| 679 | +{ |
| 680 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 681 | + struct mt7915_dev *dev = phy->dev; |
| 682 | + u8 band_idx = phy->mt76->band_idx; |
| 683 | + u32 chainmask = phy->mt76->chainmask; |
| 684 | + |
| 685 | + chainmask = chainmask >> (dev->chainshift * band_idx); |
| 686 | + if (td->tx_antenna_mask & ~chainmask) { |
| 687 | + dev_err(dev->mt76.dev, |
| 688 | + "tx antenna mask %d exceeds hardware limitation (chainmask %d)\n", |
| 689 | + td->tx_antenna_mask, chainmask); |
| 690 | + return -EINVAL; |
| 691 | + } |
| 692 | + |
| 693 | + return 0; |
| 694 | +} |
| 695 | + |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 696 | +static void |
| 697 | +mt7915_tm_update_channel(struct mt7915_phy *phy) |
| 698 | +{ |
| 699 | + mutex_unlock(&phy->dev->mt76.mutex); |
| 700 | + mt7915_set_channel(phy); |
| 701 | + mutex_lock(&phy->dev->mt76.mutex); |
| 702 | + |
| 703 | + mt7915_mcu_set_chan_info(phy, MCU_EXT_CMD(SET_RX_PATH)); |
| 704 | + |
| 705 | + mt7915_tm_update_entry(phy); |
| 706 | +} |
| 707 | |
| 708 | static int |
| 709 | mt7915_tm_set_tx_power(struct mt7915_phy *phy) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 710 | @@ -119,18 +176,28 @@ mt7915_tm_set_trx(struct mt7915_phy *phy, int type, bool en) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | static int |
| 714 | -mt7915_tm_clean_hwq(struct mt7915_phy *phy, u8 wcid) |
| 715 | +mt7915_tm_clean_hwq(struct mt7915_phy *phy) |
| 716 | { |
| 717 | + struct mt76_testmode_entry_data *ed; |
| 718 | + struct mt76_wcid *wcid; |
| 719 | struct mt7915_dev *dev = phy->dev; |
| 720 | struct mt7915_tm_cmd req = { |
| 721 | .testmode_en = 1, |
| 722 | .param_idx = MCU_ATE_CLEAN_TXQUEUE, |
| 723 | - .param.clean.wcid = wcid, |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 724 | .param.clean.band = phy->mt76->band_idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 725 | }; |
| 726 | |
| 727 | - return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req, |
| 728 | - sizeof(req), false); |
| 729 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) { |
| 730 | + int ret; |
| 731 | + |
| 732 | + req.param.clean.wcid = wcid->idx; |
| 733 | + ret = mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), |
| 734 | + &req, sizeof(req), false); |
| 735 | + if (ret) |
| 736 | + return ret; |
| 737 | + } |
| 738 | + |
| 739 | + return 0; |
| 740 | } |
| 741 | |
| 742 | static int |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 743 | @@ -141,7 +208,7 @@ mt7915_tm_set_phy_count(struct mt7915_phy *phy, u8 control) |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 744 | .testmode_en = 1, |
| 745 | .param_idx = MCU_ATE_SET_PHY_COUNT, |
| 746 | .param.cfg.enable = control, |
| 747 | - .param.cfg.band = phy != &dev->phy, |
| 748 | + .param.cfg.band = phy->mt76->band_idx, |
| 749 | }; |
| 750 | |
| 751 | return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req, |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 752 | @@ -182,12 +249,739 @@ mt7915_tm_set_tam_arb(struct mt7915_phy *phy, bool enable, bool mu) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 753 | return mt7915_mcu_set_muru_ctrl(dev, MURU_SET_ARB_OP_MODE, op_mode); |
| 754 | } |
| 755 | |
| 756 | +static int |
| 757 | +mt7915_tm_set_cfg(struct mt7915_phy *phy) |
| 758 | +{ |
| 759 | + static const u8 cfg_cmd[] = { |
| 760 | + [MT76_TM_CFG_TSSI] = MCU_ATE_SET_TSSI, |
| 761 | + [MT76_TM_CFG_DPD] = MCU_ATE_SET_DPD, |
| 762 | + [MT76_TM_CFG_RATE_POWER_OFFSET] = MCU_ATE_SET_RATE_POWER_OFFSET, |
| 763 | + [MT76_TM_CFG_THERMAL_COMP] = MCU_ATE_SET_THERMAL_COMP, |
| 764 | + }; |
| 765 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 766 | + struct mt7915_dev *dev = phy->dev; |
| 767 | + struct mt7915_tm_cmd req = { |
| 768 | + .testmode_en = !(phy->mt76->test.state == MT76_TM_STATE_OFF), |
| 769 | + .param_idx = cfg_cmd[td->cfg.type], |
| 770 | + .param.cfg.enable = td->cfg.enable, |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 771 | + .param.cfg.band = phy->mt76->band_idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 772 | + }; |
| 773 | + |
| 774 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req, |
| 775 | + sizeof(req), false); |
| 776 | +} |
| 777 | + |
| 778 | +static int |
| 779 | +mt7915_tm_add_txbf(struct mt7915_phy *phy, struct ieee80211_vif *vif, |
| 780 | + struct ieee80211_sta *sta, u8 pfmu_idx, u8 nr, |
| 781 | + u8 nc, bool ebf) |
| 782 | +{ |
| 783 | + struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv; |
| 784 | + struct mt7915_sta *msta = (struct mt7915_sta *)sta->drv_priv; |
| 785 | + struct mt7915_dev *dev = phy->dev; |
| 786 | + struct sk_buff *skb; |
| 787 | + struct sta_rec_bf *bf; |
| 788 | + struct tlv *tlv; |
| 789 | + u8 ndp_rate; |
| 790 | + |
| 791 | + if (nr == 1) |
| 792 | + ndp_rate = 8; |
| 793 | + else if (nr == 2) |
| 794 | + ndp_rate = 16; |
| 795 | + else |
| 796 | + ndp_rate = 24; |
| 797 | + |
| 798 | + skb = mt76_connac_mcu_alloc_sta_req(&dev->mt76, &mvif->mt76, |
| 799 | + &msta->wcid); |
| 800 | + if (IS_ERR(skb)) |
| 801 | + return PTR_ERR(skb); |
| 802 | + |
| 803 | + tlv = mt76_connac_mcu_add_tlv(skb, STA_REC_BF, sizeof(*bf)); |
| 804 | + bf = (struct sta_rec_bf *)tlv; |
| 805 | + |
| 806 | + bf->pfmu = cpu_to_le16(pfmu_idx); |
| 807 | + bf->sounding_phy = 1; |
| 808 | + bf->bf_cap = ebf; |
| 809 | + bf->ncol = nc; |
| 810 | + bf->nrow = nr; |
| 811 | + bf->ndp_rate = ndp_rate; |
| 812 | + bf->ibf_timeout = 0xff; |
| 813 | + bf->tx_mode = MT_PHY_TYPE_HT; |
| 814 | + |
| 815 | + if (ebf) { |
| 816 | + bf->mem[0].row = 0; |
| 817 | + bf->mem[1].row = 1; |
| 818 | + bf->mem[2].row = 2; |
| 819 | + bf->mem[3].row = 3; |
| 820 | + } else { |
| 821 | + bf->mem[0].row = 4; |
| 822 | + bf->mem[1].row = 5; |
| 823 | + bf->mem[2].row = 6; |
| 824 | + bf->mem[3].row = 7; |
| 825 | + } |
| 826 | + |
| 827 | + return mt76_mcu_skb_send_msg(&dev->mt76, skb, |
| 828 | + MCU_EXT_CMD(STA_REC_UPDATE), true); |
| 829 | +} |
| 830 | + |
| 831 | +static int |
| 832 | +mt7915_tm_entry_add(struct mt7915_phy *phy, u8 aid) |
| 833 | +{ |
| 834 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 835 | + struct mt76_testmode_entry_data *ed; |
| 836 | + struct ieee80211_sband_iftype_data *sdata; |
| 837 | + struct ieee80211_supported_band *sband; |
| 838 | + struct ieee80211_sta *sta; |
| 839 | + struct mt7915_sta *msta; |
| 840 | + int tid, ret; |
| 841 | + |
| 842 | + if (td->entry_num >= MT76_TM_MAX_ENTRY_NUM) |
| 843 | + return -EINVAL; |
| 844 | + |
| 845 | + sta = kzalloc(sizeof(*sta) + phy->mt76->hw->sta_data_size + |
| 846 | + sizeof(*ed), GFP_KERNEL); |
| 847 | + if (!sta) |
| 848 | + return -ENOMEM; |
| 849 | + |
| 850 | + msta = (struct mt7915_sta *)sta->drv_priv; |
| 851 | + ed = mt76_testmode_entry_data(phy->mt76, &msta->wcid); |
| 852 | + memcpy(ed, &td->ed, sizeof(*ed)); |
| 853 | + |
| 854 | + if (phy->mt76->chandef.chan->band == NL80211_BAND_5GHZ) { |
| 855 | + sband = &phy->mt76->sband_5g.sband; |
| 856 | + sdata = phy->iftype[NL80211_BAND_5GHZ]; |
| 857 | + } else if (phy->mt76->chandef.chan->band == NL80211_BAND_6GHZ) { |
| 858 | + sband = &phy->mt76->sband_6g.sband; |
| 859 | + sdata = phy->iftype[NL80211_BAND_6GHZ]; |
| 860 | + } else { |
| 861 | + sband = &phy->mt76->sband_2g.sband; |
| 862 | + sdata = phy->iftype[NL80211_BAND_2GHZ]; |
| 863 | + } |
| 864 | + |
| 865 | + memcpy(sta->addr, ed->addr[0], ETH_ALEN); |
| 866 | + if (phy->test.bf_en) { |
| 867 | + u8 addr[ETH_ALEN] = {0x00, 0x11, 0x11, 0x11, 0x11, 0x11}; |
| 868 | + |
| 869 | + memcpy(sta->addr, addr, ETH_ALEN); |
| 870 | + } |
| 871 | + |
| 872 | + if (td->tx_rate_mode >= MT76_TM_TX_MODE_HT) |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 873 | + memcpy(&sta->deflink.ht_cap, &sband->ht_cap, sizeof(sta->deflink.ht_cap)); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 874 | + if (td->tx_rate_mode >= MT76_TM_TX_MODE_VHT) |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 875 | + memcpy(&sta->deflink.vht_cap, &sband->vht_cap, sizeof(sta->deflink.vht_cap)); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 876 | + if (td->tx_rate_mode >= MT76_TM_TX_MODE_HE_SU) |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 877 | + memcpy(&sta->deflink.he_cap, &sdata[NL80211_IFTYPE_STATION].he_cap, |
| 878 | + sizeof(sta->deflink.he_cap)); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 879 | + sta->aid = aid; |
| 880 | + sta->wme = 1; |
| 881 | + |
| 882 | + ret = mt7915_mac_sta_add(&phy->dev->mt76, phy->monitor_vif, sta); |
| 883 | + if (ret) { |
| 884 | + kfree(sta); |
| 885 | + return ret; |
| 886 | + } |
| 887 | + |
| 888 | + /* prevent from starting tx ba session */ |
| 889 | + for (tid = 0; tid < 8; tid++) |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 890 | + set_bit(tid, &msta->wcid.ampdu_state); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 891 | + |
| 892 | + list_add_tail(&msta->wcid.list, &td->tm_entry_list); |
| 893 | + td->entry_num++; |
| 894 | + |
| 895 | + return 0; |
| 896 | +} |
| 897 | + |
| 898 | +static void |
| 899 | +mt7915_tm_entry_remove(struct mt7915_phy *phy, u8 aid) |
| 900 | +{ |
| 901 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 902 | + struct mt76_wcid *wcid, *tmp; |
| 903 | + |
| 904 | + if (list_empty(&td->tm_entry_list)) |
| 905 | + return; |
| 906 | + |
| 907 | + list_for_each_entry_safe(wcid, tmp, &td->tm_entry_list, list) { |
| 908 | + struct mt76_testmode_entry_data *ed; |
| 909 | + struct mt7915_dev *dev = phy->dev; |
| 910 | + struct ieee80211_sta *sta; |
| 911 | + |
| 912 | + ed = mt76_testmode_entry_data(phy->mt76, wcid); |
| 913 | + if (aid && ed->aid != aid) |
| 914 | + continue; |
| 915 | + |
| 916 | + sta = wcid_to_sta(wcid); |
| 917 | + mt7915_mac_sta_remove(&dev->mt76, phy->monitor_vif, sta); |
| 918 | + mt76_wcid_mask_clear(dev->mt76.wcid_mask, wcid->idx); |
| 919 | + |
| 920 | + list_del_init(&wcid->list); |
| 921 | + kfree(sta); |
| 922 | + phy->mt76->test.entry_num--; |
| 923 | + } |
| 924 | +} |
| 925 | + |
| 926 | +static int |
| 927 | +mt7915_tm_set_entry(struct mt7915_phy *phy) |
| 928 | +{ |
| 929 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 930 | + struct mt76_testmode_entry_data *ed; |
| 931 | + struct mt76_wcid *wcid; |
| 932 | + |
| 933 | + if (!td->aid) { |
| 934 | + if (td->state > MT76_TM_STATE_IDLE) |
| 935 | + mt76_testmode_set_state(phy->mt76, MT76_TM_STATE_IDLE); |
| 936 | + mt7915_tm_entry_remove(phy, td->aid); |
| 937 | + return 0; |
| 938 | + } |
| 939 | + |
| 940 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) { |
| 941 | + if (ed->aid == td->aid) { |
| 942 | + struct sk_buff *skb; |
| 943 | + |
| 944 | + local_bh_disable(); |
| 945 | + skb = ed->tx_skb; |
| 946 | + memcpy(ed, &td->ed, sizeof(*ed)); |
| 947 | + ed->tx_skb = skb; |
| 948 | + local_bh_enable(); |
| 949 | + |
| 950 | + return 0; |
| 951 | + } |
| 952 | + } |
| 953 | + |
| 954 | + return mt7915_tm_entry_add(phy, td->aid); |
| 955 | +} |
| 956 | + |
| 957 | +static void |
| 958 | +mt7915_tm_update_entry(struct mt7915_phy *phy) |
| 959 | +{ |
| 960 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 961 | + struct mt76_testmode_entry_data *ed, tmp; |
| 962 | + struct mt76_wcid *wcid, *last; |
| 963 | + |
| 964 | + if (!td->aid || phy->test.bf_en) |
| 965 | + return; |
| 966 | + |
| 967 | + memcpy(&tmp, &td->ed, sizeof(tmp)); |
| 968 | + last = list_last_entry(&td->tm_entry_list, |
| 969 | + struct mt76_wcid, list); |
| 970 | + |
| 971 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) { |
| 972 | + memcpy(&td->ed, ed, sizeof(td->ed)); |
| 973 | + mt7915_tm_entry_remove(phy, td->aid); |
| 974 | + mt7915_tm_entry_add(phy, td->aid); |
| 975 | + if (wcid == last) |
| 976 | + break; |
| 977 | + } |
| 978 | + |
| 979 | + memcpy(&td->ed, &tmp, sizeof(td->ed)); |
| 980 | +} |
| 981 | + |
| 982 | +static int |
| 983 | +mt7915_tm_txbf_init(struct mt7915_phy *phy, u16 *val) |
| 984 | +{ |
| 985 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 986 | + struct mt7915_dev *dev = phy->dev; |
| 987 | + bool enable = val[0]; |
| 988 | + void *phase_cal, *pfmu_data, *pfmu_tag; |
| 989 | + u8 addr[ETH_ALEN] = {0x00, 0x22, 0x22, 0x22, 0x22, 0x22}; |
| 990 | + |
| 991 | + if (!enable) { |
| 992 | + phy->test.bf_en = 0; |
| 993 | + return 0; |
| 994 | + } |
| 995 | + |
| 996 | + if (!dev->test.txbf_phase_cal) { |
| 997 | + phase_cal = devm_kzalloc(dev->mt76.dev, |
| 998 | + sizeof(struct mt7915_tm_txbf_phase) * |
| 999 | + MAX_PHASE_GROUP_NUM, |
| 1000 | + GFP_KERNEL); |
| 1001 | + if (!phase_cal) |
| 1002 | + return -ENOMEM; |
| 1003 | + |
| 1004 | + dev->test.txbf_phase_cal = phase_cal; |
| 1005 | + } |
| 1006 | + |
| 1007 | + if (!dev->test.txbf_pfmu_data) { |
| 1008 | + pfmu_data = devm_kzalloc(dev->mt76.dev, 512, GFP_KERNEL); |
| 1009 | + if (!pfmu_data) |
| 1010 | + return -ENOMEM; |
| 1011 | + |
| 1012 | + dev->test.txbf_pfmu_data = pfmu_data; |
| 1013 | + } |
| 1014 | + |
| 1015 | + if (!dev->test.txbf_pfmu_tag) { |
| 1016 | + pfmu_tag = devm_kzalloc(dev->mt76.dev, |
| 1017 | + sizeof(struct mt7915_tm_pfmu_tag), GFP_KERNEL); |
| 1018 | + if (!pfmu_tag) |
| 1019 | + return -ENOMEM; |
| 1020 | + |
| 1021 | + dev->test.txbf_pfmu_tag = pfmu_tag; |
| 1022 | + } |
| 1023 | + |
| 1024 | + memcpy(phy->monitor_vif->addr, addr, ETH_ALEN); |
| 1025 | + mt7915_mcu_add_dev_info(phy, phy->monitor_vif, true); |
| 1026 | + |
| 1027 | + td->tx_rate_mode = MT76_TM_TX_MODE_HT; |
| 1028 | + td->tx_mpdu_len = 1024; |
| 1029 | + td->tx_rate_sgi = 0; |
| 1030 | + td->tx_ipg = 100; |
| 1031 | + phy->test.bf_en = 1; |
| 1032 | + |
| 1033 | + return mt7915_tm_set_trx(phy, TM_MAC_TX, true); |
| 1034 | +} |
| 1035 | + |
| 1036 | +static int |
| 1037 | +mt7915_tm_txbf_phase_comp(struct mt7915_phy *phy, u16 *val) |
| 1038 | +{ |
| 1039 | + struct mt7915_dev *dev = phy->dev; |
| 1040 | + struct { |
| 1041 | + u8 category; |
| 1042 | + u8 wlan_idx_lo; |
| 1043 | + u8 bw; |
| 1044 | + u8 jp_band; |
| 1045 | + u8 dbdc_idx; |
| 1046 | + bool read_from_e2p; |
| 1047 | + bool disable; |
| 1048 | + u8 wlan_idx_hi; |
| 1049 | + u8 buf[40]; |
| 1050 | + } __packed req = { |
| 1051 | + .category = MT_BF_IBF_PHASE_COMP, |
| 1052 | + .bw = val[0], |
| 1053 | + .jp_band = (val[2] == 1) ? 1 : 0, |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1054 | + .dbdc_idx = phy->mt76->band_idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1055 | + .read_from_e2p = val[3], |
| 1056 | + .disable = val[4], |
| 1057 | + }; |
| 1058 | + struct mt7915_tm_txbf_phase *phase = |
| 1059 | + (struct mt7915_tm_txbf_phase *)dev->test.txbf_phase_cal; |
| 1060 | + |
| 1061 | + wait_event_timeout(dev->mt76.tx_wait, phase[val[2]].status != 0, HZ); |
| 1062 | + memcpy(req.buf, &phase[val[2]].phase, sizeof(req.buf)); |
| 1063 | + |
| 1064 | + pr_info("ibf cal process: phase comp info\n"); |
| 1065 | + print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1, |
| 1066 | + &req, sizeof(req), 0); |
| 1067 | + |
| 1068 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), &req, |
| 1069 | + sizeof(req), true); |
| 1070 | +} |
| 1071 | + |
| 1072 | +static int |
| 1073 | +mt7915_tm_txbf_profile_tag_read(struct mt7915_phy *phy, u8 pfmu_idx) |
| 1074 | +{ |
| 1075 | + struct mt7915_dev *dev = phy->dev; |
| 1076 | + struct { |
| 1077 | + u8 format_id; |
| 1078 | + u8 pfmu_idx; |
| 1079 | + bool bfer; |
| 1080 | + u8 dbdc_idx; |
| 1081 | + } __packed req = { |
| 1082 | + .format_id = MT_BF_PFMU_TAG_READ, |
| 1083 | + .pfmu_idx = pfmu_idx, |
| 1084 | + .bfer = 1, |
| 1085 | + .dbdc_idx = phy != &dev->phy, |
| 1086 | + }; |
| 1087 | + struct mt7915_tm_pfmu_tag *tag = phy->dev->test.txbf_pfmu_tag; |
| 1088 | + |
| 1089 | + tag->t1.pfmu_idx = 0; |
| 1090 | + |
| 1091 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), &req, |
| 1092 | + sizeof(req), true); |
| 1093 | +} |
| 1094 | + |
| 1095 | +static int |
| 1096 | +mt7915_tm_txbf_profile_tag_write(struct mt7915_phy *phy, u8 pfmu_idx, |
| 1097 | + struct mt7915_tm_pfmu_tag *tag) |
| 1098 | +{ |
| 1099 | + struct mt7915_dev *dev = phy->dev; |
| 1100 | + struct { |
| 1101 | + u8 format_id; |
| 1102 | + u8 pfmu_idx; |
| 1103 | + bool bfer; |
| 1104 | + u8 dbdc_idx; |
| 1105 | + u8 buf[64]; |
| 1106 | + } __packed req = { |
| 1107 | + .format_id = MT_BF_PFMU_TAG_WRITE, |
| 1108 | + .pfmu_idx = pfmu_idx, |
| 1109 | + .bfer = 1, |
| 1110 | + .dbdc_idx = phy != &dev->phy, |
| 1111 | + }; |
| 1112 | + |
| 1113 | + memcpy(req.buf, tag, sizeof(*tag)); |
| 1114 | + wait_event_timeout(dev->mt76.tx_wait, tag->t1.pfmu_idx != 0, HZ); |
| 1115 | + |
| 1116 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), &req, |
| 1117 | + sizeof(req), false); |
| 1118 | +} |
| 1119 | + |
| 1120 | +static int |
| 1121 | +mt7915_tm_txbf_apply_tx(struct mt7915_phy *phy, u16 wlan_idx, bool ebf, |
| 1122 | + bool ibf, bool phase_cal) |
| 1123 | +{ |
| 1124 | +#define to_wcid_lo(id) FIELD_GET(GENMASK(7, 0), (u16)id) |
| 1125 | +#define to_wcid_hi(id) FIELD_GET(GENMASK(9, 8), (u16)id) |
| 1126 | + struct mt7915_dev *dev = phy->dev; |
| 1127 | + struct { |
| 1128 | + u8 category; |
| 1129 | + u8 wlan_idx_lo; |
| 1130 | + bool ebf; |
| 1131 | + bool ibf; |
| 1132 | + bool mu_txbf; |
| 1133 | + bool phase_cal; |
| 1134 | + u8 wlan_idx_hi; |
| 1135 | + u8 _rsv; |
| 1136 | + } __packed req = { |
| 1137 | + .category = MT_BF_DATA_PACKET_APPLY, |
| 1138 | + .wlan_idx_lo = to_wcid_lo(wlan_idx), |
| 1139 | + .ebf = ebf, |
| 1140 | + .ibf = ibf, |
| 1141 | + .phase_cal = phase_cal, |
| 1142 | + .wlan_idx_hi = to_wcid_hi(wlan_idx), |
| 1143 | + }; |
| 1144 | + |
| 1145 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), &req, |
| 1146 | + sizeof(req), false); |
| 1147 | +} |
| 1148 | + |
| 1149 | +static int mt7915_tm_txbf_set_rate(struct mt7915_phy *phy, |
| 1150 | + struct mt76_wcid *wcid) |
| 1151 | +{ |
| 1152 | + struct mt7915_dev *dev = phy->dev; |
| 1153 | + struct mt76_testmode_entry_data *ed = mt76_testmode_entry_data(phy->mt76, wcid); |
| 1154 | + struct ieee80211_sta *sta = wcid_to_sta(wcid); |
| 1155 | + struct sta_phy rate = {}; |
| 1156 | + |
| 1157 | + if (!sta) |
| 1158 | + return 0; |
| 1159 | + |
| 1160 | + rate.type = MT_PHY_TYPE_HT; |
| 1161 | + rate.bw = mt7915_tm_chan_bw(phy->mt76->chandef.width); |
| 1162 | + rate.nss = ed->tx_rate_nss; |
| 1163 | + rate.mcs = ed->tx_rate_idx; |
| 1164 | + rate.ldpc = (rate.bw || ed->tx_rate_ldpc) * GENMASK(2, 0); |
| 1165 | + |
| 1166 | + return mt7915_mcu_set_fixed_rate_ctrl(dev, phy->monitor_vif, sta, |
| 1167 | + &rate, RATE_PARAM_FIXED); |
| 1168 | +} |
| 1169 | + |
| 1170 | +static int |
| 1171 | +mt7915_tm_txbf_set_tx(struct mt7915_phy *phy, u16 *val) |
| 1172 | +{ |
| 1173 | + bool bf_on = val[0], update = val[3]; |
| 1174 | + /* u16 wlan_idx = val[2]; */ |
| 1175 | + struct mt7915_tm_pfmu_tag *tag = phy->dev->test.txbf_pfmu_tag; |
| 1176 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1177 | + struct mt76_wcid *wcid; |
| 1178 | + |
| 1179 | + if (bf_on) { |
| 1180 | + mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, false); |
| 1181 | + mt7915_tm_txbf_profile_tag_read(phy, 2); |
| 1182 | + tag->t1.invalid_prof = false; |
| 1183 | + mt7915_tm_txbf_profile_tag_write(phy, 2, tag); |
| 1184 | + |
| 1185 | + phy->test.bf_ever_en = true; |
| 1186 | + |
| 1187 | + if (update) |
| 1188 | + mt7915_tm_txbf_apply_tx(phy, 1, 0, 1, 1); |
| 1189 | + } else { |
| 1190 | + if (!phy->test.bf_ever_en) { |
| 1191 | + if (update) |
| 1192 | + mt7915_tm_txbf_apply_tx(phy, 1, 0, 0, 0); |
| 1193 | + } else { |
| 1194 | + phy->test.bf_ever_en = false; |
| 1195 | + |
| 1196 | + mt7915_tm_txbf_profile_tag_read(phy, 2); |
| 1197 | + tag->t1.invalid_prof = true; |
| 1198 | + mt7915_tm_txbf_profile_tag_write(phy, 2, tag); |
| 1199 | + } |
| 1200 | + } |
| 1201 | + |
| 1202 | + wcid = list_first_entry(&td->tm_entry_list, struct mt76_wcid, list); |
| 1203 | + mt7915_tm_txbf_set_rate(phy, wcid); |
| 1204 | + |
| 1205 | + return 0; |
| 1206 | +} |
| 1207 | + |
| 1208 | +static int |
| 1209 | +mt7915_tm_txbf_profile_update(struct mt7915_phy *phy, u16 *val, bool ebf) |
| 1210 | +{ |
| 1211 | + static const u8 mode_to_lm[] = { |
| 1212 | + [MT76_TM_TX_MODE_CCK] = 0, |
| 1213 | + [MT76_TM_TX_MODE_OFDM] = 0, |
| 1214 | + [MT76_TM_TX_MODE_HT] = 1, |
| 1215 | + [MT76_TM_TX_MODE_VHT] = 2, |
| 1216 | + [MT76_TM_TX_MODE_HE_SU] = 3, |
| 1217 | + [MT76_TM_TX_MODE_HE_EXT_SU] = 3, |
| 1218 | + [MT76_TM_TX_MODE_HE_TB] = 3, |
| 1219 | + [MT76_TM_TX_MODE_HE_MU] = 3, |
| 1220 | + }; |
| 1221 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1222 | + struct mt76_wcid *wcid; |
| 1223 | + struct ieee80211_vif *vif = phy->monitor_vif; |
| 1224 | + struct mt7915_tm_pfmu_tag *tag = phy->dev->test.txbf_pfmu_tag; |
| 1225 | + u8 pfmu_idx = val[0], nc = val[2], nr; |
| 1226 | + int ret; |
| 1227 | + |
| 1228 | + if (td->tx_antenna_mask == 3) |
| 1229 | + nr = 1; |
| 1230 | + else if (td->tx_antenna_mask == 7) |
| 1231 | + nr = 2; |
| 1232 | + else |
| 1233 | + nr = 3; |
| 1234 | + |
| 1235 | + memset(tag, 0, sizeof(*tag)); |
| 1236 | + tag->t1.pfmu_idx = pfmu_idx; |
| 1237 | + tag->t1.ebf = ebf; |
| 1238 | + tag->t1.nr = nr; |
| 1239 | + tag->t1.nc = nc; |
| 1240 | + tag->t1.invalid_prof = true; |
| 1241 | + |
| 1242 | + tag->t1.snr_sts4 = 0xc0; |
| 1243 | + tag->t1.snr_sts5 = 0xff; |
| 1244 | + tag->t1.snr_sts6 = 0xff; |
| 1245 | + tag->t1.snr_sts7 = 0xff; |
| 1246 | + |
| 1247 | + if (ebf) { |
| 1248 | + tag->t1.row_id1 = 0; |
| 1249 | + tag->t1.row_id2 = 1; |
| 1250 | + tag->t1.row_id3 = 2; |
| 1251 | + tag->t1.row_id4 = 3; |
| 1252 | + tag->t1.lm = mode_to_lm[MT76_TM_TX_MODE_HT]; |
| 1253 | + } else { |
| 1254 | + tag->t1.row_id1 = 4; |
| 1255 | + tag->t1.row_id2 = 5; |
| 1256 | + tag->t1.row_id3 = 6; |
| 1257 | + tag->t1.row_id4 = 7; |
| 1258 | + tag->t1.lm = mode_to_lm[MT76_TM_TX_MODE_OFDM]; |
| 1259 | + |
| 1260 | + tag->t2.ibf_timeout = 0xff; |
| 1261 | + tag->t2.ibf_nr = nr; |
| 1262 | + } |
| 1263 | + |
| 1264 | + ret = mt7915_tm_txbf_profile_tag_write(phy, pfmu_idx, tag); |
| 1265 | + if (ret) |
| 1266 | + return ret; |
| 1267 | + |
| 1268 | + wcid = list_first_entry(&td->tm_entry_list, struct mt76_wcid, list); |
| 1269 | + ret = mt7915_tm_add_txbf(phy, vif, wcid_to_sta(wcid), pfmu_idx, nr, nc, ebf); |
| 1270 | + if (ret) |
| 1271 | + return ret; |
| 1272 | + |
| 1273 | + if (!ebf) |
| 1274 | + return mt7915_tm_txbf_apply_tx(phy, 1, false, true, true); |
| 1275 | + |
| 1276 | + return 0; |
| 1277 | +} |
| 1278 | + |
| 1279 | +static int |
| 1280 | +mt7915_tm_txbf_phase_cal(struct mt7915_phy *phy, u16 *val) |
| 1281 | +{ |
| 1282 | +#define GROUP_L 0 |
| 1283 | +#define GROUP_M 1 |
| 1284 | +#define GROUP_H 2 |
| 1285 | + struct mt7915_dev *dev = phy->dev; |
| 1286 | + struct { |
| 1287 | + u8 category; |
| 1288 | + u8 group_l_m_n; |
| 1289 | + u8 group; |
| 1290 | + bool sx2; |
| 1291 | + u8 cal_type; |
| 1292 | + u8 lna_gain_level; |
| 1293 | + u8 _rsv[2]; |
| 1294 | + } __packed req = { |
| 1295 | + .category = MT_BF_PHASE_CAL, |
| 1296 | + .group = val[0], |
| 1297 | + .group_l_m_n = val[1], |
| 1298 | + .sx2 = val[2], |
| 1299 | + .cal_type = val[3], |
| 1300 | + .lna_gain_level = 0, /* for test purpose */ |
| 1301 | + }; |
| 1302 | + struct mt7915_tm_txbf_phase *phase = |
| 1303 | + (struct mt7915_tm_txbf_phase *)dev->test.txbf_phase_cal; |
| 1304 | + |
| 1305 | + phase[req.group].status = 0; |
| 1306 | + |
| 1307 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), &req, |
| 1308 | + sizeof(req), true); |
| 1309 | +} |
| 1310 | + |
| 1311 | +int mt7915_tm_txbf_status_read(struct mt7915_dev *dev, struct sk_buff *skb) |
| 1312 | +{ |
| 1313 | +#define BF_PFMU_TAG 16 |
| 1314 | +#define BF_CAL_PHASE 21 |
| 1315 | + u8 format_id; |
| 1316 | + |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 1317 | + skb_pull(skb, sizeof(struct mt76_connac2_mcu_rxd)); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1318 | + format_id = *(u8 *)skb->data; |
| 1319 | + |
| 1320 | + if (format_id == BF_PFMU_TAG) { |
| 1321 | + struct mt7915_tm_pfmu_tag *tag = dev->test.txbf_pfmu_tag; |
| 1322 | + |
| 1323 | + skb_pull(skb, 8); |
| 1324 | + memcpy(tag, skb->data, sizeof(struct mt7915_tm_pfmu_tag)); |
| 1325 | + } else if (format_id == BF_CAL_PHASE) { |
| 1326 | + struct mt7915_tm_ibf_cal_info *cal; |
| 1327 | + struct mt7915_tm_txbf_phase *phase = |
| 1328 | + (struct mt7915_tm_txbf_phase *)dev->test.txbf_phase_cal; |
| 1329 | + |
| 1330 | + cal = (struct mt7915_tm_ibf_cal_info *)skb->data; |
| 1331 | + switch (cal->cal_type) { |
| 1332 | + case IBF_PHASE_CAL_NORMAL: |
| 1333 | + case IBF_PHASE_CAL_NORMAL_INSTRUMENT: |
| 1334 | + if (cal->group_l_m_n != GROUP_M) |
| 1335 | + break; |
| 1336 | + phase = &phase[cal->group]; |
| 1337 | + memcpy(&phase->phase, cal->buf + 16, sizeof(phase->phase)); |
| 1338 | + phase->status = cal->status; |
| 1339 | + break; |
| 1340 | + case IBF_PHASE_CAL_VERIFY: |
| 1341 | + case IBF_PHASE_CAL_VERIFY_INSTRUMENT: |
| 1342 | + break; |
| 1343 | + default: |
| 1344 | + break; |
| 1345 | + } |
| 1346 | + } |
| 1347 | + |
| 1348 | + wake_up(&dev->mt76.tx_wait); |
| 1349 | + |
| 1350 | + return 0; |
| 1351 | +} |
| 1352 | + |
| 1353 | +static int |
| 1354 | +mt7915_tm_txbf_profile_update_all(struct mt7915_phy *phy, u16 *val) |
| 1355 | +{ |
| 1356 | + struct mt76_testmode_data *td = &phy->mt76->test; |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1357 | + u8 nss = hweight8(td->tx_antenna_mask); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1358 | + u16 pfmu_idx = val[0]; |
| 1359 | + u16 subc_id = val[1]; |
| 1360 | + u16 angle11 = val[2]; |
| 1361 | + u16 angle21 = val[3]; |
| 1362 | + u16 angle31 = val[4]; |
| 1363 | + u16 angle41 = val[5]; |
| 1364 | + s16 phi11 = 0, phi21 = 0, phi31 = 0; |
| 1365 | + struct mt7915_tm_pfmu_data *pfmu_data; |
| 1366 | + |
| 1367 | + if (subc_id > 63) |
| 1368 | + return -EINVAL; |
| 1369 | + |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1370 | + if (nss == 2) { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1371 | + phi11 = (s16)(angle21 - angle11); |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1372 | + } else if (nss == 3) { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1373 | + phi11 = (s16)(angle31 - angle11); |
| 1374 | + phi21 = (s16)(angle31 - angle21); |
| 1375 | + } else { |
| 1376 | + phi11 = (s16)(angle41 - angle11); |
| 1377 | + phi21 = (s16)(angle41 - angle21); |
| 1378 | + phi31 = (s16)(angle41 - angle31); |
| 1379 | + } |
| 1380 | + |
| 1381 | + pfmu_data = (struct mt7915_tm_pfmu_data *)phy->dev->test.txbf_pfmu_data; |
| 1382 | + pfmu_data = &pfmu_data[subc_id]; |
| 1383 | + |
| 1384 | + if (subc_id < 32) |
| 1385 | + pfmu_data->subc_idx = cpu_to_le16(subc_id + 224); |
| 1386 | + else |
| 1387 | + pfmu_data->subc_idx = cpu_to_le16(subc_id - 32); |
| 1388 | + pfmu_data->phi11 = cpu_to_le16(phi11); |
| 1389 | + pfmu_data->phi21 = cpu_to_le16(phi21); |
| 1390 | + pfmu_data->phi31 = cpu_to_le16(phi31); |
| 1391 | + |
| 1392 | + if (subc_id == 63) { |
| 1393 | + struct mt7915_dev *dev = phy->dev; |
| 1394 | + struct { |
| 1395 | + u8 format_id; |
| 1396 | + u8 pfmu_idx; |
| 1397 | + u8 dbdc_idx; |
| 1398 | + u8 _rsv; |
| 1399 | + u8 buf[512]; |
| 1400 | + } __packed req = { |
| 1401 | + .format_id = MT_BF_PROFILE_WRITE_ALL, |
| 1402 | + .pfmu_idx = pfmu_idx, |
| 1403 | + .dbdc_idx = phy != &dev->phy, |
| 1404 | + }; |
| 1405 | + |
| 1406 | + memcpy(req.buf, dev->test.txbf_pfmu_data, 512); |
| 1407 | + |
| 1408 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(TXBF_ACTION), |
| 1409 | + &req, sizeof(req), true); |
| 1410 | + } |
| 1411 | + |
| 1412 | + return 0; |
| 1413 | +} |
| 1414 | + |
| 1415 | +static int |
| 1416 | +mt7915_tm_txbf_e2p_update(struct mt7915_phy *phy) |
| 1417 | +{ |
| 1418 | + struct mt7915_tm_txbf_phase *phase, *p; |
| 1419 | + struct mt7915_dev *dev = phy->dev; |
| 1420 | + u8 *eeprom = dev->mt76.eeprom.data; |
| 1421 | + u16 offset; |
| 1422 | + bool is_7976; |
| 1423 | + int i; |
| 1424 | + |
| 1425 | + is_7976 = mt7915_check_adie(dev, false) || is_mt7916(&dev->mt76); |
| 1426 | + offset = is_7976 ? 0x60a : 0x651; |
| 1427 | + |
| 1428 | + phase = (struct mt7915_tm_txbf_phase *)dev->test.txbf_phase_cal; |
| 1429 | + for (i = 0; i < MAX_PHASE_GROUP_NUM; i++) { |
| 1430 | + p = &phase[i]; |
| 1431 | + |
| 1432 | + if (!p->status) |
| 1433 | + continue; |
| 1434 | + |
| 1435 | + /* copy phase cal data to eeprom */ |
| 1436 | + memcpy(eeprom + offset + i * sizeof(p->phase), &p->phase, |
| 1437 | + sizeof(p->phase)); |
| 1438 | + } |
| 1439 | + |
| 1440 | + return 0; |
| 1441 | +} |
| 1442 | + |
| 1443 | +static int |
| 1444 | +mt7915_tm_set_txbf(struct mt7915_phy *phy) |
| 1445 | +{ |
| 1446 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1447 | + u16 *val = td->txbf_param; |
| 1448 | + |
| 1449 | + pr_info("ibf cal process: act = %u, val = %u, %u, %u, %u, %u\n", |
| 1450 | + td->txbf_act, val[0], val[1], val[2], val[3], val[4]); |
| 1451 | + |
| 1452 | + switch (td->txbf_act) { |
| 1453 | + case MT76_TM_TXBF_ACT_INIT: |
| 1454 | + return mt7915_tm_txbf_init(phy, val); |
| 1455 | + case MT76_TM_TXBF_ACT_UPDATE_CH: |
| 1456 | + mt7915_tm_update_channel(phy); |
| 1457 | + break; |
| 1458 | + case MT76_TM_TXBF_ACT_PHASE_COMP: |
| 1459 | + return mt7915_tm_txbf_phase_comp(phy, val); |
| 1460 | + case MT76_TM_TXBF_ACT_TX_PREP: |
| 1461 | + return mt7915_tm_txbf_set_tx(phy, val); |
| 1462 | + case MT76_TM_TXBF_ACT_IBF_PROF_UPDATE: |
| 1463 | + return mt7915_tm_txbf_profile_update(phy, val, false); |
| 1464 | + case MT76_TM_TXBF_ACT_EBF_PROF_UPDATE: |
| 1465 | + return mt7915_tm_txbf_profile_update(phy, val, true); |
| 1466 | + case MT76_TM_TXBF_ACT_PHASE_CAL: |
| 1467 | + return mt7915_tm_txbf_phase_cal(phy, val); |
| 1468 | + case MT76_TM_TXBF_ACT_PROF_UPDATE_ALL: |
| 1469 | + return mt7915_tm_txbf_profile_update_all(phy, val); |
| 1470 | + case MT76_TM_TXBF_ACT_E2P_UPDATE: |
| 1471 | + return mt7915_tm_txbf_e2p_update(phy); |
| 1472 | + default: |
| 1473 | + break; |
| 1474 | + }; |
| 1475 | + |
| 1476 | + return 0; |
| 1477 | +} |
| 1478 | + |
| 1479 | static int |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 1480 | mt7915_tm_set_wmm_qid(struct mt7915_phy *phy, u8 qid, u8 aifs, u8 cw_min, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1481 | - u16 cw_max, u16 txop) |
| 1482 | + u16 cw_max, u16 txop, u8 tx_cmd) |
| 1483 | { |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 1484 | struct mt7915_vif *mvif = (struct mt7915_vif *)phy->monitor_vif->drv_priv; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1485 | - struct mt7915_mcu_tx req = { .total = 1 }; |
| 1486 | + struct mt7915_mcu_tx req = { |
| 1487 | + .valid = true, |
| 1488 | + .mode = tx_cmd, |
| 1489 | + .total = 1, |
| 1490 | + }; |
| 1491 | struct edca *e = &req.edca[0]; |
| 1492 | |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 1493 | e->queue = qid + mvif->mt76.wmm_idx * MT76_CONNAC_MAX_WMM_SETS; |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1494 | @@ -263,7 +1057,8 @@ done: |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1495 | |
developer | aace7f5 | 2022-06-24 13:40:42 +0800 | [diff] [blame] | 1496 | return mt7915_tm_set_wmm_qid(phy, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1497 | mt76_connac_lmac_mapping(IEEE80211_AC_BE), |
| 1498 | - aifsn, cw, cw, 0); |
| 1499 | + aifsn, cw, cw, 0, |
| 1500 | + mode == MT76_TM_TX_MODE_HE_MU); |
| 1501 | } |
| 1502 | |
| 1503 | static int |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1504 | @@ -339,7 +1134,7 @@ mt7915_tm_set_tx_len(struct mt7915_phy *phy, u32 tx_time) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1505 | bitrate = cfg80211_calculate_bitrate(&rate); |
| 1506 | tx_len = bitrate * tx_time / 10 / 8; |
| 1507 | |
| 1508 | - ret = mt76_testmode_alloc_skb(phy->mt76, tx_len); |
| 1509 | + ret = mt76_testmode_init_skb(phy->mt76, tx_len, &td->tx_skb, td->addr); |
| 1510 | if (ret) |
| 1511 | return ret; |
| 1512 | |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1513 | @@ -458,64 +1253,227 @@ mt7915_tm_init(struct mt7915_phy *phy, bool en) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1514 | |
| 1515 | phy->mt76->test.flag |= MT_TM_FW_RX_COUNT; |
| 1516 | |
| 1517 | - if (!en) |
| 1518 | + if (!en) { |
| 1519 | mt7915_tm_set_tam_arb(phy, en, 0); |
| 1520 | + |
| 1521 | + phy->mt76->test.aid = 0; |
| 1522 | + phy->mt76->test.tx_mpdu_len = 0; |
| 1523 | + phy->test.bf_en = 0; |
| 1524 | + mt7915_tm_set_entry(phy); |
| 1525 | + } |
| 1526 | +} |
| 1527 | + |
| 1528 | +static bool |
| 1529 | +mt7915_tm_check_skb(struct mt7915_phy *phy) |
| 1530 | +{ |
| 1531 | + struct mt76_testmode_entry_data *ed; |
| 1532 | + struct mt76_wcid *wcid; |
| 1533 | + |
| 1534 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) { |
| 1535 | + struct ieee80211_tx_info *info; |
| 1536 | + |
| 1537 | + if (!ed->tx_skb) |
| 1538 | + return false; |
| 1539 | + |
| 1540 | + info = IEEE80211_SKB_CB(ed->tx_skb); |
| 1541 | + info->control.vif = phy->monitor_vif; |
| 1542 | + } |
| 1543 | + |
| 1544 | + return true; |
| 1545 | +} |
| 1546 | + |
| 1547 | +static int |
| 1548 | +mt7915_tm_set_ba(struct mt7915_phy *phy) |
| 1549 | +{ |
| 1550 | + struct mt7915_dev *dev = phy->dev; |
| 1551 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1552 | + struct mt76_wcid *wcid; |
| 1553 | + struct ieee80211_vif *vif = phy->monitor_vif; |
| 1554 | + struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv; |
| 1555 | + struct ieee80211_ampdu_params params = { .buf_size = 256 }; |
| 1556 | + |
| 1557 | + list_for_each_entry(wcid, &td->tm_entry_list, list) { |
| 1558 | + int tid, ret; |
| 1559 | + |
| 1560 | + params.sta = wcid_to_sta(wcid); |
| 1561 | + for (tid = 0; tid < 8; tid++) { |
| 1562 | + params.tid = tid; |
| 1563 | + ret = mt7915_mcu_add_tx_ba(phy->dev, ¶ms, true); |
| 1564 | + if (ret) |
| 1565 | + return ret; |
| 1566 | + } |
| 1567 | + } |
| 1568 | + |
| 1569 | + mt76_wr(dev, MT_AGG_AALCR0(mvif->mt76.band_idx, mvif->mt76.wmm_idx), |
| 1570 | + 0x01010101); |
| 1571 | + |
| 1572 | + return 0; |
| 1573 | +} |
| 1574 | + |
| 1575 | +static int |
| 1576 | +mt7915_tm_set_muru_cfg(struct mt7915_phy *phy, struct mt7915_tm_muru *muru) |
| 1577 | +{ |
| 1578 | +/* #define MURU_SET_MANUAL_CFG 100 */ |
| 1579 | + struct mt7915_dev *dev = phy->dev; |
| 1580 | + struct { |
| 1581 | + __le32 cmd; |
| 1582 | + struct mt7915_tm_muru muru; |
| 1583 | + } __packed req = { |
| 1584 | + .cmd = cpu_to_le32(MURU_SET_MANUAL_CFG), |
| 1585 | + }; |
| 1586 | + |
| 1587 | + memcpy(&req.muru, muru, sizeof(struct mt7915_tm_muru)); |
| 1588 | + |
| 1589 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(MURU_CTRL), &req, |
| 1590 | + sizeof(req), false); |
| 1591 | +} |
| 1592 | + |
| 1593 | +static int |
| 1594 | +mt7915_tm_set_muru_dl(struct mt7915_phy *phy) |
| 1595 | +{ |
| 1596 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1597 | + struct mt76_testmode_entry_data *ed; |
| 1598 | + struct mt76_wcid *wcid; |
| 1599 | + struct cfg80211_chan_def *chandef = &phy->mt76->chandef; |
| 1600 | + struct ieee80211_vif *vif = phy->monitor_vif; |
| 1601 | + struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv; |
| 1602 | + struct mt7915_tm_muru muru = {}; |
| 1603 | + struct mt7915_tm_muru_comm *comm = &muru.comm; |
| 1604 | + struct mt7915_tm_muru_dl *dl = &muru.dl; |
| 1605 | + int i; |
| 1606 | + |
| 1607 | + comm->ppdu_format = MURU_PPDU_HE_MU; |
| 1608 | + comm->band = mvif->mt76.band_idx; |
| 1609 | + comm->wmm_idx = mvif->mt76.wmm_idx; |
| 1610 | + comm->spe_idx = phy->test.spe_idx; |
| 1611 | + |
| 1612 | + dl->bw = mt7915_tm_chan_bw(chandef->width); |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 1613 | + dl->gi = td->tx_rate_sgi; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1614 | + dl->ltf = td->tx_ltf; |
| 1615 | + dl->tx_mode = MT_PHY_TYPE_HE_MU; |
| 1616 | + |
| 1617 | + for (i = 0; i < sizeof(dl->ru); i++) |
| 1618 | + dl->ru[i] = 0x71; |
| 1619 | + |
| 1620 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) { |
| 1621 | + struct mt7915_tm_muru_dl_usr *dl_usr = &dl->usr[dl->user_num]; |
| 1622 | + |
| 1623 | + dl_usr->wlan_idx = cpu_to_le16(wcid->idx); |
| 1624 | + dl_usr->ru_alloc_seg = ed->aid < 8 ? 0 : 1; |
| 1625 | + dl_usr->ru_idx = ed->ru_idx; |
| 1626 | + dl_usr->mcs = ed->tx_rate_idx; |
| 1627 | + dl_usr->nss = ed->tx_rate_nss - 1; |
| 1628 | + dl_usr->ldpc = ed->tx_rate_ldpc; |
| 1629 | + dl->ru[dl->user_num] = ed->ru_alloc; |
| 1630 | + |
| 1631 | + dl->user_num++; |
| 1632 | + } |
| 1633 | + |
developer | c07d01e | 2023-05-05 13:45:43 +0800 | [diff] [blame] | 1634 | + muru.cfg_comm = cpu_to_le32(MURU_COMM_SET_TM); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1635 | + muru.cfg_dl = cpu_to_le32(MURU_DL_SET); |
| 1636 | + |
| 1637 | + return mt7915_tm_set_muru_cfg(phy, &muru); |
| 1638 | +} |
| 1639 | + |
| 1640 | +static int |
| 1641 | +mt7915_tm_set_muru_pkt_cnt(struct mt7915_phy *phy, bool enable, u32 tx_count) |
| 1642 | +{ |
| 1643 | +#define MURU_SET_TX_PKT_CNT 105 |
| 1644 | +#define MURU_SET_TX_EN 106 |
| 1645 | + struct mt7915_dev *dev = phy->dev; |
| 1646 | + struct { |
| 1647 | + __le32 cmd; |
| 1648 | + u8 band; |
| 1649 | + u8 enable; |
| 1650 | + u8 _rsv[2]; |
| 1651 | + __le32 tx_count; |
| 1652 | + } __packed req = { |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1653 | + .band = phy->mt76->band_idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1654 | + .enable = enable, |
| 1655 | + .tx_count = enable ? cpu_to_le32(tx_count) : 0, |
| 1656 | + }; |
| 1657 | + int ret; |
| 1658 | + |
| 1659 | + req.cmd = enable ? cpu_to_le32(MURU_SET_TX_PKT_CNT) : |
| 1660 | + cpu_to_le32(MURU_SET_TX_EN); |
| 1661 | + |
| 1662 | + ret = mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(MURU_CTRL), &req, |
| 1663 | + sizeof(req), false); |
| 1664 | + if (ret) |
| 1665 | + return ret; |
| 1666 | + |
| 1667 | + req.cmd = enable ? cpu_to_le32(MURU_SET_TX_EN) : |
| 1668 | + cpu_to_le32(MURU_SET_TX_PKT_CNT); |
| 1669 | + |
| 1670 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(MURU_CTRL), &req, |
| 1671 | + sizeof(req), false); |
| 1672 | } |
| 1673 | |
| 1674 | static void |
| 1675 | -mt7915_tm_update_channel(struct mt7915_phy *phy) |
| 1676 | +mt7915_tm_tx_frames_mu(struct mt7915_phy *phy, bool enable) |
| 1677 | { |
| 1678 | - mutex_unlock(&phy->dev->mt76.mutex); |
| 1679 | - mt7915_set_channel(phy); |
| 1680 | - mutex_lock(&phy->dev->mt76.mutex); |
| 1681 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1682 | |
| 1683 | - mt7915_mcu_set_chan_info(phy, MCU_EXT_CMD(SET_RX_PATH)); |
| 1684 | + if (enable) { |
| 1685 | + struct mt7915_dev *dev = phy->dev; |
| 1686 | + |
| 1687 | + mt7915_tm_set_ba(phy); |
| 1688 | + mt7915_tm_set_muru_dl(phy); |
| 1689 | + mt76_rr(dev, MT_MIB_DR8(phy != &dev->phy)); |
| 1690 | + } else { |
| 1691 | + /* set to zero for counting real tx free num */ |
| 1692 | + td->tx_done = 0; |
| 1693 | + } |
| 1694 | + |
| 1695 | + mt7915_tm_set_muru_pkt_cnt(phy, enable, td->tx_count); |
| 1696 | + usleep_range(100000, 200000); |
| 1697 | } |
| 1698 | |
| 1699 | static void |
developer | d497569 | 2022-07-15 18:30:03 +0800 | [diff] [blame] | 1700 | mt7915_tm_set_tx_frames(struct mt7915_phy *phy, bool en) |
| 1701 | { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1702 | struct mt76_testmode_data *td = &phy->mt76->test; |
| 1703 | - struct mt7915_dev *dev = phy->dev; |
| 1704 | - struct ieee80211_tx_info *info; |
| 1705 | - u8 duty_cycle = td->tx_duty_cycle; |
| 1706 | - u32 tx_time = td->tx_time; |
| 1707 | - u32 ipg = td->tx_ipg; |
| 1708 | |
| 1709 | mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, false); |
| 1710 | - mt7915_tm_clean_hwq(phy, dev->mt76.global_wcid.idx); |
| 1711 | + mt7915_tm_set_trx(phy, TM_MAC_TX, false); |
| 1712 | |
| 1713 | if (en) { |
| 1714 | - mt7915_tm_update_channel(phy); |
| 1715 | + u32 tx_time = td->tx_time, ipg = td->tx_ipg; |
| 1716 | + u8 duty_cycle = td->tx_duty_cycle; |
| 1717 | + |
| 1718 | + if (!phy->test.bf_en) |
| 1719 | + mt7915_tm_update_channel(phy); |
| 1720 | |
developer | d497569 | 2022-07-15 18:30:03 +0800 | [diff] [blame] | 1721 | if (td->tx_spe_idx) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1722 | phy->test.spe_idx = td->tx_spe_idx; |
developer | d497569 | 2022-07-15 18:30:03 +0800 | [diff] [blame] | 1723 | else |
| 1724 | phy->test.spe_idx = mt76_connac_spe_idx(td->tx_antenna_mask); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1725 | - } |
| 1726 | |
| 1727 | - mt7915_tm_set_tam_arb(phy, en, |
| 1728 | - td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU); |
| 1729 | + /* if all three params are set, duty_cycle will be ignored */ |
| 1730 | + if (duty_cycle && tx_time && !ipg) { |
| 1731 | + ipg = tx_time * 100 / duty_cycle - tx_time; |
| 1732 | + } else if (duty_cycle && !tx_time && ipg) { |
| 1733 | + if (duty_cycle < 100) |
| 1734 | + tx_time = duty_cycle * ipg / (100 - duty_cycle); |
| 1735 | + } |
| 1736 | |
| 1737 | - /* if all three params are set, duty_cycle will be ignored */ |
| 1738 | - if (duty_cycle && tx_time && !ipg) { |
| 1739 | - ipg = tx_time * 100 / duty_cycle - tx_time; |
| 1740 | - } else if (duty_cycle && !tx_time && ipg) { |
| 1741 | - if (duty_cycle < 100) |
| 1742 | - tx_time = duty_cycle * ipg / (100 - duty_cycle); |
| 1743 | - } |
| 1744 | + mt7915_tm_set_ipg_params(phy, ipg, td->tx_rate_mode); |
| 1745 | + mt7915_tm_set_tx_len(phy, tx_time); |
| 1746 | |
| 1747 | - mt7915_tm_set_ipg_params(phy, ipg, td->tx_rate_mode); |
| 1748 | - mt7915_tm_set_tx_len(phy, tx_time); |
| 1749 | + if (ipg) |
| 1750 | + td->tx_queued_limit = MT76_TM_TIMEOUT * 1000000 / ipg / 2; |
| 1751 | |
| 1752 | - if (ipg) |
| 1753 | - td->tx_queued_limit = MT76_TM_TIMEOUT * 1000000 / ipg / 2; |
| 1754 | + if (!mt7915_tm_check_skb(phy)) |
| 1755 | + return; |
| 1756 | + } else { |
| 1757 | + mt7915_tm_clean_hwq(phy); |
| 1758 | + } |
| 1759 | |
| 1760 | - if (!en || !td->tx_skb) |
| 1761 | - return; |
| 1762 | + mt7915_tm_set_tam_arb(phy, en, |
| 1763 | + td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU); |
| 1764 | |
| 1765 | - info = IEEE80211_SKB_CB(td->tx_skb); |
| 1766 | - info->control.vif = phy->monitor_vif; |
| 1767 | + if (td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 1768 | + mt7915_tm_tx_frames_mu(phy, en); |
| 1769 | |
| 1770 | mt7915_tm_set_trx(phy, TM_MAC_TX, en); |
| 1771 | } |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1772 | @@ -544,10 +1502,6 @@ mt7915_tm_get_rx_stats(struct mt7915_phy *phy, bool clear) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1773 | return ret; |
| 1774 | |
| 1775 | rs_band = (struct mt7915_tm_rx_stat_band *)skb->data; |
| 1776 | - /* pr_info("mdrdy_cnt = %d\n", le32_to_cpu(rs_band->mdrdy_cnt)); */ |
| 1777 | - /* pr_info("fcs_err = %d\n", le16_to_cpu(rs_band->fcs_err)); */ |
| 1778 | - /* pr_info("len_mismatch = %d\n", le16_to_cpu(rs_band->len_mismatch)); */ |
| 1779 | - /* pr_info("fcs_ok = %d\n", le16_to_cpu(rs_band->fcs_succ)); */ |
| 1780 | |
| 1781 | if (!clear) { |
developer | 4df64ba | 2022-09-01 14:44:55 +0800 | [diff] [blame] | 1782 | enum mt76_rxq_id q = req.band ? MT_RXQ_BAND1 : MT_RXQ_MAIN; |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1783 | @@ -562,13 +1516,61 @@ mt7915_tm_get_rx_stats(struct mt7915_phy *phy, bool clear) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1784 | return 0; |
| 1785 | } |
| 1786 | |
| 1787 | +static int |
| 1788 | +mt7915_tm_set_rx_user_idx(struct mt7915_phy *phy, u8 aid) |
| 1789 | +{ |
| 1790 | + struct mt7915_dev *dev = phy->dev; |
| 1791 | + struct mt76_wcid *wcid = NULL; |
| 1792 | + struct mt76_testmode_entry_data *ed; |
| 1793 | + struct { |
| 1794 | + u8 band; |
| 1795 | + u8 _rsv; |
| 1796 | + __le16 wlan_idx; |
| 1797 | + } __packed req = { |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1798 | + .band = phy->mt76->band_idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1799 | + }; |
| 1800 | + |
| 1801 | + mt76_tm_for_each_entry(phy->mt76, wcid, ed) |
| 1802 | + if (ed->aid == aid) |
| 1803 | + break; |
| 1804 | + |
| 1805 | + if (!wcid) |
| 1806 | + return -EINVAL; |
| 1807 | + |
| 1808 | + req.wlan_idx = cpu_to_le16(wcid->idx); |
| 1809 | + |
| 1810 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(RX_STAT_USER_CTRL), |
| 1811 | + &req, sizeof(req), false); |
| 1812 | +} |
| 1813 | + |
| 1814 | +static int |
| 1815 | +mt7915_tm_set_muru_aid(struct mt7915_phy *phy, u16 aid) |
| 1816 | +{ |
| 1817 | + struct mt7915_dev *dev = phy->dev; |
| 1818 | + struct mt7915_tm_cmd req = { |
| 1819 | + .testmode_en = 1, |
| 1820 | + .param_idx = MCU_ATE_SET_MU_RX_AID, |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1821 | + .param.rx_aid.band = cpu_to_le32(phy->mt76->band_idx), |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1822 | + .param.rx_aid.aid = cpu_to_le16(aid), |
| 1823 | + }; |
| 1824 | + |
| 1825 | + return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req, |
| 1826 | + sizeof(req), false); |
| 1827 | +} |
| 1828 | + |
| 1829 | static void |
| 1830 | mt7915_tm_set_rx_frames(struct mt7915_phy *phy, bool en) |
| 1831 | { |
| 1832 | + struct mt76_testmode_data *td = &phy->mt76->test; |
| 1833 | + |
| 1834 | + mt7915_tm_set_trx(phy, TM_MAC_TX, false); |
| 1835 | mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, false); |
| 1836 | |
| 1837 | if (en) { |
| 1838 | - mt7915_tm_update_channel(phy); |
| 1839 | + if (!phy->test.bf_en) |
| 1840 | + mt7915_tm_update_channel(phy); |
| 1841 | + if (td->aid) |
| 1842 | + mt7915_tm_set_rx_user_idx(phy, td->aid); |
| 1843 | |
| 1844 | /* read-clear */ |
| 1845 | mt7915_tm_get_rx_stats(phy, true); |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1846 | @@ -576,9 +1578,12 @@ mt7915_tm_set_rx_frames(struct mt7915_phy *phy, bool en) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1847 | /* clear fw count */ |
| 1848 | mt7915_tm_set_phy_count(phy, 0); |
| 1849 | mt7915_tm_set_phy_count(phy, 1); |
| 1850 | - |
| 1851 | - mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, en); |
| 1852 | } |
| 1853 | + |
| 1854 | + if (td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 1855 | + mt7915_tm_set_muru_aid(phy, en ? td->aid : 0xf800); |
| 1856 | + |
| 1857 | + mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, en); |
| 1858 | } |
| 1859 | |
| 1860 | static int |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1861 | @@ -617,34 +1622,7 @@ mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1862 | tx_cont->tx_ant = td->tx_antenna_mask; |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1863 | tx_cont->band = band; |
developer | 3d5faf2 | 2022-11-29 18:07:22 +0800 | [diff] [blame] | 1864 | |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1865 | - switch (chandef->width) { |
| 1866 | - case NL80211_CHAN_WIDTH_40: |
| 1867 | - tx_cont->bw = CMD_CBW_40MHZ; |
| 1868 | - break; |
| 1869 | - case NL80211_CHAN_WIDTH_80: |
| 1870 | - tx_cont->bw = CMD_CBW_80MHZ; |
| 1871 | - break; |
| 1872 | - case NL80211_CHAN_WIDTH_80P80: |
| 1873 | - tx_cont->bw = CMD_CBW_8080MHZ; |
| 1874 | - break; |
| 1875 | - case NL80211_CHAN_WIDTH_160: |
| 1876 | - tx_cont->bw = CMD_CBW_160MHZ; |
| 1877 | - break; |
| 1878 | - case NL80211_CHAN_WIDTH_5: |
| 1879 | - tx_cont->bw = CMD_CBW_5MHZ; |
| 1880 | - break; |
| 1881 | - case NL80211_CHAN_WIDTH_10: |
| 1882 | - tx_cont->bw = CMD_CBW_10MHZ; |
| 1883 | - break; |
| 1884 | - case NL80211_CHAN_WIDTH_20: |
| 1885 | - tx_cont->bw = CMD_CBW_20MHZ; |
| 1886 | - break; |
| 1887 | - case NL80211_CHAN_WIDTH_20_NOHT: |
| 1888 | - tx_cont->bw = CMD_CBW_20MHZ; |
| 1889 | - break; |
| 1890 | - default: |
| 1891 | - return -EINVAL; |
| 1892 | - } |
| 1893 | + tx_cont->bw = mt7915_tm_chan_bw(chandef->width); |
| 1894 | |
| 1895 | if (!en) { |
developer | 2458e70 | 2022-12-13 15:52:04 +0800 | [diff] [blame] | 1896 | req.op.rf.param.func_data = cpu_to_le32(band); |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1897 | @@ -728,6 +1706,12 @@ mt7915_tm_update_params(struct mt7915_phy *phy, u32 changed) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1898 | mt7915_tm_set_freq_offset(phy, en, en ? td->freq_offset : 0); |
| 1899 | if (changed & BIT(TM_CHANGED_TXPOWER)) |
| 1900 | mt7915_tm_set_tx_power(phy); |
| 1901 | + if (changed & BIT(TM_CHANGED_AID)) |
| 1902 | + mt7915_tm_set_entry(phy); |
| 1903 | + if (changed & BIT(TM_CHANGED_CFG)) |
| 1904 | + mt7915_tm_set_cfg(phy); |
| 1905 | + if (changed & BIT(TM_CHANGED_TXBF_ACT)) |
| 1906 | + mt7915_tm_set_txbf(phy); |
| 1907 | } |
| 1908 | |
| 1909 | static int |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1910 | @@ -737,6 +1721,11 @@ mt7915_tm_set_state(struct mt76_phy *mphy, enum mt76_testmode_state state) |
developer | f8871e8 | 2023-03-08 17:22:32 +0800 | [diff] [blame] | 1911 | struct mt7915_phy *phy = mphy->priv; |
| 1912 | enum mt76_testmode_state prev_state = td->state; |
| 1913 | |
| 1914 | + if (!phy->monitor_vif) { |
| 1915 | + dev_err(phy->dev->mt76.dev, "Please make sure monitor interface is up\n"); |
| 1916 | + return -ENOTCONN; |
| 1917 | + } |
| 1918 | + |
| 1919 | mphy->test.state = state; |
| 1920 | |
| 1921 | if (prev_state == MT76_TM_STATE_TX_FRAMES || |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1922 | @@ -757,7 +1746,7 @@ mt7915_tm_set_state(struct mt76_phy *mphy, enum mt76_testmode_state state) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 1923 | (state == MT76_TM_STATE_OFF && |
| 1924 | prev_state == MT76_TM_STATE_IDLE)) { |
| 1925 | u32 changed = 0; |
| 1926 | - int i; |
| 1927 | + int i, ret; |
| 1928 | |
| 1929 | for (i = 0; i < ARRAY_SIZE(tm_change_map); i++) { |
| 1930 | u16 cur = tm_change_map[i]; |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1931 | @@ -766,6 +1755,10 @@ mt7915_tm_set_state(struct mt76_phy *mphy, enum mt76_testmode_state state) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 1932 | changed |= BIT(i); |
| 1933 | } |
| 1934 | |
| 1935 | + ret = mt7915_tm_check_antenna(phy); |
| 1936 | + if (ret) |
| 1937 | + return ret; |
| 1938 | + |
| 1939 | mt7915_tm_update_params(phy, changed); |
| 1940 | } |
| 1941 | |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1942 | @@ -778,10 +1771,8 @@ mt7915_tm_set_params(struct mt76_phy *mphy, struct nlattr **tb, |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 1943 | { |
| 1944 | struct mt76_testmode_data *td = &mphy->test; |
| 1945 | struct mt7915_phy *phy = mphy->priv; |
| 1946 | - struct mt7915_dev *dev = phy->dev; |
| 1947 | - u32 chainmask = mphy->chainmask, changed = 0; |
| 1948 | - bool ext_phy = phy != &dev->phy; |
| 1949 | - int i; |
| 1950 | + u32 changed = 0; |
| 1951 | + int i, ret; |
| 1952 | |
| 1953 | BUILD_BUG_ON(NUM_TM_CHANGED >= 32); |
| 1954 | |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1955 | @@ -789,9 +1780,9 @@ mt7915_tm_set_params(struct mt76_phy *mphy, struct nlattr **tb, |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 1956 | td->state == MT76_TM_STATE_OFF) |
| 1957 | return 0; |
| 1958 | |
| 1959 | - chainmask = ext_phy ? chainmask >> dev->chainshift : chainmask; |
| 1960 | - if (td->tx_antenna_mask > chainmask) |
| 1961 | - return -EINVAL; |
| 1962 | + ret = mt7915_tm_check_antenna(phy); |
| 1963 | + if (ret) |
| 1964 | + return ret; |
| 1965 | |
| 1966 | for (i = 0; i < ARRAY_SIZE(tm_change_map); i++) { |
| 1967 | if (tb[tm_change_map[i]]) |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1968 | @@ -807,6 +1798,7 @@ static int |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1969 | mt7915_tm_dump_stats(struct mt76_phy *mphy, struct sk_buff *msg) |
| 1970 | { |
| 1971 | struct mt7915_phy *phy = mphy->priv; |
| 1972 | + struct mt7915_dev *dev = phy->dev; |
| 1973 | void *rx, *rssi; |
| 1974 | int i; |
| 1975 | |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 1976 | @@ -852,11 +1844,75 @@ mt7915_tm_dump_stats(struct mt76_phy *mphy, struct sk_buff *msg) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1977 | |
| 1978 | nla_nest_end(msg, rx); |
| 1979 | |
| 1980 | + if (mphy->test.tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 1981 | + mphy->test.tx_done += mt76_rr(dev, MT_MIB_DR8(phy != &dev->phy)); |
| 1982 | + |
| 1983 | return mt7915_tm_get_rx_stats(phy, false); |
| 1984 | } |
| 1985 | |
| 1986 | +static int |
| 1987 | +mt7915_tm_write_back_to_efuse(struct mt7915_dev *dev) |
| 1988 | +{ |
| 1989 | + struct mt7915_mcu_eeprom_info req = {}; |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 1990 | + u8 read_buf[MT76_TM_EEPROM_BLOCK_SIZE], *eeprom = dev->mt76.eeprom.data; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 1991 | + int i, ret = -EINVAL; |
| 1992 | + |
| 1993 | + /* prevent from damaging chip id in efuse */ |
| 1994 | + if (mt76_chip(&dev->mt76) != get_unaligned_le16(eeprom)) |
| 1995 | + goto out; |
| 1996 | + |
| 1997 | + for (i = 0; i < mt7915_eeprom_size(dev); i += MT76_TM_EEPROM_BLOCK_SIZE) { |
| 1998 | + req.addr = cpu_to_le32(i); |
developer | ae9afc0 | 2023-04-06 18:07:42 +0800 | [diff] [blame] | 1999 | + memcpy(req.data, eeprom + i, MT76_TM_EEPROM_BLOCK_SIZE); |
| 2000 | + |
| 2001 | + ret = mt7915_mcu_get_eeprom(dev, i, read_buf); |
| 2002 | + if (ret < 0) |
| 2003 | + return ret; |
| 2004 | + |
| 2005 | + if (!memcmp(req.data, read_buf, MT76_TM_EEPROM_BLOCK_SIZE)) |
| 2006 | + continue; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2007 | + |
| 2008 | + ret = mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(EFUSE_ACCESS), |
| 2009 | + &req, sizeof(req), true); |
| 2010 | + if (ret) |
| 2011 | + return ret; |
| 2012 | + } |
| 2013 | + |
| 2014 | +out: |
| 2015 | + return ret; |
| 2016 | +} |
| 2017 | + |
| 2018 | +static int |
| 2019 | +mt7915_tm_set_eeprom(struct mt76_phy *mphy, u32 offset, u8 *val, u8 action) |
| 2020 | +{ |
| 2021 | + struct mt7915_phy *phy = mphy->priv; |
| 2022 | + struct mt7915_dev *dev = phy->dev; |
| 2023 | + u8 *eeprom = dev->mt76.eeprom.data; |
| 2024 | + int ret = 0; |
| 2025 | + |
| 2026 | + if (offset >= mt7915_eeprom_size(dev)) |
| 2027 | + return -EINVAL; |
| 2028 | + |
| 2029 | + switch (action) { |
| 2030 | + case MT76_TM_EEPROM_ACTION_UPDATE_DATA: |
| 2031 | + memcpy(eeprom + offset, val, MT76_TM_EEPROM_BLOCK_SIZE); |
| 2032 | + break; |
| 2033 | + case MT76_TM_EEPROM_ACTION_UPDATE_BUFFER_MODE: |
| 2034 | + ret = mt7915_mcu_set_eeprom(dev, true); |
| 2035 | + break; |
| 2036 | + case MT76_TM_EEPROM_ACTION_WRITE_TO_EFUSE: |
| 2037 | + ret = mt7915_tm_write_back_to_efuse(dev); |
| 2038 | + break; |
| 2039 | + default: |
| 2040 | + break; |
| 2041 | + } |
| 2042 | + |
| 2043 | + return ret; |
| 2044 | +} |
| 2045 | + |
| 2046 | const struct mt76_testmode_ops mt7915_testmode_ops = { |
| 2047 | .set_state = mt7915_tm_set_state, |
| 2048 | .set_params = mt7915_tm_set_params, |
| 2049 | .dump_stats = mt7915_tm_dump_stats, |
| 2050 | + .set_eeprom = mt7915_tm_set_eeprom, |
| 2051 | }; |
| 2052 | diff --git a/mt7915/testmode.h b/mt7915/testmode.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 2053 | index a1c54c8..eb0e043 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2054 | --- a/mt7915/testmode.h |
| 2055 | +++ b/mt7915/testmode.h |
| 2056 | @@ -4,6 +4,8 @@ |
| 2057 | #ifndef __MT7915_TESTMODE_H |
| 2058 | #define __MT7915_TESTMODE_H |
| 2059 | |
| 2060 | +#include "mcu.h" |
| 2061 | + |
| 2062 | struct mt7915_tm_trx { |
| 2063 | u8 type; |
| 2064 | u8 enable; |
| 2065 | @@ -39,6 +41,11 @@ struct mt7915_tm_cfg { |
| 2066 | u8 _rsv[2]; |
| 2067 | }; |
| 2068 | |
| 2069 | +struct mt7915_tm_mu_rx_aid { |
| 2070 | + __le32 band; |
| 2071 | + __le16 aid; |
| 2072 | +}; |
| 2073 | + |
| 2074 | struct mt7915_tm_cmd { |
| 2075 | u8 testmode_en; |
| 2076 | u8 param_idx; |
| 2077 | @@ -50,6 +57,7 @@ struct mt7915_tm_cmd { |
| 2078 | struct mt7915_tm_slot_time slot; |
| 2079 | struct mt7915_tm_clean_txq clean; |
| 2080 | struct mt7915_tm_cfg cfg; |
| 2081 | + struct mt7915_tm_mu_rx_aid rx_aid; |
| 2082 | u8 test[72]; |
| 2083 | } param; |
| 2084 | } __packed; |
| 2085 | @@ -109,6 +117,16 @@ enum { |
| 2086 | TAM_ARB_OP_MODE_FORCE_SU = 5, |
| 2087 | }; |
| 2088 | |
| 2089 | +enum { |
| 2090 | + TM_CBW_20MHZ, |
| 2091 | + TM_CBW_40MHZ, |
| 2092 | + TM_CBW_80MHZ, |
| 2093 | + TM_CBW_10MHZ, |
| 2094 | + TM_CBW_5MHZ, |
| 2095 | + TM_CBW_160MHZ, |
| 2096 | + TM_CBW_8080MHZ, |
| 2097 | +}; |
| 2098 | + |
| 2099 | struct mt7915_tm_rx_stat_band { |
| 2100 | u8 category; |
| 2101 | |
| 2102 | @@ -130,4 +148,264 @@ struct mt7915_tm_rx_stat_band { |
| 2103 | __le16 mdrdy_cnt_ofdm; |
| 2104 | }; |
| 2105 | |
| 2106 | +struct mt7915_tm_muru_comm { |
| 2107 | + u8 ppdu_format; |
| 2108 | + u8 sch_type; |
| 2109 | + u8 band; |
| 2110 | + u8 wmm_idx; |
| 2111 | + u8 spe_idx; |
| 2112 | + u8 proc_type; |
| 2113 | +}; |
| 2114 | + |
| 2115 | +struct mt7915_tm_muru_dl_usr { |
| 2116 | + __le16 wlan_idx; |
| 2117 | + u8 ru_alloc_seg; |
| 2118 | + u8 ru_idx; |
| 2119 | + u8 ldpc; |
| 2120 | + u8 nss; |
| 2121 | + u8 mcs; |
| 2122 | + u8 mu_group_idx; |
| 2123 | + u8 vht_groud_id; |
| 2124 | + u8 vht_up; |
| 2125 | + u8 he_start_stream; |
| 2126 | + u8 he_mu_spatial; |
| 2127 | + u8 ack_policy; |
| 2128 | + __le16 tx_power_alpha; |
| 2129 | +}; |
| 2130 | + |
| 2131 | +struct mt7915_tm_muru_dl { |
| 2132 | + u8 user_num; |
| 2133 | + u8 tx_mode; |
| 2134 | + u8 bw; |
| 2135 | + u8 gi; |
| 2136 | + u8 ltf; |
| 2137 | + /* sigB */ |
| 2138 | + u8 mcs; |
| 2139 | + u8 dcm; |
| 2140 | + u8 cmprs; |
| 2141 | + |
| 2142 | + u8 tx_power; |
| 2143 | + u8 ru[8]; |
| 2144 | + u8 c26[2]; |
| 2145 | + u8 ack_policy; |
| 2146 | + |
| 2147 | + struct mt7915_tm_muru_dl_usr usr[16]; |
| 2148 | +}; |
| 2149 | + |
| 2150 | +struct mt7915_tm_muru_ul_usr { |
| 2151 | + __le16 wlan_idx; |
| 2152 | + u8 ru_alloc; |
| 2153 | + u8 ru_idx; |
| 2154 | + u8 ldpc; |
| 2155 | + u8 nss; |
| 2156 | + u8 mcs; |
| 2157 | + u8 target_rssi; |
| 2158 | + __le32 trig_pkt_size; |
| 2159 | +}; |
| 2160 | + |
| 2161 | +struct mt7915_tm_muru_ul { |
| 2162 | + u8 user_num; |
| 2163 | + |
| 2164 | + /* UL TX */ |
| 2165 | + u8 trig_type; |
| 2166 | + __le16 trig_cnt; |
| 2167 | + __le16 trig_intv; |
| 2168 | + u8 bw; |
| 2169 | + u8 gi_ltf; |
| 2170 | + __le16 ul_len; |
| 2171 | + u8 pad; |
| 2172 | + u8 trig_ta[ETH_ALEN]; |
| 2173 | + u8 ru[8]; |
| 2174 | + u8 c26[2]; |
| 2175 | + |
| 2176 | + struct mt7915_tm_muru_ul_usr usr[16]; |
| 2177 | + /* HE TB RX Debug */ |
| 2178 | + __le32 rx_hetb_nonsf_en_bitmap; |
| 2179 | + __le32 rx_hetb_cfg[2]; |
| 2180 | + |
| 2181 | + /* DL TX */ |
| 2182 | + u8 ba_type; |
| 2183 | +}; |
| 2184 | + |
| 2185 | +struct mt7915_tm_muru { |
| 2186 | + __le32 cfg_comm; |
| 2187 | + __le32 cfg_dl; |
| 2188 | + __le32 cfg_ul; |
| 2189 | + |
| 2190 | + struct mt7915_tm_muru_comm comm; |
| 2191 | + struct mt7915_tm_muru_dl dl; |
| 2192 | + struct mt7915_tm_muru_ul ul; |
| 2193 | +}; |
| 2194 | + |
| 2195 | +#define MURU_PPDU_HE_MU BIT(3) |
| 2196 | + |
| 2197 | +/* Common Config */ |
| 2198 | +/* #define MURU_COMM_PPDU_FMT BIT(0) */ |
| 2199 | +/* #define MURU_COMM_SCH_TYPE BIT(1) */ |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2200 | +/* #define MURU_COMM_BAND BIT(2) */ |
| 2201 | +/* #define MURU_COMM_WMM BIT(3) */ |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2202 | +/* #define MURU_COMM_SPE_IDX BIT(4) */ |
| 2203 | +/* #define MURU_COMM_PROC_TYPE BIT(5) */ |
| 2204 | +/* #define MURU_COMM_SET (MURU_COMM_PPDU_FMT | MURU_COMM_BAND | \ */ |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2205 | +/* MURU_COMM_WMM | MURU_COMM_SPE_IDX) */ |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2206 | +/* DL Config */ |
| 2207 | +#define MURU_DL_BW BIT(0) |
| 2208 | +#define MURU_DL_GI BIT(1) |
| 2209 | +#define MURU_DL_TX_MODE BIT(2) |
| 2210 | +#define MURU_DL_TONE_PLAN BIT(3) |
| 2211 | +#define MURU_DL_USER_CNT BIT(4) |
| 2212 | +#define MURU_DL_LTF BIT(5) |
| 2213 | +#define MURU_DL_SIGB_MCS BIT(6) |
| 2214 | +#define MURU_DL_SIGB_DCM BIT(7) |
| 2215 | +#define MURU_DL_SIGB_CMPRS BIT(8) |
| 2216 | +#define MURU_DL_ACK_POLICY BIT(9) |
| 2217 | +#define MURU_DL_TXPOWER BIT(10) |
| 2218 | +/* DL Per User Config */ |
| 2219 | +#define MURU_DL_USER_WLAN_ID BIT(16) |
| 2220 | +#define MURU_DL_USER_COD BIT(17) |
| 2221 | +#define MURU_DL_USER_MCS BIT(18) |
| 2222 | +#define MURU_DL_USER_NSS BIT(19) |
| 2223 | +#define MURU_DL_USER_RU_ALLOC BIT(20) |
| 2224 | +#define MURU_DL_USER_MUMIMO_GRP BIT(21) |
| 2225 | +#define MURU_DL_USER_MUMIMO_VHT BIT(22) |
| 2226 | +#define MURU_DL_USER_ACK_POLICY BIT(23) |
| 2227 | +#define MURU_DL_USER_MUMIMO_HE BIT(24) |
| 2228 | +#define MURU_DL_USER_PWR_ALPHA BIT(25) |
| 2229 | +#define MURU_DL_SET (GENMASK(7, 0) | GENMASK(20, 16) | BIT(25)) |
| 2230 | + |
| 2231 | +#define MAX_PHASE_GROUP_NUM 9 |
| 2232 | + |
| 2233 | +struct mt7915_tm_txbf_phase { |
| 2234 | + u8 status; |
| 2235 | + struct { |
| 2236 | + u8 r0_uh; |
| 2237 | + u8 r0_h; |
| 2238 | + u8 r0_m; |
| 2239 | + u8 r0_l; |
| 2240 | + u8 r0_ul; |
| 2241 | + u8 r1_uh; |
| 2242 | + u8 r1_h; |
| 2243 | + u8 r1_m; |
| 2244 | + u8 r1_l; |
| 2245 | + u8 r1_ul; |
| 2246 | + u8 r2_uh; |
| 2247 | + u8 r2_h; |
| 2248 | + u8 r2_m; |
| 2249 | + u8 r2_l; |
| 2250 | + u8 r2_ul; |
| 2251 | + u8 r3_uh; |
| 2252 | + u8 r3_h; |
| 2253 | + u8 r3_m; |
| 2254 | + u8 r3_l; |
| 2255 | + u8 r3_ul; |
| 2256 | + u8 r2_uh_sx2; |
| 2257 | + u8 r2_h_sx2; |
| 2258 | + u8 r2_m_sx2; |
| 2259 | + u8 r2_l_sx2; |
| 2260 | + u8 r2_ul_sx2; |
| 2261 | + u8 r3_uh_sx2; |
| 2262 | + u8 r3_h_sx2; |
| 2263 | + u8 r3_m_sx2; |
| 2264 | + u8 r3_l_sx2; |
| 2265 | + u8 r3_ul_sx2; |
| 2266 | + u8 m_t0_h; |
| 2267 | + u8 m_t1_h; |
| 2268 | + u8 m_t2_h; |
| 2269 | + u8 m_t2_h_sx2; |
| 2270 | + u8 r0_reserved; |
| 2271 | + u8 r1_reserved; |
| 2272 | + u8 r2_reserved; |
| 2273 | + u8 r3_reserved; |
| 2274 | + u8 r2_sx2_reserved; |
| 2275 | + u8 r3_sx2_reserved; |
| 2276 | + } phase; |
| 2277 | +}; |
| 2278 | + |
| 2279 | +struct mt7915_tm_pfmu_tag1 { |
| 2280 | + __le32 pfmu_idx:10; |
| 2281 | + __le32 ebf:1; |
| 2282 | + __le32 data_bw:2; |
| 2283 | + __le32 lm:2; |
| 2284 | + __le32 is_mu:1; |
| 2285 | + __le32 nr:3, nc:3; |
| 2286 | + __le32 codebook:2; |
| 2287 | + __le32 ngroup:2; |
| 2288 | + __le32 _rsv:2; |
| 2289 | + __le32 invalid_prof:1; |
| 2290 | + __le32 rmsd:3; |
| 2291 | + |
| 2292 | + __le32 col_id1:6, row_id1:10; |
| 2293 | + __le32 col_id2:6, row_id2:10; |
| 2294 | + __le32 col_id3:6, row_id3:10; |
| 2295 | + __le32 col_id4:6, row_id4:10; |
| 2296 | + |
| 2297 | + __le32 ru_start_id:7; |
| 2298 | + __le32 _rsv1:1; |
| 2299 | + __le32 ru_end_id:7; |
| 2300 | + __le32 _rsv2:1; |
| 2301 | + __le32 mob_cal_en:1; |
| 2302 | + __le32 _rsv3:15; |
| 2303 | + |
| 2304 | + __le32 snr_sts0:8, snr_sts1:8, snr_sts2:8, snr_sts3:8; |
| 2305 | + __le32 snr_sts4:8, snr_sts5:8, snr_sts6:8, snr_sts7:8; |
| 2306 | + |
| 2307 | + __le32 _rsv4; |
| 2308 | +} __packed; |
| 2309 | + |
| 2310 | +struct mt7915_tm_pfmu_tag2 { |
| 2311 | + __le32 smart_ant:24; |
| 2312 | + __le32 se_idx:5; |
| 2313 | + __le32 _rsv:3; |
| 2314 | + |
| 2315 | + __le32 _rsv1:8; |
| 2316 | + __le32 rmsd_thres:3; |
| 2317 | + __le32 _rsv2:5; |
| 2318 | + __le32 ibf_timeout:8; |
| 2319 | + __le32 _rsv3:8; |
| 2320 | + |
| 2321 | + __le32 _rsv4:16; |
| 2322 | + __le32 ibf_data_bw:2; |
| 2323 | + __le32 ibf_nc:3; |
| 2324 | + __le32 ibf_nr:3; |
| 2325 | + __le32 ibf_ru:8; |
| 2326 | + |
| 2327 | + __le32 mob_delta_t:8; |
| 2328 | + __le32 mob_lq_result:7; |
| 2329 | + __le32 _rsv5:1; |
| 2330 | + __le32 _rsv6:16; |
| 2331 | + |
| 2332 | + __le32 _rsv7; |
| 2333 | +} __packed; |
| 2334 | + |
| 2335 | +struct mt7915_tm_pfmu_tag { |
| 2336 | + struct mt7915_tm_pfmu_tag1 t1; |
| 2337 | + struct mt7915_tm_pfmu_tag2 t2; |
| 2338 | +}; |
| 2339 | + |
| 2340 | +struct mt7915_tm_pfmu_data { |
| 2341 | + __le16 subc_idx; |
| 2342 | + __le16 phi11; |
| 2343 | + __le16 phi21; |
| 2344 | + __le16 phi31; |
| 2345 | +}; |
| 2346 | + |
| 2347 | +struct mt7915_tm_ibf_cal_info { |
| 2348 | + u8 format_id; |
| 2349 | + u8 group_l_m_n; |
| 2350 | + u8 group; |
| 2351 | + bool sx2; |
| 2352 | + u8 status; |
| 2353 | + u8 cal_type; |
| 2354 | + u8 _rsv[2]; |
| 2355 | + u8 buf[1000]; |
| 2356 | +} __packed; |
| 2357 | + |
| 2358 | +enum { |
| 2359 | + IBF_PHASE_CAL_UNSPEC, |
| 2360 | + IBF_PHASE_CAL_NORMAL, |
| 2361 | + IBF_PHASE_CAL_VERIFY, |
| 2362 | + IBF_PHASE_CAL_NORMAL_INSTRUMENT, |
| 2363 | + IBF_PHASE_CAL_VERIFY_INSTRUMENT, |
| 2364 | +}; |
| 2365 | + |
| 2366 | #endif |
| 2367 | diff --git a/testmode.c b/testmode.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 2368 | index 1b37392..d2cef5b 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2369 | --- a/testmode.c |
| 2370 | +++ b/testmode.c |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2371 | @@ -28,28 +28,16 @@ const struct nla_policy mt76_tm_policy[NUM_MT76_TM_ATTRS] = { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2372 | }; |
| 2373 | EXPORT_SYMBOL_GPL(mt76_tm_policy); |
| 2374 | |
| 2375 | -void mt76_testmode_tx_pending(struct mt76_phy *phy) |
| 2376 | +static void |
| 2377 | +mt76_testmode_queue_tx(struct mt76_phy *phy, struct mt76_wcid *wcid, |
developer | 3262bf8 | 2022-07-12 11:37:54 +0800 | [diff] [blame] | 2378 | + struct sk_buff *skb, struct mt76_queue *q, int qid, |
| 2379 | + u16 limit) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2380 | { |
| 2381 | struct mt76_testmode_data *td = &phy->test; |
| 2382 | struct mt76_dev *dev = phy->dev; |
| 2383 | - struct mt76_wcid *wcid = &dev->global_wcid; |
| 2384 | - struct sk_buff *skb = td->tx_skb; |
| 2385 | - struct mt76_queue *q; |
| 2386 | - u16 tx_queued_limit; |
| 2387 | - int qid; |
| 2388 | - |
| 2389 | - if (!skb || !td->tx_pending) |
| 2390 | - return; |
| 2391 | + u16 count = limit; |
| 2392 | |
| 2393 | - qid = skb_get_queue_mapping(skb); |
| 2394 | - q = phy->q_tx[qid]; |
| 2395 | - |
| 2396 | - tx_queued_limit = td->tx_queued_limit ? td->tx_queued_limit : 1000; |
| 2397 | - |
| 2398 | - spin_lock_bh(&q->lock); |
| 2399 | - |
| 2400 | - while (td->tx_pending > 0 && |
| 2401 | - td->tx_queued - td->tx_done < tx_queued_limit && |
| 2402 | + while (td->tx_pending > 0 && count && |
| 2403 | q->queued < q->ndesc / 2) { |
| 2404 | int ret; |
| 2405 | |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2406 | @@ -58,13 +46,68 @@ void mt76_testmode_tx_pending(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2407 | if (ret < 0) |
| 2408 | break; |
| 2409 | |
developer | 51e4042 | 2023-03-21 17:28:34 +0800 | [diff] [blame] | 2410 | - td->tx_pending--; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2411 | + count--; |
developer | 51e4042 | 2023-03-21 17:28:34 +0800 | [diff] [blame] | 2412 | + |
| 2413 | + /* tx_count == UINT_MAX for continuous tx */ |
| 2414 | + if (td->tx_count != UINT_MAX) |
| 2415 | + td->tx_pending--; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2416 | td->tx_queued++; |
| 2417 | + |
| 2418 | + if (td->tx_rate_mode != MT76_TM_TX_MODE_HE_MU) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2419 | + if (td->tx_queued - td->tx_done >= limit) |
| 2420 | + break; |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2421 | } |
| 2422 | |
| 2423 | dev->queue_ops->kick(dev, q); |
| 2424 | +} |
| 2425 | + |
| 2426 | +void mt76_testmode_tx_pending(struct mt76_phy *phy) |
| 2427 | +{ |
| 2428 | + struct mt76_testmode_data *td = &phy->test; |
| 2429 | + struct mt76_testmode_entry_data *ed; |
| 2430 | + struct mt76_queue *q; |
| 2431 | + int qid; |
| 2432 | + u16 tx_queued_limit; |
| 2433 | + u32 remain; |
| 2434 | + bool is_mu; |
| 2435 | + |
| 2436 | + if (!td->tx_pending) |
| 2437 | + return; |
| 2438 | + |
| 2439 | + /* tx_queued_limit = td->tx_queued_limit ?: 100; */ |
| 2440 | + tx_queued_limit = 100; |
| 2441 | + |
| 2442 | + if (!td->aid) { |
| 2443 | + qid = skb_get_queue_mapping(td->tx_skb); |
| 2444 | + q = phy->q_tx[qid]; |
| 2445 | + spin_lock_bh(&q->lock); |
| 2446 | + mt76_testmode_queue_tx(phy, &phy->dev->global_wcid, |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2447 | + td->tx_skb, q, qid, tx_queued_limit); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2448 | + spin_unlock_bh(&q->lock); |
| 2449 | + |
| 2450 | + return; |
| 2451 | + } |
| 2452 | + |
| 2453 | + is_mu = td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU; |
| 2454 | + ed = mt76_testmode_entry_data(phy, td->cur_entry); |
| 2455 | + qid = skb_get_queue_mapping(ed->tx_skb); |
| 2456 | + q = phy->q_tx[qid]; |
| 2457 | + |
| 2458 | + spin_lock_bh(&q->lock); |
| 2459 | + |
| 2460 | + remain = is_mu ? 1 : (td->tx_pending % td->tx_count) ?: td->tx_count; |
| 2461 | + if (remain < tx_queued_limit) |
| 2462 | + tx_queued_limit = remain; |
| 2463 | + |
developer | 3262bf8 | 2022-07-12 11:37:54 +0800 | [diff] [blame] | 2464 | + mt76_testmode_queue_tx(phy, td->cur_entry, ed->tx_skb, q, qid, tx_queued_limit); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2465 | + |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2466 | + if ((td->tx_count != UINT_MAX && td->tx_pending % td->tx_count == 0) || is_mu) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2467 | + td->cur_entry = list_next_entry(td->cur_entry, list); |
| 2468 | |
| 2469 | spin_unlock_bh(&q->lock); |
| 2470 | + |
| 2471 | + if (is_mu && td->tx_pending) |
| 2472 | + mt76_worker_schedule(&phy->dev->tx_worker); |
| 2473 | } |
| 2474 | |
| 2475 | static u32 |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2476 | @@ -90,15 +133,31 @@ mt76_testmode_max_mpdu_len(struct mt76_phy *phy, u8 tx_rate_mode) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2477 | } |
| 2478 | |
| 2479 | static void |
| 2480 | -mt76_testmode_free_skb(struct mt76_phy *phy) |
| 2481 | +mt76_testmode_free_skb(struct sk_buff **tx_skb) |
| 2482 | +{ |
| 2483 | + if (!(*tx_skb)) |
| 2484 | + return; |
| 2485 | + |
| 2486 | + dev_kfree_skb(*tx_skb); |
| 2487 | + *tx_skb = NULL; |
| 2488 | +} |
| 2489 | + |
| 2490 | +static void |
| 2491 | +mt76_testmode_free_skb_all(struct mt76_phy *phy) |
| 2492 | { |
| 2493 | struct mt76_testmode_data *td = &phy->test; |
| 2494 | + struct mt76_testmode_entry_data *ed = &td->ed; |
| 2495 | + struct mt76_wcid *wcid; |
| 2496 | + |
| 2497 | + mt76_testmode_free_skb(&ed->tx_skb); |
| 2498 | |
| 2499 | - dev_kfree_skb(td->tx_skb); |
| 2500 | - td->tx_skb = NULL; |
| 2501 | + mt76_tm_for_each_entry(phy, wcid, ed) |
| 2502 | + mt76_testmode_free_skb(&ed->tx_skb); |
| 2503 | } |
| 2504 | |
| 2505 | -int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len) |
| 2506 | +static int |
| 2507 | +mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len, |
| 2508 | + struct sk_buff **tx_skb, u8 (*addr)[ETH_ALEN]) |
| 2509 | { |
| 2510 | #define MT_TXP_MAX_LEN 4095 |
| 2511 | u16 fc = IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA | |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2512 | @@ -119,7 +178,8 @@ int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2513 | nfrags = len / MT_TXP_MAX_LEN; |
| 2514 | head_len = nfrags ? MT_TXP_MAX_LEN : len; |
| 2515 | |
| 2516 | - if (len > IEEE80211_MAX_FRAME_LEN) |
| 2517 | + if (len > IEEE80211_MAX_FRAME_LEN || |
| 2518 | + td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 2519 | fc |= IEEE80211_STYPE_QOS_DATA; |
| 2520 | |
| 2521 | head = alloc_skb(head_len, GFP_KERNEL); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2522 | @@ -128,9 +188,9 @@ int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2523 | |
developer | d497569 | 2022-07-15 18:30:03 +0800 | [diff] [blame] | 2524 | hdr = __skb_put_zero(head, sizeof(*hdr)); |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2525 | hdr->frame_control = cpu_to_le16(fc); |
| 2526 | - memcpy(hdr->addr1, td->addr[0], ETH_ALEN); |
| 2527 | - memcpy(hdr->addr2, td->addr[1], ETH_ALEN); |
| 2528 | - memcpy(hdr->addr3, td->addr[2], ETH_ALEN); |
| 2529 | + memcpy(hdr->addr1, addr[0], ETH_ALEN); |
| 2530 | + memcpy(hdr->addr2, addr[1], ETH_ALEN); |
| 2531 | + memcpy(hdr->addr3, addr[2], ETH_ALEN); |
| 2532 | skb_set_queue_mapping(head, IEEE80211_AC_BE); |
developer | d497569 | 2022-07-15 18:30:03 +0800 | [diff] [blame] | 2533 | get_random_bytes(__skb_put(head, head_len - sizeof(*hdr)), |
| 2534 | head_len - sizeof(*hdr)); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2535 | @@ -154,7 +214,7 @@ int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2536 | |
| 2537 | frag = alloc_skb(frag_len, GFP_KERNEL); |
| 2538 | if (!frag) { |
| 2539 | - mt76_testmode_free_skb(phy); |
| 2540 | + mt76_testmode_free_skb(tx_skb); |
| 2541 | dev_kfree_skb(head); |
| 2542 | return -ENOMEM; |
| 2543 | } |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2544 | @@ -167,15 +227,14 @@ int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2545 | frag_tail = &(*frag_tail)->next; |
| 2546 | } |
| 2547 | |
| 2548 | - mt76_testmode_free_skb(phy); |
| 2549 | - td->tx_skb = head; |
| 2550 | + mt76_testmode_free_skb(tx_skb); |
| 2551 | + *tx_skb = head; |
| 2552 | |
| 2553 | return 0; |
| 2554 | } |
| 2555 | -EXPORT_SYMBOL(mt76_testmode_alloc_skb); |
| 2556 | |
| 2557 | -static int |
| 2558 | -mt76_testmode_tx_init(struct mt76_phy *phy) |
| 2559 | +int mt76_testmode_init_skb(struct mt76_phy *phy, u32 len, |
| 2560 | + struct sk_buff **tx_skb, u8 (*addr)[ETH_ALEN]) |
| 2561 | { |
| 2562 | struct mt76_testmode_data *td = &phy->test; |
| 2563 | struct ieee80211_tx_info *info; |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2564 | @@ -183,7 +242,7 @@ mt76_testmode_tx_init(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2565 | u8 max_nss = hweight8(phy->antenna_mask); |
| 2566 | int ret; |
| 2567 | |
| 2568 | - ret = mt76_testmode_alloc_skb(phy, td->tx_mpdu_len); |
| 2569 | + ret = mt76_testmode_alloc_skb(phy, len, tx_skb, addr); |
| 2570 | if (ret) |
| 2571 | return ret; |
| 2572 | |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2573 | @@ -193,7 +252,7 @@ mt76_testmode_tx_init(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2574 | if (td->tx_antenna_mask) |
| 2575 | max_nss = min_t(u8, max_nss, hweight8(td->tx_antenna_mask)); |
| 2576 | |
| 2577 | - info = IEEE80211_SKB_CB(td->tx_skb); |
| 2578 | + info = IEEE80211_SKB_CB(*tx_skb); |
| 2579 | rate = &info->control.rates[0]; |
| 2580 | rate->count = 1; |
| 2581 | rate->idx = td->tx_rate_idx; |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2582 | @@ -265,6 +324,25 @@ mt76_testmode_tx_init(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2583 | out: |
| 2584 | return 0; |
| 2585 | } |
| 2586 | +EXPORT_SYMBOL(mt76_testmode_init_skb); |
| 2587 | + |
| 2588 | +static int |
| 2589 | +mt76_testmode_tx_init(struct mt76_phy *phy) |
| 2590 | +{ |
| 2591 | + struct mt76_testmode_entry_data *ed; |
| 2592 | + struct mt76_wcid *wcid; |
| 2593 | + |
| 2594 | + mt76_tm_for_each_entry(phy, wcid, ed) { |
| 2595 | + int ret; |
| 2596 | + |
| 2597 | + ret = mt76_testmode_init_skb(phy, ed->tx_mpdu_len, |
| 2598 | + &ed->tx_skb, ed->addr); |
| 2599 | + if (ret) |
| 2600 | + return ret; |
| 2601 | + } |
| 2602 | + |
| 2603 | + return 0; |
| 2604 | +} |
| 2605 | |
| 2606 | static void |
| 2607 | mt76_testmode_tx_start(struct mt76_phy *phy) |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2608 | @@ -275,6 +353,14 @@ mt76_testmode_tx_start(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2609 | td->tx_queued = 0; |
| 2610 | td->tx_done = 0; |
| 2611 | td->tx_pending = td->tx_count; |
| 2612 | + if (td->tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 2613 | + td->tx_pending = 1; |
| 2614 | + if (td->entry_num) { |
| 2615 | + td->tx_pending *= td->entry_num; |
| 2616 | + td->cur_entry = list_first_entry(&td->tm_entry_list, |
| 2617 | + struct mt76_wcid, list); |
| 2618 | + } |
| 2619 | + |
| 2620 | mt76_worker_schedule(&dev->tx_worker); |
| 2621 | } |
| 2622 | |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2623 | @@ -293,7 +379,7 @@ mt76_testmode_tx_stop(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2624 | wait_event_timeout(dev->tx_wait, td->tx_done == td->tx_queued, |
| 2625 | MT76_TM_TIMEOUT * HZ); |
| 2626 | |
| 2627 | - mt76_testmode_free_skb(phy); |
| 2628 | + mt76_testmode_free_skb_all(phy); |
| 2629 | } |
| 2630 | |
| 2631 | static inline void |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2632 | @@ -324,6 +410,8 @@ mt76_testmode_init_defaults(struct mt76_phy *phy) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2633 | memcpy(td->addr[0], phy->macaddr, ETH_ALEN); |
| 2634 | memcpy(td->addr[1], phy->macaddr, ETH_ALEN); |
| 2635 | memcpy(td->addr[2], phy->macaddr, ETH_ALEN); |
| 2636 | + |
| 2637 | + INIT_LIST_HEAD(&phy->test.tm_entry_list); |
| 2638 | } |
| 2639 | |
| 2640 | static int |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2641 | @@ -333,8 +421,12 @@ __mt76_testmode_set_state(struct mt76_phy *phy, enum mt76_testmode_state state) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2642 | struct mt76_dev *dev = phy->dev; |
| 2643 | int err; |
| 2644 | |
| 2645 | - if (prev_state == MT76_TM_STATE_TX_FRAMES) |
| 2646 | + if (prev_state == MT76_TM_STATE_TX_FRAMES) { |
| 2647 | + /* MU needs to clean hwq for free done event */ |
| 2648 | + if (phy->test.tx_rate_mode == MT76_TM_TX_MODE_HE_MU) |
| 2649 | + dev->test_ops->set_state(phy, MT76_TM_STATE_IDLE); |
| 2650 | mt76_testmode_tx_stop(phy); |
| 2651 | + } |
| 2652 | |
| 2653 | if (state == MT76_TM_STATE_TX_FRAMES) { |
| 2654 | err = mt76_testmode_tx_init(phy); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2655 | @@ -404,6 +496,44 @@ mt76_tm_get_u8(struct nlattr *attr, u8 *dest, u8 min, u8 max) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2656 | return 0; |
| 2657 | } |
| 2658 | |
| 2659 | +static int |
| 2660 | +mt76_testmode_set_eeprom(struct mt76_phy *phy, struct nlattr **tb) |
| 2661 | +{ |
| 2662 | + struct mt76_dev *dev = phy->dev; |
| 2663 | + u8 action, val[MT76_TM_EEPROM_BLOCK_SIZE]; |
| 2664 | + u32 offset = 0; |
| 2665 | + int err = -EINVAL; |
| 2666 | + |
| 2667 | + if (!dev->test_ops->set_eeprom) |
| 2668 | + return -EOPNOTSUPP; |
| 2669 | + |
| 2670 | + if (mt76_tm_get_u8(tb[MT76_TM_ATTR_EEPROM_ACTION], &action, |
| 2671 | + 0, MT76_TM_EEPROM_ACTION_MAX)) |
| 2672 | + goto out; |
| 2673 | + |
| 2674 | + if (tb[MT76_TM_ATTR_EEPROM_OFFSET]) { |
| 2675 | + struct nlattr *cur; |
| 2676 | + int rem, idx = 0; |
| 2677 | + |
| 2678 | + offset = nla_get_u32(tb[MT76_TM_ATTR_EEPROM_OFFSET]); |
| 2679 | + if (!!(offset % MT76_TM_EEPROM_BLOCK_SIZE) || |
| 2680 | + !tb[MT76_TM_ATTR_EEPROM_VAL]) |
| 2681 | + goto out; |
| 2682 | + |
| 2683 | + nla_for_each_nested(cur, tb[MT76_TM_ATTR_EEPROM_VAL], rem) { |
| 2684 | + if (nla_len(cur) != 1 || idx >= ARRAY_SIZE(val)) |
| 2685 | + goto out; |
| 2686 | + |
| 2687 | + val[idx++] = nla_get_u8(cur); |
| 2688 | + } |
| 2689 | + } |
| 2690 | + |
| 2691 | + err = dev->test_ops->set_eeprom(phy, offset, val, action); |
| 2692 | + |
| 2693 | +out: |
| 2694 | + return err; |
| 2695 | +} |
| 2696 | + |
| 2697 | int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 2698 | void *data, int len) |
| 2699 | { |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2700 | @@ -427,6 +557,11 @@ int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2701 | |
| 2702 | mutex_lock(&dev->mutex); |
| 2703 | |
| 2704 | + if (tb[MT76_TM_ATTR_EEPROM_ACTION]) { |
| 2705 | + err = mt76_testmode_set_eeprom(phy, tb); |
| 2706 | + goto out; |
| 2707 | + } |
| 2708 | + |
| 2709 | if (tb[MT76_TM_ATTR_RESET]) { |
| 2710 | mt76_testmode_set_state(phy, MT76_TM_STATE_OFF); |
| 2711 | memset(td, 0, sizeof(*td)); |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2712 | @@ -453,7 +588,10 @@ int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2713 | mt76_tm_get_u8(tb[MT76_TM_ATTR_TX_DUTY_CYCLE], |
| 2714 | &td->tx_duty_cycle, 0, 99) || |
| 2715 | mt76_tm_get_u8(tb[MT76_TM_ATTR_TX_POWER_CONTROL], |
| 2716 | - &td->tx_power_control, 0, 1)) |
| 2717 | + &td->tx_power_control, 0, 1) || |
| 2718 | + mt76_tm_get_u8(tb[MT76_TM_ATTR_AID], &td->aid, 0, 16) || |
| 2719 | + mt76_tm_get_u8(tb[MT76_TM_ATTR_RU_ALLOC], &td->ru_alloc, 0, 0xff) || |
| 2720 | + mt76_tm_get_u8(tb[MT76_TM_ATTR_RU_IDX], &td->ru_idx, 0, 68)) |
| 2721 | goto out; |
| 2722 | |
| 2723 | if (tb[MT76_TM_ATTR_TX_LENGTH]) { |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2724 | @@ -485,8 +623,7 @@ int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2725 | |
| 2726 | if (tb[MT76_TM_ATTR_TX_POWER]) { |
| 2727 | struct nlattr *cur; |
| 2728 | - int idx = 0; |
| 2729 | - int rem; |
| 2730 | + int rem, idx = 0; |
| 2731 | |
| 2732 | nla_for_each_nested(cur, tb[MT76_TM_ATTR_TX_POWER], rem) { |
| 2733 | if (nla_len(cur) != 1 || |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2734 | @@ -506,11 +643,45 @@ int mt76_testmode_cmd(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2735 | if (nla_len(cur) != ETH_ALEN || idx >= 3) |
| 2736 | goto out; |
| 2737 | |
| 2738 | - memcpy(td->addr[idx], nla_data(cur), ETH_ALEN); |
| 2739 | + memcpy(td->addr[idx++], nla_data(cur), ETH_ALEN); |
| 2740 | + } |
| 2741 | + } |
| 2742 | + |
| 2743 | + if (tb[MT76_TM_ATTR_CFG]) { |
| 2744 | + struct nlattr *cur; |
| 2745 | + int rem, idx = 0; |
| 2746 | + |
| 2747 | + nla_for_each_nested(cur, tb[MT76_TM_ATTR_CFG], rem) { |
| 2748 | + if (nla_len(cur) != 1 || idx >= 2) |
| 2749 | + goto out; |
| 2750 | + |
| 2751 | + if (idx == 0) |
| 2752 | + td->cfg.type = nla_get_u8(cur); |
| 2753 | + else |
| 2754 | + td->cfg.enable = nla_get_u8(cur); |
| 2755 | idx++; |
| 2756 | } |
| 2757 | } |
| 2758 | |
| 2759 | + if (tb[MT76_TM_ATTR_TXBF_ACT]) { |
| 2760 | + struct nlattr *cur; |
| 2761 | + int rem, idx = 0; |
| 2762 | + |
| 2763 | + if (!tb[MT76_TM_ATTR_TXBF_PARAM] || |
| 2764 | + mt76_tm_get_u8(tb[MT76_TM_ATTR_TXBF_ACT], &td->txbf_act, |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2765 | + 0, MT76_TM_TXBF_ACT_MAX)) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2766 | + goto out; |
| 2767 | + |
| 2768 | + memset(td->txbf_param, 0, sizeof(td->txbf_param)); |
| 2769 | + nla_for_each_nested(cur, tb[MT76_TM_ATTR_TXBF_PARAM], rem) { |
| 2770 | + if (nla_len(cur) != 2 || |
| 2771 | + idx >= ARRAY_SIZE(td->txbf_param)) |
| 2772 | + goto out; |
| 2773 | + |
| 2774 | + td->txbf_param[idx++] = nla_get_u16(cur); |
| 2775 | + } |
| 2776 | + } |
| 2777 | + |
| 2778 | if (dev->test_ops->set_params) { |
| 2779 | err = dev->test_ops->set_params(phy, tb, state); |
| 2780 | if (err) |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2781 | @@ -575,6 +746,7 @@ int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *msg, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2782 | struct mt76_phy *phy = hw->priv; |
| 2783 | struct mt76_dev *dev = phy->dev; |
| 2784 | struct mt76_testmode_data *td = &phy->test; |
| 2785 | + struct mt76_testmode_entry_data *ed = &td->ed; |
| 2786 | struct nlattr *tb[NUM_MT76_TM_ATTRS] = {}; |
| 2787 | int err = 0; |
| 2788 | void *a; |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2789 | @@ -607,6 +779,19 @@ int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *msg, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2790 | goto out; |
| 2791 | } |
| 2792 | |
| 2793 | + if (tb[MT76_TM_ATTR_AID]) { |
| 2794 | + struct mt76_wcid *wcid; |
| 2795 | + u8 aid; |
| 2796 | + |
| 2797 | + err = mt76_tm_get_u8(tb[MT76_TM_ATTR_AID], &aid, 1, 16); |
| 2798 | + if (err) |
| 2799 | + goto out; |
| 2800 | + |
| 2801 | + mt76_tm_for_each_entry(phy, wcid, ed) |
| 2802 | + if (ed->aid == aid) |
| 2803 | + ed = mt76_testmode_entry_data(phy, wcid); |
| 2804 | + } |
| 2805 | + |
| 2806 | mt76_testmode_init_defaults(phy); |
| 2807 | |
| 2808 | err = -EMSGSIZE; |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2809 | @@ -619,12 +804,8 @@ int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *msg, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2810 | goto out; |
| 2811 | |
| 2812 | if (nla_put_u32(msg, MT76_TM_ATTR_TX_COUNT, td->tx_count) || |
| 2813 | - nla_put_u32(msg, MT76_TM_ATTR_TX_LENGTH, td->tx_mpdu_len) || |
| 2814 | nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_MODE, td->tx_rate_mode) || |
| 2815 | - nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_NSS, td->tx_rate_nss) || |
| 2816 | - nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_IDX, td->tx_rate_idx) || |
| 2817 | nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_SGI, td->tx_rate_sgi) || |
| 2818 | - nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_LDPC, td->tx_rate_ldpc) || |
| 2819 | nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_STBC, td->tx_rate_stbc) || |
| 2820 | (mt76_testmode_param_present(td, MT76_TM_ATTR_TX_LTF) && |
| 2821 | nla_put_u8(msg, MT76_TM_ATTR_TX_LTF, td->tx_ltf)) || |
developer | 2b96a9e | 2023-08-09 10:28:15 +0800 | [diff] [blame] | 2822 | @@ -641,7 +822,16 @@ int mt76_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *msg, |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2823 | (mt76_testmode_param_present(td, MT76_TM_ATTR_TX_POWER_CONTROL) && |
| 2824 | nla_put_u8(msg, MT76_TM_ATTR_TX_POWER_CONTROL, td->tx_power_control)) || |
| 2825 | (mt76_testmode_param_present(td, MT76_TM_ATTR_FREQ_OFFSET) && |
| 2826 | - nla_put_u8(msg, MT76_TM_ATTR_FREQ_OFFSET, td->freq_offset))) |
| 2827 | + nla_put_u32(msg, MT76_TM_ATTR_FREQ_OFFSET, td->freq_offset))) |
| 2828 | + goto out; |
| 2829 | + |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2830 | + if (nla_put_u32(msg, MT76_TM_ATTR_TX_LENGTH, ed->tx_mpdu_len) || |
| 2831 | + nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_NSS, ed->tx_rate_nss) || |
| 2832 | + nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_IDX, ed->tx_rate_idx) || |
| 2833 | + nla_put_u8(msg, MT76_TM_ATTR_TX_RATE_LDPC, ed->tx_rate_ldpc) || |
| 2834 | + nla_put_u8(msg, MT76_TM_ATTR_AID, ed->aid) || |
| 2835 | + nla_put_u8(msg, MT76_TM_ATTR_RU_ALLOC, ed->ru_alloc) || |
| 2836 | + nla_put_u8(msg, MT76_TM_ATTR_RU_IDX, ed->ru_idx)) |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2837 | goto out; |
| 2838 | |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2839 | if (mt76_testmode_param_present(td, MT76_TM_ATTR_TX_POWER)) { |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2840 | diff --git a/testmode.h b/testmode.h |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 2841 | index 8961326..8c55fa0 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2842 | --- a/testmode.h |
| 2843 | +++ b/testmode.h |
| 2844 | @@ -6,6 +6,8 @@ |
| 2845 | #define __MT76_TESTMODE_H |
| 2846 | |
| 2847 | #define MT76_TM_TIMEOUT 10 |
| 2848 | +#define MT76_TM_MAX_ENTRY_NUM 16 |
| 2849 | +#define MT76_TM_EEPROM_BLOCK_SIZE 16 |
| 2850 | |
| 2851 | /** |
| 2852 | * enum mt76_testmode_attr - testmode attributes inside NL80211_ATTR_TESTDATA |
| 2853 | @@ -47,6 +49,15 @@ |
| 2854 | * @MT76_TM_ATTR_DRV_DATA: driver specific netlink attrs (nested) |
| 2855 | * |
| 2856 | * @MT76_TM_ATTR_MAC_ADDRS: array of nested MAC addresses (nested) |
| 2857 | + * |
| 2858 | + * @MT76_TM_ATTR_EEPROM_ACTION: eeprom setting actions |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2859 | + * (u8, see &enum mt76_testmode_eeprom_action) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2860 | + * @MT76_TM_ATTR_EEPROM_OFFSET: offset of eeprom data block for writing (u32) |
| 2861 | + * @MT76_TM_ATTR_EEPROM_VAL: values for writing into a 16-byte data block |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2862 | + * (nested, u8 attrs) |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2863 | + * |
| 2864 | + * @MT76_TM_ATTR_CFG: config testmode rf feature (nested, see &mt76_testmode_cfg) |
| 2865 | + * |
| 2866 | */ |
| 2867 | enum mt76_testmode_attr { |
| 2868 | MT76_TM_ATTR_UNSPEC, |
| 2869 | @@ -84,6 +95,17 @@ enum mt76_testmode_attr { |
| 2870 | MT76_TM_ATTR_DRV_DATA, |
| 2871 | |
| 2872 | MT76_TM_ATTR_MAC_ADDRS, |
| 2873 | + MT76_TM_ATTR_AID, |
| 2874 | + MT76_TM_ATTR_RU_ALLOC, |
| 2875 | + MT76_TM_ATTR_RU_IDX, |
| 2876 | + |
| 2877 | + MT76_TM_ATTR_EEPROM_ACTION, |
| 2878 | + MT76_TM_ATTR_EEPROM_OFFSET, |
| 2879 | + MT76_TM_ATTR_EEPROM_VAL, |
| 2880 | + |
| 2881 | + MT76_TM_ATTR_CFG, |
| 2882 | + MT76_TM_ATTR_TXBF_ACT, |
| 2883 | + MT76_TM_ATTR_TXBF_PARAM, |
| 2884 | |
| 2885 | /* keep last */ |
| 2886 | NUM_MT76_TM_ATTRS, |
| 2887 | @@ -198,4 +220,57 @@ enum mt76_testmode_tx_mode { |
| 2888 | |
| 2889 | extern const struct nla_policy mt76_tm_policy[NUM_MT76_TM_ATTRS]; |
| 2890 | |
| 2891 | +/** |
| 2892 | + * enum mt76_testmode_eeprom_action - eeprom setting actions |
| 2893 | + * |
| 2894 | + * @MT76_TM_EEPROM_ACTION_UPDATE_DATA: update rf values to specific |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2895 | + * eeprom data block |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2896 | + * @MT76_TM_EEPROM_ACTION_UPDATE_BUFFER_MODE: send updated eeprom data to fw |
| 2897 | + * @MT76_TM_EEPROM_ACTION_WRITE_TO_EFUSE: write eeprom data back to efuse |
| 2898 | + */ |
| 2899 | +enum mt76_testmode_eeprom_action { |
| 2900 | + MT76_TM_EEPROM_ACTION_UPDATE_DATA, |
| 2901 | + MT76_TM_EEPROM_ACTION_UPDATE_BUFFER_MODE, |
| 2902 | + MT76_TM_EEPROM_ACTION_WRITE_TO_EFUSE, |
| 2903 | + |
| 2904 | + /* keep last */ |
| 2905 | + NUM_MT76_TM_EEPROM_ACTION, |
| 2906 | + MT76_TM_EEPROM_ACTION_MAX = NUM_MT76_TM_EEPROM_ACTION - 1, |
| 2907 | +}; |
| 2908 | + |
| 2909 | +/** |
| 2910 | + * enum mt76_testmode_cfg - packet tx phy mode |
| 2911 | + * |
| 2912 | + * @MT76_TM_EEPROM_ACTION_UPDATE_DATA: update rf values to specific |
developer | 281084d | 2023-06-19 12:03:50 +0800 | [diff] [blame] | 2913 | + * eeprom data block |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2914 | + * @MT76_TM_EEPROM_ACTION_UPDATE_BUFFER_MODE: send updated eeprom data to fw |
| 2915 | + * @MT76_TM_EEPROM_ACTION_WRITE_TO_EFUSE: write eeprom data back to efuse |
| 2916 | + */ |
| 2917 | +enum mt76_testmode_cfg { |
| 2918 | + MT76_TM_CFG_TSSI, |
| 2919 | + MT76_TM_CFG_DPD, |
| 2920 | + MT76_TM_CFG_RATE_POWER_OFFSET, |
| 2921 | + MT76_TM_CFG_THERMAL_COMP, |
| 2922 | + |
| 2923 | + /* keep last */ |
| 2924 | + NUM_MT76_TM_CFG, |
| 2925 | + MT76_TM_CFG_MAX = NUM_MT76_TM_CFG - 1, |
| 2926 | +}; |
| 2927 | + |
| 2928 | +enum mt76_testmode_txbf_act { |
| 2929 | + MT76_TM_TXBF_ACT_INIT, |
| 2930 | + MT76_TM_TXBF_ACT_UPDATE_CH, |
| 2931 | + MT76_TM_TXBF_ACT_PHASE_COMP, |
| 2932 | + MT76_TM_TXBF_ACT_TX_PREP, |
| 2933 | + MT76_TM_TXBF_ACT_IBF_PROF_UPDATE, |
| 2934 | + MT76_TM_TXBF_ACT_EBF_PROF_UPDATE, |
| 2935 | + MT76_TM_TXBF_ACT_PHASE_CAL, |
| 2936 | + MT76_TM_TXBF_ACT_PROF_UPDATE_ALL, |
| 2937 | + MT76_TM_TXBF_ACT_E2P_UPDATE, |
| 2938 | + |
| 2939 | + /* keep last */ |
| 2940 | + NUM_MT76_TM_TXBF_ACT, |
| 2941 | + MT76_TM_TXBF_ACT_MAX = NUM_MT76_TM_TXBF_ACT - 1, |
| 2942 | +}; |
| 2943 | + |
| 2944 | #endif |
| 2945 | diff --git a/tools/fields.c b/tools/fields.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 2946 | index e3f6908..7e564a3 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2947 | --- a/tools/fields.c |
| 2948 | +++ b/tools/fields.c |
| 2949 | @@ -10,6 +10,7 @@ static const char * const testmode_state[] = { |
| 2950 | [MT76_TM_STATE_IDLE] = "idle", |
| 2951 | [MT76_TM_STATE_TX_FRAMES] = "tx_frames", |
| 2952 | [MT76_TM_STATE_RX_FRAMES] = "rx_frames", |
| 2953 | + [MT76_TM_STATE_TX_CONT] = "tx_cont", |
| 2954 | }; |
| 2955 | |
| 2956 | static const char * const testmode_tx_mode[] = { |
developer | 51e4042 | 2023-03-21 17:28:34 +0800 | [diff] [blame] | 2957 | @@ -86,12 +87,12 @@ static void print_s32(const struct tm_field *field, struct nlattr *attr) |
| 2958 | |
| 2959 | static void print_u32(const struct tm_field *field, struct nlattr *attr) |
| 2960 | { |
| 2961 | - printf("%d", nla_get_u32(attr)); |
| 2962 | + printf("%u", nla_get_u32(attr)); |
| 2963 | } |
| 2964 | |
| 2965 | static void print_u64(const struct tm_field *field, struct nlattr *attr) |
| 2966 | { |
| 2967 | - printf("%lld", (unsigned long long)nla_get_u64(attr)); |
| 2968 | + printf("%llu", (unsigned long long)nla_get_u64(attr)); |
| 2969 | } |
| 2970 | |
| 2971 | static bool parse_flag(const struct tm_field *field, int idx, |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 2972 | @@ -201,6 +202,63 @@ static void print_extra_stats(const struct tm_field *field, struct nlattr **tb) |
| 2973 | printf("%srx_per=%.02f%%\n", prefix, 100 * failed / total); |
| 2974 | } |
| 2975 | |
| 2976 | +static bool parse_mac(const struct tm_field *field, int idx, |
| 2977 | + struct nl_msg *msg, const char *val) |
| 2978 | +{ |
| 2979 | +#define ETH_ALEN 6 |
| 2980 | + bool ret = true; |
| 2981 | + char *str, *cur, *ap; |
| 2982 | + void *a; |
| 2983 | + |
| 2984 | + ap = str = strdup(val); |
| 2985 | + |
| 2986 | + a = nla_nest_start(msg, idx); |
| 2987 | + |
| 2988 | + idx = 0; |
| 2989 | + while ((cur = strsep(&ap, ",")) != NULL) { |
| 2990 | + unsigned char addr[ETH_ALEN]; |
| 2991 | + char *val, *tmp = cur; |
| 2992 | + int i = 0; |
| 2993 | + |
| 2994 | + while ((val = strsep(&tmp, ":")) != NULL) { |
| 2995 | + if (i >= ETH_ALEN) |
| 2996 | + break; |
| 2997 | + |
| 2998 | + addr[i++] = strtoul(val, NULL, 16); |
| 2999 | + } |
| 3000 | + |
| 3001 | + nla_put(msg, idx, ETH_ALEN, addr); |
| 3002 | + |
| 3003 | + idx++; |
| 3004 | + } |
| 3005 | + |
| 3006 | + nla_nest_end(msg, a); |
| 3007 | + |
| 3008 | + free(str); |
| 3009 | + |
| 3010 | + return ret; |
| 3011 | +} |
| 3012 | + |
| 3013 | +static void print_mac(const struct tm_field *field, struct nlattr *attr) |
| 3014 | +{ |
| 3015 | +#define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5] |
| 3016 | +#define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x" |
| 3017 | + unsigned char addr[3][6]; |
| 3018 | + struct nlattr *cur; |
| 3019 | + int idx = 0; |
| 3020 | + int rem; |
| 3021 | + |
| 3022 | + nla_for_each_nested(cur, attr, rem) { |
| 3023 | + if (nla_len(cur) != 6) |
| 3024 | + continue; |
| 3025 | + memcpy(addr[idx++], nla_data(cur), 6); |
| 3026 | + } |
| 3027 | + |
| 3028 | + printf("" MACSTR "," MACSTR "," MACSTR "", |
| 3029 | + MAC2STR(addr[0]), MAC2STR(addr[1]), MAC2STR(addr[2])); |
| 3030 | + |
| 3031 | + return; |
| 3032 | +} |
| 3033 | |
| 3034 | #define FIELD_GENERIC(_field, _name, ...) \ |
| 3035 | [FIELD_NAME(_field)] = { \ |
| 3036 | @@ -250,6 +308,13 @@ static void print_extra_stats(const struct tm_field *field, struct nlattr **tb) |
| 3037 | ##__VA_ARGS__ \ |
| 3038 | ) |
| 3039 | |
| 3040 | +#define FIELD_MAC(_field, _name) \ |
| 3041 | + [FIELD_NAME(_field)] = { \ |
| 3042 | + .name = _name, \ |
| 3043 | + .parse = parse_mac, \ |
| 3044 | + .print = print_mac \ |
| 3045 | + } |
| 3046 | + |
| 3047 | #define FIELD_NAME(_field) MT76_TM_RX_ATTR_##_field |
| 3048 | static const struct tm_field rx_fields[NUM_MT76_TM_RX_ATTRS] = { |
| 3049 | FIELD_RO(s32, FREQ_OFFSET, "freq_offset"), |
| 3050 | @@ -300,10 +365,18 @@ static const struct tm_field testdata_fields[NUM_MT76_TM_ATTRS] = { |
| 3051 | FIELD(u8, TX_RATE_LDPC, "tx_rate_ldpc"), |
| 3052 | FIELD(u8, TX_RATE_STBC, "tx_rate_stbc"), |
| 3053 | FIELD(u8, TX_LTF, "tx_ltf"), |
| 3054 | + FIELD(u8, TX_DUTY_CYCLE, "tx_duty_cycle"), |
| 3055 | + FIELD(u32, TX_IPG, "tx_ipg"), |
| 3056 | + FIELD(u32, TX_TIME, "tx_time"), |
| 3057 | FIELD(u8, TX_POWER_CONTROL, "tx_power_control"), |
| 3058 | FIELD_ARRAY(u8, TX_POWER, "tx_power"), |
| 3059 | FIELD(u8, TX_ANTENNA, "tx_antenna"), |
| 3060 | + FIELD(u8, TX_SPE_IDX, "tx_spe_idx"), |
| 3061 | FIELD(u32, FREQ_OFFSET, "freq_offset"), |
| 3062 | + FIELD(u8, AID, "aid"), |
| 3063 | + FIELD(u8, RU_ALLOC, "ru_alloc"), |
| 3064 | + FIELD(u8, RU_IDX, "ru_idx"), |
| 3065 | + FIELD_MAC(MAC_ADDRS, "mac_addrs"), |
| 3066 | FIELD_NESTED_RO(STATS, stats, "", |
| 3067 | .print_extra = print_extra_stats), |
| 3068 | }; |
| 3069 | @@ -322,9 +395,16 @@ static struct nla_policy testdata_policy[NUM_MT76_TM_ATTRS] = { |
| 3070 | [MT76_TM_ATTR_TX_RATE_LDPC] = { .type = NLA_U8 }, |
| 3071 | [MT76_TM_ATTR_TX_RATE_STBC] = { .type = NLA_U8 }, |
| 3072 | [MT76_TM_ATTR_TX_LTF] = { .type = NLA_U8 }, |
| 3073 | + [MT76_TM_ATTR_TX_DUTY_CYCLE] = { .type = NLA_U8 }, |
| 3074 | + [MT76_TM_ATTR_TX_IPG] = { .type = NLA_U32 }, |
| 3075 | + [MT76_TM_ATTR_TX_TIME] = { .type = NLA_U32 }, |
| 3076 | [MT76_TM_ATTR_TX_POWER_CONTROL] = { .type = NLA_U8 }, |
| 3077 | [MT76_TM_ATTR_TX_ANTENNA] = { .type = NLA_U8 }, |
| 3078 | + [MT76_TM_ATTR_TX_SPE_IDX] = { .type = NLA_U8 }, |
| 3079 | [MT76_TM_ATTR_FREQ_OFFSET] = { .type = NLA_U32 }, |
| 3080 | + [MT76_TM_ATTR_AID] = { .type = NLA_U8 }, |
| 3081 | + [MT76_TM_ATTR_RU_ALLOC] = { .type = NLA_U8 }, |
| 3082 | + [MT76_TM_ATTR_RU_IDX] = { .type = NLA_U8 }, |
| 3083 | [MT76_TM_ATTR_STATS] = { .type = NLA_NESTED }, |
| 3084 | }; |
| 3085 | |
| 3086 | diff --git a/tx.c b/tx.c |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 3087 | index 6cc26cc..5d7bf34 100644 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 3088 | --- a/tx.c |
| 3089 | +++ b/tx.c |
developer | 004e50c | 2023-06-29 20:33:22 +0800 | [diff] [blame] | 3090 | @@ -259,8 +259,7 @@ void __mt76_tx_complete_skb(struct mt76_dev *dev, u16 wcid_idx, struct sk_buff * |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 3091 | if (mt76_is_testmode_skb(dev, skb, &hw)) { |
| 3092 | struct mt76_phy *phy = hw->priv; |
| 3093 | |
| 3094 | - if (skb == phy->test.tx_skb) |
| 3095 | - phy->test.tx_done++; |
| 3096 | + phy->test.tx_done++; |
| 3097 | if (phy->test.tx_queued == phy->test.tx_done) |
| 3098 | wake_up(&dev->tx_wait); |
| 3099 | |
| 3100 | -- |
developer | 2a20969 | 2023-08-14 20:23:42 +0800 | [diff] [blame] | 3101 | 2.18.0 |
developer | 42b6328 | 2022-06-16 13:33:13 +0800 | [diff] [blame] | 3102 | |