xref: /linux/drivers/net/wireless/realtek/rtw89/mac.c (revision 8130e94e888bf90e495f88d1a1e63c43e1cfbc18)
1e3ec7017SPing-Ke Shih // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2e3ec7017SPing-Ke Shih /* Copyright(c) 2019-2020  Realtek Corporation
3e3ec7017SPing-Ke Shih  */
4e3ec7017SPing-Ke Shih 
5e3ec7017SPing-Ke Shih #include "cam.h"
6967439c7SZong-Zhe Yang #include "chan.h"
7e3ec7017SPing-Ke Shih #include "debug.h"
8e3ec7017SPing-Ke Shih #include "fw.h"
9e3ec7017SPing-Ke Shih #include "mac.h"
10f7333fc2SChia-Yuan Li #include "pci.h"
11e3ec7017SPing-Ke Shih #include "ps.h"
12e3ec7017SPing-Ke Shih #include "reg.h"
13e3ec7017SPing-Ke Shih #include "util.h"
14e3ec7017SPing-Ke Shih 
15ec356ffbSChia-Yuan Li const u32 rtw89_mac_mem_base_addrs[RTW89_MAC_MEM_NUM] = {
16e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_AXIDMA]	        = AXIDMA_BASE_ADDR,
17e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_SHARED_BUF]	= SHARED_BUF_BASE_ADDR,
18e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_DMAC_TBL]	= DMAC_TBL_BASE_ADDR,
19e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_SHCUT_MACHDR]	= SHCUT_MACHDR_BASE_ADDR,
20e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_STA_SCHED]	= STA_SCHED_BASE_ADDR,
21e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_RXPLD_FLTR_CAM]	= RXPLD_FLTR_CAM_BASE_ADDR,
22e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_SECURITY_CAM]	= SECURITY_CAM_BASE_ADDR,
23e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_WOW_CAM]		= WOW_CAM_BASE_ADDR,
24e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_CMAC_TBL]	= CMAC_TBL_BASE_ADDR,
25e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_ADDR_CAM]	= ADDR_CAM_BASE_ADDR,
26e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_BA_CAM]		= BA_CAM_BASE_ADDR,
27e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_BCN_IE_CAM0]	= BCN_IE_CAM0_BASE_ADDR,
28e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_BCN_IE_CAM1]	= BCN_IE_CAM1_BASE_ADDR,
29e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_TXD_FIFO_0]	= TXD_FIFO_0_BASE_ADDR,
30e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_TXD_FIFO_1]	= TXD_FIFO_1_BASE_ADDR,
31e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_TXDATA_FIFO_0]	= TXDATA_FIFO_0_BASE_ADDR,
32e1400b11SZong-Zhe Yang 	[RTW89_MAC_MEM_TXDATA_FIFO_1]	= TXDATA_FIFO_1_BASE_ADDR,
33ec356ffbSChia-Yuan Li 	[RTW89_MAC_MEM_CPU_LOCAL]	= CPU_LOCAL_BASE_ADDR,
34dadb2086SPing-Ke Shih 	[RTW89_MAC_MEM_BSSID_CAM]	= BSSID_CAM_BASE_ADDR,
35732dd91dSPing-Ke Shih 	[RTW89_MAC_MEM_TXD_FIFO_0_V1]	= TXD_FIFO_0_BASE_ADDR_V1,
36732dd91dSPing-Ke Shih 	[RTW89_MAC_MEM_TXD_FIFO_1_V1]	= TXD_FIFO_1_BASE_ADDR_V1,
37e1400b11SZong-Zhe Yang };
38e1400b11SZong-Zhe Yang 
39ec356ffbSChia-Yuan Li static void rtw89_mac_mem_write(struct rtw89_dev *rtwdev, u32 offset,
40ec356ffbSChia-Yuan Li 				u32 val, enum rtw89_mac_mem_sel sel)
41ec356ffbSChia-Yuan Li {
42ec356ffbSChia-Yuan Li 	u32 addr = rtw89_mac_mem_base_addrs[sel] + offset;
43ec356ffbSChia-Yuan Li 
44ec356ffbSChia-Yuan Li 	rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR, addr);
45ec356ffbSChia-Yuan Li 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY, val);
46ec356ffbSChia-Yuan Li }
47ec356ffbSChia-Yuan Li 
48ec356ffbSChia-Yuan Li static u32 rtw89_mac_mem_read(struct rtw89_dev *rtwdev, u32 offset,
49ec356ffbSChia-Yuan Li 			      enum rtw89_mac_mem_sel sel)
50ec356ffbSChia-Yuan Li {
51ec356ffbSChia-Yuan Li 	u32 addr = rtw89_mac_mem_base_addrs[sel] + offset;
52ec356ffbSChia-Yuan Li 
53ec356ffbSChia-Yuan Li 	rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR, addr);
54ec356ffbSChia-Yuan Li 	return rtw89_read32(rtwdev, R_AX_INDIR_ACCESS_ENTRY);
55ec356ffbSChia-Yuan Li }
56ec356ffbSChia-Yuan Li 
57e3ec7017SPing-Ke Shih int rtw89_mac_check_mac_en(struct rtw89_dev *rtwdev, u8 mac_idx,
58e3ec7017SPing-Ke Shih 			   enum rtw89_mac_hwmod_sel sel)
59e3ec7017SPing-Ke Shih {
60e3ec7017SPing-Ke Shih 	u32 val, r_val;
61e3ec7017SPing-Ke Shih 
62e3ec7017SPing-Ke Shih 	if (sel == RTW89_DMAC_SEL) {
63e3ec7017SPing-Ke Shih 		r_val = rtw89_read32(rtwdev, R_AX_DMAC_FUNC_EN);
64e3ec7017SPing-Ke Shih 		val = (B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN);
65e3ec7017SPing-Ke Shih 	} else if (sel == RTW89_CMAC_SEL && mac_idx == 0) {
66e3ec7017SPing-Ke Shih 		r_val = rtw89_read32(rtwdev, R_AX_CMAC_FUNC_EN);
67e3ec7017SPing-Ke Shih 		val = B_AX_CMAC_EN;
68e3ec7017SPing-Ke Shih 	} else if (sel == RTW89_CMAC_SEL && mac_idx == 1) {
69e3ec7017SPing-Ke Shih 		r_val = rtw89_read32(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND);
70e3ec7017SPing-Ke Shih 		val = B_AX_CMAC1_FEN;
71e3ec7017SPing-Ke Shih 	} else {
72e3ec7017SPing-Ke Shih 		return -EINVAL;
73e3ec7017SPing-Ke Shih 	}
74e3ec7017SPing-Ke Shih 	if (r_val == RTW89_R32_EA || r_val == RTW89_R32_DEAD ||
75e3ec7017SPing-Ke Shih 	    (val & r_val) != val)
76e3ec7017SPing-Ke Shih 		return -EFAULT;
77e3ec7017SPing-Ke Shih 
78e3ec7017SPing-Ke Shih 	return 0;
79e3ec7017SPing-Ke Shih }
80e3ec7017SPing-Ke Shih 
81e3ec7017SPing-Ke Shih int rtw89_mac_write_lte(struct rtw89_dev *rtwdev, const u32 offset, u32 val)
82e3ec7017SPing-Ke Shih {
83e3ec7017SPing-Ke Shih 	u8 lte_ctrl;
84e3ec7017SPing-Ke Shih 	int ret;
85e3ec7017SPing-Ke Shih 
86e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read8, lte_ctrl, (lte_ctrl & BIT(5)) != 0,
87e3ec7017SPing-Ke Shih 				50, 50000, false, rtwdev, R_AX_LTE_CTRL + 3);
88e3ec7017SPing-Ke Shih 	if (ret)
89e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]lte not ready(W)\n");
90e3ec7017SPing-Ke Shih 
91e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_LTE_WDATA, val);
92e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_LTE_CTRL, 0xC00F0000 | offset);
93e3ec7017SPing-Ke Shih 
94e3ec7017SPing-Ke Shih 	return ret;
95e3ec7017SPing-Ke Shih }
96e3ec7017SPing-Ke Shih 
97e3ec7017SPing-Ke Shih int rtw89_mac_read_lte(struct rtw89_dev *rtwdev, const u32 offset, u32 *val)
98e3ec7017SPing-Ke Shih {
99e3ec7017SPing-Ke Shih 	u8 lte_ctrl;
100e3ec7017SPing-Ke Shih 	int ret;
101e3ec7017SPing-Ke Shih 
102e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read8, lte_ctrl, (lte_ctrl & BIT(5)) != 0,
103e3ec7017SPing-Ke Shih 				50, 50000, false, rtwdev, R_AX_LTE_CTRL + 3);
104e3ec7017SPing-Ke Shih 	if (ret)
105e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]lte not ready(W)\n");
106e3ec7017SPing-Ke Shih 
107e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_LTE_CTRL, 0x800F0000 | offset);
108e3ec7017SPing-Ke Shih 	*val = rtw89_read32(rtwdev, R_AX_LTE_RDATA);
109e3ec7017SPing-Ke Shih 
110e3ec7017SPing-Ke Shih 	return ret;
111e3ec7017SPing-Ke Shih }
112e3ec7017SPing-Ke Shih 
113e3ec7017SPing-Ke Shih static
114e3ec7017SPing-Ke Shih int dle_dfi_ctrl(struct rtw89_dev *rtwdev, struct rtw89_mac_dle_dfi_ctrl *ctrl)
115e3ec7017SPing-Ke Shih {
116e3ec7017SPing-Ke Shih 	u32 ctrl_reg, data_reg, ctrl_data;
117e3ec7017SPing-Ke Shih 	u32 val;
118e3ec7017SPing-Ke Shih 	int ret;
119e3ec7017SPing-Ke Shih 
120e3ec7017SPing-Ke Shih 	switch (ctrl->type) {
121e3ec7017SPing-Ke Shih 	case DLE_CTRL_TYPE_WDE:
122e3ec7017SPing-Ke Shih 		ctrl_reg = R_AX_WDE_DBG_FUN_INTF_CTL;
123e3ec7017SPing-Ke Shih 		data_reg = R_AX_WDE_DBG_FUN_INTF_DATA;
124e3ec7017SPing-Ke Shih 		ctrl_data = FIELD_PREP(B_AX_WDE_DFI_TRGSEL_MASK, ctrl->target) |
125e3ec7017SPing-Ke Shih 			    FIELD_PREP(B_AX_WDE_DFI_ADDR_MASK, ctrl->addr) |
126e3ec7017SPing-Ke Shih 			    B_AX_WDE_DFI_ACTIVE;
127e3ec7017SPing-Ke Shih 		break;
128e3ec7017SPing-Ke Shih 	case DLE_CTRL_TYPE_PLE:
129e3ec7017SPing-Ke Shih 		ctrl_reg = R_AX_PLE_DBG_FUN_INTF_CTL;
130e3ec7017SPing-Ke Shih 		data_reg = R_AX_PLE_DBG_FUN_INTF_DATA;
131e3ec7017SPing-Ke Shih 		ctrl_data = FIELD_PREP(B_AX_PLE_DFI_TRGSEL_MASK, ctrl->target) |
132e3ec7017SPing-Ke Shih 			    FIELD_PREP(B_AX_PLE_DFI_ADDR_MASK, ctrl->addr) |
133e3ec7017SPing-Ke Shih 			    B_AX_PLE_DFI_ACTIVE;
134e3ec7017SPing-Ke Shih 		break;
135e3ec7017SPing-Ke Shih 	default:
136e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "[ERR] dfi ctrl type %d\n", ctrl->type);
137e3ec7017SPing-Ke Shih 		return -EINVAL;
138e3ec7017SPing-Ke Shih 	}
139e3ec7017SPing-Ke Shih 
140e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, ctrl_reg, ctrl_data);
141e3ec7017SPing-Ke Shih 
142e3ec7017SPing-Ke Shih 	ret = read_poll_timeout_atomic(rtw89_read32, val, !(val & B_AX_WDE_DFI_ACTIVE),
143e3ec7017SPing-Ke Shih 				       1, 1000, false, rtwdev, ctrl_reg);
144e3ec7017SPing-Ke Shih 	if (ret) {
145e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "[ERR] dle dfi ctrl 0x%X set 0x%X timeout\n",
146e3ec7017SPing-Ke Shih 			   ctrl_reg, ctrl_data);
147e3ec7017SPing-Ke Shih 		return ret;
148e3ec7017SPing-Ke Shih 	}
149e3ec7017SPing-Ke Shih 
150e3ec7017SPing-Ke Shih 	ctrl->out_data = rtw89_read32(rtwdev, data_reg);
151e3ec7017SPing-Ke Shih 	return 0;
152e3ec7017SPing-Ke Shih }
153e3ec7017SPing-Ke Shih 
154e3ec7017SPing-Ke Shih static int dle_dfi_quota(struct rtw89_dev *rtwdev,
155e3ec7017SPing-Ke Shih 			 struct rtw89_mac_dle_dfi_quota *quota)
156e3ec7017SPing-Ke Shih {
157e3ec7017SPing-Ke Shih 	struct rtw89_mac_dle_dfi_ctrl ctrl;
158e3ec7017SPing-Ke Shih 	int ret;
159e3ec7017SPing-Ke Shih 
160e3ec7017SPing-Ke Shih 	ctrl.type = quota->dle_type;
161e3ec7017SPing-Ke Shih 	ctrl.target = DLE_DFI_TYPE_QUOTA;
162e3ec7017SPing-Ke Shih 	ctrl.addr = quota->qtaid;
163e3ec7017SPing-Ke Shih 	ret = dle_dfi_ctrl(rtwdev, &ctrl);
164e3ec7017SPing-Ke Shih 	if (ret) {
165e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "[ERR]dle_dfi_ctrl %d\n", ret);
166e3ec7017SPing-Ke Shih 		return ret;
167e3ec7017SPing-Ke Shih 	}
168e3ec7017SPing-Ke Shih 
169e3ec7017SPing-Ke Shih 	quota->rsv_pgnum = FIELD_GET(B_AX_DLE_RSV_PGNUM, ctrl.out_data);
170e3ec7017SPing-Ke Shih 	quota->use_pgnum = FIELD_GET(B_AX_DLE_USE_PGNUM, ctrl.out_data);
171e3ec7017SPing-Ke Shih 	return 0;
172e3ec7017SPing-Ke Shih }
173e3ec7017SPing-Ke Shih 
174e3ec7017SPing-Ke Shih static int dle_dfi_qempty(struct rtw89_dev *rtwdev,
175e3ec7017SPing-Ke Shih 			  struct rtw89_mac_dle_dfi_qempty *qempty)
176e3ec7017SPing-Ke Shih {
177e3ec7017SPing-Ke Shih 	struct rtw89_mac_dle_dfi_ctrl ctrl;
178e3ec7017SPing-Ke Shih 	u32 ret;
179e3ec7017SPing-Ke Shih 
180e3ec7017SPing-Ke Shih 	ctrl.type = qempty->dle_type;
181e3ec7017SPing-Ke Shih 	ctrl.target = DLE_DFI_TYPE_QEMPTY;
182e3ec7017SPing-Ke Shih 	ctrl.addr = qempty->grpsel;
183e3ec7017SPing-Ke Shih 	ret = dle_dfi_ctrl(rtwdev, &ctrl);
184e3ec7017SPing-Ke Shih 	if (ret) {
185e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "[ERR]dle_dfi_ctrl %d\n", ret);
186e3ec7017SPing-Ke Shih 		return ret;
187e3ec7017SPing-Ke Shih 	}
188e3ec7017SPing-Ke Shih 
189e3ec7017SPing-Ke Shih 	qempty->qempty = FIELD_GET(B_AX_DLE_QEMPTY_GRP, ctrl.out_data);
190e3ec7017SPing-Ke Shih 	return 0;
191e3ec7017SPing-Ke Shih }
192e3ec7017SPing-Ke Shih 
193e3ec7017SPing-Ke Shih static void dump_err_status_dispatcher(struct rtw89_dev *rtwdev)
194e3ec7017SPing-Ke Shih {
195e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_HOST_DISPATCHER_ALWAYS_IMR=0x%08x ",
196e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR));
197e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_HOST_DISPATCHER_ALWAYS_ISR=0x%08x\n",
198e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_HOST_DISPATCHER_ERR_ISR));
199e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_CPU_DISPATCHER_ALWAYS_IMR=0x%08x ",
200e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR));
201e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_CPU_DISPATCHER_ALWAYS_ISR=0x%08x\n",
202e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_CPU_DISPATCHER_ERR_ISR));
203e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_OTHER_DISPATCHER_ALWAYS_IMR=0x%08x ",
204e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR));
205e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_OTHER_DISPATCHER_ALWAYS_ISR=0x%08x\n",
206e3ec7017SPing-Ke Shih 		   rtw89_read32(rtwdev, R_AX_OTHER_DISPATCHER_ERR_ISR));
207e3ec7017SPing-Ke Shih }
208e3ec7017SPing-Ke Shih 
209e3ec7017SPing-Ke Shih static void rtw89_mac_dump_qta_lost(struct rtw89_dev *rtwdev)
210e3ec7017SPing-Ke Shih {
211e3ec7017SPing-Ke Shih 	struct rtw89_mac_dle_dfi_qempty qempty;
212e3ec7017SPing-Ke Shih 	struct rtw89_mac_dle_dfi_quota quota;
213e3ec7017SPing-Ke Shih 	struct rtw89_mac_dle_dfi_ctrl ctrl;
214e3ec7017SPing-Ke Shih 	u32 val, not_empty, i;
215e3ec7017SPing-Ke Shih 	int ret;
216e3ec7017SPing-Ke Shih 
217e3ec7017SPing-Ke Shih 	qempty.dle_type = DLE_CTRL_TYPE_PLE;
218e3ec7017SPing-Ke Shih 	qempty.grpsel = 0;
21989e4a00fSÍñigo Huguet 	qempty.qempty = ~(u32)0;
220e3ec7017SPing-Ke Shih 	ret = dle_dfi_qempty(rtwdev, &qempty);
221e3ec7017SPing-Ke Shih 	if (ret)
222e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "%s: query DLE fail\n", __func__);
223e3ec7017SPing-Ke Shih 	else
224e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "DLE group0 empty: 0x%x\n", qempty.qempty);
225e3ec7017SPing-Ke Shih 
226e3ec7017SPing-Ke Shih 	for (not_empty = ~qempty.qempty, i = 0; not_empty != 0; not_empty >>= 1, i++) {
227e3ec7017SPing-Ke Shih 		if (!(not_empty & BIT(0)))
228e3ec7017SPing-Ke Shih 			continue;
229e3ec7017SPing-Ke Shih 		ctrl.type = DLE_CTRL_TYPE_PLE;
230e3ec7017SPing-Ke Shih 		ctrl.target = DLE_DFI_TYPE_QLNKTBL;
231e3ec7017SPing-Ke Shih 		ctrl.addr = (QLNKTBL_ADDR_INFO_SEL_0 ? QLNKTBL_ADDR_INFO_SEL : 0) |
232e3ec7017SPing-Ke Shih 			    FIELD_PREP(QLNKTBL_ADDR_TBL_IDX_MASK, i);
233e3ec7017SPing-Ke Shih 		ret = dle_dfi_ctrl(rtwdev, &ctrl);
234e3ec7017SPing-Ke Shih 		if (ret)
235e3ec7017SPing-Ke Shih 			rtw89_warn(rtwdev, "%s: query DLE fail\n", __func__);
236e3ec7017SPing-Ke Shih 		else
237e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "qidx%d pktcnt = %ld\n", i,
238e3ec7017SPing-Ke Shih 				   FIELD_GET(QLNKTBL_DATA_SEL1_PKT_CNT_MASK,
239e3ec7017SPing-Ke Shih 					     ctrl.out_data));
240e3ec7017SPing-Ke Shih 	}
241e3ec7017SPing-Ke Shih 
242e3ec7017SPing-Ke Shih 	quota.dle_type = DLE_CTRL_TYPE_PLE;
243e3ec7017SPing-Ke Shih 	quota.qtaid = 6;
244e3ec7017SPing-Ke Shih 	ret = dle_dfi_quota(rtwdev, &quota);
245e3ec7017SPing-Ke Shih 	if (ret)
246e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "%s: query DLE fail\n", __func__);
247e3ec7017SPing-Ke Shih 	else
248e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "quota6 rsv/use: 0x%x/0x%x\n",
249e3ec7017SPing-Ke Shih 			   quota.rsv_pgnum, quota.use_pgnum);
250e3ec7017SPing-Ke Shih 
251e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_PLE_QTA6_CFG);
252e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "[PLE][CMAC0_RX]min_pgnum=0x%lx\n",
253e3ec7017SPing-Ke Shih 		   FIELD_GET(B_AX_PLE_Q6_MIN_SIZE_MASK, val));
254e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "[PLE][CMAC0_RX]max_pgnum=0x%lx\n",
255e3ec7017SPing-Ke Shih 		   FIELD_GET(B_AX_PLE_Q6_MAX_SIZE_MASK, val));
256e3ec7017SPing-Ke Shih 
257e3ec7017SPing-Ke Shih 	dump_err_status_dispatcher(rtwdev);
258e3ec7017SPing-Ke Shih }
259e3ec7017SPing-Ke Shih 
260e3ec7017SPing-Ke Shih static void rtw89_mac_dump_l0_to_l1(struct rtw89_dev *rtwdev,
261e3ec7017SPing-Ke Shih 				    enum mac_ax_err_info err)
262e3ec7017SPing-Ke Shih {
263e3ec7017SPing-Ke Shih 	u32 dbg, event;
264e3ec7017SPing-Ke Shih 
265e3ec7017SPing-Ke Shih 	dbg = rtw89_read32(rtwdev, R_AX_SER_DBG_INFO);
266e3ec7017SPing-Ke Shih 	event = FIELD_GET(B_AX_L0_TO_L1_EVENT_MASK, dbg);
267e3ec7017SPing-Ke Shih 
268e3ec7017SPing-Ke Shih 	switch (event) {
269e3ec7017SPing-Ke Shih 	case MAC_AX_L0_TO_L1_RX_QTA_LOST:
270e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "quota lost!\n");
271e3ec7017SPing-Ke Shih 		rtw89_mac_dump_qta_lost(rtwdev);
272e3ec7017SPing-Ke Shih 		break;
273e3ec7017SPing-Ke Shih 	default:
274e3ec7017SPing-Ke Shih 		break;
275e3ec7017SPing-Ke Shih 	}
276e3ec7017SPing-Ke Shih }
277e3ec7017SPing-Ke Shih 
278f7333fc2SChia-Yuan Li static void rtw89_mac_dump_dmac_err_status(struct rtw89_dev *rtwdev)
279e3ec7017SPing-Ke Shih {
280f7333fc2SChia-Yuan Li 	const struct rtw89_chip_info *chip = rtwdev->chip;
281f7333fc2SChia-Yuan Li 	u32 dmac_err;
282f7333fc2SChia-Yuan Li 	int i, ret;
283e3ec7017SPing-Ke Shih 
284f7333fc2SChia-Yuan Li 	ret = rtw89_mac_check_mac_en(rtwdev, 0, RTW89_DMAC_SEL);
285f7333fc2SChia-Yuan Li 	if (ret) {
286f7333fc2SChia-Yuan Li 		rtw89_warn(rtwdev, "[DMAC] : DMAC not enabled\n");
287e3ec7017SPing-Ke Shih 		return;
288f7333fc2SChia-Yuan Li 	}
289e3ec7017SPing-Ke Shih 
290e3ec7017SPing-Ke Shih 	dmac_err = rtw89_read32(rtwdev, R_AX_DMAC_ERR_ISR);
291e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "R_AX_DMAC_ERR_ISR=0x%08x\n", dmac_err);
292f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_DMAC_ERR_IMR=0x%08x\n",
293f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_DMAC_ERR_IMR));
294e3ec7017SPing-Ke Shih 
295e3ec7017SPing-Ke Shih 	if (dmac_err) {
296f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_WDE_ERR_FLAG_CFG=0x%08x\n",
297f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_WDE_ERR_FLAG_CFG_NUM1));
298e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PLE_ERR_FLAG_CFG=0x%08x\n",
299f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_PLE_ERR_FLAG_CFG_NUM1));
300f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
301f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PLE_ERRFLAG_MSG=0x%08x\n",
302f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PLE_ERRFLAG_MSG));
303f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_WDE_ERRFLAG_MSG=0x%08x\n",
304f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_WDE_ERRFLAG_MSG));
305f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PLE_DBGERR_LOCKEN=0x%08x\n",
306f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PLE_DBGERR_LOCKEN));
307f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PLE_DBGERR_STS=0x%08x\n",
308f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PLE_DBGERR_STS));
309f7333fc2SChia-Yuan Li 		}
310e3ec7017SPing-Ke Shih 	}
311e3ec7017SPing-Ke Shih 
312e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_WDRLS_ERR_FLAG) {
313f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_WDRLS_ERR_IMR=0x%08x\n",
314e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDRLS_ERR_IMR));
315e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WDRLS_ERR_ISR=0x%08x\n",
316e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDRLS_ERR_ISR));
317f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C)
318f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RPQ_RXBD_IDX=0x%08x\n",
319f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RPQ_RXBD_IDX_V1));
320f7333fc2SChia-Yuan Li 		else
321f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RPQ_RXBD_IDX=0x%08x\n",
322f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RPQ_RXBD_IDX));
323e3ec7017SPing-Ke Shih 	}
324e3ec7017SPing-Ke Shih 
325e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_WSEC_ERR_FLAG) {
326f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
327f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_ERR_IMR=0x%08x\n",
328f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_ERROR_FLAG_IMR));
329f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_ERR_ISR=0x%08x\n",
330f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_ERROR_FLAG));
331f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_ENG_CTRL=0x%08x\n",
332f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_ENG_CTRL));
333f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_MPDU_PROC=0x%08x\n",
334f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_MPDU_PROC));
335f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_CAM_ACCESS=0x%08x\n",
336f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_CAM_ACCESS));
337f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_CAM_RDATA=0x%08x\n",
338f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_CAM_RDATA));
339f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_DEBUG1=0x%08x\n",
340f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_DEBUG1));
341f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_TX_DEBUG=0x%08x\n",
342f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_TX_DEBUG));
343f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_RX_DEBUG=0x%08x\n",
344f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_SEC_RX_DEBUG));
345f7333fc2SChia-Yuan Li 
346f7333fc2SChia-Yuan Li 			rtw89_write32_mask(rtwdev, R_AX_DBG_CTRL,
347f7333fc2SChia-Yuan Li 					   B_AX_DBG_SEL0, 0x8B);
348f7333fc2SChia-Yuan Li 			rtw89_write32_mask(rtwdev, R_AX_DBG_CTRL,
349f7333fc2SChia-Yuan Li 					   B_AX_DBG_SEL1, 0x8B);
350f7333fc2SChia-Yuan Li 			rtw89_write32_mask(rtwdev, R_AX_SYS_STATUS1,
351f7333fc2SChia-Yuan Li 					   B_AX_SEL_0XC0_MASK, 1);
352f7333fc2SChia-Yuan Li 			for (i = 0; i < 0x10; i++) {
353f7333fc2SChia-Yuan Li 				rtw89_write32_mask(rtwdev, R_AX_SEC_ENG_CTRL,
354f7333fc2SChia-Yuan Li 						   B_AX_SEC_DBG_PORT_FIELD_MASK, i);
355f7333fc2SChia-Yuan Li 				rtw89_info(rtwdev, "sel=%x,R_AX_SEC_DEBUG2=0x%08x\n",
356f7333fc2SChia-Yuan Li 					   i, rtw89_read32(rtwdev, R_AX_SEC_DEBUG2));
357f7333fc2SChia-Yuan Li 			}
358f7333fc2SChia-Yuan Li 		} else {
359e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_SEC_ERR_IMR_ISR=0x%08x\n",
360e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_DEBUG));
361f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_ENG_CTRL=0x%08x\n",
362e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_ENG_CTRL));
363f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_MPDU_PROC=0x%08x\n",
364e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_MPDU_PROC));
365f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_CAM_ACCESS=0x%08x\n",
366e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_CAM_ACCESS));
367f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_CAM_RDATA=0x%08x\n",
368e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_CAM_RDATA));
369f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_CAM_WDATA=0x%08x\n",
370e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_CAM_WDATA));
371f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_TX_DEBUG=0x%08x\n",
372e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_TX_DEBUG));
373f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_RX_DEBUG=0x%08x\n",
374e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_RX_DEBUG));
375f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_TRX_PKT_CNT=0x%08x\n",
376e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_TRX_PKT_CNT));
377f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_SEC_TRX_BLK_CNT=0x%08x\n",
378e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_SEC_TRX_BLK_CNT));
379e3ec7017SPing-Ke Shih 		}
380f7333fc2SChia-Yuan Li 	}
381e3ec7017SPing-Ke Shih 
382e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_MPDU_ERR_FLAG) {
383f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_MPDU_TX_ERR_IMR=0x%08x\n",
384e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_MPDU_TX_ERR_IMR));
385e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_MPDU_TX_ERR_ISR=0x%08x\n",
386e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_MPDU_TX_ERR_ISR));
387f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_MPDU_RX_ERR_IMR=0x%08x\n",
388e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_MPDU_RX_ERR_IMR));
389e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_MPDU_RX_ERR_ISR=0x%08x\n",
390e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_MPDU_RX_ERR_ISR));
391e3ec7017SPing-Ke Shih 	}
392e3ec7017SPing-Ke Shih 
393e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_STA_SCHEDULER_ERR_FLAG) {
394f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_STA_SCHEDULER_ERR_IMR=0x%08x\n",
395e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_STA_SCHEDULER_ERR_IMR));
396e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_STA_SCHEDULER_ERR_ISR=0x%08x\n",
397e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_STA_SCHEDULER_ERR_ISR));
398e3ec7017SPing-Ke Shih 	}
399e3ec7017SPing-Ke Shih 
400e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_WDE_DLE_ERR_FLAG) {
401f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_WDE_ERR_IMR=0x%08x\n",
402e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDE_ERR_IMR));
403e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WDE_ERR_ISR=0x%08x\n",
404e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDE_ERR_ISR));
405f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_PLE_ERR_IMR=0x%08x\n",
406e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PLE_ERR_IMR));
407e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PLE_ERR_FLAG_ISR=0x%08x\n",
408e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PLE_ERR_FLAG_ISR));
409e3ec7017SPing-Ke Shih 	}
410e3ec7017SPing-Ke Shih 
411e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_TXPKTCTRL_ERR_FLAG) {
412f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
413f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_B0_ERRFLAG_IMR=0x%08x\n",
414f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_B0_ERRFLAG_IMR));
415f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_B0_ERRFLAG_ISR=0x%08x\n",
416f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_B0_ERRFLAG_ISR));
417f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_B1_ERRFLAG_IMR=0x%08x\n",
418f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_B1_ERRFLAG_IMR));
419f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_B1_ERRFLAG_ISR=0x%08x\n",
420f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_B1_ERRFLAG_ISR));
421f7333fc2SChia-Yuan Li 		} else {
422e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_ERR_IMR_ISR=0x%08x\n",
423e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_ERR_IMR_ISR));
424e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_TXPKTCTL_ERR_IMR_ISR_B1=0x%08x\n",
425e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_TXPKTCTL_ERR_IMR_ISR_B1));
426e3ec7017SPing-Ke Shih 		}
427f7333fc2SChia-Yuan Li 	}
428e3ec7017SPing-Ke Shih 
429e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_PLE_DLE_ERR_FLAG) {
430f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_WDE_ERR_IMR=0x%08x\n",
431e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDE_ERR_IMR));
432e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WDE_ERR_ISR=0x%08x\n",
433e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WDE_ERR_ISR));
434f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_PLE_ERR_IMR=0x%08x\n",
435e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PLE_ERR_IMR));
436e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PLE_ERR_FLAG_ISR=0x%08x\n",
437e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PLE_ERR_FLAG_ISR));
438e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WD_CPUQ_OP_0=0x%08x\n",
439e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WD_CPUQ_OP_0));
440e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WD_CPUQ_OP_1=0x%08x\n",
441e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WD_CPUQ_OP_1));
442e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WD_CPUQ_OP_2=0x%08x\n",
443e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WD_CPUQ_OP_2));
444e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_WD_CPUQ_OP_STATUS=0x%08x\n",
445e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_WD_CPUQ_OP_STATUS));
446e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PL_CPUQ_OP_0=0x%08x\n",
447e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PL_CPUQ_OP_0));
448e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PL_CPUQ_OP_1=0x%08x\n",
449e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PL_CPUQ_OP_1));
450e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PL_CPUQ_OP_2=0x%08x\n",
451e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PL_CPUQ_OP_2));
452e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PL_CPUQ_OP_STATUS=0x%08x\n",
453e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PL_CPUQ_OP_STATUS));
454f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
455f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RX_CTRL0=0x%08x\n",
456f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RX_CTRL0));
457f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RX_CTRL1=0x%08x\n",
458f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RX_CTRL1));
459f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RX_CTRL2=0x%08x\n",
460f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RX_CTRL2));
461f7333fc2SChia-Yuan Li 		} else {
462e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_RXDMA_PKT_INFO_0=0x%08x\n",
463e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_RXDMA_PKT_INFO_0));
464e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_RXDMA_PKT_INFO_1=0x%08x\n",
465e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_RXDMA_PKT_INFO_1));
466e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_RXDMA_PKT_INFO_2=0x%08x\n",
467e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_RXDMA_PKT_INFO_2));
468f7333fc2SChia-Yuan Li 		}
469e3ec7017SPing-Ke Shih 	}
470e3ec7017SPing-Ke Shih 
471e3ec7017SPing-Ke Shih 	if (dmac_err & B_AX_PKTIN_ERR_FLAG) {
472f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_PKTIN_ERR_IMR=0x%08x\n",
473e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PKTIN_ERR_IMR));
474e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "R_AX_PKTIN_ERR_ISR=0x%08x\n",
475e3ec7017SPing-Ke Shih 			   rtw89_read32(rtwdev, R_AX_PKTIN_ERR_ISR));
476e3ec7017SPing-Ke Shih 	}
477e3ec7017SPing-Ke Shih 
478f7333fc2SChia-Yuan Li 	if (dmac_err & B_AX_DISPATCH_ERR_FLAG) {
479f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_HOST_DISPATCHER_ERR_IMR=0x%08x\n",
480f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR));
481f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_HOST_DISPATCHER_ERR_ISR=0x%08x\n",
482f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_HOST_DISPATCHER_ERR_ISR));
483f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_CPU_DISPATCHER_ERR_IMR=0x%08x\n",
484f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR));
485f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_CPU_DISPATCHER_ERR_ISR=0x%08x\n",
486f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_CPU_DISPATCHER_ERR_ISR));
487f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_OTHER_DISPATCHER_ERR_IMR=0x%08x\n",
488f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR));
489f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_OTHER_DISPATCHER_ERR_ISR=0x%08x\n",
490f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_OTHER_DISPATCHER_ERR_ISR));
491e3ec7017SPing-Ke Shih 	}
492e3ec7017SPing-Ke Shih 
493f7333fc2SChia-Yuan Li 	if (dmac_err & B_AX_BBRPT_ERR_FLAG) {
494f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
495f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_COM_ERR_IMR=0x%08x\n",
496f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_COM_ERR_IMR));
497f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_COM_ERR_ISR=0x%08x\n",
498f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_COM_ERR_ISR));
499f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_CHINFO_ERR_ISR=0x%08x\n",
500f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_CHINFO_ERR_ISR));
501f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_CHINFO_ERR_IMR=0x%08x\n",
502f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_CHINFO_ERR_IMR));
503f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_DFS_ERR_IMR=0x%08x\n",
504f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_DFS_ERR_IMR));
505f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_DFS_ERR_ISR=0x%08x\n",
506f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_DFS_ERR_ISR));
507f7333fc2SChia-Yuan Li 		} else {
508e3ec7017SPing-Ke Shih 			rtw89_info(rtwdev, "R_AX_BBRPT_COM_ERR_IMR_ISR=0x%08x\n",
509e3ec7017SPing-Ke Shih 				   rtw89_read32(rtwdev, R_AX_BBRPT_COM_ERR_IMR_ISR));
510f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_CHINFO_ERR_ISR=0x%08x\n",
511f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_CHINFO_ERR_ISR));
512f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_CHINFO_ERR_IMR=0x%08x\n",
513f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_CHINFO_ERR_IMR));
514f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_DFS_ERR_IMR=0x%08x\n",
515f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_DFS_ERR_IMR));
516f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_BBRPT_DFS_ERR_ISR=0x%08x\n",
517f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_BBRPT_DFS_ERR_ISR));
518f7333fc2SChia-Yuan Li 		}
519e3ec7017SPing-Ke Shih 	}
520e3ec7017SPing-Ke Shih 
521f7333fc2SChia-Yuan Li 	if (dmac_err & B_AX_HAXIDMA_ERR_FLAG && chip->chip_id == RTL8852C) {
522f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_HAXIDMA_ERR_IMR=0x%08x\n",
523f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_HAXI_IDCT_MSK));
524f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_HAXIDMA_ERR_ISR=0x%08x\n",
525f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_HAXI_IDCT));
526f7333fc2SChia-Yuan Li 	}
527f7333fc2SChia-Yuan Li }
528f7333fc2SChia-Yuan Li 
529f7333fc2SChia-Yuan Li static void rtw89_mac_dump_cmac_err_status(struct rtw89_dev *rtwdev,
530f7333fc2SChia-Yuan Li 					   u8 band)
531f7333fc2SChia-Yuan Li {
532f7333fc2SChia-Yuan Li 	const struct rtw89_chip_info *chip = rtwdev->chip;
533f7333fc2SChia-Yuan Li 	u32 offset = 0;
534f7333fc2SChia-Yuan Li 	u32 cmac_err;
535f7333fc2SChia-Yuan Li 	int ret;
536f7333fc2SChia-Yuan Li 
537f7333fc2SChia-Yuan Li 	ret = rtw89_mac_check_mac_en(rtwdev, band, RTW89_CMAC_SEL);
538f7333fc2SChia-Yuan Li 	if (ret) {
539f7333fc2SChia-Yuan Li 		if (band)
540f7333fc2SChia-Yuan Li 			rtw89_warn(rtwdev, "[CMAC] : CMAC1 not enabled\n");
541f7333fc2SChia-Yuan Li 		else
542f7333fc2SChia-Yuan Li 			rtw89_warn(rtwdev, "[CMAC] : CMAC0 not enabled\n");
543f7333fc2SChia-Yuan Li 		return;
544f7333fc2SChia-Yuan Li 	}
545f7333fc2SChia-Yuan Li 
546f7333fc2SChia-Yuan Li 	if (band)
547f7333fc2SChia-Yuan Li 		offset = RTW89_MAC_AX_BAND_REG_OFFSET;
548f7333fc2SChia-Yuan Li 
549f7333fc2SChia-Yuan Li 	cmac_err = rtw89_read32(rtwdev, R_AX_CMAC_ERR_ISR + offset);
550f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_CMAC_ERR_ISR [%d]=0x%08x\n", band,
551f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_CMAC_ERR_ISR + offset));
552f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_CMAC_FUNC_EN [%d]=0x%08x\n", band,
553f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_CMAC_FUNC_EN + offset));
554f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_CK_EN [%d]=0x%08x\n", band,
555f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_CK_EN + offset));
556f7333fc2SChia-Yuan Li 
557e3ec7017SPing-Ke Shih 	if (cmac_err & B_AX_SCHEDULE_TOP_ERR_IND) {
558f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_SCHEDULE_ERR_IMR [%d]=0x%08x\n", band,
559f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_SCHEDULE_ERR_IMR + offset));
560f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_SCHEDULE_ERR_ISR [%d]=0x%08x\n", band,
561f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_SCHEDULE_ERR_ISR + offset));
562e3ec7017SPing-Ke Shih 	}
563e3ec7017SPing-Ke Shih 
564e3ec7017SPing-Ke Shih 	if (cmac_err & B_AX_PTCL_TOP_ERR_IND) {
565f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_PTCL_IMR0 [%d]=0x%08x\n", band,
566f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_PTCL_IMR0 + offset));
567f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_PTCL_ISR0 [%d]=0x%08x\n", band,
568f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_PTCL_ISR0 + offset));
569e3ec7017SPing-Ke Shih 	}
570e3ec7017SPing-Ke Shih 
571e3ec7017SPing-Ke Shih 	if (cmac_err & B_AX_DMA_TOP_ERR_IND) {
572f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
573f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RX_ERR_FLAG [%d]=0x%08x\n", band,
574f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RX_ERR_FLAG + offset));
575f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_RX_ERR_FLAG_IMR [%d]=0x%08x\n", band,
576f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_RX_ERR_FLAG_IMR + offset));
577f7333fc2SChia-Yuan Li 		} else {
578f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_DLE_CTRL [%d]=0x%08x\n", band,
579f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_DLE_CTRL + offset));
580f7333fc2SChia-Yuan Li 		}
581e3ec7017SPing-Ke Shih 	}
582e3ec7017SPing-Ke Shih 
583f7333fc2SChia-Yuan Li 	if (cmac_err & B_AX_DMA_TOP_ERR_IND || cmac_err & B_AX_WMAC_RX_ERR_IND) {
584f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
585f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PHYINFO_ERR_ISR [%d]=0x%08x\n", band,
586f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PHYINFO_ERR_ISR + offset));
587f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PHYINFO_ERR_IMR [%d]=0x%08x\n", band,
588f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PHYINFO_ERR_IMR + offset));
589f7333fc2SChia-Yuan Li 		} else {
590f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_PHYINFO_ERR_IMR [%d]=0x%08x\n", band,
591f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_PHYINFO_ERR_IMR + offset));
592f7333fc2SChia-Yuan Li 		}
593e3ec7017SPing-Ke Shih 	}
594e3ec7017SPing-Ke Shih 
595e3ec7017SPing-Ke Shih 	if (cmac_err & B_AX_TXPWR_CTRL_ERR_IND) {
596f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_TXPWR_IMR [%d]=0x%08x\n", band,
597f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_TXPWR_IMR + offset));
598f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_TXPWR_ISR [%d]=0x%08x\n", band,
599f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_TXPWR_ISR + offset));
600e3ec7017SPing-Ke Shih 	}
601e3ec7017SPing-Ke Shih 
602e3ec7017SPing-Ke Shih 	if (cmac_err & B_AX_WMAC_TX_ERR_IND) {
603f7333fc2SChia-Yuan Li 		if (chip->chip_id == RTL8852C) {
604f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TRXPTCL_ERROR_INDICA [%d]=0x%08x\n", band,
605f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TRXPTCL_ERROR_INDICA + offset));
606f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TRXPTCL_ERROR_INDICA_MASK [%d]=0x%08x\n", band,
607f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TRXPTCL_ERROR_INDICA_MASK + offset));
608f7333fc2SChia-Yuan Li 		} else {
609f7333fc2SChia-Yuan Li 			rtw89_info(rtwdev, "R_AX_TMAC_ERR_IMR_ISR [%d]=0x%08x\n", band,
610f7333fc2SChia-Yuan Li 				   rtw89_read32(rtwdev, R_AX_TMAC_ERR_IMR_ISR + offset));
611e3ec7017SPing-Ke Shih 		}
612f7333fc2SChia-Yuan Li 		rtw89_info(rtwdev, "R_AX_DBGSEL_TRXPTCL [%d]=0x%08x\n", band,
613f7333fc2SChia-Yuan Li 			   rtw89_read32(rtwdev, R_AX_DBGSEL_TRXPTCL + offset));
614f7333fc2SChia-Yuan Li 	}
615f7333fc2SChia-Yuan Li 
616f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_CMAC_ERR_IMR [%d]=0x%08x\n", band,
617f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_CMAC_ERR_IMR + offset));
618f7333fc2SChia-Yuan Li }
619f7333fc2SChia-Yuan Li 
620f7333fc2SChia-Yuan Li static void rtw89_mac_dump_err_status(struct rtw89_dev *rtwdev,
621f7333fc2SChia-Yuan Li 				      enum mac_ax_err_info err)
622f7333fc2SChia-Yuan Li {
623f7333fc2SChia-Yuan Li 	if (err != MAC_AX_ERR_L1_ERR_DMAC &&
624f7333fc2SChia-Yuan Li 	    err != MAC_AX_ERR_L0_PROMOTE_TO_L1 &&
625f7333fc2SChia-Yuan Li 	    err != MAC_AX_ERR_L0_ERR_CMAC0 &&
626f5d98831SZong-Zhe Yang 	    err != MAC_AX_ERR_L0_ERR_CMAC1 &&
627f5d98831SZong-Zhe Yang 	    err != MAC_AX_ERR_RXI300)
628f7333fc2SChia-Yuan Li 		return;
629f7333fc2SChia-Yuan Li 
630f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "--->\nerr=0x%x\n", err);
631f7333fc2SChia-Yuan Li 	rtw89_info(rtwdev, "R_AX_SER_DBG_INFO =0x%08x\n",
632f7333fc2SChia-Yuan Li 		   rtw89_read32(rtwdev, R_AX_SER_DBG_INFO));
633f7333fc2SChia-Yuan Li 
634f7333fc2SChia-Yuan Li 	rtw89_mac_dump_dmac_err_status(rtwdev);
635f7333fc2SChia-Yuan Li 	rtw89_mac_dump_cmac_err_status(rtwdev, RTW89_MAC_0);
636f7333fc2SChia-Yuan Li 	if (rtwdev->dbcc_en)
637f7333fc2SChia-Yuan Li 		rtw89_mac_dump_cmac_err_status(rtwdev, RTW89_MAC_1);
638e3ec7017SPing-Ke Shih 
639e3ec7017SPing-Ke Shih 	rtwdev->hci.ops->dump_err_status(rtwdev);
640e3ec7017SPing-Ke Shih 
641e3ec7017SPing-Ke Shih 	if (err == MAC_AX_ERR_L0_PROMOTE_TO_L1)
642e3ec7017SPing-Ke Shih 		rtw89_mac_dump_l0_to_l1(rtwdev, err);
643e3ec7017SPing-Ke Shih 
644e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "<---\n");
645e3ec7017SPing-Ke Shih }
646e3ec7017SPing-Ke Shih 
647*8130e94eSChin-Yen Lee static bool rtw89_mac_suppress_log(struct rtw89_dev *rtwdev, u32 err)
648*8130e94eSChin-Yen Lee {
649*8130e94eSChin-Yen Lee 	struct rtw89_ser *ser = &rtwdev->ser;
650*8130e94eSChin-Yen Lee 	u32 dmac_err, imr, isr;
651*8130e94eSChin-Yen Lee 	int ret;
652*8130e94eSChin-Yen Lee 
653*8130e94eSChin-Yen Lee 	if (rtwdev->chip->chip_id == RTL8852C) {
654*8130e94eSChin-Yen Lee 		ret = rtw89_mac_check_mac_en(rtwdev, 0, RTW89_DMAC_SEL);
655*8130e94eSChin-Yen Lee 		if (ret)
656*8130e94eSChin-Yen Lee 			return true;
657*8130e94eSChin-Yen Lee 
658*8130e94eSChin-Yen Lee 		if (err == MAC_AX_ERR_L1_ERR_DMAC) {
659*8130e94eSChin-Yen Lee 			dmac_err = rtw89_read32(rtwdev, R_AX_DMAC_ERR_ISR);
660*8130e94eSChin-Yen Lee 			imr = rtw89_read32(rtwdev, R_AX_TXPKTCTL_B0_ERRFLAG_IMR);
661*8130e94eSChin-Yen Lee 			isr = rtw89_read32(rtwdev, R_AX_TXPKTCTL_B0_ERRFLAG_ISR);
662*8130e94eSChin-Yen Lee 
663*8130e94eSChin-Yen Lee 			if ((dmac_err & B_AX_TXPKTCTRL_ERR_FLAG) &&
664*8130e94eSChin-Yen Lee 			    ((isr & imr) & B_AX_B0_ISR_ERR_CMDPSR_FRZTO)) {
665*8130e94eSChin-Yen Lee 				set_bit(RTW89_SER_SUPPRESS_LOG, ser->flags);
666*8130e94eSChin-Yen Lee 				return true;
667*8130e94eSChin-Yen Lee 			}
668*8130e94eSChin-Yen Lee 		} else if (err == MAC_AX_ERR_L1_RESET_DISABLE_DMAC_DONE) {
669*8130e94eSChin-Yen Lee 			if (test_bit(RTW89_SER_SUPPRESS_LOG, ser->flags))
670*8130e94eSChin-Yen Lee 				return true;
671*8130e94eSChin-Yen Lee 		} else if (err == MAC_AX_ERR_L1_RESET_RECOVERY_DONE) {
672*8130e94eSChin-Yen Lee 			if (test_and_clear_bit(RTW89_SER_SUPPRESS_LOG, ser->flags))
673*8130e94eSChin-Yen Lee 				return true;
674*8130e94eSChin-Yen Lee 		}
675*8130e94eSChin-Yen Lee 	}
676*8130e94eSChin-Yen Lee 
677*8130e94eSChin-Yen Lee 	return false;
678*8130e94eSChin-Yen Lee }
679*8130e94eSChin-Yen Lee 
680e3ec7017SPing-Ke Shih u32 rtw89_mac_get_err_status(struct rtw89_dev *rtwdev)
681e3ec7017SPing-Ke Shih {
682198b6cf7SZong-Zhe Yang 	u32 err, err_scnr;
683e3ec7017SPing-Ke Shih 	int ret;
684e3ec7017SPing-Ke Shih 
685e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, err, (err != 0), 1000, 100000,
686e3ec7017SPing-Ke Shih 				false, rtwdev, R_AX_HALT_C2H_CTRL);
687e3ec7017SPing-Ke Shih 	if (ret) {
688e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "Polling FW err status fail\n");
689e3ec7017SPing-Ke Shih 		return ret;
690e3ec7017SPing-Ke Shih 	}
691e3ec7017SPing-Ke Shih 
692e3ec7017SPing-Ke Shih 	err = rtw89_read32(rtwdev, R_AX_HALT_C2H);
693e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_C2H_CTRL, 0);
694e3ec7017SPing-Ke Shih 
695198b6cf7SZong-Zhe Yang 	err_scnr = RTW89_ERROR_SCENARIO(err);
696198b6cf7SZong-Zhe Yang 	if (err_scnr == RTW89_WCPU_CPU_EXCEPTION)
697198b6cf7SZong-Zhe Yang 		err = MAC_AX_ERR_CPU_EXCEPTION;
698198b6cf7SZong-Zhe Yang 	else if (err_scnr == RTW89_WCPU_ASSERTION)
699198b6cf7SZong-Zhe Yang 		err = MAC_AX_ERR_ASSERTION;
700f5d98831SZong-Zhe Yang 	else if (err_scnr == RTW89_RXI300_ERROR)
701f5d98831SZong-Zhe Yang 		err = MAC_AX_ERR_RXI300;
702198b6cf7SZong-Zhe Yang 
703*8130e94eSChin-Yen Lee 	if (rtw89_mac_suppress_log(rtwdev, err))
704*8130e94eSChin-Yen Lee 		return err;
705*8130e94eSChin-Yen Lee 
706e3ec7017SPing-Ke Shih 	rtw89_fw_st_dbg_dump(rtwdev);
707e3ec7017SPing-Ke Shih 	rtw89_mac_dump_err_status(rtwdev, err);
708e3ec7017SPing-Ke Shih 
709e3ec7017SPing-Ke Shih 	return err;
710e3ec7017SPing-Ke Shih }
711e3ec7017SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_get_err_status);
712e3ec7017SPing-Ke Shih 
713e3ec7017SPing-Ke Shih int rtw89_mac_set_err_status(struct rtw89_dev *rtwdev, u32 err)
714e3ec7017SPing-Ke Shih {
71556617fd0SZong-Zhe Yang 	struct rtw89_ser *ser = &rtwdev->ser;
716e3ec7017SPing-Ke Shih 	u32 halt;
717e3ec7017SPing-Ke Shih 	int ret = 0;
718e3ec7017SPing-Ke Shih 
719e3ec7017SPing-Ke Shih 	if (err > MAC_AX_SET_ERR_MAX) {
720e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "Bad set-err-status value 0x%08x\n", err);
721e3ec7017SPing-Ke Shih 		return -EINVAL;
722e3ec7017SPing-Ke Shih 	}
723e3ec7017SPing-Ke Shih 
724e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, halt, (halt == 0x0), 1000,
725e3ec7017SPing-Ke Shih 				100000, false, rtwdev, R_AX_HALT_H2C_CTRL);
726e3ec7017SPing-Ke Shih 	if (ret) {
727e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "FW doesn't receive previous msg\n");
728e3ec7017SPing-Ke Shih 		return -EFAULT;
729e3ec7017SPing-Ke Shih 	}
730e3ec7017SPing-Ke Shih 
731e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_H2C, err);
73256617fd0SZong-Zhe Yang 
73356617fd0SZong-Zhe Yang 	if (ser->prehandle_l1 &&
73456617fd0SZong-Zhe Yang 	    (err == MAC_AX_ERR_L1_DISABLE_EN || err == MAC_AX_ERR_L1_RCVY_EN))
73556617fd0SZong-Zhe Yang 		return 0;
73656617fd0SZong-Zhe Yang 
737e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_H2C_CTRL, B_AX_HALT_H2C_TRIGGER);
738e3ec7017SPing-Ke Shih 
739e3ec7017SPing-Ke Shih 	return 0;
740e3ec7017SPing-Ke Shih }
741e3ec7017SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_set_err_status);
742e3ec7017SPing-Ke Shih 
743e3ec7017SPing-Ke Shih static int hfc_reset_param(struct rtw89_dev *rtwdev)
744e3ec7017SPing-Ke Shih {
745e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
746e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param_ini param_ini = {NULL};
747e3ec7017SPing-Ke Shih 	u8 qta_mode = rtwdev->mac.dle_info.qta_mode;
748e3ec7017SPing-Ke Shih 
749e3ec7017SPing-Ke Shih 	switch (rtwdev->hci.type) {
750e3ec7017SPing-Ke Shih 	case RTW89_HCI_TYPE_PCIE:
751e3ec7017SPing-Ke Shih 		param_ini = rtwdev->chip->hfc_param_ini[qta_mode];
752e3ec7017SPing-Ke Shih 		param->en = 0;
753e3ec7017SPing-Ke Shih 		break;
754e3ec7017SPing-Ke Shih 	default:
755e3ec7017SPing-Ke Shih 		return -EINVAL;
756e3ec7017SPing-Ke Shih 	}
757e3ec7017SPing-Ke Shih 
758e3ec7017SPing-Ke Shih 	if (param_ini.pub_cfg)
759e3ec7017SPing-Ke Shih 		param->pub_cfg = *param_ini.pub_cfg;
760e3ec7017SPing-Ke Shih 
761e3ec7017SPing-Ke Shih 	if (param_ini.prec_cfg) {
762e3ec7017SPing-Ke Shih 		param->prec_cfg = *param_ini.prec_cfg;
763e3ec7017SPing-Ke Shih 		rtwdev->hal.sw_amsdu_max_size =
764e3ec7017SPing-Ke Shih 				param->prec_cfg.wp_ch07_prec * HFC_PAGE_UNIT;
765e3ec7017SPing-Ke Shih 	}
766e3ec7017SPing-Ke Shih 
767e3ec7017SPing-Ke Shih 	if (param_ini.ch_cfg)
768e3ec7017SPing-Ke Shih 		param->ch_cfg = param_ini.ch_cfg;
769e3ec7017SPing-Ke Shih 
770e3ec7017SPing-Ke Shih 	memset(&param->ch_info, 0, sizeof(param->ch_info));
771e3ec7017SPing-Ke Shih 	memset(&param->pub_info, 0, sizeof(param->pub_info));
772e3ec7017SPing-Ke Shih 	param->mode = param_ini.mode;
773e3ec7017SPing-Ke Shih 
774e3ec7017SPing-Ke Shih 	return 0;
775e3ec7017SPing-Ke Shih }
776e3ec7017SPing-Ke Shih 
777e3ec7017SPing-Ke Shih static int hfc_ch_cfg_chk(struct rtw89_dev *rtwdev, u8 ch)
778e3ec7017SPing-Ke Shih {
779e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
780e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_ch_cfg *ch_cfg = param->ch_cfg;
781e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_pub_cfg *pub_cfg = &param->pub_cfg;
782e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_prec_cfg *prec_cfg = &param->prec_cfg;
783e3ec7017SPing-Ke Shih 
784e3ec7017SPing-Ke Shih 	if (ch >= RTW89_DMA_CH_NUM)
785e3ec7017SPing-Ke Shih 		return -EINVAL;
786e3ec7017SPing-Ke Shih 
787e3ec7017SPing-Ke Shih 	if ((ch_cfg[ch].min && ch_cfg[ch].min < prec_cfg->ch011_prec) ||
788e3ec7017SPing-Ke Shih 	    ch_cfg[ch].max > pub_cfg->pub_max)
789e3ec7017SPing-Ke Shih 		return -EINVAL;
790e3ec7017SPing-Ke Shih 	if (ch_cfg[ch].grp >= grp_num)
791e3ec7017SPing-Ke Shih 		return -EINVAL;
792e3ec7017SPing-Ke Shih 
793e3ec7017SPing-Ke Shih 	return 0;
794e3ec7017SPing-Ke Shih }
795e3ec7017SPing-Ke Shih 
796e3ec7017SPing-Ke Shih static int hfc_pub_info_chk(struct rtw89_dev *rtwdev)
797e3ec7017SPing-Ke Shih {
798e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
799e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_pub_cfg *cfg = &param->pub_cfg;
800e3ec7017SPing-Ke Shih 	struct rtw89_hfc_pub_info *info = &param->pub_info;
801e3ec7017SPing-Ke Shih 
802e3ec7017SPing-Ke Shih 	if (info->g0_used + info->g1_used + info->pub_aval != cfg->pub_max) {
803e3ec7017SPing-Ke Shih 		if (rtwdev->chip->chip_id == RTL8852A)
804e3ec7017SPing-Ke Shih 			return 0;
805e3ec7017SPing-Ke Shih 		else
806e3ec7017SPing-Ke Shih 			return -EFAULT;
807e3ec7017SPing-Ke Shih 	}
808e3ec7017SPing-Ke Shih 
809e3ec7017SPing-Ke Shih 	return 0;
810e3ec7017SPing-Ke Shih }
811e3ec7017SPing-Ke Shih 
812e3ec7017SPing-Ke Shih static int hfc_pub_cfg_chk(struct rtw89_dev *rtwdev)
813e3ec7017SPing-Ke Shih {
814e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
815e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_pub_cfg *pub_cfg = &param->pub_cfg;
816e3ec7017SPing-Ke Shih 
817e3ec7017SPing-Ke Shih 	if (pub_cfg->grp0 + pub_cfg->grp1 != pub_cfg->pub_max)
818c6477cb2SKevin Lo 		return -EFAULT;
819e3ec7017SPing-Ke Shih 
820e3ec7017SPing-Ke Shih 	return 0;
821e3ec7017SPing-Ke Shih }
822e3ec7017SPing-Ke Shih 
823e3ec7017SPing-Ke Shih static int hfc_ch_ctrl(struct rtw89_dev *rtwdev, u8 ch)
824e3ec7017SPing-Ke Shih {
825ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
826ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
827e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
828e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_ch_cfg *cfg = param->ch_cfg;
829e3ec7017SPing-Ke Shih 	int ret = 0;
830e3ec7017SPing-Ke Shih 	u32 val = 0;
831e3ec7017SPing-Ke Shih 
832e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
833e3ec7017SPing-Ke Shih 	if (ret)
834e3ec7017SPing-Ke Shih 		return ret;
835e3ec7017SPing-Ke Shih 
836e3ec7017SPing-Ke Shih 	ret = hfc_ch_cfg_chk(rtwdev, ch);
837e3ec7017SPing-Ke Shih 	if (ret)
838e3ec7017SPing-Ke Shih 		return ret;
839e3ec7017SPing-Ke Shih 
840e3ec7017SPing-Ke Shih 	if (ch > RTW89_DMA_B1HI)
841e3ec7017SPing-Ke Shih 		return -EINVAL;
842e3ec7017SPing-Ke Shih 
843e3ec7017SPing-Ke Shih 	val = u32_encode_bits(cfg[ch].min, B_AX_MIN_PG_MASK) |
844e3ec7017SPing-Ke Shih 	      u32_encode_bits(cfg[ch].max, B_AX_MAX_PG_MASK) |
845e3ec7017SPing-Ke Shih 	      (cfg[ch].grp ? B_AX_GRP : 0);
846ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->ach_page_ctrl + ch * 4, val);
847e3ec7017SPing-Ke Shih 
848e3ec7017SPing-Ke Shih 	return 0;
849e3ec7017SPing-Ke Shih }
850e3ec7017SPing-Ke Shih 
851e3ec7017SPing-Ke Shih static int hfc_upd_ch_info(struct rtw89_dev *rtwdev, u8 ch)
852e3ec7017SPing-Ke Shih {
853ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
854ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
855e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
856e3ec7017SPing-Ke Shih 	struct rtw89_hfc_ch_info *info = param->ch_info;
857e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_ch_cfg *cfg = param->ch_cfg;
858e3ec7017SPing-Ke Shih 	u32 val;
859e3ec7017SPing-Ke Shih 	u32 ret;
860e3ec7017SPing-Ke Shih 
861e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
862e3ec7017SPing-Ke Shih 	if (ret)
863e3ec7017SPing-Ke Shih 		return ret;
864e3ec7017SPing-Ke Shih 
865e3ec7017SPing-Ke Shih 	if (ch > RTW89_DMA_H2C)
866e3ec7017SPing-Ke Shih 		return -EINVAL;
867e3ec7017SPing-Ke Shih 
868ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->ach_page_info + ch * 4);
869e3ec7017SPing-Ke Shih 	info[ch].aval = u32_get_bits(val, B_AX_AVAL_PG_MASK);
870e3ec7017SPing-Ke Shih 	if (ch < RTW89_DMA_H2C)
871e3ec7017SPing-Ke Shih 		info[ch].used = u32_get_bits(val, B_AX_USE_PG_MASK);
872e3ec7017SPing-Ke Shih 	else
873e3ec7017SPing-Ke Shih 		info[ch].used = cfg[ch].min - info[ch].aval;
874e3ec7017SPing-Ke Shih 
875e3ec7017SPing-Ke Shih 	return 0;
876e3ec7017SPing-Ke Shih }
877e3ec7017SPing-Ke Shih 
878e3ec7017SPing-Ke Shih static int hfc_pub_ctrl(struct rtw89_dev *rtwdev)
879e3ec7017SPing-Ke Shih {
880ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
881ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
882e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_pub_cfg *cfg = &rtwdev->mac.hfc_param.pub_cfg;
883e3ec7017SPing-Ke Shih 	u32 val;
884e3ec7017SPing-Ke Shih 	int ret;
885e3ec7017SPing-Ke Shih 
886e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
887e3ec7017SPing-Ke Shih 	if (ret)
888e3ec7017SPing-Ke Shih 		return ret;
889e3ec7017SPing-Ke Shih 
890e3ec7017SPing-Ke Shih 	ret = hfc_pub_cfg_chk(rtwdev);
891e3ec7017SPing-Ke Shih 	if (ret)
892e3ec7017SPing-Ke Shih 		return ret;
893e3ec7017SPing-Ke Shih 
894e3ec7017SPing-Ke Shih 	val = u32_encode_bits(cfg->grp0, B_AX_PUBPG_G0_MASK) |
895e3ec7017SPing-Ke Shih 	      u32_encode_bits(cfg->grp1, B_AX_PUBPG_G1_MASK);
896ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->pub_page_ctrl1, val);
897e3ec7017SPing-Ke Shih 
898e3ec7017SPing-Ke Shih 	val = u32_encode_bits(cfg->wp_thrd, B_AX_WP_THRD_MASK);
899ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->wp_page_ctrl2, val);
900e3ec7017SPing-Ke Shih 
901e3ec7017SPing-Ke Shih 	return 0;
902e3ec7017SPing-Ke Shih }
903e3ec7017SPing-Ke Shih 
904e3ec7017SPing-Ke Shih static int hfc_upd_mix_info(struct rtw89_dev *rtwdev)
905e3ec7017SPing-Ke Shih {
906ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
907ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
908e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
909e3ec7017SPing-Ke Shih 	struct rtw89_hfc_pub_cfg *pub_cfg = &param->pub_cfg;
910e3ec7017SPing-Ke Shih 	struct rtw89_hfc_prec_cfg *prec_cfg = &param->prec_cfg;
911e3ec7017SPing-Ke Shih 	struct rtw89_hfc_pub_info *info = &param->pub_info;
912e3ec7017SPing-Ke Shih 	u32 val;
913e3ec7017SPing-Ke Shih 	int ret;
914e3ec7017SPing-Ke Shih 
915e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
916e3ec7017SPing-Ke Shih 	if (ret)
917e3ec7017SPing-Ke Shih 		return ret;
918e3ec7017SPing-Ke Shih 
919ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->pub_page_info1);
920e3ec7017SPing-Ke Shih 	info->g0_used = u32_get_bits(val, B_AX_G0_USE_PG_MASK);
921e3ec7017SPing-Ke Shih 	info->g1_used = u32_get_bits(val, B_AX_G1_USE_PG_MASK);
922ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->pub_page_info3);
923e3ec7017SPing-Ke Shih 	info->g0_aval = u32_get_bits(val, B_AX_G0_AVAL_PG_MASK);
924e3ec7017SPing-Ke Shih 	info->g1_aval = u32_get_bits(val, B_AX_G1_AVAL_PG_MASK);
925e3ec7017SPing-Ke Shih 	info->pub_aval =
926ab8a5671SPing-Ke Shih 		u32_get_bits(rtw89_read32(rtwdev, regs->pub_page_info2),
927e3ec7017SPing-Ke Shih 			     B_AX_PUB_AVAL_PG_MASK);
928e3ec7017SPing-Ke Shih 	info->wp_aval =
929ab8a5671SPing-Ke Shih 		u32_get_bits(rtw89_read32(rtwdev, regs->wp_page_info1),
930e3ec7017SPing-Ke Shih 			     B_AX_WP_AVAL_PG_MASK);
931e3ec7017SPing-Ke Shih 
932ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->hci_fc_ctrl);
933e3ec7017SPing-Ke Shih 	param->en = val & B_AX_HCI_FC_EN ? 1 : 0;
934e3ec7017SPing-Ke Shih 	param->h2c_en = val & B_AX_HCI_FC_CH12_EN ? 1 : 0;
935e3ec7017SPing-Ke Shih 	param->mode = u32_get_bits(val, B_AX_HCI_FC_MODE_MASK);
936e3ec7017SPing-Ke Shih 	prec_cfg->ch011_full_cond =
937e3ec7017SPing-Ke Shih 		u32_get_bits(val, B_AX_HCI_FC_WD_FULL_COND_MASK);
938e3ec7017SPing-Ke Shih 	prec_cfg->h2c_full_cond =
939e3ec7017SPing-Ke Shih 		u32_get_bits(val, B_AX_HCI_FC_CH12_FULL_COND_MASK);
940e3ec7017SPing-Ke Shih 	prec_cfg->wp_ch07_full_cond =
941e3ec7017SPing-Ke Shih 		u32_get_bits(val, B_AX_HCI_FC_WP_CH07_FULL_COND_MASK);
942e3ec7017SPing-Ke Shih 	prec_cfg->wp_ch811_full_cond =
943e3ec7017SPing-Ke Shih 		u32_get_bits(val, B_AX_HCI_FC_WP_CH811_FULL_COND_MASK);
944e3ec7017SPing-Ke Shih 
945ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->ch_page_ctrl);
946e3ec7017SPing-Ke Shih 	prec_cfg->ch011_prec = u32_get_bits(val, B_AX_PREC_PAGE_CH011_MASK);
947e3ec7017SPing-Ke Shih 	prec_cfg->h2c_prec = u32_get_bits(val, B_AX_PREC_PAGE_CH12_MASK);
948e3ec7017SPing-Ke Shih 
949ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->pub_page_ctrl2);
950e3ec7017SPing-Ke Shih 	pub_cfg->pub_max = u32_get_bits(val, B_AX_PUBPG_ALL_MASK);
951e3ec7017SPing-Ke Shih 
952ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->wp_page_ctrl1);
953e3ec7017SPing-Ke Shih 	prec_cfg->wp_ch07_prec = u32_get_bits(val, B_AX_PREC_PAGE_WP_CH07_MASK);
954e3ec7017SPing-Ke Shih 	prec_cfg->wp_ch811_prec = u32_get_bits(val, B_AX_PREC_PAGE_WP_CH811_MASK);
955e3ec7017SPing-Ke Shih 
956ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->wp_page_ctrl2);
957e3ec7017SPing-Ke Shih 	pub_cfg->wp_thrd = u32_get_bits(val, B_AX_WP_THRD_MASK);
958e3ec7017SPing-Ke Shih 
959ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->pub_page_ctrl1);
960e3ec7017SPing-Ke Shih 	pub_cfg->grp0 = u32_get_bits(val, B_AX_PUBPG_G0_MASK);
961e3ec7017SPing-Ke Shih 	pub_cfg->grp1 = u32_get_bits(val, B_AX_PUBPG_G1_MASK);
962e3ec7017SPing-Ke Shih 
963e3ec7017SPing-Ke Shih 	ret = hfc_pub_info_chk(rtwdev);
964e3ec7017SPing-Ke Shih 	if (param->en && ret)
965e3ec7017SPing-Ke Shih 		return ret;
966e3ec7017SPing-Ke Shih 
967e3ec7017SPing-Ke Shih 	return 0;
968e3ec7017SPing-Ke Shih }
969e3ec7017SPing-Ke Shih 
970e3ec7017SPing-Ke Shih static void hfc_h2c_cfg(struct rtw89_dev *rtwdev)
971e3ec7017SPing-Ke Shih {
972ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
973ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
974e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
975e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_prec_cfg *prec_cfg = &param->prec_cfg;
976e3ec7017SPing-Ke Shih 	u32 val;
977e3ec7017SPing-Ke Shih 
978e3ec7017SPing-Ke Shih 	val = u32_encode_bits(prec_cfg->h2c_prec, B_AX_PREC_PAGE_CH12_MASK);
979ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->ch_page_ctrl, val);
980e3ec7017SPing-Ke Shih 
981ab8a5671SPing-Ke Shih 	rtw89_write32_mask(rtwdev, regs->hci_fc_ctrl,
982e3ec7017SPing-Ke Shih 			   B_AX_HCI_FC_CH12_FULL_COND_MASK,
983e3ec7017SPing-Ke Shih 			   prec_cfg->h2c_full_cond);
984e3ec7017SPing-Ke Shih }
985e3ec7017SPing-Ke Shih 
986e3ec7017SPing-Ke Shih static void hfc_mix_cfg(struct rtw89_dev *rtwdev)
987e3ec7017SPing-Ke Shih {
988ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
989ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
990e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
991e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_pub_cfg *pub_cfg = &param->pub_cfg;
992e3ec7017SPing-Ke Shih 	const struct rtw89_hfc_prec_cfg *prec_cfg = &param->prec_cfg;
993e3ec7017SPing-Ke Shih 	u32 val;
994e3ec7017SPing-Ke Shih 
995e3ec7017SPing-Ke Shih 	val = u32_encode_bits(prec_cfg->ch011_prec, B_AX_PREC_PAGE_CH011_MASK) |
996e3ec7017SPing-Ke Shih 	      u32_encode_bits(prec_cfg->h2c_prec, B_AX_PREC_PAGE_CH12_MASK);
997ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->ch_page_ctrl, val);
998e3ec7017SPing-Ke Shih 
999e3ec7017SPing-Ke Shih 	val = u32_encode_bits(pub_cfg->pub_max, B_AX_PUBPG_ALL_MASK);
1000ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->pub_page_ctrl2, val);
1001e3ec7017SPing-Ke Shih 
1002e3ec7017SPing-Ke Shih 	val = u32_encode_bits(prec_cfg->wp_ch07_prec,
1003e3ec7017SPing-Ke Shih 			      B_AX_PREC_PAGE_WP_CH07_MASK) |
1004e3ec7017SPing-Ke Shih 	      u32_encode_bits(prec_cfg->wp_ch811_prec,
1005e3ec7017SPing-Ke Shih 			      B_AX_PREC_PAGE_WP_CH811_MASK);
1006ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->wp_page_ctrl1, val);
1007e3ec7017SPing-Ke Shih 
1008ab8a5671SPing-Ke Shih 	val = u32_replace_bits(rtw89_read32(rtwdev, regs->hci_fc_ctrl),
1009e3ec7017SPing-Ke Shih 			       param->mode, B_AX_HCI_FC_MODE_MASK);
1010e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, prec_cfg->ch011_full_cond,
1011e3ec7017SPing-Ke Shih 			       B_AX_HCI_FC_WD_FULL_COND_MASK);
1012e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, prec_cfg->h2c_full_cond,
1013e3ec7017SPing-Ke Shih 			       B_AX_HCI_FC_CH12_FULL_COND_MASK);
1014e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, prec_cfg->wp_ch07_full_cond,
1015e3ec7017SPing-Ke Shih 			       B_AX_HCI_FC_WP_CH07_FULL_COND_MASK);
1016e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, prec_cfg->wp_ch811_full_cond,
1017e3ec7017SPing-Ke Shih 			       B_AX_HCI_FC_WP_CH811_FULL_COND_MASK);
1018ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->hci_fc_ctrl, val);
1019e3ec7017SPing-Ke Shih }
1020e3ec7017SPing-Ke Shih 
1021e3ec7017SPing-Ke Shih static void hfc_func_en(struct rtw89_dev *rtwdev, bool en, bool h2c_en)
1022e3ec7017SPing-Ke Shih {
1023ab8a5671SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
1024ab8a5671SPing-Ke Shih 	const struct rtw89_page_regs *regs = chip->page_regs;
1025e3ec7017SPing-Ke Shih 	struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param;
1026e3ec7017SPing-Ke Shih 	u32 val;
1027e3ec7017SPing-Ke Shih 
1028ab8a5671SPing-Ke Shih 	val = rtw89_read32(rtwdev, regs->hci_fc_ctrl);
1029e3ec7017SPing-Ke Shih 	param->en = en;
1030e3ec7017SPing-Ke Shih 	param->h2c_en = h2c_en;
1031e3ec7017SPing-Ke Shih 	val = en ? (val | B_AX_HCI_FC_EN) : (val & ~B_AX_HCI_FC_EN);
1032e3ec7017SPing-Ke Shih 	val = h2c_en ? (val | B_AX_HCI_FC_CH12_EN) :
1033e3ec7017SPing-Ke Shih 			 (val & ~B_AX_HCI_FC_CH12_EN);
1034ab8a5671SPing-Ke Shih 	rtw89_write32(rtwdev, regs->hci_fc_ctrl, val);
1035e3ec7017SPing-Ke Shih }
1036e3ec7017SPing-Ke Shih 
1037e3ec7017SPing-Ke Shih static int hfc_init(struct rtw89_dev *rtwdev, bool reset, bool en, bool h2c_en)
1038e3ec7017SPing-Ke Shih {
1039a1b7163aSPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
1040a1b7163aSPing-Ke Shih 	u32 dma_ch_mask = chip->dma_ch_mask;
1041e3ec7017SPing-Ke Shih 	u8 ch;
1042e3ec7017SPing-Ke Shih 	u32 ret = 0;
1043e3ec7017SPing-Ke Shih 
1044e3ec7017SPing-Ke Shih 	if (reset)
1045e3ec7017SPing-Ke Shih 		ret = hfc_reset_param(rtwdev);
1046e3ec7017SPing-Ke Shih 	if (ret)
1047e3ec7017SPing-Ke Shih 		return ret;
1048e3ec7017SPing-Ke Shih 
1049e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
1050e3ec7017SPing-Ke Shih 	if (ret)
1051e3ec7017SPing-Ke Shih 		return ret;
1052e3ec7017SPing-Ke Shih 
1053e3ec7017SPing-Ke Shih 	hfc_func_en(rtwdev, false, false);
1054e3ec7017SPing-Ke Shih 
1055e3ec7017SPing-Ke Shih 	if (!en && h2c_en) {
1056e3ec7017SPing-Ke Shih 		hfc_h2c_cfg(rtwdev);
1057e3ec7017SPing-Ke Shih 		hfc_func_en(rtwdev, en, h2c_en);
1058e3ec7017SPing-Ke Shih 		return ret;
1059e3ec7017SPing-Ke Shih 	}
1060e3ec7017SPing-Ke Shih 
1061e3ec7017SPing-Ke Shih 	for (ch = RTW89_DMA_ACH0; ch < RTW89_DMA_H2C; ch++) {
1062a1b7163aSPing-Ke Shih 		if (dma_ch_mask & BIT(ch))
1063a1b7163aSPing-Ke Shih 			continue;
1064e3ec7017SPing-Ke Shih 		ret = hfc_ch_ctrl(rtwdev, ch);
1065e3ec7017SPing-Ke Shih 		if (ret)
1066e3ec7017SPing-Ke Shih 			return ret;
1067e3ec7017SPing-Ke Shih 	}
1068e3ec7017SPing-Ke Shih 
1069e3ec7017SPing-Ke Shih 	ret = hfc_pub_ctrl(rtwdev);
1070e3ec7017SPing-Ke Shih 	if (ret)
1071e3ec7017SPing-Ke Shih 		return ret;
1072e3ec7017SPing-Ke Shih 
1073e3ec7017SPing-Ke Shih 	hfc_mix_cfg(rtwdev);
1074e3ec7017SPing-Ke Shih 	if (en || h2c_en) {
1075e3ec7017SPing-Ke Shih 		hfc_func_en(rtwdev, en, h2c_en);
1076e3ec7017SPing-Ke Shih 		udelay(10);
1077e3ec7017SPing-Ke Shih 	}
1078e3ec7017SPing-Ke Shih 	for (ch = RTW89_DMA_ACH0; ch < RTW89_DMA_H2C; ch++) {
1079a1b7163aSPing-Ke Shih 		if (dma_ch_mask & BIT(ch))
1080a1b7163aSPing-Ke Shih 			continue;
1081e3ec7017SPing-Ke Shih 		ret = hfc_upd_ch_info(rtwdev, ch);
1082e3ec7017SPing-Ke Shih 		if (ret)
1083e3ec7017SPing-Ke Shih 			return ret;
1084e3ec7017SPing-Ke Shih 	}
1085e3ec7017SPing-Ke Shih 	ret = hfc_upd_mix_info(rtwdev);
1086e3ec7017SPing-Ke Shih 
1087e3ec7017SPing-Ke Shih 	return ret;
1088e3ec7017SPing-Ke Shih }
1089e3ec7017SPing-Ke Shih 
1090e3ec7017SPing-Ke Shih #define PWR_POLL_CNT	2000
1091e3ec7017SPing-Ke Shih static int pwr_cmd_poll(struct rtw89_dev *rtwdev,
1092e3ec7017SPing-Ke Shih 			const struct rtw89_pwr_cfg *cfg)
1093e3ec7017SPing-Ke Shih {
1094e3ec7017SPing-Ke Shih 	u8 val = 0;
1095e3ec7017SPing-Ke Shih 	int ret;
1096e3ec7017SPing-Ke Shih 	u32 addr = cfg->base == PWR_INTF_MSK_SDIO ?
1097e3ec7017SPing-Ke Shih 		   cfg->addr | SDIO_LOCAL_BASE_ADDR : cfg->addr;
1098e3ec7017SPing-Ke Shih 
1099e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read8, val, !((val ^ cfg->val) & cfg->msk),
1100e3ec7017SPing-Ke Shih 				1000, 1000 * PWR_POLL_CNT, false, rtwdev, addr);
1101e3ec7017SPing-Ke Shih 
1102e3ec7017SPing-Ke Shih 	if (!ret)
1103e3ec7017SPing-Ke Shih 		return 0;
1104e3ec7017SPing-Ke Shih 
1105e3ec7017SPing-Ke Shih 	rtw89_warn(rtwdev, "[ERR] Polling timeout\n");
1106e3ec7017SPing-Ke Shih 	rtw89_warn(rtwdev, "[ERR] addr: %X, %X\n", addr, cfg->addr);
1107e3ec7017SPing-Ke Shih 	rtw89_warn(rtwdev, "[ERR] val: %X, %X\n", val, cfg->val);
1108e3ec7017SPing-Ke Shih 
1109e3ec7017SPing-Ke Shih 	return -EBUSY;
1110e3ec7017SPing-Ke Shih }
1111e3ec7017SPing-Ke Shih 
1112e3ec7017SPing-Ke Shih static int rtw89_mac_sub_pwr_seq(struct rtw89_dev *rtwdev, u8 cv_msk,
1113e3ec7017SPing-Ke Shih 				 u8 intf_msk, const struct rtw89_pwr_cfg *cfg)
1114e3ec7017SPing-Ke Shih {
1115e3ec7017SPing-Ke Shih 	const struct rtw89_pwr_cfg *cur_cfg;
1116e3ec7017SPing-Ke Shih 	u32 addr;
1117e3ec7017SPing-Ke Shih 	u8 val;
1118e3ec7017SPing-Ke Shih 
1119e3ec7017SPing-Ke Shih 	for (cur_cfg = cfg; cur_cfg->cmd != PWR_CMD_END; cur_cfg++) {
1120e3ec7017SPing-Ke Shih 		if (!(cur_cfg->intf_msk & intf_msk) ||
1121e3ec7017SPing-Ke Shih 		    !(cur_cfg->cv_msk & cv_msk))
1122e3ec7017SPing-Ke Shih 			continue;
1123e3ec7017SPing-Ke Shih 
1124e3ec7017SPing-Ke Shih 		switch (cur_cfg->cmd) {
1125e3ec7017SPing-Ke Shih 		case PWR_CMD_WRITE:
1126e3ec7017SPing-Ke Shih 			addr = cur_cfg->addr;
1127e3ec7017SPing-Ke Shih 
1128e3ec7017SPing-Ke Shih 			if (cur_cfg->base == PWR_BASE_SDIO)
1129e3ec7017SPing-Ke Shih 				addr |= SDIO_LOCAL_BASE_ADDR;
1130e3ec7017SPing-Ke Shih 
1131e3ec7017SPing-Ke Shih 			val = rtw89_read8(rtwdev, addr);
1132e3ec7017SPing-Ke Shih 			val &= ~(cur_cfg->msk);
1133e3ec7017SPing-Ke Shih 			val |= (cur_cfg->val & cur_cfg->msk);
1134e3ec7017SPing-Ke Shih 
1135e3ec7017SPing-Ke Shih 			rtw89_write8(rtwdev, addr, val);
1136e3ec7017SPing-Ke Shih 			break;
1137e3ec7017SPing-Ke Shih 		case PWR_CMD_POLL:
1138e3ec7017SPing-Ke Shih 			if (pwr_cmd_poll(rtwdev, cur_cfg))
1139e3ec7017SPing-Ke Shih 				return -EBUSY;
1140e3ec7017SPing-Ke Shih 			break;
1141e3ec7017SPing-Ke Shih 		case PWR_CMD_DELAY:
1142e3ec7017SPing-Ke Shih 			if (cur_cfg->val == PWR_DELAY_US)
1143e3ec7017SPing-Ke Shih 				udelay(cur_cfg->addr);
1144e3ec7017SPing-Ke Shih 			else
1145e3ec7017SPing-Ke Shih 				fsleep(cur_cfg->addr * 1000);
1146e3ec7017SPing-Ke Shih 			break;
1147e3ec7017SPing-Ke Shih 		default:
1148e3ec7017SPing-Ke Shih 			return -EINVAL;
1149e3ec7017SPing-Ke Shih 		}
1150e3ec7017SPing-Ke Shih 	}
1151e3ec7017SPing-Ke Shih 
1152e3ec7017SPing-Ke Shih 	return 0;
1153e3ec7017SPing-Ke Shih }
1154e3ec7017SPing-Ke Shih 
1155e3ec7017SPing-Ke Shih static int rtw89_mac_pwr_seq(struct rtw89_dev *rtwdev,
1156e3ec7017SPing-Ke Shih 			     const struct rtw89_pwr_cfg * const *cfg_seq)
1157e3ec7017SPing-Ke Shih {
1158e3ec7017SPing-Ke Shih 	int ret;
1159e3ec7017SPing-Ke Shih 
1160e3ec7017SPing-Ke Shih 	for (; *cfg_seq; cfg_seq++) {
1161e3ec7017SPing-Ke Shih 		ret = rtw89_mac_sub_pwr_seq(rtwdev, BIT(rtwdev->hal.cv),
1162e3ec7017SPing-Ke Shih 					    PWR_INTF_MSK_PCIE, *cfg_seq);
1163e3ec7017SPing-Ke Shih 		if (ret)
1164e3ec7017SPing-Ke Shih 			return -EBUSY;
1165e3ec7017SPing-Ke Shih 	}
1166e3ec7017SPing-Ke Shih 
1167e3ec7017SPing-Ke Shih 	return 0;
1168e3ec7017SPing-Ke Shih }
1169e3ec7017SPing-Ke Shih 
1170e3ec7017SPing-Ke Shih static enum rtw89_rpwm_req_pwr_state
1171e3ec7017SPing-Ke Shih rtw89_mac_get_req_pwr_state(struct rtw89_dev *rtwdev)
1172e3ec7017SPing-Ke Shih {
1173e3ec7017SPing-Ke Shih 	enum rtw89_rpwm_req_pwr_state state;
1174e3ec7017SPing-Ke Shih 
1175e3ec7017SPing-Ke Shih 	switch (rtwdev->ps_mode) {
1176e3ec7017SPing-Ke Shih 	case RTW89_PS_MODE_RFOFF:
1177e3ec7017SPing-Ke Shih 		state = RTW89_MAC_RPWM_REQ_PWR_STATE_BAND0_RFOFF;
1178e3ec7017SPing-Ke Shih 		break;
1179e3ec7017SPing-Ke Shih 	case RTW89_PS_MODE_CLK_GATED:
1180e3ec7017SPing-Ke Shih 		state = RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED;
1181e3ec7017SPing-Ke Shih 		break;
1182e3ec7017SPing-Ke Shih 	case RTW89_PS_MODE_PWR_GATED:
1183e3ec7017SPing-Ke Shih 		state = RTW89_MAC_RPWM_REQ_PWR_STATE_PWR_GATED;
1184e3ec7017SPing-Ke Shih 		break;
1185e3ec7017SPing-Ke Shih 	default:
1186e3ec7017SPing-Ke Shih 		state = RTW89_MAC_RPWM_REQ_PWR_STATE_ACTIVE;
1187e3ec7017SPing-Ke Shih 		break;
1188e3ec7017SPing-Ke Shih 	}
1189e3ec7017SPing-Ke Shih 	return state;
1190e3ec7017SPing-Ke Shih }
1191e3ec7017SPing-Ke Shih 
1192e3ec7017SPing-Ke Shih static void rtw89_mac_send_rpwm(struct rtw89_dev *rtwdev,
11937bfd05ffSChin-Yen Lee 				enum rtw89_rpwm_req_pwr_state req_pwr_state,
11947bfd05ffSChin-Yen Lee 				bool notify_wake)
1195e3ec7017SPing-Ke Shih {
1196e3ec7017SPing-Ke Shih 	u16 request;
1197e3ec7017SPing-Ke Shih 
11987bfd05ffSChin-Yen Lee 	spin_lock_bh(&rtwdev->rpwm_lock);
11997bfd05ffSChin-Yen Lee 
1200e3ec7017SPing-Ke Shih 	request = rtw89_read16(rtwdev, R_AX_RPWM);
1201e3ec7017SPing-Ke Shih 	request ^= request | PS_RPWM_TOGGLE;
12027bfd05ffSChin-Yen Lee 	request |= req_pwr_state;
1203e3ec7017SPing-Ke Shih 
12047bfd05ffSChin-Yen Lee 	if (notify_wake) {
12057bfd05ffSChin-Yen Lee 		request |= PS_RPWM_NOTIFY_WAKE;
12067bfd05ffSChin-Yen Lee 	} else {
1207e3ec7017SPing-Ke Shih 		rtwdev->mac.rpwm_seq_num = (rtwdev->mac.rpwm_seq_num + 1) &
1208e3ec7017SPing-Ke Shih 					    RPWM_SEQ_NUM_MAX;
12097bfd05ffSChin-Yen Lee 		request |= FIELD_PREP(PS_RPWM_SEQ_NUM,
12107bfd05ffSChin-Yen Lee 				      rtwdev->mac.rpwm_seq_num);
1211e3ec7017SPing-Ke Shih 
1212e3ec7017SPing-Ke Shih 		if (req_pwr_state < RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED)
1213e3ec7017SPing-Ke Shih 			request |= PS_RPWM_ACK;
12147bfd05ffSChin-Yen Lee 	}
1215e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, rtwdev->hci.rpwm_addr, request);
12167bfd05ffSChin-Yen Lee 
12177bfd05ffSChin-Yen Lee 	spin_unlock_bh(&rtwdev->rpwm_lock);
1218e3ec7017SPing-Ke Shih }
1219e3ec7017SPing-Ke Shih 
1220e3ec7017SPing-Ke Shih static int rtw89_mac_check_cpwm_state(struct rtw89_dev *rtwdev,
1221e3ec7017SPing-Ke Shih 				      enum rtw89_rpwm_req_pwr_state req_pwr_state)
1222e3ec7017SPing-Ke Shih {
1223e3ec7017SPing-Ke Shih 	bool request_deep_mode;
1224e3ec7017SPing-Ke Shih 	bool in_deep_mode;
1225e3ec7017SPing-Ke Shih 	u8 rpwm_req_num;
1226e3ec7017SPing-Ke Shih 	u8 cpwm_rsp_seq;
1227e3ec7017SPing-Ke Shih 	u8 cpwm_seq;
1228e3ec7017SPing-Ke Shih 	u8 cpwm_status;
1229e3ec7017SPing-Ke Shih 
1230e3ec7017SPing-Ke Shih 	if (req_pwr_state >= RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED)
1231e3ec7017SPing-Ke Shih 		request_deep_mode = true;
1232e3ec7017SPing-Ke Shih 	else
1233e3ec7017SPing-Ke Shih 		request_deep_mode = false;
1234e3ec7017SPing-Ke Shih 
1235e3ec7017SPing-Ke Shih 	if (rtw89_read32_mask(rtwdev, R_AX_LDM, B_AX_EN_32K))
1236e3ec7017SPing-Ke Shih 		in_deep_mode = true;
1237e3ec7017SPing-Ke Shih 	else
1238e3ec7017SPing-Ke Shih 		in_deep_mode = false;
1239e3ec7017SPing-Ke Shih 
1240e3ec7017SPing-Ke Shih 	if (request_deep_mode != in_deep_mode)
1241e3ec7017SPing-Ke Shih 		return -EPERM;
1242e3ec7017SPing-Ke Shih 
1243e3ec7017SPing-Ke Shih 	if (request_deep_mode)
1244e3ec7017SPing-Ke Shih 		return 0;
1245e3ec7017SPing-Ke Shih 
1246e3ec7017SPing-Ke Shih 	rpwm_req_num = rtwdev->mac.rpwm_seq_num;
1247e1757e80SPing-Ke Shih 	cpwm_rsp_seq = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr,
1248e3ec7017SPing-Ke Shih 					 PS_CPWM_RSP_SEQ_NUM);
1249e3ec7017SPing-Ke Shih 
1250e3ec7017SPing-Ke Shih 	if (rpwm_req_num != cpwm_rsp_seq)
1251e3ec7017SPing-Ke Shih 		return -EPERM;
1252e3ec7017SPing-Ke Shih 
1253e3ec7017SPing-Ke Shih 	rtwdev->mac.cpwm_seq_num = (rtwdev->mac.cpwm_seq_num + 1) &
1254e3ec7017SPing-Ke Shih 				    CPWM_SEQ_NUM_MAX;
1255e3ec7017SPing-Ke Shih 
1256e1757e80SPing-Ke Shih 	cpwm_seq = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr, PS_CPWM_SEQ_NUM);
1257e3ec7017SPing-Ke Shih 	if (cpwm_seq != rtwdev->mac.cpwm_seq_num)
1258e3ec7017SPing-Ke Shih 		return -EPERM;
1259e3ec7017SPing-Ke Shih 
1260e1757e80SPing-Ke Shih 	cpwm_status = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr, PS_CPWM_STATE);
1261e3ec7017SPing-Ke Shih 	if (cpwm_status != req_pwr_state)
1262e3ec7017SPing-Ke Shih 		return -EPERM;
1263e3ec7017SPing-Ke Shih 
1264e3ec7017SPing-Ke Shih 	return 0;
1265e3ec7017SPing-Ke Shih }
1266e3ec7017SPing-Ke Shih 
1267e3ec7017SPing-Ke Shih void rtw89_mac_power_mode_change(struct rtw89_dev *rtwdev, bool enter)
1268e3ec7017SPing-Ke Shih {
1269e3ec7017SPing-Ke Shih 	enum rtw89_rpwm_req_pwr_state state;
127039a76521SPing-Ke Shih 	unsigned long delay = enter ? 10 : 150;
1271e3ec7017SPing-Ke Shih 	int ret;
127248c0e347SChin-Yen Lee 	int i;
1273e3ec7017SPing-Ke Shih 
1274e3ec7017SPing-Ke Shih 	if (enter)
1275e3ec7017SPing-Ke Shih 		state = rtw89_mac_get_req_pwr_state(rtwdev);
1276e3ec7017SPing-Ke Shih 	else
1277e3ec7017SPing-Ke Shih 		state = RTW89_MAC_RPWM_REQ_PWR_STATE_ACTIVE;
1278e3ec7017SPing-Ke Shih 
127948c0e347SChin-Yen Lee 	for (i = 0; i < RPWM_TRY_CNT; i++) {
12807bfd05ffSChin-Yen Lee 		rtw89_mac_send_rpwm(rtwdev, state, false);
128148c0e347SChin-Yen Lee 		ret = read_poll_timeout_atomic(rtw89_mac_check_cpwm_state, ret,
128248c0e347SChin-Yen Lee 					       !ret, delay, 15000, false,
128348c0e347SChin-Yen Lee 					       rtwdev, state);
128448c0e347SChin-Yen Lee 		if (!ret)
128548c0e347SChin-Yen Lee 			break;
128648c0e347SChin-Yen Lee 
128748c0e347SChin-Yen Lee 		if (i == RPWM_TRY_CNT - 1)
1288e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev, "firmware failed to ack for %s ps mode\n",
1289e3ec7017SPing-Ke Shih 				  enter ? "entering" : "leaving");
129048c0e347SChin-Yen Lee 		else
129148c0e347SChin-Yen Lee 			rtw89_debug(rtwdev, RTW89_DBG_UNEXP,
129248c0e347SChin-Yen Lee 				    "%d time firmware failed to ack for %s ps mode\n",
129348c0e347SChin-Yen Lee 				    i + 1, enter ? "entering" : "leaving");
129448c0e347SChin-Yen Lee 	}
1295e3ec7017SPing-Ke Shih }
1296e3ec7017SPing-Ke Shih 
12977bfd05ffSChin-Yen Lee void rtw89_mac_notify_wake(struct rtw89_dev *rtwdev)
12987bfd05ffSChin-Yen Lee {
12997bfd05ffSChin-Yen Lee 	enum rtw89_rpwm_req_pwr_state state;
13007bfd05ffSChin-Yen Lee 
13017bfd05ffSChin-Yen Lee 	state = rtw89_mac_get_req_pwr_state(rtwdev);
13027bfd05ffSChin-Yen Lee 	rtw89_mac_send_rpwm(rtwdev, state, true);
13037bfd05ffSChin-Yen Lee }
13047bfd05ffSChin-Yen Lee 
1305e3ec7017SPing-Ke Shih static int rtw89_mac_power_switch(struct rtw89_dev *rtwdev, bool on)
1306e3ec7017SPing-Ke Shih {
1307e3ec7017SPing-Ke Shih #define PWR_ACT 1
1308e3ec7017SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
1309e3ec7017SPing-Ke Shih 	const struct rtw89_pwr_cfg * const *cfg_seq;
13102a7e54dbSPing-Ke Shih 	int (*cfg_func)(struct rtw89_dev *rtwdev);
1311e3ec7017SPing-Ke Shih 	int ret;
1312e3ec7017SPing-Ke Shih 	u8 val;
1313e3ec7017SPing-Ke Shih 
13142a7e54dbSPing-Ke Shih 	if (on) {
1315e3ec7017SPing-Ke Shih 		cfg_seq = chip->pwr_on_seq;
13162a7e54dbSPing-Ke Shih 		cfg_func = chip->ops->pwr_on_func;
13172a7e54dbSPing-Ke Shih 	} else {
1318e3ec7017SPing-Ke Shih 		cfg_seq = chip->pwr_off_seq;
13192a7e54dbSPing-Ke Shih 		cfg_func = chip->ops->pwr_off_func;
13202a7e54dbSPing-Ke Shih 	}
1321e3ec7017SPing-Ke Shih 
1322e3ec7017SPing-Ke Shih 	if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags))
1323e3ec7017SPing-Ke Shih 		__rtw89_leave_ps_mode(rtwdev);
1324e3ec7017SPing-Ke Shih 
1325e3ec7017SPing-Ke Shih 	val = rtw89_read32_mask(rtwdev, R_AX_IC_PWR_STATE, B_AX_WLMAC_PWR_STE_MASK);
1326e3ec7017SPing-Ke Shih 	if (on && val == PWR_ACT) {
1327e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "MAC has already powered on\n");
1328e3ec7017SPing-Ke Shih 		return -EBUSY;
1329e3ec7017SPing-Ke Shih 	}
1330e3ec7017SPing-Ke Shih 
13312a7e54dbSPing-Ke Shih 	ret = cfg_func ? cfg_func(rtwdev) : rtw89_mac_pwr_seq(rtwdev, cfg_seq);
1332e3ec7017SPing-Ke Shih 	if (ret)
1333e3ec7017SPing-Ke Shih 		return ret;
1334e3ec7017SPing-Ke Shih 
1335e3ec7017SPing-Ke Shih 	if (on) {
1336e3ec7017SPing-Ke Shih 		set_bit(RTW89_FLAG_POWERON, rtwdev->flags);
1337e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_SCOREBOARD + 3, MAC_AX_NOTIFY_TP_MAJOR);
1338e3ec7017SPing-Ke Shih 	} else {
1339e3ec7017SPing-Ke Shih 		clear_bit(RTW89_FLAG_POWERON, rtwdev->flags);
1340e3ec7017SPing-Ke Shih 		clear_bit(RTW89_FLAG_FW_RDY, rtwdev->flags);
1341e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_SCOREBOARD + 3, MAC_AX_NOTIFY_PWR_MAJOR);
1342967439c7SZong-Zhe Yang 		rtw89_set_entity_state(rtwdev, false);
1343e3ec7017SPing-Ke Shih 	}
1344e3ec7017SPing-Ke Shih 
1345e3ec7017SPing-Ke Shih 	return 0;
1346e3ec7017SPing-Ke Shih #undef PWR_ACT
1347e3ec7017SPing-Ke Shih }
1348e3ec7017SPing-Ke Shih 
1349e3ec7017SPing-Ke Shih void rtw89_mac_pwr_off(struct rtw89_dev *rtwdev)
1350e3ec7017SPing-Ke Shih {
1351e3ec7017SPing-Ke Shih 	rtw89_mac_power_switch(rtwdev, false);
1352e3ec7017SPing-Ke Shih }
1353e3ec7017SPing-Ke Shih 
1354e3ec7017SPing-Ke Shih static int cmac_func_en(struct rtw89_dev *rtwdev, u8 mac_idx, bool en)
1355e3ec7017SPing-Ke Shih {
1356e3ec7017SPing-Ke Shih 	u32 func_en = 0;
1357e3ec7017SPing-Ke Shih 	u32 ck_en = 0;
1358e3ec7017SPing-Ke Shih 	u32 c1pc_en = 0;
1359e3ec7017SPing-Ke Shih 	u32 addrl_func_en[] = {R_AX_CMAC_FUNC_EN, R_AX_CMAC_FUNC_EN_C1};
1360e3ec7017SPing-Ke Shih 	u32 addrl_ck_en[] = {R_AX_CK_EN, R_AX_CK_EN_C1};
1361e3ec7017SPing-Ke Shih 
1362e3ec7017SPing-Ke Shih 	func_en = B_AX_CMAC_EN | B_AX_CMAC_TXEN | B_AX_CMAC_RXEN |
1363e3ec7017SPing-Ke Shih 			B_AX_PHYINTF_EN | B_AX_CMAC_DMA_EN | B_AX_PTCLTOP_EN |
13645cb5562dSPing-Ke Shih 			B_AX_SCHEDULER_EN | B_AX_TMAC_EN | B_AX_RMAC_EN |
13655cb5562dSPing-Ke Shih 			B_AX_CMAC_CRPRT;
1366e3ec7017SPing-Ke Shih 	ck_en = B_AX_CMAC_CKEN | B_AX_PHYINTF_CKEN | B_AX_CMAC_DMA_CKEN |
1367e3ec7017SPing-Ke Shih 		      B_AX_PTCLTOP_CKEN | B_AX_SCHEDULER_CKEN | B_AX_TMAC_CKEN |
1368e3ec7017SPing-Ke Shih 		      B_AX_RMAC_CKEN;
1369e3ec7017SPing-Ke Shih 	c1pc_en = B_AX_R_SYM_WLCMAC1_PC_EN |
1370e3ec7017SPing-Ke Shih 			B_AX_R_SYM_WLCMAC1_P1_PC_EN |
1371e3ec7017SPing-Ke Shih 			B_AX_R_SYM_WLCMAC1_P2_PC_EN |
1372e3ec7017SPing-Ke Shih 			B_AX_R_SYM_WLCMAC1_P3_PC_EN |
1373e3ec7017SPing-Ke Shih 			B_AX_R_SYM_WLCMAC1_P4_PC_EN;
1374e3ec7017SPing-Ke Shih 
1375e3ec7017SPing-Ke Shih 	if (en) {
1376e3ec7017SPing-Ke Shih 		if (mac_idx == RTW89_MAC_1) {
1377e3ec7017SPing-Ke Shih 			rtw89_write32_set(rtwdev, R_AX_AFE_CTRL1, c1pc_en);
1378e3ec7017SPing-Ke Shih 			rtw89_write32_clr(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND,
1379e3ec7017SPing-Ke Shih 					  B_AX_R_SYM_ISO_CMAC12PP);
1380e3ec7017SPing-Ke Shih 			rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND,
1381e3ec7017SPing-Ke Shih 					  B_AX_CMAC1_FEN);
1382e3ec7017SPing-Ke Shih 		}
1383e3ec7017SPing-Ke Shih 		rtw89_write32_set(rtwdev, addrl_ck_en[mac_idx], ck_en);
1384e3ec7017SPing-Ke Shih 		rtw89_write32_set(rtwdev, addrl_func_en[mac_idx], func_en);
1385e3ec7017SPing-Ke Shih 	} else {
1386e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, addrl_func_en[mac_idx], func_en);
1387e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, addrl_ck_en[mac_idx], ck_en);
1388e3ec7017SPing-Ke Shih 		if (mac_idx == RTW89_MAC_1) {
1389e3ec7017SPing-Ke Shih 			rtw89_write32_clr(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND,
1390e3ec7017SPing-Ke Shih 					  B_AX_CMAC1_FEN);
1391e3ec7017SPing-Ke Shih 			rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND,
1392e3ec7017SPing-Ke Shih 					  B_AX_R_SYM_ISO_CMAC12PP);
1393e3ec7017SPing-Ke Shih 			rtw89_write32_clr(rtwdev, R_AX_AFE_CTRL1, c1pc_en);
1394e3ec7017SPing-Ke Shih 		}
1395e3ec7017SPing-Ke Shih 	}
1396e3ec7017SPing-Ke Shih 
1397e3ec7017SPing-Ke Shih 	return 0;
1398e3ec7017SPing-Ke Shih }
1399e3ec7017SPing-Ke Shih 
1400e3ec7017SPing-Ke Shih static int dmac_func_en(struct rtw89_dev *rtwdev)
1401e3ec7017SPing-Ke Shih {
1402828a4396SChia-Yuan Li 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
1403e3ec7017SPing-Ke Shih 	u32 val32;
1404e3ec7017SPing-Ke Shih 
1405828a4396SChia-Yuan Li 	if (chip_id == RTL8852C)
1406828a4396SChia-Yuan Li 		val32 = (B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN |
1407828a4396SChia-Yuan Li 			 B_AX_MAC_SEC_EN | B_AX_DISPATCHER_EN |
1408828a4396SChia-Yuan Li 			 B_AX_DLE_CPUIO_EN | B_AX_PKT_IN_EN |
1409828a4396SChia-Yuan Li 			 B_AX_DMAC_TBL_EN | B_AX_PKT_BUF_EN |
1410828a4396SChia-Yuan Li 			 B_AX_STA_SCH_EN | B_AX_TXPKT_CTRL_EN |
1411828a4396SChia-Yuan Li 			 B_AX_WD_RLS_EN | B_AX_MPDU_PROC_EN |
1412828a4396SChia-Yuan Li 			 B_AX_DMAC_CRPRT | B_AX_H_AXIDMA_EN);
1413828a4396SChia-Yuan Li 	else
1414828a4396SChia-Yuan Li 		val32 = (B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN |
1415828a4396SChia-Yuan Li 			 B_AX_MAC_SEC_EN | B_AX_DISPATCHER_EN |
1416828a4396SChia-Yuan Li 			 B_AX_DLE_CPUIO_EN | B_AX_PKT_IN_EN |
1417828a4396SChia-Yuan Li 			 B_AX_DMAC_TBL_EN | B_AX_PKT_BUF_EN |
1418828a4396SChia-Yuan Li 			 B_AX_STA_SCH_EN | B_AX_TXPKT_CTRL_EN |
1419828a4396SChia-Yuan Li 			 B_AX_WD_RLS_EN | B_AX_MPDU_PROC_EN |
1420828a4396SChia-Yuan Li 			 B_AX_DMAC_CRPRT);
1421e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_DMAC_FUNC_EN, val32);
1422e3ec7017SPing-Ke Shih 
1423e3ec7017SPing-Ke Shih 	val32 = (B_AX_MAC_SEC_CLK_EN | B_AX_DISPATCHER_CLK_EN |
1424e3ec7017SPing-Ke Shih 		 B_AX_DLE_CPUIO_CLK_EN | B_AX_PKT_IN_CLK_EN |
1425e3ec7017SPing-Ke Shih 		 B_AX_STA_SCH_CLK_EN | B_AX_TXPKT_CTRL_CLK_EN |
1426828a4396SChia-Yuan Li 		 B_AX_WD_RLS_CLK_EN | B_AX_BBRPT_CLK_EN);
1427e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_DMAC_CLK_EN, val32);
1428e3ec7017SPing-Ke Shih 
142943863efeSChangcheng Deng 	return 0;
1430e3ec7017SPing-Ke Shih }
1431e3ec7017SPing-Ke Shih 
1432e3ec7017SPing-Ke Shih static int chip_func_en(struct rtw89_dev *rtwdev)
1433e3ec7017SPing-Ke Shih {
1434828a4396SChia-Yuan Li 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
1435828a4396SChia-Yuan Li 
143614b6e9f4SPing-Ke Shih 	if (chip_id == RTL8852A || chip_id == RTL8852B)
143714b6e9f4SPing-Ke Shih 		rtw89_write32_set(rtwdev, R_AX_SPS_DIG_ON_CTRL0,
1438828a4396SChia-Yuan Li 				  B_AX_OCP_L1_MASK);
1439e3ec7017SPing-Ke Shih 
1440e3ec7017SPing-Ke Shih 	return 0;
1441e3ec7017SPing-Ke Shih }
1442e3ec7017SPing-Ke Shih 
1443e3ec7017SPing-Ke Shih static int rtw89_mac_sys_init(struct rtw89_dev *rtwdev)
1444e3ec7017SPing-Ke Shih {
1445e3ec7017SPing-Ke Shih 	int ret;
1446e3ec7017SPing-Ke Shih 
1447e3ec7017SPing-Ke Shih 	ret = dmac_func_en(rtwdev);
1448e3ec7017SPing-Ke Shih 	if (ret)
1449e3ec7017SPing-Ke Shih 		return ret;
1450e3ec7017SPing-Ke Shih 
1451e3ec7017SPing-Ke Shih 	ret = cmac_func_en(rtwdev, 0, true);
1452e3ec7017SPing-Ke Shih 	if (ret)
1453e3ec7017SPing-Ke Shih 		return ret;
1454e3ec7017SPing-Ke Shih 
1455e3ec7017SPing-Ke Shih 	ret = chip_func_en(rtwdev);
1456e3ec7017SPing-Ke Shih 	if (ret)
1457e3ec7017SPing-Ke Shih 		return ret;
1458e3ec7017SPing-Ke Shih 
1459e3ec7017SPing-Ke Shih 	return ret;
1460e3ec7017SPing-Ke Shih }
1461e3ec7017SPing-Ke Shih 
146230645118SPing-Ke Shih const struct rtw89_mac_size_set rtw89_mac_size = {
146330645118SPing-Ke Shih 	.hfc_preccfg_pcie = {2, 40, 0, 0, 1, 0, 0, 0},
1464e3ec7017SPing-Ke Shih 	/* PCIE 64 */
146530645118SPing-Ke Shih 	.wde_size0 = {RTW89_WDE_PG_64, 4095, 1,},
1466e3ec7017SPing-Ke Shih 	/* DLFW */
146730645118SPing-Ke Shih 	.wde_size4 = {RTW89_WDE_PG_64, 0, 4096,},
1468a1cb0971SPing-Ke Shih 	/* PCIE 64 */
1469a1cb0971SPing-Ke Shih 	.wde_size6 = {RTW89_WDE_PG_64, 512, 0,},
1470a1cb0971SPing-Ke Shih 	/* DLFW */
1471a1cb0971SPing-Ke Shih 	.wde_size9 = {RTW89_WDE_PG_64, 0, 1024,},
147279d099e0SPing-Ke Shih 	/* 8852C DLFW */
147330645118SPing-Ke Shih 	.wde_size18 = {RTW89_WDE_PG_64, 0, 2048,},
147479d099e0SPing-Ke Shih 	/* 8852C PCIE SCC */
147530645118SPing-Ke Shih 	.wde_size19 = {RTW89_WDE_PG_64, 3328, 0,},
1476e3ec7017SPing-Ke Shih 	/* PCIE */
147730645118SPing-Ke Shih 	.ple_size0 = {RTW89_PLE_PG_128, 1520, 16,},
1478e3ec7017SPing-Ke Shih 	/* DLFW */
147930645118SPing-Ke Shih 	.ple_size4 = {RTW89_PLE_PG_128, 64, 1472,},
1480a1cb0971SPing-Ke Shih 	/* PCIE 64 */
1481a1cb0971SPing-Ke Shih 	.ple_size6 = {RTW89_PLE_PG_128, 496, 16,},
1482a1cb0971SPing-Ke Shih 	/* DLFW */
1483a1cb0971SPing-Ke Shih 	.ple_size8 = {RTW89_PLE_PG_128, 64, 960,},
148479d099e0SPing-Ke Shih 	/* 8852C DLFW */
148530645118SPing-Ke Shih 	.ple_size18 = {RTW89_PLE_PG_128, 2544, 16,},
148679d099e0SPing-Ke Shih 	/* 8852C PCIE SCC */
148730645118SPing-Ke Shih 	.ple_size19 = {RTW89_PLE_PG_128, 1904, 16,},
1488e3ec7017SPing-Ke Shih 	/* PCIE 64 */
148930645118SPing-Ke Shih 	.wde_qt0 = {3792, 196, 0, 107,},
1490e3ec7017SPing-Ke Shih 	/* DLFW */
149130645118SPing-Ke Shih 	.wde_qt4 = {0, 0, 0, 0,},
1492a1cb0971SPing-Ke Shih 	/* PCIE 64 */
1493a1cb0971SPing-Ke Shih 	.wde_qt6 = {448, 48, 0, 16,},
149479d099e0SPing-Ke Shih 	/* 8852C DLFW */
149530645118SPing-Ke Shih 	.wde_qt17 = {0, 0, 0,  0,},
149679d099e0SPing-Ke Shih 	/* 8852C PCIE SCC */
149730645118SPing-Ke Shih 	.wde_qt18 = {3228, 60, 0, 40,},
1498e3ec7017SPing-Ke Shih 	/* PCIE SCC */
149930645118SPing-Ke Shih 	.ple_qt4 = {264, 0, 16, 20, 26, 13, 356, 0, 32, 40, 8,},
1500e3ec7017SPing-Ke Shih 	/* PCIE SCC */
150130645118SPing-Ke Shih 	.ple_qt5 = {264, 0, 32, 20, 64, 13, 1101, 0, 64, 128, 120,},
1502e3ec7017SPing-Ke Shih 	/* DLFW */
150330645118SPing-Ke Shih 	.ple_qt13 = {0, 0, 16, 48, 0, 0, 0, 0, 0, 0, 0,},
1504a1cb0971SPing-Ke Shih 	/* PCIE 64 */
1505a1cb0971SPing-Ke Shih 	.ple_qt18 = {147, 0, 16, 20, 17, 13, 89, 0, 32, 14, 8, 0,},
150679d099e0SPing-Ke Shih 	/* DLFW 52C */
150730645118SPing-Ke Shih 	.ple_qt44 = {0, 0, 16, 256, 0, 0, 0, 0, 0, 0, 0, 0,},
150879d099e0SPing-Ke Shih 	/* DLFW 52C */
150930645118SPing-Ke Shih 	.ple_qt45 = {0, 0, 32, 256, 0, 0, 0, 0, 0, 0, 0, 0,},
151079d099e0SPing-Ke Shih 	/* 8852C PCIE SCC */
151130645118SPing-Ke Shih 	.ple_qt46 = {525, 0, 16, 20, 13, 13, 178, 0, 32, 62, 8, 16,},
151279d099e0SPing-Ke Shih 	/* 8852C PCIE SCC */
151330645118SPing-Ke Shih 	.ple_qt47 = {525, 0, 32, 20, 1034, 13, 1199, 0, 1053, 62, 160, 1037,},
1514a1cb0971SPing-Ke Shih 	/* PCIE 64 */
1515a1cb0971SPing-Ke Shih 	.ple_qt58 = {147, 0, 16, 20, 157, 13, 229, 0, 172, 14, 24, 0,},
15167a68ec3dSChih-Kang Chang 	/* 8852A PCIE WOW */
15177a68ec3dSChih-Kang Chang 	.ple_qt_52a_wow = {264, 0, 32, 20, 64, 13, 1005, 0, 64, 128, 120,},
15186863ad91SChin-Yen Lee 	/* 8852B PCIE WOW */
15196863ad91SChin-Yen Lee 	.ple_qt_52b_wow = {147, 0, 16, 20, 157, 13, 133, 0, 172, 14, 24, 0,},
152085d1539cSPing-Ke Shih 	/* 8851B PCIE WOW */
152185d1539cSPing-Ke Shih 	.ple_qt_51b_wow = {147, 0, 16, 20, 157, 13, 133, 0, 172, 14, 24, 0,},
152279d099e0SPing-Ke Shih };
152330645118SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_size);
152479d099e0SPing-Ke Shih 
1525e3ec7017SPing-Ke Shih static const struct rtw89_dle_mem *get_dle_mem_cfg(struct rtw89_dev *rtwdev,
1526e3ec7017SPing-Ke Shih 						   enum rtw89_qta_mode mode)
1527e3ec7017SPing-Ke Shih {
1528e3ec7017SPing-Ke Shih 	struct rtw89_mac_info *mac = &rtwdev->mac;
1529e3ec7017SPing-Ke Shih 	const struct rtw89_dle_mem *cfg;
1530e3ec7017SPing-Ke Shih 
1531e3ec7017SPing-Ke Shih 	cfg = &rtwdev->chip->dle_mem[mode];
1532e3ec7017SPing-Ke Shih 	if (!cfg)
1533e3ec7017SPing-Ke Shih 		return NULL;
1534e3ec7017SPing-Ke Shih 
1535e3ec7017SPing-Ke Shih 	if (cfg->mode != mode) {
1536e3ec7017SPing-Ke Shih 		rtw89_warn(rtwdev, "qta mode unmatch!\n");
1537e3ec7017SPing-Ke Shih 		return NULL;
1538e3ec7017SPing-Ke Shih 	}
1539e3ec7017SPing-Ke Shih 
1540e3ec7017SPing-Ke Shih 	mac->dle_info.wde_pg_size = cfg->wde_size->pge_size;
1541e3ec7017SPing-Ke Shih 	mac->dle_info.ple_pg_size = cfg->ple_size->pge_size;
1542e3ec7017SPing-Ke Shih 	mac->dle_info.qta_mode = mode;
1543e3ec7017SPing-Ke Shih 	mac->dle_info.c0_rx_qta = cfg->ple_min_qt->cma0_dma;
1544e3ec7017SPing-Ke Shih 	mac->dle_info.c1_rx_qta = cfg->ple_min_qt->cma1_dma;
1545e3ec7017SPing-Ke Shih 
1546e3ec7017SPing-Ke Shih 	return cfg;
1547e3ec7017SPing-Ke Shih }
1548e3ec7017SPing-Ke Shih 
154941d56769SChih-Kang Chang static bool mac_is_txq_empty(struct rtw89_dev *rtwdev)
155041d56769SChih-Kang Chang {
155141d56769SChih-Kang Chang 	struct rtw89_mac_dle_dfi_qempty qempty;
155241d56769SChih-Kang Chang 	u32 qnum, qtmp, val32, msk32;
155341d56769SChih-Kang Chang 	int i, j, ret;
155441d56769SChih-Kang Chang 
155541d56769SChih-Kang Chang 	qnum = rtwdev->chip->wde_qempty_acq_num;
155641d56769SChih-Kang Chang 	qempty.dle_type = DLE_CTRL_TYPE_WDE;
155741d56769SChih-Kang Chang 
155841d56769SChih-Kang Chang 	for (i = 0; i < qnum; i++) {
155941d56769SChih-Kang Chang 		qempty.grpsel = i;
156041d56769SChih-Kang Chang 		ret = dle_dfi_qempty(rtwdev, &qempty);
156141d56769SChih-Kang Chang 		if (ret) {
156241d56769SChih-Kang Chang 			rtw89_warn(rtwdev, "dle dfi acq empty %d\n", ret);
156341d56769SChih-Kang Chang 			return false;
156441d56769SChih-Kang Chang 		}
156541d56769SChih-Kang Chang 		qtmp = qempty.qempty;
156641d56769SChih-Kang Chang 		for (j = 0 ; j < QEMP_ACQ_GRP_MACID_NUM; j++) {
156741d56769SChih-Kang Chang 			val32 = FIELD_GET(QEMP_ACQ_GRP_QSEL_MASK, qtmp);
156841d56769SChih-Kang Chang 			if (val32 != QEMP_ACQ_GRP_QSEL_MASK)
156941d56769SChih-Kang Chang 				return false;
157041d56769SChih-Kang Chang 			qtmp >>= QEMP_ACQ_GRP_QSEL_SH;
157141d56769SChih-Kang Chang 		}
157241d56769SChih-Kang Chang 	}
157341d56769SChih-Kang Chang 
157441d56769SChih-Kang Chang 	qempty.grpsel = rtwdev->chip->wde_qempty_mgq_sel;
157541d56769SChih-Kang Chang 	ret = dle_dfi_qempty(rtwdev, &qempty);
157641d56769SChih-Kang Chang 	if (ret) {
157741d56769SChih-Kang Chang 		rtw89_warn(rtwdev, "dle dfi mgq empty %d\n", ret);
157841d56769SChih-Kang Chang 		return false;
157941d56769SChih-Kang Chang 	}
158041d56769SChih-Kang Chang 	msk32 = B_CMAC0_MGQ_NORMAL | B_CMAC0_MGQ_NO_PWRSAV | B_CMAC0_CPUMGQ;
158141d56769SChih-Kang Chang 	if ((qempty.qempty & msk32) != msk32)
158241d56769SChih-Kang Chang 		return false;
158341d56769SChih-Kang Chang 
158441d56769SChih-Kang Chang 	if (rtwdev->dbcc_en) {
158541d56769SChih-Kang Chang 		msk32 |= B_CMAC1_MGQ_NORMAL | B_CMAC1_MGQ_NO_PWRSAV | B_CMAC1_CPUMGQ;
158641d56769SChih-Kang Chang 		if ((qempty.qempty & msk32) != msk32)
158741d56769SChih-Kang Chang 			return false;
158841d56769SChih-Kang Chang 	}
158941d56769SChih-Kang Chang 
159041d56769SChih-Kang Chang 	msk32 = B_AX_WDE_EMPTY_QTA_DMAC_WLAN_CPU | B_AX_WDE_EMPTY_QTA_DMAC_DATA_CPU |
159141d56769SChih-Kang Chang 		B_AX_PLE_EMPTY_QTA_DMAC_WLAN_CPU | B_AX_PLE_EMPTY_QTA_DMAC_H2C |
159241d56769SChih-Kang Chang 		B_AX_WDE_EMPTY_QUE_OTHERS | B_AX_PLE_EMPTY_QUE_DMAC_MPDU_TX |
159341d56769SChih-Kang Chang 		B_AX_WDE_EMPTY_QTA_DMAC_CPUIO | B_AX_PLE_EMPTY_QTA_DMAC_CPUIO |
159441d56769SChih-Kang Chang 		B_AX_WDE_EMPTY_QUE_DMAC_PKTIN | B_AX_WDE_EMPTY_QTA_DMAC_HIF |
159541d56769SChih-Kang Chang 		B_AX_PLE_EMPTY_QUE_DMAC_SEC_TX | B_AX_WDE_EMPTY_QTA_DMAC_PKTIN |
159641d56769SChih-Kang Chang 		B_AX_PLE_EMPTY_QTA_DMAC_B0_TXPL | B_AX_PLE_EMPTY_QTA_DMAC_B1_TXPL |
159741d56769SChih-Kang Chang 		B_AX_PLE_EMPTY_QTA_DMAC_MPDU_TX;
159841d56769SChih-Kang Chang 	val32 = rtw89_read32(rtwdev, R_AX_DLE_EMPTY0);
159941d56769SChih-Kang Chang 
160041d56769SChih-Kang Chang 	return (val32 & msk32) == msk32;
160141d56769SChih-Kang Chang }
160241d56769SChih-Kang Chang 
1603e3ec7017SPing-Ke Shih static inline u32 dle_used_size(const struct rtw89_dle_size *wde,
1604e3ec7017SPing-Ke Shih 				const struct rtw89_dle_size *ple)
1605e3ec7017SPing-Ke Shih {
1606e3ec7017SPing-Ke Shih 	return wde->pge_size * (wde->lnk_pge_num + wde->unlnk_pge_num) +
1607e3ec7017SPing-Ke Shih 	       ple->pge_size * (ple->lnk_pge_num + ple->unlnk_pge_num);
1608e3ec7017SPing-Ke Shih }
1609e3ec7017SPing-Ke Shih 
16105f8c35b9SPing-Ke Shih static u32 dle_expected_used_size(struct rtw89_dev *rtwdev,
16115f8c35b9SPing-Ke Shih 				  enum rtw89_qta_mode mode)
16125f8c35b9SPing-Ke Shih {
16135f8c35b9SPing-Ke Shih 	u32 size = rtwdev->chip->fifo_size;
16145f8c35b9SPing-Ke Shih 
16155f8c35b9SPing-Ke Shih 	if (mode == RTW89_QTA_SCC)
16165f8c35b9SPing-Ke Shih 		size -= rtwdev->chip->dle_scc_rsvd_size;
16175f8c35b9SPing-Ke Shih 
16185f8c35b9SPing-Ke Shih 	return size;
16195f8c35b9SPing-Ke Shih }
16205f8c35b9SPing-Ke Shih 
1621e3ec7017SPing-Ke Shih static void dle_func_en(struct rtw89_dev *rtwdev, bool enable)
1622e3ec7017SPing-Ke Shih {
1623e3ec7017SPing-Ke Shih 	if (enable)
1624e3ec7017SPing-Ke Shih 		rtw89_write32_set(rtwdev, R_AX_DMAC_FUNC_EN,
1625e3ec7017SPing-Ke Shih 				  B_AX_DLE_WDE_EN | B_AX_DLE_PLE_EN);
1626e3ec7017SPing-Ke Shih 	else
1627e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, R_AX_DMAC_FUNC_EN,
1628e3ec7017SPing-Ke Shih 				  B_AX_DLE_WDE_EN | B_AX_DLE_PLE_EN);
1629e3ec7017SPing-Ke Shih }
1630e3ec7017SPing-Ke Shih 
1631e3ec7017SPing-Ke Shih static void dle_clk_en(struct rtw89_dev *rtwdev, bool enable)
1632e3ec7017SPing-Ke Shih {
16335c3afcbaSPing-Ke Shih 	u32 val = B_AX_DLE_WDE_CLK_EN | B_AX_DLE_PLE_CLK_EN;
16345c3afcbaSPing-Ke Shih 
16355c3afcbaSPing-Ke Shih 	if (enable) {
16365c3afcbaSPing-Ke Shih 		if (rtwdev->chip->chip_id == RTL8851B)
16375c3afcbaSPing-Ke Shih 			val |= B_AX_AXIDMA_CLK_EN;
16385c3afcbaSPing-Ke Shih 		rtw89_write32_set(rtwdev, R_AX_DMAC_CLK_EN, val);
16395c3afcbaSPing-Ke Shih 	} else {
16405c3afcbaSPing-Ke Shih 		rtw89_write32_clr(rtwdev, R_AX_DMAC_CLK_EN, val);
16415c3afcbaSPing-Ke Shih 	}
1642e3ec7017SPing-Ke Shih }
1643e3ec7017SPing-Ke Shih 
1644e3ec7017SPing-Ke Shih static int dle_mix_cfg(struct rtw89_dev *rtwdev, const struct rtw89_dle_mem *cfg)
1645e3ec7017SPing-Ke Shih {
1646e3ec7017SPing-Ke Shih 	const struct rtw89_dle_size *size_cfg;
1647e3ec7017SPing-Ke Shih 	u32 val;
1648e3ec7017SPing-Ke Shih 	u8 bound = 0;
1649e3ec7017SPing-Ke Shih 
1650e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_WDE_PKTBUF_CFG);
1651e3ec7017SPing-Ke Shih 	size_cfg = cfg->wde_size;
1652e3ec7017SPing-Ke Shih 
1653e3ec7017SPing-Ke Shih 	switch (size_cfg->pge_size) {
1654e3ec7017SPing-Ke Shih 	default:
1655e3ec7017SPing-Ke Shih 	case RTW89_WDE_PG_64:
1656e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_WDE_PAGE_SEL_64,
1657e3ec7017SPing-Ke Shih 				       B_AX_WDE_PAGE_SEL_MASK);
1658e3ec7017SPing-Ke Shih 		break;
1659e3ec7017SPing-Ke Shih 	case RTW89_WDE_PG_128:
1660e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_WDE_PAGE_SEL_128,
1661e3ec7017SPing-Ke Shih 				       B_AX_WDE_PAGE_SEL_MASK);
1662e3ec7017SPing-Ke Shih 		break;
1663e3ec7017SPing-Ke Shih 	case RTW89_WDE_PG_256:
1664e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]WDE DLE doesn't support 256 byte!\n");
1665e3ec7017SPing-Ke Shih 		return -EINVAL;
1666e3ec7017SPing-Ke Shih 	}
1667e3ec7017SPing-Ke Shih 
1668e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, bound, B_AX_WDE_START_BOUND_MASK);
1669e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, size_cfg->lnk_pge_num,
1670e3ec7017SPing-Ke Shih 			       B_AX_WDE_FREE_PAGE_NUM_MASK);
1671e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_WDE_PKTBUF_CFG, val);
1672e3ec7017SPing-Ke Shih 
1673e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_PLE_PKTBUF_CFG);
1674e3ec7017SPing-Ke Shih 	bound = (size_cfg->lnk_pge_num + size_cfg->unlnk_pge_num)
1675e3ec7017SPing-Ke Shih 				* size_cfg->pge_size / DLE_BOUND_UNIT;
1676e3ec7017SPing-Ke Shih 	size_cfg = cfg->ple_size;
1677e3ec7017SPing-Ke Shih 
1678e3ec7017SPing-Ke Shih 	switch (size_cfg->pge_size) {
1679e3ec7017SPing-Ke Shih 	default:
1680e3ec7017SPing-Ke Shih 	case RTW89_PLE_PG_64:
1681e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]PLE DLE doesn't support 64 byte!\n");
1682e3ec7017SPing-Ke Shih 		return -EINVAL;
1683e3ec7017SPing-Ke Shih 	case RTW89_PLE_PG_128:
1684e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_PLE_PAGE_SEL_128,
1685e3ec7017SPing-Ke Shih 				       B_AX_PLE_PAGE_SEL_MASK);
1686e3ec7017SPing-Ke Shih 		break;
1687e3ec7017SPing-Ke Shih 	case RTW89_PLE_PG_256:
1688e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_PLE_PAGE_SEL_256,
1689e3ec7017SPing-Ke Shih 				       B_AX_PLE_PAGE_SEL_MASK);
1690e3ec7017SPing-Ke Shih 		break;
1691e3ec7017SPing-Ke Shih 	}
1692e3ec7017SPing-Ke Shih 
1693e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, bound, B_AX_PLE_START_BOUND_MASK);
1694e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, size_cfg->lnk_pge_num,
1695e3ec7017SPing-Ke Shih 			       B_AX_PLE_FREE_PAGE_NUM_MASK);
1696e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_PLE_PKTBUF_CFG, val);
1697e3ec7017SPing-Ke Shih 
1698e3ec7017SPing-Ke Shih 	return 0;
1699e3ec7017SPing-Ke Shih }
1700e3ec7017SPing-Ke Shih 
1701e3ec7017SPing-Ke Shih #define INVALID_QT_WCPU U16_MAX
1702e3ec7017SPing-Ke Shih #define SET_QUOTA_VAL(_min_x, _max_x, _module, _idx)			\
1703e3ec7017SPing-Ke Shih 	do {								\
1704525c06c8SPing-Ke Shih 		val = u32_encode_bits(_min_x, B_AX_ ## _module ## _MIN_SIZE_MASK) | \
1705525c06c8SPing-Ke Shih 		      u32_encode_bits(_max_x, B_AX_ ## _module ## _MAX_SIZE_MASK);  \
1706e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev,					\
1707e3ec7017SPing-Ke Shih 			      R_AX_ ## _module ## _QTA ## _idx ## _CFG,	\
1708e3ec7017SPing-Ke Shih 			      val);					\
1709e3ec7017SPing-Ke Shih 	} while (0)
1710e3ec7017SPing-Ke Shih #define SET_QUOTA(_x, _module, _idx)					\
1711e3ec7017SPing-Ke Shih 	SET_QUOTA_VAL(min_cfg->_x, max_cfg->_x, _module, _idx)
1712e3ec7017SPing-Ke Shih 
1713e3ec7017SPing-Ke Shih static void wde_quota_cfg(struct rtw89_dev *rtwdev,
1714e3ec7017SPing-Ke Shih 			  const struct rtw89_wde_quota *min_cfg,
1715e3ec7017SPing-Ke Shih 			  const struct rtw89_wde_quota *max_cfg,
1716e3ec7017SPing-Ke Shih 			  u16 ext_wde_min_qt_wcpu)
1717e3ec7017SPing-Ke Shih {
1718e3ec7017SPing-Ke Shih 	u16 min_qt_wcpu = ext_wde_min_qt_wcpu != INVALID_QT_WCPU ?
1719e3ec7017SPing-Ke Shih 			  ext_wde_min_qt_wcpu : min_cfg->wcpu;
1720e3ec7017SPing-Ke Shih 	u32 val;
1721e3ec7017SPing-Ke Shih 
1722e3ec7017SPing-Ke Shih 	SET_QUOTA(hif, WDE, 0);
1723e3ec7017SPing-Ke Shih 	SET_QUOTA_VAL(min_qt_wcpu, max_cfg->wcpu, WDE, 1);
1724e3ec7017SPing-Ke Shih 	SET_QUOTA(pkt_in, WDE, 3);
1725e3ec7017SPing-Ke Shih 	SET_QUOTA(cpu_io, WDE, 4);
1726e3ec7017SPing-Ke Shih }
1727e3ec7017SPing-Ke Shih 
1728e3ec7017SPing-Ke Shih static void ple_quota_cfg(struct rtw89_dev *rtwdev,
1729e3ec7017SPing-Ke Shih 			  const struct rtw89_ple_quota *min_cfg,
1730e3ec7017SPing-Ke Shih 			  const struct rtw89_ple_quota *max_cfg)
1731e3ec7017SPing-Ke Shih {
1732e3ec7017SPing-Ke Shih 	u32 val;
1733e3ec7017SPing-Ke Shih 
1734e3ec7017SPing-Ke Shih 	SET_QUOTA(cma0_tx, PLE, 0);
1735e3ec7017SPing-Ke Shih 	SET_QUOTA(cma1_tx, PLE, 1);
1736e3ec7017SPing-Ke Shih 	SET_QUOTA(c2h, PLE, 2);
1737e3ec7017SPing-Ke Shih 	SET_QUOTA(h2c, PLE, 3);
1738e3ec7017SPing-Ke Shih 	SET_QUOTA(wcpu, PLE, 4);
1739e3ec7017SPing-Ke Shih 	SET_QUOTA(mpdu_proc, PLE, 5);
1740e3ec7017SPing-Ke Shih 	SET_QUOTA(cma0_dma, PLE, 6);
1741e3ec7017SPing-Ke Shih 	SET_QUOTA(cma1_dma, PLE, 7);
1742e3ec7017SPing-Ke Shih 	SET_QUOTA(bb_rpt, PLE, 8);
1743e3ec7017SPing-Ke Shih 	SET_QUOTA(wd_rel, PLE, 9);
1744e3ec7017SPing-Ke Shih 	SET_QUOTA(cpu_io, PLE, 10);
174579d099e0SPing-Ke Shih 	if (rtwdev->chip->chip_id == RTL8852C)
174679d099e0SPing-Ke Shih 		SET_QUOTA(tx_rpt, PLE, 11);
1747e3ec7017SPing-Ke Shih }
1748e3ec7017SPing-Ke Shih 
17497a68ec3dSChih-Kang Chang int rtw89_mac_resize_ple_rx_quota(struct rtw89_dev *rtwdev, bool wow)
17507a68ec3dSChih-Kang Chang {
17517a68ec3dSChih-Kang Chang 	const struct rtw89_ple_quota *min_cfg, *max_cfg;
17527a68ec3dSChih-Kang Chang 	const struct rtw89_dle_mem *cfg;
17537a68ec3dSChih-Kang Chang 	u32 val;
17547a68ec3dSChih-Kang Chang 
17557a68ec3dSChih-Kang Chang 	if (rtwdev->chip->chip_id == RTL8852C)
17567a68ec3dSChih-Kang Chang 		return 0;
17577a68ec3dSChih-Kang Chang 
17587a68ec3dSChih-Kang Chang 	if (rtwdev->mac.qta_mode != RTW89_QTA_SCC) {
17597a68ec3dSChih-Kang Chang 		rtw89_err(rtwdev, "[ERR]support SCC mode only\n");
17607a68ec3dSChih-Kang Chang 		return -EINVAL;
17617a68ec3dSChih-Kang Chang 	}
17627a68ec3dSChih-Kang Chang 
17637a68ec3dSChih-Kang Chang 	if (wow)
17647a68ec3dSChih-Kang Chang 		cfg = get_dle_mem_cfg(rtwdev, RTW89_QTA_WOW);
17657a68ec3dSChih-Kang Chang 	else
17667a68ec3dSChih-Kang Chang 		cfg = get_dle_mem_cfg(rtwdev, RTW89_QTA_SCC);
17677a68ec3dSChih-Kang Chang 	if (!cfg) {
17687a68ec3dSChih-Kang Chang 		rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n");
17697a68ec3dSChih-Kang Chang 		return -EINVAL;
17707a68ec3dSChih-Kang Chang 	}
17717a68ec3dSChih-Kang Chang 
17727a68ec3dSChih-Kang Chang 	min_cfg = cfg->ple_min_qt;
17737a68ec3dSChih-Kang Chang 	max_cfg = cfg->ple_max_qt;
17747a68ec3dSChih-Kang Chang 	SET_QUOTA(cma0_dma, PLE, 6);
17757a68ec3dSChih-Kang Chang 	SET_QUOTA(cma1_dma, PLE, 7);
17767a68ec3dSChih-Kang Chang 
17777a68ec3dSChih-Kang Chang 	return 0;
17787a68ec3dSChih-Kang Chang }
1779e3ec7017SPing-Ke Shih #undef SET_QUOTA
1780e3ec7017SPing-Ke Shih 
178119e28c7fSChin-Yen Lee void rtw89_mac_hw_mgnt_sec(struct rtw89_dev *rtwdev, bool enable)
178219e28c7fSChin-Yen Lee {
178319e28c7fSChin-Yen Lee 	u32 msk32 = B_AX_UC_MGNT_DEC | B_AX_BMC_MGNT_DEC;
178419e28c7fSChin-Yen Lee 
178519e28c7fSChin-Yen Lee 	if (enable)
178619e28c7fSChin-Yen Lee 		rtw89_write32_set(rtwdev, R_AX_SEC_ENG_CTRL, msk32);
178719e28c7fSChin-Yen Lee 	else
178819e28c7fSChin-Yen Lee 		rtw89_write32_clr(rtwdev, R_AX_SEC_ENG_CTRL, msk32);
178919e28c7fSChin-Yen Lee }
179019e28c7fSChin-Yen Lee 
1791e3ec7017SPing-Ke Shih static void dle_quota_cfg(struct rtw89_dev *rtwdev,
1792e3ec7017SPing-Ke Shih 			  const struct rtw89_dle_mem *cfg,
1793e3ec7017SPing-Ke Shih 			  u16 ext_wde_min_qt_wcpu)
1794e3ec7017SPing-Ke Shih {
1795e3ec7017SPing-Ke Shih 	wde_quota_cfg(rtwdev, cfg->wde_min_qt, cfg->wde_max_qt, ext_wde_min_qt_wcpu);
1796e3ec7017SPing-Ke Shih 	ple_quota_cfg(rtwdev, cfg->ple_min_qt, cfg->ple_max_qt);
1797e3ec7017SPing-Ke Shih }
1798e3ec7017SPing-Ke Shih 
1799e3ec7017SPing-Ke Shih static int dle_init(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode,
1800e3ec7017SPing-Ke Shih 		    enum rtw89_qta_mode ext_mode)
1801e3ec7017SPing-Ke Shih {
1802e3ec7017SPing-Ke Shih 	const struct rtw89_dle_mem *cfg, *ext_cfg;
1803e3ec7017SPing-Ke Shih 	u16 ext_wde_min_qt_wcpu = INVALID_QT_WCPU;
1804e3ec7017SPing-Ke Shih 	int ret = 0;
1805e3ec7017SPing-Ke Shih 	u32 ini;
1806e3ec7017SPing-Ke Shih 
1807e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
1808e3ec7017SPing-Ke Shih 	if (ret)
1809e3ec7017SPing-Ke Shih 		return ret;
1810e3ec7017SPing-Ke Shih 
1811e3ec7017SPing-Ke Shih 	cfg = get_dle_mem_cfg(rtwdev, mode);
1812e3ec7017SPing-Ke Shih 	if (!cfg) {
1813e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n");
1814e3ec7017SPing-Ke Shih 		ret = -EINVAL;
1815e3ec7017SPing-Ke Shih 		goto error;
1816e3ec7017SPing-Ke Shih 	}
1817e3ec7017SPing-Ke Shih 
1818e3ec7017SPing-Ke Shih 	if (mode == RTW89_QTA_DLFW) {
1819e3ec7017SPing-Ke Shih 		ext_cfg = get_dle_mem_cfg(rtwdev, ext_mode);
1820e3ec7017SPing-Ke Shih 		if (!ext_cfg) {
1821e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev, "[ERR]get_dle_ext_mem_cfg %d\n",
1822e3ec7017SPing-Ke Shih 				  ext_mode);
1823e3ec7017SPing-Ke Shih 			ret = -EINVAL;
1824e3ec7017SPing-Ke Shih 			goto error;
1825e3ec7017SPing-Ke Shih 		}
1826e3ec7017SPing-Ke Shih 		ext_wde_min_qt_wcpu = ext_cfg->wde_min_qt->wcpu;
1827e3ec7017SPing-Ke Shih 	}
1828e3ec7017SPing-Ke Shih 
18295f8c35b9SPing-Ke Shih 	if (dle_used_size(cfg->wde_size, cfg->ple_size) !=
18305f8c35b9SPing-Ke Shih 	    dle_expected_used_size(rtwdev, mode)) {
1831e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n");
1832e3ec7017SPing-Ke Shih 		ret = -EINVAL;
1833e3ec7017SPing-Ke Shih 		goto error;
1834e3ec7017SPing-Ke Shih 	}
1835e3ec7017SPing-Ke Shih 
1836e3ec7017SPing-Ke Shih 	dle_func_en(rtwdev, false);
1837e3ec7017SPing-Ke Shih 	dle_clk_en(rtwdev, true);
1838e3ec7017SPing-Ke Shih 
1839e3ec7017SPing-Ke Shih 	ret = dle_mix_cfg(rtwdev, cfg);
1840e3ec7017SPing-Ke Shih 	if (ret) {
1841e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR] dle mix cfg\n");
1842e3ec7017SPing-Ke Shih 		goto error;
1843e3ec7017SPing-Ke Shih 	}
1844e3ec7017SPing-Ke Shih 	dle_quota_cfg(rtwdev, cfg, ext_wde_min_qt_wcpu);
1845e3ec7017SPing-Ke Shih 
1846e3ec7017SPing-Ke Shih 	dle_func_en(rtwdev, true);
1847e3ec7017SPing-Ke Shih 
1848e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, ini,
1849e3ec7017SPing-Ke Shih 				(ini & WDE_MGN_INI_RDY) == WDE_MGN_INI_RDY, 1,
1850e3ec7017SPing-Ke Shih 				2000, false, rtwdev, R_AX_WDE_INI_STATUS);
1851e3ec7017SPing-Ke Shih 	if (ret) {
1852e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]WDE cfg ready\n");
1853e3ec7017SPing-Ke Shih 		return ret;
1854e3ec7017SPing-Ke Shih 	}
1855e3ec7017SPing-Ke Shih 
1856e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, ini,
1857e3ec7017SPing-Ke Shih 				(ini & WDE_MGN_INI_RDY) == WDE_MGN_INI_RDY, 1,
1858e3ec7017SPing-Ke Shih 				2000, false, rtwdev, R_AX_PLE_INI_STATUS);
1859e3ec7017SPing-Ke Shih 	if (ret) {
1860e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]PLE cfg ready\n");
1861e3ec7017SPing-Ke Shih 		return ret;
1862e3ec7017SPing-Ke Shih 	}
1863e3ec7017SPing-Ke Shih 
1864e3ec7017SPing-Ke Shih 	return 0;
1865e3ec7017SPing-Ke Shih error:
1866e3ec7017SPing-Ke Shih 	dle_func_en(rtwdev, false);
1867e3ec7017SPing-Ke Shih 	rtw89_err(rtwdev, "[ERR]trxcfg wde 0x8900 = %x\n",
1868e3ec7017SPing-Ke Shih 		  rtw89_read32(rtwdev, R_AX_WDE_INI_STATUS));
1869e3ec7017SPing-Ke Shih 	rtw89_err(rtwdev, "[ERR]trxcfg ple 0x8D00 = %x\n",
1870e3ec7017SPing-Ke Shih 		  rtw89_read32(rtwdev, R_AX_PLE_INI_STATUS));
1871e3ec7017SPing-Ke Shih 
1872e3ec7017SPing-Ke Shih 	return ret;
1873e3ec7017SPing-Ke Shih }
1874e3ec7017SPing-Ke Shih 
1875e07a9968SPing-Ke Shih static int preload_init_set(struct rtw89_dev *rtwdev, enum rtw89_mac_idx mac_idx,
1876e07a9968SPing-Ke Shih 			    enum rtw89_qta_mode mode)
1877e07a9968SPing-Ke Shih {
1878e07a9968SPing-Ke Shih 	u32 reg, max_preld_size, min_rsvd_size;
1879e07a9968SPing-Ke Shih 
1880e07a9968SPing-Ke Shih 	max_preld_size = (mac_idx == RTW89_MAC_0 ?
1881e07a9968SPing-Ke Shih 			  PRELD_B0_ENT_NUM : PRELD_B1_ENT_NUM) * PRELD_AMSDU_SIZE;
1882e07a9968SPing-Ke Shih 	reg = mac_idx == RTW89_MAC_0 ?
1883e07a9968SPing-Ke Shih 	      R_AX_TXPKTCTL_B0_PRELD_CFG0 : R_AX_TXPKTCTL_B1_PRELD_CFG0;
1884e07a9968SPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_USEMAXSZ_MASK, max_preld_size);
1885e07a9968SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_B0_PRELD_FEN);
1886e07a9968SPing-Ke Shih 
1887e07a9968SPing-Ke Shih 	min_rsvd_size = PRELD_AMSDU_SIZE;
1888e07a9968SPing-Ke Shih 	reg = mac_idx == RTW89_MAC_0 ?
1889e07a9968SPing-Ke Shih 	      R_AX_TXPKTCTL_B0_PRELD_CFG1 : R_AX_TXPKTCTL_B1_PRELD_CFG1;
1890e07a9968SPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_NXT_TXENDWIN_MASK, PRELD_NEXT_WND);
1891e07a9968SPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_NXT_RSVMINSZ_MASK, min_rsvd_size);
1892e07a9968SPing-Ke Shih 
1893e07a9968SPing-Ke Shih 	return 0;
1894e07a9968SPing-Ke Shih }
1895e07a9968SPing-Ke Shih 
1896e07a9968SPing-Ke Shih static bool is_qta_poh(struct rtw89_dev *rtwdev)
1897e07a9968SPing-Ke Shih {
1898e07a9968SPing-Ke Shih 	return rtwdev->hci.type == RTW89_HCI_TYPE_PCIE;
1899e07a9968SPing-Ke Shih }
1900e07a9968SPing-Ke Shih 
1901e07a9968SPing-Ke Shih static int preload_init(struct rtw89_dev *rtwdev, enum rtw89_mac_idx mac_idx,
1902e07a9968SPing-Ke Shih 			enum rtw89_qta_mode mode)
1903e07a9968SPing-Ke Shih {
1904e07a9968SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
1905e07a9968SPing-Ke Shih 
19065c3afcbaSPing-Ke Shih 	if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B ||
19075c3afcbaSPing-Ke Shih 	    chip->chip_id == RTL8851B || !is_qta_poh(rtwdev))
1908e07a9968SPing-Ke Shih 		return 0;
1909e07a9968SPing-Ke Shih 
1910e07a9968SPing-Ke Shih 	return preload_init_set(rtwdev, mac_idx, mode);
1911e07a9968SPing-Ke Shih }
1912e07a9968SPing-Ke Shih 
1913e3ec7017SPing-Ke Shih static bool dle_is_txq_empty(struct rtw89_dev *rtwdev)
1914e3ec7017SPing-Ke Shih {
1915e3ec7017SPing-Ke Shih 	u32 msk32;
1916e3ec7017SPing-Ke Shih 	u32 val32;
1917e3ec7017SPing-Ke Shih 
1918e3ec7017SPing-Ke Shih 	msk32 = B_AX_WDE_EMPTY_QUE_CMAC0_ALL_AC | B_AX_WDE_EMPTY_QUE_CMAC0_MBH |
1919e3ec7017SPing-Ke Shih 		B_AX_WDE_EMPTY_QUE_CMAC1_MBH | B_AX_WDE_EMPTY_QUE_CMAC0_WMM0 |
1920e3ec7017SPing-Ke Shih 		B_AX_WDE_EMPTY_QUE_CMAC0_WMM1 | B_AX_WDE_EMPTY_QUE_OTHERS |
1921e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QUE_DMAC_MPDU_TX | B_AX_PLE_EMPTY_QTA_DMAC_H2C |
1922e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QUE_DMAC_SEC_TX | B_AX_WDE_EMPTY_QUE_DMAC_PKTIN |
1923e3ec7017SPing-Ke Shih 		B_AX_WDE_EMPTY_QTA_DMAC_HIF | B_AX_WDE_EMPTY_QTA_DMAC_WLAN_CPU |
1924e3ec7017SPing-Ke Shih 		B_AX_WDE_EMPTY_QTA_DMAC_PKTIN | B_AX_WDE_EMPTY_QTA_DMAC_CPUIO |
1925e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QTA_DMAC_B0_TXPL |
1926e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QTA_DMAC_B1_TXPL |
1927e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QTA_DMAC_MPDU_TX |
1928e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QTA_DMAC_CPUIO |
1929e3ec7017SPing-Ke Shih 		B_AX_WDE_EMPTY_QTA_DMAC_DATA_CPU |
1930e3ec7017SPing-Ke Shih 		B_AX_PLE_EMPTY_QTA_DMAC_WLAN_CPU;
1931e3ec7017SPing-Ke Shih 	val32 = rtw89_read32(rtwdev, R_AX_DLE_EMPTY0);
1932e3ec7017SPing-Ke Shih 
1933e3ec7017SPing-Ke Shih 	if ((val32 & msk32) == msk32)
1934e3ec7017SPing-Ke Shih 		return true;
1935e3ec7017SPing-Ke Shih 
1936e3ec7017SPing-Ke Shih 	return false;
1937e3ec7017SPing-Ke Shih }
1938e3ec7017SPing-Ke Shih 
1939cf7b8b80SPing-Ke Shih static void _patch_ss2f_path(struct rtw89_dev *rtwdev)
1940cf7b8b80SPing-Ke Shih {
1941cf7b8b80SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
1942cf7b8b80SPing-Ke Shih 
19435c3afcbaSPing-Ke Shih 	if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B ||
19445c3afcbaSPing-Ke Shih 	    chip->chip_id == RTL8851B)
1945cf7b8b80SPing-Ke Shih 		return;
1946cf7b8b80SPing-Ke Shih 
1947cf7b8b80SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_SS2FINFO_PATH, B_AX_SS_DEST_QUEUE_MASK,
1948cf7b8b80SPing-Ke Shih 			   SS2F_PATH_WLCPU);
1949cf7b8b80SPing-Ke Shih }
1950cf7b8b80SPing-Ke Shih 
1951e3ec7017SPing-Ke Shih static int sta_sch_init(struct rtw89_dev *rtwdev)
1952e3ec7017SPing-Ke Shih {
1953e3ec7017SPing-Ke Shih 	u32 p_val;
1954e3ec7017SPing-Ke Shih 	u8 val;
1955e3ec7017SPing-Ke Shih 	int ret;
1956e3ec7017SPing-Ke Shih 
1957e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
1958e3ec7017SPing-Ke Shih 	if (ret)
1959e3ec7017SPing-Ke Shih 		return ret;
1960e3ec7017SPing-Ke Shih 
1961e3ec7017SPing-Ke Shih 	val = rtw89_read8(rtwdev, R_AX_SS_CTRL);
1962e3ec7017SPing-Ke Shih 	val |= B_AX_SS_EN;
1963e3ec7017SPing-Ke Shih 	rtw89_write8(rtwdev, R_AX_SS_CTRL, val);
1964e3ec7017SPing-Ke Shih 
1965e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, p_val, p_val & B_AX_SS_INIT_DONE_1,
1966e3ec7017SPing-Ke Shih 				1, TRXCFG_WAIT_CNT, false, rtwdev, R_AX_SS_CTRL);
1967e3ec7017SPing-Ke Shih 	if (ret) {
1968e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]STA scheduler init\n");
1969e3ec7017SPing-Ke Shih 		return ret;
1970e3ec7017SPing-Ke Shih 	}
1971e3ec7017SPing-Ke Shih 
19729a1ab283SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_SS_CTRL, B_AX_SS_WARM_INIT_FLG);
19739a1ab283SPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_SS_CTRL, B_AX_SS_NONEMPTY_SS2FINFO_EN);
1974cf7b8b80SPing-Ke Shih 
1975cf7b8b80SPing-Ke Shih 	_patch_ss2f_path(rtwdev);
1976e3ec7017SPing-Ke Shih 
1977e3ec7017SPing-Ke Shih 	return 0;
1978e3ec7017SPing-Ke Shih }
1979e3ec7017SPing-Ke Shih 
1980e3ec7017SPing-Ke Shih static int mpdu_proc_init(struct rtw89_dev *rtwdev)
1981e3ec7017SPing-Ke Shih {
1982e3ec7017SPing-Ke Shih 	int ret;
1983e3ec7017SPing-Ke Shih 
1984e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
1985e3ec7017SPing-Ke Shih 	if (ret)
1986e3ec7017SPing-Ke Shih 		return ret;
1987e3ec7017SPing-Ke Shih 
1988e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_ACTION_FWD0, TRXCFG_MPDU_PROC_ACT_FRWD);
1989e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_TF_FWD, TRXCFG_MPDU_PROC_TF_FRWD);
1990e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_MPDU_PROC,
1991e3ec7017SPing-Ke Shih 			  B_AX_APPEND_FCS | B_AX_A_ICV_ERR);
1992e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_CUT_AMSDU_CTRL, TRXCFG_MPDU_PROC_CUT_CTRL);
1993e3ec7017SPing-Ke Shih 
1994e3ec7017SPing-Ke Shih 	return 0;
1995e3ec7017SPing-Ke Shih }
1996e3ec7017SPing-Ke Shih 
1997e3ec7017SPing-Ke Shih static int sec_eng_init(struct rtw89_dev *rtwdev)
1998e3ec7017SPing-Ke Shih {
1999b61adeedSPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
2000e3ec7017SPing-Ke Shih 	u32 val = 0;
2001e3ec7017SPing-Ke Shih 	int ret;
2002e3ec7017SPing-Ke Shih 
2003e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
2004e3ec7017SPing-Ke Shih 	if (ret)
2005e3ec7017SPing-Ke Shih 		return ret;
2006e3ec7017SPing-Ke Shih 
2007e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_SEC_ENG_CTRL);
2008e3ec7017SPing-Ke Shih 	/* init clock */
2009e3ec7017SPing-Ke Shih 	val |= (B_AX_CLK_EN_CGCMP | B_AX_CLK_EN_WAPI | B_AX_CLK_EN_WEP_TKIP);
2010e3ec7017SPing-Ke Shih 	/* init TX encryption */
2011e3ec7017SPing-Ke Shih 	val |= (B_AX_SEC_TX_ENC | B_AX_SEC_RX_DEC);
2012e3ec7017SPing-Ke Shih 	val |= (B_AX_MC_DEC | B_AX_BC_DEC);
20135c3afcbaSPing-Ke Shih 	if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B ||
20145c3afcbaSPing-Ke Shih 	    chip->chip_id == RTL8851B)
2015e3ec7017SPing-Ke Shih 		val &= ~B_AX_TX_PARTIAL_MODE;
2016e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_SEC_ENG_CTRL, val);
2017e3ec7017SPing-Ke Shih 
2018e3ec7017SPing-Ke Shih 	/* init MIC ICV append */
2019e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_SEC_MPDU_PROC);
2020e3ec7017SPing-Ke Shih 	val |= (B_AX_APPEND_ICV | B_AX_APPEND_MIC);
2021e3ec7017SPing-Ke Shih 
2022e3ec7017SPing-Ke Shih 	/* option init */
2023e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_SEC_MPDU_PROC, val);
2024e3ec7017SPing-Ke Shih 
2025b61adeedSPing-Ke Shih 	if (chip->chip_id == RTL8852C)
2026b61adeedSPing-Ke Shih 		rtw89_write32_mask(rtwdev, R_AX_SEC_DEBUG1,
2027b61adeedSPing-Ke Shih 				   B_AX_TX_TIMEOUT_SEL_MASK, AX_TX_TO_VAL);
2028b61adeedSPing-Ke Shih 
2029e3ec7017SPing-Ke Shih 	return 0;
2030e3ec7017SPing-Ke Shih }
2031e3ec7017SPing-Ke Shih 
2032e3ec7017SPing-Ke Shih static int dmac_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2033e3ec7017SPing-Ke Shih {
2034e3ec7017SPing-Ke Shih 	int ret;
2035e3ec7017SPing-Ke Shih 
2036e3ec7017SPing-Ke Shih 	ret = dle_init(rtwdev, rtwdev->mac.qta_mode, RTW89_QTA_INVALID);
2037e3ec7017SPing-Ke Shih 	if (ret) {
2038e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]DLE init %d\n", ret);
2039e3ec7017SPing-Ke Shih 		return ret;
2040e3ec7017SPing-Ke Shih 	}
2041e3ec7017SPing-Ke Shih 
2042e07a9968SPing-Ke Shih 	ret = preload_init(rtwdev, RTW89_MAC_0, rtwdev->mac.qta_mode);
2043e07a9968SPing-Ke Shih 	if (ret) {
2044e07a9968SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]preload init %d\n", ret);
2045e07a9968SPing-Ke Shih 		return ret;
2046e07a9968SPing-Ke Shih 	}
2047e07a9968SPing-Ke Shih 
2048e3ec7017SPing-Ke Shih 	ret = hfc_init(rtwdev, true, true, true);
2049e3ec7017SPing-Ke Shih 	if (ret) {
2050e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]HCI FC init %d\n", ret);
2051e3ec7017SPing-Ke Shih 		return ret;
2052e3ec7017SPing-Ke Shih 	}
2053e3ec7017SPing-Ke Shih 
2054e3ec7017SPing-Ke Shih 	ret = sta_sch_init(rtwdev);
2055e3ec7017SPing-Ke Shih 	if (ret) {
2056e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]STA SCH init %d\n", ret);
2057e3ec7017SPing-Ke Shih 		return ret;
2058e3ec7017SPing-Ke Shih 	}
2059e3ec7017SPing-Ke Shih 
2060e3ec7017SPing-Ke Shih 	ret = mpdu_proc_init(rtwdev);
2061e3ec7017SPing-Ke Shih 	if (ret) {
2062e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]MPDU Proc init %d\n", ret);
2063e3ec7017SPing-Ke Shih 		return ret;
2064e3ec7017SPing-Ke Shih 	}
2065e3ec7017SPing-Ke Shih 
2066e3ec7017SPing-Ke Shih 	ret = sec_eng_init(rtwdev);
2067e3ec7017SPing-Ke Shih 	if (ret) {
2068e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]Security Engine init %d\n", ret);
2069e3ec7017SPing-Ke Shih 		return ret;
2070e3ec7017SPing-Ke Shih 	}
2071e3ec7017SPing-Ke Shih 
2072e3ec7017SPing-Ke Shih 	return ret;
2073e3ec7017SPing-Ke Shih }
2074e3ec7017SPing-Ke Shih 
2075e3ec7017SPing-Ke Shih static int addr_cam_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2076e3ec7017SPing-Ke Shih {
2077e3ec7017SPing-Ke Shih 	u32 val, reg;
2078e3ec7017SPing-Ke Shih 	u16 p_val;
2079e3ec7017SPing-Ke Shih 	int ret;
2080e3ec7017SPing-Ke Shih 
2081e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2082e3ec7017SPing-Ke Shih 	if (ret)
2083e3ec7017SPing-Ke Shih 		return ret;
2084e3ec7017SPing-Ke Shih 
2085e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_ADDR_CAM_CTRL, mac_idx);
2086e3ec7017SPing-Ke Shih 
2087e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
2088e3ec7017SPing-Ke Shih 	val |= u32_encode_bits(0x7f, B_AX_ADDR_CAM_RANGE_MASK) |
2089e3ec7017SPing-Ke Shih 	       B_AX_ADDR_CAM_CLR | B_AX_ADDR_CAM_EN;
2090e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2091e3ec7017SPing-Ke Shih 
2092e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read16, p_val, !(p_val & B_AX_ADDR_CAM_CLR),
2093ad275d0aSPing-Ke Shih 				1, TRXCFG_WAIT_CNT, false, rtwdev, reg);
2094e3ec7017SPing-Ke Shih 	if (ret) {
2095e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]ADDR_CAM reset\n");
2096e3ec7017SPing-Ke Shih 		return ret;
2097e3ec7017SPing-Ke Shih 	}
2098e3ec7017SPing-Ke Shih 
2099e3ec7017SPing-Ke Shih 	return 0;
2100e3ec7017SPing-Ke Shih }
2101e3ec7017SPing-Ke Shih 
2102e3ec7017SPing-Ke Shih static int scheduler_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2103e3ec7017SPing-Ke Shih {
2104e3ec7017SPing-Ke Shih 	u32 ret;
2105e3ec7017SPing-Ke Shih 	u32 reg;
210660b2ede9SChia-Yuan Li 	u32 val;
2107e3ec7017SPing-Ke Shih 
2108e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2109e3ec7017SPing-Ke Shih 	if (ret)
2110e3ec7017SPing-Ke Shih 		return ret;
2111e3ec7017SPing-Ke Shih 
2112c49154ffSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_PREBKF_CFG_1, mac_idx);
2113ee546904SChia-Yuan Li 	if (rtwdev->chip->chip_id == RTL8852C)
2114ee546904SChia-Yuan Li 		rtw89_write32_mask(rtwdev, reg, B_AX_SIFS_MACTXEN_T1_MASK,
2115ee546904SChia-Yuan Li 				   SIFS_MACTXEN_T1_V1);
2116ee546904SChia-Yuan Li 	else
2117ee546904SChia-Yuan Li 		rtw89_write32_mask(rtwdev, reg, B_AX_SIFS_MACTXEN_T1_MASK,
2118ee546904SChia-Yuan Li 				   SIFS_MACTXEN_T1);
2119c49154ffSPing-Ke Shih 
21205c3afcbaSPing-Ke Shih 	if (rtwdev->chip->chip_id == RTL8852B || rtwdev->chip->chip_id == RTL8851B) {
2121c49154ffSPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_SCH_EXT_CTRL, mac_idx);
2122c49154ffSPing-Ke Shih 		rtw89_write32_set(rtwdev, reg, B_AX_PORT_RST_TSF_ADV);
2123c49154ffSPing-Ke Shih 	}
2124c49154ffSPing-Ke Shih 
2125c49154ffSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_CCA_CFG_0, mac_idx);
2126c49154ffSPing-Ke Shih 	rtw89_write32_clr(rtwdev, reg, B_AX_BTCCA_EN);
2127c49154ffSPing-Ke Shih 
2128e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_PREBKF_CFG_0, mac_idx);
212960b2ede9SChia-Yuan Li 	if (rtwdev->chip->chip_id == RTL8852C) {
213060b2ede9SChia-Yuan Li 		val = rtw89_read32_mask(rtwdev, R_AX_SEC_ENG_CTRL,
213160b2ede9SChia-Yuan Li 					B_AX_TX_PARTIAL_MODE);
213260b2ede9SChia-Yuan Li 		if (!val)
213360b2ede9SChia-Yuan Li 			rtw89_write32_mask(rtwdev, reg, B_AX_PREBKF_TIME_MASK,
213460b2ede9SChia-Yuan Li 					   SCH_PREBKF_24US);
213560b2ede9SChia-Yuan Li 	} else {
213660b2ede9SChia-Yuan Li 		rtw89_write32_mask(rtwdev, reg, B_AX_PREBKF_TIME_MASK,
213760b2ede9SChia-Yuan Li 				   SCH_PREBKF_24US);
213860b2ede9SChia-Yuan Li 	}
2139e3ec7017SPing-Ke Shih 
2140e3ec7017SPing-Ke Shih 	return 0;
2141e3ec7017SPing-Ke Shih }
2142e3ec7017SPing-Ke Shih 
214319e28c7fSChin-Yen Lee int rtw89_mac_typ_fltr_opt(struct rtw89_dev *rtwdev,
2144e3ec7017SPing-Ke Shih 			   enum rtw89_machdr_frame_type type,
2145e3ec7017SPing-Ke Shih 			   enum rtw89_mac_fwd_target fwd_target,
2146e3ec7017SPing-Ke Shih 			   u8 mac_idx)
2147e3ec7017SPing-Ke Shih {
2148e3ec7017SPing-Ke Shih 	u32 reg;
2149e3ec7017SPing-Ke Shih 	u32 val;
2150e3ec7017SPing-Ke Shih 
2151e3ec7017SPing-Ke Shih 	switch (fwd_target) {
2152e3ec7017SPing-Ke Shih 	case RTW89_FWD_DONT_CARE:
2153e3ec7017SPing-Ke Shih 		val = RX_FLTR_FRAME_DROP;
2154e3ec7017SPing-Ke Shih 		break;
2155e3ec7017SPing-Ke Shih 	case RTW89_FWD_TO_HOST:
2156e3ec7017SPing-Ke Shih 		val = RX_FLTR_FRAME_TO_HOST;
2157e3ec7017SPing-Ke Shih 		break;
2158e3ec7017SPing-Ke Shih 	case RTW89_FWD_TO_WLAN_CPU:
2159e3ec7017SPing-Ke Shih 		val = RX_FLTR_FRAME_TO_WLCPU;
2160e3ec7017SPing-Ke Shih 		break;
2161e3ec7017SPing-Ke Shih 	default:
2162e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]set rx filter fwd target err\n");
2163e3ec7017SPing-Ke Shih 		return -EINVAL;
2164e3ec7017SPing-Ke Shih 	}
2165e3ec7017SPing-Ke Shih 
2166e3ec7017SPing-Ke Shih 	switch (type) {
2167e3ec7017SPing-Ke Shih 	case RTW89_MGNT:
2168e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_MGNT_FLTR, mac_idx);
2169e3ec7017SPing-Ke Shih 		break;
2170e3ec7017SPing-Ke Shih 	case RTW89_CTRL:
2171e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_CTRL_FLTR, mac_idx);
2172e3ec7017SPing-Ke Shih 		break;
2173e3ec7017SPing-Ke Shih 	case RTW89_DATA:
2174e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_DATA_FLTR, mac_idx);
2175e3ec7017SPing-Ke Shih 		break;
2176e3ec7017SPing-Ke Shih 	default:
2177e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]set rx filter type err\n");
2178e3ec7017SPing-Ke Shih 		return -EINVAL;
2179e3ec7017SPing-Ke Shih 	}
2180e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2181e3ec7017SPing-Ke Shih 
2182e3ec7017SPing-Ke Shih 	return 0;
2183e3ec7017SPing-Ke Shih }
2184e3ec7017SPing-Ke Shih 
2185e3ec7017SPing-Ke Shih static int rx_fltr_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2186e3ec7017SPing-Ke Shih {
2187e3ec7017SPing-Ke Shih 	int ret, i;
2188e3ec7017SPing-Ke Shih 	u32 mac_ftlr, plcp_ftlr;
2189e3ec7017SPing-Ke Shih 
2190e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2191e3ec7017SPing-Ke Shih 	if (ret)
2192e3ec7017SPing-Ke Shih 		return ret;
2193e3ec7017SPing-Ke Shih 
2194e3ec7017SPing-Ke Shih 	for (i = RTW89_MGNT; i <= RTW89_DATA; i++) {
2195e3ec7017SPing-Ke Shih 		ret = rtw89_mac_typ_fltr_opt(rtwdev, i, RTW89_FWD_TO_HOST,
2196e3ec7017SPing-Ke Shih 					     mac_idx);
2197e3ec7017SPing-Ke Shih 		if (ret)
2198e3ec7017SPing-Ke Shih 			return ret;
2199e3ec7017SPing-Ke Shih 	}
2200e3ec7017SPing-Ke Shih 	mac_ftlr = rtwdev->hal.rx_fltr;
2201e3ec7017SPing-Ke Shih 	plcp_ftlr = B_AX_CCK_CRC_CHK | B_AX_CCK_SIG_CHK |
2202e3ec7017SPing-Ke Shih 		    B_AX_LSIG_PARITY_CHK_EN | B_AX_SIGA_CRC_CHK |
2203e3ec7017SPing-Ke Shih 		    B_AX_VHT_SU_SIGB_CRC_CHK | B_AX_VHT_MU_SIGB_CRC_CHK |
2204e3ec7017SPing-Ke Shih 		    B_AX_HE_SIGB_CRC_CHK;
2205e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_RX_FLTR_OPT, mac_idx),
2206e3ec7017SPing-Ke Shih 		      mac_ftlr);
2207e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, rtw89_mac_reg_by_idx(R_AX_PLCP_HDR_FLTR, mac_idx),
2208e3ec7017SPing-Ke Shih 		      plcp_ftlr);
2209e3ec7017SPing-Ke Shih 
2210e3ec7017SPing-Ke Shih 	return 0;
2211e3ec7017SPing-Ke Shih }
2212e3ec7017SPing-Ke Shih 
2213e3ec7017SPing-Ke Shih static void _patch_dis_resp_chk(struct rtw89_dev *rtwdev, u8 mac_idx)
2214e3ec7017SPing-Ke Shih {
2215e3ec7017SPing-Ke Shih 	u32 reg, val32;
2216e3ec7017SPing-Ke Shih 	u32 b_rsp_chk_nav, b_rsp_chk_cca;
2217e3ec7017SPing-Ke Shih 
2218e3ec7017SPing-Ke Shih 	b_rsp_chk_nav = B_AX_RSP_CHK_TXNAV | B_AX_RSP_CHK_INTRA_NAV |
2219e3ec7017SPing-Ke Shih 			B_AX_RSP_CHK_BASIC_NAV;
2220e3ec7017SPing-Ke Shih 	b_rsp_chk_cca = B_AX_RSP_CHK_SEC_CCA_80 | B_AX_RSP_CHK_SEC_CCA_40 |
2221e3ec7017SPing-Ke Shih 			B_AX_RSP_CHK_SEC_CCA_20 | B_AX_RSP_CHK_BTCCA |
2222e3ec7017SPing-Ke Shih 			B_AX_RSP_CHK_EDCCA | B_AX_RSP_CHK_CCA;
2223e3ec7017SPing-Ke Shih 
2224e3ec7017SPing-Ke Shih 	switch (rtwdev->chip->chip_id) {
2225e3ec7017SPing-Ke Shih 	case RTL8852A:
2226e3ec7017SPing-Ke Shih 	case RTL8852B:
2227e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_RSP_CHK_SIG, mac_idx);
2228e3ec7017SPing-Ke Shih 		val32 = rtw89_read32(rtwdev, reg) & ~b_rsp_chk_nav;
2229e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val32);
2230e3ec7017SPing-Ke Shih 
2231e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx);
2232e3ec7017SPing-Ke Shih 		val32 = rtw89_read32(rtwdev, reg) & ~b_rsp_chk_cca;
2233e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val32);
2234e3ec7017SPing-Ke Shih 		break;
2235e3ec7017SPing-Ke Shih 	default:
2236e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_RSP_CHK_SIG, mac_idx);
2237e3ec7017SPing-Ke Shih 		val32 = rtw89_read32(rtwdev, reg) | b_rsp_chk_nav;
2238e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val32);
2239e3ec7017SPing-Ke Shih 
2240e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx);
2241e3ec7017SPing-Ke Shih 		val32 = rtw89_read32(rtwdev, reg) | b_rsp_chk_cca;
2242e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val32);
2243e3ec7017SPing-Ke Shih 		break;
2244e3ec7017SPing-Ke Shih 	}
2245e3ec7017SPing-Ke Shih }
2246e3ec7017SPing-Ke Shih 
2247e3ec7017SPing-Ke Shih static int cca_ctrl_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2248e3ec7017SPing-Ke Shih {
2249e3ec7017SPing-Ke Shih 	u32 val, reg;
2250e3ec7017SPing-Ke Shih 	int ret;
2251e3ec7017SPing-Ke Shih 
2252e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2253e3ec7017SPing-Ke Shih 	if (ret)
2254e3ec7017SPing-Ke Shih 		return ret;
2255e3ec7017SPing-Ke Shih 
2256e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_CCA_CONTROL, mac_idx);
2257e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
2258e3ec7017SPing-Ke Shih 	val |= (B_AX_TB_CHK_BASIC_NAV | B_AX_TB_CHK_BTCCA |
2259e3ec7017SPing-Ke Shih 		B_AX_TB_CHK_EDCCA | B_AX_TB_CHK_CCA_P20 |
2260e3ec7017SPing-Ke Shih 		B_AX_SIFS_CHK_BTCCA | B_AX_SIFS_CHK_CCA_P20 |
2261e3ec7017SPing-Ke Shih 		B_AX_CTN_CHK_INTRA_NAV |
2262e3ec7017SPing-Ke Shih 		B_AX_CTN_CHK_BASIC_NAV | B_AX_CTN_CHK_BTCCA |
2263e3ec7017SPing-Ke Shih 		B_AX_CTN_CHK_EDCCA | B_AX_CTN_CHK_CCA_S80 |
2264e3ec7017SPing-Ke Shih 		B_AX_CTN_CHK_CCA_S40 | B_AX_CTN_CHK_CCA_S20 |
226598ed6159SPing-Ke Shih 		B_AX_CTN_CHK_CCA_P20);
2266e3ec7017SPing-Ke Shih 	val &= ~(B_AX_TB_CHK_TX_NAV | B_AX_TB_CHK_CCA_S80 |
2267e3ec7017SPing-Ke Shih 		 B_AX_TB_CHK_CCA_S40 | B_AX_TB_CHK_CCA_S20 |
2268e3ec7017SPing-Ke Shih 		 B_AX_SIFS_CHK_CCA_S80 | B_AX_SIFS_CHK_CCA_S40 |
226998ed6159SPing-Ke Shih 		 B_AX_SIFS_CHK_CCA_S20 | B_AX_CTN_CHK_TXNAV |
227098ed6159SPing-Ke Shih 		 B_AX_SIFS_CHK_EDCCA);
2271e3ec7017SPing-Ke Shih 
2272e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2273e3ec7017SPing-Ke Shih 
2274e3ec7017SPing-Ke Shih 	_patch_dis_resp_chk(rtwdev, mac_idx);
2275e3ec7017SPing-Ke Shih 
2276e3ec7017SPing-Ke Shih 	return 0;
2277e3ec7017SPing-Ke Shih }
2278e3ec7017SPing-Ke Shih 
227919cb9427SPing-Ke Shih static int nav_ctrl_init(struct rtw89_dev *rtwdev)
228019cb9427SPing-Ke Shih {
228119cb9427SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_WMAC_NAV_CTL, B_AX_WMAC_PLCP_UP_NAV_EN |
228219cb9427SPing-Ke Shih 						     B_AX_WMAC_TF_UP_NAV_EN |
228319cb9427SPing-Ke Shih 						     B_AX_WMAC_NAV_UPPER_EN);
2284c060dc51SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_WMAC_NAV_CTL, B_AX_WMAC_NAV_UPPER_MASK, NAV_25MS);
228519cb9427SPing-Ke Shih 
228619cb9427SPing-Ke Shih 	return 0;
228719cb9427SPing-Ke Shih }
228819cb9427SPing-Ke Shih 
2289e3ec7017SPing-Ke Shih static int spatial_reuse_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2290e3ec7017SPing-Ke Shih {
2291e3ec7017SPing-Ke Shih 	u32 reg;
2292e3ec7017SPing-Ke Shih 	int ret;
2293e3ec7017SPing-Ke Shih 
2294e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2295e3ec7017SPing-Ke Shih 	if (ret)
2296e3ec7017SPing-Ke Shih 		return ret;
2297e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RX_SR_CTRL, mac_idx);
2298e3ec7017SPing-Ke Shih 	rtw89_write8_clr(rtwdev, reg, B_AX_SR_EN);
2299e3ec7017SPing-Ke Shih 
2300e3ec7017SPing-Ke Shih 	return 0;
2301e3ec7017SPing-Ke Shih }
2302e3ec7017SPing-Ke Shih 
2303e3ec7017SPing-Ke Shih static int tmac_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2304e3ec7017SPing-Ke Shih {
2305e3ec7017SPing-Ke Shih 	u32 reg;
2306e3ec7017SPing-Ke Shih 	int ret;
2307e3ec7017SPing-Ke Shih 
2308e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2309e3ec7017SPing-Ke Shih 	if (ret)
2310e3ec7017SPing-Ke Shih 		return ret;
2311e3ec7017SPing-Ke Shih 
2312e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_MAC_LOOPBACK, mac_idx);
2313e3ec7017SPing-Ke Shih 	rtw89_write32_clr(rtwdev, reg, B_AX_MACLBK_EN);
2314e3ec7017SPing-Ke Shih 
231575fd91aaSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TCR0, mac_idx);
231675fd91aaSPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_TCR_UDF_THSD_MASK, TCR_UDF_THSD);
231775fd91aaSPing-Ke Shih 
231875fd91aaSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TXD_FIFO_CTRL, mac_idx);
231975fd91aaSPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_TXDFIFO_HIGH_MCS_THRE_MASK, TXDFIFO_HIGH_MCS_THRE);
232075fd91aaSPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_TXDFIFO_LOW_MCS_THRE_MASK, TXDFIFO_LOW_MCS_THRE);
232175fd91aaSPing-Ke Shih 
2322e3ec7017SPing-Ke Shih 	return 0;
2323e3ec7017SPing-Ke Shih }
2324e3ec7017SPing-Ke Shih 
2325e3ec7017SPing-Ke Shih static int trxptcl_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2326e3ec7017SPing-Ke Shih {
23279ef9edb9SChia-Yuan Li 	const struct rtw89_chip_info *chip = rtwdev->chip;
23289ef9edb9SChia-Yuan Li 	const struct rtw89_rrsr_cfgs *rrsr = chip->rrsr_cfgs;
2329e3ec7017SPing-Ke Shih 	u32 reg, val, sifs;
2330e3ec7017SPing-Ke Shih 	int ret;
2331e3ec7017SPing-Ke Shih 
2332e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2333e3ec7017SPing-Ke Shih 	if (ret)
2334e3ec7017SPing-Ke Shih 		return ret;
2335e3ec7017SPing-Ke Shih 
2336e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx);
2337e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
2338e3ec7017SPing-Ke Shih 	val &= ~B_AX_WMAC_SPEC_SIFS_CCK_MASK;
2339e3ec7017SPing-Ke Shih 	val |= FIELD_PREP(B_AX_WMAC_SPEC_SIFS_CCK_MASK, WMAC_SPEC_SIFS_CCK);
2340e3ec7017SPing-Ke Shih 
2341e3ec7017SPing-Ke Shih 	switch (rtwdev->chip->chip_id) {
2342e3ec7017SPing-Ke Shih 	case RTL8852A:
2343e3ec7017SPing-Ke Shih 		sifs = WMAC_SPEC_SIFS_OFDM_52A;
2344e3ec7017SPing-Ke Shih 		break;
2345e3ec7017SPing-Ke Shih 	case RTL8852B:
2346e3ec7017SPing-Ke Shih 		sifs = WMAC_SPEC_SIFS_OFDM_52B;
2347e3ec7017SPing-Ke Shih 		break;
2348e3ec7017SPing-Ke Shih 	default:
2349e3ec7017SPing-Ke Shih 		sifs = WMAC_SPEC_SIFS_OFDM_52C;
2350e3ec7017SPing-Ke Shih 		break;
2351e3ec7017SPing-Ke Shih 	}
2352e3ec7017SPing-Ke Shih 	val &= ~B_AX_WMAC_SPEC_SIFS_OFDM_MASK;
2353e3ec7017SPing-Ke Shih 	val |= FIELD_PREP(B_AX_WMAC_SPEC_SIFS_OFDM_MASK, sifs);
2354e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2355e3ec7017SPing-Ke Shih 
2356e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RXTRIG_TEST_USER_2, mac_idx);
2357e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_RXTRIG_FCSCHK_EN);
2358e3ec7017SPing-Ke Shih 
23599ef9edb9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(rrsr->ref_rate.addr, mac_idx);
23609ef9edb9SChia-Yuan Li 	rtw89_write32_mask(rtwdev, reg, rrsr->ref_rate.mask, rrsr->ref_rate.data);
23619ef9edb9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(rrsr->rsc.addr, mac_idx);
23629ef9edb9SChia-Yuan Li 	rtw89_write32_mask(rtwdev, reg, rrsr->rsc.mask, rrsr->rsc.data);
23639ef9edb9SChia-Yuan Li 
2364e3ec7017SPing-Ke Shih 	return 0;
2365e3ec7017SPing-Ke Shih }
2366e3ec7017SPing-Ke Shih 
236718175197SPing-Ke Shih static void rst_bacam(struct rtw89_dev *rtwdev)
236818175197SPing-Ke Shih {
236918175197SPing-Ke Shih 	u32 val32;
237018175197SPing-Ke Shih 	int ret;
237118175197SPing-Ke Shih 
237218175197SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_RESPBA_CAM_CTRL, B_AX_BACAM_RST_MASK,
237318175197SPing-Ke Shih 			   S_AX_BACAM_RST_ALL);
237418175197SPing-Ke Shih 
237518175197SPing-Ke Shih 	ret = read_poll_timeout_atomic(rtw89_read32_mask, val32, val32 == 0,
237618175197SPing-Ke Shih 				       1, 1000, false,
237718175197SPing-Ke Shih 				       rtwdev, R_AX_RESPBA_CAM_CTRL, B_AX_BACAM_RST_MASK);
237818175197SPing-Ke Shih 	if (ret)
237918175197SPing-Ke Shih 		rtw89_warn(rtwdev, "failed to reset BA CAM\n");
238018175197SPing-Ke Shih }
238118175197SPing-Ke Shih 
2382e3ec7017SPing-Ke Shih static int rmac_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2383e3ec7017SPing-Ke Shih {
2384e3ec7017SPing-Ke Shih #define TRXCFG_RMAC_CCA_TO	32
2385e3ec7017SPing-Ke Shih #define TRXCFG_RMAC_DATA_TO	15
2386e3ec7017SPing-Ke Shih #define RX_MAX_LEN_UNIT 512
2387e3ec7017SPing-Ke Shih #define PLD_RLS_MAX_PG 127
23884b0d341bSPing-Ke Shih #define RX_SPEC_MAX_LEN (11454 + RX_MAX_LEN_UNIT)
2389e3ec7017SPing-Ke Shih 	int ret;
2390e3ec7017SPing-Ke Shih 	u32 reg, rx_max_len, rx_qta;
2391e3ec7017SPing-Ke Shih 	u16 val;
2392e3ec7017SPing-Ke Shih 
2393e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2394e3ec7017SPing-Ke Shih 	if (ret)
2395e3ec7017SPing-Ke Shih 		return ret;
2396e3ec7017SPing-Ke Shih 
239718175197SPing-Ke Shih 	if (mac_idx == RTW89_MAC_0)
239818175197SPing-Ke Shih 		rst_bacam(rtwdev);
239918175197SPing-Ke Shih 
2400e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RESPBA_CAM_CTRL, mac_idx);
2401e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, reg, B_AX_SSN_SEL);
2402e3ec7017SPing-Ke Shih 
2403e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_DLK_PROTECT_CTL, mac_idx);
2404e3ec7017SPing-Ke Shih 	val = rtw89_read16(rtwdev, reg);
2405e3ec7017SPing-Ke Shih 	val = u16_replace_bits(val, TRXCFG_RMAC_DATA_TO,
2406e3ec7017SPing-Ke Shih 			       B_AX_RX_DLK_DATA_TIME_MASK);
2407e3ec7017SPing-Ke Shih 	val = u16_replace_bits(val, TRXCFG_RMAC_CCA_TO,
2408e3ec7017SPing-Ke Shih 			       B_AX_RX_DLK_CCA_TIME_MASK);
2409e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, reg, val);
2410e3ec7017SPing-Ke Shih 
2411e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RCR, mac_idx);
2412e3ec7017SPing-Ke Shih 	rtw89_write8_mask(rtwdev, reg, B_AX_CH_EN_MASK, 0x1);
2413e3ec7017SPing-Ke Shih 
2414e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RX_FLTR_OPT, mac_idx);
2415e3ec7017SPing-Ke Shih 	if (mac_idx == RTW89_MAC_0)
2416e3ec7017SPing-Ke Shih 		rx_qta = rtwdev->mac.dle_info.c0_rx_qta;
2417e3ec7017SPing-Ke Shih 	else
2418e3ec7017SPing-Ke Shih 		rx_qta = rtwdev->mac.dle_info.c1_rx_qta;
24194b0d341bSPing-Ke Shih 	rx_qta = min_t(u32, rx_qta, PLD_RLS_MAX_PG);
24204b0d341bSPing-Ke Shih 	rx_max_len = rx_qta * rtwdev->mac.dle_info.ple_pg_size;
24214b0d341bSPing-Ke Shih 	rx_max_len = min_t(u32, rx_max_len, RX_SPEC_MAX_LEN);
24224b0d341bSPing-Ke Shih 	rx_max_len /= RX_MAX_LEN_UNIT;
2423e3ec7017SPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, B_AX_RX_MPDU_MAX_LEN_MASK, rx_max_len);
2424e3ec7017SPing-Ke Shih 
2425e3ec7017SPing-Ke Shih 	if (rtwdev->chip->chip_id == RTL8852A &&
2426e3ec7017SPing-Ke Shih 	    rtwdev->hal.cv == CHIP_CBV) {
2427e3ec7017SPing-Ke Shih 		rtw89_write16_mask(rtwdev,
2428e3ec7017SPing-Ke Shih 				   rtw89_mac_reg_by_idx(R_AX_DLK_PROTECT_CTL, mac_idx),
2429e3ec7017SPing-Ke Shih 				   B_AX_RX_DLK_CCA_TIME_MASK, 0);
2430e3ec7017SPing-Ke Shih 		rtw89_write16_set(rtwdev, rtw89_mac_reg_by_idx(R_AX_RCR, mac_idx),
2431e3ec7017SPing-Ke Shih 				  BIT(12));
2432e3ec7017SPing-Ke Shih 	}
2433e3ec7017SPing-Ke Shih 
2434e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_PLCP_HDR_FLTR, mac_idx);
2435e3ec7017SPing-Ke Shih 	rtw89_write8_clr(rtwdev, reg, B_AX_VHT_SU_SIGB_CRC_CHK);
2436e3ec7017SPing-Ke Shih 
2437e3ec7017SPing-Ke Shih 	return ret;
2438e3ec7017SPing-Ke Shih }
2439e3ec7017SPing-Ke Shih 
2440e3ec7017SPing-Ke Shih static int cmac_com_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2441e3ec7017SPing-Ke Shih {
24429ef9edb9SChia-Yuan Li 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
2443e3ec7017SPing-Ke Shih 	u32 val, reg;
2444e3ec7017SPing-Ke Shih 	int ret;
2445e3ec7017SPing-Ke Shih 
2446e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2447e3ec7017SPing-Ke Shih 	if (ret)
2448e3ec7017SPing-Ke Shih 		return ret;
2449e3ec7017SPing-Ke Shih 
2450e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TX_SUB_CARRIER_VALUE, mac_idx);
2451e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
2452e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, 0, B_AX_TXSC_20M_MASK);
2453e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, 0, B_AX_TXSC_40M_MASK);
2454e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, 0, B_AX_TXSC_80M_MASK);
2455e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2456e3ec7017SPing-Ke Shih 
24579ef9edb9SChia-Yuan Li 	if (chip_id == RTL8852A || chip_id == RTL8852B) {
24589ef9edb9SChia-Yuan Li 		reg = rtw89_mac_reg_by_idx(R_AX_PTCL_RRSR1, mac_idx);
24599ef9edb9SChia-Yuan Li 		rtw89_write32_mask(rtwdev, reg, B_AX_RRSR_RATE_EN_MASK, RRSR_OFDM_CCK_EN);
24609ef9edb9SChia-Yuan Li 	}
24619ef9edb9SChia-Yuan Li 
2462e3ec7017SPing-Ke Shih 	return 0;
2463e3ec7017SPing-Ke Shih }
2464e3ec7017SPing-Ke Shih 
2465e3ec7017SPing-Ke Shih static bool is_qta_dbcc(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode)
2466e3ec7017SPing-Ke Shih {
2467e3ec7017SPing-Ke Shih 	const struct rtw89_dle_mem *cfg;
2468e3ec7017SPing-Ke Shih 
2469e3ec7017SPing-Ke Shih 	cfg = get_dle_mem_cfg(rtwdev, mode);
2470e3ec7017SPing-Ke Shih 	if (!cfg) {
2471e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n");
2472e3ec7017SPing-Ke Shih 		return false;
2473e3ec7017SPing-Ke Shih 	}
2474e3ec7017SPing-Ke Shih 
2475e3ec7017SPing-Ke Shih 	return (cfg->ple_min_qt->cma1_dma && cfg->ple_max_qt->cma1_dma);
2476e3ec7017SPing-Ke Shih }
2477e3ec7017SPing-Ke Shih 
2478e3ec7017SPing-Ke Shih static int ptcl_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2479e3ec7017SPing-Ke Shih {
2480e3ec7017SPing-Ke Shih 	u32 val, reg;
2481e3ec7017SPing-Ke Shih 	int ret;
2482e3ec7017SPing-Ke Shih 
2483e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2484e3ec7017SPing-Ke Shih 	if (ret)
2485e3ec7017SPing-Ke Shih 		return ret;
2486e3ec7017SPing-Ke Shih 
2487e3ec7017SPing-Ke Shih 	if (rtwdev->hci.type == RTW89_HCI_TYPE_PCIE) {
2488e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_SIFS_SETTING, mac_idx);
2489e3ec7017SPing-Ke Shih 		val = rtw89_read32(rtwdev, reg);
2490e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_CTS2S_TH_1K,
2491e3ec7017SPing-Ke Shih 				       B_AX_HW_CTS2SELF_PKT_LEN_TH_MASK);
24929fb4862eSPing-Ke Shih 		val = u32_replace_bits(val, S_AX_CTS2S_TH_SEC_256B,
24939fb4862eSPing-Ke Shih 				       B_AX_HW_CTS2SELF_PKT_LEN_TH_TWW_MASK);
2494e3ec7017SPing-Ke Shih 		val |= B_AX_HW_CTS2SELF_EN;
2495e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val);
2496e3ec7017SPing-Ke Shih 
2497e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_PTCL_FSM_MON, mac_idx);
2498e3ec7017SPing-Ke Shih 		val = rtw89_read32(rtwdev, reg);
2499e3ec7017SPing-Ke Shih 		val = u32_replace_bits(val, S_AX_PTCL_TO_2MS, B_AX_PTCL_TX_ARB_TO_THR_MASK);
2500e3ec7017SPing-Ke Shih 		val &= ~B_AX_PTCL_TX_ARB_TO_MODE;
2501e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, reg, val);
2502e3ec7017SPing-Ke Shih 	}
2503e3ec7017SPing-Ke Shih 
25049fb4862eSPing-Ke Shih 	if (mac_idx == RTW89_MAC_0) {
25059fb4862eSPing-Ke Shih 		rtw89_write8_set(rtwdev, R_AX_PTCL_COMMON_SETTING_0,
25069fb4862eSPing-Ke Shih 				 B_AX_CMAC_TX_MODE_0 | B_AX_CMAC_TX_MODE_1);
25079fb4862eSPing-Ke Shih 		rtw89_write8_clr(rtwdev, R_AX_PTCL_COMMON_SETTING_0,
25089fb4862eSPing-Ke Shih 				 B_AX_PTCL_TRIGGER_SS_EN_0 |
25099fb4862eSPing-Ke Shih 				 B_AX_PTCL_TRIGGER_SS_EN_1 |
25109fb4862eSPing-Ke Shih 				 B_AX_PTCL_TRIGGER_SS_EN_UL);
25119fb4862eSPing-Ke Shih 		rtw89_write8_mask(rtwdev, R_AX_PTCLRPT_FULL_HDL,
25129fb4862eSPing-Ke Shih 				  B_AX_SPE_RPT_PATH_MASK, FWD_TO_WLCPU);
25139fb4862eSPing-Ke Shih 	} else if (mac_idx == RTW89_MAC_1) {
25149fb4862eSPing-Ke Shih 		rtw89_write8_mask(rtwdev, R_AX_PTCLRPT_FULL_HDL_C1,
25159fb4862eSPing-Ke Shih 				  B_AX_SPE_RPT_PATH_MASK, FWD_TO_WLCPU);
25169fb4862eSPing-Ke Shih 	}
2517e3ec7017SPing-Ke Shih 
2518e3ec7017SPing-Ke Shih 	return 0;
2519e3ec7017SPing-Ke Shih }
2520e3ec7017SPing-Ke Shih 
2521a0d99ebbSPing-Ke Shih static int cmac_dma_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2522a0d99ebbSPing-Ke Shih {
2523a0d99ebbSPing-Ke Shih 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
2524a0d99ebbSPing-Ke Shih 	u32 reg;
2525a0d99ebbSPing-Ke Shih 	int ret;
2526a0d99ebbSPing-Ke Shih 
2527a0d99ebbSPing-Ke Shih 	if (chip_id != RTL8852A && chip_id != RTL8852B)
2528a0d99ebbSPing-Ke Shih 		return 0;
2529a0d99ebbSPing-Ke Shih 
2530a0d99ebbSPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2531a0d99ebbSPing-Ke Shih 	if (ret)
2532a0d99ebbSPing-Ke Shih 		return ret;
2533a0d99ebbSPing-Ke Shih 
2534a0d99ebbSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_RXDMA_CTRL_0, mac_idx);
2535a0d99ebbSPing-Ke Shih 	rtw89_write8_clr(rtwdev, reg, RX_FULL_MODE);
2536a0d99ebbSPing-Ke Shih 
2537a0d99ebbSPing-Ke Shih 	return 0;
2538a0d99ebbSPing-Ke Shih }
2539a0d99ebbSPing-Ke Shih 
2540e3ec7017SPing-Ke Shih static int cmac_init(struct rtw89_dev *rtwdev, u8 mac_idx)
2541e3ec7017SPing-Ke Shih {
2542e3ec7017SPing-Ke Shih 	int ret;
2543e3ec7017SPing-Ke Shih 
2544e3ec7017SPing-Ke Shih 	ret = scheduler_init(rtwdev, mac_idx);
2545e3ec7017SPing-Ke Shih 	if (ret) {
2546e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d SCH init %d\n", mac_idx, ret);
2547e3ec7017SPing-Ke Shih 		return ret;
2548e3ec7017SPing-Ke Shih 	}
2549e3ec7017SPing-Ke Shih 
2550e3ec7017SPing-Ke Shih 	ret = addr_cam_init(rtwdev, mac_idx);
2551e3ec7017SPing-Ke Shih 	if (ret) {
2552e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d ADDR_CAM reset %d\n", mac_idx,
2553e3ec7017SPing-Ke Shih 			  ret);
2554e3ec7017SPing-Ke Shih 		return ret;
2555e3ec7017SPing-Ke Shih 	}
2556e3ec7017SPing-Ke Shih 
2557e3ec7017SPing-Ke Shih 	ret = rx_fltr_init(rtwdev, mac_idx);
2558e3ec7017SPing-Ke Shih 	if (ret) {
2559e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d RX filter init %d\n", mac_idx,
2560e3ec7017SPing-Ke Shih 			  ret);
2561e3ec7017SPing-Ke Shih 		return ret;
2562e3ec7017SPing-Ke Shih 	}
2563e3ec7017SPing-Ke Shih 
2564e3ec7017SPing-Ke Shih 	ret = cca_ctrl_init(rtwdev, mac_idx);
2565e3ec7017SPing-Ke Shih 	if (ret) {
2566e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d CCA CTRL init %d\n", mac_idx,
2567e3ec7017SPing-Ke Shih 			  ret);
2568e3ec7017SPing-Ke Shih 		return ret;
2569e3ec7017SPing-Ke Shih 	}
2570e3ec7017SPing-Ke Shih 
257119cb9427SPing-Ke Shih 	ret = nav_ctrl_init(rtwdev);
257219cb9427SPing-Ke Shih 	if (ret) {
257319cb9427SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d NAV CTRL init %d\n", mac_idx,
257419cb9427SPing-Ke Shih 			  ret);
257519cb9427SPing-Ke Shih 		return ret;
257619cb9427SPing-Ke Shih 	}
257719cb9427SPing-Ke Shih 
2578e3ec7017SPing-Ke Shih 	ret = spatial_reuse_init(rtwdev, mac_idx);
2579e3ec7017SPing-Ke Shih 	if (ret) {
2580e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d Spatial Reuse init %d\n",
2581e3ec7017SPing-Ke Shih 			  mac_idx, ret);
2582e3ec7017SPing-Ke Shih 		return ret;
2583e3ec7017SPing-Ke Shih 	}
2584e3ec7017SPing-Ke Shih 
2585e3ec7017SPing-Ke Shih 	ret = tmac_init(rtwdev, mac_idx);
2586e3ec7017SPing-Ke Shih 	if (ret) {
2587e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d TMAC init %d\n", mac_idx, ret);
2588e3ec7017SPing-Ke Shih 		return ret;
2589e3ec7017SPing-Ke Shih 	}
2590e3ec7017SPing-Ke Shih 
2591e3ec7017SPing-Ke Shih 	ret = trxptcl_init(rtwdev, mac_idx);
2592e3ec7017SPing-Ke Shih 	if (ret) {
2593e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d TRXPTCL init %d\n", mac_idx, ret);
2594e3ec7017SPing-Ke Shih 		return ret;
2595e3ec7017SPing-Ke Shih 	}
2596e3ec7017SPing-Ke Shih 
2597e3ec7017SPing-Ke Shih 	ret = rmac_init(rtwdev, mac_idx);
2598e3ec7017SPing-Ke Shih 	if (ret) {
2599e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d RMAC init %d\n", mac_idx, ret);
2600e3ec7017SPing-Ke Shih 		return ret;
2601e3ec7017SPing-Ke Shih 	}
2602e3ec7017SPing-Ke Shih 
2603e3ec7017SPing-Ke Shih 	ret = cmac_com_init(rtwdev, mac_idx);
2604e3ec7017SPing-Ke Shih 	if (ret) {
2605e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d Com init %d\n", mac_idx, ret);
2606e3ec7017SPing-Ke Shih 		return ret;
2607e3ec7017SPing-Ke Shih 	}
2608e3ec7017SPing-Ke Shih 
2609e3ec7017SPing-Ke Shih 	ret = ptcl_init(rtwdev, mac_idx);
2610e3ec7017SPing-Ke Shih 	if (ret) {
2611e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d PTCL init %d\n", mac_idx, ret);
2612e3ec7017SPing-Ke Shih 		return ret;
2613e3ec7017SPing-Ke Shih 	}
2614e3ec7017SPing-Ke Shih 
2615a0d99ebbSPing-Ke Shih 	ret = cmac_dma_init(rtwdev, mac_idx);
2616a0d99ebbSPing-Ke Shih 	if (ret) {
2617a0d99ebbSPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d DMA init %d\n", mac_idx, ret);
2618a0d99ebbSPing-Ke Shih 		return ret;
2619a0d99ebbSPing-Ke Shih 	}
2620a0d99ebbSPing-Ke Shih 
2621e3ec7017SPing-Ke Shih 	return ret;
2622e3ec7017SPing-Ke Shih }
2623e3ec7017SPing-Ke Shih 
2624e3ec7017SPing-Ke Shih static int rtw89_mac_read_phycap(struct rtw89_dev *rtwdev,
2625e3ec7017SPing-Ke Shih 				 struct rtw89_mac_c2h_info *c2h_info)
2626e3ec7017SPing-Ke Shih {
2627e3ec7017SPing-Ke Shih 	struct rtw89_mac_h2c_info h2c_info = {0};
2628e3ec7017SPing-Ke Shih 	u32 ret;
2629e3ec7017SPing-Ke Shih 
2630e3ec7017SPing-Ke Shih 	h2c_info.id = RTW89_FWCMD_H2CREG_FUNC_GET_FEATURE;
2631e3ec7017SPing-Ke Shih 	h2c_info.content_len = 0;
2632e3ec7017SPing-Ke Shih 
2633e3ec7017SPing-Ke Shih 	ret = rtw89_fw_msg_reg(rtwdev, &h2c_info, c2h_info);
2634e3ec7017SPing-Ke Shih 	if (ret)
2635e3ec7017SPing-Ke Shih 		return ret;
2636e3ec7017SPing-Ke Shih 
2637e3ec7017SPing-Ke Shih 	if (c2h_info->id != RTW89_FWCMD_C2HREG_FUNC_PHY_CAP)
2638e3ec7017SPing-Ke Shih 		return -EINVAL;
2639e3ec7017SPing-Ke Shih 
2640e3ec7017SPing-Ke Shih 	return 0;
2641e3ec7017SPing-Ke Shih }
2642e3ec7017SPing-Ke Shih 
2643e3ec7017SPing-Ke Shih int rtw89_mac_setup_phycap(struct rtw89_dev *rtwdev)
2644e3ec7017SPing-Ke Shih {
2645f48453e0SPing-Ke Shih 	struct rtw89_efuse *efuse = &rtwdev->efuse;
2646e3ec7017SPing-Ke Shih 	struct rtw89_hal *hal = &rtwdev->hal;
2647e3ec7017SPing-Ke Shih 	const struct rtw89_chip_info *chip = rtwdev->chip;
2648e3ec7017SPing-Ke Shih 	struct rtw89_mac_c2h_info c2h_info = {0};
2649c7ad08c6SPing-Ke Shih 	u8 tx_nss;
2650c7ad08c6SPing-Ke Shih 	u8 rx_nss;
2651dc229d94SPing-Ke Shih 	u8 tx_ant;
2652dc229d94SPing-Ke Shih 	u8 rx_ant;
2653e3ec7017SPing-Ke Shih 	u32 ret;
2654e3ec7017SPing-Ke Shih 
2655e3ec7017SPing-Ke Shih 	ret = rtw89_mac_read_phycap(rtwdev, &c2h_info);
2656e3ec7017SPing-Ke Shih 	if (ret)
2657e3ec7017SPing-Ke Shih 		return ret;
2658e3ec7017SPing-Ke Shih 
2659c7ad08c6SPing-Ke Shih 	tx_nss = RTW89_GET_C2H_PHYCAP_TX_NSS(c2h_info.c2hreg);
2660c7ad08c6SPing-Ke Shih 	rx_nss = RTW89_GET_C2H_PHYCAP_RX_NSS(c2h_info.c2hreg);
2661dc229d94SPing-Ke Shih 	tx_ant = RTW89_GET_C2H_PHYCAP_ANT_TX_NUM(c2h_info.c2hreg);
2662dc229d94SPing-Ke Shih 	rx_ant = RTW89_GET_C2H_PHYCAP_ANT_RX_NUM(c2h_info.c2hreg);
2663c7ad08c6SPing-Ke Shih 
2664c7ad08c6SPing-Ke Shih 	hal->tx_nss = tx_nss ? min_t(u8, tx_nss, chip->tx_nss) : chip->tx_nss;
2665c7ad08c6SPing-Ke Shih 	hal->rx_nss = rx_nss ? min_t(u8, rx_nss, chip->rx_nss) : chip->rx_nss;
2666e3ec7017SPing-Ke Shih 
2667dc229d94SPing-Ke Shih 	if (tx_ant == 1)
2668dc229d94SPing-Ke Shih 		hal->antenna_tx = RF_B;
2669dc229d94SPing-Ke Shih 	if (rx_ant == 1)
2670dc229d94SPing-Ke Shih 		hal->antenna_rx = RF_B;
2671dc229d94SPing-Ke Shih 
2672dc229d94SPing-Ke Shih 	if (tx_nss == 1 && tx_ant == 2 && rx_ant == 2) {
2673dc229d94SPing-Ke Shih 		hal->antenna_tx = RF_B;
2674dc229d94SPing-Ke Shih 		hal->tx_path_diversity = true;
2675dc229d94SPing-Ke Shih 	}
2676dc229d94SPing-Ke Shih 
2677f48453e0SPing-Ke Shih 	if (chip->rf_path_num == 1) {
2678f48453e0SPing-Ke Shih 		hal->antenna_tx = RF_A;
2679f48453e0SPing-Ke Shih 		hal->antenna_rx = RF_A;
2680f48453e0SPing-Ke Shih 		if ((efuse->rfe_type % 3) == 2)
2681f48453e0SPing-Ke Shih 			hal->ant_diversity = true;
2682f48453e0SPing-Ke Shih 	}
2683f48453e0SPing-Ke Shih 
2684e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW,
2685e3ec7017SPing-Ke Shih 		    "phycap hal/phy/chip: tx_nss=0x%x/0x%x/0x%x rx_nss=0x%x/0x%x/0x%x\n",
2686c7ad08c6SPing-Ke Shih 		    hal->tx_nss, tx_nss, chip->tx_nss,
2687c7ad08c6SPing-Ke Shih 		    hal->rx_nss, rx_nss, chip->rx_nss);
2688dc229d94SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW,
2689dc229d94SPing-Ke Shih 		    "ant num/bitmap: tx=%d/0x%x rx=%d/0x%x\n",
2690dc229d94SPing-Ke Shih 		    tx_ant, hal->antenna_tx, rx_ant, hal->antenna_rx);
2691dc229d94SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW, "TX path diversity=%d\n", hal->tx_path_diversity);
2692f48453e0SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW, "Antenna diversity=%d\n", hal->ant_diversity);
2693e3ec7017SPing-Ke Shih 
2694e3ec7017SPing-Ke Shih 	return 0;
2695e3ec7017SPing-Ke Shih }
2696e3ec7017SPing-Ke Shih 
2697e3ec7017SPing-Ke Shih static int rtw89_hw_sch_tx_en_h2c(struct rtw89_dev *rtwdev, u8 band,
2698e3ec7017SPing-Ke Shih 				  u16 tx_en_u16, u16 mask_u16)
2699e3ec7017SPing-Ke Shih {
2700e3ec7017SPing-Ke Shih 	u32 ret;
2701e3ec7017SPing-Ke Shih 	struct rtw89_mac_c2h_info c2h_info = {0};
2702e3ec7017SPing-Ke Shih 	struct rtw89_mac_h2c_info h2c_info = {0};
2703e3ec7017SPing-Ke Shih 	struct rtw89_h2creg_sch_tx_en *h2creg =
2704e3ec7017SPing-Ke Shih 		(struct rtw89_h2creg_sch_tx_en *)h2c_info.h2creg;
2705e3ec7017SPing-Ke Shih 
2706e3ec7017SPing-Ke Shih 	h2c_info.id = RTW89_FWCMD_H2CREG_FUNC_SCH_TX_EN;
2707e3ec7017SPing-Ke Shih 	h2c_info.content_len = sizeof(*h2creg) - RTW89_H2CREG_HDR_LEN;
2708e3ec7017SPing-Ke Shih 	h2creg->tx_en = tx_en_u16;
2709e3ec7017SPing-Ke Shih 	h2creg->mask = mask_u16;
2710e3ec7017SPing-Ke Shih 	h2creg->band = band;
2711e3ec7017SPing-Ke Shih 
2712e3ec7017SPing-Ke Shih 	ret = rtw89_fw_msg_reg(rtwdev, &h2c_info, &c2h_info);
2713e3ec7017SPing-Ke Shih 	if (ret)
2714e3ec7017SPing-Ke Shih 		return ret;
2715e3ec7017SPing-Ke Shih 
2716e3ec7017SPing-Ke Shih 	if (c2h_info.id != RTW89_FWCMD_C2HREG_FUNC_TX_PAUSE_RPT)
2717e3ec7017SPing-Ke Shih 		return -EINVAL;
2718e3ec7017SPing-Ke Shih 
2719e3ec7017SPing-Ke Shih 	return 0;
2720e3ec7017SPing-Ke Shih }
2721e3ec7017SPing-Ke Shih 
2722e3ec7017SPing-Ke Shih static int rtw89_set_hw_sch_tx_en(struct rtw89_dev *rtwdev, u8 mac_idx,
2723e3ec7017SPing-Ke Shih 				  u16 tx_en, u16 tx_en_mask)
2724e3ec7017SPing-Ke Shih {
2725e3ec7017SPing-Ke Shih 	u32 reg = rtw89_mac_reg_by_idx(R_AX_CTN_TXEN, mac_idx);
2726e3ec7017SPing-Ke Shih 	u16 val;
2727e3ec7017SPing-Ke Shih 	int ret;
2728e3ec7017SPing-Ke Shih 
2729e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2730e3ec7017SPing-Ke Shih 	if (ret)
2731e3ec7017SPing-Ke Shih 		return ret;
2732e3ec7017SPing-Ke Shih 
2733e3ec7017SPing-Ke Shih 	if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags))
2734e3ec7017SPing-Ke Shih 		return rtw89_hw_sch_tx_en_h2c(rtwdev, mac_idx,
2735e3ec7017SPing-Ke Shih 					      tx_en, tx_en_mask);
2736e3ec7017SPing-Ke Shih 
2737e3ec7017SPing-Ke Shih 	val = rtw89_read16(rtwdev, reg);
2738e3ec7017SPing-Ke Shih 	val = (val & ~tx_en_mask) | (tx_en & tx_en_mask);
2739e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, reg, val);
2740e3ec7017SPing-Ke Shih 
2741e3ec7017SPing-Ke Shih 	return 0;
2742e3ec7017SPing-Ke Shih }
2743e3ec7017SPing-Ke Shih 
2744de7ba639SPing-Ke Shih static int rtw89_set_hw_sch_tx_en_v1(struct rtw89_dev *rtwdev, u8 mac_idx,
2745de7ba639SPing-Ke Shih 				     u32 tx_en, u32 tx_en_mask)
2746de7ba639SPing-Ke Shih {
2747de7ba639SPing-Ke Shih 	u32 reg = rtw89_mac_reg_by_idx(R_AX_CTN_DRV_TXEN, mac_idx);
2748de7ba639SPing-Ke Shih 	u32 val;
2749de7ba639SPing-Ke Shih 	int ret;
2750de7ba639SPing-Ke Shih 
2751de7ba639SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
2752de7ba639SPing-Ke Shih 	if (ret)
2753de7ba639SPing-Ke Shih 		return ret;
2754de7ba639SPing-Ke Shih 
2755de7ba639SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
2756de7ba639SPing-Ke Shih 	val = (val & ~tx_en_mask) | (tx_en & tx_en_mask);
2757de7ba639SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2758de7ba639SPing-Ke Shih 
2759de7ba639SPing-Ke Shih 	return 0;
2760de7ba639SPing-Ke Shih }
2761de7ba639SPing-Ke Shih 
2762e3ec7017SPing-Ke Shih int rtw89_mac_stop_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx,
2763d780f926SPing-Ke Shih 			  u32 *tx_en, enum rtw89_sch_tx_sel sel)
2764e3ec7017SPing-Ke Shih {
2765e3ec7017SPing-Ke Shih 	int ret;
2766e3ec7017SPing-Ke Shih 
2767e3ec7017SPing-Ke Shih 	*tx_en = rtw89_read16(rtwdev,
2768e3ec7017SPing-Ke Shih 			      rtw89_mac_reg_by_idx(R_AX_CTN_TXEN, mac_idx));
2769e3ec7017SPing-Ke Shih 
2770e3ec7017SPing-Ke Shih 	switch (sel) {
2771e3ec7017SPing-Ke Shih 	case RTW89_SCH_TX_SEL_ALL:
2772de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 0,
2773de7ba639SPing-Ke Shih 					     B_AX_CTN_TXEN_ALL_MASK);
2774e3ec7017SPing-Ke Shih 		if (ret)
2775e3ec7017SPing-Ke Shih 			return ret;
2776e3ec7017SPing-Ke Shih 		break;
2777e3ec7017SPing-Ke Shih 	case RTW89_SCH_TX_SEL_HIQ:
2778e3ec7017SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx,
2779e3ec7017SPing-Ke Shih 					     0, B_AX_CTN_TXEN_HGQ);
2780e3ec7017SPing-Ke Shih 		if (ret)
2781e3ec7017SPing-Ke Shih 			return ret;
2782e3ec7017SPing-Ke Shih 		break;
2783e3ec7017SPing-Ke Shih 	case RTW89_SCH_TX_SEL_MG0:
2784e3ec7017SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx,
2785e3ec7017SPing-Ke Shih 					     0, B_AX_CTN_TXEN_MGQ);
2786e3ec7017SPing-Ke Shih 		if (ret)
2787e3ec7017SPing-Ke Shih 			return ret;
2788e3ec7017SPing-Ke Shih 		break;
2789e3ec7017SPing-Ke Shih 	case RTW89_SCH_TX_SEL_MACID:
2790de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 0,
2791de7ba639SPing-Ke Shih 					     B_AX_CTN_TXEN_ALL_MASK);
2792e3ec7017SPing-Ke Shih 		if (ret)
2793e3ec7017SPing-Ke Shih 			return ret;
2794e3ec7017SPing-Ke Shih 		break;
2795e3ec7017SPing-Ke Shih 	default:
2796e3ec7017SPing-Ke Shih 		return 0;
2797e3ec7017SPing-Ke Shih 	}
2798e3ec7017SPing-Ke Shih 
2799e3ec7017SPing-Ke Shih 	return 0;
2800e3ec7017SPing-Ke Shih }
2801861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_stop_sch_tx);
2802e3ec7017SPing-Ke Shih 
2803de7ba639SPing-Ke Shih int rtw89_mac_stop_sch_tx_v1(struct rtw89_dev *rtwdev, u8 mac_idx,
2804de7ba639SPing-Ke Shih 			     u32 *tx_en, enum rtw89_sch_tx_sel sel)
2805de7ba639SPing-Ke Shih {
2806de7ba639SPing-Ke Shih 	int ret;
2807de7ba639SPing-Ke Shih 
2808de7ba639SPing-Ke Shih 	*tx_en = rtw89_read32(rtwdev,
2809de7ba639SPing-Ke Shih 			      rtw89_mac_reg_by_idx(R_AX_CTN_DRV_TXEN, mac_idx));
2810de7ba639SPing-Ke Shih 
2811de7ba639SPing-Ke Shih 	switch (sel) {
2812de7ba639SPing-Ke Shih 	case RTW89_SCH_TX_SEL_ALL:
2813de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 0,
2814de7ba639SPing-Ke Shih 						B_AX_CTN_TXEN_ALL_MASK_V1);
2815de7ba639SPing-Ke Shih 		if (ret)
2816de7ba639SPing-Ke Shih 			return ret;
2817de7ba639SPing-Ke Shih 		break;
2818de7ba639SPing-Ke Shih 	case RTW89_SCH_TX_SEL_HIQ:
2819de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx,
2820de7ba639SPing-Ke Shih 						0, B_AX_CTN_TXEN_HGQ);
2821de7ba639SPing-Ke Shih 		if (ret)
2822de7ba639SPing-Ke Shih 			return ret;
2823de7ba639SPing-Ke Shih 		break;
2824de7ba639SPing-Ke Shih 	case RTW89_SCH_TX_SEL_MG0:
2825de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx,
2826de7ba639SPing-Ke Shih 						0, B_AX_CTN_TXEN_MGQ);
2827de7ba639SPing-Ke Shih 		if (ret)
2828de7ba639SPing-Ke Shih 			return ret;
2829de7ba639SPing-Ke Shih 		break;
2830de7ba639SPing-Ke Shih 	case RTW89_SCH_TX_SEL_MACID:
2831de7ba639SPing-Ke Shih 		ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 0,
2832de7ba639SPing-Ke Shih 						B_AX_CTN_TXEN_ALL_MASK_V1);
2833de7ba639SPing-Ke Shih 		if (ret)
2834de7ba639SPing-Ke Shih 			return ret;
2835de7ba639SPing-Ke Shih 		break;
2836de7ba639SPing-Ke Shih 	default:
2837de7ba639SPing-Ke Shih 		return 0;
2838de7ba639SPing-Ke Shih 	}
2839de7ba639SPing-Ke Shih 
2840de7ba639SPing-Ke Shih 	return 0;
2841de7ba639SPing-Ke Shih }
2842de7ba639SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_stop_sch_tx_v1);
2843de7ba639SPing-Ke Shih 
2844d780f926SPing-Ke Shih int rtw89_mac_resume_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en)
2845e3ec7017SPing-Ke Shih {
2846e3ec7017SPing-Ke Shih 	int ret;
2847e3ec7017SPing-Ke Shih 
2848de7ba639SPing-Ke Shih 	ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, tx_en, B_AX_CTN_TXEN_ALL_MASK);
2849e3ec7017SPing-Ke Shih 	if (ret)
2850e3ec7017SPing-Ke Shih 		return ret;
2851e3ec7017SPing-Ke Shih 
2852e3ec7017SPing-Ke Shih 	return 0;
2853e3ec7017SPing-Ke Shih }
2854861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_resume_sch_tx);
2855e3ec7017SPing-Ke Shih 
2856de7ba639SPing-Ke Shih int rtw89_mac_resume_sch_tx_v1(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en)
2857de7ba639SPing-Ke Shih {
2858de7ba639SPing-Ke Shih 	int ret;
2859de7ba639SPing-Ke Shih 
2860de7ba639SPing-Ke Shih 	ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, tx_en,
2861de7ba639SPing-Ke Shih 					B_AX_CTN_TXEN_ALL_MASK_V1);
2862de7ba639SPing-Ke Shih 	if (ret)
2863de7ba639SPing-Ke Shih 		return ret;
2864de7ba639SPing-Ke Shih 
2865de7ba639SPing-Ke Shih 	return 0;
2866de7ba639SPing-Ke Shih }
2867de7ba639SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_resume_sch_tx_v1);
2868de7ba639SPing-Ke Shih 
2869eaddda24SPing-Ke Shih int rtw89_mac_dle_buf_req(struct rtw89_dev *rtwdev, u16 buf_len, bool wd, u16 *pkt_id)
2870e3ec7017SPing-Ke Shih {
2871e3ec7017SPing-Ke Shih 	u32 val, reg;
2872e3ec7017SPing-Ke Shih 	int ret;
2873e3ec7017SPing-Ke Shih 
2874e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_BUF_REQ : R_AX_PL_BUF_REQ;
2875e3ec7017SPing-Ke Shih 	val = buf_len;
2876e3ec7017SPing-Ke Shih 	val |= B_AX_WD_BUF_REQ_EXEC;
2877e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2878e3ec7017SPing-Ke Shih 
2879e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_BUF_STATUS : R_AX_PL_BUF_STATUS;
2880e3ec7017SPing-Ke Shih 
2881e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, val, val & B_AX_WD_BUF_STAT_DONE,
2882e3ec7017SPing-Ke Shih 				1, 2000, false, rtwdev, reg);
2883e3ec7017SPing-Ke Shih 	if (ret)
2884eaddda24SPing-Ke Shih 		return ret;
2885e3ec7017SPing-Ke Shih 
2886eaddda24SPing-Ke Shih 	*pkt_id = FIELD_GET(B_AX_WD_BUF_STAT_PKTID_MASK, val);
2887eaddda24SPing-Ke Shih 	if (*pkt_id == S_WD_BUF_STAT_PKTID_INVALID)
2888eaddda24SPing-Ke Shih 		return -ENOENT;
2889eaddda24SPing-Ke Shih 
2890eaddda24SPing-Ke Shih 	return 0;
2891e3ec7017SPing-Ke Shih }
2892e3ec7017SPing-Ke Shih 
28938a1f6c88SZong-Zhe Yang int rtw89_mac_set_cpuio(struct rtw89_dev *rtwdev,
28948a1f6c88SZong-Zhe Yang 			struct rtw89_cpuio_ctrl *ctrl_para, bool wd)
2895e3ec7017SPing-Ke Shih {
2896e3ec7017SPing-Ke Shih 	u32 val, cmd_type, reg;
2897e3ec7017SPing-Ke Shih 	int ret;
2898e3ec7017SPing-Ke Shih 
2899e3ec7017SPing-Ke Shih 	cmd_type = ctrl_para->cmd_type;
2900e3ec7017SPing-Ke Shih 
2901e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_CPUQ_OP_2 : R_AX_PL_CPUQ_OP_2;
2902e3ec7017SPing-Ke Shih 	val = 0;
2903e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->start_pktid,
2904e3ec7017SPing-Ke Shih 			       B_AX_WD_CPUQ_OP_STRT_PKTID_MASK);
2905e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->end_pktid,
2906e3ec7017SPing-Ke Shih 			       B_AX_WD_CPUQ_OP_END_PKTID_MASK);
2907e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2908e3ec7017SPing-Ke Shih 
2909e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_CPUQ_OP_1 : R_AX_PL_CPUQ_OP_1;
2910e3ec7017SPing-Ke Shih 	val = 0;
2911e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->src_pid,
2912e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_SRC_PID_MASK);
2913e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->src_qid,
2914e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_SRC_QID_MASK);
2915e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->dst_pid,
2916e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_DST_PID_MASK);
2917e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->dst_qid,
2918e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_DST_QID_MASK);
2919e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2920e3ec7017SPing-Ke Shih 
2921e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_CPUQ_OP_0 : R_AX_PL_CPUQ_OP_0;
2922e3ec7017SPing-Ke Shih 	val = 0;
2923e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, cmd_type,
2924e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_CMD_TYPE_MASK);
2925e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->macid,
2926e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_MACID_MASK);
2927e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, ctrl_para->pkt_num,
2928e3ec7017SPing-Ke Shih 			       B_AX_CPUQ_OP_PKTNUM_MASK);
2929e3ec7017SPing-Ke Shih 	val |= B_AX_WD_CPUQ_OP_EXEC;
2930e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
2931e3ec7017SPing-Ke Shih 
2932e3ec7017SPing-Ke Shih 	reg = wd ? R_AX_WD_CPUQ_OP_STATUS : R_AX_PL_CPUQ_OP_STATUS;
2933e3ec7017SPing-Ke Shih 
2934e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, val, val & B_AX_WD_CPUQ_OP_STAT_DONE,
2935e3ec7017SPing-Ke Shih 				1, 2000, false, rtwdev, reg);
2936e3ec7017SPing-Ke Shih 	if (ret)
2937e3ec7017SPing-Ke Shih 		return ret;
2938e3ec7017SPing-Ke Shih 
2939e3ec7017SPing-Ke Shih 	if (cmd_type == CPUIO_OP_CMD_GET_1ST_PID ||
2940e3ec7017SPing-Ke Shih 	    cmd_type == CPUIO_OP_CMD_GET_NEXT_PID)
2941e3ec7017SPing-Ke Shih 		ctrl_para->pktid = FIELD_GET(B_AX_WD_CPUQ_OP_PKTID_MASK, val);
2942e3ec7017SPing-Ke Shih 
2943e3ec7017SPing-Ke Shih 	return 0;
2944e3ec7017SPing-Ke Shih }
2945e3ec7017SPing-Ke Shih 
2946e3ec7017SPing-Ke Shih static int dle_quota_change(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode)
2947e3ec7017SPing-Ke Shih {
2948e3ec7017SPing-Ke Shih 	const struct rtw89_dle_mem *cfg;
2949e3ec7017SPing-Ke Shih 	struct rtw89_cpuio_ctrl ctrl_para = {0};
2950e3ec7017SPing-Ke Shih 	u16 pkt_id;
2951e3ec7017SPing-Ke Shih 	int ret;
2952e3ec7017SPing-Ke Shih 
2953e3ec7017SPing-Ke Shih 	cfg = get_dle_mem_cfg(rtwdev, mode);
2954e3ec7017SPing-Ke Shih 	if (!cfg) {
2955e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n");
2956e3ec7017SPing-Ke Shih 		return -EINVAL;
2957e3ec7017SPing-Ke Shih 	}
2958e3ec7017SPing-Ke Shih 
29595f8c35b9SPing-Ke Shih 	if (dle_used_size(cfg->wde_size, cfg->ple_size) !=
29605f8c35b9SPing-Ke Shih 	    dle_expected_used_size(rtwdev, mode)) {
2961e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n");
2962e3ec7017SPing-Ke Shih 		return -EINVAL;
2963e3ec7017SPing-Ke Shih 	}
2964e3ec7017SPing-Ke Shih 
2965e3ec7017SPing-Ke Shih 	dle_quota_cfg(rtwdev, cfg, INVALID_QT_WCPU);
2966e3ec7017SPing-Ke Shih 
2967eaddda24SPing-Ke Shih 	ret = rtw89_mac_dle_buf_req(rtwdev, 0x20, true, &pkt_id);
2968eaddda24SPing-Ke Shih 	if (ret) {
2969e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]WDE DLE buf req\n");
2970eaddda24SPing-Ke Shih 		return ret;
2971e3ec7017SPing-Ke Shih 	}
2972e3ec7017SPing-Ke Shih 
2973e3ec7017SPing-Ke Shih 	ctrl_para.cmd_type = CPUIO_OP_CMD_ENQ_TO_HEAD;
2974e3ec7017SPing-Ke Shih 	ctrl_para.start_pktid = pkt_id;
2975e3ec7017SPing-Ke Shih 	ctrl_para.end_pktid = pkt_id;
2976e3ec7017SPing-Ke Shih 	ctrl_para.pkt_num = 0;
2977e3ec7017SPing-Ke Shih 	ctrl_para.dst_pid = WDE_DLE_PORT_ID_WDRLS;
2978e3ec7017SPing-Ke Shih 	ctrl_para.dst_qid = WDE_DLE_QUEID_NO_REPORT;
2979e3ec7017SPing-Ke Shih 	ret = rtw89_mac_set_cpuio(rtwdev, &ctrl_para, true);
2980e3ec7017SPing-Ke Shih 	if (ret) {
2981e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]WDE DLE enqueue to head\n");
2982e3ec7017SPing-Ke Shih 		return -EFAULT;
2983e3ec7017SPing-Ke Shih 	}
2984e3ec7017SPing-Ke Shih 
2985eaddda24SPing-Ke Shih 	ret = rtw89_mac_dle_buf_req(rtwdev, 0x20, false, &pkt_id);
2986eaddda24SPing-Ke Shih 	if (ret) {
2987e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]PLE DLE buf req\n");
2988eaddda24SPing-Ke Shih 		return ret;
2989e3ec7017SPing-Ke Shih 	}
2990e3ec7017SPing-Ke Shih 
2991e3ec7017SPing-Ke Shih 	ctrl_para.cmd_type = CPUIO_OP_CMD_ENQ_TO_HEAD;
2992e3ec7017SPing-Ke Shih 	ctrl_para.start_pktid = pkt_id;
2993e3ec7017SPing-Ke Shih 	ctrl_para.end_pktid = pkt_id;
2994e3ec7017SPing-Ke Shih 	ctrl_para.pkt_num = 0;
2995e3ec7017SPing-Ke Shih 	ctrl_para.dst_pid = PLE_DLE_PORT_ID_PLRLS;
2996e3ec7017SPing-Ke Shih 	ctrl_para.dst_qid = PLE_DLE_QUEID_NO_REPORT;
2997e3ec7017SPing-Ke Shih 	ret = rtw89_mac_set_cpuio(rtwdev, &ctrl_para, false);
2998e3ec7017SPing-Ke Shih 	if (ret) {
2999e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]PLE DLE enqueue to head\n");
3000e3ec7017SPing-Ke Shih 		return -EFAULT;
3001e3ec7017SPing-Ke Shih 	}
3002e3ec7017SPing-Ke Shih 
3003e3ec7017SPing-Ke Shih 	return 0;
3004e3ec7017SPing-Ke Shih }
3005e3ec7017SPing-Ke Shih 
3006e3ec7017SPing-Ke Shih static int band_idle_ck_b(struct rtw89_dev *rtwdev, u8 mac_idx)
3007e3ec7017SPing-Ke Shih {
3008e3ec7017SPing-Ke Shih 	int ret;
3009e3ec7017SPing-Ke Shih 	u32 reg;
3010e3ec7017SPing-Ke Shih 	u8 val;
3011e3ec7017SPing-Ke Shih 
3012e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
3013e3ec7017SPing-Ke Shih 	if (ret)
3014e3ec7017SPing-Ke Shih 		return ret;
3015e3ec7017SPing-Ke Shih 
3016e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_PTCL_TX_CTN_SEL, mac_idx);
3017e3ec7017SPing-Ke Shih 
3018e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(rtw89_read8, val,
3019e3ec7017SPing-Ke Shih 				(val & B_AX_PTCL_TX_ON_STAT) == 0,
3020e3ec7017SPing-Ke Shih 				SW_CVR_DUR_US,
3021e3ec7017SPing-Ke Shih 				SW_CVR_DUR_US * PTCL_IDLE_POLL_CNT,
3022e3ec7017SPing-Ke Shih 				false, rtwdev, reg);
3023e3ec7017SPing-Ke Shih 	if (ret)
3024e3ec7017SPing-Ke Shih 		return ret;
3025e3ec7017SPing-Ke Shih 
3026e3ec7017SPing-Ke Shih 	return 0;
3027e3ec7017SPing-Ke Shih }
3028e3ec7017SPing-Ke Shih 
3029e3ec7017SPing-Ke Shih static int band1_enable(struct rtw89_dev *rtwdev)
3030e3ec7017SPing-Ke Shih {
3031e3ec7017SPing-Ke Shih 	int ret, i;
3032e3ec7017SPing-Ke Shih 	u32 sleep_bak[4] = {0};
3033e3ec7017SPing-Ke Shih 	u32 pause_bak[4] = {0};
3034d780f926SPing-Ke Shih 	u32 tx_en;
3035e3ec7017SPing-Ke Shih 
3036de7ba639SPing-Ke Shih 	ret = rtw89_chip_stop_sch_tx(rtwdev, 0, &tx_en, RTW89_SCH_TX_SEL_ALL);
3037e3ec7017SPing-Ke Shih 	if (ret) {
3038e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]stop sch tx %d\n", ret);
3039e3ec7017SPing-Ke Shih 		return ret;
3040e3ec7017SPing-Ke Shih 	}
3041e3ec7017SPing-Ke Shih 
3042e3ec7017SPing-Ke Shih 	for (i = 0; i < 4; i++) {
3043e3ec7017SPing-Ke Shih 		sleep_bak[i] = rtw89_read32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4);
3044e3ec7017SPing-Ke Shih 		pause_bak[i] = rtw89_read32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4);
3045e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4, U32_MAX);
3046e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4, U32_MAX);
3047e3ec7017SPing-Ke Shih 	}
3048e3ec7017SPing-Ke Shih 
3049e3ec7017SPing-Ke Shih 	ret = band_idle_ck_b(rtwdev, 0);
3050e3ec7017SPing-Ke Shih 	if (ret) {
3051e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]tx idle poll %d\n", ret);
3052e3ec7017SPing-Ke Shih 		return ret;
3053e3ec7017SPing-Ke Shih 	}
3054e3ec7017SPing-Ke Shih 
3055e3ec7017SPing-Ke Shih 	ret = dle_quota_change(rtwdev, rtwdev->mac.qta_mode);
3056e3ec7017SPing-Ke Shih 	if (ret) {
3057e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]DLE quota change %d\n", ret);
3058e3ec7017SPing-Ke Shih 		return ret;
3059e3ec7017SPing-Ke Shih 	}
3060e3ec7017SPing-Ke Shih 
3061e3ec7017SPing-Ke Shih 	for (i = 0; i < 4; i++) {
3062e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4, sleep_bak[i]);
3063e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4, pause_bak[i]);
3064e3ec7017SPing-Ke Shih 	}
3065e3ec7017SPing-Ke Shih 
3066de7ba639SPing-Ke Shih 	ret = rtw89_chip_resume_sch_tx(rtwdev, 0, tx_en);
3067e3ec7017SPing-Ke Shih 	if (ret) {
3068e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC1 resume sch tx %d\n", ret);
3069e3ec7017SPing-Ke Shih 		return ret;
3070e3ec7017SPing-Ke Shih 	}
3071e3ec7017SPing-Ke Shih 
3072e3ec7017SPing-Ke Shih 	ret = cmac_func_en(rtwdev, 1, true);
3073e3ec7017SPing-Ke Shih 	if (ret) {
3074e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC1 func en %d\n", ret);
3075e3ec7017SPing-Ke Shih 		return ret;
3076e3ec7017SPing-Ke Shih 	}
3077e3ec7017SPing-Ke Shih 
3078e3ec7017SPing-Ke Shih 	ret = cmac_init(rtwdev, 1);
3079e3ec7017SPing-Ke Shih 	if (ret) {
3080e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC1 init %d\n", ret);
3081e3ec7017SPing-Ke Shih 		return ret;
3082e3ec7017SPing-Ke Shih 	}
3083e3ec7017SPing-Ke Shih 
3084e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND,
3085e3ec7017SPing-Ke Shih 			  B_AX_R_SYM_FEN_WLBBFUN_1 | B_AX_R_SYM_FEN_WLBBGLB_1);
3086e3ec7017SPing-Ke Shih 
3087e3ec7017SPing-Ke Shih 	return 0;
3088e3ec7017SPing-Ke Shih }
3089e3ec7017SPing-Ke Shih 
3090eeadcd2aSChia-Yuan Li static void rtw89_wdrls_imr_enable(struct rtw89_dev *rtwdev)
3091eeadcd2aSChia-Yuan Li {
3092eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3093eeadcd2aSChia-Yuan Li 
3094eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_WDRLS_ERR_IMR, B_AX_WDRLS_IMR_EN_CLR);
3095eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_WDRLS_ERR_IMR, imr->wdrls_imr_set);
3096eeadcd2aSChia-Yuan Li }
3097eeadcd2aSChia-Yuan Li 
3098eeadcd2aSChia-Yuan Li static void rtw89_wsec_imr_enable(struct rtw89_dev *rtwdev)
3099eeadcd2aSChia-Yuan Li {
3100eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3101eeadcd2aSChia-Yuan Li 
3102eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, imr->wsec_imr_reg, imr->wsec_imr_set);
3103eeadcd2aSChia-Yuan Li }
3104eeadcd2aSChia-Yuan Li 
3105eeadcd2aSChia-Yuan Li static void rtw89_mpdu_trx_imr_enable(struct rtw89_dev *rtwdev)
3106eeadcd2aSChia-Yuan Li {
3107eeadcd2aSChia-Yuan Li 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
3108eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3109eeadcd2aSChia-Yuan Li 
3110eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_MPDU_TX_ERR_IMR,
3111eeadcd2aSChia-Yuan Li 			  B_AX_TX_GET_ERRPKTID_INT_EN |
3112eeadcd2aSChia-Yuan Li 			  B_AX_TX_NXT_ERRPKTID_INT_EN |
3113eeadcd2aSChia-Yuan Li 			  B_AX_TX_MPDU_SIZE_ZERO_INT_EN |
3114eeadcd2aSChia-Yuan Li 			  B_AX_TX_OFFSET_ERR_INT_EN |
3115eeadcd2aSChia-Yuan Li 			  B_AX_TX_HDR3_SIZE_ERR_INT_EN);
3116eeadcd2aSChia-Yuan Li 	if (chip_id == RTL8852C)
3117eeadcd2aSChia-Yuan Li 		rtw89_write32_clr(rtwdev, R_AX_MPDU_TX_ERR_IMR,
3118eeadcd2aSChia-Yuan Li 				  B_AX_TX_ETH_TYPE_ERR_EN |
3119eeadcd2aSChia-Yuan Li 				  B_AX_TX_LLC_PRE_ERR_EN |
3120eeadcd2aSChia-Yuan Li 				  B_AX_TX_NW_TYPE_ERR_EN |
3121eeadcd2aSChia-Yuan Li 				  B_AX_TX_KSRCH_ERR_EN);
3122eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_MPDU_TX_ERR_IMR,
3123eeadcd2aSChia-Yuan Li 			  imr->mpdu_tx_imr_set);
3124eeadcd2aSChia-Yuan Li 
3125eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_MPDU_RX_ERR_IMR,
3126eeadcd2aSChia-Yuan Li 			  B_AX_GETPKTID_ERR_INT_EN |
3127eeadcd2aSChia-Yuan Li 			  B_AX_MHDRLEN_ERR_INT_EN |
3128eeadcd2aSChia-Yuan Li 			  B_AX_RPT_ERR_INT_EN);
3129eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_MPDU_RX_ERR_IMR,
3130eeadcd2aSChia-Yuan Li 			  imr->mpdu_rx_imr_set);
3131eeadcd2aSChia-Yuan Li }
3132eeadcd2aSChia-Yuan Li 
3133eeadcd2aSChia-Yuan Li static void rtw89_sta_sch_imr_enable(struct rtw89_dev *rtwdev)
3134eeadcd2aSChia-Yuan Li {
3135eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3136eeadcd2aSChia-Yuan Li 
3137eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_STA_SCHEDULER_ERR_IMR,
3138eeadcd2aSChia-Yuan Li 			  B_AX_SEARCH_HANG_TIMEOUT_INT_EN |
3139eeadcd2aSChia-Yuan Li 			  B_AX_RPT_HANG_TIMEOUT_INT_EN |
3140eeadcd2aSChia-Yuan Li 			  B_AX_PLE_B_PKTID_ERR_INT_EN);
3141eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_STA_SCHEDULER_ERR_IMR,
3142eeadcd2aSChia-Yuan Li 			  imr->sta_sch_imr_set);
3143eeadcd2aSChia-Yuan Li }
3144eeadcd2aSChia-Yuan Li 
3145eeadcd2aSChia-Yuan Li static void rtw89_txpktctl_imr_enable(struct rtw89_dev *rtwdev)
3146eeadcd2aSChia-Yuan Li {
3147eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3148eeadcd2aSChia-Yuan Li 
3149eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, imr->txpktctl_imr_b0_reg,
3150eeadcd2aSChia-Yuan Li 			  imr->txpktctl_imr_b0_clr);
3151eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, imr->txpktctl_imr_b0_reg,
3152eeadcd2aSChia-Yuan Li 			  imr->txpktctl_imr_b0_set);
3153eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, imr->txpktctl_imr_b1_reg,
3154eeadcd2aSChia-Yuan Li 			  imr->txpktctl_imr_b1_clr);
3155eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, imr->txpktctl_imr_b1_reg,
3156eeadcd2aSChia-Yuan Li 			  imr->txpktctl_imr_b1_set);
3157eeadcd2aSChia-Yuan Li }
3158eeadcd2aSChia-Yuan Li 
3159eeadcd2aSChia-Yuan Li static void rtw89_wde_imr_enable(struct rtw89_dev *rtwdev)
3160eeadcd2aSChia-Yuan Li {
3161eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3162eeadcd2aSChia-Yuan Li 
3163eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_WDE_ERR_IMR, imr->wde_imr_clr);
3164eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_WDE_ERR_IMR, imr->wde_imr_set);
3165eeadcd2aSChia-Yuan Li }
3166eeadcd2aSChia-Yuan Li 
3167eeadcd2aSChia-Yuan Li static void rtw89_ple_imr_enable(struct rtw89_dev *rtwdev)
3168eeadcd2aSChia-Yuan Li {
3169eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3170eeadcd2aSChia-Yuan Li 
3171eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_PLE_ERR_IMR, imr->ple_imr_clr);
3172eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_PLE_ERR_IMR, imr->ple_imr_set);
3173eeadcd2aSChia-Yuan Li }
3174eeadcd2aSChia-Yuan Li 
3175eeadcd2aSChia-Yuan Li static void rtw89_pktin_imr_enable(struct rtw89_dev *rtwdev)
3176eeadcd2aSChia-Yuan Li {
3177eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_PKTIN_ERR_IMR,
3178eeadcd2aSChia-Yuan Li 			  B_AX_PKTIN_GETPKTID_ERR_INT_EN);
3179eeadcd2aSChia-Yuan Li }
3180eeadcd2aSChia-Yuan Li 
3181eeadcd2aSChia-Yuan Li static void rtw89_dispatcher_imr_enable(struct rtw89_dev *rtwdev)
3182eeadcd2aSChia-Yuan Li {
3183eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3184eeadcd2aSChia-Yuan Li 
3185eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR,
3186eeadcd2aSChia-Yuan Li 			  imr->host_disp_imr_clr);
3187eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR,
3188eeadcd2aSChia-Yuan Li 			  imr->host_disp_imr_set);
3189eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR,
3190eeadcd2aSChia-Yuan Li 			  imr->cpu_disp_imr_clr);
3191eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR,
3192eeadcd2aSChia-Yuan Li 			  imr->cpu_disp_imr_set);
3193eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR,
3194eeadcd2aSChia-Yuan Li 			  imr->other_disp_imr_clr);
3195eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR,
3196eeadcd2aSChia-Yuan Li 			  imr->other_disp_imr_set);
3197eeadcd2aSChia-Yuan Li }
3198eeadcd2aSChia-Yuan Li 
3199eeadcd2aSChia-Yuan Li static void rtw89_cpuio_imr_enable(struct rtw89_dev *rtwdev)
3200eeadcd2aSChia-Yuan Li {
3201eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_CPUIO_ERR_IMR, B_AX_CPUIO_IMR_CLR);
3202eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_CPUIO_ERR_IMR, B_AX_CPUIO_IMR_SET);
3203eeadcd2aSChia-Yuan Li }
3204eeadcd2aSChia-Yuan Li 
3205eeadcd2aSChia-Yuan Li static void rtw89_bbrpt_imr_enable(struct rtw89_dev *rtwdev)
3206eeadcd2aSChia-Yuan Li {
3207eeadcd2aSChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3208eeadcd2aSChia-Yuan Li 
320975f1ed29SPing-Ke Shih 	rtw89_write32_set(rtwdev, imr->bbrpt_com_err_imr_reg,
3210eeadcd2aSChia-Yuan Li 			  B_AX_BBRPT_COM_NULL_PLPKTID_ERR_INT_EN);
3211eeadcd2aSChia-Yuan Li 	rtw89_write32_clr(rtwdev, imr->bbrpt_chinfo_err_imr_reg,
3212eeadcd2aSChia-Yuan Li 			  B_AX_BBRPT_CHINFO_IMR_CLR);
3213eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, imr->bbrpt_chinfo_err_imr_reg,
3214eeadcd2aSChia-Yuan Li 			  imr->bbrpt_err_imr_set);
3215eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, imr->bbrpt_dfs_err_imr_reg,
3216eeadcd2aSChia-Yuan Li 			  B_AX_BBRPT_DFS_TO_ERR_INT_EN);
3217eeadcd2aSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_LA_ERRFLAG, B_AX_LA_IMR_DATA_LOSS_ERR);
3218eeadcd2aSChia-Yuan Li }
3219eeadcd2aSChia-Yuan Li 
3220d86369e9SChia-Yuan Li static void rtw89_scheduler_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3221d86369e9SChia-Yuan Li {
3222d86369e9SChia-Yuan Li 	u32 reg;
3223d86369e9SChia-Yuan Li 
3224d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(R_AX_SCHEDULE_ERR_IMR, mac_idx);
3225d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, B_AX_SORT_NON_IDLE_ERR_INT_EN |
3226d86369e9SChia-Yuan Li 				       B_AX_FSM_TIMEOUT_ERR_INT_EN);
3227d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, B_AX_FSM_TIMEOUT_ERR_INT_EN);
3228d86369e9SChia-Yuan Li }
3229d86369e9SChia-Yuan Li 
3230d86369e9SChia-Yuan Li static void rtw89_ptcl_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3231d86369e9SChia-Yuan Li {
3232d86369e9SChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3233d86369e9SChia-Yuan Li 	u32 reg;
3234d86369e9SChia-Yuan Li 
3235d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(R_AX_PTCL_IMR0, mac_idx);
3236d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, imr->ptcl_imr_clr);
3237d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, imr->ptcl_imr_set);
3238d86369e9SChia-Yuan Li }
3239d86369e9SChia-Yuan Li 
3240d86369e9SChia-Yuan Li static void rtw89_cdma_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3241d86369e9SChia-Yuan Li {
3242d86369e9SChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3243d86369e9SChia-Yuan Li 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
3244d86369e9SChia-Yuan Li 	u32 reg;
3245d86369e9SChia-Yuan Li 
3246d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(imr->cdma_imr_0_reg, mac_idx);
3247d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, imr->cdma_imr_0_clr);
3248d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, imr->cdma_imr_0_set);
3249d86369e9SChia-Yuan Li 
3250d86369e9SChia-Yuan Li 	if (chip_id == RTL8852C) {
3251d86369e9SChia-Yuan Li 		reg = rtw89_mac_reg_by_idx(imr->cdma_imr_1_reg, mac_idx);
3252d86369e9SChia-Yuan Li 		rtw89_write32_clr(rtwdev, reg, imr->cdma_imr_1_clr);
3253d86369e9SChia-Yuan Li 		rtw89_write32_set(rtwdev, reg, imr->cdma_imr_1_set);
3254d86369e9SChia-Yuan Li 	}
3255d86369e9SChia-Yuan Li }
3256d86369e9SChia-Yuan Li 
3257d86369e9SChia-Yuan Li static void rtw89_phy_intf_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3258d86369e9SChia-Yuan Li {
3259d86369e9SChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3260d86369e9SChia-Yuan Li 	u32 reg;
3261d86369e9SChia-Yuan Li 
3262d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(imr->phy_intf_imr_reg, mac_idx);
3263d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, imr->phy_intf_imr_clr);
3264d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, imr->phy_intf_imr_set);
3265d86369e9SChia-Yuan Li }
3266d86369e9SChia-Yuan Li 
3267d86369e9SChia-Yuan Li static void rtw89_rmac_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3268d86369e9SChia-Yuan Li {
3269d86369e9SChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3270d86369e9SChia-Yuan Li 	u32 reg;
3271d86369e9SChia-Yuan Li 
3272d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(imr->rmac_imr_reg, mac_idx);
3273d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, imr->rmac_imr_clr);
3274d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, imr->rmac_imr_set);
3275d86369e9SChia-Yuan Li }
3276d86369e9SChia-Yuan Li 
3277d86369e9SChia-Yuan Li static void rtw89_tmac_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx)
3278d86369e9SChia-Yuan Li {
3279d86369e9SChia-Yuan Li 	const struct rtw89_imr_info *imr = rtwdev->chip->imr_info;
3280d86369e9SChia-Yuan Li 	u32 reg;
3281d86369e9SChia-Yuan Li 
3282d86369e9SChia-Yuan Li 	reg = rtw89_mac_reg_by_idx(imr->tmac_imr_reg, mac_idx);
3283d86369e9SChia-Yuan Li 	rtw89_write32_clr(rtwdev, reg, imr->tmac_imr_clr);
3284d86369e9SChia-Yuan Li 	rtw89_write32_set(rtwdev, reg, imr->tmac_imr_set);
3285d86369e9SChia-Yuan Li }
3286d86369e9SChia-Yuan Li 
3287e3ec7017SPing-Ke Shih static int rtw89_mac_enable_imr(struct rtw89_dev *rtwdev, u8 mac_idx,
3288e3ec7017SPing-Ke Shih 				enum rtw89_mac_hwmod_sel sel)
3289e3ec7017SPing-Ke Shih {
3290e3ec7017SPing-Ke Shih 	int ret;
3291e3ec7017SPing-Ke Shih 
3292e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, sel);
3293e3ec7017SPing-Ke Shih 	if (ret) {
3294e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "MAC%d mac_idx%d is not ready\n",
3295e3ec7017SPing-Ke Shih 			  sel, mac_idx);
3296e3ec7017SPing-Ke Shih 		return ret;
3297e3ec7017SPing-Ke Shih 	}
3298e3ec7017SPing-Ke Shih 
3299e3ec7017SPing-Ke Shih 	if (sel == RTW89_DMAC_SEL) {
3300eeadcd2aSChia-Yuan Li 		rtw89_wdrls_imr_enable(rtwdev);
3301eeadcd2aSChia-Yuan Li 		rtw89_wsec_imr_enable(rtwdev);
3302eeadcd2aSChia-Yuan Li 		rtw89_mpdu_trx_imr_enable(rtwdev);
3303eeadcd2aSChia-Yuan Li 		rtw89_sta_sch_imr_enable(rtwdev);
3304eeadcd2aSChia-Yuan Li 		rtw89_txpktctl_imr_enable(rtwdev);
3305eeadcd2aSChia-Yuan Li 		rtw89_wde_imr_enable(rtwdev);
3306eeadcd2aSChia-Yuan Li 		rtw89_ple_imr_enable(rtwdev);
3307eeadcd2aSChia-Yuan Li 		rtw89_pktin_imr_enable(rtwdev);
3308eeadcd2aSChia-Yuan Li 		rtw89_dispatcher_imr_enable(rtwdev);
3309eeadcd2aSChia-Yuan Li 		rtw89_cpuio_imr_enable(rtwdev);
3310eeadcd2aSChia-Yuan Li 		rtw89_bbrpt_imr_enable(rtwdev);
3311e3ec7017SPing-Ke Shih 	} else if (sel == RTW89_CMAC_SEL) {
3312d86369e9SChia-Yuan Li 		rtw89_scheduler_imr_enable(rtwdev, mac_idx);
3313d86369e9SChia-Yuan Li 		rtw89_ptcl_imr_enable(rtwdev, mac_idx);
3314d86369e9SChia-Yuan Li 		rtw89_cdma_imr_enable(rtwdev, mac_idx);
3315d86369e9SChia-Yuan Li 		rtw89_phy_intf_imr_enable(rtwdev, mac_idx);
3316d86369e9SChia-Yuan Li 		rtw89_rmac_imr_enable(rtwdev, mac_idx);
3317d86369e9SChia-Yuan Li 		rtw89_tmac_imr_enable(rtwdev, mac_idx);
3318e3ec7017SPing-Ke Shih 	} else {
3319e3ec7017SPing-Ke Shih 		return -EINVAL;
3320e3ec7017SPing-Ke Shih 	}
3321e3ec7017SPing-Ke Shih 
3322e3ec7017SPing-Ke Shih 	return 0;
3323e3ec7017SPing-Ke Shih }
3324e3ec7017SPing-Ke Shih 
33259f405b01SPing-Ke Shih static void rtw89_mac_err_imr_ctrl(struct rtw89_dev *rtwdev, bool en)
33269f405b01SPing-Ke Shih {
33279f405b01SPing-Ke Shih 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
33289f405b01SPing-Ke Shih 
33299f405b01SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_DMAC_ERR_IMR,
33309f405b01SPing-Ke Shih 		      en ? DMAC_ERR_IMR_EN : DMAC_ERR_IMR_DIS);
33319f405b01SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_CMAC_ERR_IMR,
33329f405b01SPing-Ke Shih 		      en ? CMAC0_ERR_IMR_EN : CMAC0_ERR_IMR_DIS);
33339f405b01SPing-Ke Shih 	if (chip_id != RTL8852B && rtwdev->mac.dle_info.c1_rx_qta)
33349f405b01SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_CMAC_ERR_IMR_C1,
33359f405b01SPing-Ke Shih 			      en ? CMAC1_ERR_IMR_EN : CMAC1_ERR_IMR_DIS);
33369f405b01SPing-Ke Shih }
33379f405b01SPing-Ke Shih 
3338e3ec7017SPing-Ke Shih static int rtw89_mac_dbcc_enable(struct rtw89_dev *rtwdev, bool enable)
3339e3ec7017SPing-Ke Shih {
3340e3ec7017SPing-Ke Shih 	int ret = 0;
3341e3ec7017SPing-Ke Shih 
3342e3ec7017SPing-Ke Shih 	if (enable) {
3343e3ec7017SPing-Ke Shih 		ret = band1_enable(rtwdev);
3344e3ec7017SPing-Ke Shih 		if (ret) {
3345e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev, "[ERR] band1_enable %d\n", ret);
3346e3ec7017SPing-Ke Shih 			return ret;
3347e3ec7017SPing-Ke Shih 		}
3348e3ec7017SPing-Ke Shih 
3349e3ec7017SPing-Ke Shih 		ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_1, RTW89_CMAC_SEL);
3350e3ec7017SPing-Ke Shih 		if (ret) {
3351e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev, "[ERR] enable CMAC1 IMR %d\n", ret);
3352e3ec7017SPing-Ke Shih 			return ret;
3353e3ec7017SPing-Ke Shih 		}
3354e3ec7017SPing-Ke Shih 	} else {
3355e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR] disable dbcc is not implemented not\n");
3356e3ec7017SPing-Ke Shih 		return -EINVAL;
3357e3ec7017SPing-Ke Shih 	}
3358e3ec7017SPing-Ke Shih 
3359e3ec7017SPing-Ke Shih 	return 0;
3360e3ec7017SPing-Ke Shih }
3361e3ec7017SPing-Ke Shih 
3362e3ec7017SPing-Ke Shih static int set_host_rpr(struct rtw89_dev *rtwdev)
3363e3ec7017SPing-Ke Shih {
3364e3ec7017SPing-Ke Shih 	if (rtwdev->hci.type == RTW89_HCI_TYPE_PCIE) {
3365e3ec7017SPing-Ke Shih 		rtw89_write32_mask(rtwdev, R_AX_WDRLS_CFG,
3366e3ec7017SPing-Ke Shih 				   B_AX_WDRLS_MODE_MASK, RTW89_RPR_MODE_POH);
3367e3ec7017SPing-Ke Shih 		rtw89_write32_set(rtwdev, R_AX_RLSRPT0_CFG0,
3368e3ec7017SPing-Ke Shih 				  B_AX_RLSRPT0_FLTR_MAP_MASK);
3369e3ec7017SPing-Ke Shih 	} else {
3370e3ec7017SPing-Ke Shih 		rtw89_write32_mask(rtwdev, R_AX_WDRLS_CFG,
3371e3ec7017SPing-Ke Shih 				   B_AX_WDRLS_MODE_MASK, RTW89_RPR_MODE_STF);
3372e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, R_AX_RLSRPT0_CFG0,
3373e3ec7017SPing-Ke Shih 				  B_AX_RLSRPT0_FLTR_MAP_MASK);
3374e3ec7017SPing-Ke Shih 	}
3375e3ec7017SPing-Ke Shih 
3376e3ec7017SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_RLSRPT0_CFG1, B_AX_RLSRPT0_AGGNUM_MASK, 30);
3377e3ec7017SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_RLSRPT0_CFG1, B_AX_RLSRPT0_TO_MASK, 255);
3378e3ec7017SPing-Ke Shih 
3379e3ec7017SPing-Ke Shih 	return 0;
3380e3ec7017SPing-Ke Shih }
3381e3ec7017SPing-Ke Shih 
3382e3ec7017SPing-Ke Shih static int rtw89_mac_trx_init(struct rtw89_dev *rtwdev)
3383e3ec7017SPing-Ke Shih {
3384e3ec7017SPing-Ke Shih 	enum rtw89_qta_mode qta_mode = rtwdev->mac.qta_mode;
3385e3ec7017SPing-Ke Shih 	int ret;
3386e3ec7017SPing-Ke Shih 
3387e3ec7017SPing-Ke Shih 	ret = dmac_init(rtwdev, 0);
3388e3ec7017SPing-Ke Shih 	if (ret) {
3389e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]DMAC init %d\n", ret);
3390e3ec7017SPing-Ke Shih 		return ret;
3391e3ec7017SPing-Ke Shih 	}
3392e3ec7017SPing-Ke Shih 
3393e3ec7017SPing-Ke Shih 	ret = cmac_init(rtwdev, 0);
3394e3ec7017SPing-Ke Shih 	if (ret) {
3395e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]CMAC%d init %d\n", 0, ret);
3396e3ec7017SPing-Ke Shih 		return ret;
3397e3ec7017SPing-Ke Shih 	}
3398e3ec7017SPing-Ke Shih 
3399e3ec7017SPing-Ke Shih 	if (is_qta_dbcc(rtwdev, qta_mode)) {
3400e3ec7017SPing-Ke Shih 		ret = rtw89_mac_dbcc_enable(rtwdev, true);
3401e3ec7017SPing-Ke Shih 		if (ret) {
3402e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev, "[ERR]dbcc_enable init %d\n", ret);
3403e3ec7017SPing-Ke Shih 			return ret;
3404e3ec7017SPing-Ke Shih 		}
3405e3ec7017SPing-Ke Shih 	}
3406e3ec7017SPing-Ke Shih 
3407e3ec7017SPing-Ke Shih 	ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL);
3408e3ec7017SPing-Ke Shih 	if (ret) {
3409e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR] enable DMAC IMR %d\n", ret);
3410e3ec7017SPing-Ke Shih 		return ret;
3411e3ec7017SPing-Ke Shih 	}
3412e3ec7017SPing-Ke Shih 
3413e3ec7017SPing-Ke Shih 	ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_0, RTW89_CMAC_SEL);
3414e3ec7017SPing-Ke Shih 	if (ret) {
3415e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR] to enable CMAC0 IMR %d\n", ret);
3416e3ec7017SPing-Ke Shih 		return ret;
3417e3ec7017SPing-Ke Shih 	}
3418e3ec7017SPing-Ke Shih 
34199f405b01SPing-Ke Shih 	rtw89_mac_err_imr_ctrl(rtwdev, true);
34209f405b01SPing-Ke Shih 
3421e3ec7017SPing-Ke Shih 	ret = set_host_rpr(rtwdev);
3422e3ec7017SPing-Ke Shih 	if (ret) {
3423e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR] set host rpr %d\n", ret);
3424e3ec7017SPing-Ke Shih 		return ret;
3425e3ec7017SPing-Ke Shih 	}
3426e3ec7017SPing-Ke Shih 
3427e3ec7017SPing-Ke Shih 	return 0;
3428e3ec7017SPing-Ke Shih }
3429e3ec7017SPing-Ke Shih 
3430ec356ffbSChia-Yuan Li static void rtw89_disable_fw_watchdog(struct rtw89_dev *rtwdev)
3431ec356ffbSChia-Yuan Li {
34325c3afcbaSPing-Ke Shih 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
3433ec356ffbSChia-Yuan Li 	u32 val32;
3434ec356ffbSChia-Yuan Li 
34355c3afcbaSPing-Ke Shih 	if (chip_id == RTL8852B || chip_id == RTL8851B) {
34365c3afcbaSPing-Ke Shih 		rtw89_write32_clr(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_APB_WRAP_EN);
34375c3afcbaSPing-Ke Shih 		rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_APB_WRAP_EN);
34385c3afcbaSPing-Ke Shih 		return;
34395c3afcbaSPing-Ke Shih 	}
34405c3afcbaSPing-Ke Shih 
3441ec356ffbSChia-Yuan Li 	rtw89_mac_mem_write(rtwdev, R_AX_WDT_CTRL,
3442ec356ffbSChia-Yuan Li 			    WDT_CTRL_ALL_DIS, RTW89_MAC_MEM_CPU_LOCAL);
3443ec356ffbSChia-Yuan Li 
3444ec356ffbSChia-Yuan Li 	val32 = rtw89_mac_mem_read(rtwdev, R_AX_WDT_STATUS, RTW89_MAC_MEM_CPU_LOCAL);
3445ec356ffbSChia-Yuan Li 	val32 |= B_AX_FS_WDT_INT;
3446ec356ffbSChia-Yuan Li 	val32 &= ~B_AX_FS_WDT_INT_MSK;
3447ec356ffbSChia-Yuan Li 	rtw89_mac_mem_write(rtwdev, R_AX_WDT_STATUS, val32, RTW89_MAC_MEM_CPU_LOCAL);
3448ec356ffbSChia-Yuan Li }
3449ec356ffbSChia-Yuan Li 
34505f05bdb0SChih-Kang Chang void rtw89_mac_disable_cpu(struct rtw89_dev *rtwdev)
3451e3ec7017SPing-Ke Shih {
3452e3ec7017SPing-Ke Shih 	clear_bit(RTW89_FLAG_FW_RDY, rtwdev->flags);
3453e3ec7017SPing-Ke Shih 
3454e3ec7017SPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_WCPU_EN);
3455de78869dSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_WCPU_FW_CTRL, B_AX_WCPU_FWDL_EN |
3456de78869dSChia-Yuan Li 			  B_AX_H2C_PATH_RDY | B_AX_FWDL_PATH_RDY);
3457e3ec7017SPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_SYS_CLK_CTRL, B_AX_CPU_CLK_EN);
3458ec356ffbSChia-Yuan Li 
3459ec356ffbSChia-Yuan Li 	rtw89_disable_fw_watchdog(rtwdev);
3460ec356ffbSChia-Yuan Li 
3461de78869dSChia-Yuan Li 	rtw89_write32_clr(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_PLATFORM_EN);
3462de78869dSChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_PLATFORM_EN);
3463e3ec7017SPing-Ke Shih }
3464e3ec7017SPing-Ke Shih 
34655f05bdb0SChih-Kang Chang int rtw89_mac_enable_cpu(struct rtw89_dev *rtwdev, u8 boot_reason, bool dlfw)
3466e3ec7017SPing-Ke Shih {
3467e3ec7017SPing-Ke Shih 	u32 val;
3468e3ec7017SPing-Ke Shih 	int ret;
3469e3ec7017SPing-Ke Shih 
3470e3ec7017SPing-Ke Shih 	if (rtw89_read32(rtwdev, R_AX_PLATFORM_ENABLE) & B_AX_WCPU_EN)
3471e3ec7017SPing-Ke Shih 		return -EFAULT;
3472e3ec7017SPing-Ke Shih 
3473e749ef96SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_UDM1, 0);
3474e749ef96SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_UDM2, 0);
3475e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_H2C_CTRL, 0);
3476e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_C2H_CTRL, 0);
3477a63ae673SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_H2C, 0);
3478a63ae673SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HALT_C2H, 0);
3479e3ec7017SPing-Ke Shih 
3480e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_SYS_CLK_CTRL, B_AX_CPU_CLK_EN);
3481e3ec7017SPing-Ke Shih 
3482e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_WCPU_FW_CTRL);
3483e3ec7017SPing-Ke Shih 	val &= ~(B_AX_WCPU_FWDL_EN | B_AX_H2C_PATH_RDY | B_AX_FWDL_PATH_RDY);
3484e3ec7017SPing-Ke Shih 	val = u32_replace_bits(val, RTW89_FWDL_INITIAL_STATE,
3485e3ec7017SPing-Ke Shih 			       B_AX_WCPU_FWDL_STS_MASK);
3486e3ec7017SPing-Ke Shih 
3487e3ec7017SPing-Ke Shih 	if (dlfw)
3488e3ec7017SPing-Ke Shih 		val |= B_AX_WCPU_FWDL_EN;
3489e3ec7017SPing-Ke Shih 
3490e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_WCPU_FW_CTRL, val);
34912e5a65f5SPing-Ke Shih 
34922e5a65f5SPing-Ke Shih 	if (rtwdev->chip->chip_id == RTL8852B)
34932e5a65f5SPing-Ke Shih 		rtw89_write32_mask(rtwdev, R_AX_SEC_CTRL,
34942e5a65f5SPing-Ke Shih 				   B_AX_SEC_IDMEM_SIZE_CONFIG_MASK, 0x2);
34952e5a65f5SPing-Ke Shih 
3496e3ec7017SPing-Ke Shih 	rtw89_write16_mask(rtwdev, R_AX_BOOT_REASON, B_AX_BOOT_REASON_MASK,
3497e3ec7017SPing-Ke Shih 			   boot_reason);
3498e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_WCPU_EN);
3499e3ec7017SPing-Ke Shih 
3500e3ec7017SPing-Ke Shih 	if (!dlfw) {
3501e3ec7017SPing-Ke Shih 		mdelay(5);
3502e3ec7017SPing-Ke Shih 
3503e3ec7017SPing-Ke Shih 		ret = rtw89_fw_check_rdy(rtwdev);
3504e3ec7017SPing-Ke Shih 		if (ret)
3505e3ec7017SPing-Ke Shih 			return ret;
3506e3ec7017SPing-Ke Shih 	}
3507e3ec7017SPing-Ke Shih 
3508e3ec7017SPing-Ke Shih 	return 0;
3509e3ec7017SPing-Ke Shih }
3510e3ec7017SPing-Ke Shih 
3511a7d82a7aSPing-Ke Shih static int rtw89_mac_dmac_pre_init(struct rtw89_dev *rtwdev)
3512e3ec7017SPing-Ke Shih {
3513a7d82a7aSPing-Ke Shih 	enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id;
3514e3ec7017SPing-Ke Shih 	u32 val;
3515e3ec7017SPing-Ke Shih 	int ret;
3516e3ec7017SPing-Ke Shih 
3517a7d82a7aSPing-Ke Shih 	if (chip_id == RTL8852C)
3518a7d82a7aSPing-Ke Shih 		val = B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | B_AX_DISPATCHER_EN |
3519a7d82a7aSPing-Ke Shih 		      B_AX_PKT_BUF_EN | B_AX_H_AXIDMA_EN;
3520a7d82a7aSPing-Ke Shih 	else
3521e3ec7017SPing-Ke Shih 		val = B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | B_AX_DISPATCHER_EN |
3522e3ec7017SPing-Ke Shih 		      B_AX_PKT_BUF_EN;
3523e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_DMAC_FUNC_EN, val);
3524e3ec7017SPing-Ke Shih 
35255c3afcbaSPing-Ke Shih 	if (chip_id == RTL8851B)
35265c3afcbaSPing-Ke Shih 		val = B_AX_DISPATCHER_CLK_EN | B_AX_AXIDMA_CLK_EN;
35275c3afcbaSPing-Ke Shih 	else
3528e3ec7017SPing-Ke Shih 		val = B_AX_DISPATCHER_CLK_EN;
3529e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_DMAC_CLK_EN, val);
3530e3ec7017SPing-Ke Shih 
3531a7d82a7aSPing-Ke Shih 	if (chip_id != RTL8852C)
3532a7d82a7aSPing-Ke Shih 		goto dle;
3533a7d82a7aSPing-Ke Shih 
3534a7d82a7aSPing-Ke Shih 	val = rtw89_read32(rtwdev, R_AX_HAXI_INIT_CFG1);
3535a7d82a7aSPing-Ke Shih 	val &= ~(B_AX_DMA_MODE_MASK | B_AX_STOP_AXI_MST);
3536a7d82a7aSPing-Ke Shih 	val |= FIELD_PREP(B_AX_DMA_MODE_MASK, DMA_MOD_PCIE_1B) |
3537a7d82a7aSPing-Ke Shih 	       B_AX_TXHCI_EN_V1 | B_AX_RXHCI_EN_V1;
3538a7d82a7aSPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_HAXI_INIT_CFG1, val);
3539a7d82a7aSPing-Ke Shih 
3540a7d82a7aSPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_HAXI_DMA_STOP1,
3541a7d82a7aSPing-Ke Shih 			  B_AX_STOP_ACH0 | B_AX_STOP_ACH1 | B_AX_STOP_ACH3 |
3542a7d82a7aSPing-Ke Shih 			  B_AX_STOP_ACH4 | B_AX_STOP_ACH5 | B_AX_STOP_ACH6 |
3543a7d82a7aSPing-Ke Shih 			  B_AX_STOP_ACH7 | B_AX_STOP_CH8 | B_AX_STOP_CH9 |
3544a7d82a7aSPing-Ke Shih 			  B_AX_STOP_CH12 | B_AX_STOP_ACH2);
3545a7d82a7aSPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_HAXI_DMA_STOP2, B_AX_STOP_CH10 | B_AX_STOP_CH11);
3546a7d82a7aSPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_AXIDMA_EN);
3547a7d82a7aSPing-Ke Shih 
3548a7d82a7aSPing-Ke Shih dle:
3549e3ec7017SPing-Ke Shih 	ret = dle_init(rtwdev, RTW89_QTA_DLFW, rtwdev->mac.qta_mode);
3550e3ec7017SPing-Ke Shih 	if (ret) {
3551e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]DLE pre init %d\n", ret);
3552e3ec7017SPing-Ke Shih 		return ret;
3553e3ec7017SPing-Ke Shih 	}
3554e3ec7017SPing-Ke Shih 
3555e3ec7017SPing-Ke Shih 	ret = hfc_init(rtwdev, true, false, true);
3556e3ec7017SPing-Ke Shih 	if (ret) {
3557e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[ERR]HCI FC pre init %d\n", ret);
3558e3ec7017SPing-Ke Shih 		return ret;
3559e3ec7017SPing-Ke Shih 	}
3560e3ec7017SPing-Ke Shih 
3561e3ec7017SPing-Ke Shih 	return ret;
3562e3ec7017SPing-Ke Shih }
3563e3ec7017SPing-Ke Shih 
356461ebeecbSPing-Ke Shih int rtw89_mac_enable_bb_rf(struct rtw89_dev *rtwdev)
3565e3ec7017SPing-Ke Shih {
3566e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_SYS_FUNC_EN,
3567e3ec7017SPing-Ke Shih 			 B_AX_FEN_BBRSTB | B_AX_FEN_BB_GLB_RSTN);
3568e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, R_AX_WLRF_CTRL,
3569e3ec7017SPing-Ke Shih 			  B_AX_WLRF1_CTRL_7 | B_AX_WLRF1_CTRL_1 |
3570e3ec7017SPing-Ke Shih 			  B_AX_WLRF_CTRL_7 | B_AX_WLRF_CTRL_1);
3571e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_PHYREG_SET, PHYREG_SET_ALL_CYCLE);
357261ebeecbSPing-Ke Shih 
357361ebeecbSPing-Ke Shih 	return 0;
3574e3ec7017SPing-Ke Shih }
357561ebeecbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_enable_bb_rf);
3576e3ec7017SPing-Ke Shih 
357714b6e9f4SPing-Ke Shih int rtw89_mac_disable_bb_rf(struct rtw89_dev *rtwdev)
3578e3ec7017SPing-Ke Shih {
3579e3ec7017SPing-Ke Shih 	rtw89_write8_clr(rtwdev, R_AX_SYS_FUNC_EN,
3580e3ec7017SPing-Ke Shih 			 B_AX_FEN_BBRSTB | B_AX_FEN_BB_GLB_RSTN);
3581e3ec7017SPing-Ke Shih 	rtw89_write32_clr(rtwdev, R_AX_WLRF_CTRL,
3582e3ec7017SPing-Ke Shih 			  B_AX_WLRF1_CTRL_7 | B_AX_WLRF1_CTRL_1 |
3583e3ec7017SPing-Ke Shih 			  B_AX_WLRF_CTRL_7 | B_AX_WLRF_CTRL_1);
3584e3ec7017SPing-Ke Shih 	rtw89_write8_clr(rtwdev, R_AX_PHYREG_SET, PHYREG_SET_ALL_CYCLE);
358514b6e9f4SPing-Ke Shih 
358614b6e9f4SPing-Ke Shih 	return 0;
3587e3ec7017SPing-Ke Shih }
358861ebeecbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_disable_bb_rf);
3589e3ec7017SPing-Ke Shih 
3590e3ec7017SPing-Ke Shih int rtw89_mac_partial_init(struct rtw89_dev *rtwdev)
3591e3ec7017SPing-Ke Shih {
3592e3ec7017SPing-Ke Shih 	int ret;
3593e3ec7017SPing-Ke Shih 
3594e3ec7017SPing-Ke Shih 	ret = rtw89_mac_power_switch(rtwdev, true);
3595e3ec7017SPing-Ke Shih 	if (ret) {
3596e3ec7017SPing-Ke Shih 		rtw89_mac_power_switch(rtwdev, false);
3597e3ec7017SPing-Ke Shih 		ret = rtw89_mac_power_switch(rtwdev, true);
3598e3ec7017SPing-Ke Shih 		if (ret)
3599e3ec7017SPing-Ke Shih 			return ret;
3600e3ec7017SPing-Ke Shih 	}
3601e3ec7017SPing-Ke Shih 
360252f12705SChin-Yen Lee 	rtw89_mac_ctrl_hci_dma_trx(rtwdev, true);
3603e3ec7017SPing-Ke Shih 
3604a7d82a7aSPing-Ke Shih 	ret = rtw89_mac_dmac_pre_init(rtwdev);
3605a7d82a7aSPing-Ke Shih 	if (ret)
3606a7d82a7aSPing-Ke Shih 		return ret;
3607a7d82a7aSPing-Ke Shih 
3608e3ec7017SPing-Ke Shih 	if (rtwdev->hci.ops->mac_pre_init) {
3609e3ec7017SPing-Ke Shih 		ret = rtwdev->hci.ops->mac_pre_init(rtwdev);
3610e3ec7017SPing-Ke Shih 		if (ret)
3611e3ec7017SPing-Ke Shih 			return ret;
3612e3ec7017SPing-Ke Shih 	}
3613e3ec7017SPing-Ke Shih 
3614e3ec7017SPing-Ke Shih 	ret = rtw89_fw_download(rtwdev, RTW89_FW_NORMAL);
3615e3ec7017SPing-Ke Shih 	if (ret)
3616e3ec7017SPing-Ke Shih 		return ret;
3617e3ec7017SPing-Ke Shih 
3618e3ec7017SPing-Ke Shih 	return 0;
3619e3ec7017SPing-Ke Shih }
3620e3ec7017SPing-Ke Shih 
3621e3ec7017SPing-Ke Shih int rtw89_mac_init(struct rtw89_dev *rtwdev)
3622e3ec7017SPing-Ke Shih {
3623e3ec7017SPing-Ke Shih 	int ret;
3624e3ec7017SPing-Ke Shih 
3625e3ec7017SPing-Ke Shih 	ret = rtw89_mac_partial_init(rtwdev);
3626e3ec7017SPing-Ke Shih 	if (ret)
3627e3ec7017SPing-Ke Shih 		goto fail;
3628e3ec7017SPing-Ke Shih 
362961ebeecbSPing-Ke Shih 	ret = rtw89_chip_enable_bb_rf(rtwdev);
363061ebeecbSPing-Ke Shih 	if (ret)
363161ebeecbSPing-Ke Shih 		goto fail;
3632e3ec7017SPing-Ke Shih 
3633e3ec7017SPing-Ke Shih 	ret = rtw89_mac_sys_init(rtwdev);
3634e3ec7017SPing-Ke Shih 	if (ret)
3635e3ec7017SPing-Ke Shih 		goto fail;
3636e3ec7017SPing-Ke Shih 
3637e3ec7017SPing-Ke Shih 	ret = rtw89_mac_trx_init(rtwdev);
3638e3ec7017SPing-Ke Shih 	if (ret)
3639e3ec7017SPing-Ke Shih 		goto fail;
3640e3ec7017SPing-Ke Shih 
3641e3ec7017SPing-Ke Shih 	if (rtwdev->hci.ops->mac_post_init) {
3642e3ec7017SPing-Ke Shih 		ret = rtwdev->hci.ops->mac_post_init(rtwdev);
3643e3ec7017SPing-Ke Shih 		if (ret)
3644e3ec7017SPing-Ke Shih 			goto fail;
3645e3ec7017SPing-Ke Shih 	}
3646e3ec7017SPing-Ke Shih 
3647e3ec7017SPing-Ke Shih 	rtw89_fw_send_all_early_h2c(rtwdev);
3648e3ec7017SPing-Ke Shih 	rtw89_fw_h2c_set_ofld_cfg(rtwdev);
3649e3ec7017SPing-Ke Shih 
3650e3ec7017SPing-Ke Shih 	return ret;
3651e3ec7017SPing-Ke Shih fail:
3652e3ec7017SPing-Ke Shih 	rtw89_mac_power_switch(rtwdev, false);
3653e3ec7017SPing-Ke Shih 
3654e3ec7017SPing-Ke Shih 	return ret;
3655e3ec7017SPing-Ke Shih }
3656e3ec7017SPing-Ke Shih 
3657e3ec7017SPing-Ke Shih static void rtw89_mac_dmac_tbl_init(struct rtw89_dev *rtwdev, u8 macid)
3658e3ec7017SPing-Ke Shih {
3659e3ec7017SPing-Ke Shih 	u8 i;
3660e3ec7017SPing-Ke Shih 
3661e3ec7017SPing-Ke Shih 	for (i = 0; i < 4; i++) {
3662e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR,
3663e3ec7017SPing-Ke Shih 			      DMAC_TBL_BASE_ADDR + (macid << 4) + (i << 2));
3664e3ec7017SPing-Ke Shih 		rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY, 0);
3665e3ec7017SPing-Ke Shih 	}
3666e3ec7017SPing-Ke Shih }
3667e3ec7017SPing-Ke Shih 
3668e3ec7017SPing-Ke Shih static void rtw89_mac_cmac_tbl_init(struct rtw89_dev *rtwdev, u8 macid)
3669e3ec7017SPing-Ke Shih {
3670e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR,
3671e3ec7017SPing-Ke Shih 		      CMAC_TBL_BASE_ADDR + macid * CCTL_INFO_SIZE);
3672e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY, 0x4);
3673e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 4, 0x400A0004);
3674e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 8, 0);
3675e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 12, 0);
3676e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 16, 0);
3677e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 20, 0xE43000B);
3678e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 24, 0);
3679e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 28, 0xB8109);
3680e3ec7017SPing-Ke Shih }
3681e3ec7017SPing-Ke Shih 
36821b73e77dSPing-Ke Shih int rtw89_mac_set_macid_pause(struct rtw89_dev *rtwdev, u8 macid, bool pause)
3683e3ec7017SPing-Ke Shih {
3684e3ec7017SPing-Ke Shih 	u8 sh =  FIELD_GET(GENMASK(4, 0), macid);
3685e3ec7017SPing-Ke Shih 	u8 grp = macid >> 5;
3686e3ec7017SPing-Ke Shih 	int ret;
3687e3ec7017SPing-Ke Shih 
3688ac3a9f18SPing-Ke Shih 	/* If this is called by change_interface() in the case of P2P, it could
3689ac3a9f18SPing-Ke Shih 	 * be power-off, so ignore this operation.
3690ac3a9f18SPing-Ke Shih 	 */
3691ac3a9f18SPing-Ke Shih 	if (test_bit(RTW89_FLAG_CHANGING_INTERFACE, rtwdev->flags) &&
3692ac3a9f18SPing-Ke Shih 	    !test_bit(RTW89_FLAG_POWERON, rtwdev->flags))
3693ac3a9f18SPing-Ke Shih 		return 0;
3694ac3a9f18SPing-Ke Shih 
3695e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_CMAC_SEL);
3696e3ec7017SPing-Ke Shih 	if (ret)
3697e3ec7017SPing-Ke Shih 		return ret;
3698e3ec7017SPing-Ke Shih 
3699e3ec7017SPing-Ke Shih 	rtw89_fw_h2c_macid_pause(rtwdev, sh, grp, pause);
3700e3ec7017SPing-Ke Shih 
3701e3ec7017SPing-Ke Shih 	return 0;
3702e3ec7017SPing-Ke Shih }
3703e3ec7017SPing-Ke Shih 
3704e3ec7017SPing-Ke Shih static const struct rtw89_port_reg rtw_port_base = {
3705e3ec7017SPing-Ke Shih 	.port_cfg = R_AX_PORT_CFG_P0,
3706e3ec7017SPing-Ke Shih 	.tbtt_prohib = R_AX_TBTT_PROHIB_P0,
3707e3ec7017SPing-Ke Shih 	.bcn_area = R_AX_BCN_AREA_P0,
3708e3ec7017SPing-Ke Shih 	.bcn_early = R_AX_BCNERLYINT_CFG_P0,
3709e3ec7017SPing-Ke Shih 	.tbtt_early = R_AX_TBTTERLYINT_CFG_P0,
3710e3ec7017SPing-Ke Shih 	.tbtt_agg = R_AX_TBTT_AGG_P0,
3711e3ec7017SPing-Ke Shih 	.bcn_space = R_AX_BCN_SPACE_CFG_P0,
3712e3ec7017SPing-Ke Shih 	.bcn_forcetx = R_AX_BCN_FORCETX_P0,
3713e3ec7017SPing-Ke Shih 	.bcn_err_cnt = R_AX_BCN_ERR_CNT_P0,
3714e3ec7017SPing-Ke Shih 	.bcn_err_flag = R_AX_BCN_ERR_FLAG_P0,
3715e3ec7017SPing-Ke Shih 	.dtim_ctrl = R_AX_DTIM_CTRL_P0,
3716e3ec7017SPing-Ke Shih 	.tbtt_shift = R_AX_TBTT_SHIFT_P0,
3717e3ec7017SPing-Ke Shih 	.bcn_cnt_tmr = R_AX_BCN_CNT_TMR_P0,
3718e3ec7017SPing-Ke Shih 	.tsftr_l = R_AX_TSFTR_LOW_P0,
3719e3ec7017SPing-Ke Shih 	.tsftr_h = R_AX_TSFTR_HIGH_P0
3720e3ec7017SPing-Ke Shih };
3721e3ec7017SPing-Ke Shih 
3722e3ec7017SPing-Ke Shih #define BCN_INTERVAL 100
3723e3ec7017SPing-Ke Shih #define BCN_ERLY_DEF 160
3724e3ec7017SPing-Ke Shih #define BCN_SETUP_DEF 2
3725e3ec7017SPing-Ke Shih #define BCN_HOLD_DEF 200
3726e3ec7017SPing-Ke Shih #define BCN_MASK_DEF 0
3727e3ec7017SPing-Ke Shih #define TBTT_ERLY_DEF 5
3728e3ec7017SPing-Ke Shih #define BCN_SET_UNIT 32
3729e3ec7017SPing-Ke Shih #define BCN_ERLY_SET_DLY (10 * 2)
3730e3ec7017SPing-Ke Shih 
3731e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_func_sw(struct rtw89_dev *rtwdev,
3732e3ec7017SPing-Ke Shih 				       struct rtw89_vif *rtwvif)
3733e3ec7017SPing-Ke Shih {
3734e3ec7017SPing-Ke Shih 	struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif);
3735e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3736e3ec7017SPing-Ke Shih 
3737e3ec7017SPing-Ke Shih 	if (!rtw89_read32_port_mask(rtwdev, rtwvif, p->port_cfg, B_AX_PORT_FUNC_EN))
3738e3ec7017SPing-Ke Shih 		return;
3739e3ec7017SPing-Ke Shih 
3740e3ec7017SPing-Ke Shih 	rtw89_write32_port_clr(rtwdev, rtwvif, p->tbtt_prohib, B_AX_TBTT_SETUP_MASK);
3741e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib, B_AX_TBTT_HOLD_MASK, 1);
3742e3ec7017SPing-Ke Shih 	rtw89_write16_port_clr(rtwdev, rtwvif, p->tbtt_early, B_AX_TBTTERLY_MASK);
3743e3ec7017SPing-Ke Shih 	rtw89_write16_port_clr(rtwdev, rtwvif, p->bcn_early, B_AX_BCNERLY_MASK);
3744e3ec7017SPing-Ke Shih 
3745e3ec7017SPing-Ke Shih 	msleep(vif->bss_conf.beacon_int + 1);
3746e3ec7017SPing-Ke Shih 
3747e3ec7017SPing-Ke Shih 	rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_PORT_FUNC_EN |
3748e3ec7017SPing-Ke Shih 							    B_AX_BRK_SETUP);
3749e3ec7017SPing-Ke Shih 	rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TSFTR_RST);
3750e3ec7017SPing-Ke Shih 	rtw89_write32_port(rtwdev, rtwvif, p->bcn_cnt_tmr, 0);
3751e3ec7017SPing-Ke Shih }
3752e3ec7017SPing-Ke Shih 
3753e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tx_rpt(struct rtw89_dev *rtwdev,
3754e3ec7017SPing-Ke Shih 				      struct rtw89_vif *rtwvif, bool en)
3755e3ec7017SPing-Ke Shih {
3756e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3757e3ec7017SPing-Ke Shih 
3758e3ec7017SPing-Ke Shih 	if (en)
3759e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TXBCN_RPT_EN);
3760e3ec7017SPing-Ke Shih 	else
3761e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_TXBCN_RPT_EN);
3762e3ec7017SPing-Ke Shih }
3763e3ec7017SPing-Ke Shih 
3764e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_rpt(struct rtw89_dev *rtwdev,
3765e3ec7017SPing-Ke Shih 				      struct rtw89_vif *rtwvif, bool en)
3766e3ec7017SPing-Ke Shih {
3767e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3768e3ec7017SPing-Ke Shih 
3769e3ec7017SPing-Ke Shih 	if (en)
3770e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_RXBCN_RPT_EN);
3771e3ec7017SPing-Ke Shih 	else
3772e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_RXBCN_RPT_EN);
3773e3ec7017SPing-Ke Shih }
3774e3ec7017SPing-Ke Shih 
3775e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_net_type(struct rtw89_dev *rtwdev,
3776e3ec7017SPing-Ke Shih 					struct rtw89_vif *rtwvif)
3777e3ec7017SPing-Ke Shih {
3778e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3779e3ec7017SPing-Ke Shih 
3780e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->port_cfg, B_AX_NET_TYPE_MASK,
3781e3ec7017SPing-Ke Shih 				rtwvif->net_type);
3782e3ec7017SPing-Ke Shih }
3783e3ec7017SPing-Ke Shih 
3784e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_prct(struct rtw89_dev *rtwdev,
3785e3ec7017SPing-Ke Shih 					struct rtw89_vif *rtwvif)
3786e3ec7017SPing-Ke Shih {
3787e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3788e3ec7017SPing-Ke Shih 	bool en = rtwvif->net_type != RTW89_NET_TYPE_NO_LINK;
3789e3ec7017SPing-Ke Shih 	u32 bits = B_AX_TBTT_PROHIB_EN | B_AX_BRK_SETUP;
3790e3ec7017SPing-Ke Shih 
3791e3ec7017SPing-Ke Shih 	if (en)
3792e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, bits);
3793e3ec7017SPing-Ke Shih 	else
3794e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, bits);
3795e3ec7017SPing-Ke Shih }
3796e3ec7017SPing-Ke Shih 
3797e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_sw(struct rtw89_dev *rtwdev,
3798e3ec7017SPing-Ke Shih 				     struct rtw89_vif *rtwvif)
3799e3ec7017SPing-Ke Shih {
3800e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3801e3ec7017SPing-Ke Shih 	bool en = rtwvif->net_type == RTW89_NET_TYPE_INFRA ||
3802e3ec7017SPing-Ke Shih 		  rtwvif->net_type == RTW89_NET_TYPE_AD_HOC;
3803e3ec7017SPing-Ke Shih 	u32 bit = B_AX_RX_BSSID_FIT_EN;
3804e3ec7017SPing-Ke Shih 
3805e3ec7017SPing-Ke Shih 	if (en)
3806e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, bit);
3807e3ec7017SPing-Ke Shih 	else
3808e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, bit);
3809e3ec7017SPing-Ke Shih }
3810e3ec7017SPing-Ke Shih 
3811e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_sync(struct rtw89_dev *rtwdev,
3812e3ec7017SPing-Ke Shih 				       struct rtw89_vif *rtwvif)
3813e3ec7017SPing-Ke Shih {
3814e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3815e3ec7017SPing-Ke Shih 	bool en = rtwvif->net_type == RTW89_NET_TYPE_INFRA ||
3816e3ec7017SPing-Ke Shih 		  rtwvif->net_type == RTW89_NET_TYPE_AD_HOC;
3817e3ec7017SPing-Ke Shih 
3818e3ec7017SPing-Ke Shih 	if (en)
3819e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TSF_UDT_EN);
3820e3ec7017SPing-Ke Shih 	else
3821e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_TSF_UDT_EN);
3822e3ec7017SPing-Ke Shih }
3823e3ec7017SPing-Ke Shih 
3824e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tx_sw(struct rtw89_dev *rtwdev,
3825e3ec7017SPing-Ke Shih 				     struct rtw89_vif *rtwvif)
3826e3ec7017SPing-Ke Shih {
3827e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3828e3ec7017SPing-Ke Shih 	bool en = rtwvif->net_type == RTW89_NET_TYPE_AP_MODE ||
3829e3ec7017SPing-Ke Shih 		  rtwvif->net_type == RTW89_NET_TYPE_AD_HOC;
3830e3ec7017SPing-Ke Shih 
3831e3ec7017SPing-Ke Shih 	if (en)
3832e3ec7017SPing-Ke Shih 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_BCNTX_EN);
3833e3ec7017SPing-Ke Shih 	else
3834e3ec7017SPing-Ke Shih 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_BCNTX_EN);
3835e3ec7017SPing-Ke Shih }
3836e3ec7017SPing-Ke Shih 
3837e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_intv(struct rtw89_dev *rtwdev,
3838e3ec7017SPing-Ke Shih 					struct rtw89_vif *rtwvif)
3839e3ec7017SPing-Ke Shih {
3840e3ec7017SPing-Ke Shih 	struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif);
3841e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3842e3ec7017SPing-Ke Shih 	u16 bcn_int = vif->bss_conf.beacon_int ? vif->bss_conf.beacon_int : BCN_INTERVAL;
3843e3ec7017SPing-Ke Shih 
3844e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_space, B_AX_BCN_SPACE_MASK,
3845e3ec7017SPing-Ke Shih 				bcn_int);
3846e3ec7017SPing-Ke Shih }
3847e3ec7017SPing-Ke Shih 
3848283c3d88SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_win(struct rtw89_dev *rtwdev,
3849283c3d88SPing-Ke Shih 				       struct rtw89_vif *rtwvif)
3850283c3d88SPing-Ke Shih {
3851283c3d88SPing-Ke Shih 	static const u32 hiq_win_addr[RTW89_PORT_NUM] = {
3852283c3d88SPing-Ke Shih 		R_AX_P0MB_HGQ_WINDOW_CFG_0, R_AX_PORT_HGQ_WINDOW_CFG,
3853283c3d88SPing-Ke Shih 		R_AX_PORT_HGQ_WINDOW_CFG + 1, R_AX_PORT_HGQ_WINDOW_CFG + 2,
3854283c3d88SPing-Ke Shih 		R_AX_PORT_HGQ_WINDOW_CFG + 3,
3855283c3d88SPing-Ke Shih 	};
3856283c3d88SPing-Ke Shih 	u8 win = rtwvif->net_type == RTW89_NET_TYPE_AP_MODE ? 16 : 0;
3857283c3d88SPing-Ke Shih 	u8 port = rtwvif->port;
3858283c3d88SPing-Ke Shih 	u32 reg;
3859283c3d88SPing-Ke Shih 
3860283c3d88SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(hiq_win_addr[port], rtwvif->mac_idx);
3861283c3d88SPing-Ke Shih 	rtw89_write8(rtwdev, reg, win);
3862283c3d88SPing-Ke Shih }
3863283c3d88SPing-Ke Shih 
3864283c3d88SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_dtim(struct rtw89_dev *rtwdev,
3865283c3d88SPing-Ke Shih 					struct rtw89_vif *rtwvif)
3866283c3d88SPing-Ke Shih {
3867283c3d88SPing-Ke Shih 	struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif);
3868283c3d88SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3869283c3d88SPing-Ke Shih 	u32 addr;
3870283c3d88SPing-Ke Shih 
3871283c3d88SPing-Ke Shih 	addr = rtw89_mac_reg_by_idx(R_AX_MD_TSFT_STMP_CTL, rtwvif->mac_idx);
3872283c3d88SPing-Ke Shih 	rtw89_write8_set(rtwdev, addr, B_AX_UPD_HGQMD | B_AX_UPD_TIMIE);
3873283c3d88SPing-Ke Shih 
3874283c3d88SPing-Ke Shih 	rtw89_write16_port_mask(rtwdev, rtwvif, p->dtim_ctrl, B_AX_DTIM_NUM_MASK,
3875283c3d88SPing-Ke Shih 				vif->bss_conf.dtim_period);
3876283c3d88SPing-Ke Shih }
3877283c3d88SPing-Ke Shih 
3878e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_setup_time(struct rtw89_dev *rtwdev,
3879e3ec7017SPing-Ke Shih 					      struct rtw89_vif *rtwvif)
3880e3ec7017SPing-Ke Shih {
3881e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3882e3ec7017SPing-Ke Shih 
3883e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib,
3884e3ec7017SPing-Ke Shih 				B_AX_TBTT_SETUP_MASK, BCN_SETUP_DEF);
3885e3ec7017SPing-Ke Shih }
3886e3ec7017SPing-Ke Shih 
3887e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_hold_time(struct rtw89_dev *rtwdev,
3888e3ec7017SPing-Ke Shih 					     struct rtw89_vif *rtwvif)
3889e3ec7017SPing-Ke Shih {
3890e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3891e3ec7017SPing-Ke Shih 
3892e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib,
3893e3ec7017SPing-Ke Shih 				B_AX_TBTT_HOLD_MASK, BCN_HOLD_DEF);
3894e3ec7017SPing-Ke Shih }
3895e3ec7017SPing-Ke Shih 
3896e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_mask_area(struct rtw89_dev *rtwdev,
3897e3ec7017SPing-Ke Shih 					     struct rtw89_vif *rtwvif)
3898e3ec7017SPing-Ke Shih {
3899e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3900e3ec7017SPing-Ke Shih 
3901e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_area,
3902e3ec7017SPing-Ke Shih 				B_AX_BCN_MSK_AREA_MASK, BCN_MASK_DEF);
3903e3ec7017SPing-Ke Shih }
3904e3ec7017SPing-Ke Shih 
3905e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tbtt_early(struct rtw89_dev *rtwdev,
3906e3ec7017SPing-Ke Shih 					  struct rtw89_vif *rtwvif)
3907e3ec7017SPing-Ke Shih {
3908e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3909e3ec7017SPing-Ke Shih 
3910e3ec7017SPing-Ke Shih 	rtw89_write16_port_mask(rtwdev, rtwvif, p->tbtt_early,
3911e3ec7017SPing-Ke Shih 				B_AX_TBTTERLY_MASK, TBTT_ERLY_DEF);
3912e3ec7017SPing-Ke Shih }
3913e3ec7017SPing-Ke Shih 
3914e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bss_color(struct rtw89_dev *rtwdev,
3915e3ec7017SPing-Ke Shih 					 struct rtw89_vif *rtwvif)
3916e3ec7017SPing-Ke Shih {
3917e3ec7017SPing-Ke Shih 	struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif);
3918e3ec7017SPing-Ke Shih 	static const u32 masks[RTW89_PORT_NUM] = {
3919e3ec7017SPing-Ke Shih 		B_AX_BSS_COLOB_AX_PORT_0_MASK, B_AX_BSS_COLOB_AX_PORT_1_MASK,
3920e3ec7017SPing-Ke Shih 		B_AX_BSS_COLOB_AX_PORT_2_MASK, B_AX_BSS_COLOB_AX_PORT_3_MASK,
3921e3ec7017SPing-Ke Shih 		B_AX_BSS_COLOB_AX_PORT_4_MASK,
3922e3ec7017SPing-Ke Shih 	};
3923e3ec7017SPing-Ke Shih 	u8 port = rtwvif->port;
3924e3ec7017SPing-Ke Shih 	u32 reg_base;
3925e3ec7017SPing-Ke Shih 	u32 reg;
3926e3ec7017SPing-Ke Shih 	u8 bss_color;
3927e3ec7017SPing-Ke Shih 
3928e3ec7017SPing-Ke Shih 	bss_color = vif->bss_conf.he_bss_color.color;
3929e3ec7017SPing-Ke Shih 	reg_base = port >= 4 ? R_AX_PTCL_BSS_COLOR_1 : R_AX_PTCL_BSS_COLOR_0;
3930e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(reg_base, rtwvif->mac_idx);
3931e3ec7017SPing-Ke Shih 	rtw89_write32_mask(rtwdev, reg, masks[port], bss_color);
3932e3ec7017SPing-Ke Shih }
3933e3ec7017SPing-Ke Shih 
3934e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_mbssid(struct rtw89_dev *rtwdev,
3935e3ec7017SPing-Ke Shih 				      struct rtw89_vif *rtwvif)
3936e3ec7017SPing-Ke Shih {
3937e3ec7017SPing-Ke Shih 	u8 port = rtwvif->port;
3938e3ec7017SPing-Ke Shih 	u32 reg;
3939e3ec7017SPing-Ke Shih 
3940e3ec7017SPing-Ke Shih 	if (rtwvif->net_type == RTW89_NET_TYPE_AP_MODE)
3941e3ec7017SPing-Ke Shih 		return;
3942e3ec7017SPing-Ke Shih 
3943e3ec7017SPing-Ke Shih 	if (port == 0) {
3944e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_MBSSID_CTRL, rtwvif->mac_idx);
3945e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, reg, B_AX_P0MB_ALL_MASK);
3946e3ec7017SPing-Ke Shih 	}
3947e3ec7017SPing-Ke Shih }
3948e3ec7017SPing-Ke Shih 
3949e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_drop(struct rtw89_dev *rtwdev,
3950e3ec7017SPing-Ke Shih 					struct rtw89_vif *rtwvif)
3951e3ec7017SPing-Ke Shih {
3952e3ec7017SPing-Ke Shih 	u8 port = rtwvif->port;
3953e3ec7017SPing-Ke Shih 	u32 reg;
3954e3ec7017SPing-Ke Shih 	u32 val;
3955e3ec7017SPing-Ke Shih 
3956e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_MBSSID_DROP_0, rtwvif->mac_idx);
3957e3ec7017SPing-Ke Shih 	val = rtw89_read32(rtwdev, reg);
3958e3ec7017SPing-Ke Shih 	val &= ~FIELD_PREP(B_AX_PORT_DROP_4_0_MASK, BIT(port));
3959e3ec7017SPing-Ke Shih 	if (port == 0)
3960e3ec7017SPing-Ke Shih 		val &= ~BIT(0);
3961e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val);
3962e3ec7017SPing-Ke Shih }
3963e3ec7017SPing-Ke Shih 
3964e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_func_en(struct rtw89_dev *rtwdev,
3965d592b9f7SPo-Hao Huang 				       struct rtw89_vif *rtwvif, bool enable)
3966e3ec7017SPing-Ke Shih {
3967e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3968e3ec7017SPing-Ke Shih 
3969d592b9f7SPo-Hao Huang 	if (enable)
3970d592b9f7SPo-Hao Huang 		rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg,
3971d592b9f7SPo-Hao Huang 				       B_AX_PORT_FUNC_EN);
3972d592b9f7SPo-Hao Huang 	else
3973d592b9f7SPo-Hao Huang 		rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg,
3974d592b9f7SPo-Hao Huang 				       B_AX_PORT_FUNC_EN);
3975e3ec7017SPing-Ke Shih }
3976e3ec7017SPing-Ke Shih 
3977e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_early(struct rtw89_dev *rtwdev,
3978e3ec7017SPing-Ke Shih 					 struct rtw89_vif *rtwvif)
3979e3ec7017SPing-Ke Shih {
3980e3ec7017SPing-Ke Shih 	const struct rtw89_port_reg *p = &rtw_port_base;
3981e3ec7017SPing-Ke Shih 
3982e3ec7017SPing-Ke Shih 	rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_early, B_AX_BCNERLY_MASK,
3983e3ec7017SPing-Ke Shih 				BCN_ERLY_DEF);
3984e3ec7017SPing-Ke Shih }
3985e3ec7017SPing-Ke Shih 
3986704052f5SChia-Yuan Li static void rtw89_mac_port_cfg_tbtt_shift(struct rtw89_dev *rtwdev,
3987704052f5SChia-Yuan Li 					  struct rtw89_vif *rtwvif)
3988704052f5SChia-Yuan Li {
3989704052f5SChia-Yuan Li 	const struct rtw89_port_reg *p = &rtw_port_base;
3990704052f5SChia-Yuan Li 	u16 val;
3991704052f5SChia-Yuan Li 
3992704052f5SChia-Yuan Li 	if (rtwdev->chip->chip_id != RTL8852C)
3993704052f5SChia-Yuan Li 		return;
3994704052f5SChia-Yuan Li 
3995704052f5SChia-Yuan Li 	if (rtwvif->wifi_role != RTW89_WIFI_ROLE_P2P_CLIENT &&
3996704052f5SChia-Yuan Li 	    rtwvif->wifi_role != RTW89_WIFI_ROLE_STATION)
3997704052f5SChia-Yuan Li 		return;
3998704052f5SChia-Yuan Li 
3999704052f5SChia-Yuan Li 	val = FIELD_PREP(B_AX_TBTT_SHIFT_OFST_MAG, 1) |
4000704052f5SChia-Yuan Li 			 B_AX_TBTT_SHIFT_OFST_SIGN;
4001704052f5SChia-Yuan Li 
4002704052f5SChia-Yuan Li 	rtw89_write16_port_mask(rtwdev, rtwvif, p->tbtt_shift,
4003704052f5SChia-Yuan Li 				B_AX_TBTT_SHIFT_OFST_MASK, val);
4004704052f5SChia-Yuan Li }
4005704052f5SChia-Yuan Li 
400642db7eddSZong-Zhe Yang void rtw89_mac_port_tsf_sync(struct rtw89_dev *rtwdev,
4007fb2b8cecSPo-Hao Huang 			     struct rtw89_vif *rtwvif,
400842db7eddSZong-Zhe Yang 			     struct rtw89_vif *rtwvif_src,
400942db7eddSZong-Zhe Yang 			     u16 offset_tu)
4010fb2b8cecSPo-Hao Huang {
4011fb2b8cecSPo-Hao Huang 	u32 val, reg;
4012fb2b8cecSPo-Hao Huang 
401342db7eddSZong-Zhe Yang 	val = RTW89_PORT_OFFSET_TU_TO_32US(offset_tu);
401442db7eddSZong-Zhe Yang 	reg = rtw89_mac_reg_by_idx(R_AX_PORT0_TSF_SYNC + rtwvif->port * 4,
401542db7eddSZong-Zhe Yang 				   rtwvif->mac_idx);
401642db7eddSZong-Zhe Yang 
401742db7eddSZong-Zhe Yang 	rtw89_write32_mask(rtwdev, reg, B_AX_SYNC_PORT_SRC, rtwvif_src->port);
401842db7eddSZong-Zhe Yang 	rtw89_write32_mask(rtwdev, reg, B_AX_SYNC_PORT_OFFSET_VAL, val);
401942db7eddSZong-Zhe Yang 	rtw89_write32_set(rtwdev, reg, B_AX_SYNC_NOW);
402042db7eddSZong-Zhe Yang }
402142db7eddSZong-Zhe Yang 
402242db7eddSZong-Zhe Yang static void rtw89_mac_port_tsf_sync_rand(struct rtw89_dev *rtwdev,
402342db7eddSZong-Zhe Yang 					 struct rtw89_vif *rtwvif,
402442db7eddSZong-Zhe Yang 					 struct rtw89_vif *rtwvif_src,
402542db7eddSZong-Zhe Yang 					 u8 offset, int *n_offset)
402642db7eddSZong-Zhe Yang {
4027fb2b8cecSPo-Hao Huang 	if (rtwvif->net_type != RTW89_NET_TYPE_AP_MODE || rtwvif == rtwvif_src)
4028fb2b8cecSPo-Hao Huang 		return;
4029fb2b8cecSPo-Hao Huang 
4030fb2b8cecSPo-Hao Huang 	/* adjust offset randomly to avoid beacon conflict */
4031fb2b8cecSPo-Hao Huang 	offset = offset - offset / 4 + get_random_u32() % (offset / 2);
403242db7eddSZong-Zhe Yang 	rtw89_mac_port_tsf_sync(rtwdev, rtwvif, rtwvif_src,
403342db7eddSZong-Zhe Yang 				(*n_offset) * offset);
4034fb2b8cecSPo-Hao Huang 
40351120e6a6SZong-Zhe Yang 	(*n_offset)++;
4036fb2b8cecSPo-Hao Huang }
4037fb2b8cecSPo-Hao Huang 
4038fb2b8cecSPo-Hao Huang static void rtw89_mac_port_tsf_resync_all(struct rtw89_dev *rtwdev)
4039fb2b8cecSPo-Hao Huang {
4040fb2b8cecSPo-Hao Huang 	struct rtw89_vif *src = NULL, *tmp;
4041fb2b8cecSPo-Hao Huang 	u8 offset = 100, vif_aps = 0;
4042fb2b8cecSPo-Hao Huang 	int n_offset = 1;
4043fb2b8cecSPo-Hao Huang 
4044fb2b8cecSPo-Hao Huang 	rtw89_for_each_rtwvif(rtwdev, tmp) {
4045fb2b8cecSPo-Hao Huang 		if (!src || tmp->net_type == RTW89_NET_TYPE_INFRA)
4046fb2b8cecSPo-Hao Huang 			src = tmp;
4047fb2b8cecSPo-Hao Huang 		if (tmp->net_type == RTW89_NET_TYPE_AP_MODE)
4048fb2b8cecSPo-Hao Huang 			vif_aps++;
4049fb2b8cecSPo-Hao Huang 	}
4050fb2b8cecSPo-Hao Huang 
4051fb2b8cecSPo-Hao Huang 	if (vif_aps == 0)
4052fb2b8cecSPo-Hao Huang 		return;
4053fb2b8cecSPo-Hao Huang 
4054fb2b8cecSPo-Hao Huang 	offset /= (vif_aps + 1);
4055fb2b8cecSPo-Hao Huang 
4056fb2b8cecSPo-Hao Huang 	rtw89_for_each_rtwvif(rtwdev, tmp)
405742db7eddSZong-Zhe Yang 		rtw89_mac_port_tsf_sync_rand(rtwdev, tmp, src, offset, &n_offset);
4058fb2b8cecSPo-Hao Huang }
4059fb2b8cecSPo-Hao Huang 
4060e3ec7017SPing-Ke Shih int rtw89_mac_vif_init(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4061e3ec7017SPing-Ke Shih {
4062e3ec7017SPing-Ke Shih 	int ret;
4063e3ec7017SPing-Ke Shih 
4064e3ec7017SPing-Ke Shih 	ret = rtw89_mac_port_update(rtwdev, rtwvif);
4065e3ec7017SPing-Ke Shih 	if (ret)
4066e3ec7017SPing-Ke Shih 		return ret;
4067e3ec7017SPing-Ke Shih 
4068e3ec7017SPing-Ke Shih 	rtw89_mac_dmac_tbl_init(rtwdev, rtwvif->mac_id);
4069e3ec7017SPing-Ke Shih 	rtw89_mac_cmac_tbl_init(rtwdev, rtwvif->mac_id);
4070e3ec7017SPing-Ke Shih 
40711b73e77dSPing-Ke Shih 	ret = rtw89_mac_set_macid_pause(rtwdev, rtwvif->mac_id, false);
4072e3ec7017SPing-Ke Shih 	if (ret)
4073e3ec7017SPing-Ke Shih 		return ret;
4074e3ec7017SPing-Ke Shih 
4075ff66964aSPing-Ke Shih 	ret = rtw89_fw_h2c_role_maintain(rtwdev, rtwvif, NULL, RTW89_ROLE_CREATE);
4076e3ec7017SPing-Ke Shih 	if (ret)
4077e3ec7017SPing-Ke Shih 		return ret;
4078e3ec7017SPing-Ke Shih 
4079a0e78d5cSPo-Hao Huang 	ret = rtw89_fw_h2c_join_info(rtwdev, rtwvif, NULL, true);
4080a0e78d5cSPo-Hao Huang 	if (ret)
4081a0e78d5cSPo-Hao Huang 		return ret;
4082a0e78d5cSPo-Hao Huang 
4083e3ec7017SPing-Ke Shih 	ret = rtw89_cam_init(rtwdev, rtwvif);
4084e3ec7017SPing-Ke Shih 	if (ret)
4085e3ec7017SPing-Ke Shih 		return ret;
4086e3ec7017SPing-Ke Shih 
408740822e07SPing-Ke Shih 	ret = rtw89_fw_h2c_cam(rtwdev, rtwvif, NULL, NULL);
4088e3ec7017SPing-Ke Shih 	if (ret)
4089e3ec7017SPing-Ke Shih 		return ret;
4090e3ec7017SPing-Ke Shih 
4091742c470bSPing-Ke Shih 	ret = rtw89_fw_h2c_default_cmac_tbl(rtwdev, rtwvif);
4092e3ec7017SPing-Ke Shih 	if (ret)
4093e3ec7017SPing-Ke Shih 		return ret;
4094e3ec7017SPing-Ke Shih 
4095e3ec7017SPing-Ke Shih 	return 0;
4096e3ec7017SPing-Ke Shih }
4097e3ec7017SPing-Ke Shih 
4098e3ec7017SPing-Ke Shih int rtw89_mac_vif_deinit(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4099e3ec7017SPing-Ke Shih {
4100e3ec7017SPing-Ke Shih 	int ret;
4101e3ec7017SPing-Ke Shih 
4102ff66964aSPing-Ke Shih 	ret = rtw89_fw_h2c_role_maintain(rtwdev, rtwvif, NULL, RTW89_ROLE_REMOVE);
4103e3ec7017SPing-Ke Shih 	if (ret)
4104e3ec7017SPing-Ke Shih 		return ret;
4105e3ec7017SPing-Ke Shih 
4106e3ec7017SPing-Ke Shih 	rtw89_cam_deinit(rtwdev, rtwvif);
4107e3ec7017SPing-Ke Shih 
410840822e07SPing-Ke Shih 	ret = rtw89_fw_h2c_cam(rtwdev, rtwvif, NULL, NULL);
4109e3ec7017SPing-Ke Shih 	if (ret)
4110e3ec7017SPing-Ke Shih 		return ret;
4111e3ec7017SPing-Ke Shih 
4112e3ec7017SPing-Ke Shih 	return 0;
4113e3ec7017SPing-Ke Shih }
4114e3ec7017SPing-Ke Shih 
4115e3ec7017SPing-Ke Shih int rtw89_mac_port_update(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4116e3ec7017SPing-Ke Shih {
4117e3ec7017SPing-Ke Shih 	u8 port = rtwvif->port;
4118e3ec7017SPing-Ke Shih 
4119e3ec7017SPing-Ke Shih 	if (port >= RTW89_PORT_NUM)
4120e3ec7017SPing-Ke Shih 		return -EINVAL;
4121e3ec7017SPing-Ke Shih 
4122e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_func_sw(rtwdev, rtwvif);
4123e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_tx_rpt(rtwdev, rtwvif, false);
4124e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_rx_rpt(rtwdev, rtwvif, false);
4125e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_net_type(rtwdev, rtwvif);
4126e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_prct(rtwdev, rtwvif);
4127e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_rx_sw(rtwdev, rtwvif);
4128e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_rx_sync(rtwdev, rtwvif);
4129e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_tx_sw(rtwdev, rtwvif);
4130e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_intv(rtwdev, rtwvif);
4131283c3d88SPing-Ke Shih 	rtw89_mac_port_cfg_hiq_win(rtwdev, rtwvif);
4132283c3d88SPing-Ke Shih 	rtw89_mac_port_cfg_hiq_dtim(rtwdev, rtwvif);
4133283c3d88SPing-Ke Shih 	rtw89_mac_port_cfg_hiq_drop(rtwdev, rtwvif);
4134e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_setup_time(rtwdev, rtwvif);
4135e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_hold_time(rtwdev, rtwvif);
4136e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_mask_area(rtwdev, rtwvif);
4137e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_tbtt_early(rtwdev, rtwvif);
4138704052f5SChia-Yuan Li 	rtw89_mac_port_cfg_tbtt_shift(rtwdev, rtwvif);
4139e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bss_color(rtwdev, rtwvif);
4140e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_mbssid(rtwdev, rtwvif);
4141d592b9f7SPo-Hao Huang 	rtw89_mac_port_cfg_func_en(rtwdev, rtwvif, true);
4142fb2b8cecSPo-Hao Huang 	rtw89_mac_port_tsf_resync_all(rtwdev);
4143e3ec7017SPing-Ke Shih 	fsleep(BCN_ERLY_SET_DLY);
4144e3ec7017SPing-Ke Shih 	rtw89_mac_port_cfg_bcn_early(rtwdev, rtwvif);
4145e3ec7017SPing-Ke Shih 
4146e3ec7017SPing-Ke Shih 	return 0;
4147e3ec7017SPing-Ke Shih }
4148e3ec7017SPing-Ke Shih 
414976f478a3SZong-Zhe Yang int rtw89_mac_port_get_tsf(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif,
415076f478a3SZong-Zhe Yang 			   u64 *tsf)
415176f478a3SZong-Zhe Yang {
415276f478a3SZong-Zhe Yang 	const struct rtw89_port_reg *p = &rtw_port_base;
415376f478a3SZong-Zhe Yang 	u32 tsf_low, tsf_high;
415476f478a3SZong-Zhe Yang 	int ret;
415576f478a3SZong-Zhe Yang 
415676f478a3SZong-Zhe Yang 	ret = rtw89_mac_check_mac_en(rtwdev, rtwvif->mac_idx, RTW89_CMAC_SEL);
415776f478a3SZong-Zhe Yang 	if (ret)
415876f478a3SZong-Zhe Yang 		return ret;
415976f478a3SZong-Zhe Yang 
416076f478a3SZong-Zhe Yang 	tsf_low = rtw89_read32_port(rtwdev, rtwvif, p->tsftr_l);
416176f478a3SZong-Zhe Yang 	tsf_high = rtw89_read32_port(rtwdev, rtwvif, p->tsftr_h);
416276f478a3SZong-Zhe Yang 	*tsf = (u64)tsf_high << 32 | tsf_low;
416376f478a3SZong-Zhe Yang 
416476f478a3SZong-Zhe Yang 	return 0;
416576f478a3SZong-Zhe Yang }
416676f478a3SZong-Zhe Yang 
41678d540f9dSKuan-Chung Chen static void rtw89_mac_check_he_obss_narrow_bw_ru_iter(struct wiphy *wiphy,
41688d540f9dSKuan-Chung Chen 						      struct cfg80211_bss *bss,
41698d540f9dSKuan-Chung Chen 						      void *data)
41708d540f9dSKuan-Chung Chen {
41718d540f9dSKuan-Chung Chen 	const struct cfg80211_bss_ies *ies;
41728d540f9dSKuan-Chung Chen 	const struct element *elem;
41738d540f9dSKuan-Chung Chen 	bool *tolerated = data;
41748d540f9dSKuan-Chung Chen 
41758d540f9dSKuan-Chung Chen 	rcu_read_lock();
41768d540f9dSKuan-Chung Chen 	ies = rcu_dereference(bss->ies);
41778d540f9dSKuan-Chung Chen 	elem = cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY, ies->data,
41788d540f9dSKuan-Chung Chen 				  ies->len);
41798d540f9dSKuan-Chung Chen 
41808d540f9dSKuan-Chung Chen 	if (!elem || elem->datalen < 10 ||
41818d540f9dSKuan-Chung Chen 	    !(elem->data[10] & WLAN_EXT_CAPA10_OBSS_NARROW_BW_RU_TOLERANCE_SUPPORT))
41828d540f9dSKuan-Chung Chen 		*tolerated = false;
41838d540f9dSKuan-Chung Chen 	rcu_read_unlock();
41848d540f9dSKuan-Chung Chen }
41858d540f9dSKuan-Chung Chen 
41868d540f9dSKuan-Chung Chen void rtw89_mac_set_he_obss_narrow_bw_ru(struct rtw89_dev *rtwdev,
41878d540f9dSKuan-Chung Chen 					struct ieee80211_vif *vif)
41888d540f9dSKuan-Chung Chen {
41898d540f9dSKuan-Chung Chen 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
41908d540f9dSKuan-Chung Chen 	struct ieee80211_hw *hw = rtwdev->hw;
41918d540f9dSKuan-Chung Chen 	bool tolerated = true;
41928d540f9dSKuan-Chung Chen 	u32 reg;
41938d540f9dSKuan-Chung Chen 
41948d540f9dSKuan-Chung Chen 	if (!vif->bss_conf.he_support || vif->type != NL80211_IFTYPE_STATION)
41958d540f9dSKuan-Chung Chen 		return;
41968d540f9dSKuan-Chung Chen 
41978d540f9dSKuan-Chung Chen 	if (!(vif->bss_conf.chandef.chan->flags & IEEE80211_CHAN_RADAR))
41988d540f9dSKuan-Chung Chen 		return;
41998d540f9dSKuan-Chung Chen 
42008d540f9dSKuan-Chung Chen 	cfg80211_bss_iter(hw->wiphy, &vif->bss_conf.chandef,
42018d540f9dSKuan-Chung Chen 			  rtw89_mac_check_he_obss_narrow_bw_ru_iter,
42028d540f9dSKuan-Chung Chen 			  &tolerated);
42038d540f9dSKuan-Chung Chen 
42048d540f9dSKuan-Chung Chen 	reg = rtw89_mac_reg_by_idx(R_AX_RXTRIG_TEST_USER_2, rtwvif->mac_idx);
42058d540f9dSKuan-Chung Chen 	if (tolerated)
42068d540f9dSKuan-Chung Chen 		rtw89_write32_clr(rtwdev, reg, B_AX_RXTRIG_RU26_DIS);
42078d540f9dSKuan-Chung Chen 	else
42088d540f9dSKuan-Chung Chen 		rtw89_write32_set(rtwdev, reg, B_AX_RXTRIG_RU26_DIS);
42098d540f9dSKuan-Chung Chen }
42108d540f9dSKuan-Chung Chen 
4211d592b9f7SPo-Hao Huang void rtw89_mac_stop_ap(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4212d592b9f7SPo-Hao Huang {
4213d592b9f7SPo-Hao Huang 	rtw89_mac_port_cfg_func_en(rtwdev, rtwvif, false);
4214d592b9f7SPo-Hao Huang }
4215d592b9f7SPo-Hao Huang 
4216e3ec7017SPing-Ke Shih int rtw89_mac_add_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4217e3ec7017SPing-Ke Shih {
4218e3ec7017SPing-Ke Shih 	int ret;
4219e3ec7017SPing-Ke Shih 
4220e3ec7017SPing-Ke Shih 	rtwvif->mac_id = rtw89_core_acquire_bit_map(rtwdev->mac_id_map,
4221e3ec7017SPing-Ke Shih 						    RTW89_MAX_MAC_ID_NUM);
4222e3ec7017SPing-Ke Shih 	if (rtwvif->mac_id == RTW89_MAX_MAC_ID_NUM)
4223e3ec7017SPing-Ke Shih 		return -ENOSPC;
4224e3ec7017SPing-Ke Shih 
4225e3ec7017SPing-Ke Shih 	ret = rtw89_mac_vif_init(rtwdev, rtwvif);
4226e3ec7017SPing-Ke Shih 	if (ret)
4227e3ec7017SPing-Ke Shih 		goto release_mac_id;
4228e3ec7017SPing-Ke Shih 
4229e3ec7017SPing-Ke Shih 	return 0;
4230e3ec7017SPing-Ke Shih 
4231e3ec7017SPing-Ke Shih release_mac_id:
4232e3ec7017SPing-Ke Shih 	rtw89_core_release_bit_map(rtwdev->mac_id_map, rtwvif->mac_id);
4233e3ec7017SPing-Ke Shih 
4234e3ec7017SPing-Ke Shih 	return ret;
4235e3ec7017SPing-Ke Shih }
4236e3ec7017SPing-Ke Shih 
4237e3ec7017SPing-Ke Shih int rtw89_mac_remove_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
4238e3ec7017SPing-Ke Shih {
4239e3ec7017SPing-Ke Shih 	int ret;
4240e3ec7017SPing-Ke Shih 
4241e3ec7017SPing-Ke Shih 	ret = rtw89_mac_vif_deinit(rtwdev, rtwvif);
4242e3ec7017SPing-Ke Shih 	rtw89_core_release_bit_map(rtwdev->mac_id_map, rtwvif->mac_id);
4243e3ec7017SPing-Ke Shih 
4244e3ec7017SPing-Ke Shih 	return ret;
4245e3ec7017SPing-Ke Shih }
4246e3ec7017SPing-Ke Shih 
4247e3ec7017SPing-Ke Shih static void
4248e3ec7017SPing-Ke Shih rtw89_mac_c2h_macid_pause(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4249e3ec7017SPing-Ke Shih {
4250e3ec7017SPing-Ke Shih }
4251e3ec7017SPing-Ke Shih 
425289590777SPo Hao Huang static bool rtw89_is_op_chan(struct rtw89_dev *rtwdev, u8 band, u8 channel)
425389590777SPo Hao Huang {
4254e7399db2SPo-Hao Huang 	const struct rtw89_chan *op = &rtwdev->scan_info.op_chan;
425589590777SPo Hao Huang 
4256e7399db2SPo-Hao Huang 	return band == op->band_type && channel == op->primary_channel;
425789590777SPo Hao Huang }
425889590777SPo Hao Huang 
425989590777SPo Hao Huang static void
426089590777SPo Hao Huang rtw89_mac_c2h_scanofld_rsp(struct rtw89_dev *rtwdev, struct sk_buff *c2h,
426189590777SPo Hao Huang 			   u32 len)
426289590777SPo Hao Huang {
426389590777SPo Hao Huang 	struct ieee80211_vif *vif = rtwdev->scan_info.scanning_vif;
4264bd1056d4SPo-Hao Huang 	struct rtw89_vif *rtwvif = vif_to_rtwvif_safe(vif);
4265cbb145b9SZong-Zhe Yang 	struct rtw89_chan new;
42663a1e7cb1SPo-Hao Huang 	u8 reason, status, tx_fail, band, actual_period;
4267bd1056d4SPo-Hao Huang 	u32 last_chan = rtwdev->scan_info.last_chan_idx;
426889590777SPo Hao Huang 	u16 chan;
4269bd1056d4SPo-Hao Huang 	int ret;
427089590777SPo Hao Huang 
4271a0e97ae3SPo-Hao Huang 	if (!rtwvif)
4272a0e97ae3SPo-Hao Huang 		return;
4273a0e97ae3SPo-Hao Huang 
427489590777SPo Hao Huang 	tx_fail = RTW89_GET_MAC_C2H_SCANOFLD_TX_FAIL(c2h->data);
427589590777SPo Hao Huang 	status = RTW89_GET_MAC_C2H_SCANOFLD_STATUS(c2h->data);
427689590777SPo Hao Huang 	chan = RTW89_GET_MAC_C2H_SCANOFLD_PRI_CH(c2h->data);
427789590777SPo Hao Huang 	reason = RTW89_GET_MAC_C2H_SCANOFLD_RSP(c2h->data);
427889590777SPo Hao Huang 	band = RTW89_GET_MAC_C2H_SCANOFLD_BAND(c2h->data);
42793a1e7cb1SPo-Hao Huang 	actual_period = RTW89_GET_MAC_C2H_ACTUAL_PERIOD(c2h->data);
428089590777SPo Hao Huang 
428189590777SPo Hao Huang 	if (!(rtwdev->chip->support_bands & BIT(NL80211_BAND_6GHZ)))
428289590777SPo Hao Huang 		band = chan > 14 ? RTW89_BAND_5G : RTW89_BAND_2G;
428389590777SPo Hao Huang 
428489590777SPo Hao Huang 	rtw89_debug(rtwdev, RTW89_DBG_HW_SCAN,
42853a1e7cb1SPo-Hao Huang 		    "band: %d, chan: %d, reason: %d, status: %d, tx_fail: %d, actual: %d\n",
42863a1e7cb1SPo-Hao Huang 		    band, chan, reason, status, tx_fail, actual_period);
428789590777SPo Hao Huang 
428889590777SPo Hao Huang 	switch (reason) {
428989590777SPo Hao Huang 	case RTW89_SCAN_LEAVE_CH_NOTIFY:
429089590777SPo Hao Huang 		if (rtw89_is_op_chan(rtwdev, band, chan))
429189590777SPo Hao Huang 			ieee80211_stop_queues(rtwdev->hw);
429289590777SPo Hao Huang 		return;
429389590777SPo Hao Huang 	case RTW89_SCAN_END_SCAN_NOTIFY:
4294bd1056d4SPo-Hao Huang 		if (rtwvif && rtwvif->scan_req &&
4295bd1056d4SPo-Hao Huang 		    last_chan < rtwvif->scan_req->n_channels) {
4296bd1056d4SPo-Hao Huang 			ret = rtw89_hw_scan_offload(rtwdev, vif, true);
4297bd1056d4SPo-Hao Huang 			if (ret) {
4298bd1056d4SPo-Hao Huang 				rtw89_hw_scan_abort(rtwdev, vif);
4299bd1056d4SPo-Hao Huang 				rtw89_warn(rtwdev, "HW scan failed: %d\n", ret);
4300bd1056d4SPo-Hao Huang 			}
4301bd1056d4SPo-Hao Huang 		} else {
430289590777SPo Hao Huang 			rtw89_hw_scan_complete(rtwdev, vif, false);
4303bd1056d4SPo-Hao Huang 		}
430489590777SPo Hao Huang 		break;
430589590777SPo Hao Huang 	case RTW89_SCAN_ENTER_CH_NOTIFY:
430628000f7bSPo Hao Huang 		if (rtw89_is_op_chan(rtwdev, band, chan)) {
4307e7399db2SPo-Hao Huang 			rtw89_assign_entity_chan(rtwdev, rtwvif->sub_entity_idx,
4308e7399db2SPo-Hao Huang 						 &rtwdev->scan_info.op_chan);
430989590777SPo Hao Huang 			ieee80211_wake_queues(rtwdev->hw);
4310e7399db2SPo-Hao Huang 		} else {
4311e7399db2SPo-Hao Huang 			rtw89_chan_create(&new, chan, chan, band,
4312e7399db2SPo-Hao Huang 					  RTW89_CHANNEL_WIDTH_20);
4313e7399db2SPo-Hao Huang 			rtw89_assign_entity_chan(rtwdev, rtwvif->sub_entity_idx,
4314e7399db2SPo-Hao Huang 						 &new);
431528000f7bSPo Hao Huang 		}
431689590777SPo Hao Huang 		break;
431789590777SPo Hao Huang 	default:
431889590777SPo Hao Huang 		return;
431989590777SPo Hao Huang 	}
432089590777SPo Hao Huang }
432189590777SPo Hao Huang 
4322e3ec7017SPing-Ke Shih static void
4323d2b6da24SPo-Hao Huang rtw89_mac_bcn_fltr_rpt(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif,
4324d2b6da24SPo-Hao Huang 		       struct sk_buff *skb)
4325d2b6da24SPo-Hao Huang {
4326d2b6da24SPo-Hao Huang 	struct ieee80211_vif *vif = rtwvif_to_vif_safe(rtwvif);
4327d2b6da24SPo-Hao Huang 	enum nl80211_cqm_rssi_threshold_event nl_event;
4328d2b6da24SPo-Hao Huang 	const struct rtw89_c2h_mac_bcnfltr_rpt *c2h =
4329d2b6da24SPo-Hao Huang 		(const struct rtw89_c2h_mac_bcnfltr_rpt *)skb->data;
4330d2b6da24SPo-Hao Huang 	u8 type, event, mac_id;
4331d2b6da24SPo-Hao Huang 	s8 sig;
4332d2b6da24SPo-Hao Huang 
4333d2b6da24SPo-Hao Huang 	type = le32_get_bits(c2h->w2, RTW89_C2H_MAC_BCNFLTR_RPT_W2_TYPE);
4334d2b6da24SPo-Hao Huang 	sig = le32_get_bits(c2h->w2, RTW89_C2H_MAC_BCNFLTR_RPT_W2_MA) - MAX_RSSI;
4335d2b6da24SPo-Hao Huang 	event = le32_get_bits(c2h->w2, RTW89_C2H_MAC_BCNFLTR_RPT_W2_EVENT);
4336d2b6da24SPo-Hao Huang 	mac_id = le32_get_bits(c2h->w2, RTW89_C2H_MAC_BCNFLTR_RPT_W2_MACID);
4337d2b6da24SPo-Hao Huang 
4338d2b6da24SPo-Hao Huang 	if (mac_id != rtwvif->mac_id)
4339d2b6da24SPo-Hao Huang 		return;
4340d2b6da24SPo-Hao Huang 
4341d2b6da24SPo-Hao Huang 	rtw89_debug(rtwdev, RTW89_DBG_FW,
4342d2b6da24SPo-Hao Huang 		    "C2H bcnfltr rpt macid: %d, type: %d, ma: %d, event: %d\n",
4343d2b6da24SPo-Hao Huang 		    mac_id, type, sig, event);
4344d2b6da24SPo-Hao Huang 
4345d2b6da24SPo-Hao Huang 	switch (type) {
4346d2b6da24SPo-Hao Huang 	case RTW89_BCN_FLTR_BEACON_LOSS:
4347a0e97ae3SPo-Hao Huang 		if (!rtwdev->scanning && !rtwvif->offchan)
4348d2b6da24SPo-Hao Huang 			ieee80211_connection_loss(vif);
4349d2b6da24SPo-Hao Huang 		else
4350d2b6da24SPo-Hao Huang 			rtw89_fw_h2c_set_bcn_fltr_cfg(rtwdev, vif, true);
4351d2b6da24SPo-Hao Huang 		return;
4352d2b6da24SPo-Hao Huang 	case RTW89_BCN_FLTR_NOTIFY:
4353d2b6da24SPo-Hao Huang 		nl_event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
4354d2b6da24SPo-Hao Huang 		break;
4355d2b6da24SPo-Hao Huang 	case RTW89_BCN_FLTR_RSSI:
4356d2b6da24SPo-Hao Huang 		if (event == RTW89_BCN_FLTR_RSSI_LOW)
4357d2b6da24SPo-Hao Huang 			nl_event = NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW;
4358d2b6da24SPo-Hao Huang 		else if (event == RTW89_BCN_FLTR_RSSI_HIGH)
4359d2b6da24SPo-Hao Huang 			nl_event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
4360d2b6da24SPo-Hao Huang 		else
4361d2b6da24SPo-Hao Huang 			return;
4362d2b6da24SPo-Hao Huang 		break;
4363d2b6da24SPo-Hao Huang 	default:
4364d2b6da24SPo-Hao Huang 		return;
4365d2b6da24SPo-Hao Huang 	}
4366d2b6da24SPo-Hao Huang 
4367d2b6da24SPo-Hao Huang 	ieee80211_cqm_rssi_notify(vif, nl_event, sig, GFP_KERNEL);
4368d2b6da24SPo-Hao Huang }
4369d2b6da24SPo-Hao Huang 
4370d2b6da24SPo-Hao Huang static void
4371d2b6da24SPo-Hao Huang rtw89_mac_c2h_bcn_fltr_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h,
4372d2b6da24SPo-Hao Huang 			   u32 len)
4373d2b6da24SPo-Hao Huang {
4374d2b6da24SPo-Hao Huang 	struct rtw89_vif *rtwvif;
4375d2b6da24SPo-Hao Huang 
4376d2b6da24SPo-Hao Huang 	rtw89_for_each_rtwvif(rtwdev, rtwvif)
4377d2b6da24SPo-Hao Huang 		rtw89_mac_bcn_fltr_rpt(rtwdev, rtwvif, c2h);
4378d2b6da24SPo-Hao Huang }
4379d2b6da24SPo-Hao Huang 
4380d2b6da24SPo-Hao Huang static void
4381e3ec7017SPing-Ke Shih rtw89_mac_c2h_rec_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4382e3ec7017SPing-Ke Shih {
438332bb12ebSZong-Zhe Yang 	/* N.B. This will run in interrupt context. */
438432bb12ebSZong-Zhe Yang 
4385e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW,
4386e3ec7017SPing-Ke Shih 		    "C2H rev ack recv, cat: %d, class: %d, func: %d, seq : %d\n",
4387e3ec7017SPing-Ke Shih 		    RTW89_GET_MAC_C2H_REV_ACK_CAT(c2h->data),
4388e3ec7017SPing-Ke Shih 		    RTW89_GET_MAC_C2H_REV_ACK_CLASS(c2h->data),
4389e3ec7017SPing-Ke Shih 		    RTW89_GET_MAC_C2H_REV_ACK_FUNC(c2h->data),
4390e3ec7017SPing-Ke Shih 		    RTW89_GET_MAC_C2H_REV_ACK_H2C_SEQ(c2h->data));
4391e3ec7017SPing-Ke Shih }
4392e3ec7017SPing-Ke Shih 
4393e3ec7017SPing-Ke Shih static void
4394b9b632f4SZong-Zhe Yang rtw89_mac_c2h_done_ack(struct rtw89_dev *rtwdev, struct sk_buff *skb_c2h, u32 len)
4395e3ec7017SPing-Ke Shih {
439632bb12ebSZong-Zhe Yang 	/* N.B. This will run in interrupt context. */
4397b9b632f4SZong-Zhe Yang 	struct rtw89_wait_info *fw_ofld_wait = &rtwdev->mac.fw_ofld_wait;
4398b9b632f4SZong-Zhe Yang 	const struct rtw89_c2h_done_ack *c2h =
4399b9b632f4SZong-Zhe Yang 		(const struct rtw89_c2h_done_ack *)skb_c2h->data;
4400b9b632f4SZong-Zhe Yang 	u8 h2c_cat = le32_get_bits(c2h->w2, RTW89_C2H_DONE_ACK_W2_CAT);
4401b9b632f4SZong-Zhe Yang 	u8 h2c_class = le32_get_bits(c2h->w2, RTW89_C2H_DONE_ACK_W2_CLASS);
4402b9b632f4SZong-Zhe Yang 	u8 h2c_func = le32_get_bits(c2h->w2, RTW89_C2H_DONE_ACK_W2_FUNC);
4403b9b632f4SZong-Zhe Yang 	u8 h2c_return = le32_get_bits(c2h->w2, RTW89_C2H_DONE_ACK_W2_H2C_RETURN);
4404b9b632f4SZong-Zhe Yang 	u8 h2c_seq = le32_get_bits(c2h->w2, RTW89_C2H_DONE_ACK_W2_H2C_SEQ);
4405b9b632f4SZong-Zhe Yang 	struct rtw89_completion_data data = {};
4406b9b632f4SZong-Zhe Yang 	unsigned int cond;
440732bb12ebSZong-Zhe Yang 
4408e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_FW,
4409e3ec7017SPing-Ke Shih 		    "C2H done ack recv, cat: %d, class: %d, func: %d, ret: %d, seq : %d\n",
4410b9b632f4SZong-Zhe Yang 		    h2c_cat, h2c_class, h2c_func, h2c_return, h2c_seq);
4411b9b632f4SZong-Zhe Yang 
4412b9b632f4SZong-Zhe Yang 	if (h2c_cat != H2C_CAT_MAC)
4413b9b632f4SZong-Zhe Yang 		return;
4414b9b632f4SZong-Zhe Yang 
4415b9b632f4SZong-Zhe Yang 	switch (h2c_class) {
4416b9b632f4SZong-Zhe Yang 	default:
4417b9b632f4SZong-Zhe Yang 		return;
4418b9b632f4SZong-Zhe Yang 	case H2C_CL_MAC_FW_OFLD:
4419b9b632f4SZong-Zhe Yang 		switch (h2c_func) {
4420b9b632f4SZong-Zhe Yang 		default:
4421b9b632f4SZong-Zhe Yang 			return;
4422b9b632f4SZong-Zhe Yang 		case H2C_FUNC_ADD_SCANOFLD_CH:
4423b9b632f4SZong-Zhe Yang 		case H2C_FUNC_SCANOFLD:
4424b9b632f4SZong-Zhe Yang 			cond = RTW89_FW_OFLD_WAIT_COND(0, h2c_func);
4425b9b632f4SZong-Zhe Yang 			break;
4426b9b632f4SZong-Zhe Yang 		}
4427b9b632f4SZong-Zhe Yang 
4428b9b632f4SZong-Zhe Yang 		data.err = !!h2c_return;
4429b9b632f4SZong-Zhe Yang 		rtw89_complete_cond(fw_ofld_wait, cond, &data);
4430b9b632f4SZong-Zhe Yang 		return;
4431b9b632f4SZong-Zhe Yang 	}
4432e3ec7017SPing-Ke Shih }
4433e3ec7017SPing-Ke Shih 
4434e3ec7017SPing-Ke Shih static void
4435e3ec7017SPing-Ke Shih rtw89_mac_c2h_log(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4436e3ec7017SPing-Ke Shih {
4437e3ec7017SPing-Ke Shih 	rtw89_info(rtwdev, "%*s", RTW89_GET_C2H_LOG_LEN(len),
4438e3ec7017SPing-Ke Shih 		   RTW89_GET_C2H_LOG_SRT_PRT(c2h->data));
4439e3ec7017SPing-Ke Shih }
4440e3ec7017SPing-Ke Shih 
4441fccca934SPing-Ke Shih static void
4442fccca934SPing-Ke Shih rtw89_mac_c2h_bcn_cnt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4443fccca934SPing-Ke Shih {
4444fccca934SPing-Ke Shih }
4445fccca934SPing-Ke Shih 
44462b8219e9SPo Hao Huang static void
44478febd68bSZong-Zhe Yang rtw89_mac_c2h_pkt_ofld_rsp(struct rtw89_dev *rtwdev, struct sk_buff *skb_c2h,
44482b8219e9SPo Hao Huang 			   u32 len)
44492b8219e9SPo Hao Huang {
44508febd68bSZong-Zhe Yang 	struct rtw89_wait_info *wait = &rtwdev->mac.fw_ofld_wait;
44518febd68bSZong-Zhe Yang 	const struct rtw89_c2h_pkt_ofld_rsp *c2h =
44528febd68bSZong-Zhe Yang 		(const struct rtw89_c2h_pkt_ofld_rsp *)skb_c2h->data;
44538febd68bSZong-Zhe Yang 	u16 pkt_len = le32_get_bits(c2h->w2, RTW89_C2H_PKT_OFLD_RSP_W2_PTK_LEN);
44548febd68bSZong-Zhe Yang 	u8 pkt_id = le32_get_bits(c2h->w2, RTW89_C2H_PKT_OFLD_RSP_W2_PTK_ID);
44558febd68bSZong-Zhe Yang 	u8 pkt_op = le32_get_bits(c2h->w2, RTW89_C2H_PKT_OFLD_RSP_W2_PTK_OP);
44568febd68bSZong-Zhe Yang 	struct rtw89_completion_data data = {};
44578febd68bSZong-Zhe Yang 	unsigned int cond;
44588febd68bSZong-Zhe Yang 
44598febd68bSZong-Zhe Yang 	data.err = !pkt_len;
44608febd68bSZong-Zhe Yang 	cond = RTW89_FW_OFLD_WAIT_COND_PKT_OFLD(pkt_id, pkt_op);
44618febd68bSZong-Zhe Yang 
44628febd68bSZong-Zhe Yang 	rtw89_complete_cond(wait, cond, &data);
44632b8219e9SPo Hao Huang }
44642b8219e9SPo Hao Huang 
4465f4a43c3bSDian-Syuan Yang static void
4466f4a43c3bSDian-Syuan Yang rtw89_mac_c2h_tsf32_toggle_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h,
4467f4a43c3bSDian-Syuan Yang 			       u32 len)
4468f4a43c3bSDian-Syuan Yang {
4469f4a43c3bSDian-Syuan Yang }
4470f4a43c3bSDian-Syuan Yang 
4471ef9dff4cSZong-Zhe Yang static void
4472ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_rcv_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4473ef9dff4cSZong-Zhe Yang {
4474ef9dff4cSZong-Zhe Yang 	u8 group = RTW89_GET_MAC_C2H_MCC_RCV_ACK_GROUP(c2h->data);
4475ef9dff4cSZong-Zhe Yang 	u8 func = RTW89_GET_MAC_C2H_MCC_RCV_ACK_H2C_FUNC(c2h->data);
4476ef9dff4cSZong-Zhe Yang 
4477ef9dff4cSZong-Zhe Yang 	switch (func) {
4478ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_ADD_MCC:
4479ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_START_MCC:
4480ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_STOP_MCC:
4481ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_DEL_MCC_GROUP:
4482ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_RESET_MCC_GROUP:
4483ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_REQ_TSF:
4484ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_MACID_BITMAP:
4485ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_SYNC:
4486ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_SET_DURATION:
4487ef9dff4cSZong-Zhe Yang 		break;
4488ef9dff4cSZong-Zhe Yang 	default:
4489214a98b1SZong-Zhe Yang 		rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4490ef9dff4cSZong-Zhe Yang 			    "invalid MCC C2H RCV ACK: func %d\n", func);
4491ef9dff4cSZong-Zhe Yang 		return;
4492ef9dff4cSZong-Zhe Yang 	}
4493ef9dff4cSZong-Zhe Yang 
4494214a98b1SZong-Zhe Yang 	rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4495ef9dff4cSZong-Zhe Yang 		    "MCC C2H RCV ACK: group %d, func %d\n", group, func);
4496ef9dff4cSZong-Zhe Yang }
4497ef9dff4cSZong-Zhe Yang 
4498ef9dff4cSZong-Zhe Yang static void
4499ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_req_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4500ef9dff4cSZong-Zhe Yang {
4501ef9dff4cSZong-Zhe Yang 	u8 group = RTW89_GET_MAC_C2H_MCC_REQ_ACK_GROUP(c2h->data);
4502ef9dff4cSZong-Zhe Yang 	u8 func = RTW89_GET_MAC_C2H_MCC_REQ_ACK_H2C_FUNC(c2h->data);
4503ef9dff4cSZong-Zhe Yang 	u8 retcode = RTW89_GET_MAC_C2H_MCC_REQ_ACK_H2C_RETURN(c2h->data);
4504ef9dff4cSZong-Zhe Yang 	struct rtw89_completion_data data = {};
4505ef9dff4cSZong-Zhe Yang 	unsigned int cond;
4506ef9dff4cSZong-Zhe Yang 	bool next = false;
4507ef9dff4cSZong-Zhe Yang 
4508ef9dff4cSZong-Zhe Yang 	switch (func) {
4509ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_REQ_TSF:
4510ef9dff4cSZong-Zhe Yang 		next = true;
4511ef9dff4cSZong-Zhe Yang 		break;
4512ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_MACID_BITMAP:
4513ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_SYNC:
4514ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_MCC_SET_DURATION:
4515ef9dff4cSZong-Zhe Yang 		break;
4516ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_ADD_MCC:
4517ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_START_MCC:
4518ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_STOP_MCC:
4519ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_DEL_MCC_GROUP:
4520ef9dff4cSZong-Zhe Yang 	case H2C_FUNC_RESET_MCC_GROUP:
4521ef9dff4cSZong-Zhe Yang 	default:
4522214a98b1SZong-Zhe Yang 		rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4523ef9dff4cSZong-Zhe Yang 			    "invalid MCC C2H REQ ACK: func %d\n", func);
4524ef9dff4cSZong-Zhe Yang 		return;
4525ef9dff4cSZong-Zhe Yang 	}
4526ef9dff4cSZong-Zhe Yang 
4527214a98b1SZong-Zhe Yang 	rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4528ef9dff4cSZong-Zhe Yang 		    "MCC C2H REQ ACK: group %d, func %d, return code %d\n",
4529ef9dff4cSZong-Zhe Yang 		    group, func, retcode);
4530ef9dff4cSZong-Zhe Yang 
4531ef9dff4cSZong-Zhe Yang 	if (!retcode && next)
4532ef9dff4cSZong-Zhe Yang 		return;
4533ef9dff4cSZong-Zhe Yang 
4534ef9dff4cSZong-Zhe Yang 	data.err = !!retcode;
4535ef9dff4cSZong-Zhe Yang 	cond = RTW89_MCC_WAIT_COND(group, func);
4536ef9dff4cSZong-Zhe Yang 	rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data);
4537ef9dff4cSZong-Zhe Yang }
4538ef9dff4cSZong-Zhe Yang 
4539ef9dff4cSZong-Zhe Yang static void
4540ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_tsf_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4541ef9dff4cSZong-Zhe Yang {
4542ef9dff4cSZong-Zhe Yang 	u8 group = RTW89_GET_MAC_C2H_MCC_TSF_RPT_GROUP(c2h->data);
4543ef9dff4cSZong-Zhe Yang 	struct rtw89_completion_data data = {};
4544ef9dff4cSZong-Zhe Yang 	struct rtw89_mac_mcc_tsf_rpt *rpt;
4545ef9dff4cSZong-Zhe Yang 	unsigned int cond;
4546ef9dff4cSZong-Zhe Yang 
4547ef9dff4cSZong-Zhe Yang 	rpt = (struct rtw89_mac_mcc_tsf_rpt *)data.buf;
4548ef9dff4cSZong-Zhe Yang 	rpt->macid_x = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_X(c2h->data);
4549ef9dff4cSZong-Zhe Yang 	rpt->macid_y = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_Y(c2h->data);
4550ef9dff4cSZong-Zhe Yang 	rpt->tsf_x_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_X(c2h->data);
4551ef9dff4cSZong-Zhe Yang 	rpt->tsf_x_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_X(c2h->data);
4552ef9dff4cSZong-Zhe Yang 	rpt->tsf_y_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_Y(c2h->data);
4553ef9dff4cSZong-Zhe Yang 	rpt->tsf_y_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_Y(c2h->data);
4554ef9dff4cSZong-Zhe Yang 
4555214a98b1SZong-Zhe Yang 	rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4556214a98b1SZong-Zhe Yang 		    "MCC C2H TSF RPT: macid %d> %llu, macid %d> %llu\n",
4557214a98b1SZong-Zhe Yang 		    rpt->macid_x, (u64)rpt->tsf_x_high << 32 | rpt->tsf_x_low,
4558214a98b1SZong-Zhe Yang 		    rpt->macid_y, (u64)rpt->tsf_y_high << 32 | rpt->tsf_y_low);
4559214a98b1SZong-Zhe Yang 
4560ef9dff4cSZong-Zhe Yang 	cond = RTW89_MCC_WAIT_COND(group, H2C_FUNC_MCC_REQ_TSF);
4561ef9dff4cSZong-Zhe Yang 	rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data);
4562ef9dff4cSZong-Zhe Yang }
4563ef9dff4cSZong-Zhe Yang 
4564ef9dff4cSZong-Zhe Yang static void
4565ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_status_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len)
4566ef9dff4cSZong-Zhe Yang {
4567ef9dff4cSZong-Zhe Yang 	u8 group = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_GROUP(c2h->data);
4568ef9dff4cSZong-Zhe Yang 	u8 macid = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_MACID(c2h->data);
4569ef9dff4cSZong-Zhe Yang 	u8 status = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_STATUS(c2h->data);
4570ef9dff4cSZong-Zhe Yang 	u32 tsf_low = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_TSF_LOW(c2h->data);
4571ef9dff4cSZong-Zhe Yang 	u32 tsf_high = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_TSF_HIGH(c2h->data);
4572ef9dff4cSZong-Zhe Yang 	struct rtw89_completion_data data = {};
4573ef9dff4cSZong-Zhe Yang 	unsigned int cond;
4574ef9dff4cSZong-Zhe Yang 	bool rsp = true;
4575ef9dff4cSZong-Zhe Yang 	bool err;
4576ef9dff4cSZong-Zhe Yang 	u8 func;
4577ef9dff4cSZong-Zhe Yang 
4578ef9dff4cSZong-Zhe Yang 	switch (status) {
4579ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_ADD_ROLE_OK:
4580ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_ADD_ROLE_FAIL:
4581ef9dff4cSZong-Zhe Yang 		func = H2C_FUNC_ADD_MCC;
4582ef9dff4cSZong-Zhe Yang 		err = status == RTW89_MAC_MCC_ADD_ROLE_FAIL;
4583ef9dff4cSZong-Zhe Yang 		break;
4584ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_START_GROUP_OK:
4585ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_START_GROUP_FAIL:
4586ef9dff4cSZong-Zhe Yang 		func = H2C_FUNC_START_MCC;
4587ef9dff4cSZong-Zhe Yang 		err = status == RTW89_MAC_MCC_START_GROUP_FAIL;
4588ef9dff4cSZong-Zhe Yang 		break;
4589ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_STOP_GROUP_OK:
4590ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_STOP_GROUP_FAIL:
4591ef9dff4cSZong-Zhe Yang 		func = H2C_FUNC_STOP_MCC;
4592ef9dff4cSZong-Zhe Yang 		err = status == RTW89_MAC_MCC_STOP_GROUP_FAIL;
4593ef9dff4cSZong-Zhe Yang 		break;
4594ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_DEL_GROUP_OK:
4595ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_DEL_GROUP_FAIL:
4596ef9dff4cSZong-Zhe Yang 		func = H2C_FUNC_DEL_MCC_GROUP;
4597ef9dff4cSZong-Zhe Yang 		err = status == RTW89_MAC_MCC_DEL_GROUP_FAIL;
4598ef9dff4cSZong-Zhe Yang 		break;
4599ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_RESET_GROUP_OK:
4600ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_RESET_GROUP_FAIL:
4601ef9dff4cSZong-Zhe Yang 		func = H2C_FUNC_RESET_MCC_GROUP;
4602ef9dff4cSZong-Zhe Yang 		err = status == RTW89_MAC_MCC_RESET_GROUP_FAIL;
4603ef9dff4cSZong-Zhe Yang 		break;
4604ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_SWITCH_CH_OK:
4605ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_SWITCH_CH_FAIL:
4606ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_TXNULL0_OK:
4607ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_TXNULL0_FAIL:
4608ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_TXNULL1_OK:
4609ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_TXNULL1_FAIL:
4610ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_SWITCH_EARLY:
4611ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_TBTT:
4612ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_DURATION_START:
4613ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_MCC_DURATION_END:
4614ef9dff4cSZong-Zhe Yang 		rsp = false;
4615ef9dff4cSZong-Zhe Yang 		break;
4616ef9dff4cSZong-Zhe Yang 	default:
4617214a98b1SZong-Zhe Yang 		rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4618ef9dff4cSZong-Zhe Yang 			    "invalid MCC C2H STS RPT: status %d\n", status);
4619ef9dff4cSZong-Zhe Yang 		return;
4620ef9dff4cSZong-Zhe Yang 	}
4621ef9dff4cSZong-Zhe Yang 
4622214a98b1SZong-Zhe Yang 	rtw89_debug(rtwdev, RTW89_DBG_CHAN,
4623214a98b1SZong-Zhe Yang 		    "MCC C2H STS RPT: group %d, macid %d, status %d, tsf %llu\n",
4624214a98b1SZong-Zhe Yang 		     group, macid, status, (u64)tsf_high << 32 | tsf_low);
4625ef9dff4cSZong-Zhe Yang 
4626ef9dff4cSZong-Zhe Yang 	if (!rsp)
4627ef9dff4cSZong-Zhe Yang 		return;
4628ef9dff4cSZong-Zhe Yang 
4629ef9dff4cSZong-Zhe Yang 	data.err = err;
4630ef9dff4cSZong-Zhe Yang 	cond = RTW89_MCC_WAIT_COND(group, func);
4631ef9dff4cSZong-Zhe Yang 	rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data);
4632ef9dff4cSZong-Zhe Yang }
4633ef9dff4cSZong-Zhe Yang 
4634e3ec7017SPing-Ke Shih static
4635e3ec7017SPing-Ke Shih void (* const rtw89_mac_c2h_ofld_handler[])(struct rtw89_dev *rtwdev,
4636e3ec7017SPing-Ke Shih 					    struct sk_buff *c2h, u32 len) = {
4637e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_EFUSE_DUMP] = NULL,
4638e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_READ_RSP] = NULL,
46392b8219e9SPo Hao Huang 	[RTW89_MAC_C2H_FUNC_PKT_OFLD_RSP] = rtw89_mac_c2h_pkt_ofld_rsp,
4640e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_BCN_RESEND] = NULL,
4641e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_MACID_PAUSE] = rtw89_mac_c2h_macid_pause,
464289590777SPo Hao Huang 	[RTW89_MAC_C2H_FUNC_SCANOFLD_RSP] = rtw89_mac_c2h_scanofld_rsp,
4643f4a43c3bSDian-Syuan Yang 	[RTW89_MAC_C2H_FUNC_TSF32_TOGL_RPT] = rtw89_mac_c2h_tsf32_toggle_rpt,
4644d2b6da24SPo-Hao Huang 	[RTW89_MAC_C2H_FUNC_BCNFLTR_RPT] = rtw89_mac_c2h_bcn_fltr_rpt,
4645e3ec7017SPing-Ke Shih };
4646e3ec7017SPing-Ke Shih 
4647e3ec7017SPing-Ke Shih static
4648e3ec7017SPing-Ke Shih void (* const rtw89_mac_c2h_info_handler[])(struct rtw89_dev *rtwdev,
4649e3ec7017SPing-Ke Shih 					    struct sk_buff *c2h, u32 len) = {
4650e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_REC_ACK] = rtw89_mac_c2h_rec_ack,
4651e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_DONE_ACK] = rtw89_mac_c2h_done_ack,
4652e3ec7017SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_C2H_LOG] = rtw89_mac_c2h_log,
4653fccca934SPing-Ke Shih 	[RTW89_MAC_C2H_FUNC_BCN_CNT] = rtw89_mac_c2h_bcn_cnt,
4654e3ec7017SPing-Ke Shih };
4655e3ec7017SPing-Ke Shih 
4656ef9dff4cSZong-Zhe Yang static
4657ef9dff4cSZong-Zhe Yang void (* const rtw89_mac_c2h_mcc_handler[])(struct rtw89_dev *rtwdev,
4658ef9dff4cSZong-Zhe Yang 					   struct sk_buff *c2h, u32 len) = {
4659ef9dff4cSZong-Zhe Yang 	[RTW89_MAC_C2H_FUNC_MCC_RCV_ACK] = rtw89_mac_c2h_mcc_rcv_ack,
4660ef9dff4cSZong-Zhe Yang 	[RTW89_MAC_C2H_FUNC_MCC_REQ_ACK] = rtw89_mac_c2h_mcc_req_ack,
4661ef9dff4cSZong-Zhe Yang 	[RTW89_MAC_C2H_FUNC_MCC_TSF_RPT] = rtw89_mac_c2h_mcc_tsf_rpt,
4662ef9dff4cSZong-Zhe Yang 	[RTW89_MAC_C2H_FUNC_MCC_STATUS_RPT] = rtw89_mac_c2h_mcc_status_rpt,
4663ef9dff4cSZong-Zhe Yang };
4664ef9dff4cSZong-Zhe Yang 
4665860e8263SZong-Zhe Yang bool rtw89_mac_c2h_chk_atomic(struct rtw89_dev *rtwdev, u8 class, u8 func)
4666860e8263SZong-Zhe Yang {
4667860e8263SZong-Zhe Yang 	switch (class) {
4668860e8263SZong-Zhe Yang 	default:
4669860e8263SZong-Zhe Yang 		return false;
467032bb12ebSZong-Zhe Yang 	case RTW89_MAC_C2H_CLASS_INFO:
467132bb12ebSZong-Zhe Yang 		switch (func) {
467232bb12ebSZong-Zhe Yang 		default:
467332bb12ebSZong-Zhe Yang 			return false;
467432bb12ebSZong-Zhe Yang 		case RTW89_MAC_C2H_FUNC_REC_ACK:
467532bb12ebSZong-Zhe Yang 		case RTW89_MAC_C2H_FUNC_DONE_ACK:
467632bb12ebSZong-Zhe Yang 			return true;
467732bb12ebSZong-Zhe Yang 		}
46788febd68bSZong-Zhe Yang 	case RTW89_MAC_C2H_CLASS_OFLD:
46798febd68bSZong-Zhe Yang 		switch (func) {
46808febd68bSZong-Zhe Yang 		default:
46818febd68bSZong-Zhe Yang 			return false;
46828febd68bSZong-Zhe Yang 		case RTW89_MAC_C2H_FUNC_PKT_OFLD_RSP:
46838febd68bSZong-Zhe Yang 			return true;
46848febd68bSZong-Zhe Yang 		}
4685860e8263SZong-Zhe Yang 	case RTW89_MAC_C2H_CLASS_MCC:
4686860e8263SZong-Zhe Yang 		return true;
4687860e8263SZong-Zhe Yang 	}
4688860e8263SZong-Zhe Yang }
4689860e8263SZong-Zhe Yang 
4690e3ec7017SPing-Ke Shih void rtw89_mac_c2h_handle(struct rtw89_dev *rtwdev, struct sk_buff *skb,
4691e3ec7017SPing-Ke Shih 			  u32 len, u8 class, u8 func)
4692e3ec7017SPing-Ke Shih {
4693e3ec7017SPing-Ke Shih 	void (*handler)(struct rtw89_dev *rtwdev,
4694e3ec7017SPing-Ke Shih 			struct sk_buff *c2h, u32 len) = NULL;
4695e3ec7017SPing-Ke Shih 
4696e3ec7017SPing-Ke Shih 	switch (class) {
4697e3ec7017SPing-Ke Shih 	case RTW89_MAC_C2H_CLASS_INFO:
4698e3ec7017SPing-Ke Shih 		if (func < RTW89_MAC_C2H_FUNC_INFO_MAX)
4699e3ec7017SPing-Ke Shih 			handler = rtw89_mac_c2h_info_handler[func];
4700e3ec7017SPing-Ke Shih 		break;
4701e3ec7017SPing-Ke Shih 	case RTW89_MAC_C2H_CLASS_OFLD:
4702e3ec7017SPing-Ke Shih 		if (func < RTW89_MAC_C2H_FUNC_OFLD_MAX)
4703e3ec7017SPing-Ke Shih 			handler = rtw89_mac_c2h_ofld_handler[func];
4704e3ec7017SPing-Ke Shih 		break;
4705ef9dff4cSZong-Zhe Yang 	case RTW89_MAC_C2H_CLASS_MCC:
4706ef9dff4cSZong-Zhe Yang 		if (func < NUM_OF_RTW89_MAC_C2H_FUNC_MCC)
4707ef9dff4cSZong-Zhe Yang 			handler = rtw89_mac_c2h_mcc_handler[func];
4708ef9dff4cSZong-Zhe Yang 		break;
4709e3ec7017SPing-Ke Shih 	case RTW89_MAC_C2H_CLASS_FWDBG:
4710e3ec7017SPing-Ke Shih 		return;
4711e3ec7017SPing-Ke Shih 	default:
4712e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "c2h class %d not support\n", class);
4713e3ec7017SPing-Ke Shih 		return;
4714e3ec7017SPing-Ke Shih 	}
4715e3ec7017SPing-Ke Shih 	if (!handler) {
4716e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "c2h class %d func %d not support\n", class,
4717e3ec7017SPing-Ke Shih 			   func);
4718e3ec7017SPing-Ke Shih 		return;
4719e3ec7017SPing-Ke Shih 	}
4720e3ec7017SPing-Ke Shih 	handler(rtwdev, skb, len);
4721e3ec7017SPing-Ke Shih }
4722e3ec7017SPing-Ke Shih 
4723e3ec7017SPing-Ke Shih bool rtw89_mac_get_txpwr_cr(struct rtw89_dev *rtwdev,
4724e3ec7017SPing-Ke Shih 			    enum rtw89_phy_idx phy_idx,
4725e3ec7017SPing-Ke Shih 			    u32 reg_base, u32 *cr)
4726e3ec7017SPing-Ke Shih {
4727e3ec7017SPing-Ke Shih 	const struct rtw89_dle_mem *dle_mem = rtwdev->chip->dle_mem;
4728e3ec7017SPing-Ke Shih 	enum rtw89_qta_mode mode = dle_mem->mode;
4729e3ec7017SPing-Ke Shih 	u32 addr = rtw89_mac_reg_by_idx(reg_base, phy_idx);
4730e3ec7017SPing-Ke Shih 
4731e3ec7017SPing-Ke Shih 	if (addr < R_AX_PWR_RATE_CTRL || addr > CMAC1_END_ADDR) {
4732e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "[TXPWR] addr=0x%x exceed txpwr cr\n",
4733e3ec7017SPing-Ke Shih 			  addr);
4734e3ec7017SPing-Ke Shih 		goto error;
4735e3ec7017SPing-Ke Shih 	}
4736e3ec7017SPing-Ke Shih 
4737e3ec7017SPing-Ke Shih 	if (addr >= CMAC1_START_ADDR && addr <= CMAC1_END_ADDR)
4738e3ec7017SPing-Ke Shih 		if (mode == RTW89_QTA_SCC) {
4739e3ec7017SPing-Ke Shih 			rtw89_err(rtwdev,
4740e3ec7017SPing-Ke Shih 				  "[TXPWR] addr=0x%x but hw not enable\n",
4741e3ec7017SPing-Ke Shih 				  addr);
4742e3ec7017SPing-Ke Shih 			goto error;
4743e3ec7017SPing-Ke Shih 		}
4744e3ec7017SPing-Ke Shih 
4745e3ec7017SPing-Ke Shih 	*cr = addr;
4746e3ec7017SPing-Ke Shih 	return true;
4747e3ec7017SPing-Ke Shih 
4748e3ec7017SPing-Ke Shih error:
4749e3ec7017SPing-Ke Shih 	rtw89_err(rtwdev, "[TXPWR] check txpwr cr 0x%x(phy%d) fail\n",
4750e3ec7017SPing-Ke Shih 		  addr, phy_idx);
4751e3ec7017SPing-Ke Shih 
4752e3ec7017SPing-Ke Shih 	return false;
4753e3ec7017SPing-Ke Shih }
4754861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_get_txpwr_cr);
4755e3ec7017SPing-Ke Shih 
4756e3ec7017SPing-Ke Shih int rtw89_mac_cfg_ppdu_status(struct rtw89_dev *rtwdev, u8 mac_idx, bool enable)
4757e3ec7017SPing-Ke Shih {
4758e3ec7017SPing-Ke Shih 	u32 reg = rtw89_mac_reg_by_idx(R_AX_PPDU_STAT, mac_idx);
475921087188SPing-Ke Shih 	int ret;
4760e3ec7017SPing-Ke Shih 
4761e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
4762e3ec7017SPing-Ke Shih 	if (ret)
4763e3ec7017SPing-Ke Shih 		return ret;
4764e3ec7017SPing-Ke Shih 
4765e3ec7017SPing-Ke Shih 	if (!enable) {
4766e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, reg, B_AX_PPDU_STAT_RPT_EN);
476721087188SPing-Ke Shih 		return 0;
4768e3ec7017SPing-Ke Shih 	}
4769e3ec7017SPing-Ke Shih 
4770e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, B_AX_PPDU_STAT_RPT_EN |
4771e3ec7017SPing-Ke Shih 				   B_AX_APP_MAC_INFO_RPT |
4772e3ec7017SPing-Ke Shih 				   B_AX_APP_RX_CNT_RPT | B_AX_APP_PLCP_HDR_RPT |
4773e3ec7017SPing-Ke Shih 				   B_AX_PPDU_STAT_RPT_CRC32);
4774e3ec7017SPing-Ke Shih 	rtw89_write32_mask(rtwdev, R_AX_HW_RPT_FWD, B_AX_FWD_PPDU_STAT_MASK,
4775e3ec7017SPing-Ke Shih 			   RTW89_PRPT_DEST_HOST);
4776e3ec7017SPing-Ke Shih 
477721087188SPing-Ke Shih 	return 0;
4778e3ec7017SPing-Ke Shih }
4779861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_cfg_ppdu_status);
4780e3ec7017SPing-Ke Shih 
4781e3ec7017SPing-Ke Shih void rtw89_mac_update_rts_threshold(struct rtw89_dev *rtwdev, u8 mac_idx)
4782e3ec7017SPing-Ke Shih {
4783e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_SH  5
4784e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_SH   4
4785e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_MAX 255
4786e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_MAX  255
4787e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_DEF 88
4788e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_DEF  4080
4789e3ec7017SPing-Ke Shih 	struct ieee80211_hw *hw = rtwdev->hw;
4790e3ec7017SPing-Ke Shih 	u32 rts_threshold = hw->wiphy->rts_threshold;
4791e3ec7017SPing-Ke Shih 	u32 time_th, len_th;
4792e3ec7017SPing-Ke Shih 	u32 reg;
4793e3ec7017SPing-Ke Shih 
4794e3ec7017SPing-Ke Shih 	if (rts_threshold == (u32)-1) {
4795e3ec7017SPing-Ke Shih 		time_th = MAC_AX_TIME_TH_DEF;
4796e3ec7017SPing-Ke Shih 		len_th = MAC_AX_LEN_TH_DEF;
4797e3ec7017SPing-Ke Shih 	} else {
4798e3ec7017SPing-Ke Shih 		time_th = MAC_AX_TIME_TH_MAX << MAC_AX_TIME_TH_SH;
4799e3ec7017SPing-Ke Shih 		len_th = rts_threshold;
4800e3ec7017SPing-Ke Shih 	}
4801e3ec7017SPing-Ke Shih 
4802e3ec7017SPing-Ke Shih 	time_th = min_t(u32, time_th >> MAC_AX_TIME_TH_SH, MAC_AX_TIME_TH_MAX);
4803e3ec7017SPing-Ke Shih 	len_th = min_t(u32, len_th >> MAC_AX_LEN_TH_SH, MAC_AX_LEN_TH_MAX);
4804e3ec7017SPing-Ke Shih 
4805e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_AGG_LEN_HT_0, mac_idx);
4806e3ec7017SPing-Ke Shih 	rtw89_write16_mask(rtwdev, reg, B_AX_RTS_TXTIME_TH_MASK, time_th);
4807e3ec7017SPing-Ke Shih 	rtw89_write16_mask(rtwdev, reg, B_AX_RTS_LEN_TH_MASK, len_th);
4808e3ec7017SPing-Ke Shih }
4809e3ec7017SPing-Ke Shih 
4810e3ec7017SPing-Ke Shih void rtw89_mac_flush_txq(struct rtw89_dev *rtwdev, u32 queues, bool drop)
4811e3ec7017SPing-Ke Shih {
4812e3ec7017SPing-Ke Shih 	bool empty;
4813e3ec7017SPing-Ke Shih 	int ret;
4814e3ec7017SPing-Ke Shih 
4815e3ec7017SPing-Ke Shih 	if (!test_bit(RTW89_FLAG_POWERON, rtwdev->flags))
4816e3ec7017SPing-Ke Shih 		return;
4817e3ec7017SPing-Ke Shih 
4818e3ec7017SPing-Ke Shih 	ret = read_poll_timeout(dle_is_txq_empty, empty, empty,
4819e3ec7017SPing-Ke Shih 				10000, 200000, false, rtwdev);
4820e3ec7017SPing-Ke Shih 	if (ret && !drop && (rtwdev->total_sta_assoc || rtwdev->scanning))
4821e3ec7017SPing-Ke Shih 		rtw89_info(rtwdev, "timed out to flush queues\n");
4822e3ec7017SPing-Ke Shih }
4823e3ec7017SPing-Ke Shih 
4824e3ec7017SPing-Ke Shih int rtw89_mac_coex_init(struct rtw89_dev *rtwdev, const struct rtw89_mac_ax_coex *coex)
4825e3ec7017SPing-Ke Shih {
4826e3ec7017SPing-Ke Shih 	u8 val;
4827e3ec7017SPing-Ke Shih 	u16 val16;
4828e3ec7017SPing-Ke Shih 	u32 val32;
4829e3ec7017SPing-Ke Shih 	int ret;
4830e3ec7017SPing-Ke Shih 
4831e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_GPIO_MUXCFG, B_AX_ENBT);
48325c3afcbaSPing-Ke Shih 	if (rtwdev->chip->chip_id != RTL8851B)
4833e3ec7017SPing-Ke Shih 		rtw89_write8_set(rtwdev, R_AX_BTC_FUNC_EN, B_AX_PTA_WL_TX_EN);
4834e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_BT_COEX_CFG_2 + 1, B_AX_GNT_BT_POLARITY >> 8);
4835e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_CSR_MODE, B_AX_STATIS_BT_EN | B_AX_WL_ACT_MSK);
4836e3ec7017SPing-Ke Shih 	rtw89_write8_set(rtwdev, R_AX_CSR_MODE + 2, B_AX_BT_CNT_RST >> 16);
48375c3afcbaSPing-Ke Shih 	if (rtwdev->chip->chip_id != RTL8851B)
4838e3ec7017SPing-Ke Shih 		rtw89_write8_clr(rtwdev, R_AX_TRXPTCL_RESP_0 + 3, B_AX_RSP_CHK_BTCCA >> 24);
4839e3ec7017SPing-Ke Shih 
4840e3ec7017SPing-Ke Shih 	val16 = rtw89_read16(rtwdev, R_AX_CCA_CFG_0);
4841e3ec7017SPing-Ke Shih 	val16 = (val16 | B_AX_BTCCA_EN) & ~B_AX_BTCCA_BRK_TXOP_EN;
4842e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, R_AX_CCA_CFG_0, val16);
4843e3ec7017SPing-Ke Shih 
4844e3ec7017SPing-Ke Shih 	ret = rtw89_mac_read_lte(rtwdev, R_AX_LTE_SW_CFG_2, &val32);
4845e3ec7017SPing-Ke Shih 	if (ret) {
4846e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "Read R_AX_LTE_SW_CFG_2 fail!\n");
4847e3ec7017SPing-Ke Shih 		return ret;
4848e3ec7017SPing-Ke Shih 	}
4849e3ec7017SPing-Ke Shih 	val32 = val32 & B_AX_WL_RX_CTRL;
4850e3ec7017SPing-Ke Shih 	ret = rtw89_mac_write_lte(rtwdev, R_AX_LTE_SW_CFG_2, val32);
4851e3ec7017SPing-Ke Shih 	if (ret) {
4852e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "Write R_AX_LTE_SW_CFG_2 fail!\n");
4853e3ec7017SPing-Ke Shih 		return ret;
4854e3ec7017SPing-Ke Shih 	}
4855e3ec7017SPing-Ke Shih 
4856e3ec7017SPing-Ke Shih 	switch (coex->pta_mode) {
4857e3ec7017SPing-Ke Shih 	case RTW89_MAC_AX_COEX_RTK_MODE:
4858e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG);
4859e3ec7017SPing-Ke Shih 		val &= ~B_AX_BTMODE_MASK;
4860e3ec7017SPing-Ke Shih 		val |= FIELD_PREP(B_AX_BTMODE_MASK, MAC_AX_BT_MODE_0_3);
4861e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG, val);
4862e3ec7017SPing-Ke Shih 
4863e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_TDMA_MODE);
4864e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_TDMA_MODE, val | B_AX_RTK_BT_ENABLE);
4865e3ec7017SPing-Ke Shih 
4866e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_BT_COEX_CFG_5);
4867e3ec7017SPing-Ke Shih 		val &= ~B_AX_BT_RPT_SAMPLE_RATE_MASK;
4868e3ec7017SPing-Ke Shih 		val |= FIELD_PREP(B_AX_BT_RPT_SAMPLE_RATE_MASK, MAC_AX_RTK_RATE);
4869e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_BT_COEX_CFG_5, val);
4870e3ec7017SPing-Ke Shih 		break;
4871e3ec7017SPing-Ke Shih 	case RTW89_MAC_AX_COEX_CSR_MODE:
4872e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG);
4873e3ec7017SPing-Ke Shih 		val &= ~B_AX_BTMODE_MASK;
4874e3ec7017SPing-Ke Shih 		val |= FIELD_PREP(B_AX_BTMODE_MASK, MAC_AX_BT_MODE_2);
4875e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG, val);
4876e3ec7017SPing-Ke Shih 
4877e3ec7017SPing-Ke Shih 		val16 = rtw89_read16(rtwdev, R_AX_CSR_MODE);
4878e3ec7017SPing-Ke Shih 		val16 &= ~B_AX_BT_PRI_DETECT_TO_MASK;
4879e3ec7017SPing-Ke Shih 		val16 |= FIELD_PREP(B_AX_BT_PRI_DETECT_TO_MASK, MAC_AX_CSR_PRI_TO);
4880e3ec7017SPing-Ke Shih 		val16 &= ~B_AX_BT_TRX_INIT_DETECT_MASK;
4881e3ec7017SPing-Ke Shih 		val16 |= FIELD_PREP(B_AX_BT_TRX_INIT_DETECT_MASK, MAC_AX_CSR_TRX_TO);
4882e3ec7017SPing-Ke Shih 		val16 &= ~B_AX_BT_STAT_DELAY_MASK;
4883e3ec7017SPing-Ke Shih 		val16 |= FIELD_PREP(B_AX_BT_STAT_DELAY_MASK, MAC_AX_CSR_DELAY);
4884e3ec7017SPing-Ke Shih 		val16 |= B_AX_ENHANCED_BT;
4885e3ec7017SPing-Ke Shih 		rtw89_write16(rtwdev, R_AX_CSR_MODE, val16);
4886e3ec7017SPing-Ke Shih 
4887e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_BT_COEX_CFG_2, MAC_AX_CSR_RATE);
4888e3ec7017SPing-Ke Shih 		break;
4889e3ec7017SPing-Ke Shih 	default:
4890e3ec7017SPing-Ke Shih 		return -EINVAL;
4891e3ec7017SPing-Ke Shih 	}
4892e3ec7017SPing-Ke Shih 
4893e3ec7017SPing-Ke Shih 	switch (coex->direction) {
4894e3ec7017SPing-Ke Shih 	case RTW89_MAC_AX_COEX_INNER:
4895e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1);
4896e3ec7017SPing-Ke Shih 		val = (val & ~BIT(2)) | BIT(1);
4897e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val);
4898e3ec7017SPing-Ke Shih 		break;
4899e3ec7017SPing-Ke Shih 	case RTW89_MAC_AX_COEX_OUTPUT:
4900e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1);
4901e3ec7017SPing-Ke Shih 		val = val | BIT(1) | BIT(0);
4902e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val);
4903e3ec7017SPing-Ke Shih 		break;
4904e3ec7017SPing-Ke Shih 	case RTW89_MAC_AX_COEX_INPUT:
4905e3ec7017SPing-Ke Shih 		val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1);
4906e3ec7017SPing-Ke Shih 		val = val & ~(BIT(2) | BIT(1));
4907e3ec7017SPing-Ke Shih 		rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val);
4908e3ec7017SPing-Ke Shih 		break;
4909e3ec7017SPing-Ke Shih 	default:
4910e3ec7017SPing-Ke Shih 		return -EINVAL;
4911e3ec7017SPing-Ke Shih 	}
4912e3ec7017SPing-Ke Shih 
4913e3ec7017SPing-Ke Shih 	return 0;
4914e3ec7017SPing-Ke Shih }
4915861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_coex_init);
4916e3ec7017SPing-Ke Shih 
4917065cf8f9SChia-Yuan Li int rtw89_mac_coex_init_v1(struct rtw89_dev *rtwdev,
4918065cf8f9SChia-Yuan Li 			   const struct rtw89_mac_ax_coex *coex)
4919065cf8f9SChia-Yuan Li {
4920065cf8f9SChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_BTC_CFG,
4921065cf8f9SChia-Yuan Li 			  B_AX_BTC_EN | B_AX_BTG_LNA1_GAIN_SEL);
4922065cf8f9SChia-Yuan Li 	rtw89_write32_set(rtwdev, R_AX_BT_CNT_CFG, B_AX_BT_CNT_EN);
4923065cf8f9SChia-Yuan Li 	rtw89_write16_set(rtwdev, R_AX_CCA_CFG_0, B_AX_BTCCA_EN);
4924065cf8f9SChia-Yuan Li 	rtw89_write16_clr(rtwdev, R_AX_CCA_CFG_0, B_AX_BTCCA_BRK_TXOP_EN);
4925065cf8f9SChia-Yuan Li 
4926065cf8f9SChia-Yuan Li 	switch (coex->pta_mode) {
4927065cf8f9SChia-Yuan Li 	case RTW89_MAC_AX_COEX_RTK_MODE:
4928065cf8f9SChia-Yuan Li 		rtw89_write32_mask(rtwdev, R_AX_BTC_CFG, B_AX_BTC_MODE_MASK,
4929065cf8f9SChia-Yuan Li 				   MAC_AX_RTK_MODE);
4930065cf8f9SChia-Yuan Li 		rtw89_write32_mask(rtwdev, R_AX_RTK_MODE_CFG_V1,
4931065cf8f9SChia-Yuan Li 				   B_AX_SAMPLE_CLK_MASK, MAC_AX_RTK_RATE);
4932065cf8f9SChia-Yuan Li 		break;
4933065cf8f9SChia-Yuan Li 	case RTW89_MAC_AX_COEX_CSR_MODE:
4934065cf8f9SChia-Yuan Li 		rtw89_write32_mask(rtwdev, R_AX_BTC_CFG, B_AX_BTC_MODE_MASK,
4935065cf8f9SChia-Yuan Li 				   MAC_AX_CSR_MODE);
4936065cf8f9SChia-Yuan Li 		break;
4937065cf8f9SChia-Yuan Li 	default:
4938065cf8f9SChia-Yuan Li 		return -EINVAL;
4939065cf8f9SChia-Yuan Li 	}
4940065cf8f9SChia-Yuan Li 
4941065cf8f9SChia-Yuan Li 	return 0;
4942065cf8f9SChia-Yuan Li }
4943065cf8f9SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_coex_init_v1);
4944065cf8f9SChia-Yuan Li 
4945e3ec7017SPing-Ke Shih int rtw89_mac_cfg_gnt(struct rtw89_dev *rtwdev,
4946e3ec7017SPing-Ke Shih 		      const struct rtw89_mac_ax_coex_gnt *gnt_cfg)
4947e3ec7017SPing-Ke Shih {
49488001c741SPing-Ke Shih 	u32 val = 0, ret;
4949e3ec7017SPing-Ke Shih 
49508001c741SPing-Ke Shih 	if (gnt_cfg->band[0].gnt_bt)
49518001c741SPing-Ke Shih 		val |= B_AX_GNT_BT_RFC_S0_SW_VAL | B_AX_GNT_BT_BB_S0_SW_VAL;
49528001c741SPing-Ke Shih 
49538001c741SPing-Ke Shih 	if (gnt_cfg->band[0].gnt_bt_sw_en)
49548001c741SPing-Ke Shih 		val |= B_AX_GNT_BT_RFC_S0_SW_CTRL | B_AX_GNT_BT_BB_S0_SW_CTRL;
49558001c741SPing-Ke Shih 
49568001c741SPing-Ke Shih 	if (gnt_cfg->band[0].gnt_wl)
49578001c741SPing-Ke Shih 		val |= B_AX_GNT_WL_RFC_S0_SW_VAL | B_AX_GNT_WL_BB_S0_SW_VAL;
49588001c741SPing-Ke Shih 
49598001c741SPing-Ke Shih 	if (gnt_cfg->band[0].gnt_wl_sw_en)
49608001c741SPing-Ke Shih 		val |= B_AX_GNT_WL_RFC_S0_SW_CTRL | B_AX_GNT_WL_BB_S0_SW_CTRL;
49618001c741SPing-Ke Shih 
49628001c741SPing-Ke Shih 	if (gnt_cfg->band[1].gnt_bt)
49638001c741SPing-Ke Shih 		val |= B_AX_GNT_BT_RFC_S1_SW_VAL | B_AX_GNT_BT_BB_S1_SW_VAL;
49648001c741SPing-Ke Shih 
49658001c741SPing-Ke Shih 	if (gnt_cfg->band[1].gnt_bt_sw_en)
49668001c741SPing-Ke Shih 		val |= B_AX_GNT_BT_RFC_S1_SW_CTRL | B_AX_GNT_BT_BB_S1_SW_CTRL;
49678001c741SPing-Ke Shih 
49688001c741SPing-Ke Shih 	if (gnt_cfg->band[1].gnt_wl)
49698001c741SPing-Ke Shih 		val |= B_AX_GNT_WL_RFC_S1_SW_VAL | B_AX_GNT_WL_BB_S1_SW_VAL;
49708001c741SPing-Ke Shih 
49718001c741SPing-Ke Shih 	if (gnt_cfg->band[1].gnt_wl_sw_en)
49728001c741SPing-Ke Shih 		val |= B_AX_GNT_WL_RFC_S1_SW_CTRL | B_AX_GNT_WL_BB_S1_SW_CTRL;
49738001c741SPing-Ke Shih 
4974e3ec7017SPing-Ke Shih 	ret = rtw89_mac_write_lte(rtwdev, R_AX_LTE_SW_CFG_1, val);
4975e3ec7017SPing-Ke Shih 	if (ret) {
4976e3ec7017SPing-Ke Shih 		rtw89_err(rtwdev, "Write LTE fail!\n");
4977e3ec7017SPing-Ke Shih 		return ret;
4978e3ec7017SPing-Ke Shih 	}
4979e3ec7017SPing-Ke Shih 
4980e3ec7017SPing-Ke Shih 	return 0;
4981e3ec7017SPing-Ke Shih }
4982feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_gnt);
4983feed6541SChia-Yuan Li 
4984feed6541SChia-Yuan Li int rtw89_mac_cfg_gnt_v1(struct rtw89_dev *rtwdev,
4985feed6541SChia-Yuan Li 			 const struct rtw89_mac_ax_coex_gnt *gnt_cfg)
4986feed6541SChia-Yuan Li {
4987feed6541SChia-Yuan Li 	u32 val = 0;
4988feed6541SChia-Yuan Li 
4989feed6541SChia-Yuan Li 	if (gnt_cfg->band[0].gnt_bt)
4990feed6541SChia-Yuan Li 		val |= B_AX_GNT_BT_RFC_S0_VAL | B_AX_GNT_BT_RX_VAL |
4991feed6541SChia-Yuan Li 		       B_AX_GNT_BT_TX_VAL;
4992feed6541SChia-Yuan Li 	else
4993feed6541SChia-Yuan Li 		val |= B_AX_WL_ACT_VAL;
4994feed6541SChia-Yuan Li 
4995feed6541SChia-Yuan Li 	if (gnt_cfg->band[0].gnt_bt_sw_en)
4996feed6541SChia-Yuan Li 		val |= B_AX_GNT_BT_RFC_S0_SWCTRL | B_AX_GNT_BT_RX_SWCTRL |
4997feed6541SChia-Yuan Li 		       B_AX_GNT_BT_TX_SWCTRL | B_AX_WL_ACT_SWCTRL;
4998feed6541SChia-Yuan Li 
4999feed6541SChia-Yuan Li 	if (gnt_cfg->band[0].gnt_wl)
5000feed6541SChia-Yuan Li 		val |= B_AX_GNT_WL_RFC_S0_VAL | B_AX_GNT_WL_RX_VAL |
5001feed6541SChia-Yuan Li 		       B_AX_GNT_WL_TX_VAL | B_AX_GNT_WL_BB_VAL;
5002feed6541SChia-Yuan Li 
5003feed6541SChia-Yuan Li 	if (gnt_cfg->band[0].gnt_wl_sw_en)
5004feed6541SChia-Yuan Li 		val |= B_AX_GNT_WL_RFC_S0_SWCTRL | B_AX_GNT_WL_RX_SWCTRL |
5005feed6541SChia-Yuan Li 		       B_AX_GNT_WL_TX_SWCTRL | B_AX_GNT_WL_BB_SWCTRL;
5006feed6541SChia-Yuan Li 
5007feed6541SChia-Yuan Li 	if (gnt_cfg->band[1].gnt_bt)
5008feed6541SChia-Yuan Li 		val |= B_AX_GNT_BT_RFC_S1_VAL | B_AX_GNT_BT_RX_VAL |
5009feed6541SChia-Yuan Li 		       B_AX_GNT_BT_TX_VAL;
5010feed6541SChia-Yuan Li 	else
5011feed6541SChia-Yuan Li 		val |= B_AX_WL_ACT_VAL;
5012feed6541SChia-Yuan Li 
5013feed6541SChia-Yuan Li 	if (gnt_cfg->band[1].gnt_bt_sw_en)
5014feed6541SChia-Yuan Li 		val |= B_AX_GNT_BT_RFC_S1_SWCTRL | B_AX_GNT_BT_RX_SWCTRL |
5015feed6541SChia-Yuan Li 		       B_AX_GNT_BT_TX_SWCTRL | B_AX_WL_ACT_SWCTRL;
5016feed6541SChia-Yuan Li 
5017feed6541SChia-Yuan Li 	if (gnt_cfg->band[1].gnt_wl)
5018feed6541SChia-Yuan Li 		val |= B_AX_GNT_WL_RFC_S1_VAL | B_AX_GNT_WL_RX_VAL |
5019feed6541SChia-Yuan Li 		       B_AX_GNT_WL_TX_VAL | B_AX_GNT_WL_BB_VAL;
5020feed6541SChia-Yuan Li 
5021feed6541SChia-Yuan Li 	if (gnt_cfg->band[1].gnt_wl_sw_en)
5022feed6541SChia-Yuan Li 		val |= B_AX_GNT_WL_RFC_S1_SWCTRL | B_AX_GNT_WL_RX_SWCTRL |
5023feed6541SChia-Yuan Li 		       B_AX_GNT_WL_TX_SWCTRL | B_AX_GNT_WL_BB_SWCTRL;
5024feed6541SChia-Yuan Li 
5025feed6541SChia-Yuan Li 	rtw89_write32(rtwdev, R_AX_GNT_SW_CTRL, val);
5026feed6541SChia-Yuan Li 
5027feed6541SChia-Yuan Li 	return 0;
5028feed6541SChia-Yuan Li }
5029feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_gnt_v1);
5030e3ec7017SPing-Ke Shih 
5031e3ec7017SPing-Ke Shih int rtw89_mac_cfg_plt(struct rtw89_dev *rtwdev, struct rtw89_mac_ax_plt *plt)
5032e3ec7017SPing-Ke Shih {
5033e3ec7017SPing-Ke Shih 	u32 reg;
503428e7ea8aSPing-Ke Shih 	u16 val;
5035e3ec7017SPing-Ke Shih 	int ret;
5036e3ec7017SPing-Ke Shih 
5037e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, plt->band, RTW89_CMAC_SEL);
5038e3ec7017SPing-Ke Shih 	if (ret)
5039e3ec7017SPing-Ke Shih 		return ret;
5040e3ec7017SPing-Ke Shih 
5041e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_BT_PLT, plt->band);
5042e3ec7017SPing-Ke Shih 	val = (plt->tx & RTW89_MAC_AX_PLT_LTE_RX ? B_AX_TX_PLT_GNT_LTE_RX : 0) |
5043e3ec7017SPing-Ke Shih 	      (plt->tx & RTW89_MAC_AX_PLT_GNT_BT_TX ? B_AX_TX_PLT_GNT_BT_TX : 0) |
5044e3ec7017SPing-Ke Shih 	      (plt->tx & RTW89_MAC_AX_PLT_GNT_BT_RX ? B_AX_TX_PLT_GNT_BT_RX : 0) |
5045e3ec7017SPing-Ke Shih 	      (plt->tx & RTW89_MAC_AX_PLT_GNT_WL ? B_AX_TX_PLT_GNT_WL : 0) |
5046e3ec7017SPing-Ke Shih 	      (plt->rx & RTW89_MAC_AX_PLT_LTE_RX ? B_AX_RX_PLT_GNT_LTE_RX : 0) |
5047e3ec7017SPing-Ke Shih 	      (plt->rx & RTW89_MAC_AX_PLT_GNT_BT_TX ? B_AX_RX_PLT_GNT_BT_TX : 0) |
5048e3ec7017SPing-Ke Shih 	      (plt->rx & RTW89_MAC_AX_PLT_GNT_BT_RX ? B_AX_RX_PLT_GNT_BT_RX : 0) |
504928e7ea8aSPing-Ke Shih 	      (plt->rx & RTW89_MAC_AX_PLT_GNT_WL ? B_AX_RX_PLT_GNT_WL : 0) |
505028e7ea8aSPing-Ke Shih 	      B_AX_PLT_EN;
505128e7ea8aSPing-Ke Shih 	rtw89_write16(rtwdev, reg, val);
5052e3ec7017SPing-Ke Shih 
5053e3ec7017SPing-Ke Shih 	return 0;
5054e3ec7017SPing-Ke Shih }
5055e3ec7017SPing-Ke Shih 
5056e3ec7017SPing-Ke Shih void rtw89_mac_cfg_sb(struct rtw89_dev *rtwdev, u32 val)
5057e3ec7017SPing-Ke Shih {
5058e3ec7017SPing-Ke Shih 	u32 fw_sb;
5059e3ec7017SPing-Ke Shih 
5060e3ec7017SPing-Ke Shih 	fw_sb = rtw89_read32(rtwdev, R_AX_SCOREBOARD);
5061e3ec7017SPing-Ke Shih 	fw_sb = FIELD_GET(B_MAC_AX_SB_FW_MASK, fw_sb);
5062e3ec7017SPing-Ke Shih 	fw_sb = fw_sb & ~B_MAC_AX_BTGS1_NOTIFY;
5063e3ec7017SPing-Ke Shih 	if (!test_bit(RTW89_FLAG_POWERON, rtwdev->flags))
5064e3ec7017SPing-Ke Shih 		fw_sb = fw_sb | MAC_AX_NOTIFY_PWR_MAJOR;
5065e3ec7017SPing-Ke Shih 	else
5066e3ec7017SPing-Ke Shih 		fw_sb = fw_sb | MAC_AX_NOTIFY_TP_MAJOR;
5067e3ec7017SPing-Ke Shih 	val = FIELD_GET(B_MAC_AX_SB_DRV_MASK, val);
5068e3ec7017SPing-Ke Shih 	val = B_AX_TOGGLE |
5069e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_MAC_AX_SB_DRV_MASK, val) |
5070e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_MAC_AX_SB_FW_MASK, fw_sb);
5071e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_SCOREBOARD, val);
5072e3ec7017SPing-Ke Shih 	fsleep(1000); /* avoid BT FW loss information */
5073e3ec7017SPing-Ke Shih }
5074e3ec7017SPing-Ke Shih 
5075e3ec7017SPing-Ke Shih u32 rtw89_mac_get_sb(struct rtw89_dev *rtwdev)
5076e3ec7017SPing-Ke Shih {
5077e3ec7017SPing-Ke Shih 	return rtw89_read32(rtwdev, R_AX_SCOREBOARD);
5078e3ec7017SPing-Ke Shih }
5079e3ec7017SPing-Ke Shih 
5080e3ec7017SPing-Ke Shih int rtw89_mac_cfg_ctrl_path(struct rtw89_dev *rtwdev, bool wl)
5081e3ec7017SPing-Ke Shih {
5082e3ec7017SPing-Ke Shih 	u8 val = rtw89_read8(rtwdev, R_AX_SYS_SDIO_CTRL + 3);
5083e3ec7017SPing-Ke Shih 
5084e3ec7017SPing-Ke Shih 	val = wl ? val | BIT(2) : val & ~BIT(2);
5085e3ec7017SPing-Ke Shih 	rtw89_write8(rtwdev, R_AX_SYS_SDIO_CTRL + 3, val);
5086e3ec7017SPing-Ke Shih 
5087e3ec7017SPing-Ke Shih 	return 0;
5088e3ec7017SPing-Ke Shih }
5089feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_ctrl_path);
5090feed6541SChia-Yuan Li 
5091feed6541SChia-Yuan Li int rtw89_mac_cfg_ctrl_path_v1(struct rtw89_dev *rtwdev, bool wl)
5092feed6541SChia-Yuan Li {
5093feed6541SChia-Yuan Li 	struct rtw89_btc *btc = &rtwdev->btc;
5094feed6541SChia-Yuan Li 	struct rtw89_btc_dm *dm = &btc->dm;
5095feed6541SChia-Yuan Li 	struct rtw89_mac_ax_gnt *g = dm->gnt.band;
5096feed6541SChia-Yuan Li 	int i;
5097feed6541SChia-Yuan Li 
5098feed6541SChia-Yuan Li 	if (wl)
5099feed6541SChia-Yuan Li 		return 0;
5100feed6541SChia-Yuan Li 
5101feed6541SChia-Yuan Li 	for (i = 0; i < RTW89_PHY_MAX; i++) {
5102feed6541SChia-Yuan Li 		g[i].gnt_bt_sw_en = 1;
5103feed6541SChia-Yuan Li 		g[i].gnt_bt = 1;
5104feed6541SChia-Yuan Li 		g[i].gnt_wl_sw_en = 1;
5105feed6541SChia-Yuan Li 		g[i].gnt_wl = 0;
5106feed6541SChia-Yuan Li 	}
5107feed6541SChia-Yuan Li 
5108feed6541SChia-Yuan Li 	return rtw89_mac_cfg_gnt_v1(rtwdev, &dm->gnt);
5109feed6541SChia-Yuan Li }
5110feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_ctrl_path_v1);
5111e3ec7017SPing-Ke Shih 
5112e3ec7017SPing-Ke Shih bool rtw89_mac_get_ctrl_path(struct rtw89_dev *rtwdev)
5113e3ec7017SPing-Ke Shih {
5114ae4e1adbSChing-Te Ku 	const struct rtw89_chip_info *chip = rtwdev->chip;
5115ae4e1adbSChing-Te Ku 	u8 val = 0;
5116e3ec7017SPing-Ke Shih 
5117ae4e1adbSChing-Te Ku 	if (chip->chip_id == RTL8852C)
5118ae4e1adbSChing-Te Ku 		return false;
5119ae4e1adbSChing-Te Ku 	else if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B)
5120ae4e1adbSChing-Te Ku 		val = rtw89_read8_mask(rtwdev, R_AX_SYS_SDIO_CTRL + 3,
5121ae4e1adbSChing-Te Ku 				       B_AX_LTE_MUX_CTRL_PATH >> 24);
5122ae4e1adbSChing-Te Ku 
5123ae4e1adbSChing-Te Ku 	return !!val;
5124e3ec7017SPing-Ke Shih }
5125e3ec7017SPing-Ke Shih 
51268c7e9cebSChing-Te Ku u16 rtw89_mac_get_plt_cnt(struct rtw89_dev *rtwdev, u8 band)
51278c7e9cebSChing-Te Ku {
51288c7e9cebSChing-Te Ku 	u32 reg;
51298c7e9cebSChing-Te Ku 	u16 cnt;
51308c7e9cebSChing-Te Ku 
51318c7e9cebSChing-Te Ku 	reg = rtw89_mac_reg_by_idx(R_AX_BT_PLT, band);
51328c7e9cebSChing-Te Ku 	cnt = rtw89_read32_mask(rtwdev, reg, B_AX_BT_PLT_PKT_CNT_MASK);
51338c7e9cebSChing-Te Ku 	rtw89_write16_set(rtwdev, reg, B_AX_BT_PLT_RST);
51348c7e9cebSChing-Te Ku 
51358c7e9cebSChing-Te Ku 	return cnt;
51368c7e9cebSChing-Te Ku }
51378c7e9cebSChing-Te Ku 
51388a66293eSPing-Ke Shih static void rtw89_mac_bfee_standby_timer(struct rtw89_dev *rtwdev, u8 mac_idx,
51398a66293eSPing-Ke Shih 					 bool keep)
51408a66293eSPing-Ke Shih {
51418a66293eSPing-Ke Shih 	u32 reg;
51428a66293eSPing-Ke Shih 
51438a66293eSPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_BF, "set bfee standby_timer to %d\n", keep);
51448a66293eSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_BFMEE_RESP_OPTION, mac_idx);
51458a66293eSPing-Ke Shih 	if (keep) {
51468a66293eSPing-Ke Shih 		set_bit(RTW89_FLAG_BFEE_TIMER_KEEP, rtwdev->flags);
51478a66293eSPing-Ke Shih 		rtw89_write32_mask(rtwdev, reg, B_AX_BFMEE_BFRP_RX_STANDBY_TIMER_MASK,
51488a66293eSPing-Ke Shih 				   BFRP_RX_STANDBY_TIMER_KEEP);
51498a66293eSPing-Ke Shih 	} else {
51508a66293eSPing-Ke Shih 		clear_bit(RTW89_FLAG_BFEE_TIMER_KEEP, rtwdev->flags);
51518a66293eSPing-Ke Shih 		rtw89_write32_mask(rtwdev, reg, B_AX_BFMEE_BFRP_RX_STANDBY_TIMER_MASK,
51528a66293eSPing-Ke Shih 				   BFRP_RX_STANDBY_TIMER_RELEASE);
51538a66293eSPing-Ke Shih 	}
51548a66293eSPing-Ke Shih }
51558a66293eSPing-Ke Shih 
5156e3ec7017SPing-Ke Shih static void rtw89_mac_bfee_ctrl(struct rtw89_dev *rtwdev, u8 mac_idx, bool en)
5157e3ec7017SPing-Ke Shih {
5158e3ec7017SPing-Ke Shih 	u32 reg;
5159e3ec7017SPing-Ke Shih 	u32 mask = B_AX_BFMEE_HT_NDPA_EN | B_AX_BFMEE_VHT_NDPA_EN |
5160e3ec7017SPing-Ke Shih 		   B_AX_BFMEE_HE_NDPA_EN;
5161e3ec7017SPing-Ke Shih 
5162e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_BF, "set bfee ndpa_en to %d\n", en);
5163e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_BFMEE_RESP_OPTION, mac_idx);
5164e3ec7017SPing-Ke Shih 	if (en) {
5165e3ec7017SPing-Ke Shih 		set_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags);
5166e3ec7017SPing-Ke Shih 		rtw89_write32_set(rtwdev, reg, mask);
5167e3ec7017SPing-Ke Shih 	} else {
5168e3ec7017SPing-Ke Shih 		clear_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags);
5169e3ec7017SPing-Ke Shih 		rtw89_write32_clr(rtwdev, reg, mask);
5170e3ec7017SPing-Ke Shih 	}
5171e3ec7017SPing-Ke Shih }
5172e3ec7017SPing-Ke Shih 
5173e3ec7017SPing-Ke Shih static int rtw89_mac_init_bfee(struct rtw89_dev *rtwdev, u8 mac_idx)
5174e3ec7017SPing-Ke Shih {
5175e3ec7017SPing-Ke Shih 	u32 reg;
5176e3ec7017SPing-Ke Shih 	u32 val32;
5177e3ec7017SPing-Ke Shih 	int ret;
5178e3ec7017SPing-Ke Shih 
5179e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5180e3ec7017SPing-Ke Shih 	if (ret)
5181e3ec7017SPing-Ke Shih 		return ret;
5182e3ec7017SPing-Ke Shih 
5183e3ec7017SPing-Ke Shih 	/* AP mode set tx gid to 63 */
5184e3ec7017SPing-Ke Shih 	/* STA mode set tx gid to 0(default) */
5185e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_BFMER_CTRL_0, mac_idx);
5186e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_BFMER_NDP_BFEN);
5187e3ec7017SPing-Ke Shih 
5188e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RRSC, mac_idx);
5189e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, CSI_RRSC_BMAP);
5190e3ec7017SPing-Ke Shih 
5191e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_BFMEE_RESP_OPTION, mac_idx);
51928a66293eSPing-Ke Shih 	val32 = FIELD_PREP(B_AX_BFMEE_NDP_RX_STANDBY_TIMER_MASK, NDP_RX_STANDBY_TIMER);
5193e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg, val32);
51948a66293eSPing-Ke Shih 	rtw89_mac_bfee_standby_timer(rtwdev, mac_idx, true);
5195e3ec7017SPing-Ke Shih 	rtw89_mac_bfee_ctrl(rtwdev, mac_idx, true);
5196e3ec7017SPing-Ke Shih 
5197e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx);
5198e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL |
5199e3ec7017SPing-Ke Shih 				       B_AX_BFMEE_USE_NSTS |
5200e3ec7017SPing-Ke Shih 				       B_AX_BFMEE_CSI_GID_SEL |
5201e3ec7017SPing-Ke Shih 				       B_AX_BFMEE_CSI_FORCE_RETE_EN);
5202e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RATE, mac_idx);
5203e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, reg,
5204e3ec7017SPing-Ke Shih 		      u32_encode_bits(CSI_INIT_RATE_HT, B_AX_BFMEE_HT_CSI_RATE_MASK) |
5205e3ec7017SPing-Ke Shih 		      u32_encode_bits(CSI_INIT_RATE_VHT, B_AX_BFMEE_VHT_CSI_RATE_MASK) |
5206e3ec7017SPing-Ke Shih 		      u32_encode_bits(CSI_INIT_RATE_HE, B_AX_BFMEE_HE_CSI_RATE_MASK));
5207e3ec7017SPing-Ke Shih 
520862440fbeSPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_CSIRPT_OPTION, mac_idx);
520962440fbeSPing-Ke Shih 	rtw89_write32_set(rtwdev, reg,
521062440fbeSPing-Ke Shih 			  B_AX_CSIPRT_VHTSU_AID_EN | B_AX_CSIPRT_HESU_AID_EN);
521162440fbeSPing-Ke Shih 
5212e3ec7017SPing-Ke Shih 	return 0;
5213e3ec7017SPing-Ke Shih }
5214e3ec7017SPing-Ke Shih 
5215e3ec7017SPing-Ke Shih static int rtw89_mac_set_csi_para_reg(struct rtw89_dev *rtwdev,
5216e3ec7017SPing-Ke Shih 				      struct ieee80211_vif *vif,
5217e3ec7017SPing-Ke Shih 				      struct ieee80211_sta *sta)
5218e3ec7017SPing-Ke Shih {
5219e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
5220e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwvif->mac_idx;
5221e3ec7017SPing-Ke Shih 	u8 nc = 1, nr = 3, ng = 0, cb = 1, cs = 1, ldpc_en = 1, stbc_en = 1;
5222e3ec7017SPing-Ke Shih 	u8 port_sel = rtwvif->port;
5223e3ec7017SPing-Ke Shih 	u8 sound_dim = 3, t;
5224046d2e7cSSriram R 	u8 *phy_cap = sta->deflink.he_cap.he_cap_elem.phy_cap_info;
5225e3ec7017SPing-Ke Shih 	u32 reg;
5226e3ec7017SPing-Ke Shih 	u16 val;
5227e3ec7017SPing-Ke Shih 	int ret;
5228e3ec7017SPing-Ke Shih 
5229e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5230e3ec7017SPing-Ke Shih 	if (ret)
5231e3ec7017SPing-Ke Shih 		return ret;
5232e3ec7017SPing-Ke Shih 
5233e3ec7017SPing-Ke Shih 	if ((phy_cap[3] & IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER) ||
5234e3ec7017SPing-Ke Shih 	    (phy_cap[4] & IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER)) {
5235e3ec7017SPing-Ke Shih 		ldpc_en &= !!(phy_cap[1] & IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD);
5236e3ec7017SPing-Ke Shih 		stbc_en &= !!(phy_cap[2] & IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ);
5237e3ec7017SPing-Ke Shih 		t = FIELD_GET(IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK,
5238e3ec7017SPing-Ke Shih 			      phy_cap[5]);
5239e3ec7017SPing-Ke Shih 		sound_dim = min(sound_dim, t);
5240e3ec7017SPing-Ke Shih 	}
5241046d2e7cSSriram R 	if ((sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE) ||
5242046d2e7cSSriram R 	    (sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)) {
5243046d2e7cSSriram R 		ldpc_en &= !!(sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_RXLDPC);
5244046d2e7cSSriram R 		stbc_en &= !!(sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_RXSTBC_MASK);
5245e3ec7017SPing-Ke Shih 		t = FIELD_GET(IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK,
5246046d2e7cSSriram R 			      sta->deflink.vht_cap.cap);
5247e3ec7017SPing-Ke Shih 		sound_dim = min(sound_dim, t);
5248e3ec7017SPing-Ke Shih 	}
5249e3ec7017SPing-Ke Shih 	nc = min(nc, sound_dim);
5250e3ec7017SPing-Ke Shih 	nr = min(nr, sound_dim);
5251e3ec7017SPing-Ke Shih 
5252e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx);
5253e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL);
5254e3ec7017SPing-Ke Shih 
5255e3ec7017SPing-Ke Shih 	val = FIELD_PREP(B_AX_BFMEE_CSIINFO0_NC_MASK, nc) |
5256e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_NR_MASK, nr) |
5257e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_NG_MASK, ng) |
5258e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_CB_MASK, cb) |
5259e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_CS_MASK, cs) |
5260e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_LDPC_EN, ldpc_en) |
5261e3ec7017SPing-Ke Shih 	      FIELD_PREP(B_AX_BFMEE_CSIINFO0_STBC_EN, stbc_en);
5262e3ec7017SPing-Ke Shih 
5263e3ec7017SPing-Ke Shih 	if (port_sel == 0)
5264e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx);
5265e3ec7017SPing-Ke Shih 	else
5266e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_1, mac_idx);
5267e3ec7017SPing-Ke Shih 
5268e3ec7017SPing-Ke Shih 	rtw89_write16(rtwdev, reg, val);
5269e3ec7017SPing-Ke Shih 
5270e3ec7017SPing-Ke Shih 	return 0;
5271e3ec7017SPing-Ke Shih }
5272e3ec7017SPing-Ke Shih 
5273e3ec7017SPing-Ke Shih static int rtw89_mac_csi_rrsc(struct rtw89_dev *rtwdev,
5274e3ec7017SPing-Ke Shih 			      struct ieee80211_vif *vif,
5275e3ec7017SPing-Ke Shih 			      struct ieee80211_sta *sta)
5276e3ec7017SPing-Ke Shih {
5277e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
5278e3ec7017SPing-Ke Shih 	u32 rrsc = BIT(RTW89_MAC_BF_RRSC_6M) | BIT(RTW89_MAC_BF_RRSC_24M);
5279e3ec7017SPing-Ke Shih 	u32 reg;
5280e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwvif->mac_idx;
5281e3ec7017SPing-Ke Shih 	int ret;
5282e3ec7017SPing-Ke Shih 
5283e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5284e3ec7017SPing-Ke Shih 	if (ret)
5285e3ec7017SPing-Ke Shih 		return ret;
5286e3ec7017SPing-Ke Shih 
5287046d2e7cSSriram R 	if (sta->deflink.he_cap.has_he) {
5288e3ec7017SPing-Ke Shih 		rrsc |= (BIT(RTW89_MAC_BF_RRSC_HE_MSC0) |
5289e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_HE_MSC3) |
5290e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_HE_MSC5));
5291e3ec7017SPing-Ke Shih 	}
5292046d2e7cSSriram R 	if (sta->deflink.vht_cap.vht_supported) {
5293e3ec7017SPing-Ke Shih 		rrsc |= (BIT(RTW89_MAC_BF_RRSC_VHT_MSC0) |
5294e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_VHT_MSC3) |
5295e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_VHT_MSC5));
5296e3ec7017SPing-Ke Shih 	}
5297046d2e7cSSriram R 	if (sta->deflink.ht_cap.ht_supported) {
5298e3ec7017SPing-Ke Shih 		rrsc |= (BIT(RTW89_MAC_BF_RRSC_HT_MSC0) |
5299e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_HT_MSC3) |
5300e3ec7017SPing-Ke Shih 			 BIT(RTW89_MAC_BF_RRSC_HT_MSC5));
5301e3ec7017SPing-Ke Shih 	}
5302e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx);
5303e3ec7017SPing-Ke Shih 	rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL);
5304e3ec7017SPing-Ke Shih 	rtw89_write32_clr(rtwdev, reg, B_AX_BFMEE_CSI_FORCE_RETE_EN);
5305e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev,
5306e3ec7017SPing-Ke Shih 		      rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RRSC, mac_idx),
5307e3ec7017SPing-Ke Shih 		      rrsc);
5308e3ec7017SPing-Ke Shih 
5309e3ec7017SPing-Ke Shih 	return 0;
5310e3ec7017SPing-Ke Shih }
5311e3ec7017SPing-Ke Shih 
5312e3ec7017SPing-Ke Shih void rtw89_mac_bf_assoc(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif,
5313e3ec7017SPing-Ke Shih 			struct ieee80211_sta *sta)
5314e3ec7017SPing-Ke Shih {
5315e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
5316e3ec7017SPing-Ke Shih 
5317e3ec7017SPing-Ke Shih 	if (rtw89_sta_has_beamformer_cap(sta)) {
5318e3ec7017SPing-Ke Shih 		rtw89_debug(rtwdev, RTW89_DBG_BF,
5319e3ec7017SPing-Ke Shih 			    "initialize bfee for new association\n");
5320e3ec7017SPing-Ke Shih 		rtw89_mac_init_bfee(rtwdev, rtwvif->mac_idx);
5321e3ec7017SPing-Ke Shih 		rtw89_mac_set_csi_para_reg(rtwdev, vif, sta);
5322e3ec7017SPing-Ke Shih 		rtw89_mac_csi_rrsc(rtwdev, vif, sta);
5323e3ec7017SPing-Ke Shih 	}
5324e3ec7017SPing-Ke Shih }
5325e3ec7017SPing-Ke Shih 
5326e3ec7017SPing-Ke Shih void rtw89_mac_bf_disassoc(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif,
5327e3ec7017SPing-Ke Shih 			   struct ieee80211_sta *sta)
5328e3ec7017SPing-Ke Shih {
5329e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
5330e3ec7017SPing-Ke Shih 
5331e3ec7017SPing-Ke Shih 	rtw89_mac_bfee_ctrl(rtwdev, rtwvif->mac_idx, false);
5332e3ec7017SPing-Ke Shih }
5333e3ec7017SPing-Ke Shih 
5334e3ec7017SPing-Ke Shih void rtw89_mac_bf_set_gid_table(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif,
5335e3ec7017SPing-Ke Shih 				struct ieee80211_bss_conf *conf)
5336e3ec7017SPing-Ke Shih {
5337e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
5338e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwvif->mac_idx;
5339e3ec7017SPing-Ke Shih 	__le32 *p;
5340e3ec7017SPing-Ke Shih 
5341e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_BF, "update bf GID table\n");
5342e3ec7017SPing-Ke Shih 
5343e3ec7017SPing-Ke Shih 	p = (__le32 *)conf->mu_group.membership;
5344e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION_EN0, mac_idx),
5345e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[0]));
5346e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION_EN1, mac_idx),
5347e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[1]));
5348e3ec7017SPing-Ke Shih 
5349e3ec7017SPing-Ke Shih 	p = (__le32 *)conf->mu_group.position;
5350e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION0, mac_idx),
5351e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[0]));
5352e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION1, mac_idx),
5353e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[1]));
5354e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION2, mac_idx),
5355e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[2]));
5356e3ec7017SPing-Ke Shih 	rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION3, mac_idx),
5357e3ec7017SPing-Ke Shih 		      le32_to_cpu(p[3]));
5358e3ec7017SPing-Ke Shih }
5359e3ec7017SPing-Ke Shih 
5360e3ec7017SPing-Ke Shih struct rtw89_mac_bf_monitor_iter_data {
5361e3ec7017SPing-Ke Shih 	struct rtw89_dev *rtwdev;
5362e3ec7017SPing-Ke Shih 	struct ieee80211_sta *down_sta;
5363e3ec7017SPing-Ke Shih 	int count;
5364e3ec7017SPing-Ke Shih };
5365e3ec7017SPing-Ke Shih 
5366e3ec7017SPing-Ke Shih static
5367e3ec7017SPing-Ke Shih void rtw89_mac_bf_monitor_calc_iter(void *data, struct ieee80211_sta *sta)
5368e3ec7017SPing-Ke Shih {
5369e3ec7017SPing-Ke Shih 	struct rtw89_mac_bf_monitor_iter_data *iter_data =
5370e3ec7017SPing-Ke Shih 				(struct rtw89_mac_bf_monitor_iter_data *)data;
5371e3ec7017SPing-Ke Shih 	struct ieee80211_sta *down_sta = iter_data->down_sta;
5372e3ec7017SPing-Ke Shih 	int *count = &iter_data->count;
5373e3ec7017SPing-Ke Shih 
5374e3ec7017SPing-Ke Shih 	if (down_sta == sta)
5375e3ec7017SPing-Ke Shih 		return;
5376e3ec7017SPing-Ke Shih 
5377e3ec7017SPing-Ke Shih 	if (rtw89_sta_has_beamformer_cap(sta))
5378e3ec7017SPing-Ke Shih 		(*count)++;
5379e3ec7017SPing-Ke Shih }
5380e3ec7017SPing-Ke Shih 
5381e3ec7017SPing-Ke Shih void rtw89_mac_bf_monitor_calc(struct rtw89_dev *rtwdev,
5382e3ec7017SPing-Ke Shih 			       struct ieee80211_sta *sta, bool disconnect)
5383e3ec7017SPing-Ke Shih {
5384e3ec7017SPing-Ke Shih 	struct rtw89_mac_bf_monitor_iter_data data;
5385e3ec7017SPing-Ke Shih 
5386e3ec7017SPing-Ke Shih 	data.rtwdev = rtwdev;
5387e3ec7017SPing-Ke Shih 	data.down_sta = disconnect ? sta : NULL;
5388e3ec7017SPing-Ke Shih 	data.count = 0;
5389e3ec7017SPing-Ke Shih 	ieee80211_iterate_stations_atomic(rtwdev->hw,
5390e3ec7017SPing-Ke Shih 					  rtw89_mac_bf_monitor_calc_iter,
5391e3ec7017SPing-Ke Shih 					  &data);
5392e3ec7017SPing-Ke Shih 
5393e3ec7017SPing-Ke Shih 	rtw89_debug(rtwdev, RTW89_DBG_BF, "bfee STA count=%d\n", data.count);
5394e3ec7017SPing-Ke Shih 	if (data.count)
5395e3ec7017SPing-Ke Shih 		set_bit(RTW89_FLAG_BFEE_MON, rtwdev->flags);
5396e3ec7017SPing-Ke Shih 	else
5397e3ec7017SPing-Ke Shih 		clear_bit(RTW89_FLAG_BFEE_MON, rtwdev->flags);
5398e3ec7017SPing-Ke Shih }
5399e3ec7017SPing-Ke Shih 
5400e3ec7017SPing-Ke Shih void _rtw89_mac_bf_monitor_track(struct rtw89_dev *rtwdev)
5401e3ec7017SPing-Ke Shih {
5402e3ec7017SPing-Ke Shih 	struct rtw89_traffic_stats *stats = &rtwdev->stats;
5403e3ec7017SPing-Ke Shih 	struct rtw89_vif *rtwvif;
54041646ce8fSYe Guojin 	bool en = stats->tx_tfc_lv <= stats->rx_tfc_lv;
5405e3ec7017SPing-Ke Shih 	bool old = test_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags);
54068a66293eSPing-Ke Shih 	bool keep_timer = true;
54078a66293eSPing-Ke Shih 	bool old_keep_timer;
54088a66293eSPing-Ke Shih 
54098a66293eSPing-Ke Shih 	old_keep_timer = test_bit(RTW89_FLAG_BFEE_TIMER_KEEP, rtwdev->flags);
54108a66293eSPing-Ke Shih 
54118a66293eSPing-Ke Shih 	if (stats->tx_tfc_lv <= RTW89_TFC_LOW && stats->rx_tfc_lv <= RTW89_TFC_LOW)
54128a66293eSPing-Ke Shih 		keep_timer = false;
54138a66293eSPing-Ke Shih 
54148a66293eSPing-Ke Shih 	if (keep_timer != old_keep_timer) {
54158a66293eSPing-Ke Shih 		rtw89_for_each_rtwvif(rtwdev, rtwvif)
54168a66293eSPing-Ke Shih 			rtw89_mac_bfee_standby_timer(rtwdev, rtwvif->mac_idx,
54178a66293eSPing-Ke Shih 						     keep_timer);
54188a66293eSPing-Ke Shih 	}
5419e3ec7017SPing-Ke Shih 
5420e3ec7017SPing-Ke Shih 	if (en == old)
5421e3ec7017SPing-Ke Shih 		return;
5422e3ec7017SPing-Ke Shih 
5423e3ec7017SPing-Ke Shih 	rtw89_for_each_rtwvif(rtwdev, rtwvif)
5424e3ec7017SPing-Ke Shih 		rtw89_mac_bfee_ctrl(rtwdev, rtwvif->mac_idx, en);
5425e3ec7017SPing-Ke Shih }
5426e3ec7017SPing-Ke Shih 
5427e3ec7017SPing-Ke Shih static int
5428e3ec7017SPing-Ke Shih __rtw89_mac_set_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta,
5429e3ec7017SPing-Ke Shih 			u32 tx_time)
5430e3ec7017SPing-Ke Shih {
5431e3ec7017SPing-Ke Shih #define MAC_AX_DFLT_TX_TIME 5280
5432e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwsta->rtwvif->mac_idx;
5433e3ec7017SPing-Ke Shih 	u32 max_tx_time = tx_time == 0 ? MAC_AX_DFLT_TX_TIME : tx_time;
5434e3ec7017SPing-Ke Shih 	u32 reg;
5435e3ec7017SPing-Ke Shih 	int ret = 0;
5436e3ec7017SPing-Ke Shih 
5437e3ec7017SPing-Ke Shih 	if (rtwsta->cctl_tx_time) {
5438e3ec7017SPing-Ke Shih 		rtwsta->ampdu_max_time = (max_tx_time - 512) >> 9;
5439e3ec7017SPing-Ke Shih 		ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta);
5440e3ec7017SPing-Ke Shih 	} else {
5441e3ec7017SPing-Ke Shih 		ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5442e3ec7017SPing-Ke Shih 		if (ret) {
5443e3ec7017SPing-Ke Shih 			rtw89_warn(rtwdev, "failed to check cmac in set txtime\n");
5444e3ec7017SPing-Ke Shih 			return ret;
5445e3ec7017SPing-Ke Shih 		}
5446e3ec7017SPing-Ke Shih 
5447e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_AMPDU_AGG_LIMIT, mac_idx);
5448e3ec7017SPing-Ke Shih 		rtw89_write32_mask(rtwdev, reg, B_AX_AMPDU_MAX_TIME_MASK,
5449e3ec7017SPing-Ke Shih 				   max_tx_time >> 5);
5450e3ec7017SPing-Ke Shih 	}
5451e3ec7017SPing-Ke Shih 
5452e3ec7017SPing-Ke Shih 	return ret;
5453e3ec7017SPing-Ke Shih }
5454e3ec7017SPing-Ke Shih 
5455e3ec7017SPing-Ke Shih int rtw89_mac_set_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta,
5456e3ec7017SPing-Ke Shih 			  bool resume, u32 tx_time)
5457e3ec7017SPing-Ke Shih {
5458e3ec7017SPing-Ke Shih 	int ret = 0;
5459e3ec7017SPing-Ke Shih 
5460e3ec7017SPing-Ke Shih 	if (!resume) {
5461e3ec7017SPing-Ke Shih 		rtwsta->cctl_tx_time = true;
5462e3ec7017SPing-Ke Shih 		ret = __rtw89_mac_set_tx_time(rtwdev, rtwsta, tx_time);
5463e3ec7017SPing-Ke Shih 	} else {
5464e3ec7017SPing-Ke Shih 		ret = __rtw89_mac_set_tx_time(rtwdev, rtwsta, tx_time);
5465e3ec7017SPing-Ke Shih 		rtwsta->cctl_tx_time = false;
5466e3ec7017SPing-Ke Shih 	}
5467e3ec7017SPing-Ke Shih 
5468e3ec7017SPing-Ke Shih 	return ret;
5469e3ec7017SPing-Ke Shih }
5470e3ec7017SPing-Ke Shih 
5471e3ec7017SPing-Ke Shih int rtw89_mac_get_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta,
5472e3ec7017SPing-Ke Shih 			  u32 *tx_time)
5473e3ec7017SPing-Ke Shih {
5474e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwsta->rtwvif->mac_idx;
5475e3ec7017SPing-Ke Shih 	u32 reg;
5476e3ec7017SPing-Ke Shih 	int ret = 0;
5477e3ec7017SPing-Ke Shih 
5478e3ec7017SPing-Ke Shih 	if (rtwsta->cctl_tx_time) {
5479e3ec7017SPing-Ke Shih 		*tx_time = (rtwsta->ampdu_max_time + 1) << 9;
5480e3ec7017SPing-Ke Shih 	} else {
5481e3ec7017SPing-Ke Shih 		ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5482e3ec7017SPing-Ke Shih 		if (ret) {
5483e3ec7017SPing-Ke Shih 			rtw89_warn(rtwdev, "failed to check cmac in tx_time\n");
5484e3ec7017SPing-Ke Shih 			return ret;
5485e3ec7017SPing-Ke Shih 		}
5486e3ec7017SPing-Ke Shih 
5487e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_AMPDU_AGG_LIMIT, mac_idx);
5488e3ec7017SPing-Ke Shih 		*tx_time = rtw89_read32_mask(rtwdev, reg, B_AX_AMPDU_MAX_TIME_MASK) << 5;
5489e3ec7017SPing-Ke Shih 	}
5490e3ec7017SPing-Ke Shih 
5491e3ec7017SPing-Ke Shih 	return ret;
5492e3ec7017SPing-Ke Shih }
5493e3ec7017SPing-Ke Shih 
5494e3ec7017SPing-Ke Shih int rtw89_mac_set_tx_retry_limit(struct rtw89_dev *rtwdev,
5495e3ec7017SPing-Ke Shih 				 struct rtw89_sta *rtwsta,
5496e3ec7017SPing-Ke Shih 				 bool resume, u8 tx_retry)
5497e3ec7017SPing-Ke Shih {
5498e3ec7017SPing-Ke Shih 	int ret = 0;
5499e3ec7017SPing-Ke Shih 
5500e3ec7017SPing-Ke Shih 	rtwsta->data_tx_cnt_lmt = tx_retry;
5501e3ec7017SPing-Ke Shih 
5502e3ec7017SPing-Ke Shih 	if (!resume) {
5503e3ec7017SPing-Ke Shih 		rtwsta->cctl_tx_retry_limit = true;
5504e3ec7017SPing-Ke Shih 		ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta);
5505e3ec7017SPing-Ke Shih 	} else {
5506e3ec7017SPing-Ke Shih 		ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta);
5507e3ec7017SPing-Ke Shih 		rtwsta->cctl_tx_retry_limit = false;
5508e3ec7017SPing-Ke Shih 	}
5509e3ec7017SPing-Ke Shih 
5510e3ec7017SPing-Ke Shih 	return ret;
5511e3ec7017SPing-Ke Shih }
5512e3ec7017SPing-Ke Shih 
5513e3ec7017SPing-Ke Shih int rtw89_mac_get_tx_retry_limit(struct rtw89_dev *rtwdev,
5514e3ec7017SPing-Ke Shih 				 struct rtw89_sta *rtwsta, u8 *tx_retry)
5515e3ec7017SPing-Ke Shih {
5516e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwsta->rtwvif->mac_idx;
5517e3ec7017SPing-Ke Shih 	u32 reg;
5518e3ec7017SPing-Ke Shih 	int ret = 0;
5519e3ec7017SPing-Ke Shih 
5520e3ec7017SPing-Ke Shih 	if (rtwsta->cctl_tx_retry_limit) {
5521e3ec7017SPing-Ke Shih 		*tx_retry = rtwsta->data_tx_cnt_lmt;
5522e3ec7017SPing-Ke Shih 	} else {
5523e3ec7017SPing-Ke Shih 		ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5524e3ec7017SPing-Ke Shih 		if (ret) {
5525e3ec7017SPing-Ke Shih 			rtw89_warn(rtwdev, "failed to check cmac in rty_lmt\n");
5526e3ec7017SPing-Ke Shih 			return ret;
5527e3ec7017SPing-Ke Shih 		}
5528e3ec7017SPing-Ke Shih 
5529e3ec7017SPing-Ke Shih 		reg = rtw89_mac_reg_by_idx(R_AX_TXCNT, mac_idx);
5530e3ec7017SPing-Ke Shih 		*tx_retry = rtw89_read32_mask(rtwdev, reg, B_AX_L_TXCNT_LMT_MASK);
5531e3ec7017SPing-Ke Shih 	}
5532e3ec7017SPing-Ke Shih 
5533e3ec7017SPing-Ke Shih 	return ret;
5534e3ec7017SPing-Ke Shih }
5535e3ec7017SPing-Ke Shih 
5536e3ec7017SPing-Ke Shih int rtw89_mac_set_hw_muedca_ctrl(struct rtw89_dev *rtwdev,
5537e3ec7017SPing-Ke Shih 				 struct rtw89_vif *rtwvif, bool en)
5538e3ec7017SPing-Ke Shih {
5539e3ec7017SPing-Ke Shih 	u8 mac_idx = rtwvif->mac_idx;
5540e3ec7017SPing-Ke Shih 	u16 set = B_AX_MUEDCA_EN_0 | B_AX_SET_MUEDCATIMER_TF_0;
5541e3ec7017SPing-Ke Shih 	u32 reg;
5542e3ec7017SPing-Ke Shih 	u32 ret;
5543e3ec7017SPing-Ke Shih 
5544e3ec7017SPing-Ke Shih 	ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL);
5545e3ec7017SPing-Ke Shih 	if (ret)
5546e3ec7017SPing-Ke Shih 		return ret;
5547e3ec7017SPing-Ke Shih 
5548e3ec7017SPing-Ke Shih 	reg = rtw89_mac_reg_by_idx(R_AX_MUEDCA_EN, mac_idx);
5549e3ec7017SPing-Ke Shih 	if (en)
5550e3ec7017SPing-Ke Shih 		rtw89_write16_set(rtwdev, reg, set);
5551e3ec7017SPing-Ke Shih 	else
5552e3ec7017SPing-Ke Shih 		rtw89_write16_clr(rtwdev, reg, set);
5553e3ec7017SPing-Ke Shih 
5554e3ec7017SPing-Ke Shih 	return 0;
5555e3ec7017SPing-Ke Shih }
55562a7e54dbSPing-Ke Shih 
55572a7e54dbSPing-Ke Shih int rtw89_mac_write_xtal_si(struct rtw89_dev *rtwdev, u8 offset, u8 val, u8 mask)
55582a7e54dbSPing-Ke Shih {
55592a7e54dbSPing-Ke Shih 	u32 val32;
55602a7e54dbSPing-Ke Shih 	int ret;
55612a7e54dbSPing-Ke Shih 
55622a7e54dbSPing-Ke Shih 	val32 = FIELD_PREP(B_AX_WL_XTAL_SI_ADDR_MASK, offset) |
55632a7e54dbSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_DATA_MASK, val) |
55642a7e54dbSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_BITMASK_MASK, mask) |
55652a7e54dbSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_MODE_MASK, XTAL_SI_NORMAL_WRITE) |
55662a7e54dbSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_CMD_POLL, 1);
55672a7e54dbSPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_WLAN_XTAL_SI_CTRL, val32);
55682a7e54dbSPing-Ke Shih 
55692a7e54dbSPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, val32, !(val32 & B_AX_WL_XTAL_SI_CMD_POLL),
55702a7e54dbSPing-Ke Shih 				50, 50000, false, rtwdev, R_AX_WLAN_XTAL_SI_CTRL);
55712a7e54dbSPing-Ke Shih 	if (ret) {
55722a7e54dbSPing-Ke Shih 		rtw89_warn(rtwdev, "xtal si not ready(W): offset=%x val=%x mask=%x\n",
55732a7e54dbSPing-Ke Shih 			   offset, val, mask);
55742a7e54dbSPing-Ke Shih 		return ret;
55752a7e54dbSPing-Ke Shih 	}
55762a7e54dbSPing-Ke Shih 
55772a7e54dbSPing-Ke Shih 	return 0;
55782a7e54dbSPing-Ke Shih }
55792a7e54dbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_write_xtal_si);
5580bdfbf06cSPing-Ke Shih 
5581bdfbf06cSPing-Ke Shih int rtw89_mac_read_xtal_si(struct rtw89_dev *rtwdev, u8 offset, u8 *val)
5582bdfbf06cSPing-Ke Shih {
5583bdfbf06cSPing-Ke Shih 	u32 val32;
5584bdfbf06cSPing-Ke Shih 	int ret;
5585bdfbf06cSPing-Ke Shih 
5586bdfbf06cSPing-Ke Shih 	val32 = FIELD_PREP(B_AX_WL_XTAL_SI_ADDR_MASK, offset) |
5587bdfbf06cSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_DATA_MASK, 0x00) |
5588bdfbf06cSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_BITMASK_MASK, 0x00) |
5589bdfbf06cSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_MODE_MASK, XTAL_SI_NORMAL_READ) |
5590bdfbf06cSPing-Ke Shih 		FIELD_PREP(B_AX_WL_XTAL_SI_CMD_POLL, 1);
5591bdfbf06cSPing-Ke Shih 	rtw89_write32(rtwdev, R_AX_WLAN_XTAL_SI_CTRL, val32);
5592bdfbf06cSPing-Ke Shih 
5593bdfbf06cSPing-Ke Shih 	ret = read_poll_timeout(rtw89_read32, val32, !(val32 & B_AX_WL_XTAL_SI_CMD_POLL),
5594bdfbf06cSPing-Ke Shih 				50, 50000, false, rtwdev, R_AX_WLAN_XTAL_SI_CTRL);
5595bdfbf06cSPing-Ke Shih 	if (ret) {
5596bdfbf06cSPing-Ke Shih 		rtw89_warn(rtwdev, "xtal si not ready(R): offset=%x\n", offset);
5597bdfbf06cSPing-Ke Shih 		return ret;
5598bdfbf06cSPing-Ke Shih 	}
5599bdfbf06cSPing-Ke Shih 
5600bdfbf06cSPing-Ke Shih 	*val = rtw89_read8(rtwdev, R_AX_WLAN_XTAL_SI_CTRL + 1);
5601bdfbf06cSPing-Ke Shih 
5602bdfbf06cSPing-Ke Shih 	return 0;
5603bdfbf06cSPing-Ke Shih }
560408484e1fSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_read_xtal_si);
56059a785583SZong-Zhe Yang 
56069a785583SZong-Zhe Yang static
56079a785583SZong-Zhe Yang void rtw89_mac_pkt_drop_sta(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta)
56089a785583SZong-Zhe Yang {
56099a785583SZong-Zhe Yang 	static const enum rtw89_pkt_drop_sel sels[] = {
56109a785583SZong-Zhe Yang 		RTW89_PKT_DROP_SEL_MACID_BE_ONCE,
56119a785583SZong-Zhe Yang 		RTW89_PKT_DROP_SEL_MACID_BK_ONCE,
56129a785583SZong-Zhe Yang 		RTW89_PKT_DROP_SEL_MACID_VI_ONCE,
56139a785583SZong-Zhe Yang 		RTW89_PKT_DROP_SEL_MACID_VO_ONCE,
56149a785583SZong-Zhe Yang 	};
56159a785583SZong-Zhe Yang 	struct rtw89_vif *rtwvif = rtwsta->rtwvif;
56169a785583SZong-Zhe Yang 	struct rtw89_pkt_drop_params params = {0};
56179a785583SZong-Zhe Yang 	int i;
56189a785583SZong-Zhe Yang 
56199a785583SZong-Zhe Yang 	params.mac_band = RTW89_MAC_0;
56209a785583SZong-Zhe Yang 	params.macid = rtwsta->mac_id;
56219a785583SZong-Zhe Yang 	params.port = rtwvif->port;
56229a785583SZong-Zhe Yang 	params.mbssid = 0;
56239a785583SZong-Zhe Yang 	params.tf_trs = rtwvif->trigger;
56249a785583SZong-Zhe Yang 
56259a785583SZong-Zhe Yang 	for (i = 0; i < ARRAY_SIZE(sels); i++) {
56269a785583SZong-Zhe Yang 		params.sel = sels[i];
56279a785583SZong-Zhe Yang 		rtw89_fw_h2c_pkt_drop(rtwdev, &params);
56289a785583SZong-Zhe Yang 	}
56299a785583SZong-Zhe Yang }
56309a785583SZong-Zhe Yang 
56319a785583SZong-Zhe Yang static void rtw89_mac_pkt_drop_vif_iter(void *data, struct ieee80211_sta *sta)
56329a785583SZong-Zhe Yang {
56339a785583SZong-Zhe Yang 	struct rtw89_sta *rtwsta = (struct rtw89_sta *)sta->drv_priv;
56349a785583SZong-Zhe Yang 	struct rtw89_vif *rtwvif = rtwsta->rtwvif;
56359a785583SZong-Zhe Yang 	struct rtw89_dev *rtwdev = rtwvif->rtwdev;
56369a785583SZong-Zhe Yang 	struct rtw89_vif *target = data;
56379a785583SZong-Zhe Yang 
56389a785583SZong-Zhe Yang 	if (rtwvif != target)
56399a785583SZong-Zhe Yang 		return;
56409a785583SZong-Zhe Yang 
56419a785583SZong-Zhe Yang 	rtw89_mac_pkt_drop_sta(rtwdev, rtwsta);
56429a785583SZong-Zhe Yang }
56439a785583SZong-Zhe Yang 
56449a785583SZong-Zhe Yang void rtw89_mac_pkt_drop_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif)
56459a785583SZong-Zhe Yang {
56469a785583SZong-Zhe Yang 	ieee80211_iterate_stations_atomic(rtwdev->hw,
56479a785583SZong-Zhe Yang 					  rtw89_mac_pkt_drop_vif_iter,
56489a785583SZong-Zhe Yang 					  rtwvif);
56499a785583SZong-Zhe Yang }
565041d56769SChih-Kang Chang 
565141d56769SChih-Kang Chang int rtw89_mac_ptk_drop_by_band_and_wait(struct rtw89_dev *rtwdev,
565241d56769SChih-Kang Chang 					enum rtw89_mac_idx band)
565341d56769SChih-Kang Chang {
565441d56769SChih-Kang Chang 	struct rtw89_pkt_drop_params params = {0};
565541d56769SChih-Kang Chang 	bool empty;
565641d56769SChih-Kang Chang 	int i, ret = 0, try_cnt = 3;
565741d56769SChih-Kang Chang 
565841d56769SChih-Kang Chang 	params.mac_band = band;
565941d56769SChih-Kang Chang 	params.sel = RTW89_PKT_DROP_SEL_BAND_ONCE;
566041d56769SChih-Kang Chang 
566141d56769SChih-Kang Chang 	for (i = 0; i < try_cnt; i++) {
566241d56769SChih-Kang Chang 		ret = read_poll_timeout(mac_is_txq_empty, empty, empty, 50,
566341d56769SChih-Kang Chang 					50000, false, rtwdev);
56640d1f7ff1SZong-Zhe Yang 		if (ret && !RTW89_CHK_FW_FEATURE(NO_PACKET_DROP, &rtwdev->fw))
566541d56769SChih-Kang Chang 			rtw89_fw_h2c_pkt_drop(rtwdev, &params);
566641d56769SChih-Kang Chang 		else
566741d56769SChih-Kang Chang 			return 0;
566841d56769SChih-Kang Chang 	}
566941d56769SChih-Kang Chang 	return ret;
567041d56769SChih-Kang Chang }
5671