xref: /linux/drivers/net/wireless/mediatek/mt76/mt7996/mt7996.h (revision 6f47c7ae8c7afaf9ad291d39f0d3974f191a7946)
1 /* SPDX-License-Identifier: ISC */
2 /*
3  * Copyright (C) 2022 MediaTek Inc.
4  */
5 
6 #ifndef __MT7996_H
7 #define __MT7996_H
8 
9 #include <linux/interrupt.h>
10 #include <linux/ktime.h>
11 #include "../mt76_connac.h"
12 #include "regs.h"
13 
14 #define MT7996_MAX_INTERFACES		19	/* per-band */
15 #define MT7996_MAX_WMM_SETS		4
16 #define MT7996_WTBL_BMC_SIZE		(is_mt7992(&dev->mt76) ? 32 : 64)
17 #define MT7996_WTBL_RESERVED		(mt7996_wtbl_size(dev) - 1)
18 #define MT7996_WTBL_STA			(MT7996_WTBL_RESERVED - \
19 					 mt7996_max_interface_num(dev))
20 
21 #define MT7996_WATCHDOG_TIME		(HZ / 10)
22 #define MT7996_RESET_TIMEOUT		(30 * HZ)
23 
24 #define MT7996_TX_RING_SIZE		2048
25 #define MT7996_TX_MCU_RING_SIZE		256
26 #define MT7996_TX_FWDL_RING_SIZE	128
27 
28 #define MT7996_RX_RING_SIZE		1536
29 #define MT7996_RX_MCU_RING_SIZE		512
30 #define MT7996_RX_MCU_RING_SIZE_WA	1024
31 
32 #define MT7996_FIRMWARE_WA		"mediatek/mt7996/mt7996_wa.bin"
33 #define MT7996_FIRMWARE_WM		"mediatek/mt7996/mt7996_wm.bin"
34 #define MT7996_FIRMWARE_DSP		"mediatek/mt7996/mt7996_dsp.bin"
35 #define MT7996_ROM_PATCH		"mediatek/mt7996/mt7996_rom_patch.bin"
36 
37 #define MT7992_FIRMWARE_WA		"mediatek/mt7996/mt7992_wa.bin"
38 #define MT7992_FIRMWARE_WM		"mediatek/mt7996/mt7992_wm.bin"
39 #define MT7992_FIRMWARE_DSP		"mediatek/mt7996/mt7992_dsp.bin"
40 #define MT7992_ROM_PATCH		"mediatek/mt7996/mt7992_rom_patch.bin"
41 
42 #define MT7996_EEPROM_DEFAULT		"mediatek/mt7996/mt7996_eeprom.bin"
43 #define MT7992_EEPROM_DEFAULT		"mediatek/mt7996/mt7992_eeprom.bin"
44 #define MT7996_EEPROM_SIZE		7680
45 #define MT7996_EEPROM_BLOCK_SIZE	16
46 #define MT7996_TOKEN_SIZE		16384
47 #define MT7996_HW_TOKEN_SIZE		8192
48 
49 #define MT7996_CFEND_RATE_DEFAULT	0x49	/* OFDM 24M */
50 #define MT7996_CFEND_RATE_11B		0x03	/* 11B LP, 11M */
51 
52 #define MT7996_SKU_RATE_NUM		417
53 
54 #define MT7996_MAX_TWT_AGRT		16
55 #define MT7996_MAX_STA_TWT_AGRT		8
56 #define MT7996_MIN_TWT_DUR		64
57 #define MT7996_MAX_QUEUE		(__MT_RXQ_MAX +	__MT_MCUQ_MAX + 3)
58 
59 /* NOTE: used to map mt76_rates. idx may change if firmware expands table */
60 #define MT7996_BASIC_RATES_TBL		31
61 #define MT7996_BEACON_RATES_TBL		25
62 
63 #define MT7996_THERMAL_THROTTLE_MAX	100
64 #define MT7996_CDEV_THROTTLE_MAX	99
65 #define MT7996_CRIT_TEMP_IDX		0
66 #define MT7996_MAX_TEMP_IDX		1
67 #define MT7996_CRIT_TEMP		110
68 #define MT7996_MAX_TEMP			120
69 
70 #define MT7996_RRO_MAX_SESSION		1024
71 #define MT7996_RRO_WINDOW_MAX_LEN	1024
72 #define MT7996_RRO_ADDR_ELEM_LEN	128
73 #define MT7996_RRO_BA_BITMAP_LEN	2
74 #define MT7996_RRO_BA_BITMAP_CR_SIZE	((MT7996_RRO_MAX_SESSION * 128) /	\
75 					 MT7996_RRO_BA_BITMAP_LEN)
76 #define MT7996_RRO_BA_BITMAP_SESSION_SIZE	(MT7996_RRO_MAX_SESSION /	\
77 						 MT7996_RRO_ADDR_ELEM_LEN)
78 #define MT7996_RRO_WINDOW_MAX_SIZE	(MT7996_RRO_WINDOW_MAX_LEN *		\
79 					 MT7996_RRO_BA_BITMAP_SESSION_SIZE)
80 
81 #define MT7996_RX_BUF_SIZE		(1800 + \
82 					 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
83 #define MT7996_RX_MSDU_PAGE_SIZE	(128 + \
84 					 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
85 
86 struct mt7996_vif;
87 struct mt7996_sta;
88 struct mt7996_dfs_pulse;
89 struct mt7996_dfs_pattern;
90 
91 enum mt7996_ram_type {
92 	MT7996_RAM_TYPE_WM,
93 	MT7996_RAM_TYPE_WA,
94 	MT7996_RAM_TYPE_DSP,
95 };
96 
97 enum mt7996_txq_id {
98 	MT7996_TXQ_FWDL = 16,
99 	MT7996_TXQ_MCU_WM,
100 	MT7996_TXQ_BAND0,
101 	MT7996_TXQ_BAND1,
102 	MT7996_TXQ_MCU_WA,
103 	MT7996_TXQ_BAND2,
104 };
105 
106 enum mt7996_rxq_id {
107 	MT7996_RXQ_MCU_WM = 0,
108 	MT7996_RXQ_MCU_WA,
109 	MT7996_RXQ_MCU_WA_MAIN = 2,
110 	MT7996_RXQ_MCU_WA_EXT = 3, /* for mt7992 */
111 	MT7996_RXQ_MCU_WA_TRI = 3,
112 	MT7996_RXQ_BAND0 = 4,
113 	MT7996_RXQ_BAND1 = 5, /* for mt7992 */
114 	MT7996_RXQ_BAND2 = 5,
115 	MT7996_RXQ_RRO_BAND0 = 8,
116 	MT7996_RXQ_RRO_BAND1 = 8,/* unused */
117 	MT7996_RXQ_RRO_BAND2 = 6,
118 	MT7996_RXQ_MSDU_PG_BAND0 = 10,
119 	MT7996_RXQ_MSDU_PG_BAND1 = 11,
120 	MT7996_RXQ_MSDU_PG_BAND2 = 12,
121 	MT7996_RXQ_TXFREE0 = 9,
122 	MT7996_RXQ_TXFREE1 = 9,
123 	MT7996_RXQ_TXFREE2 = 7,
124 	MT7996_RXQ_RRO_IND = 0,
125 };
126 
127 struct mt7996_twt_flow {
128 	struct list_head list;
129 	u64 start_tsf;
130 	u64 tsf;
131 	u32 duration;
132 	u16 wcid;
133 	__le16 mantissa;
134 	u8 exp;
135 	u8 table_id;
136 	u8 id;
137 	u8 protection:1;
138 	u8 flowtype:1;
139 	u8 trigger:1;
140 	u8 sched:1;
141 };
142 
143 DECLARE_EWMA(avg_signal, 10, 8)
144 
145 struct mt7996_sta {
146 	struct mt76_wcid wcid; /* must be first */
147 
148 	struct mt7996_vif *vif;
149 
150 	struct list_head rc_list;
151 	u32 airtime_ac[8];
152 
153 	int ack_signal;
154 	struct ewma_avg_signal avg_ack_signal;
155 
156 	unsigned long changed;
157 
158 	struct mt76_connac_sta_key_conf bip;
159 
160 	struct {
161 		u8 flowid_mask;
162 		struct mt7996_twt_flow flow[MT7996_MAX_STA_TWT_AGRT];
163 	} twt;
164 };
165 
166 struct mt7996_vif {
167 	struct mt76_vif mt76; /* must be first */
168 
169 	struct mt7996_sta sta;
170 	struct mt7996_phy *phy;
171 
172 	struct ieee80211_tx_queue_params queue_params[IEEE80211_NUM_ACS];
173 	struct cfg80211_bitrate_mask bitrate_mask;
174 };
175 
176 /* crash-dump */
177 struct mt7996_crash_data {
178 	guid_t guid;
179 	struct timespec64 timestamp;
180 
181 	u8 *memdump_buf;
182 	size_t memdump_buf_len;
183 };
184 
185 struct mt7996_hif {
186 	struct list_head list;
187 
188 	struct device *dev;
189 	void __iomem *regs;
190 	int irq;
191 };
192 
193 struct mt7996_wed_rro_addr {
194 	u32 head_low;
195 	u32 head_high : 4;
196 	u32 count: 11;
197 	u32 oor: 1;
198 	u32 rsv : 8;
199 	u32 signature : 8;
200 };
201 
202 struct mt7996_wed_rro_session_id {
203 	struct list_head list;
204 	u16 id;
205 };
206 
207 struct mt7996_phy {
208 	struct mt76_phy *mt76;
209 	struct mt7996_dev *dev;
210 
211 	struct ieee80211_sband_iftype_data iftype[NUM_NL80211_BANDS][NUM_NL80211_IFTYPES];
212 
213 	struct ieee80211_vif *monitor_vif;
214 
215 	struct thermal_cooling_device *cdev;
216 	u8 cdev_state;
217 	u8 throttle_state;
218 	u32 throttle_temp[2]; /* 0: critical high, 1: maximum */
219 
220 	u32 rxfilter;
221 	u64 omac_mask;
222 
223 	u16 noise;
224 
225 	s16 coverage_class;
226 	u8 slottime;
227 
228 	u8 rdd_state;
229 
230 	u16 beacon_rate;
231 
232 	u32 rx_ampdu_ts;
233 	u32 ampdu_ref;
234 
235 	struct mt76_mib_stats mib;
236 	struct mt76_channel_state state_ts;
237 
238 	bool has_aux_rx;
239 };
240 
241 struct mt7996_dev {
242 	union { /* must be first */
243 		struct mt76_dev mt76;
244 		struct mt76_phy mphy;
245 	};
246 
247 	struct mt7996_hif *hif2;
248 	struct mt7996_reg_desc reg;
249 	u8 q_id[MT7996_MAX_QUEUE];
250 	u32 q_int_mask[MT7996_MAX_QUEUE];
251 	u32 q_wfdma_mask;
252 
253 	const struct mt76_bus_ops *bus_ops;
254 	struct mt7996_phy phy;
255 
256 	/* monitor rx chain configured channel */
257 	struct cfg80211_chan_def rdd2_chandef;
258 	struct mt7996_phy *rdd2_phy;
259 
260 	u16 chainmask;
261 	u8 chainshift[__MT_MAX_BAND];
262 	u32 hif_idx;
263 
264 	struct work_struct init_work;
265 	struct work_struct rc_work;
266 	struct work_struct dump_work;
267 	struct work_struct reset_work;
268 	wait_queue_head_t reset_wait;
269 	struct {
270 		u32 state;
271 		u32 wa_reset_count;
272 		u32 wm_reset_count;
273 		bool hw_full_reset:1;
274 		bool hw_init_done:1;
275 		bool restart:1;
276 	} recovery;
277 
278 	/* protects coredump data */
279 	struct mutex dump_mutex;
280 #ifdef CONFIG_DEV_COREDUMP
281 	struct {
282 		struct mt7996_crash_data *crash_data;
283 	} coredump;
284 #endif
285 
286 	struct list_head sta_rc_list;
287 	struct list_head twt_list;
288 
289 	u32 hw_pattern;
290 
291 	bool flash_mode:1;
292 	bool has_eht:1;
293 	bool has_rro:1;
294 
295 	struct {
296 		struct {
297 			void *ptr;
298 			dma_addr_t phy_addr;
299 		} ba_bitmap[MT7996_RRO_BA_BITMAP_LEN];
300 		struct {
301 			void *ptr;
302 			dma_addr_t phy_addr;
303 		} addr_elem[MT7996_RRO_ADDR_ELEM_LEN];
304 		struct {
305 			void *ptr;
306 			dma_addr_t phy_addr;
307 		} session;
308 
309 		struct work_struct work;
310 		struct list_head poll_list;
311 		spinlock_t lock;
312 	} wed_rro;
313 
314 	bool ibf;
315 	u8 fw_debug_wm;
316 	u8 fw_debug_wa;
317 	u8 fw_debug_bin;
318 	u16 fw_debug_seq;
319 
320 	struct dentry *debugfs_dir;
321 	struct rchan *relay_fwlog;
322 
323 	struct {
324 		u16 table_mask;
325 		u8 n_agrt;
326 	} twt;
327 
328 	spinlock_t reg_lock;
329 
330 	u8 wtbl_size_group;
331 };
332 
333 enum {
334 	WFDMA0 = 0x0,
335 	WFDMA1,
336 	WFDMA_EXT,
337 	__MT_WFDMA_MAX,
338 };
339 
340 enum {
341 	MT_RX_SEL0,
342 	MT_RX_SEL1,
343 	MT_RX_SEL2, /* monitor chain */
344 };
345 
346 enum mt7996_rdd_cmd {
347 	RDD_STOP,
348 	RDD_START,
349 	RDD_DET_MODE,
350 	RDD_RADAR_EMULATE,
351 	RDD_START_TXQ = 20,
352 	RDD_CAC_START = 50,
353 	RDD_CAC_END,
354 	RDD_NORMAL_START,
355 	RDD_DISABLE_DFS_CAL,
356 	RDD_PULSE_DBG,
357 	RDD_READ_PULSE,
358 	RDD_RESUME_BF,
359 	RDD_IRQ_OFF,
360 };
361 
362 static inline struct mt7996_phy *
363 mt7996_hw_phy(struct ieee80211_hw *hw)
364 {
365 	struct mt76_phy *phy = hw->priv;
366 
367 	return phy->priv;
368 }
369 
370 static inline struct mt7996_dev *
371 mt7996_hw_dev(struct ieee80211_hw *hw)
372 {
373 	struct mt76_phy *phy = hw->priv;
374 
375 	return container_of(phy->dev, struct mt7996_dev, mt76);
376 }
377 
378 static inline struct mt7996_phy *
379 __mt7996_phy(struct mt7996_dev *dev, enum mt76_band_id band)
380 {
381 	struct mt76_phy *phy = dev->mt76.phys[band];
382 
383 	if (!phy)
384 		return NULL;
385 
386 	return phy->priv;
387 }
388 
389 static inline struct mt7996_phy *
390 mt7996_phy2(struct mt7996_dev *dev)
391 {
392 	return __mt7996_phy(dev, MT_BAND1);
393 }
394 
395 static inline struct mt7996_phy *
396 mt7996_phy3(struct mt7996_dev *dev)
397 {
398 	return __mt7996_phy(dev, MT_BAND2);
399 }
400 
401 static inline bool
402 mt7996_band_valid(struct mt7996_dev *dev, u8 band)
403 {
404 	if (is_mt7992(&dev->mt76))
405 		return band <= MT_BAND1;
406 
407 	/* tri-band support */
408 	if (band <= MT_BAND2 &&
409 	    mt76_get_field(dev, MT_PAD_GPIO, MT_PAD_GPIO_ADIE_COMB) <= 1)
410 		return true;
411 
412 	return band == MT_BAND0 || band == MT_BAND2;
413 }
414 
415 extern const struct ieee80211_ops mt7996_ops;
416 extern struct pci_driver mt7996_pci_driver;
417 extern struct pci_driver mt7996_hif_driver;
418 
419 struct mt7996_dev *mt7996_mmio_probe(struct device *pdev,
420 				     void __iomem *mem_base, u32 device_id);
421 void mt7996_wfsys_reset(struct mt7996_dev *dev);
422 irqreturn_t mt7996_irq_handler(int irq, void *dev_instance);
423 u64 __mt7996_get_tsf(struct ieee80211_hw *hw, struct mt7996_vif *mvif);
424 int mt7996_register_device(struct mt7996_dev *dev);
425 void mt7996_unregister_device(struct mt7996_dev *dev);
426 int mt7996_eeprom_init(struct mt7996_dev *dev);
427 int mt7996_eeprom_parse_hw_cap(struct mt7996_dev *dev, struct mt7996_phy *phy);
428 int mt7996_eeprom_get_target_power(struct mt7996_dev *dev,
429 				   struct ieee80211_channel *chan);
430 s8 mt7996_eeprom_get_power_delta(struct mt7996_dev *dev, int band);
431 int mt7996_dma_init(struct mt7996_dev *dev);
432 void mt7996_dma_reset(struct mt7996_dev *dev, bool force);
433 void mt7996_dma_prefetch(struct mt7996_dev *dev);
434 void mt7996_dma_cleanup(struct mt7996_dev *dev);
435 void mt7996_dma_start(struct mt7996_dev *dev, bool reset, bool wed_reset);
436 int mt7996_init_tx_queues(struct mt7996_phy *phy, int idx,
437 			  int n_desc, int ring_base, struct mtk_wed_device *wed);
438 void mt7996_init_txpower(struct mt7996_phy *phy);
439 int mt7996_txbf_init(struct mt7996_dev *dev);
440 void mt7996_reset(struct mt7996_dev *dev);
441 int mt7996_run(struct ieee80211_hw *hw);
442 int mt7996_mcu_init(struct mt7996_dev *dev);
443 int mt7996_mcu_init_firmware(struct mt7996_dev *dev);
444 int mt7996_mcu_twt_agrt_update(struct mt7996_dev *dev,
445 			       struct mt7996_vif *mvif,
446 			       struct mt7996_twt_flow *flow,
447 			       int cmd);
448 int mt7996_mcu_add_dev_info(struct mt7996_phy *phy,
449 			    struct ieee80211_vif *vif, bool enable);
450 int mt7996_mcu_add_bss_info(struct mt7996_phy *phy,
451 			    struct ieee80211_vif *vif, int enable);
452 int mt7996_mcu_add_sta(struct mt7996_dev *dev, struct ieee80211_vif *vif,
453 		       struct ieee80211_sta *sta, bool enable);
454 int mt7996_mcu_add_tx_ba(struct mt7996_dev *dev,
455 			 struct ieee80211_ampdu_params *params,
456 			 bool add);
457 int mt7996_mcu_add_rx_ba(struct mt7996_dev *dev,
458 			 struct ieee80211_ampdu_params *params,
459 			 bool add);
460 int mt7996_mcu_update_bss_color(struct mt7996_dev *dev, struct ieee80211_vif *vif,
461 				struct cfg80211_he_bss_color *he_bss_color);
462 int mt7996_mcu_add_beacon(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
463 			  int enable);
464 int mt7996_mcu_beacon_inband_discov(struct mt7996_dev *dev,
465 				    struct ieee80211_vif *vif, u32 changed);
466 int mt7996_mcu_add_obss_spr(struct mt7996_phy *phy, struct ieee80211_vif *vif,
467 			    struct ieee80211_he_obss_pd *he_obss_pd);
468 int mt7996_mcu_add_rate_ctrl(struct mt7996_dev *dev, struct ieee80211_vif *vif,
469 			     struct ieee80211_sta *sta, bool changed);
470 int mt7996_set_channel(struct mt7996_phy *phy);
471 int mt7996_mcu_set_chan_info(struct mt7996_phy *phy, u16 tag);
472 int mt7996_mcu_set_tx(struct mt7996_dev *dev, struct ieee80211_vif *vif);
473 int mt7996_mcu_set_fixed_rate_ctrl(struct mt7996_dev *dev,
474 				   void *data, u16 version);
475 int mt7996_mcu_set_fixed_field(struct mt7996_dev *dev, struct ieee80211_vif *vif,
476 			       struct ieee80211_sta *sta, void *data, u32 field);
477 int mt7996_mcu_set_eeprom(struct mt7996_dev *dev);
478 int mt7996_mcu_get_eeprom(struct mt7996_dev *dev, u32 offset);
479 int mt7996_mcu_get_eeprom_free_block(struct mt7996_dev *dev, u8 *block_num);
480 int mt7996_mcu_get_chip_config(struct mt7996_dev *dev, u32 *cap);
481 int mt7996_mcu_set_ser(struct mt7996_dev *dev, u8 action, u8 set, u8 band);
482 int mt7996_mcu_set_txbf(struct mt7996_dev *dev, u8 action);
483 int mt7996_mcu_set_fcc5_lpn(struct mt7996_dev *dev, int val);
484 int mt7996_mcu_set_pulse_th(struct mt7996_dev *dev,
485 			    const struct mt7996_dfs_pulse *pulse);
486 int mt7996_mcu_set_radar_th(struct mt7996_dev *dev, int index,
487 			    const struct mt7996_dfs_pattern *pattern);
488 int mt7996_mcu_set_radio_en(struct mt7996_phy *phy, bool enable);
489 int mt7996_mcu_set_rts_thresh(struct mt7996_phy *phy, u32 val);
490 int mt7996_mcu_set_timing(struct mt7996_phy *phy, struct ieee80211_vif *vif);
491 int mt7996_mcu_get_chan_mib_info(struct mt7996_phy *phy, bool chan_switch);
492 int mt7996_mcu_get_temperature(struct mt7996_phy *phy);
493 int mt7996_mcu_set_thermal_throttling(struct mt7996_phy *phy, u8 state);
494 int mt7996_mcu_set_thermal_protect(struct mt7996_phy *phy, bool enable);
495 int mt7996_mcu_set_txpower_sku(struct mt7996_phy *phy);
496 int mt7996_mcu_rdd_cmd(struct mt7996_dev *dev, int cmd, u8 index,
497 		       u8 rx_sel, u8 val);
498 int mt7996_mcu_rdd_background_enable(struct mt7996_phy *phy,
499 				     struct cfg80211_chan_def *chandef);
500 int mt7996_mcu_set_fixed_rate_table(struct mt7996_phy *phy, u8 table_idx,
501 				    u16 rate_idx, bool beacon);
502 int mt7996_mcu_rf_regval(struct mt7996_dev *dev, u32 regidx, u32 *val, bool set);
503 int mt7996_mcu_set_hdr_trans(struct mt7996_dev *dev, bool hdr_trans);
504 int mt7996_mcu_set_rro(struct mt7996_dev *dev, u16 tag, u16 val);
505 int mt7996_mcu_wa_cmd(struct mt7996_dev *dev, int cmd, u32 a1, u32 a2, u32 a3);
506 int mt7996_mcu_fw_log_2_host(struct mt7996_dev *dev, u8 type, u8 ctrl);
507 int mt7996_mcu_fw_dbg_ctrl(struct mt7996_dev *dev, u32 module, u8 level);
508 int mt7996_mcu_trigger_assert(struct mt7996_dev *dev);
509 void mt7996_mcu_rx_event(struct mt7996_dev *dev, struct sk_buff *skb);
510 void mt7996_mcu_exit(struct mt7996_dev *dev);
511 int mt7996_mcu_get_all_sta_info(struct mt7996_phy *phy, u16 tag);
512 int mt7996_mcu_wed_rro_reset_sessions(struct mt7996_dev *dev, u16 id);
513 
514 static inline u8 mt7996_max_interface_num(struct mt7996_dev *dev)
515 {
516 	return min(MT7996_MAX_INTERFACES * (1 + mt7996_band_valid(dev, MT_BAND1) +
517 					    mt7996_band_valid(dev, MT_BAND2)),
518 		   MT7996_WTBL_BMC_SIZE);
519 }
520 
521 static inline u16 mt7996_wtbl_size(struct mt7996_dev *dev)
522 {
523 	return (dev->wtbl_size_group << 8) + MT7996_WTBL_BMC_SIZE;
524 }
525 
526 void mt7996_dual_hif_set_irq_mask(struct mt7996_dev *dev, bool write_reg,
527 				  u32 clear, u32 set);
528 
529 static inline void mt7996_irq_enable(struct mt7996_dev *dev, u32 mask)
530 {
531 	if (dev->hif2)
532 		mt7996_dual_hif_set_irq_mask(dev, false, 0, mask);
533 	else
534 		mt76_set_irq_mask(&dev->mt76, 0, 0, mask);
535 
536 	tasklet_schedule(&dev->mt76.irq_tasklet);
537 }
538 
539 static inline void mt7996_irq_disable(struct mt7996_dev *dev, u32 mask)
540 {
541 	if (dev->hif2)
542 		mt7996_dual_hif_set_irq_mask(dev, true, mask, 0);
543 	else
544 		mt76_set_irq_mask(&dev->mt76, MT_INT_MASK_CSR, mask, 0);
545 }
546 
547 void mt7996_memcpy_fromio(struct mt7996_dev *dev, void *buf, u32 offset,
548 			  size_t len);
549 
550 static inline u16 mt7996_rx_chainmask(struct mt7996_phy *phy)
551 {
552 	int max_nss = hweight8(phy->mt76->hw->wiphy->available_antennas_tx);
553 	int cur_nss = hweight8(phy->mt76->antenna_mask);
554 	u16 tx_chainmask = phy->mt76->chainmask;
555 
556 	if (cur_nss != max_nss)
557 		return tx_chainmask;
558 
559 	return tx_chainmask | (BIT(fls(tx_chainmask)) * phy->has_aux_rx);
560 }
561 
562 void mt7996_mac_init(struct mt7996_dev *dev);
563 u32 mt7996_mac_wtbl_lmac_addr(struct mt7996_dev *dev, u16 wcid, u8 dw);
564 bool mt7996_mac_wtbl_update(struct mt7996_dev *dev, int idx, u32 mask);
565 void mt7996_mac_reset_counters(struct mt7996_phy *phy);
566 void mt7996_mac_cca_stats_reset(struct mt7996_phy *phy);
567 void mt7996_mac_enable_nf(struct mt7996_dev *dev, u8 band);
568 void mt7996_mac_enable_rtscts(struct mt7996_dev *dev,
569 			      struct ieee80211_vif *vif, bool enable);
570 void mt7996_mac_write_txwi(struct mt7996_dev *dev, __le32 *txwi,
571 			   struct sk_buff *skb, struct mt76_wcid *wcid,
572 			   struct ieee80211_key_conf *key, int pid,
573 			   enum mt76_txq_id qid, u32 changed);
574 void mt7996_mac_set_coverage_class(struct mt7996_phy *phy);
575 int mt7996_mac_sta_add(struct mt76_dev *mdev, struct ieee80211_vif *vif,
576 		       struct ieee80211_sta *sta);
577 void mt7996_mac_sta_remove(struct mt76_dev *mdev, struct ieee80211_vif *vif,
578 			   struct ieee80211_sta *sta);
579 void mt7996_mac_work(struct work_struct *work);
580 void mt7996_mac_reset_work(struct work_struct *work);
581 void mt7996_mac_dump_work(struct work_struct *work);
582 void mt7996_mac_sta_rc_work(struct work_struct *work);
583 void mt7996_mac_update_stats(struct mt7996_phy *phy);
584 void mt7996_mac_twt_teardown_flow(struct mt7996_dev *dev,
585 				  struct mt7996_sta *msta,
586 				  u8 flowid);
587 void mt7996_mac_add_twt_setup(struct ieee80211_hw *hw,
588 			      struct ieee80211_sta *sta,
589 			      struct ieee80211_twt_setup *twt);
590 int mt7996_tx_prepare_skb(struct mt76_dev *mdev, void *txwi_ptr,
591 			  enum mt76_txq_id qid, struct mt76_wcid *wcid,
592 			  struct ieee80211_sta *sta,
593 			  struct mt76_tx_info *tx_info);
594 void mt7996_tx_token_put(struct mt7996_dev *dev);
595 void mt7996_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
596 			 struct sk_buff *skb, u32 *info);
597 bool mt7996_rx_check(struct mt76_dev *mdev, void *data, int len);
598 void mt7996_stats_work(struct work_struct *work);
599 int mt76_dfs_start_rdd(struct mt7996_dev *dev, bool force);
600 int mt7996_dfs_init_radar_detector(struct mt7996_phy *phy);
601 void mt7996_set_stream_he_eht_caps(struct mt7996_phy *phy);
602 void mt7996_set_stream_vht_txbf_caps(struct mt7996_phy *phy);
603 void mt7996_update_channel(struct mt76_phy *mphy);
604 int mt7996_init_debugfs(struct mt7996_phy *phy);
605 void mt7996_debugfs_rx_fw_monitor(struct mt7996_dev *dev, const void *data, int len);
606 bool mt7996_debugfs_rx_log(struct mt7996_dev *dev, const void *data, int len);
607 int mt7996_mcu_add_key(struct mt76_dev *dev, struct ieee80211_vif *vif,
608 		       struct ieee80211_key_conf *key, int mcu_cmd,
609 		       struct mt76_wcid *wcid, enum set_key_cmd cmd);
610 int mt7996_mcu_bcn_prot_enable(struct mt7996_dev *dev, struct ieee80211_vif *vif,
611 			       struct ieee80211_key_conf *key);
612 int mt7996_mcu_wtbl_update_hdr_trans(struct mt7996_dev *dev,
613 				     struct ieee80211_vif *vif,
614 				     struct ieee80211_sta *sta);
615 #ifdef CONFIG_MAC80211_DEBUGFS
616 void mt7996_sta_add_debugfs(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
617 			    struct ieee80211_sta *sta, struct dentry *dir);
618 #endif
619 int mt7996_mmio_wed_init(struct mt7996_dev *dev, void *pdev_ptr,
620 			 bool hif2, int *irq);
621 u32 mt7996_wed_init_buf(void *ptr, dma_addr_t phys, int token_id);
622 
623 #ifdef CONFIG_MTK_DEBUG
624 int mt7996_mtk_init_debugfs(struct mt7996_phy *phy, struct dentry *dir);
625 #endif
626 
627 #ifdef CONFIG_NET_MEDIATEK_SOC_WED
628 int mt7996_dma_rro_init(struct mt7996_dev *dev);
629 #endif /* CONFIG_NET_MEDIATEK_SOC_WED */
630 
631 #endif
632