1 // SPDX-License-Identifier: ISC
2 /* Copyright (C) 2020 MediaTek Inc. */
3 
4 #include "mt7915.h"
5 #include "mac.h"
6 #include "mcu.h"
7 #include "testmode.h"
8 
9 enum {
10 	TM_CHANGED_TXPOWER,
11 	TM_CHANGED_FREQ_OFFSET,
12 
13 	/* must be last */
14 	NUM_TM_CHANGED
15 };
16 
17 static const u8 tm_change_map[] = {
18 	[TM_CHANGED_TXPOWER] = MT76_TM_ATTR_TX_POWER,
19 	[TM_CHANGED_FREQ_OFFSET] = MT76_TM_ATTR_FREQ_OFFSET,
20 };
21 
22 struct reg_band {
23 	u32 band[2];
24 };
25 
26 #define REG_BAND(_reg) \
27 	{ .band[0] = MT_##_reg(0), .band[1] = MT_##_reg(1) }
28 #define REG_BAND_IDX(_reg, _idx) \
29 	{ .band[0] = MT_##_reg(0, _idx), .band[1] = MT_##_reg(1, _idx) }
30 
31 static const struct reg_band reg_backup_list[] = {
32 	REG_BAND_IDX(AGG_PCR0, 0),
33 	REG_BAND_IDX(AGG_PCR0, 1),
34 	REG_BAND_IDX(AGG_AWSCR0, 0),
35 	REG_BAND_IDX(AGG_AWSCR0, 1),
36 	REG_BAND_IDX(AGG_AWSCR0, 2),
37 	REG_BAND_IDX(AGG_AWSCR0, 3),
38 	REG_BAND(AGG_MRCR),
39 	REG_BAND(TMAC_TFCR0),
40 	REG_BAND(TMAC_TCR0),
41 	REG_BAND(AGG_ATCR1),
42 	REG_BAND(AGG_ATCR3),
43 	REG_BAND(TMAC_TRCR0),
44 	REG_BAND(TMAC_ICR0),
45 	REG_BAND_IDX(ARB_DRNGR0, 0),
46 	REG_BAND_IDX(ARB_DRNGR0, 1),
47 	REG_BAND(WF_RFCR),
48 	REG_BAND(WF_RFCR1),
49 };
50 
51 static int
mt7915_tm_set_tx_power(struct mt7915_phy * phy)52 mt7915_tm_set_tx_power(struct mt7915_phy *phy)
53 {
54 	struct mt7915_dev *dev = phy->dev;
55 	struct mt76_phy *mphy = phy->mt76;
56 	struct cfg80211_chan_def *chandef = &mphy->chandef;
57 	int freq = chandef->center_freq1;
58 	int ret;
59 	struct {
60 		u8 format_id;
61 		u8 dbdc_idx;
62 		s8 tx_power;
63 		u8 ant_idx;	/* Only 0 is valid */
64 		u8 center_chan;
65 		u8 rsv[3];
66 	} __packed req = {
67 		.format_id = 0xf,
68 		.dbdc_idx = phy != &dev->phy,
69 		.center_chan = ieee80211_frequency_to_channel(freq),
70 	};
71 	u8 *tx_power = NULL;
72 
73 	if (phy->mt76->test.state != MT76_TM_STATE_OFF)
74 		tx_power = phy->mt76->test.tx_power;
75 
76 	/* Tx power of the other antennas are the same as antenna 0 */
77 	if (tx_power && tx_power[0])
78 		req.tx_power = tx_power[0];
79 
80 	ret = mt76_mcu_send_msg(&dev->mt76,
81 				MCU_EXT_CMD(TX_POWER_FEATURE_CTRL),
82 				&req, sizeof(req), false);
83 
84 	return ret;
85 }
86 
87 static int
mt7915_tm_set_freq_offset(struct mt7915_phy * phy,bool en,u32 val)88 mt7915_tm_set_freq_offset(struct mt7915_phy *phy, bool en, u32 val)
89 {
90 	struct mt7915_dev *dev = phy->dev;
91 	struct mt7915_tm_cmd req = {
92 		.testmode_en = en,
93 		.param_idx = MCU_ATE_SET_FREQ_OFFSET,
94 		.param.freq.band = phy != &dev->phy,
95 		.param.freq.freq_offset = cpu_to_le32(val),
96 	};
97 
98 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req,
99 				 sizeof(req), false);
100 }
101 
102 static int
mt7915_tm_mode_ctrl(struct mt7915_dev * dev,bool enable)103 mt7915_tm_mode_ctrl(struct mt7915_dev *dev, bool enable)
104 {
105 	struct {
106 		u8 format_id;
107 		bool enable;
108 		u8 rsv[2];
109 	} __packed req = {
110 		.format_id = 0x6,
111 		.enable = enable,
112 	};
113 
114 	return mt76_mcu_send_msg(&dev->mt76,
115 				 MCU_EXT_CMD(TX_POWER_FEATURE_CTRL),
116 				 &req, sizeof(req), false);
117 }
118 
119 static int
mt7915_tm_set_trx(struct mt7915_phy * phy,int type,bool en)120 mt7915_tm_set_trx(struct mt7915_phy *phy, int type, bool en)
121 {
122 	struct mt7915_dev *dev = phy->dev;
123 	struct mt7915_tm_cmd req = {
124 		.testmode_en = 1,
125 		.param_idx = MCU_ATE_SET_TRX,
126 		.param.trx.type = type,
127 		.param.trx.enable = en,
128 		.param.trx.band = phy != &dev->phy,
129 	};
130 
131 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req,
132 				 sizeof(req), false);
133 }
134 
135 static int
mt7915_tm_clean_hwq(struct mt7915_phy * phy,u8 wcid)136 mt7915_tm_clean_hwq(struct mt7915_phy *phy, u8 wcid)
137 {
138 	struct mt7915_dev *dev = phy->dev;
139 	struct mt7915_tm_cmd req = {
140 		.testmode_en = 1,
141 		.param_idx = MCU_ATE_CLEAN_TXQUEUE,
142 		.param.clean.wcid = wcid,
143 		.param.clean.band = phy != &dev->phy,
144 	};
145 
146 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req,
147 				 sizeof(req), false);
148 }
149 
150 static int
mt7915_tm_set_slot_time(struct mt7915_phy * phy,u8 slot_time,u8 sifs)151 mt7915_tm_set_slot_time(struct mt7915_phy *phy, u8 slot_time, u8 sifs)
152 {
153 	struct mt7915_dev *dev = phy->dev;
154 	struct mt7915_tm_cmd req = {
155 		.testmode_en = !(phy->mt76->test.state == MT76_TM_STATE_OFF),
156 		.param_idx = MCU_ATE_SET_SLOT_TIME,
157 		.param.slot.slot_time = slot_time,
158 		.param.slot.sifs = sifs,
159 		.param.slot.rifs = 2,
160 		.param.slot.eifs = cpu_to_le16(60),
161 		.param.slot.band = phy != &dev->phy,
162 	};
163 
164 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(ATE_CTRL), &req,
165 				 sizeof(req), false);
166 }
167 
168 static int
mt7915_tm_set_wmm_qid(struct mt7915_dev * dev,u8 qid,u8 aifs,u8 cw_min,u16 cw_max,u16 txop)169 mt7915_tm_set_wmm_qid(struct mt7915_dev *dev, u8 qid, u8 aifs, u8 cw_min,
170 		      u16 cw_max, u16 txop)
171 {
172 	struct mt7915_mcu_tx req = { .total = 1 };
173 	struct edca *e = &req.edca[0];
174 
175 	e->queue = qid;
176 	e->set = WMM_PARAM_SET;
177 
178 	e->aifs = aifs;
179 	e->cw_min = cw_min;
180 	e->cw_max = cpu_to_le16(cw_max);
181 	e->txop = cpu_to_le16(txop);
182 
183 	return mt7915_mcu_update_edca(dev, &req);
184 }
185 
186 static int
mt7915_tm_set_ipg_params(struct mt7915_phy * phy,u32 ipg,u8 mode)187 mt7915_tm_set_ipg_params(struct mt7915_phy *phy, u32 ipg, u8 mode)
188 {
189 #define TM_DEFAULT_SIFS	10
190 #define TM_MAX_SIFS	127
191 #define TM_MAX_AIFSN	0xf
192 #define TM_MIN_AIFSN	0x1
193 #define BBP_PROC_TIME	1500
194 	struct mt7915_dev *dev = phy->dev;
195 	u8 sig_ext = (mode == MT76_TM_TX_MODE_CCK) ? 0 : 6;
196 	u8 slot_time = 9, sifs = TM_DEFAULT_SIFS;
197 	u8 aifsn = TM_MIN_AIFSN;
198 	u32 i2t_time, tr2t_time, txv_time;
199 	bool ext_phy = phy != &dev->phy;
200 	u16 cw = 0;
201 
202 	if (ipg < sig_ext + slot_time + sifs)
203 		ipg = 0;
204 
205 	if (!ipg)
206 		goto done;
207 
208 	ipg -= sig_ext;
209 
210 	if (ipg <= (TM_MAX_SIFS + slot_time)) {
211 		sifs = ipg - slot_time;
212 	} else {
213 		u32 val = (ipg + slot_time) / slot_time;
214 
215 		while (val >>= 1)
216 			cw++;
217 
218 		if (cw > 16)
219 			cw = 16;
220 
221 		ipg -= ((1 << cw) - 1) * slot_time;
222 
223 		aifsn = ipg / slot_time;
224 		if (aifsn > TM_MAX_AIFSN)
225 			aifsn = TM_MAX_AIFSN;
226 
227 		ipg -= aifsn * slot_time;
228 
229 		if (ipg > TM_DEFAULT_SIFS) {
230 			if (ipg < TM_MAX_SIFS)
231 				sifs = ipg;
232 			else
233 				sifs = TM_MAX_SIFS;
234 		}
235 	}
236 done:
237 	txv_time = mt76_get_field(dev, MT_TMAC_ATCR(ext_phy),
238 				  MT_TMAC_ATCR_TXV_TOUT);
239 	txv_time *= 50;	/* normal clock time */
240 
241 	i2t_time = (slot_time * 1000 - txv_time - BBP_PROC_TIME) / 50;
242 	tr2t_time = (sifs * 1000 - txv_time - BBP_PROC_TIME) / 50;
243 
244 	mt76_set(dev, MT_TMAC_TRCR0(ext_phy),
245 		 FIELD_PREP(MT_TMAC_TRCR0_TR2T_CHK, tr2t_time) |
246 		 FIELD_PREP(MT_TMAC_TRCR0_I2T_CHK, i2t_time));
247 
248 	mt7915_tm_set_slot_time(phy, slot_time, sifs);
249 
250 	return mt7915_tm_set_wmm_qid(dev,
251 				     mt7915_lmac_mapping(dev, IEEE80211_AC_BE),
252 				     aifsn, cw, cw, 0);
253 }
254 
255 static int
mt7915_tm_set_tx_len(struct mt7915_phy * phy,u32 tx_time)256 mt7915_tm_set_tx_len(struct mt7915_phy *phy, u32 tx_time)
257 {
258 	struct mt76_phy *mphy = phy->mt76;
259 	struct mt76_testmode_data *td = &mphy->test;
260 	struct ieee80211_supported_band *sband;
261 	struct rate_info rate = {};
262 	u16 flags = 0, tx_len;
263 	u32 bitrate;
264 	int ret;
265 
266 	if (!tx_time)
267 		return 0;
268 
269 	rate.mcs = td->tx_rate_idx;
270 	rate.nss = td->tx_rate_nss;
271 
272 	switch (td->tx_rate_mode) {
273 	case MT76_TM_TX_MODE_CCK:
274 	case MT76_TM_TX_MODE_OFDM:
275 		if (mphy->chandef.chan->band == NL80211_BAND_5GHZ)
276 			sband = &mphy->sband_5g.sband;
277 		else
278 			sband = &mphy->sband_2g.sband;
279 
280 		rate.legacy = sband->bitrates[rate.mcs].bitrate;
281 		break;
282 	case MT76_TM_TX_MODE_HT:
283 		rate.mcs += rate.nss * 8;
284 		flags |= RATE_INFO_FLAGS_MCS;
285 
286 		if (td->tx_rate_sgi)
287 			flags |= RATE_INFO_FLAGS_SHORT_GI;
288 		break;
289 	case MT76_TM_TX_MODE_VHT:
290 		flags |= RATE_INFO_FLAGS_VHT_MCS;
291 
292 		if (td->tx_rate_sgi)
293 			flags |= RATE_INFO_FLAGS_SHORT_GI;
294 		break;
295 	case MT76_TM_TX_MODE_HE_SU:
296 	case MT76_TM_TX_MODE_HE_EXT_SU:
297 	case MT76_TM_TX_MODE_HE_TB:
298 	case MT76_TM_TX_MODE_HE_MU:
299 		rate.he_gi = td->tx_rate_sgi;
300 		flags |= RATE_INFO_FLAGS_HE_MCS;
301 		break;
302 	default:
303 		break;
304 	}
305 	rate.flags = flags;
306 
307 	switch (mphy->chandef.width) {
308 	case NL80211_CHAN_WIDTH_160:
309 	case NL80211_CHAN_WIDTH_80P80:
310 		rate.bw = RATE_INFO_BW_160;
311 		break;
312 	case NL80211_CHAN_WIDTH_80:
313 		rate.bw = RATE_INFO_BW_80;
314 		break;
315 	case NL80211_CHAN_WIDTH_40:
316 		rate.bw = RATE_INFO_BW_40;
317 		break;
318 	default:
319 		rate.bw = RATE_INFO_BW_20;
320 		break;
321 	}
322 
323 	bitrate = cfg80211_calculate_bitrate(&rate);
324 	tx_len = bitrate * tx_time / 10 / 8;
325 
326 	ret = mt76_testmode_alloc_skb(phy->mt76, tx_len);
327 	if (ret)
328 		return ret;
329 
330 	return 0;
331 }
332 
333 static void
mt7915_tm_reg_backup_restore(struct mt7915_phy * phy)334 mt7915_tm_reg_backup_restore(struct mt7915_phy *phy)
335 {
336 	int n_regs = ARRAY_SIZE(reg_backup_list);
337 	struct mt7915_dev *dev = phy->dev;
338 	bool ext_phy = phy != &dev->phy;
339 	u32 *b = phy->test.reg_backup;
340 	int i;
341 
342 	if (phy->mt76->test.state == MT76_TM_STATE_OFF) {
343 		for (i = 0; i < n_regs; i++)
344 			mt76_wr(dev, reg_backup_list[i].band[ext_phy], b[i]);
345 		return;
346 	}
347 
348 	if (b)
349 		return;
350 
351 	b = devm_kzalloc(dev->mt76.dev, 4 * n_regs, GFP_KERNEL);
352 	if (!b)
353 		return;
354 
355 	phy->test.reg_backup = b;
356 	for (i = 0; i < n_regs; i++)
357 		b[i] = mt76_rr(dev, reg_backup_list[i].band[ext_phy]);
358 
359 	mt76_clear(dev, MT_AGG_PCR0(ext_phy, 0), MT_AGG_PCR0_MM_PROT |
360 		   MT_AGG_PCR0_GF_PROT | MT_AGG_PCR0_ERP_PROT |
361 		   MT_AGG_PCR0_VHT_PROT | MT_AGG_PCR0_BW20_PROT |
362 		   MT_AGG_PCR0_BW40_PROT | MT_AGG_PCR0_BW80_PROT);
363 	mt76_set(dev, MT_AGG_PCR0(ext_phy, 0), MT_AGG_PCR0_PTA_WIN_DIS);
364 
365 	mt76_wr(dev, MT_AGG_PCR0(ext_phy, 1), MT_AGG_PCR1_RTS0_NUM_THRES |
366 		MT_AGG_PCR1_RTS0_LEN_THRES);
367 
368 	mt76_clear(dev, MT_AGG_MRCR(ext_phy), MT_AGG_MRCR_BAR_CNT_LIMIT |
369 		   MT_AGG_MRCR_LAST_RTS_CTS_RN | MT_AGG_MRCR_RTS_FAIL_LIMIT |
370 		   MT_AGG_MRCR_TXCMD_RTS_FAIL_LIMIT);
371 
372 	mt76_rmw(dev, MT_AGG_MRCR(ext_phy), MT_AGG_MRCR_RTS_FAIL_LIMIT |
373 		 MT_AGG_MRCR_TXCMD_RTS_FAIL_LIMIT,
374 		 FIELD_PREP(MT_AGG_MRCR_RTS_FAIL_LIMIT, 1) |
375 		 FIELD_PREP(MT_AGG_MRCR_TXCMD_RTS_FAIL_LIMIT, 1));
376 
377 	mt76_wr(dev, MT_TMAC_TFCR0(ext_phy), 0);
378 	mt76_clear(dev, MT_TMAC_TCR0(ext_phy), MT_TMAC_TCR0_TBTT_STOP_CTRL);
379 
380 	/* config rx filter for testmode rx */
381 	mt76_wr(dev, MT_WF_RFCR(ext_phy), 0xcf70a);
382 	mt76_wr(dev, MT_WF_RFCR1(ext_phy), 0);
383 }
384 
385 static void
mt7915_tm_init(struct mt7915_phy * phy,bool en)386 mt7915_tm_init(struct mt7915_phy *phy, bool en)
387 {
388 	struct mt7915_dev *dev = phy->dev;
389 
390 	if (!test_bit(MT76_STATE_RUNNING, &phy->mt76->state))
391 		return;
392 
393 	mt7915_mcu_set_sku_en(phy, !en);
394 
395 	mt7915_tm_mode_ctrl(dev, en);
396 	mt7915_tm_reg_backup_restore(phy);
397 	mt7915_tm_set_trx(phy, TM_MAC_TXRX, !en);
398 
399 	mt7915_mcu_add_bss_info(phy, phy->monitor_vif, en);
400 }
401 
402 static void
mt7915_tm_update_channel(struct mt7915_phy * phy)403 mt7915_tm_update_channel(struct mt7915_phy *phy)
404 {
405 	mutex_unlock(&phy->dev->mt76.mutex);
406 	mt7915_set_channel(phy);
407 	mutex_lock(&phy->dev->mt76.mutex);
408 
409 	mt7915_mcu_set_chan_info(phy, MCU_EXT_CMD(SET_RX_PATH));
410 }
411 
412 static void
mt7915_tm_set_tx_frames(struct mt7915_phy * phy,bool en)413 mt7915_tm_set_tx_frames(struct mt7915_phy *phy, bool en)
414 {
415 	static const u8 spe_idx_map[] = {0, 0, 1, 0, 3, 2, 4, 0,
416 					 9, 8, 6, 10, 16, 12, 18, 0};
417 	struct mt76_testmode_data *td = &phy->mt76->test;
418 	struct mt7915_dev *dev = phy->dev;
419 	struct ieee80211_tx_info *info;
420 	u8 duty_cycle = td->tx_duty_cycle;
421 	u32 tx_time = td->tx_time;
422 	u32 ipg = td->tx_ipg;
423 
424 	mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, false);
425 	mt7915_tm_clean_hwq(phy, dev->mt76.global_wcid.idx);
426 
427 	if (en) {
428 		mt7915_tm_update_channel(phy);
429 
430 		if (td->tx_spe_idx) {
431 			phy->test.spe_idx = td->tx_spe_idx;
432 		} else {
433 			u8 tx_ant = td->tx_antenna_mask;
434 
435 			if (phy != &dev->phy)
436 				tx_ant >>= 2;
437 			phy->test.spe_idx = spe_idx_map[tx_ant];
438 		}
439 	}
440 
441 	/* if all three params are set, duty_cycle will be ignored */
442 	if (duty_cycle && tx_time && !ipg) {
443 		ipg = tx_time * 100 / duty_cycle - tx_time;
444 	} else if (duty_cycle && !tx_time && ipg) {
445 		if (duty_cycle < 100)
446 			tx_time = duty_cycle * ipg / (100 - duty_cycle);
447 	}
448 
449 	mt7915_tm_set_ipg_params(phy, ipg, td->tx_rate_mode);
450 	mt7915_tm_set_tx_len(phy, tx_time);
451 
452 	if (ipg)
453 		td->tx_queued_limit = MT76_TM_TIMEOUT * 1000000 / ipg / 2;
454 
455 	if (!en || !td->tx_skb)
456 		return;
457 
458 	info = IEEE80211_SKB_CB(td->tx_skb);
459 	info->control.vif = phy->monitor_vif;
460 
461 	mt7915_tm_set_trx(phy, TM_MAC_TX, en);
462 }
463 
464 static void
mt7915_tm_set_rx_frames(struct mt7915_phy * phy,bool en)465 mt7915_tm_set_rx_frames(struct mt7915_phy *phy, bool en)
466 {
467 	if (en)
468 		mt7915_tm_update_channel(phy);
469 
470 	mt7915_tm_set_trx(phy, TM_MAC_RX_RXV, en);
471 }
472 
473 static int
mt7915_tm_rf_switch_mode(struct mt7915_dev * dev,u32 oper)474 mt7915_tm_rf_switch_mode(struct mt7915_dev *dev, u32 oper)
475 {
476 	struct mt7915_tm_rf_test req = {
477 		.op.op_mode = cpu_to_le32(oper),
478 	};
479 
480 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(RF_TEST), &req,
481 				 sizeof(req), true);
482 }
483 
484 static int
mt7915_tm_set_tx_cont(struct mt7915_phy * phy,bool en)485 mt7915_tm_set_tx_cont(struct mt7915_phy *phy, bool en)
486 {
487 #define TX_CONT_START	0x05
488 #define TX_CONT_STOP	0x06
489 	struct mt7915_dev *dev = phy->dev;
490 	struct cfg80211_chan_def *chandef = &phy->mt76->chandef;
491 	int freq1 = ieee80211_frequency_to_channel(chandef->center_freq1);
492 	struct mt76_testmode_data *td = &phy->mt76->test;
493 	u32 func_idx = en ? TX_CONT_START : TX_CONT_STOP;
494 	u8 rate_idx = td->tx_rate_idx, mode;
495 	u16 rateval;
496 	struct mt7915_tm_rf_test req = {
497 		.action = 1,
498 		.icap_len = 120,
499 		.op.rf.func_idx = cpu_to_le32(func_idx),
500 	};
501 	struct tm_tx_cont *tx_cont = &req.op.rf.param.tx_cont;
502 
503 	tx_cont->control_ch = chandef->chan->hw_value;
504 	tx_cont->center_ch = freq1;
505 	tx_cont->tx_ant = td->tx_antenna_mask;
506 	tx_cont->band = phy != &dev->phy;
507 
508 	switch (chandef->width) {
509 	case NL80211_CHAN_WIDTH_40:
510 		tx_cont->bw = CMD_CBW_40MHZ;
511 		break;
512 	case NL80211_CHAN_WIDTH_80:
513 		tx_cont->bw = CMD_CBW_80MHZ;
514 		break;
515 	case NL80211_CHAN_WIDTH_80P80:
516 		tx_cont->bw = CMD_CBW_8080MHZ;
517 		break;
518 	case NL80211_CHAN_WIDTH_160:
519 		tx_cont->bw = CMD_CBW_160MHZ;
520 		break;
521 	case NL80211_CHAN_WIDTH_5:
522 		tx_cont->bw = CMD_CBW_5MHZ;
523 		break;
524 	case NL80211_CHAN_WIDTH_10:
525 		tx_cont->bw = CMD_CBW_10MHZ;
526 		break;
527 	case NL80211_CHAN_WIDTH_20:
528 		tx_cont->bw = CMD_CBW_20MHZ;
529 		break;
530 	case NL80211_CHAN_WIDTH_20_NOHT:
531 		tx_cont->bw = CMD_CBW_20MHZ;
532 		break;
533 	default:
534 		return -EINVAL;
535 	}
536 
537 	if (!en) {
538 		req.op.rf.param.func_data = cpu_to_le32(phy != &dev->phy);
539 		goto out;
540 	}
541 
542 	if (td->tx_rate_mode <= MT76_TM_TX_MODE_OFDM) {
543 		struct ieee80211_supported_band *sband;
544 		u8 idx = rate_idx;
545 
546 		if (chandef->chan->band == NL80211_BAND_5GHZ)
547 			sband = &phy->mt76->sband_5g.sband;
548 		else
549 			sband = &phy->mt76->sband_2g.sband;
550 
551 		if (td->tx_rate_mode == MT76_TM_TX_MODE_OFDM)
552 			idx += 4;
553 		rate_idx = sband->bitrates[idx].hw_value & 0xff;
554 	}
555 
556 	switch (td->tx_rate_mode) {
557 	case MT76_TM_TX_MODE_CCK:
558 		mode = MT_PHY_TYPE_CCK;
559 		break;
560 	case MT76_TM_TX_MODE_OFDM:
561 		mode = MT_PHY_TYPE_OFDM;
562 		break;
563 	case MT76_TM_TX_MODE_HT:
564 		mode = MT_PHY_TYPE_HT;
565 		break;
566 	case MT76_TM_TX_MODE_VHT:
567 		mode = MT_PHY_TYPE_VHT;
568 		break;
569 	case MT76_TM_TX_MODE_HE_SU:
570 		mode = MT_PHY_TYPE_HE_SU;
571 		break;
572 	case MT76_TM_TX_MODE_HE_EXT_SU:
573 		mode = MT_PHY_TYPE_HE_EXT_SU;
574 		break;
575 	case MT76_TM_TX_MODE_HE_TB:
576 		mode = MT_PHY_TYPE_HE_TB;
577 		break;
578 	case MT76_TM_TX_MODE_HE_MU:
579 		mode = MT_PHY_TYPE_HE_MU;
580 		break;
581 	default:
582 		return -EINVAL;
583 	}
584 
585 	rateval =  mode << 6 | rate_idx;
586 	tx_cont->rateval = cpu_to_le16(rateval);
587 
588 out:
589 	if (!en) {
590 		int ret;
591 
592 		ret = mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(RF_TEST), &req,
593 					sizeof(req), true);
594 		if (ret)
595 			return ret;
596 
597 		return mt7915_tm_rf_switch_mode(dev, RF_OPER_NORMAL);
598 	}
599 
600 	mt7915_tm_rf_switch_mode(dev, RF_OPER_RF_TEST);
601 	mt7915_tm_update_channel(phy);
602 
603 	return mt76_mcu_send_msg(&dev->mt76, MCU_EXT_CMD(RF_TEST), &req,
604 				 sizeof(req), true);
605 }
606 
607 static void
mt7915_tm_update_params(struct mt7915_phy * phy,u32 changed)608 mt7915_tm_update_params(struct mt7915_phy *phy, u32 changed)
609 {
610 	struct mt76_testmode_data *td = &phy->mt76->test;
611 	bool en = phy->mt76->test.state != MT76_TM_STATE_OFF;
612 
613 	if (changed & BIT(TM_CHANGED_FREQ_OFFSET))
614 		mt7915_tm_set_freq_offset(phy, en, en ? td->freq_offset : 0);
615 	if (changed & BIT(TM_CHANGED_TXPOWER))
616 		mt7915_tm_set_tx_power(phy);
617 }
618 
619 static int
mt7915_tm_set_state(struct mt76_phy * mphy,enum mt76_testmode_state state)620 mt7915_tm_set_state(struct mt76_phy *mphy, enum mt76_testmode_state state)
621 {
622 	struct mt76_testmode_data *td = &mphy->test;
623 	struct mt7915_phy *phy = mphy->priv;
624 	enum mt76_testmode_state prev_state = td->state;
625 
626 	mphy->test.state = state;
627 
628 	if (prev_state == MT76_TM_STATE_TX_FRAMES ||
629 	    state == MT76_TM_STATE_TX_FRAMES)
630 		mt7915_tm_set_tx_frames(phy, state == MT76_TM_STATE_TX_FRAMES);
631 	else if (prev_state == MT76_TM_STATE_RX_FRAMES ||
632 		 state == MT76_TM_STATE_RX_FRAMES)
633 		mt7915_tm_set_rx_frames(phy, state == MT76_TM_STATE_RX_FRAMES);
634 	else if (prev_state == MT76_TM_STATE_TX_CONT ||
635 		 state == MT76_TM_STATE_TX_CONT)
636 		mt7915_tm_set_tx_cont(phy, state == MT76_TM_STATE_TX_CONT);
637 	else if (prev_state == MT76_TM_STATE_OFF ||
638 		 state == MT76_TM_STATE_OFF)
639 		mt7915_tm_init(phy, !(state == MT76_TM_STATE_OFF));
640 
641 	if ((state == MT76_TM_STATE_IDLE &&
642 	     prev_state == MT76_TM_STATE_OFF) ||
643 	    (state == MT76_TM_STATE_OFF &&
644 	     prev_state == MT76_TM_STATE_IDLE)) {
645 		u32 changed = 0;
646 		int i;
647 
648 		for (i = 0; i < ARRAY_SIZE(tm_change_map); i++) {
649 			u16 cur = tm_change_map[i];
650 
651 			if (td->param_set[cur / 32] & BIT(cur % 32))
652 				changed |= BIT(i);
653 		}
654 
655 		mt7915_tm_update_params(phy, changed);
656 	}
657 
658 	return 0;
659 }
660 
661 static int
mt7915_tm_set_params(struct mt76_phy * mphy,struct nlattr ** tb,enum mt76_testmode_state new_state)662 mt7915_tm_set_params(struct mt76_phy *mphy, struct nlattr **tb,
663 		     enum mt76_testmode_state new_state)
664 {
665 	struct mt76_testmode_data *td = &mphy->test;
666 	struct mt7915_phy *phy = mphy->priv;
667 	u32 changed = 0;
668 	int i;
669 
670 	BUILD_BUG_ON(NUM_TM_CHANGED >= 32);
671 
672 	if (new_state == MT76_TM_STATE_OFF ||
673 	    td->state == MT76_TM_STATE_OFF)
674 		return 0;
675 
676 	if (td->tx_antenna_mask & ~mphy->chainmask)
677 		return -EINVAL;
678 
679 	for (i = 0; i < ARRAY_SIZE(tm_change_map); i++) {
680 		if (tb[tm_change_map[i]])
681 			changed |= BIT(i);
682 	}
683 
684 	mt7915_tm_update_params(phy, changed);
685 
686 	return 0;
687 }
688 
689 static int
mt7915_tm_dump_stats(struct mt76_phy * mphy,struct sk_buff * msg)690 mt7915_tm_dump_stats(struct mt76_phy *mphy, struct sk_buff *msg)
691 {
692 	struct mt7915_phy *phy = mphy->priv;
693 	void *rx, *rssi;
694 	int i;
695 
696 	rx = nla_nest_start(msg, MT76_TM_STATS_ATTR_LAST_RX);
697 	if (!rx)
698 		return -ENOMEM;
699 
700 	if (nla_put_s32(msg, MT76_TM_RX_ATTR_FREQ_OFFSET, phy->test.last_freq_offset))
701 		return -ENOMEM;
702 
703 	rssi = nla_nest_start(msg, MT76_TM_RX_ATTR_RCPI);
704 	if (!rssi)
705 		return -ENOMEM;
706 
707 	for (i = 0; i < ARRAY_SIZE(phy->test.last_rcpi); i++)
708 		if (nla_put_u8(msg, i, phy->test.last_rcpi[i]))
709 			return -ENOMEM;
710 
711 	nla_nest_end(msg, rssi);
712 
713 	rssi = nla_nest_start(msg, MT76_TM_RX_ATTR_IB_RSSI);
714 	if (!rssi)
715 		return -ENOMEM;
716 
717 	for (i = 0; i < ARRAY_SIZE(phy->test.last_ib_rssi); i++)
718 		if (nla_put_s8(msg, i, phy->test.last_ib_rssi[i]))
719 			return -ENOMEM;
720 
721 	nla_nest_end(msg, rssi);
722 
723 	rssi = nla_nest_start(msg, MT76_TM_RX_ATTR_WB_RSSI);
724 	if (!rssi)
725 		return -ENOMEM;
726 
727 	for (i = 0; i < ARRAY_SIZE(phy->test.last_wb_rssi); i++)
728 		if (nla_put_s8(msg, i, phy->test.last_wb_rssi[i]))
729 			return -ENOMEM;
730 
731 	nla_nest_end(msg, rssi);
732 
733 	if (nla_put_u8(msg, MT76_TM_RX_ATTR_SNR, phy->test.last_snr))
734 		return -ENOMEM;
735 
736 	nla_nest_end(msg, rx);
737 
738 	return 0;
739 }
740 
741 const struct mt76_testmode_ops mt7915_testmode_ops = {
742 	.set_state = mt7915_tm_set_state,
743 	.set_params = mt7915_tm_set_params,
744 	.dump_stats = mt7915_tm_dump_stats,
745 };
746