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, "a); 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 && 626f7333fc2SChia-Yuan Li err != MAC_AX_ERR_L0_ERR_CMAC1) 627f7333fc2SChia-Yuan Li return; 628f7333fc2SChia-Yuan Li 629f7333fc2SChia-Yuan Li rtw89_info(rtwdev, "--->\nerr=0x%x\n", err); 630f7333fc2SChia-Yuan Li rtw89_info(rtwdev, "R_AX_SER_DBG_INFO =0x%08x\n", 631f7333fc2SChia-Yuan Li rtw89_read32(rtwdev, R_AX_SER_DBG_INFO)); 632f7333fc2SChia-Yuan Li 633f7333fc2SChia-Yuan Li rtw89_mac_dump_dmac_err_status(rtwdev); 634f7333fc2SChia-Yuan Li rtw89_mac_dump_cmac_err_status(rtwdev, RTW89_MAC_0); 635f7333fc2SChia-Yuan Li if (rtwdev->dbcc_en) 636f7333fc2SChia-Yuan Li rtw89_mac_dump_cmac_err_status(rtwdev, RTW89_MAC_1); 637e3ec7017SPing-Ke Shih 638e3ec7017SPing-Ke Shih rtwdev->hci.ops->dump_err_status(rtwdev); 639e3ec7017SPing-Ke Shih 640e3ec7017SPing-Ke Shih if (err == MAC_AX_ERR_L0_PROMOTE_TO_L1) 641e3ec7017SPing-Ke Shih rtw89_mac_dump_l0_to_l1(rtwdev, err); 642e3ec7017SPing-Ke Shih 643e3ec7017SPing-Ke Shih rtw89_info(rtwdev, "<---\n"); 644e3ec7017SPing-Ke Shih } 645e3ec7017SPing-Ke Shih 646e3ec7017SPing-Ke Shih u32 rtw89_mac_get_err_status(struct rtw89_dev *rtwdev) 647e3ec7017SPing-Ke Shih { 648198b6cf7SZong-Zhe Yang u32 err, err_scnr; 649e3ec7017SPing-Ke Shih int ret; 650e3ec7017SPing-Ke Shih 651e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, err, (err != 0), 1000, 100000, 652e3ec7017SPing-Ke Shih false, rtwdev, R_AX_HALT_C2H_CTRL); 653e3ec7017SPing-Ke Shih if (ret) { 654e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "Polling FW err status fail\n"); 655e3ec7017SPing-Ke Shih return ret; 656e3ec7017SPing-Ke Shih } 657e3ec7017SPing-Ke Shih 658e3ec7017SPing-Ke Shih err = rtw89_read32(rtwdev, R_AX_HALT_C2H); 659e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_C2H_CTRL, 0); 660e3ec7017SPing-Ke Shih 661198b6cf7SZong-Zhe Yang err_scnr = RTW89_ERROR_SCENARIO(err); 662198b6cf7SZong-Zhe Yang if (err_scnr == RTW89_WCPU_CPU_EXCEPTION) 663198b6cf7SZong-Zhe Yang err = MAC_AX_ERR_CPU_EXCEPTION; 664198b6cf7SZong-Zhe Yang else if (err_scnr == RTW89_WCPU_ASSERTION) 665198b6cf7SZong-Zhe Yang err = MAC_AX_ERR_ASSERTION; 666198b6cf7SZong-Zhe Yang 667e3ec7017SPing-Ke Shih rtw89_fw_st_dbg_dump(rtwdev); 668e3ec7017SPing-Ke Shih rtw89_mac_dump_err_status(rtwdev, err); 669e3ec7017SPing-Ke Shih 670e3ec7017SPing-Ke Shih return err; 671e3ec7017SPing-Ke Shih } 672e3ec7017SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_get_err_status); 673e3ec7017SPing-Ke Shih 674e3ec7017SPing-Ke Shih int rtw89_mac_set_err_status(struct rtw89_dev *rtwdev, u32 err) 675e3ec7017SPing-Ke Shih { 676e3ec7017SPing-Ke Shih u32 halt; 677e3ec7017SPing-Ke Shih int ret = 0; 678e3ec7017SPing-Ke Shih 679e3ec7017SPing-Ke Shih if (err > MAC_AX_SET_ERR_MAX) { 680e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "Bad set-err-status value 0x%08x\n", err); 681e3ec7017SPing-Ke Shih return -EINVAL; 682e3ec7017SPing-Ke Shih } 683e3ec7017SPing-Ke Shih 684e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, halt, (halt == 0x0), 1000, 685e3ec7017SPing-Ke Shih 100000, false, rtwdev, R_AX_HALT_H2C_CTRL); 686e3ec7017SPing-Ke Shih if (ret) { 687e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "FW doesn't receive previous msg\n"); 688e3ec7017SPing-Ke Shih return -EFAULT; 689e3ec7017SPing-Ke Shih } 690e3ec7017SPing-Ke Shih 691e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_H2C, err); 692e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_H2C_CTRL, B_AX_HALT_H2C_TRIGGER); 693e3ec7017SPing-Ke Shih 694e3ec7017SPing-Ke Shih return 0; 695e3ec7017SPing-Ke Shih } 696e3ec7017SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_set_err_status); 697e3ec7017SPing-Ke Shih 698e3ec7017SPing-Ke Shih static int hfc_reset_param(struct rtw89_dev *rtwdev) 699e3ec7017SPing-Ke Shih { 700e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 701e3ec7017SPing-Ke Shih struct rtw89_hfc_param_ini param_ini = {NULL}; 702e3ec7017SPing-Ke Shih u8 qta_mode = rtwdev->mac.dle_info.qta_mode; 703e3ec7017SPing-Ke Shih 704e3ec7017SPing-Ke Shih switch (rtwdev->hci.type) { 705e3ec7017SPing-Ke Shih case RTW89_HCI_TYPE_PCIE: 706e3ec7017SPing-Ke Shih param_ini = rtwdev->chip->hfc_param_ini[qta_mode]; 707e3ec7017SPing-Ke Shih param->en = 0; 708e3ec7017SPing-Ke Shih break; 709e3ec7017SPing-Ke Shih default: 710e3ec7017SPing-Ke Shih return -EINVAL; 711e3ec7017SPing-Ke Shih } 712e3ec7017SPing-Ke Shih 713e3ec7017SPing-Ke Shih if (param_ini.pub_cfg) 714e3ec7017SPing-Ke Shih param->pub_cfg = *param_ini.pub_cfg; 715e3ec7017SPing-Ke Shih 716e3ec7017SPing-Ke Shih if (param_ini.prec_cfg) { 717e3ec7017SPing-Ke Shih param->prec_cfg = *param_ini.prec_cfg; 718e3ec7017SPing-Ke Shih rtwdev->hal.sw_amsdu_max_size = 719e3ec7017SPing-Ke Shih param->prec_cfg.wp_ch07_prec * HFC_PAGE_UNIT; 720e3ec7017SPing-Ke Shih } 721e3ec7017SPing-Ke Shih 722e3ec7017SPing-Ke Shih if (param_ini.ch_cfg) 723e3ec7017SPing-Ke Shih param->ch_cfg = param_ini.ch_cfg; 724e3ec7017SPing-Ke Shih 725e3ec7017SPing-Ke Shih memset(¶m->ch_info, 0, sizeof(param->ch_info)); 726e3ec7017SPing-Ke Shih memset(¶m->pub_info, 0, sizeof(param->pub_info)); 727e3ec7017SPing-Ke Shih param->mode = param_ini.mode; 728e3ec7017SPing-Ke Shih 729e3ec7017SPing-Ke Shih return 0; 730e3ec7017SPing-Ke Shih } 731e3ec7017SPing-Ke Shih 732e3ec7017SPing-Ke Shih static int hfc_ch_cfg_chk(struct rtw89_dev *rtwdev, u8 ch) 733e3ec7017SPing-Ke Shih { 734e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 735e3ec7017SPing-Ke Shih const struct rtw89_hfc_ch_cfg *ch_cfg = param->ch_cfg; 736e3ec7017SPing-Ke Shih const struct rtw89_hfc_pub_cfg *pub_cfg = ¶m->pub_cfg; 737e3ec7017SPing-Ke Shih const struct rtw89_hfc_prec_cfg *prec_cfg = ¶m->prec_cfg; 738e3ec7017SPing-Ke Shih 739e3ec7017SPing-Ke Shih if (ch >= RTW89_DMA_CH_NUM) 740e3ec7017SPing-Ke Shih return -EINVAL; 741e3ec7017SPing-Ke Shih 742e3ec7017SPing-Ke Shih if ((ch_cfg[ch].min && ch_cfg[ch].min < prec_cfg->ch011_prec) || 743e3ec7017SPing-Ke Shih ch_cfg[ch].max > pub_cfg->pub_max) 744e3ec7017SPing-Ke Shih return -EINVAL; 745e3ec7017SPing-Ke Shih if (ch_cfg[ch].grp >= grp_num) 746e3ec7017SPing-Ke Shih return -EINVAL; 747e3ec7017SPing-Ke Shih 748e3ec7017SPing-Ke Shih return 0; 749e3ec7017SPing-Ke Shih } 750e3ec7017SPing-Ke Shih 751e3ec7017SPing-Ke Shih static int hfc_pub_info_chk(struct rtw89_dev *rtwdev) 752e3ec7017SPing-Ke Shih { 753e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 754e3ec7017SPing-Ke Shih const struct rtw89_hfc_pub_cfg *cfg = ¶m->pub_cfg; 755e3ec7017SPing-Ke Shih struct rtw89_hfc_pub_info *info = ¶m->pub_info; 756e3ec7017SPing-Ke Shih 757e3ec7017SPing-Ke Shih if (info->g0_used + info->g1_used + info->pub_aval != cfg->pub_max) { 758e3ec7017SPing-Ke Shih if (rtwdev->chip->chip_id == RTL8852A) 759e3ec7017SPing-Ke Shih return 0; 760e3ec7017SPing-Ke Shih else 761e3ec7017SPing-Ke Shih return -EFAULT; 762e3ec7017SPing-Ke Shih } 763e3ec7017SPing-Ke Shih 764e3ec7017SPing-Ke Shih return 0; 765e3ec7017SPing-Ke Shih } 766e3ec7017SPing-Ke Shih 767e3ec7017SPing-Ke Shih static int hfc_pub_cfg_chk(struct rtw89_dev *rtwdev) 768e3ec7017SPing-Ke Shih { 769e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 770e3ec7017SPing-Ke Shih const struct rtw89_hfc_pub_cfg *pub_cfg = ¶m->pub_cfg; 771e3ec7017SPing-Ke Shih 772e3ec7017SPing-Ke Shih if (pub_cfg->grp0 + pub_cfg->grp1 != pub_cfg->pub_max) 773c6477cb2SKevin Lo return -EFAULT; 774e3ec7017SPing-Ke Shih 775e3ec7017SPing-Ke Shih return 0; 776e3ec7017SPing-Ke Shih } 777e3ec7017SPing-Ke Shih 778e3ec7017SPing-Ke Shih static int hfc_ch_ctrl(struct rtw89_dev *rtwdev, u8 ch) 779e3ec7017SPing-Ke Shih { 780ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 781ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 782e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 783e3ec7017SPing-Ke Shih const struct rtw89_hfc_ch_cfg *cfg = param->ch_cfg; 784e3ec7017SPing-Ke Shih int ret = 0; 785e3ec7017SPing-Ke Shih u32 val = 0; 786e3ec7017SPing-Ke Shih 787e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 788e3ec7017SPing-Ke Shih if (ret) 789e3ec7017SPing-Ke Shih return ret; 790e3ec7017SPing-Ke Shih 791e3ec7017SPing-Ke Shih ret = hfc_ch_cfg_chk(rtwdev, ch); 792e3ec7017SPing-Ke Shih if (ret) 793e3ec7017SPing-Ke Shih return ret; 794e3ec7017SPing-Ke Shih 795e3ec7017SPing-Ke Shih if (ch > RTW89_DMA_B1HI) 796e3ec7017SPing-Ke Shih return -EINVAL; 797e3ec7017SPing-Ke Shih 798e3ec7017SPing-Ke Shih val = u32_encode_bits(cfg[ch].min, B_AX_MIN_PG_MASK) | 799e3ec7017SPing-Ke Shih u32_encode_bits(cfg[ch].max, B_AX_MAX_PG_MASK) | 800e3ec7017SPing-Ke Shih (cfg[ch].grp ? B_AX_GRP : 0); 801ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->ach_page_ctrl + ch * 4, val); 802e3ec7017SPing-Ke Shih 803e3ec7017SPing-Ke Shih return 0; 804e3ec7017SPing-Ke Shih } 805e3ec7017SPing-Ke Shih 806e3ec7017SPing-Ke Shih static int hfc_upd_ch_info(struct rtw89_dev *rtwdev, u8 ch) 807e3ec7017SPing-Ke Shih { 808ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 809ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 810e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 811e3ec7017SPing-Ke Shih struct rtw89_hfc_ch_info *info = param->ch_info; 812e3ec7017SPing-Ke Shih const struct rtw89_hfc_ch_cfg *cfg = param->ch_cfg; 813e3ec7017SPing-Ke Shih u32 val; 814e3ec7017SPing-Ke Shih u32 ret; 815e3ec7017SPing-Ke Shih 816e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 817e3ec7017SPing-Ke Shih if (ret) 818e3ec7017SPing-Ke Shih return ret; 819e3ec7017SPing-Ke Shih 820e3ec7017SPing-Ke Shih if (ch > RTW89_DMA_H2C) 821e3ec7017SPing-Ke Shih return -EINVAL; 822e3ec7017SPing-Ke Shih 823ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->ach_page_info + ch * 4); 824e3ec7017SPing-Ke Shih info[ch].aval = u32_get_bits(val, B_AX_AVAL_PG_MASK); 825e3ec7017SPing-Ke Shih if (ch < RTW89_DMA_H2C) 826e3ec7017SPing-Ke Shih info[ch].used = u32_get_bits(val, B_AX_USE_PG_MASK); 827e3ec7017SPing-Ke Shih else 828e3ec7017SPing-Ke Shih info[ch].used = cfg[ch].min - info[ch].aval; 829e3ec7017SPing-Ke Shih 830e3ec7017SPing-Ke Shih return 0; 831e3ec7017SPing-Ke Shih } 832e3ec7017SPing-Ke Shih 833e3ec7017SPing-Ke Shih static int hfc_pub_ctrl(struct rtw89_dev *rtwdev) 834e3ec7017SPing-Ke Shih { 835ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 836ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 837e3ec7017SPing-Ke Shih const struct rtw89_hfc_pub_cfg *cfg = &rtwdev->mac.hfc_param.pub_cfg; 838e3ec7017SPing-Ke Shih u32 val; 839e3ec7017SPing-Ke Shih int ret; 840e3ec7017SPing-Ke Shih 841e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 842e3ec7017SPing-Ke Shih if (ret) 843e3ec7017SPing-Ke Shih return ret; 844e3ec7017SPing-Ke Shih 845e3ec7017SPing-Ke Shih ret = hfc_pub_cfg_chk(rtwdev); 846e3ec7017SPing-Ke Shih if (ret) 847e3ec7017SPing-Ke Shih return ret; 848e3ec7017SPing-Ke Shih 849e3ec7017SPing-Ke Shih val = u32_encode_bits(cfg->grp0, B_AX_PUBPG_G0_MASK) | 850e3ec7017SPing-Ke Shih u32_encode_bits(cfg->grp1, B_AX_PUBPG_G1_MASK); 851ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->pub_page_ctrl1, val); 852e3ec7017SPing-Ke Shih 853e3ec7017SPing-Ke Shih val = u32_encode_bits(cfg->wp_thrd, B_AX_WP_THRD_MASK); 854ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->wp_page_ctrl2, val); 855e3ec7017SPing-Ke Shih 856e3ec7017SPing-Ke Shih return 0; 857e3ec7017SPing-Ke Shih } 858e3ec7017SPing-Ke Shih 859e3ec7017SPing-Ke Shih static int hfc_upd_mix_info(struct rtw89_dev *rtwdev) 860e3ec7017SPing-Ke Shih { 861ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 862ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 863e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 864e3ec7017SPing-Ke Shih struct rtw89_hfc_pub_cfg *pub_cfg = ¶m->pub_cfg; 865e3ec7017SPing-Ke Shih struct rtw89_hfc_prec_cfg *prec_cfg = ¶m->prec_cfg; 866e3ec7017SPing-Ke Shih struct rtw89_hfc_pub_info *info = ¶m->pub_info; 867e3ec7017SPing-Ke Shih u32 val; 868e3ec7017SPing-Ke Shih int ret; 869e3ec7017SPing-Ke Shih 870e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 871e3ec7017SPing-Ke Shih if (ret) 872e3ec7017SPing-Ke Shih return ret; 873e3ec7017SPing-Ke Shih 874ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->pub_page_info1); 875e3ec7017SPing-Ke Shih info->g0_used = u32_get_bits(val, B_AX_G0_USE_PG_MASK); 876e3ec7017SPing-Ke Shih info->g1_used = u32_get_bits(val, B_AX_G1_USE_PG_MASK); 877ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->pub_page_info3); 878e3ec7017SPing-Ke Shih info->g0_aval = u32_get_bits(val, B_AX_G0_AVAL_PG_MASK); 879e3ec7017SPing-Ke Shih info->g1_aval = u32_get_bits(val, B_AX_G1_AVAL_PG_MASK); 880e3ec7017SPing-Ke Shih info->pub_aval = 881ab8a5671SPing-Ke Shih u32_get_bits(rtw89_read32(rtwdev, regs->pub_page_info2), 882e3ec7017SPing-Ke Shih B_AX_PUB_AVAL_PG_MASK); 883e3ec7017SPing-Ke Shih info->wp_aval = 884ab8a5671SPing-Ke Shih u32_get_bits(rtw89_read32(rtwdev, regs->wp_page_info1), 885e3ec7017SPing-Ke Shih B_AX_WP_AVAL_PG_MASK); 886e3ec7017SPing-Ke Shih 887ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->hci_fc_ctrl); 888e3ec7017SPing-Ke Shih param->en = val & B_AX_HCI_FC_EN ? 1 : 0; 889e3ec7017SPing-Ke Shih param->h2c_en = val & B_AX_HCI_FC_CH12_EN ? 1 : 0; 890e3ec7017SPing-Ke Shih param->mode = u32_get_bits(val, B_AX_HCI_FC_MODE_MASK); 891e3ec7017SPing-Ke Shih prec_cfg->ch011_full_cond = 892e3ec7017SPing-Ke Shih u32_get_bits(val, B_AX_HCI_FC_WD_FULL_COND_MASK); 893e3ec7017SPing-Ke Shih prec_cfg->h2c_full_cond = 894e3ec7017SPing-Ke Shih u32_get_bits(val, B_AX_HCI_FC_CH12_FULL_COND_MASK); 895e3ec7017SPing-Ke Shih prec_cfg->wp_ch07_full_cond = 896e3ec7017SPing-Ke Shih u32_get_bits(val, B_AX_HCI_FC_WP_CH07_FULL_COND_MASK); 897e3ec7017SPing-Ke Shih prec_cfg->wp_ch811_full_cond = 898e3ec7017SPing-Ke Shih u32_get_bits(val, B_AX_HCI_FC_WP_CH811_FULL_COND_MASK); 899e3ec7017SPing-Ke Shih 900ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->ch_page_ctrl); 901e3ec7017SPing-Ke Shih prec_cfg->ch011_prec = u32_get_bits(val, B_AX_PREC_PAGE_CH011_MASK); 902e3ec7017SPing-Ke Shih prec_cfg->h2c_prec = u32_get_bits(val, B_AX_PREC_PAGE_CH12_MASK); 903e3ec7017SPing-Ke Shih 904ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->pub_page_ctrl2); 905e3ec7017SPing-Ke Shih pub_cfg->pub_max = u32_get_bits(val, B_AX_PUBPG_ALL_MASK); 906e3ec7017SPing-Ke Shih 907ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->wp_page_ctrl1); 908e3ec7017SPing-Ke Shih prec_cfg->wp_ch07_prec = u32_get_bits(val, B_AX_PREC_PAGE_WP_CH07_MASK); 909e3ec7017SPing-Ke Shih prec_cfg->wp_ch811_prec = u32_get_bits(val, B_AX_PREC_PAGE_WP_CH811_MASK); 910e3ec7017SPing-Ke Shih 911ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->wp_page_ctrl2); 912e3ec7017SPing-Ke Shih pub_cfg->wp_thrd = u32_get_bits(val, B_AX_WP_THRD_MASK); 913e3ec7017SPing-Ke Shih 914ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->pub_page_ctrl1); 915e3ec7017SPing-Ke Shih pub_cfg->grp0 = u32_get_bits(val, B_AX_PUBPG_G0_MASK); 916e3ec7017SPing-Ke Shih pub_cfg->grp1 = u32_get_bits(val, B_AX_PUBPG_G1_MASK); 917e3ec7017SPing-Ke Shih 918e3ec7017SPing-Ke Shih ret = hfc_pub_info_chk(rtwdev); 919e3ec7017SPing-Ke Shih if (param->en && ret) 920e3ec7017SPing-Ke Shih return ret; 921e3ec7017SPing-Ke Shih 922e3ec7017SPing-Ke Shih return 0; 923e3ec7017SPing-Ke Shih } 924e3ec7017SPing-Ke Shih 925e3ec7017SPing-Ke Shih static void hfc_h2c_cfg(struct rtw89_dev *rtwdev) 926e3ec7017SPing-Ke Shih { 927ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 928ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 929e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 930e3ec7017SPing-Ke Shih const struct rtw89_hfc_prec_cfg *prec_cfg = ¶m->prec_cfg; 931e3ec7017SPing-Ke Shih u32 val; 932e3ec7017SPing-Ke Shih 933e3ec7017SPing-Ke Shih val = u32_encode_bits(prec_cfg->h2c_prec, B_AX_PREC_PAGE_CH12_MASK); 934ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->ch_page_ctrl, val); 935e3ec7017SPing-Ke Shih 936ab8a5671SPing-Ke Shih rtw89_write32_mask(rtwdev, regs->hci_fc_ctrl, 937e3ec7017SPing-Ke Shih B_AX_HCI_FC_CH12_FULL_COND_MASK, 938e3ec7017SPing-Ke Shih prec_cfg->h2c_full_cond); 939e3ec7017SPing-Ke Shih } 940e3ec7017SPing-Ke Shih 941e3ec7017SPing-Ke Shih static void hfc_mix_cfg(struct rtw89_dev *rtwdev) 942e3ec7017SPing-Ke Shih { 943ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 944ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 945e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 946e3ec7017SPing-Ke Shih const struct rtw89_hfc_pub_cfg *pub_cfg = ¶m->pub_cfg; 947e3ec7017SPing-Ke Shih const struct rtw89_hfc_prec_cfg *prec_cfg = ¶m->prec_cfg; 948e3ec7017SPing-Ke Shih u32 val; 949e3ec7017SPing-Ke Shih 950e3ec7017SPing-Ke Shih val = u32_encode_bits(prec_cfg->ch011_prec, B_AX_PREC_PAGE_CH011_MASK) | 951e3ec7017SPing-Ke Shih u32_encode_bits(prec_cfg->h2c_prec, B_AX_PREC_PAGE_CH12_MASK); 952ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->ch_page_ctrl, val); 953e3ec7017SPing-Ke Shih 954e3ec7017SPing-Ke Shih val = u32_encode_bits(pub_cfg->pub_max, B_AX_PUBPG_ALL_MASK); 955ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->pub_page_ctrl2, val); 956e3ec7017SPing-Ke Shih 957e3ec7017SPing-Ke Shih val = u32_encode_bits(prec_cfg->wp_ch07_prec, 958e3ec7017SPing-Ke Shih B_AX_PREC_PAGE_WP_CH07_MASK) | 959e3ec7017SPing-Ke Shih u32_encode_bits(prec_cfg->wp_ch811_prec, 960e3ec7017SPing-Ke Shih B_AX_PREC_PAGE_WP_CH811_MASK); 961ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->wp_page_ctrl1, val); 962e3ec7017SPing-Ke Shih 963ab8a5671SPing-Ke Shih val = u32_replace_bits(rtw89_read32(rtwdev, regs->hci_fc_ctrl), 964e3ec7017SPing-Ke Shih param->mode, B_AX_HCI_FC_MODE_MASK); 965e3ec7017SPing-Ke Shih val = u32_replace_bits(val, prec_cfg->ch011_full_cond, 966e3ec7017SPing-Ke Shih B_AX_HCI_FC_WD_FULL_COND_MASK); 967e3ec7017SPing-Ke Shih val = u32_replace_bits(val, prec_cfg->h2c_full_cond, 968e3ec7017SPing-Ke Shih B_AX_HCI_FC_CH12_FULL_COND_MASK); 969e3ec7017SPing-Ke Shih val = u32_replace_bits(val, prec_cfg->wp_ch07_full_cond, 970e3ec7017SPing-Ke Shih B_AX_HCI_FC_WP_CH07_FULL_COND_MASK); 971e3ec7017SPing-Ke Shih val = u32_replace_bits(val, prec_cfg->wp_ch811_full_cond, 972e3ec7017SPing-Ke Shih B_AX_HCI_FC_WP_CH811_FULL_COND_MASK); 973ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->hci_fc_ctrl, val); 974e3ec7017SPing-Ke Shih } 975e3ec7017SPing-Ke Shih 976e3ec7017SPing-Ke Shih static void hfc_func_en(struct rtw89_dev *rtwdev, bool en, bool h2c_en) 977e3ec7017SPing-Ke Shih { 978ab8a5671SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 979ab8a5671SPing-Ke Shih const struct rtw89_page_regs *regs = chip->page_regs; 980e3ec7017SPing-Ke Shih struct rtw89_hfc_param *param = &rtwdev->mac.hfc_param; 981e3ec7017SPing-Ke Shih u32 val; 982e3ec7017SPing-Ke Shih 983ab8a5671SPing-Ke Shih val = rtw89_read32(rtwdev, regs->hci_fc_ctrl); 984e3ec7017SPing-Ke Shih param->en = en; 985e3ec7017SPing-Ke Shih param->h2c_en = h2c_en; 986e3ec7017SPing-Ke Shih val = en ? (val | B_AX_HCI_FC_EN) : (val & ~B_AX_HCI_FC_EN); 987e3ec7017SPing-Ke Shih val = h2c_en ? (val | B_AX_HCI_FC_CH12_EN) : 988e3ec7017SPing-Ke Shih (val & ~B_AX_HCI_FC_CH12_EN); 989ab8a5671SPing-Ke Shih rtw89_write32(rtwdev, regs->hci_fc_ctrl, val); 990e3ec7017SPing-Ke Shih } 991e3ec7017SPing-Ke Shih 992e3ec7017SPing-Ke Shih static int hfc_init(struct rtw89_dev *rtwdev, bool reset, bool en, bool h2c_en) 993e3ec7017SPing-Ke Shih { 994a1b7163aSPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 995a1b7163aSPing-Ke Shih u32 dma_ch_mask = chip->dma_ch_mask; 996e3ec7017SPing-Ke Shih u8 ch; 997e3ec7017SPing-Ke Shih u32 ret = 0; 998e3ec7017SPing-Ke Shih 999e3ec7017SPing-Ke Shih if (reset) 1000e3ec7017SPing-Ke Shih ret = hfc_reset_param(rtwdev); 1001e3ec7017SPing-Ke Shih if (ret) 1002e3ec7017SPing-Ke Shih return ret; 1003e3ec7017SPing-Ke Shih 1004e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 1005e3ec7017SPing-Ke Shih if (ret) 1006e3ec7017SPing-Ke Shih return ret; 1007e3ec7017SPing-Ke Shih 1008e3ec7017SPing-Ke Shih hfc_func_en(rtwdev, false, false); 1009e3ec7017SPing-Ke Shih 1010e3ec7017SPing-Ke Shih if (!en && h2c_en) { 1011e3ec7017SPing-Ke Shih hfc_h2c_cfg(rtwdev); 1012e3ec7017SPing-Ke Shih hfc_func_en(rtwdev, en, h2c_en); 1013e3ec7017SPing-Ke Shih return ret; 1014e3ec7017SPing-Ke Shih } 1015e3ec7017SPing-Ke Shih 1016e3ec7017SPing-Ke Shih for (ch = RTW89_DMA_ACH0; ch < RTW89_DMA_H2C; ch++) { 1017a1b7163aSPing-Ke Shih if (dma_ch_mask & BIT(ch)) 1018a1b7163aSPing-Ke Shih continue; 1019e3ec7017SPing-Ke Shih ret = hfc_ch_ctrl(rtwdev, ch); 1020e3ec7017SPing-Ke Shih if (ret) 1021e3ec7017SPing-Ke Shih return ret; 1022e3ec7017SPing-Ke Shih } 1023e3ec7017SPing-Ke Shih 1024e3ec7017SPing-Ke Shih ret = hfc_pub_ctrl(rtwdev); 1025e3ec7017SPing-Ke Shih if (ret) 1026e3ec7017SPing-Ke Shih return ret; 1027e3ec7017SPing-Ke Shih 1028e3ec7017SPing-Ke Shih hfc_mix_cfg(rtwdev); 1029e3ec7017SPing-Ke Shih if (en || h2c_en) { 1030e3ec7017SPing-Ke Shih hfc_func_en(rtwdev, en, h2c_en); 1031e3ec7017SPing-Ke Shih udelay(10); 1032e3ec7017SPing-Ke Shih } 1033e3ec7017SPing-Ke Shih for (ch = RTW89_DMA_ACH0; ch < RTW89_DMA_H2C; ch++) { 1034a1b7163aSPing-Ke Shih if (dma_ch_mask & BIT(ch)) 1035a1b7163aSPing-Ke Shih continue; 1036e3ec7017SPing-Ke Shih ret = hfc_upd_ch_info(rtwdev, ch); 1037e3ec7017SPing-Ke Shih if (ret) 1038e3ec7017SPing-Ke Shih return ret; 1039e3ec7017SPing-Ke Shih } 1040e3ec7017SPing-Ke Shih ret = hfc_upd_mix_info(rtwdev); 1041e3ec7017SPing-Ke Shih 1042e3ec7017SPing-Ke Shih return ret; 1043e3ec7017SPing-Ke Shih } 1044e3ec7017SPing-Ke Shih 1045e3ec7017SPing-Ke Shih #define PWR_POLL_CNT 2000 1046e3ec7017SPing-Ke Shih static int pwr_cmd_poll(struct rtw89_dev *rtwdev, 1047e3ec7017SPing-Ke Shih const struct rtw89_pwr_cfg *cfg) 1048e3ec7017SPing-Ke Shih { 1049e3ec7017SPing-Ke Shih u8 val = 0; 1050e3ec7017SPing-Ke Shih int ret; 1051e3ec7017SPing-Ke Shih u32 addr = cfg->base == PWR_INTF_MSK_SDIO ? 1052e3ec7017SPing-Ke Shih cfg->addr | SDIO_LOCAL_BASE_ADDR : cfg->addr; 1053e3ec7017SPing-Ke Shih 1054e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read8, val, !((val ^ cfg->val) & cfg->msk), 1055e3ec7017SPing-Ke Shih 1000, 1000 * PWR_POLL_CNT, false, rtwdev, addr); 1056e3ec7017SPing-Ke Shih 1057e3ec7017SPing-Ke Shih if (!ret) 1058e3ec7017SPing-Ke Shih return 0; 1059e3ec7017SPing-Ke Shih 1060e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "[ERR] Polling timeout\n"); 1061e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "[ERR] addr: %X, %X\n", addr, cfg->addr); 1062e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "[ERR] val: %X, %X\n", val, cfg->val); 1063e3ec7017SPing-Ke Shih 1064e3ec7017SPing-Ke Shih return -EBUSY; 1065e3ec7017SPing-Ke Shih } 1066e3ec7017SPing-Ke Shih 1067e3ec7017SPing-Ke Shih static int rtw89_mac_sub_pwr_seq(struct rtw89_dev *rtwdev, u8 cv_msk, 1068e3ec7017SPing-Ke Shih u8 intf_msk, const struct rtw89_pwr_cfg *cfg) 1069e3ec7017SPing-Ke Shih { 1070e3ec7017SPing-Ke Shih const struct rtw89_pwr_cfg *cur_cfg; 1071e3ec7017SPing-Ke Shih u32 addr; 1072e3ec7017SPing-Ke Shih u8 val; 1073e3ec7017SPing-Ke Shih 1074e3ec7017SPing-Ke Shih for (cur_cfg = cfg; cur_cfg->cmd != PWR_CMD_END; cur_cfg++) { 1075e3ec7017SPing-Ke Shih if (!(cur_cfg->intf_msk & intf_msk) || 1076e3ec7017SPing-Ke Shih !(cur_cfg->cv_msk & cv_msk)) 1077e3ec7017SPing-Ke Shih continue; 1078e3ec7017SPing-Ke Shih 1079e3ec7017SPing-Ke Shih switch (cur_cfg->cmd) { 1080e3ec7017SPing-Ke Shih case PWR_CMD_WRITE: 1081e3ec7017SPing-Ke Shih addr = cur_cfg->addr; 1082e3ec7017SPing-Ke Shih 1083e3ec7017SPing-Ke Shih if (cur_cfg->base == PWR_BASE_SDIO) 1084e3ec7017SPing-Ke Shih addr |= SDIO_LOCAL_BASE_ADDR; 1085e3ec7017SPing-Ke Shih 1086e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, addr); 1087e3ec7017SPing-Ke Shih val &= ~(cur_cfg->msk); 1088e3ec7017SPing-Ke Shih val |= (cur_cfg->val & cur_cfg->msk); 1089e3ec7017SPing-Ke Shih 1090e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, addr, val); 1091e3ec7017SPing-Ke Shih break; 1092e3ec7017SPing-Ke Shih case PWR_CMD_POLL: 1093e3ec7017SPing-Ke Shih if (pwr_cmd_poll(rtwdev, cur_cfg)) 1094e3ec7017SPing-Ke Shih return -EBUSY; 1095e3ec7017SPing-Ke Shih break; 1096e3ec7017SPing-Ke Shih case PWR_CMD_DELAY: 1097e3ec7017SPing-Ke Shih if (cur_cfg->val == PWR_DELAY_US) 1098e3ec7017SPing-Ke Shih udelay(cur_cfg->addr); 1099e3ec7017SPing-Ke Shih else 1100e3ec7017SPing-Ke Shih fsleep(cur_cfg->addr * 1000); 1101e3ec7017SPing-Ke Shih break; 1102e3ec7017SPing-Ke Shih default: 1103e3ec7017SPing-Ke Shih return -EINVAL; 1104e3ec7017SPing-Ke Shih } 1105e3ec7017SPing-Ke Shih } 1106e3ec7017SPing-Ke Shih 1107e3ec7017SPing-Ke Shih return 0; 1108e3ec7017SPing-Ke Shih } 1109e3ec7017SPing-Ke Shih 1110e3ec7017SPing-Ke Shih static int rtw89_mac_pwr_seq(struct rtw89_dev *rtwdev, 1111e3ec7017SPing-Ke Shih const struct rtw89_pwr_cfg * const *cfg_seq) 1112e3ec7017SPing-Ke Shih { 1113e3ec7017SPing-Ke Shih int ret; 1114e3ec7017SPing-Ke Shih 1115e3ec7017SPing-Ke Shih for (; *cfg_seq; cfg_seq++) { 1116e3ec7017SPing-Ke Shih ret = rtw89_mac_sub_pwr_seq(rtwdev, BIT(rtwdev->hal.cv), 1117e3ec7017SPing-Ke Shih PWR_INTF_MSK_PCIE, *cfg_seq); 1118e3ec7017SPing-Ke Shih if (ret) 1119e3ec7017SPing-Ke Shih return -EBUSY; 1120e3ec7017SPing-Ke Shih } 1121e3ec7017SPing-Ke Shih 1122e3ec7017SPing-Ke Shih return 0; 1123e3ec7017SPing-Ke Shih } 1124e3ec7017SPing-Ke Shih 1125e3ec7017SPing-Ke Shih static enum rtw89_rpwm_req_pwr_state 1126e3ec7017SPing-Ke Shih rtw89_mac_get_req_pwr_state(struct rtw89_dev *rtwdev) 1127e3ec7017SPing-Ke Shih { 1128e3ec7017SPing-Ke Shih enum rtw89_rpwm_req_pwr_state state; 1129e3ec7017SPing-Ke Shih 1130e3ec7017SPing-Ke Shih switch (rtwdev->ps_mode) { 1131e3ec7017SPing-Ke Shih case RTW89_PS_MODE_RFOFF: 1132e3ec7017SPing-Ke Shih state = RTW89_MAC_RPWM_REQ_PWR_STATE_BAND0_RFOFF; 1133e3ec7017SPing-Ke Shih break; 1134e3ec7017SPing-Ke Shih case RTW89_PS_MODE_CLK_GATED: 1135e3ec7017SPing-Ke Shih state = RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED; 1136e3ec7017SPing-Ke Shih break; 1137e3ec7017SPing-Ke Shih case RTW89_PS_MODE_PWR_GATED: 1138e3ec7017SPing-Ke Shih state = RTW89_MAC_RPWM_REQ_PWR_STATE_PWR_GATED; 1139e3ec7017SPing-Ke Shih break; 1140e3ec7017SPing-Ke Shih default: 1141e3ec7017SPing-Ke Shih state = RTW89_MAC_RPWM_REQ_PWR_STATE_ACTIVE; 1142e3ec7017SPing-Ke Shih break; 1143e3ec7017SPing-Ke Shih } 1144e3ec7017SPing-Ke Shih return state; 1145e3ec7017SPing-Ke Shih } 1146e3ec7017SPing-Ke Shih 1147e3ec7017SPing-Ke Shih static void rtw89_mac_send_rpwm(struct rtw89_dev *rtwdev, 11487bfd05ffSChin-Yen Lee enum rtw89_rpwm_req_pwr_state req_pwr_state, 11497bfd05ffSChin-Yen Lee bool notify_wake) 1150e3ec7017SPing-Ke Shih { 1151e3ec7017SPing-Ke Shih u16 request; 1152e3ec7017SPing-Ke Shih 11537bfd05ffSChin-Yen Lee spin_lock_bh(&rtwdev->rpwm_lock); 11547bfd05ffSChin-Yen Lee 1155e3ec7017SPing-Ke Shih request = rtw89_read16(rtwdev, R_AX_RPWM); 1156e3ec7017SPing-Ke Shih request ^= request | PS_RPWM_TOGGLE; 11577bfd05ffSChin-Yen Lee request |= req_pwr_state; 1158e3ec7017SPing-Ke Shih 11597bfd05ffSChin-Yen Lee if (notify_wake) { 11607bfd05ffSChin-Yen Lee request |= PS_RPWM_NOTIFY_WAKE; 11617bfd05ffSChin-Yen Lee } else { 1162e3ec7017SPing-Ke Shih rtwdev->mac.rpwm_seq_num = (rtwdev->mac.rpwm_seq_num + 1) & 1163e3ec7017SPing-Ke Shih RPWM_SEQ_NUM_MAX; 11647bfd05ffSChin-Yen Lee request |= FIELD_PREP(PS_RPWM_SEQ_NUM, 11657bfd05ffSChin-Yen Lee rtwdev->mac.rpwm_seq_num); 1166e3ec7017SPing-Ke Shih 1167e3ec7017SPing-Ke Shih if (req_pwr_state < RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED) 1168e3ec7017SPing-Ke Shih request |= PS_RPWM_ACK; 11697bfd05ffSChin-Yen Lee } 1170e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, rtwdev->hci.rpwm_addr, request); 11717bfd05ffSChin-Yen Lee 11727bfd05ffSChin-Yen Lee spin_unlock_bh(&rtwdev->rpwm_lock); 1173e3ec7017SPing-Ke Shih } 1174e3ec7017SPing-Ke Shih 1175e3ec7017SPing-Ke Shih static int rtw89_mac_check_cpwm_state(struct rtw89_dev *rtwdev, 1176e3ec7017SPing-Ke Shih enum rtw89_rpwm_req_pwr_state req_pwr_state) 1177e3ec7017SPing-Ke Shih { 1178e3ec7017SPing-Ke Shih bool request_deep_mode; 1179e3ec7017SPing-Ke Shih bool in_deep_mode; 1180e3ec7017SPing-Ke Shih u8 rpwm_req_num; 1181e3ec7017SPing-Ke Shih u8 cpwm_rsp_seq; 1182e3ec7017SPing-Ke Shih u8 cpwm_seq; 1183e3ec7017SPing-Ke Shih u8 cpwm_status; 1184e3ec7017SPing-Ke Shih 1185e3ec7017SPing-Ke Shih if (req_pwr_state >= RTW89_MAC_RPWM_REQ_PWR_STATE_CLK_GATED) 1186e3ec7017SPing-Ke Shih request_deep_mode = true; 1187e3ec7017SPing-Ke Shih else 1188e3ec7017SPing-Ke Shih request_deep_mode = false; 1189e3ec7017SPing-Ke Shih 1190e3ec7017SPing-Ke Shih if (rtw89_read32_mask(rtwdev, R_AX_LDM, B_AX_EN_32K)) 1191e3ec7017SPing-Ke Shih in_deep_mode = true; 1192e3ec7017SPing-Ke Shih else 1193e3ec7017SPing-Ke Shih in_deep_mode = false; 1194e3ec7017SPing-Ke Shih 1195e3ec7017SPing-Ke Shih if (request_deep_mode != in_deep_mode) 1196e3ec7017SPing-Ke Shih return -EPERM; 1197e3ec7017SPing-Ke Shih 1198e3ec7017SPing-Ke Shih if (request_deep_mode) 1199e3ec7017SPing-Ke Shih return 0; 1200e3ec7017SPing-Ke Shih 1201e3ec7017SPing-Ke Shih rpwm_req_num = rtwdev->mac.rpwm_seq_num; 1202e1757e80SPing-Ke Shih cpwm_rsp_seq = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr, 1203e3ec7017SPing-Ke Shih PS_CPWM_RSP_SEQ_NUM); 1204e3ec7017SPing-Ke Shih 1205e3ec7017SPing-Ke Shih if (rpwm_req_num != cpwm_rsp_seq) 1206e3ec7017SPing-Ke Shih return -EPERM; 1207e3ec7017SPing-Ke Shih 1208e3ec7017SPing-Ke Shih rtwdev->mac.cpwm_seq_num = (rtwdev->mac.cpwm_seq_num + 1) & 1209e3ec7017SPing-Ke Shih CPWM_SEQ_NUM_MAX; 1210e3ec7017SPing-Ke Shih 1211e1757e80SPing-Ke Shih cpwm_seq = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr, PS_CPWM_SEQ_NUM); 1212e3ec7017SPing-Ke Shih if (cpwm_seq != rtwdev->mac.cpwm_seq_num) 1213e3ec7017SPing-Ke Shih return -EPERM; 1214e3ec7017SPing-Ke Shih 1215e1757e80SPing-Ke Shih cpwm_status = rtw89_read16_mask(rtwdev, rtwdev->hci.cpwm_addr, PS_CPWM_STATE); 1216e3ec7017SPing-Ke Shih if (cpwm_status != req_pwr_state) 1217e3ec7017SPing-Ke Shih return -EPERM; 1218e3ec7017SPing-Ke Shih 1219e3ec7017SPing-Ke Shih return 0; 1220e3ec7017SPing-Ke Shih } 1221e3ec7017SPing-Ke Shih 1222e3ec7017SPing-Ke Shih void rtw89_mac_power_mode_change(struct rtw89_dev *rtwdev, bool enter) 1223e3ec7017SPing-Ke Shih { 1224e3ec7017SPing-Ke Shih enum rtw89_rpwm_req_pwr_state state; 122539a76521SPing-Ke Shih unsigned long delay = enter ? 10 : 150; 1226e3ec7017SPing-Ke Shih int ret; 122748c0e347SChin-Yen Lee int i; 1228e3ec7017SPing-Ke Shih 1229e3ec7017SPing-Ke Shih if (enter) 1230e3ec7017SPing-Ke Shih state = rtw89_mac_get_req_pwr_state(rtwdev); 1231e3ec7017SPing-Ke Shih else 1232e3ec7017SPing-Ke Shih state = RTW89_MAC_RPWM_REQ_PWR_STATE_ACTIVE; 1233e3ec7017SPing-Ke Shih 123448c0e347SChin-Yen Lee for (i = 0; i < RPWM_TRY_CNT; i++) { 12357bfd05ffSChin-Yen Lee rtw89_mac_send_rpwm(rtwdev, state, false); 123648c0e347SChin-Yen Lee ret = read_poll_timeout_atomic(rtw89_mac_check_cpwm_state, ret, 123748c0e347SChin-Yen Lee !ret, delay, 15000, false, 123848c0e347SChin-Yen Lee rtwdev, state); 123948c0e347SChin-Yen Lee if (!ret) 124048c0e347SChin-Yen Lee break; 124148c0e347SChin-Yen Lee 124248c0e347SChin-Yen Lee if (i == RPWM_TRY_CNT - 1) 1243e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "firmware failed to ack for %s ps mode\n", 1244e3ec7017SPing-Ke Shih enter ? "entering" : "leaving"); 124548c0e347SChin-Yen Lee else 124648c0e347SChin-Yen Lee rtw89_debug(rtwdev, RTW89_DBG_UNEXP, 124748c0e347SChin-Yen Lee "%d time firmware failed to ack for %s ps mode\n", 124848c0e347SChin-Yen Lee i + 1, enter ? "entering" : "leaving"); 124948c0e347SChin-Yen Lee } 1250e3ec7017SPing-Ke Shih } 1251e3ec7017SPing-Ke Shih 12527bfd05ffSChin-Yen Lee void rtw89_mac_notify_wake(struct rtw89_dev *rtwdev) 12537bfd05ffSChin-Yen Lee { 12547bfd05ffSChin-Yen Lee enum rtw89_rpwm_req_pwr_state state; 12557bfd05ffSChin-Yen Lee 12567bfd05ffSChin-Yen Lee state = rtw89_mac_get_req_pwr_state(rtwdev); 12577bfd05ffSChin-Yen Lee rtw89_mac_send_rpwm(rtwdev, state, true); 12587bfd05ffSChin-Yen Lee } 12597bfd05ffSChin-Yen Lee 1260e3ec7017SPing-Ke Shih static int rtw89_mac_power_switch(struct rtw89_dev *rtwdev, bool on) 1261e3ec7017SPing-Ke Shih { 1262e3ec7017SPing-Ke Shih #define PWR_ACT 1 1263e3ec7017SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 1264e3ec7017SPing-Ke Shih const struct rtw89_pwr_cfg * const *cfg_seq; 12652a7e54dbSPing-Ke Shih int (*cfg_func)(struct rtw89_dev *rtwdev); 1266e3ec7017SPing-Ke Shih int ret; 1267e3ec7017SPing-Ke Shih u8 val; 1268e3ec7017SPing-Ke Shih 12692a7e54dbSPing-Ke Shih if (on) { 1270e3ec7017SPing-Ke Shih cfg_seq = chip->pwr_on_seq; 12712a7e54dbSPing-Ke Shih cfg_func = chip->ops->pwr_on_func; 12722a7e54dbSPing-Ke Shih } else { 1273e3ec7017SPing-Ke Shih cfg_seq = chip->pwr_off_seq; 12742a7e54dbSPing-Ke Shih cfg_func = chip->ops->pwr_off_func; 12752a7e54dbSPing-Ke Shih } 1276e3ec7017SPing-Ke Shih 1277e3ec7017SPing-Ke Shih if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) 1278e3ec7017SPing-Ke Shih __rtw89_leave_ps_mode(rtwdev); 1279e3ec7017SPing-Ke Shih 1280e3ec7017SPing-Ke Shih val = rtw89_read32_mask(rtwdev, R_AX_IC_PWR_STATE, B_AX_WLMAC_PWR_STE_MASK); 1281e3ec7017SPing-Ke Shih if (on && val == PWR_ACT) { 1282e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "MAC has already powered on\n"); 1283e3ec7017SPing-Ke Shih return -EBUSY; 1284e3ec7017SPing-Ke Shih } 1285e3ec7017SPing-Ke Shih 12862a7e54dbSPing-Ke Shih ret = cfg_func ? cfg_func(rtwdev) : rtw89_mac_pwr_seq(rtwdev, cfg_seq); 1287e3ec7017SPing-Ke Shih if (ret) 1288e3ec7017SPing-Ke Shih return ret; 1289e3ec7017SPing-Ke Shih 1290e3ec7017SPing-Ke Shih if (on) { 1291e3ec7017SPing-Ke Shih set_bit(RTW89_FLAG_POWERON, rtwdev->flags); 1292e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_SCOREBOARD + 3, MAC_AX_NOTIFY_TP_MAJOR); 1293e3ec7017SPing-Ke Shih } else { 1294e3ec7017SPing-Ke Shih clear_bit(RTW89_FLAG_POWERON, rtwdev->flags); 1295e3ec7017SPing-Ke Shih clear_bit(RTW89_FLAG_FW_RDY, rtwdev->flags); 1296e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_SCOREBOARD + 3, MAC_AX_NOTIFY_PWR_MAJOR); 1297967439c7SZong-Zhe Yang rtw89_set_entity_state(rtwdev, false); 1298e3ec7017SPing-Ke Shih } 1299e3ec7017SPing-Ke Shih 1300e3ec7017SPing-Ke Shih return 0; 1301e3ec7017SPing-Ke Shih #undef PWR_ACT 1302e3ec7017SPing-Ke Shih } 1303e3ec7017SPing-Ke Shih 1304e3ec7017SPing-Ke Shih void rtw89_mac_pwr_off(struct rtw89_dev *rtwdev) 1305e3ec7017SPing-Ke Shih { 1306e3ec7017SPing-Ke Shih rtw89_mac_power_switch(rtwdev, false); 1307e3ec7017SPing-Ke Shih } 1308e3ec7017SPing-Ke Shih 1309e3ec7017SPing-Ke Shih static int cmac_func_en(struct rtw89_dev *rtwdev, u8 mac_idx, bool en) 1310e3ec7017SPing-Ke Shih { 1311e3ec7017SPing-Ke Shih u32 func_en = 0; 1312e3ec7017SPing-Ke Shih u32 ck_en = 0; 1313e3ec7017SPing-Ke Shih u32 c1pc_en = 0; 1314e3ec7017SPing-Ke Shih u32 addrl_func_en[] = {R_AX_CMAC_FUNC_EN, R_AX_CMAC_FUNC_EN_C1}; 1315e3ec7017SPing-Ke Shih u32 addrl_ck_en[] = {R_AX_CK_EN, R_AX_CK_EN_C1}; 1316e3ec7017SPing-Ke Shih 1317e3ec7017SPing-Ke Shih func_en = B_AX_CMAC_EN | B_AX_CMAC_TXEN | B_AX_CMAC_RXEN | 1318e3ec7017SPing-Ke Shih B_AX_PHYINTF_EN | B_AX_CMAC_DMA_EN | B_AX_PTCLTOP_EN | 13195cb5562dSPing-Ke Shih B_AX_SCHEDULER_EN | B_AX_TMAC_EN | B_AX_RMAC_EN | 13205cb5562dSPing-Ke Shih B_AX_CMAC_CRPRT; 1321e3ec7017SPing-Ke Shih ck_en = B_AX_CMAC_CKEN | B_AX_PHYINTF_CKEN | B_AX_CMAC_DMA_CKEN | 1322e3ec7017SPing-Ke Shih B_AX_PTCLTOP_CKEN | B_AX_SCHEDULER_CKEN | B_AX_TMAC_CKEN | 1323e3ec7017SPing-Ke Shih B_AX_RMAC_CKEN; 1324e3ec7017SPing-Ke Shih c1pc_en = B_AX_R_SYM_WLCMAC1_PC_EN | 1325e3ec7017SPing-Ke Shih B_AX_R_SYM_WLCMAC1_P1_PC_EN | 1326e3ec7017SPing-Ke Shih B_AX_R_SYM_WLCMAC1_P2_PC_EN | 1327e3ec7017SPing-Ke Shih B_AX_R_SYM_WLCMAC1_P3_PC_EN | 1328e3ec7017SPing-Ke Shih B_AX_R_SYM_WLCMAC1_P4_PC_EN; 1329e3ec7017SPing-Ke Shih 1330e3ec7017SPing-Ke Shih if (en) { 1331e3ec7017SPing-Ke Shih if (mac_idx == RTW89_MAC_1) { 1332e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_AFE_CTRL1, c1pc_en); 1333e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND, 1334e3ec7017SPing-Ke Shih B_AX_R_SYM_ISO_CMAC12PP); 1335e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND, 1336e3ec7017SPing-Ke Shih B_AX_CMAC1_FEN); 1337e3ec7017SPing-Ke Shih } 1338e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, addrl_ck_en[mac_idx], ck_en); 1339e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, addrl_func_en[mac_idx], func_en); 1340e3ec7017SPing-Ke Shih } else { 1341e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, addrl_func_en[mac_idx], func_en); 1342e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, addrl_ck_en[mac_idx], ck_en); 1343e3ec7017SPing-Ke Shih if (mac_idx == RTW89_MAC_1) { 1344e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND, 1345e3ec7017SPing-Ke Shih B_AX_CMAC1_FEN); 1346e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND, 1347e3ec7017SPing-Ke Shih B_AX_R_SYM_ISO_CMAC12PP); 1348e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_AFE_CTRL1, c1pc_en); 1349e3ec7017SPing-Ke Shih } 1350e3ec7017SPing-Ke Shih } 1351e3ec7017SPing-Ke Shih 1352e3ec7017SPing-Ke Shih return 0; 1353e3ec7017SPing-Ke Shih } 1354e3ec7017SPing-Ke Shih 1355e3ec7017SPing-Ke Shih static int dmac_func_en(struct rtw89_dev *rtwdev) 1356e3ec7017SPing-Ke Shih { 1357828a4396SChia-Yuan Li enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 1358e3ec7017SPing-Ke Shih u32 val32; 1359e3ec7017SPing-Ke Shih 1360828a4396SChia-Yuan Li if (chip_id == RTL8852C) 1361828a4396SChia-Yuan Li val32 = (B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | 1362828a4396SChia-Yuan Li B_AX_MAC_SEC_EN | B_AX_DISPATCHER_EN | 1363828a4396SChia-Yuan Li B_AX_DLE_CPUIO_EN | B_AX_PKT_IN_EN | 1364828a4396SChia-Yuan Li B_AX_DMAC_TBL_EN | B_AX_PKT_BUF_EN | 1365828a4396SChia-Yuan Li B_AX_STA_SCH_EN | B_AX_TXPKT_CTRL_EN | 1366828a4396SChia-Yuan Li B_AX_WD_RLS_EN | B_AX_MPDU_PROC_EN | 1367828a4396SChia-Yuan Li B_AX_DMAC_CRPRT | B_AX_H_AXIDMA_EN); 1368828a4396SChia-Yuan Li else 1369828a4396SChia-Yuan Li val32 = (B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | 1370828a4396SChia-Yuan Li B_AX_MAC_SEC_EN | B_AX_DISPATCHER_EN | 1371828a4396SChia-Yuan Li B_AX_DLE_CPUIO_EN | B_AX_PKT_IN_EN | 1372828a4396SChia-Yuan Li B_AX_DMAC_TBL_EN | B_AX_PKT_BUF_EN | 1373828a4396SChia-Yuan Li B_AX_STA_SCH_EN | B_AX_TXPKT_CTRL_EN | 1374828a4396SChia-Yuan Li B_AX_WD_RLS_EN | B_AX_MPDU_PROC_EN | 1375828a4396SChia-Yuan Li B_AX_DMAC_CRPRT); 1376e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_DMAC_FUNC_EN, val32); 1377e3ec7017SPing-Ke Shih 1378e3ec7017SPing-Ke Shih val32 = (B_AX_MAC_SEC_CLK_EN | B_AX_DISPATCHER_CLK_EN | 1379e3ec7017SPing-Ke Shih B_AX_DLE_CPUIO_CLK_EN | B_AX_PKT_IN_CLK_EN | 1380e3ec7017SPing-Ke Shih B_AX_STA_SCH_CLK_EN | B_AX_TXPKT_CTRL_CLK_EN | 1381828a4396SChia-Yuan Li B_AX_WD_RLS_CLK_EN | B_AX_BBRPT_CLK_EN); 1382e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_DMAC_CLK_EN, val32); 1383e3ec7017SPing-Ke Shih 138443863efeSChangcheng Deng return 0; 1385e3ec7017SPing-Ke Shih } 1386e3ec7017SPing-Ke Shih 1387e3ec7017SPing-Ke Shih static int chip_func_en(struct rtw89_dev *rtwdev) 1388e3ec7017SPing-Ke Shih { 1389828a4396SChia-Yuan Li enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 1390828a4396SChia-Yuan Li 139114b6e9f4SPing-Ke Shih if (chip_id == RTL8852A || chip_id == RTL8852B) 139214b6e9f4SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SPS_DIG_ON_CTRL0, 1393828a4396SChia-Yuan Li B_AX_OCP_L1_MASK); 1394e3ec7017SPing-Ke Shih 1395e3ec7017SPing-Ke Shih return 0; 1396e3ec7017SPing-Ke Shih } 1397e3ec7017SPing-Ke Shih 1398e3ec7017SPing-Ke Shih static int rtw89_mac_sys_init(struct rtw89_dev *rtwdev) 1399e3ec7017SPing-Ke Shih { 1400e3ec7017SPing-Ke Shih int ret; 1401e3ec7017SPing-Ke Shih 1402e3ec7017SPing-Ke Shih ret = dmac_func_en(rtwdev); 1403e3ec7017SPing-Ke Shih if (ret) 1404e3ec7017SPing-Ke Shih return ret; 1405e3ec7017SPing-Ke Shih 1406e3ec7017SPing-Ke Shih ret = cmac_func_en(rtwdev, 0, true); 1407e3ec7017SPing-Ke Shih if (ret) 1408e3ec7017SPing-Ke Shih return ret; 1409e3ec7017SPing-Ke Shih 1410e3ec7017SPing-Ke Shih ret = chip_func_en(rtwdev); 1411e3ec7017SPing-Ke Shih if (ret) 1412e3ec7017SPing-Ke Shih return ret; 1413e3ec7017SPing-Ke Shih 1414e3ec7017SPing-Ke Shih return ret; 1415e3ec7017SPing-Ke Shih } 1416e3ec7017SPing-Ke Shih 141730645118SPing-Ke Shih const struct rtw89_mac_size_set rtw89_mac_size = { 141830645118SPing-Ke Shih .hfc_preccfg_pcie = {2, 40, 0, 0, 1, 0, 0, 0}, 1419e3ec7017SPing-Ke Shih /* PCIE 64 */ 142030645118SPing-Ke Shih .wde_size0 = {RTW89_WDE_PG_64, 4095, 1,}, 1421e3ec7017SPing-Ke Shih /* DLFW */ 142230645118SPing-Ke Shih .wde_size4 = {RTW89_WDE_PG_64, 0, 4096,}, 1423a1cb0971SPing-Ke Shih /* PCIE 64 */ 1424a1cb0971SPing-Ke Shih .wde_size6 = {RTW89_WDE_PG_64, 512, 0,}, 1425a1cb0971SPing-Ke Shih /* DLFW */ 1426a1cb0971SPing-Ke Shih .wde_size9 = {RTW89_WDE_PG_64, 0, 1024,}, 142779d099e0SPing-Ke Shih /* 8852C DLFW */ 142830645118SPing-Ke Shih .wde_size18 = {RTW89_WDE_PG_64, 0, 2048,}, 142979d099e0SPing-Ke Shih /* 8852C PCIE SCC */ 143030645118SPing-Ke Shih .wde_size19 = {RTW89_WDE_PG_64, 3328, 0,}, 1431e3ec7017SPing-Ke Shih /* PCIE */ 143230645118SPing-Ke Shih .ple_size0 = {RTW89_PLE_PG_128, 1520, 16,}, 1433e3ec7017SPing-Ke Shih /* DLFW */ 143430645118SPing-Ke Shih .ple_size4 = {RTW89_PLE_PG_128, 64, 1472,}, 1435a1cb0971SPing-Ke Shih /* PCIE 64 */ 1436a1cb0971SPing-Ke Shih .ple_size6 = {RTW89_PLE_PG_128, 496, 16,}, 1437a1cb0971SPing-Ke Shih /* DLFW */ 1438a1cb0971SPing-Ke Shih .ple_size8 = {RTW89_PLE_PG_128, 64, 960,}, 143979d099e0SPing-Ke Shih /* 8852C DLFW */ 144030645118SPing-Ke Shih .ple_size18 = {RTW89_PLE_PG_128, 2544, 16,}, 144179d099e0SPing-Ke Shih /* 8852C PCIE SCC */ 144230645118SPing-Ke Shih .ple_size19 = {RTW89_PLE_PG_128, 1904, 16,}, 1443e3ec7017SPing-Ke Shih /* PCIE 64 */ 144430645118SPing-Ke Shih .wde_qt0 = {3792, 196, 0, 107,}, 1445e3ec7017SPing-Ke Shih /* DLFW */ 144630645118SPing-Ke Shih .wde_qt4 = {0, 0, 0, 0,}, 1447a1cb0971SPing-Ke Shih /* PCIE 64 */ 1448a1cb0971SPing-Ke Shih .wde_qt6 = {448, 48, 0, 16,}, 144979d099e0SPing-Ke Shih /* 8852C DLFW */ 145030645118SPing-Ke Shih .wde_qt17 = {0, 0, 0, 0,}, 145179d099e0SPing-Ke Shih /* 8852C PCIE SCC */ 145230645118SPing-Ke Shih .wde_qt18 = {3228, 60, 0, 40,}, 1453e3ec7017SPing-Ke Shih /* PCIE SCC */ 145430645118SPing-Ke Shih .ple_qt4 = {264, 0, 16, 20, 26, 13, 356, 0, 32, 40, 8,}, 1455e3ec7017SPing-Ke Shih /* PCIE SCC */ 145630645118SPing-Ke Shih .ple_qt5 = {264, 0, 32, 20, 64, 13, 1101, 0, 64, 128, 120,}, 1457e3ec7017SPing-Ke Shih /* DLFW */ 145830645118SPing-Ke Shih .ple_qt13 = {0, 0, 16, 48, 0, 0, 0, 0, 0, 0, 0,}, 1459a1cb0971SPing-Ke Shih /* PCIE 64 */ 1460a1cb0971SPing-Ke Shih .ple_qt18 = {147, 0, 16, 20, 17, 13, 89, 0, 32, 14, 8, 0,}, 146179d099e0SPing-Ke Shih /* DLFW 52C */ 146230645118SPing-Ke Shih .ple_qt44 = {0, 0, 16, 256, 0, 0, 0, 0, 0, 0, 0, 0,}, 146379d099e0SPing-Ke Shih /* DLFW 52C */ 146430645118SPing-Ke Shih .ple_qt45 = {0, 0, 32, 256, 0, 0, 0, 0, 0, 0, 0, 0,}, 146579d099e0SPing-Ke Shih /* 8852C PCIE SCC */ 146630645118SPing-Ke Shih .ple_qt46 = {525, 0, 16, 20, 13, 13, 178, 0, 32, 62, 8, 16,}, 146779d099e0SPing-Ke Shih /* 8852C PCIE SCC */ 146830645118SPing-Ke Shih .ple_qt47 = {525, 0, 32, 20, 1034, 13, 1199, 0, 1053, 62, 160, 1037,}, 1469a1cb0971SPing-Ke Shih /* PCIE 64 */ 1470a1cb0971SPing-Ke Shih .ple_qt58 = {147, 0, 16, 20, 157, 13, 229, 0, 172, 14, 24, 0,}, 14717a68ec3dSChih-Kang Chang /* 8852A PCIE WOW */ 14727a68ec3dSChih-Kang Chang .ple_qt_52a_wow = {264, 0, 32, 20, 64, 13, 1005, 0, 64, 128, 120,}, 147379d099e0SPing-Ke Shih }; 147430645118SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_size); 147579d099e0SPing-Ke Shih 1476e3ec7017SPing-Ke Shih static const struct rtw89_dle_mem *get_dle_mem_cfg(struct rtw89_dev *rtwdev, 1477e3ec7017SPing-Ke Shih enum rtw89_qta_mode mode) 1478e3ec7017SPing-Ke Shih { 1479e3ec7017SPing-Ke Shih struct rtw89_mac_info *mac = &rtwdev->mac; 1480e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *cfg; 1481e3ec7017SPing-Ke Shih 1482e3ec7017SPing-Ke Shih cfg = &rtwdev->chip->dle_mem[mode]; 1483e3ec7017SPing-Ke Shih if (!cfg) 1484e3ec7017SPing-Ke Shih return NULL; 1485e3ec7017SPing-Ke Shih 1486e3ec7017SPing-Ke Shih if (cfg->mode != mode) { 1487e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "qta mode unmatch!\n"); 1488e3ec7017SPing-Ke Shih return NULL; 1489e3ec7017SPing-Ke Shih } 1490e3ec7017SPing-Ke Shih 1491e3ec7017SPing-Ke Shih mac->dle_info.wde_pg_size = cfg->wde_size->pge_size; 1492e3ec7017SPing-Ke Shih mac->dle_info.ple_pg_size = cfg->ple_size->pge_size; 1493e3ec7017SPing-Ke Shih mac->dle_info.qta_mode = mode; 1494e3ec7017SPing-Ke Shih mac->dle_info.c0_rx_qta = cfg->ple_min_qt->cma0_dma; 1495e3ec7017SPing-Ke Shih mac->dle_info.c1_rx_qta = cfg->ple_min_qt->cma1_dma; 1496e3ec7017SPing-Ke Shih 1497e3ec7017SPing-Ke Shih return cfg; 1498e3ec7017SPing-Ke Shih } 1499e3ec7017SPing-Ke Shih 150041d56769SChih-Kang Chang static bool mac_is_txq_empty(struct rtw89_dev *rtwdev) 150141d56769SChih-Kang Chang { 150241d56769SChih-Kang Chang struct rtw89_mac_dle_dfi_qempty qempty; 150341d56769SChih-Kang Chang u32 qnum, qtmp, val32, msk32; 150441d56769SChih-Kang Chang int i, j, ret; 150541d56769SChih-Kang Chang 150641d56769SChih-Kang Chang qnum = rtwdev->chip->wde_qempty_acq_num; 150741d56769SChih-Kang Chang qempty.dle_type = DLE_CTRL_TYPE_WDE; 150841d56769SChih-Kang Chang 150941d56769SChih-Kang Chang for (i = 0; i < qnum; i++) { 151041d56769SChih-Kang Chang qempty.grpsel = i; 151141d56769SChih-Kang Chang ret = dle_dfi_qempty(rtwdev, &qempty); 151241d56769SChih-Kang Chang if (ret) { 151341d56769SChih-Kang Chang rtw89_warn(rtwdev, "dle dfi acq empty %d\n", ret); 151441d56769SChih-Kang Chang return false; 151541d56769SChih-Kang Chang } 151641d56769SChih-Kang Chang qtmp = qempty.qempty; 151741d56769SChih-Kang Chang for (j = 0 ; j < QEMP_ACQ_GRP_MACID_NUM; j++) { 151841d56769SChih-Kang Chang val32 = FIELD_GET(QEMP_ACQ_GRP_QSEL_MASK, qtmp); 151941d56769SChih-Kang Chang if (val32 != QEMP_ACQ_GRP_QSEL_MASK) 152041d56769SChih-Kang Chang return false; 152141d56769SChih-Kang Chang qtmp >>= QEMP_ACQ_GRP_QSEL_SH; 152241d56769SChih-Kang Chang } 152341d56769SChih-Kang Chang } 152441d56769SChih-Kang Chang 152541d56769SChih-Kang Chang qempty.grpsel = rtwdev->chip->wde_qempty_mgq_sel; 152641d56769SChih-Kang Chang ret = dle_dfi_qempty(rtwdev, &qempty); 152741d56769SChih-Kang Chang if (ret) { 152841d56769SChih-Kang Chang rtw89_warn(rtwdev, "dle dfi mgq empty %d\n", ret); 152941d56769SChih-Kang Chang return false; 153041d56769SChih-Kang Chang } 153141d56769SChih-Kang Chang msk32 = B_CMAC0_MGQ_NORMAL | B_CMAC0_MGQ_NO_PWRSAV | B_CMAC0_CPUMGQ; 153241d56769SChih-Kang Chang if ((qempty.qempty & msk32) != msk32) 153341d56769SChih-Kang Chang return false; 153441d56769SChih-Kang Chang 153541d56769SChih-Kang Chang if (rtwdev->dbcc_en) { 153641d56769SChih-Kang Chang msk32 |= B_CMAC1_MGQ_NORMAL | B_CMAC1_MGQ_NO_PWRSAV | B_CMAC1_CPUMGQ; 153741d56769SChih-Kang Chang if ((qempty.qempty & msk32) != msk32) 153841d56769SChih-Kang Chang return false; 153941d56769SChih-Kang Chang } 154041d56769SChih-Kang Chang 154141d56769SChih-Kang Chang msk32 = B_AX_WDE_EMPTY_QTA_DMAC_WLAN_CPU | B_AX_WDE_EMPTY_QTA_DMAC_DATA_CPU | 154241d56769SChih-Kang Chang B_AX_PLE_EMPTY_QTA_DMAC_WLAN_CPU | B_AX_PLE_EMPTY_QTA_DMAC_H2C | 154341d56769SChih-Kang Chang B_AX_WDE_EMPTY_QUE_OTHERS | B_AX_PLE_EMPTY_QUE_DMAC_MPDU_TX | 154441d56769SChih-Kang Chang B_AX_WDE_EMPTY_QTA_DMAC_CPUIO | B_AX_PLE_EMPTY_QTA_DMAC_CPUIO | 154541d56769SChih-Kang Chang B_AX_WDE_EMPTY_QUE_DMAC_PKTIN | B_AX_WDE_EMPTY_QTA_DMAC_HIF | 154641d56769SChih-Kang Chang B_AX_PLE_EMPTY_QUE_DMAC_SEC_TX | B_AX_WDE_EMPTY_QTA_DMAC_PKTIN | 154741d56769SChih-Kang Chang B_AX_PLE_EMPTY_QTA_DMAC_B0_TXPL | B_AX_PLE_EMPTY_QTA_DMAC_B1_TXPL | 154841d56769SChih-Kang Chang B_AX_PLE_EMPTY_QTA_DMAC_MPDU_TX; 154941d56769SChih-Kang Chang val32 = rtw89_read32(rtwdev, R_AX_DLE_EMPTY0); 155041d56769SChih-Kang Chang 155141d56769SChih-Kang Chang return (val32 & msk32) == msk32; 155241d56769SChih-Kang Chang } 155341d56769SChih-Kang Chang 1554e3ec7017SPing-Ke Shih static inline u32 dle_used_size(const struct rtw89_dle_size *wde, 1555e3ec7017SPing-Ke Shih const struct rtw89_dle_size *ple) 1556e3ec7017SPing-Ke Shih { 1557e3ec7017SPing-Ke Shih return wde->pge_size * (wde->lnk_pge_num + wde->unlnk_pge_num) + 1558e3ec7017SPing-Ke Shih ple->pge_size * (ple->lnk_pge_num + ple->unlnk_pge_num); 1559e3ec7017SPing-Ke Shih } 1560e3ec7017SPing-Ke Shih 15615f8c35b9SPing-Ke Shih static u32 dle_expected_used_size(struct rtw89_dev *rtwdev, 15625f8c35b9SPing-Ke Shih enum rtw89_qta_mode mode) 15635f8c35b9SPing-Ke Shih { 15645f8c35b9SPing-Ke Shih u32 size = rtwdev->chip->fifo_size; 15655f8c35b9SPing-Ke Shih 15665f8c35b9SPing-Ke Shih if (mode == RTW89_QTA_SCC) 15675f8c35b9SPing-Ke Shih size -= rtwdev->chip->dle_scc_rsvd_size; 15685f8c35b9SPing-Ke Shih 15695f8c35b9SPing-Ke Shih return size; 15705f8c35b9SPing-Ke Shih } 15715f8c35b9SPing-Ke Shih 1572e3ec7017SPing-Ke Shih static void dle_func_en(struct rtw89_dev *rtwdev, bool enable) 1573e3ec7017SPing-Ke Shih { 1574e3ec7017SPing-Ke Shih if (enable) 1575e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_DMAC_FUNC_EN, 1576e3ec7017SPing-Ke Shih B_AX_DLE_WDE_EN | B_AX_DLE_PLE_EN); 1577e3ec7017SPing-Ke Shih else 1578e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_DMAC_FUNC_EN, 1579e3ec7017SPing-Ke Shih B_AX_DLE_WDE_EN | B_AX_DLE_PLE_EN); 1580e3ec7017SPing-Ke Shih } 1581e3ec7017SPing-Ke Shih 1582e3ec7017SPing-Ke Shih static void dle_clk_en(struct rtw89_dev *rtwdev, bool enable) 1583e3ec7017SPing-Ke Shih { 1584e3ec7017SPing-Ke Shih if (enable) 1585e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_DMAC_CLK_EN, 1586e3ec7017SPing-Ke Shih B_AX_DLE_WDE_CLK_EN | B_AX_DLE_PLE_CLK_EN); 1587e3ec7017SPing-Ke Shih else 1588e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_DMAC_CLK_EN, 1589e3ec7017SPing-Ke Shih B_AX_DLE_WDE_CLK_EN | B_AX_DLE_PLE_CLK_EN); 1590e3ec7017SPing-Ke Shih } 1591e3ec7017SPing-Ke Shih 1592e3ec7017SPing-Ke Shih static int dle_mix_cfg(struct rtw89_dev *rtwdev, const struct rtw89_dle_mem *cfg) 1593e3ec7017SPing-Ke Shih { 1594e3ec7017SPing-Ke Shih const struct rtw89_dle_size *size_cfg; 1595e3ec7017SPing-Ke Shih u32 val; 1596e3ec7017SPing-Ke Shih u8 bound = 0; 1597e3ec7017SPing-Ke Shih 1598e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_WDE_PKTBUF_CFG); 1599e3ec7017SPing-Ke Shih size_cfg = cfg->wde_size; 1600e3ec7017SPing-Ke Shih 1601e3ec7017SPing-Ke Shih switch (size_cfg->pge_size) { 1602e3ec7017SPing-Ke Shih default: 1603e3ec7017SPing-Ke Shih case RTW89_WDE_PG_64: 1604e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_WDE_PAGE_SEL_64, 1605e3ec7017SPing-Ke Shih B_AX_WDE_PAGE_SEL_MASK); 1606e3ec7017SPing-Ke Shih break; 1607e3ec7017SPing-Ke Shih case RTW89_WDE_PG_128: 1608e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_WDE_PAGE_SEL_128, 1609e3ec7017SPing-Ke Shih B_AX_WDE_PAGE_SEL_MASK); 1610e3ec7017SPing-Ke Shih break; 1611e3ec7017SPing-Ke Shih case RTW89_WDE_PG_256: 1612e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]WDE DLE doesn't support 256 byte!\n"); 1613e3ec7017SPing-Ke Shih return -EINVAL; 1614e3ec7017SPing-Ke Shih } 1615e3ec7017SPing-Ke Shih 1616e3ec7017SPing-Ke Shih val = u32_replace_bits(val, bound, B_AX_WDE_START_BOUND_MASK); 1617e3ec7017SPing-Ke Shih val = u32_replace_bits(val, size_cfg->lnk_pge_num, 1618e3ec7017SPing-Ke Shih B_AX_WDE_FREE_PAGE_NUM_MASK); 1619e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_WDE_PKTBUF_CFG, val); 1620e3ec7017SPing-Ke Shih 1621e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_PLE_PKTBUF_CFG); 1622e3ec7017SPing-Ke Shih bound = (size_cfg->lnk_pge_num + size_cfg->unlnk_pge_num) 1623e3ec7017SPing-Ke Shih * size_cfg->pge_size / DLE_BOUND_UNIT; 1624e3ec7017SPing-Ke Shih size_cfg = cfg->ple_size; 1625e3ec7017SPing-Ke Shih 1626e3ec7017SPing-Ke Shih switch (size_cfg->pge_size) { 1627e3ec7017SPing-Ke Shih default: 1628e3ec7017SPing-Ke Shih case RTW89_PLE_PG_64: 1629e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]PLE DLE doesn't support 64 byte!\n"); 1630e3ec7017SPing-Ke Shih return -EINVAL; 1631e3ec7017SPing-Ke Shih case RTW89_PLE_PG_128: 1632e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_PLE_PAGE_SEL_128, 1633e3ec7017SPing-Ke Shih B_AX_PLE_PAGE_SEL_MASK); 1634e3ec7017SPing-Ke Shih break; 1635e3ec7017SPing-Ke Shih case RTW89_PLE_PG_256: 1636e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_PLE_PAGE_SEL_256, 1637e3ec7017SPing-Ke Shih B_AX_PLE_PAGE_SEL_MASK); 1638e3ec7017SPing-Ke Shih break; 1639e3ec7017SPing-Ke Shih } 1640e3ec7017SPing-Ke Shih 1641e3ec7017SPing-Ke Shih val = u32_replace_bits(val, bound, B_AX_PLE_START_BOUND_MASK); 1642e3ec7017SPing-Ke Shih val = u32_replace_bits(val, size_cfg->lnk_pge_num, 1643e3ec7017SPing-Ke Shih B_AX_PLE_FREE_PAGE_NUM_MASK); 1644e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_PLE_PKTBUF_CFG, val); 1645e3ec7017SPing-Ke Shih 1646e3ec7017SPing-Ke Shih return 0; 1647e3ec7017SPing-Ke Shih } 1648e3ec7017SPing-Ke Shih 1649e3ec7017SPing-Ke Shih #define INVALID_QT_WCPU U16_MAX 1650e3ec7017SPing-Ke Shih #define SET_QUOTA_VAL(_min_x, _max_x, _module, _idx) \ 1651e3ec7017SPing-Ke Shih do { \ 1652525c06c8SPing-Ke Shih val = u32_encode_bits(_min_x, B_AX_ ## _module ## _MIN_SIZE_MASK) | \ 1653525c06c8SPing-Ke Shih u32_encode_bits(_max_x, B_AX_ ## _module ## _MAX_SIZE_MASK); \ 1654e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, \ 1655e3ec7017SPing-Ke Shih R_AX_ ## _module ## _QTA ## _idx ## _CFG, \ 1656e3ec7017SPing-Ke Shih val); \ 1657e3ec7017SPing-Ke Shih } while (0) 1658e3ec7017SPing-Ke Shih #define SET_QUOTA(_x, _module, _idx) \ 1659e3ec7017SPing-Ke Shih SET_QUOTA_VAL(min_cfg->_x, max_cfg->_x, _module, _idx) 1660e3ec7017SPing-Ke Shih 1661e3ec7017SPing-Ke Shih static void wde_quota_cfg(struct rtw89_dev *rtwdev, 1662e3ec7017SPing-Ke Shih const struct rtw89_wde_quota *min_cfg, 1663e3ec7017SPing-Ke Shih const struct rtw89_wde_quota *max_cfg, 1664e3ec7017SPing-Ke Shih u16 ext_wde_min_qt_wcpu) 1665e3ec7017SPing-Ke Shih { 1666e3ec7017SPing-Ke Shih u16 min_qt_wcpu = ext_wde_min_qt_wcpu != INVALID_QT_WCPU ? 1667e3ec7017SPing-Ke Shih ext_wde_min_qt_wcpu : min_cfg->wcpu; 1668e3ec7017SPing-Ke Shih u32 val; 1669e3ec7017SPing-Ke Shih 1670e3ec7017SPing-Ke Shih SET_QUOTA(hif, WDE, 0); 1671e3ec7017SPing-Ke Shih SET_QUOTA_VAL(min_qt_wcpu, max_cfg->wcpu, WDE, 1); 1672e3ec7017SPing-Ke Shih SET_QUOTA(pkt_in, WDE, 3); 1673e3ec7017SPing-Ke Shih SET_QUOTA(cpu_io, WDE, 4); 1674e3ec7017SPing-Ke Shih } 1675e3ec7017SPing-Ke Shih 1676e3ec7017SPing-Ke Shih static void ple_quota_cfg(struct rtw89_dev *rtwdev, 1677e3ec7017SPing-Ke Shih const struct rtw89_ple_quota *min_cfg, 1678e3ec7017SPing-Ke Shih const struct rtw89_ple_quota *max_cfg) 1679e3ec7017SPing-Ke Shih { 1680e3ec7017SPing-Ke Shih u32 val; 1681e3ec7017SPing-Ke Shih 1682e3ec7017SPing-Ke Shih SET_QUOTA(cma0_tx, PLE, 0); 1683e3ec7017SPing-Ke Shih SET_QUOTA(cma1_tx, PLE, 1); 1684e3ec7017SPing-Ke Shih SET_QUOTA(c2h, PLE, 2); 1685e3ec7017SPing-Ke Shih SET_QUOTA(h2c, PLE, 3); 1686e3ec7017SPing-Ke Shih SET_QUOTA(wcpu, PLE, 4); 1687e3ec7017SPing-Ke Shih SET_QUOTA(mpdu_proc, PLE, 5); 1688e3ec7017SPing-Ke Shih SET_QUOTA(cma0_dma, PLE, 6); 1689e3ec7017SPing-Ke Shih SET_QUOTA(cma1_dma, PLE, 7); 1690e3ec7017SPing-Ke Shih SET_QUOTA(bb_rpt, PLE, 8); 1691e3ec7017SPing-Ke Shih SET_QUOTA(wd_rel, PLE, 9); 1692e3ec7017SPing-Ke Shih SET_QUOTA(cpu_io, PLE, 10); 169379d099e0SPing-Ke Shih if (rtwdev->chip->chip_id == RTL8852C) 169479d099e0SPing-Ke Shih SET_QUOTA(tx_rpt, PLE, 11); 1695e3ec7017SPing-Ke Shih } 1696e3ec7017SPing-Ke Shih 16977a68ec3dSChih-Kang Chang int rtw89_mac_resize_ple_rx_quota(struct rtw89_dev *rtwdev, bool wow) 16987a68ec3dSChih-Kang Chang { 16997a68ec3dSChih-Kang Chang const struct rtw89_ple_quota *min_cfg, *max_cfg; 17007a68ec3dSChih-Kang Chang const struct rtw89_dle_mem *cfg; 17017a68ec3dSChih-Kang Chang u32 val; 17027a68ec3dSChih-Kang Chang 17037a68ec3dSChih-Kang Chang if (rtwdev->chip->chip_id == RTL8852C) 17047a68ec3dSChih-Kang Chang return 0; 17057a68ec3dSChih-Kang Chang 17067a68ec3dSChih-Kang Chang if (rtwdev->mac.qta_mode != RTW89_QTA_SCC) { 17077a68ec3dSChih-Kang Chang rtw89_err(rtwdev, "[ERR]support SCC mode only\n"); 17087a68ec3dSChih-Kang Chang return -EINVAL; 17097a68ec3dSChih-Kang Chang } 17107a68ec3dSChih-Kang Chang 17117a68ec3dSChih-Kang Chang if (wow) 17127a68ec3dSChih-Kang Chang cfg = get_dle_mem_cfg(rtwdev, RTW89_QTA_WOW); 17137a68ec3dSChih-Kang Chang else 17147a68ec3dSChih-Kang Chang cfg = get_dle_mem_cfg(rtwdev, RTW89_QTA_SCC); 17157a68ec3dSChih-Kang Chang if (!cfg) { 17167a68ec3dSChih-Kang Chang rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n"); 17177a68ec3dSChih-Kang Chang return -EINVAL; 17187a68ec3dSChih-Kang Chang } 17197a68ec3dSChih-Kang Chang 17207a68ec3dSChih-Kang Chang min_cfg = cfg->ple_min_qt; 17217a68ec3dSChih-Kang Chang max_cfg = cfg->ple_max_qt; 17227a68ec3dSChih-Kang Chang SET_QUOTA(cma0_dma, PLE, 6); 17237a68ec3dSChih-Kang Chang SET_QUOTA(cma1_dma, PLE, 7); 17247a68ec3dSChih-Kang Chang 17257a68ec3dSChih-Kang Chang return 0; 17267a68ec3dSChih-Kang Chang } 1727e3ec7017SPing-Ke Shih #undef SET_QUOTA 1728e3ec7017SPing-Ke Shih 172919e28c7fSChin-Yen Lee void rtw89_mac_hw_mgnt_sec(struct rtw89_dev *rtwdev, bool enable) 173019e28c7fSChin-Yen Lee { 173119e28c7fSChin-Yen Lee u32 msk32 = B_AX_UC_MGNT_DEC | B_AX_BMC_MGNT_DEC; 173219e28c7fSChin-Yen Lee 173319e28c7fSChin-Yen Lee if (enable) 173419e28c7fSChin-Yen Lee rtw89_write32_set(rtwdev, R_AX_SEC_ENG_CTRL, msk32); 173519e28c7fSChin-Yen Lee else 173619e28c7fSChin-Yen Lee rtw89_write32_clr(rtwdev, R_AX_SEC_ENG_CTRL, msk32); 173719e28c7fSChin-Yen Lee } 173819e28c7fSChin-Yen Lee 1739e3ec7017SPing-Ke Shih static void dle_quota_cfg(struct rtw89_dev *rtwdev, 1740e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *cfg, 1741e3ec7017SPing-Ke Shih u16 ext_wde_min_qt_wcpu) 1742e3ec7017SPing-Ke Shih { 1743e3ec7017SPing-Ke Shih wde_quota_cfg(rtwdev, cfg->wde_min_qt, cfg->wde_max_qt, ext_wde_min_qt_wcpu); 1744e3ec7017SPing-Ke Shih ple_quota_cfg(rtwdev, cfg->ple_min_qt, cfg->ple_max_qt); 1745e3ec7017SPing-Ke Shih } 1746e3ec7017SPing-Ke Shih 1747e3ec7017SPing-Ke Shih static int dle_init(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode, 1748e3ec7017SPing-Ke Shih enum rtw89_qta_mode ext_mode) 1749e3ec7017SPing-Ke Shih { 1750e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *cfg, *ext_cfg; 1751e3ec7017SPing-Ke Shih u16 ext_wde_min_qt_wcpu = INVALID_QT_WCPU; 1752e3ec7017SPing-Ke Shih int ret = 0; 1753e3ec7017SPing-Ke Shih u32 ini; 1754e3ec7017SPing-Ke Shih 1755e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 1756e3ec7017SPing-Ke Shih if (ret) 1757e3ec7017SPing-Ke Shih return ret; 1758e3ec7017SPing-Ke Shih 1759e3ec7017SPing-Ke Shih cfg = get_dle_mem_cfg(rtwdev, mode); 1760e3ec7017SPing-Ke Shih if (!cfg) { 1761e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n"); 1762e3ec7017SPing-Ke Shih ret = -EINVAL; 1763e3ec7017SPing-Ke Shih goto error; 1764e3ec7017SPing-Ke Shih } 1765e3ec7017SPing-Ke Shih 1766e3ec7017SPing-Ke Shih if (mode == RTW89_QTA_DLFW) { 1767e3ec7017SPing-Ke Shih ext_cfg = get_dle_mem_cfg(rtwdev, ext_mode); 1768e3ec7017SPing-Ke Shih if (!ext_cfg) { 1769e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]get_dle_ext_mem_cfg %d\n", 1770e3ec7017SPing-Ke Shih ext_mode); 1771e3ec7017SPing-Ke Shih ret = -EINVAL; 1772e3ec7017SPing-Ke Shih goto error; 1773e3ec7017SPing-Ke Shih } 1774e3ec7017SPing-Ke Shih ext_wde_min_qt_wcpu = ext_cfg->wde_min_qt->wcpu; 1775e3ec7017SPing-Ke Shih } 1776e3ec7017SPing-Ke Shih 17775f8c35b9SPing-Ke Shih if (dle_used_size(cfg->wde_size, cfg->ple_size) != 17785f8c35b9SPing-Ke Shih dle_expected_used_size(rtwdev, mode)) { 1779e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n"); 1780e3ec7017SPing-Ke Shih ret = -EINVAL; 1781e3ec7017SPing-Ke Shih goto error; 1782e3ec7017SPing-Ke Shih } 1783e3ec7017SPing-Ke Shih 1784e3ec7017SPing-Ke Shih dle_func_en(rtwdev, false); 1785e3ec7017SPing-Ke Shih dle_clk_en(rtwdev, true); 1786e3ec7017SPing-Ke Shih 1787e3ec7017SPing-Ke Shih ret = dle_mix_cfg(rtwdev, cfg); 1788e3ec7017SPing-Ke Shih if (ret) { 1789e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] dle mix cfg\n"); 1790e3ec7017SPing-Ke Shih goto error; 1791e3ec7017SPing-Ke Shih } 1792e3ec7017SPing-Ke Shih dle_quota_cfg(rtwdev, cfg, ext_wde_min_qt_wcpu); 1793e3ec7017SPing-Ke Shih 1794e3ec7017SPing-Ke Shih dle_func_en(rtwdev, true); 1795e3ec7017SPing-Ke Shih 1796e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, ini, 1797e3ec7017SPing-Ke Shih (ini & WDE_MGN_INI_RDY) == WDE_MGN_INI_RDY, 1, 1798e3ec7017SPing-Ke Shih 2000, false, rtwdev, R_AX_WDE_INI_STATUS); 1799e3ec7017SPing-Ke Shih if (ret) { 1800e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]WDE cfg ready\n"); 1801e3ec7017SPing-Ke Shih return ret; 1802e3ec7017SPing-Ke Shih } 1803e3ec7017SPing-Ke Shih 1804e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, ini, 1805e3ec7017SPing-Ke Shih (ini & WDE_MGN_INI_RDY) == WDE_MGN_INI_RDY, 1, 1806e3ec7017SPing-Ke Shih 2000, false, rtwdev, R_AX_PLE_INI_STATUS); 1807e3ec7017SPing-Ke Shih if (ret) { 1808e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]PLE cfg ready\n"); 1809e3ec7017SPing-Ke Shih return ret; 1810e3ec7017SPing-Ke Shih } 1811e3ec7017SPing-Ke Shih 1812e3ec7017SPing-Ke Shih return 0; 1813e3ec7017SPing-Ke Shih error: 1814e3ec7017SPing-Ke Shih dle_func_en(rtwdev, false); 1815e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]trxcfg wde 0x8900 = %x\n", 1816e3ec7017SPing-Ke Shih rtw89_read32(rtwdev, R_AX_WDE_INI_STATUS)); 1817e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]trxcfg ple 0x8D00 = %x\n", 1818e3ec7017SPing-Ke Shih rtw89_read32(rtwdev, R_AX_PLE_INI_STATUS)); 1819e3ec7017SPing-Ke Shih 1820e3ec7017SPing-Ke Shih return ret; 1821e3ec7017SPing-Ke Shih } 1822e3ec7017SPing-Ke Shih 1823e07a9968SPing-Ke Shih static int preload_init_set(struct rtw89_dev *rtwdev, enum rtw89_mac_idx mac_idx, 1824e07a9968SPing-Ke Shih enum rtw89_qta_mode mode) 1825e07a9968SPing-Ke Shih { 1826e07a9968SPing-Ke Shih u32 reg, max_preld_size, min_rsvd_size; 1827e07a9968SPing-Ke Shih 1828e07a9968SPing-Ke Shih max_preld_size = (mac_idx == RTW89_MAC_0 ? 1829e07a9968SPing-Ke Shih PRELD_B0_ENT_NUM : PRELD_B1_ENT_NUM) * PRELD_AMSDU_SIZE; 1830e07a9968SPing-Ke Shih reg = mac_idx == RTW89_MAC_0 ? 1831e07a9968SPing-Ke Shih R_AX_TXPKTCTL_B0_PRELD_CFG0 : R_AX_TXPKTCTL_B1_PRELD_CFG0; 1832e07a9968SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_USEMAXSZ_MASK, max_preld_size); 1833e07a9968SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_B0_PRELD_FEN); 1834e07a9968SPing-Ke Shih 1835e07a9968SPing-Ke Shih min_rsvd_size = PRELD_AMSDU_SIZE; 1836e07a9968SPing-Ke Shih reg = mac_idx == RTW89_MAC_0 ? 1837e07a9968SPing-Ke Shih R_AX_TXPKTCTL_B0_PRELD_CFG1 : R_AX_TXPKTCTL_B1_PRELD_CFG1; 1838e07a9968SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_NXT_TXENDWIN_MASK, PRELD_NEXT_WND); 1839e07a9968SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_B0_PRELD_NXT_RSVMINSZ_MASK, min_rsvd_size); 1840e07a9968SPing-Ke Shih 1841e07a9968SPing-Ke Shih return 0; 1842e07a9968SPing-Ke Shih } 1843e07a9968SPing-Ke Shih 1844e07a9968SPing-Ke Shih static bool is_qta_poh(struct rtw89_dev *rtwdev) 1845e07a9968SPing-Ke Shih { 1846e07a9968SPing-Ke Shih return rtwdev->hci.type == RTW89_HCI_TYPE_PCIE; 1847e07a9968SPing-Ke Shih } 1848e07a9968SPing-Ke Shih 1849e07a9968SPing-Ke Shih static int preload_init(struct rtw89_dev *rtwdev, enum rtw89_mac_idx mac_idx, 1850e07a9968SPing-Ke Shih enum rtw89_qta_mode mode) 1851e07a9968SPing-Ke Shih { 1852e07a9968SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 1853e07a9968SPing-Ke Shih 1854e07a9968SPing-Ke Shih if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B || !is_qta_poh(rtwdev)) 1855e07a9968SPing-Ke Shih return 0; 1856e07a9968SPing-Ke Shih 1857e07a9968SPing-Ke Shih return preload_init_set(rtwdev, mac_idx, mode); 1858e07a9968SPing-Ke Shih } 1859e07a9968SPing-Ke Shih 1860e3ec7017SPing-Ke Shih static bool dle_is_txq_empty(struct rtw89_dev *rtwdev) 1861e3ec7017SPing-Ke Shih { 1862e3ec7017SPing-Ke Shih u32 msk32; 1863e3ec7017SPing-Ke Shih u32 val32; 1864e3ec7017SPing-Ke Shih 1865e3ec7017SPing-Ke Shih msk32 = B_AX_WDE_EMPTY_QUE_CMAC0_ALL_AC | B_AX_WDE_EMPTY_QUE_CMAC0_MBH | 1866e3ec7017SPing-Ke Shih B_AX_WDE_EMPTY_QUE_CMAC1_MBH | B_AX_WDE_EMPTY_QUE_CMAC0_WMM0 | 1867e3ec7017SPing-Ke Shih B_AX_WDE_EMPTY_QUE_CMAC0_WMM1 | B_AX_WDE_EMPTY_QUE_OTHERS | 1868e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QUE_DMAC_MPDU_TX | B_AX_PLE_EMPTY_QTA_DMAC_H2C | 1869e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QUE_DMAC_SEC_TX | B_AX_WDE_EMPTY_QUE_DMAC_PKTIN | 1870e3ec7017SPing-Ke Shih B_AX_WDE_EMPTY_QTA_DMAC_HIF | B_AX_WDE_EMPTY_QTA_DMAC_WLAN_CPU | 1871e3ec7017SPing-Ke Shih B_AX_WDE_EMPTY_QTA_DMAC_PKTIN | B_AX_WDE_EMPTY_QTA_DMAC_CPUIO | 1872e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QTA_DMAC_B0_TXPL | 1873e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QTA_DMAC_B1_TXPL | 1874e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QTA_DMAC_MPDU_TX | 1875e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QTA_DMAC_CPUIO | 1876e3ec7017SPing-Ke Shih B_AX_WDE_EMPTY_QTA_DMAC_DATA_CPU | 1877e3ec7017SPing-Ke Shih B_AX_PLE_EMPTY_QTA_DMAC_WLAN_CPU; 1878e3ec7017SPing-Ke Shih val32 = rtw89_read32(rtwdev, R_AX_DLE_EMPTY0); 1879e3ec7017SPing-Ke Shih 1880e3ec7017SPing-Ke Shih if ((val32 & msk32) == msk32) 1881e3ec7017SPing-Ke Shih return true; 1882e3ec7017SPing-Ke Shih 1883e3ec7017SPing-Ke Shih return false; 1884e3ec7017SPing-Ke Shih } 1885e3ec7017SPing-Ke Shih 1886cf7b8b80SPing-Ke Shih static void _patch_ss2f_path(struct rtw89_dev *rtwdev) 1887cf7b8b80SPing-Ke Shih { 1888cf7b8b80SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 1889cf7b8b80SPing-Ke Shih 1890cf7b8b80SPing-Ke Shih if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B) 1891cf7b8b80SPing-Ke Shih return; 1892cf7b8b80SPing-Ke Shih 1893cf7b8b80SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_SS2FINFO_PATH, B_AX_SS_DEST_QUEUE_MASK, 1894cf7b8b80SPing-Ke Shih SS2F_PATH_WLCPU); 1895cf7b8b80SPing-Ke Shih } 1896cf7b8b80SPing-Ke Shih 1897e3ec7017SPing-Ke Shih static int sta_sch_init(struct rtw89_dev *rtwdev) 1898e3ec7017SPing-Ke Shih { 1899e3ec7017SPing-Ke Shih u32 p_val; 1900e3ec7017SPing-Ke Shih u8 val; 1901e3ec7017SPing-Ke Shih int ret; 1902e3ec7017SPing-Ke Shih 1903e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 1904e3ec7017SPing-Ke Shih if (ret) 1905e3ec7017SPing-Ke Shih return ret; 1906e3ec7017SPing-Ke Shih 1907e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_SS_CTRL); 1908e3ec7017SPing-Ke Shih val |= B_AX_SS_EN; 1909e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_SS_CTRL, val); 1910e3ec7017SPing-Ke Shih 1911e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, p_val, p_val & B_AX_SS_INIT_DONE_1, 1912e3ec7017SPing-Ke Shih 1, TRXCFG_WAIT_CNT, false, rtwdev, R_AX_SS_CTRL); 1913e3ec7017SPing-Ke Shih if (ret) { 1914e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]STA scheduler init\n"); 1915e3ec7017SPing-Ke Shih return ret; 1916e3ec7017SPing-Ke Shih } 1917e3ec7017SPing-Ke Shih 19189a1ab283SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SS_CTRL, B_AX_SS_WARM_INIT_FLG); 19199a1ab283SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_SS_CTRL, B_AX_SS_NONEMPTY_SS2FINFO_EN); 1920cf7b8b80SPing-Ke Shih 1921cf7b8b80SPing-Ke Shih _patch_ss2f_path(rtwdev); 1922e3ec7017SPing-Ke Shih 1923e3ec7017SPing-Ke Shih return 0; 1924e3ec7017SPing-Ke Shih } 1925e3ec7017SPing-Ke Shih 1926e3ec7017SPing-Ke Shih static int mpdu_proc_init(struct rtw89_dev *rtwdev) 1927e3ec7017SPing-Ke Shih { 1928e3ec7017SPing-Ke Shih int ret; 1929e3ec7017SPing-Ke Shih 1930e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 1931e3ec7017SPing-Ke Shih if (ret) 1932e3ec7017SPing-Ke Shih return ret; 1933e3ec7017SPing-Ke Shih 1934e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_ACTION_FWD0, TRXCFG_MPDU_PROC_ACT_FRWD); 1935e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_TF_FWD, TRXCFG_MPDU_PROC_TF_FRWD); 1936e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_MPDU_PROC, 1937e3ec7017SPing-Ke Shih B_AX_APPEND_FCS | B_AX_A_ICV_ERR); 1938e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_CUT_AMSDU_CTRL, TRXCFG_MPDU_PROC_CUT_CTRL); 1939e3ec7017SPing-Ke Shih 1940e3ec7017SPing-Ke Shih return 0; 1941e3ec7017SPing-Ke Shih } 1942e3ec7017SPing-Ke Shih 1943e3ec7017SPing-Ke Shih static int sec_eng_init(struct rtw89_dev *rtwdev) 1944e3ec7017SPing-Ke Shih { 1945b61adeedSPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 1946e3ec7017SPing-Ke Shih u32 val = 0; 1947e3ec7017SPing-Ke Shih int ret; 1948e3ec7017SPing-Ke Shih 1949e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 1950e3ec7017SPing-Ke Shih if (ret) 1951e3ec7017SPing-Ke Shih return ret; 1952e3ec7017SPing-Ke Shih 1953e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_SEC_ENG_CTRL); 1954e3ec7017SPing-Ke Shih /* init clock */ 1955e3ec7017SPing-Ke Shih val |= (B_AX_CLK_EN_CGCMP | B_AX_CLK_EN_WAPI | B_AX_CLK_EN_WEP_TKIP); 1956e3ec7017SPing-Ke Shih /* init TX encryption */ 1957e3ec7017SPing-Ke Shih val |= (B_AX_SEC_TX_ENC | B_AX_SEC_RX_DEC); 1958e3ec7017SPing-Ke Shih val |= (B_AX_MC_DEC | B_AX_BC_DEC); 1959b61adeedSPing-Ke Shih if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B) 1960e3ec7017SPing-Ke Shih val &= ~B_AX_TX_PARTIAL_MODE; 1961e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_SEC_ENG_CTRL, val); 1962e3ec7017SPing-Ke Shih 1963e3ec7017SPing-Ke Shih /* init MIC ICV append */ 1964e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_SEC_MPDU_PROC); 1965e3ec7017SPing-Ke Shih val |= (B_AX_APPEND_ICV | B_AX_APPEND_MIC); 1966e3ec7017SPing-Ke Shih 1967e3ec7017SPing-Ke Shih /* option init */ 1968e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_SEC_MPDU_PROC, val); 1969e3ec7017SPing-Ke Shih 1970b61adeedSPing-Ke Shih if (chip->chip_id == RTL8852C) 1971b61adeedSPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_SEC_DEBUG1, 1972b61adeedSPing-Ke Shih B_AX_TX_TIMEOUT_SEL_MASK, AX_TX_TO_VAL); 1973b61adeedSPing-Ke Shih 1974e3ec7017SPing-Ke Shih return 0; 1975e3ec7017SPing-Ke Shih } 1976e3ec7017SPing-Ke Shih 1977e3ec7017SPing-Ke Shih static int dmac_init(struct rtw89_dev *rtwdev, u8 mac_idx) 1978e3ec7017SPing-Ke Shih { 1979e3ec7017SPing-Ke Shih int ret; 1980e3ec7017SPing-Ke Shih 1981e3ec7017SPing-Ke Shih ret = dle_init(rtwdev, rtwdev->mac.qta_mode, RTW89_QTA_INVALID); 1982e3ec7017SPing-Ke Shih if (ret) { 1983e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]DLE init %d\n", ret); 1984e3ec7017SPing-Ke Shih return ret; 1985e3ec7017SPing-Ke Shih } 1986e3ec7017SPing-Ke Shih 1987e07a9968SPing-Ke Shih ret = preload_init(rtwdev, RTW89_MAC_0, rtwdev->mac.qta_mode); 1988e07a9968SPing-Ke Shih if (ret) { 1989e07a9968SPing-Ke Shih rtw89_err(rtwdev, "[ERR]preload init %d\n", ret); 1990e07a9968SPing-Ke Shih return ret; 1991e07a9968SPing-Ke Shih } 1992e07a9968SPing-Ke Shih 1993e3ec7017SPing-Ke Shih ret = hfc_init(rtwdev, true, true, true); 1994e3ec7017SPing-Ke Shih if (ret) { 1995e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]HCI FC init %d\n", ret); 1996e3ec7017SPing-Ke Shih return ret; 1997e3ec7017SPing-Ke Shih } 1998e3ec7017SPing-Ke Shih 1999e3ec7017SPing-Ke Shih ret = sta_sch_init(rtwdev); 2000e3ec7017SPing-Ke Shih if (ret) { 2001e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]STA SCH init %d\n", ret); 2002e3ec7017SPing-Ke Shih return ret; 2003e3ec7017SPing-Ke Shih } 2004e3ec7017SPing-Ke Shih 2005e3ec7017SPing-Ke Shih ret = mpdu_proc_init(rtwdev); 2006e3ec7017SPing-Ke Shih if (ret) { 2007e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]MPDU Proc init %d\n", ret); 2008e3ec7017SPing-Ke Shih return ret; 2009e3ec7017SPing-Ke Shih } 2010e3ec7017SPing-Ke Shih 2011e3ec7017SPing-Ke Shih ret = sec_eng_init(rtwdev); 2012e3ec7017SPing-Ke Shih if (ret) { 2013e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]Security Engine init %d\n", ret); 2014e3ec7017SPing-Ke Shih return ret; 2015e3ec7017SPing-Ke Shih } 2016e3ec7017SPing-Ke Shih 2017e3ec7017SPing-Ke Shih return ret; 2018e3ec7017SPing-Ke Shih } 2019e3ec7017SPing-Ke Shih 2020e3ec7017SPing-Ke Shih static int addr_cam_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2021e3ec7017SPing-Ke Shih { 2022e3ec7017SPing-Ke Shih u32 val, reg; 2023e3ec7017SPing-Ke Shih u16 p_val; 2024e3ec7017SPing-Ke Shih int ret; 2025e3ec7017SPing-Ke Shih 2026e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2027e3ec7017SPing-Ke Shih if (ret) 2028e3ec7017SPing-Ke Shih return ret; 2029e3ec7017SPing-Ke Shih 2030e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_ADDR_CAM_CTRL, mac_idx); 2031e3ec7017SPing-Ke Shih 2032e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2033e3ec7017SPing-Ke Shih val |= u32_encode_bits(0x7f, B_AX_ADDR_CAM_RANGE_MASK) | 2034e3ec7017SPing-Ke Shih B_AX_ADDR_CAM_CLR | B_AX_ADDR_CAM_EN; 2035e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2036e3ec7017SPing-Ke Shih 2037e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read16, p_val, !(p_val & B_AX_ADDR_CAM_CLR), 2038ad275d0aSPing-Ke Shih 1, TRXCFG_WAIT_CNT, false, rtwdev, reg); 2039e3ec7017SPing-Ke Shih if (ret) { 2040e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]ADDR_CAM reset\n"); 2041e3ec7017SPing-Ke Shih return ret; 2042e3ec7017SPing-Ke Shih } 2043e3ec7017SPing-Ke Shih 2044e3ec7017SPing-Ke Shih return 0; 2045e3ec7017SPing-Ke Shih } 2046e3ec7017SPing-Ke Shih 2047e3ec7017SPing-Ke Shih static int scheduler_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2048e3ec7017SPing-Ke Shih { 2049e3ec7017SPing-Ke Shih u32 ret; 2050e3ec7017SPing-Ke Shih u32 reg; 205160b2ede9SChia-Yuan Li u32 val; 2052e3ec7017SPing-Ke Shih 2053e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2054e3ec7017SPing-Ke Shih if (ret) 2055e3ec7017SPing-Ke Shih return ret; 2056e3ec7017SPing-Ke Shih 2057c49154ffSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_PREBKF_CFG_1, mac_idx); 2058ee546904SChia-Yuan Li if (rtwdev->chip->chip_id == RTL8852C) 2059ee546904SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, B_AX_SIFS_MACTXEN_T1_MASK, 2060ee546904SChia-Yuan Li SIFS_MACTXEN_T1_V1); 2061ee546904SChia-Yuan Li else 2062ee546904SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, B_AX_SIFS_MACTXEN_T1_MASK, 2063ee546904SChia-Yuan Li SIFS_MACTXEN_T1); 2064c49154ffSPing-Ke Shih 2065c49154ffSPing-Ke Shih if (rtwdev->chip->chip_id == RTL8852B) { 2066c49154ffSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_SCH_EXT_CTRL, mac_idx); 2067c49154ffSPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_PORT_RST_TSF_ADV); 2068c49154ffSPing-Ke Shih } 2069c49154ffSPing-Ke Shih 2070c49154ffSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_CCA_CFG_0, mac_idx); 2071c49154ffSPing-Ke Shih rtw89_write32_clr(rtwdev, reg, B_AX_BTCCA_EN); 2072c49154ffSPing-Ke Shih 2073e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_PREBKF_CFG_0, mac_idx); 207460b2ede9SChia-Yuan Li if (rtwdev->chip->chip_id == RTL8852C) { 207560b2ede9SChia-Yuan Li val = rtw89_read32_mask(rtwdev, R_AX_SEC_ENG_CTRL, 207660b2ede9SChia-Yuan Li B_AX_TX_PARTIAL_MODE); 207760b2ede9SChia-Yuan Li if (!val) 207860b2ede9SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, B_AX_PREBKF_TIME_MASK, 207960b2ede9SChia-Yuan Li SCH_PREBKF_24US); 208060b2ede9SChia-Yuan Li } else { 208160b2ede9SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, B_AX_PREBKF_TIME_MASK, 208260b2ede9SChia-Yuan Li SCH_PREBKF_24US); 208360b2ede9SChia-Yuan Li } 2084e3ec7017SPing-Ke Shih 2085e3ec7017SPing-Ke Shih return 0; 2086e3ec7017SPing-Ke Shih } 2087e3ec7017SPing-Ke Shih 208819e28c7fSChin-Yen Lee int rtw89_mac_typ_fltr_opt(struct rtw89_dev *rtwdev, 2089e3ec7017SPing-Ke Shih enum rtw89_machdr_frame_type type, 2090e3ec7017SPing-Ke Shih enum rtw89_mac_fwd_target fwd_target, 2091e3ec7017SPing-Ke Shih u8 mac_idx) 2092e3ec7017SPing-Ke Shih { 2093e3ec7017SPing-Ke Shih u32 reg; 2094e3ec7017SPing-Ke Shih u32 val; 2095e3ec7017SPing-Ke Shih 2096e3ec7017SPing-Ke Shih switch (fwd_target) { 2097e3ec7017SPing-Ke Shih case RTW89_FWD_DONT_CARE: 2098e3ec7017SPing-Ke Shih val = RX_FLTR_FRAME_DROP; 2099e3ec7017SPing-Ke Shih break; 2100e3ec7017SPing-Ke Shih case RTW89_FWD_TO_HOST: 2101e3ec7017SPing-Ke Shih val = RX_FLTR_FRAME_TO_HOST; 2102e3ec7017SPing-Ke Shih break; 2103e3ec7017SPing-Ke Shih case RTW89_FWD_TO_WLAN_CPU: 2104e3ec7017SPing-Ke Shih val = RX_FLTR_FRAME_TO_WLCPU; 2105e3ec7017SPing-Ke Shih break; 2106e3ec7017SPing-Ke Shih default: 2107e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]set rx filter fwd target err\n"); 2108e3ec7017SPing-Ke Shih return -EINVAL; 2109e3ec7017SPing-Ke Shih } 2110e3ec7017SPing-Ke Shih 2111e3ec7017SPing-Ke Shih switch (type) { 2112e3ec7017SPing-Ke Shih case RTW89_MGNT: 2113e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_MGNT_FLTR, mac_idx); 2114e3ec7017SPing-Ke Shih break; 2115e3ec7017SPing-Ke Shih case RTW89_CTRL: 2116e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_CTRL_FLTR, mac_idx); 2117e3ec7017SPing-Ke Shih break; 2118e3ec7017SPing-Ke Shih case RTW89_DATA: 2119e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_DATA_FLTR, mac_idx); 2120e3ec7017SPing-Ke Shih break; 2121e3ec7017SPing-Ke Shih default: 2122e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]set rx filter type err\n"); 2123e3ec7017SPing-Ke Shih return -EINVAL; 2124e3ec7017SPing-Ke Shih } 2125e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2126e3ec7017SPing-Ke Shih 2127e3ec7017SPing-Ke Shih return 0; 2128e3ec7017SPing-Ke Shih } 2129e3ec7017SPing-Ke Shih 2130e3ec7017SPing-Ke Shih static int rx_fltr_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2131e3ec7017SPing-Ke Shih { 2132e3ec7017SPing-Ke Shih int ret, i; 2133e3ec7017SPing-Ke Shih u32 mac_ftlr, plcp_ftlr; 2134e3ec7017SPing-Ke Shih 2135e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2136e3ec7017SPing-Ke Shih if (ret) 2137e3ec7017SPing-Ke Shih return ret; 2138e3ec7017SPing-Ke Shih 2139e3ec7017SPing-Ke Shih for (i = RTW89_MGNT; i <= RTW89_DATA; i++) { 2140e3ec7017SPing-Ke Shih ret = rtw89_mac_typ_fltr_opt(rtwdev, i, RTW89_FWD_TO_HOST, 2141e3ec7017SPing-Ke Shih mac_idx); 2142e3ec7017SPing-Ke Shih if (ret) 2143e3ec7017SPing-Ke Shih return ret; 2144e3ec7017SPing-Ke Shih } 2145e3ec7017SPing-Ke Shih mac_ftlr = rtwdev->hal.rx_fltr; 2146e3ec7017SPing-Ke Shih plcp_ftlr = B_AX_CCK_CRC_CHK | B_AX_CCK_SIG_CHK | 2147e3ec7017SPing-Ke Shih B_AX_LSIG_PARITY_CHK_EN | B_AX_SIGA_CRC_CHK | 2148e3ec7017SPing-Ke Shih B_AX_VHT_SU_SIGB_CRC_CHK | B_AX_VHT_MU_SIGB_CRC_CHK | 2149e3ec7017SPing-Ke Shih B_AX_HE_SIGB_CRC_CHK; 2150e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_RX_FLTR_OPT, mac_idx), 2151e3ec7017SPing-Ke Shih mac_ftlr); 2152e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, rtw89_mac_reg_by_idx(R_AX_PLCP_HDR_FLTR, mac_idx), 2153e3ec7017SPing-Ke Shih plcp_ftlr); 2154e3ec7017SPing-Ke Shih 2155e3ec7017SPing-Ke Shih return 0; 2156e3ec7017SPing-Ke Shih } 2157e3ec7017SPing-Ke Shih 2158e3ec7017SPing-Ke Shih static void _patch_dis_resp_chk(struct rtw89_dev *rtwdev, u8 mac_idx) 2159e3ec7017SPing-Ke Shih { 2160e3ec7017SPing-Ke Shih u32 reg, val32; 2161e3ec7017SPing-Ke Shih u32 b_rsp_chk_nav, b_rsp_chk_cca; 2162e3ec7017SPing-Ke Shih 2163e3ec7017SPing-Ke Shih b_rsp_chk_nav = B_AX_RSP_CHK_TXNAV | B_AX_RSP_CHK_INTRA_NAV | 2164e3ec7017SPing-Ke Shih B_AX_RSP_CHK_BASIC_NAV; 2165e3ec7017SPing-Ke Shih b_rsp_chk_cca = B_AX_RSP_CHK_SEC_CCA_80 | B_AX_RSP_CHK_SEC_CCA_40 | 2166e3ec7017SPing-Ke Shih B_AX_RSP_CHK_SEC_CCA_20 | B_AX_RSP_CHK_BTCCA | 2167e3ec7017SPing-Ke Shih B_AX_RSP_CHK_EDCCA | B_AX_RSP_CHK_CCA; 2168e3ec7017SPing-Ke Shih 2169e3ec7017SPing-Ke Shih switch (rtwdev->chip->chip_id) { 2170e3ec7017SPing-Ke Shih case RTL8852A: 2171e3ec7017SPing-Ke Shih case RTL8852B: 2172e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RSP_CHK_SIG, mac_idx); 2173e3ec7017SPing-Ke Shih val32 = rtw89_read32(rtwdev, reg) & ~b_rsp_chk_nav; 2174e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val32); 2175e3ec7017SPing-Ke Shih 2176e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx); 2177e3ec7017SPing-Ke Shih val32 = rtw89_read32(rtwdev, reg) & ~b_rsp_chk_cca; 2178e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val32); 2179e3ec7017SPing-Ke Shih break; 2180e3ec7017SPing-Ke Shih default: 2181e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RSP_CHK_SIG, mac_idx); 2182e3ec7017SPing-Ke Shih val32 = rtw89_read32(rtwdev, reg) | b_rsp_chk_nav; 2183e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val32); 2184e3ec7017SPing-Ke Shih 2185e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx); 2186e3ec7017SPing-Ke Shih val32 = rtw89_read32(rtwdev, reg) | b_rsp_chk_cca; 2187e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val32); 2188e3ec7017SPing-Ke Shih break; 2189e3ec7017SPing-Ke Shih } 2190e3ec7017SPing-Ke Shih } 2191e3ec7017SPing-Ke Shih 2192e3ec7017SPing-Ke Shih static int cca_ctrl_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2193e3ec7017SPing-Ke Shih { 2194e3ec7017SPing-Ke Shih u32 val, reg; 2195e3ec7017SPing-Ke Shih int ret; 2196e3ec7017SPing-Ke Shih 2197e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2198e3ec7017SPing-Ke Shih if (ret) 2199e3ec7017SPing-Ke Shih return ret; 2200e3ec7017SPing-Ke Shih 2201e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_CCA_CONTROL, mac_idx); 2202e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2203e3ec7017SPing-Ke Shih val |= (B_AX_TB_CHK_BASIC_NAV | B_AX_TB_CHK_BTCCA | 2204e3ec7017SPing-Ke Shih B_AX_TB_CHK_EDCCA | B_AX_TB_CHK_CCA_P20 | 2205e3ec7017SPing-Ke Shih B_AX_SIFS_CHK_BTCCA | B_AX_SIFS_CHK_CCA_P20 | 2206e3ec7017SPing-Ke Shih B_AX_CTN_CHK_INTRA_NAV | 2207e3ec7017SPing-Ke Shih B_AX_CTN_CHK_BASIC_NAV | B_AX_CTN_CHK_BTCCA | 2208e3ec7017SPing-Ke Shih B_AX_CTN_CHK_EDCCA | B_AX_CTN_CHK_CCA_S80 | 2209e3ec7017SPing-Ke Shih B_AX_CTN_CHK_CCA_S40 | B_AX_CTN_CHK_CCA_S20 | 221098ed6159SPing-Ke Shih B_AX_CTN_CHK_CCA_P20); 2211e3ec7017SPing-Ke Shih val &= ~(B_AX_TB_CHK_TX_NAV | B_AX_TB_CHK_CCA_S80 | 2212e3ec7017SPing-Ke Shih B_AX_TB_CHK_CCA_S40 | B_AX_TB_CHK_CCA_S20 | 2213e3ec7017SPing-Ke Shih B_AX_SIFS_CHK_CCA_S80 | B_AX_SIFS_CHK_CCA_S40 | 221498ed6159SPing-Ke Shih B_AX_SIFS_CHK_CCA_S20 | B_AX_CTN_CHK_TXNAV | 221598ed6159SPing-Ke Shih B_AX_SIFS_CHK_EDCCA); 2216e3ec7017SPing-Ke Shih 2217e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2218e3ec7017SPing-Ke Shih 2219e3ec7017SPing-Ke Shih _patch_dis_resp_chk(rtwdev, mac_idx); 2220e3ec7017SPing-Ke Shih 2221e3ec7017SPing-Ke Shih return 0; 2222e3ec7017SPing-Ke Shih } 2223e3ec7017SPing-Ke Shih 222419cb9427SPing-Ke Shih static int nav_ctrl_init(struct rtw89_dev *rtwdev) 222519cb9427SPing-Ke Shih { 222619cb9427SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_WMAC_NAV_CTL, B_AX_WMAC_PLCP_UP_NAV_EN | 222719cb9427SPing-Ke Shih B_AX_WMAC_TF_UP_NAV_EN | 222819cb9427SPing-Ke Shih B_AX_WMAC_NAV_UPPER_EN); 2229c060dc51SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_WMAC_NAV_CTL, B_AX_WMAC_NAV_UPPER_MASK, NAV_25MS); 223019cb9427SPing-Ke Shih 223119cb9427SPing-Ke Shih return 0; 223219cb9427SPing-Ke Shih } 223319cb9427SPing-Ke Shih 2234e3ec7017SPing-Ke Shih static int spatial_reuse_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2235e3ec7017SPing-Ke Shih { 2236e3ec7017SPing-Ke Shih u32 reg; 2237e3ec7017SPing-Ke Shih int ret; 2238e3ec7017SPing-Ke Shih 2239e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2240e3ec7017SPing-Ke Shih if (ret) 2241e3ec7017SPing-Ke Shih return ret; 2242e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RX_SR_CTRL, mac_idx); 2243e3ec7017SPing-Ke Shih rtw89_write8_clr(rtwdev, reg, B_AX_SR_EN); 2244e3ec7017SPing-Ke Shih 2245e3ec7017SPing-Ke Shih return 0; 2246e3ec7017SPing-Ke Shih } 2247e3ec7017SPing-Ke Shih 2248e3ec7017SPing-Ke Shih static int tmac_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2249e3ec7017SPing-Ke Shih { 2250e3ec7017SPing-Ke Shih u32 reg; 2251e3ec7017SPing-Ke Shih int ret; 2252e3ec7017SPing-Ke Shih 2253e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2254e3ec7017SPing-Ke Shih if (ret) 2255e3ec7017SPing-Ke Shih return ret; 2256e3ec7017SPing-Ke Shih 2257e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_MAC_LOOPBACK, mac_idx); 2258e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, reg, B_AX_MACLBK_EN); 2259e3ec7017SPing-Ke Shih 226075fd91aaSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TCR0, mac_idx); 226175fd91aaSPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_TCR_UDF_THSD_MASK, TCR_UDF_THSD); 226275fd91aaSPing-Ke Shih 226375fd91aaSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TXD_FIFO_CTRL, mac_idx); 226475fd91aaSPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_TXDFIFO_HIGH_MCS_THRE_MASK, TXDFIFO_HIGH_MCS_THRE); 226575fd91aaSPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_TXDFIFO_LOW_MCS_THRE_MASK, TXDFIFO_LOW_MCS_THRE); 226675fd91aaSPing-Ke Shih 2267e3ec7017SPing-Ke Shih return 0; 2268e3ec7017SPing-Ke Shih } 2269e3ec7017SPing-Ke Shih 2270e3ec7017SPing-Ke Shih static int trxptcl_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2271e3ec7017SPing-Ke Shih { 22729ef9edb9SChia-Yuan Li const struct rtw89_chip_info *chip = rtwdev->chip; 22739ef9edb9SChia-Yuan Li const struct rtw89_rrsr_cfgs *rrsr = chip->rrsr_cfgs; 2274e3ec7017SPing-Ke Shih u32 reg, val, sifs; 2275e3ec7017SPing-Ke Shih int ret; 2276e3ec7017SPing-Ke Shih 2277e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2278e3ec7017SPing-Ke Shih if (ret) 2279e3ec7017SPing-Ke Shih return ret; 2280e3ec7017SPing-Ke Shih 2281e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_0, mac_idx); 2282e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2283e3ec7017SPing-Ke Shih val &= ~B_AX_WMAC_SPEC_SIFS_CCK_MASK; 2284e3ec7017SPing-Ke Shih val |= FIELD_PREP(B_AX_WMAC_SPEC_SIFS_CCK_MASK, WMAC_SPEC_SIFS_CCK); 2285e3ec7017SPing-Ke Shih 2286e3ec7017SPing-Ke Shih switch (rtwdev->chip->chip_id) { 2287e3ec7017SPing-Ke Shih case RTL8852A: 2288e3ec7017SPing-Ke Shih sifs = WMAC_SPEC_SIFS_OFDM_52A; 2289e3ec7017SPing-Ke Shih break; 2290e3ec7017SPing-Ke Shih case RTL8852B: 2291e3ec7017SPing-Ke Shih sifs = WMAC_SPEC_SIFS_OFDM_52B; 2292e3ec7017SPing-Ke Shih break; 2293e3ec7017SPing-Ke Shih default: 2294e3ec7017SPing-Ke Shih sifs = WMAC_SPEC_SIFS_OFDM_52C; 2295e3ec7017SPing-Ke Shih break; 2296e3ec7017SPing-Ke Shih } 2297e3ec7017SPing-Ke Shih val &= ~B_AX_WMAC_SPEC_SIFS_OFDM_MASK; 2298e3ec7017SPing-Ke Shih val |= FIELD_PREP(B_AX_WMAC_SPEC_SIFS_OFDM_MASK, sifs); 2299e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2300e3ec7017SPing-Ke Shih 2301e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RXTRIG_TEST_USER_2, mac_idx); 2302e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_RXTRIG_FCSCHK_EN); 2303e3ec7017SPing-Ke Shih 23049ef9edb9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(rrsr->ref_rate.addr, mac_idx); 23059ef9edb9SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, rrsr->ref_rate.mask, rrsr->ref_rate.data); 23069ef9edb9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(rrsr->rsc.addr, mac_idx); 23079ef9edb9SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, rrsr->rsc.mask, rrsr->rsc.data); 23089ef9edb9SChia-Yuan Li 2309e3ec7017SPing-Ke Shih return 0; 2310e3ec7017SPing-Ke Shih } 2311e3ec7017SPing-Ke Shih 231218175197SPing-Ke Shih static void rst_bacam(struct rtw89_dev *rtwdev) 231318175197SPing-Ke Shih { 231418175197SPing-Ke Shih u32 val32; 231518175197SPing-Ke Shih int ret; 231618175197SPing-Ke Shih 231718175197SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_RESPBA_CAM_CTRL, B_AX_BACAM_RST_MASK, 231818175197SPing-Ke Shih S_AX_BACAM_RST_ALL); 231918175197SPing-Ke Shih 232018175197SPing-Ke Shih ret = read_poll_timeout_atomic(rtw89_read32_mask, val32, val32 == 0, 232118175197SPing-Ke Shih 1, 1000, false, 232218175197SPing-Ke Shih rtwdev, R_AX_RESPBA_CAM_CTRL, B_AX_BACAM_RST_MASK); 232318175197SPing-Ke Shih if (ret) 232418175197SPing-Ke Shih rtw89_warn(rtwdev, "failed to reset BA CAM\n"); 232518175197SPing-Ke Shih } 232618175197SPing-Ke Shih 2327e3ec7017SPing-Ke Shih static int rmac_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2328e3ec7017SPing-Ke Shih { 2329e3ec7017SPing-Ke Shih #define TRXCFG_RMAC_CCA_TO 32 2330e3ec7017SPing-Ke Shih #define TRXCFG_RMAC_DATA_TO 15 2331e3ec7017SPing-Ke Shih #define RX_MAX_LEN_UNIT 512 2332e3ec7017SPing-Ke Shih #define PLD_RLS_MAX_PG 127 23334b0d341bSPing-Ke Shih #define RX_SPEC_MAX_LEN (11454 + RX_MAX_LEN_UNIT) 2334e3ec7017SPing-Ke Shih int ret; 2335e3ec7017SPing-Ke Shih u32 reg, rx_max_len, rx_qta; 2336e3ec7017SPing-Ke Shih u16 val; 2337e3ec7017SPing-Ke Shih 2338e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2339e3ec7017SPing-Ke Shih if (ret) 2340e3ec7017SPing-Ke Shih return ret; 2341e3ec7017SPing-Ke Shih 234218175197SPing-Ke Shih if (mac_idx == RTW89_MAC_0) 234318175197SPing-Ke Shih rst_bacam(rtwdev); 234418175197SPing-Ke Shih 2345e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RESPBA_CAM_CTRL, mac_idx); 2346e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, reg, B_AX_SSN_SEL); 2347e3ec7017SPing-Ke Shih 2348e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_DLK_PROTECT_CTL, mac_idx); 2349e3ec7017SPing-Ke Shih val = rtw89_read16(rtwdev, reg); 2350e3ec7017SPing-Ke Shih val = u16_replace_bits(val, TRXCFG_RMAC_DATA_TO, 2351e3ec7017SPing-Ke Shih B_AX_RX_DLK_DATA_TIME_MASK); 2352e3ec7017SPing-Ke Shih val = u16_replace_bits(val, TRXCFG_RMAC_CCA_TO, 2353e3ec7017SPing-Ke Shih B_AX_RX_DLK_CCA_TIME_MASK); 2354e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, reg, val); 2355e3ec7017SPing-Ke Shih 2356e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RCR, mac_idx); 2357e3ec7017SPing-Ke Shih rtw89_write8_mask(rtwdev, reg, B_AX_CH_EN_MASK, 0x1); 2358e3ec7017SPing-Ke Shih 2359e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RX_FLTR_OPT, mac_idx); 2360e3ec7017SPing-Ke Shih if (mac_idx == RTW89_MAC_0) 2361e3ec7017SPing-Ke Shih rx_qta = rtwdev->mac.dle_info.c0_rx_qta; 2362e3ec7017SPing-Ke Shih else 2363e3ec7017SPing-Ke Shih rx_qta = rtwdev->mac.dle_info.c1_rx_qta; 23644b0d341bSPing-Ke Shih rx_qta = min_t(u32, rx_qta, PLD_RLS_MAX_PG); 23654b0d341bSPing-Ke Shih rx_max_len = rx_qta * rtwdev->mac.dle_info.ple_pg_size; 23664b0d341bSPing-Ke Shih rx_max_len = min_t(u32, rx_max_len, RX_SPEC_MAX_LEN); 23674b0d341bSPing-Ke Shih rx_max_len /= RX_MAX_LEN_UNIT; 2368e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_RX_MPDU_MAX_LEN_MASK, rx_max_len); 2369e3ec7017SPing-Ke Shih 2370e3ec7017SPing-Ke Shih if (rtwdev->chip->chip_id == RTL8852A && 2371e3ec7017SPing-Ke Shih rtwdev->hal.cv == CHIP_CBV) { 2372e3ec7017SPing-Ke Shih rtw89_write16_mask(rtwdev, 2373e3ec7017SPing-Ke Shih rtw89_mac_reg_by_idx(R_AX_DLK_PROTECT_CTL, mac_idx), 2374e3ec7017SPing-Ke Shih B_AX_RX_DLK_CCA_TIME_MASK, 0); 2375e3ec7017SPing-Ke Shih rtw89_write16_set(rtwdev, rtw89_mac_reg_by_idx(R_AX_RCR, mac_idx), 2376e3ec7017SPing-Ke Shih BIT(12)); 2377e3ec7017SPing-Ke Shih } 2378e3ec7017SPing-Ke Shih 2379e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_PLCP_HDR_FLTR, mac_idx); 2380e3ec7017SPing-Ke Shih rtw89_write8_clr(rtwdev, reg, B_AX_VHT_SU_SIGB_CRC_CHK); 2381e3ec7017SPing-Ke Shih 2382e3ec7017SPing-Ke Shih return ret; 2383e3ec7017SPing-Ke Shih } 2384e3ec7017SPing-Ke Shih 2385e3ec7017SPing-Ke Shih static int cmac_com_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2386e3ec7017SPing-Ke Shih { 23879ef9edb9SChia-Yuan Li enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 2388e3ec7017SPing-Ke Shih u32 val, reg; 2389e3ec7017SPing-Ke Shih int ret; 2390e3ec7017SPing-Ke Shih 2391e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2392e3ec7017SPing-Ke Shih if (ret) 2393e3ec7017SPing-Ke Shih return ret; 2394e3ec7017SPing-Ke Shih 2395e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TX_SUB_CARRIER_VALUE, mac_idx); 2396e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2397e3ec7017SPing-Ke Shih val = u32_replace_bits(val, 0, B_AX_TXSC_20M_MASK); 2398e3ec7017SPing-Ke Shih val = u32_replace_bits(val, 0, B_AX_TXSC_40M_MASK); 2399e3ec7017SPing-Ke Shih val = u32_replace_bits(val, 0, B_AX_TXSC_80M_MASK); 2400e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2401e3ec7017SPing-Ke Shih 24029ef9edb9SChia-Yuan Li if (chip_id == RTL8852A || chip_id == RTL8852B) { 24039ef9edb9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(R_AX_PTCL_RRSR1, mac_idx); 24049ef9edb9SChia-Yuan Li rtw89_write32_mask(rtwdev, reg, B_AX_RRSR_RATE_EN_MASK, RRSR_OFDM_CCK_EN); 24059ef9edb9SChia-Yuan Li } 24069ef9edb9SChia-Yuan Li 2407e3ec7017SPing-Ke Shih return 0; 2408e3ec7017SPing-Ke Shih } 2409e3ec7017SPing-Ke Shih 2410e3ec7017SPing-Ke Shih static bool is_qta_dbcc(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode) 2411e3ec7017SPing-Ke Shih { 2412e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *cfg; 2413e3ec7017SPing-Ke Shih 2414e3ec7017SPing-Ke Shih cfg = get_dle_mem_cfg(rtwdev, mode); 2415e3ec7017SPing-Ke Shih if (!cfg) { 2416e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]get_dle_mem_cfg\n"); 2417e3ec7017SPing-Ke Shih return false; 2418e3ec7017SPing-Ke Shih } 2419e3ec7017SPing-Ke Shih 2420e3ec7017SPing-Ke Shih return (cfg->ple_min_qt->cma1_dma && cfg->ple_max_qt->cma1_dma); 2421e3ec7017SPing-Ke Shih } 2422e3ec7017SPing-Ke Shih 2423e3ec7017SPing-Ke Shih static int ptcl_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2424e3ec7017SPing-Ke Shih { 2425e3ec7017SPing-Ke Shih u32 val, reg; 2426e3ec7017SPing-Ke Shih int ret; 2427e3ec7017SPing-Ke Shih 2428e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2429e3ec7017SPing-Ke Shih if (ret) 2430e3ec7017SPing-Ke Shih return ret; 2431e3ec7017SPing-Ke Shih 2432e3ec7017SPing-Ke Shih if (rtwdev->hci.type == RTW89_HCI_TYPE_PCIE) { 2433e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_SIFS_SETTING, mac_idx); 2434e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2435e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_CTS2S_TH_1K, 2436e3ec7017SPing-Ke Shih B_AX_HW_CTS2SELF_PKT_LEN_TH_MASK); 24379fb4862eSPing-Ke Shih val = u32_replace_bits(val, S_AX_CTS2S_TH_SEC_256B, 24389fb4862eSPing-Ke Shih B_AX_HW_CTS2SELF_PKT_LEN_TH_TWW_MASK); 2439e3ec7017SPing-Ke Shih val |= B_AX_HW_CTS2SELF_EN; 2440e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2441e3ec7017SPing-Ke Shih 2442e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_PTCL_FSM_MON, mac_idx); 2443e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2444e3ec7017SPing-Ke Shih val = u32_replace_bits(val, S_AX_PTCL_TO_2MS, B_AX_PTCL_TX_ARB_TO_THR_MASK); 2445e3ec7017SPing-Ke Shih val &= ~B_AX_PTCL_TX_ARB_TO_MODE; 2446e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2447e3ec7017SPing-Ke Shih } 2448e3ec7017SPing-Ke Shih 24499fb4862eSPing-Ke Shih if (mac_idx == RTW89_MAC_0) { 24509fb4862eSPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_PTCL_COMMON_SETTING_0, 24519fb4862eSPing-Ke Shih B_AX_CMAC_TX_MODE_0 | B_AX_CMAC_TX_MODE_1); 24529fb4862eSPing-Ke Shih rtw89_write8_clr(rtwdev, R_AX_PTCL_COMMON_SETTING_0, 24539fb4862eSPing-Ke Shih B_AX_PTCL_TRIGGER_SS_EN_0 | 24549fb4862eSPing-Ke Shih B_AX_PTCL_TRIGGER_SS_EN_1 | 24559fb4862eSPing-Ke Shih B_AX_PTCL_TRIGGER_SS_EN_UL); 24569fb4862eSPing-Ke Shih rtw89_write8_mask(rtwdev, R_AX_PTCLRPT_FULL_HDL, 24579fb4862eSPing-Ke Shih B_AX_SPE_RPT_PATH_MASK, FWD_TO_WLCPU); 24589fb4862eSPing-Ke Shih } else if (mac_idx == RTW89_MAC_1) { 24599fb4862eSPing-Ke Shih rtw89_write8_mask(rtwdev, R_AX_PTCLRPT_FULL_HDL_C1, 24609fb4862eSPing-Ke Shih B_AX_SPE_RPT_PATH_MASK, FWD_TO_WLCPU); 24619fb4862eSPing-Ke Shih } 2462e3ec7017SPing-Ke Shih 2463e3ec7017SPing-Ke Shih return 0; 2464e3ec7017SPing-Ke Shih } 2465e3ec7017SPing-Ke Shih 2466a0d99ebbSPing-Ke Shih static int cmac_dma_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2467a0d99ebbSPing-Ke Shih { 2468a0d99ebbSPing-Ke Shih enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 2469a0d99ebbSPing-Ke Shih u32 reg; 2470a0d99ebbSPing-Ke Shih int ret; 2471a0d99ebbSPing-Ke Shih 2472a0d99ebbSPing-Ke Shih if (chip_id != RTL8852A && chip_id != RTL8852B) 2473a0d99ebbSPing-Ke Shih return 0; 2474a0d99ebbSPing-Ke Shih 2475a0d99ebbSPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2476a0d99ebbSPing-Ke Shih if (ret) 2477a0d99ebbSPing-Ke Shih return ret; 2478a0d99ebbSPing-Ke Shih 2479a0d99ebbSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_RXDMA_CTRL_0, mac_idx); 2480a0d99ebbSPing-Ke Shih rtw89_write8_clr(rtwdev, reg, RX_FULL_MODE); 2481a0d99ebbSPing-Ke Shih 2482a0d99ebbSPing-Ke Shih return 0; 2483a0d99ebbSPing-Ke Shih } 2484a0d99ebbSPing-Ke Shih 2485e3ec7017SPing-Ke Shih static int cmac_init(struct rtw89_dev *rtwdev, u8 mac_idx) 2486e3ec7017SPing-Ke Shih { 2487e3ec7017SPing-Ke Shih int ret; 2488e3ec7017SPing-Ke Shih 2489e3ec7017SPing-Ke Shih ret = scheduler_init(rtwdev, mac_idx); 2490e3ec7017SPing-Ke Shih if (ret) { 2491e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d SCH init %d\n", mac_idx, ret); 2492e3ec7017SPing-Ke Shih return ret; 2493e3ec7017SPing-Ke Shih } 2494e3ec7017SPing-Ke Shih 2495e3ec7017SPing-Ke Shih ret = addr_cam_init(rtwdev, mac_idx); 2496e3ec7017SPing-Ke Shih if (ret) { 2497e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d ADDR_CAM reset %d\n", mac_idx, 2498e3ec7017SPing-Ke Shih ret); 2499e3ec7017SPing-Ke Shih return ret; 2500e3ec7017SPing-Ke Shih } 2501e3ec7017SPing-Ke Shih 2502e3ec7017SPing-Ke Shih ret = rx_fltr_init(rtwdev, mac_idx); 2503e3ec7017SPing-Ke Shih if (ret) { 2504e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d RX filter init %d\n", mac_idx, 2505e3ec7017SPing-Ke Shih ret); 2506e3ec7017SPing-Ke Shih return ret; 2507e3ec7017SPing-Ke Shih } 2508e3ec7017SPing-Ke Shih 2509e3ec7017SPing-Ke Shih ret = cca_ctrl_init(rtwdev, mac_idx); 2510e3ec7017SPing-Ke Shih if (ret) { 2511e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d CCA CTRL init %d\n", mac_idx, 2512e3ec7017SPing-Ke Shih ret); 2513e3ec7017SPing-Ke Shih return ret; 2514e3ec7017SPing-Ke Shih } 2515e3ec7017SPing-Ke Shih 251619cb9427SPing-Ke Shih ret = nav_ctrl_init(rtwdev); 251719cb9427SPing-Ke Shih if (ret) { 251819cb9427SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d NAV CTRL init %d\n", mac_idx, 251919cb9427SPing-Ke Shih ret); 252019cb9427SPing-Ke Shih return ret; 252119cb9427SPing-Ke Shih } 252219cb9427SPing-Ke Shih 2523e3ec7017SPing-Ke Shih ret = spatial_reuse_init(rtwdev, mac_idx); 2524e3ec7017SPing-Ke Shih if (ret) { 2525e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d Spatial Reuse init %d\n", 2526e3ec7017SPing-Ke Shih mac_idx, ret); 2527e3ec7017SPing-Ke Shih return ret; 2528e3ec7017SPing-Ke Shih } 2529e3ec7017SPing-Ke Shih 2530e3ec7017SPing-Ke Shih ret = tmac_init(rtwdev, mac_idx); 2531e3ec7017SPing-Ke Shih if (ret) { 2532e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d TMAC init %d\n", mac_idx, ret); 2533e3ec7017SPing-Ke Shih return ret; 2534e3ec7017SPing-Ke Shih } 2535e3ec7017SPing-Ke Shih 2536e3ec7017SPing-Ke Shih ret = trxptcl_init(rtwdev, mac_idx); 2537e3ec7017SPing-Ke Shih if (ret) { 2538e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d TRXPTCL init %d\n", mac_idx, ret); 2539e3ec7017SPing-Ke Shih return ret; 2540e3ec7017SPing-Ke Shih } 2541e3ec7017SPing-Ke Shih 2542e3ec7017SPing-Ke Shih ret = rmac_init(rtwdev, mac_idx); 2543e3ec7017SPing-Ke Shih if (ret) { 2544e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d RMAC init %d\n", mac_idx, ret); 2545e3ec7017SPing-Ke Shih return ret; 2546e3ec7017SPing-Ke Shih } 2547e3ec7017SPing-Ke Shih 2548e3ec7017SPing-Ke Shih ret = cmac_com_init(rtwdev, mac_idx); 2549e3ec7017SPing-Ke Shih if (ret) { 2550e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d Com init %d\n", mac_idx, ret); 2551e3ec7017SPing-Ke Shih return ret; 2552e3ec7017SPing-Ke Shih } 2553e3ec7017SPing-Ke Shih 2554e3ec7017SPing-Ke Shih ret = ptcl_init(rtwdev, mac_idx); 2555e3ec7017SPing-Ke Shih if (ret) { 2556e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d PTCL init %d\n", mac_idx, ret); 2557e3ec7017SPing-Ke Shih return ret; 2558e3ec7017SPing-Ke Shih } 2559e3ec7017SPing-Ke Shih 2560a0d99ebbSPing-Ke Shih ret = cmac_dma_init(rtwdev, mac_idx); 2561a0d99ebbSPing-Ke Shih if (ret) { 2562a0d99ebbSPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d DMA init %d\n", mac_idx, ret); 2563a0d99ebbSPing-Ke Shih return ret; 2564a0d99ebbSPing-Ke Shih } 2565a0d99ebbSPing-Ke Shih 2566e3ec7017SPing-Ke Shih return ret; 2567e3ec7017SPing-Ke Shih } 2568e3ec7017SPing-Ke Shih 2569e3ec7017SPing-Ke Shih static int rtw89_mac_read_phycap(struct rtw89_dev *rtwdev, 2570e3ec7017SPing-Ke Shih struct rtw89_mac_c2h_info *c2h_info) 2571e3ec7017SPing-Ke Shih { 2572e3ec7017SPing-Ke Shih struct rtw89_mac_h2c_info h2c_info = {0}; 2573e3ec7017SPing-Ke Shih u32 ret; 2574e3ec7017SPing-Ke Shih 2575e3ec7017SPing-Ke Shih h2c_info.id = RTW89_FWCMD_H2CREG_FUNC_GET_FEATURE; 2576e3ec7017SPing-Ke Shih h2c_info.content_len = 0; 2577e3ec7017SPing-Ke Shih 2578e3ec7017SPing-Ke Shih ret = rtw89_fw_msg_reg(rtwdev, &h2c_info, c2h_info); 2579e3ec7017SPing-Ke Shih if (ret) 2580e3ec7017SPing-Ke Shih return ret; 2581e3ec7017SPing-Ke Shih 2582e3ec7017SPing-Ke Shih if (c2h_info->id != RTW89_FWCMD_C2HREG_FUNC_PHY_CAP) 2583e3ec7017SPing-Ke Shih return -EINVAL; 2584e3ec7017SPing-Ke Shih 2585e3ec7017SPing-Ke Shih return 0; 2586e3ec7017SPing-Ke Shih } 2587e3ec7017SPing-Ke Shih 2588e3ec7017SPing-Ke Shih int rtw89_mac_setup_phycap(struct rtw89_dev *rtwdev) 2589e3ec7017SPing-Ke Shih { 2590e3ec7017SPing-Ke Shih struct rtw89_hal *hal = &rtwdev->hal; 2591e3ec7017SPing-Ke Shih const struct rtw89_chip_info *chip = rtwdev->chip; 2592e3ec7017SPing-Ke Shih struct rtw89_mac_c2h_info c2h_info = {0}; 2593c7ad08c6SPing-Ke Shih u8 tx_nss; 2594c7ad08c6SPing-Ke Shih u8 rx_nss; 2595dc229d94SPing-Ke Shih u8 tx_ant; 2596dc229d94SPing-Ke Shih u8 rx_ant; 2597e3ec7017SPing-Ke Shih u32 ret; 2598e3ec7017SPing-Ke Shih 2599e3ec7017SPing-Ke Shih ret = rtw89_mac_read_phycap(rtwdev, &c2h_info); 2600e3ec7017SPing-Ke Shih if (ret) 2601e3ec7017SPing-Ke Shih return ret; 2602e3ec7017SPing-Ke Shih 2603c7ad08c6SPing-Ke Shih tx_nss = RTW89_GET_C2H_PHYCAP_TX_NSS(c2h_info.c2hreg); 2604c7ad08c6SPing-Ke Shih rx_nss = RTW89_GET_C2H_PHYCAP_RX_NSS(c2h_info.c2hreg); 2605dc229d94SPing-Ke Shih tx_ant = RTW89_GET_C2H_PHYCAP_ANT_TX_NUM(c2h_info.c2hreg); 2606dc229d94SPing-Ke Shih rx_ant = RTW89_GET_C2H_PHYCAP_ANT_RX_NUM(c2h_info.c2hreg); 2607c7ad08c6SPing-Ke Shih 2608c7ad08c6SPing-Ke Shih hal->tx_nss = tx_nss ? min_t(u8, tx_nss, chip->tx_nss) : chip->tx_nss; 2609c7ad08c6SPing-Ke Shih hal->rx_nss = rx_nss ? min_t(u8, rx_nss, chip->rx_nss) : chip->rx_nss; 2610e3ec7017SPing-Ke Shih 2611dc229d94SPing-Ke Shih if (tx_ant == 1) 2612dc229d94SPing-Ke Shih hal->antenna_tx = RF_B; 2613dc229d94SPing-Ke Shih if (rx_ant == 1) 2614dc229d94SPing-Ke Shih hal->antenna_rx = RF_B; 2615dc229d94SPing-Ke Shih 2616dc229d94SPing-Ke Shih if (tx_nss == 1 && tx_ant == 2 && rx_ant == 2) { 2617dc229d94SPing-Ke Shih hal->antenna_tx = RF_B; 2618dc229d94SPing-Ke Shih hal->tx_path_diversity = true; 2619dc229d94SPing-Ke Shih } 2620dc229d94SPing-Ke Shih 2621e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_FW, 2622e3ec7017SPing-Ke Shih "phycap hal/phy/chip: tx_nss=0x%x/0x%x/0x%x rx_nss=0x%x/0x%x/0x%x\n", 2623c7ad08c6SPing-Ke Shih hal->tx_nss, tx_nss, chip->tx_nss, 2624c7ad08c6SPing-Ke Shih hal->rx_nss, rx_nss, chip->rx_nss); 2625dc229d94SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_FW, 2626dc229d94SPing-Ke Shih "ant num/bitmap: tx=%d/0x%x rx=%d/0x%x\n", 2627dc229d94SPing-Ke Shih tx_ant, hal->antenna_tx, rx_ant, hal->antenna_rx); 2628dc229d94SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_FW, "TX path diversity=%d\n", hal->tx_path_diversity); 2629e3ec7017SPing-Ke Shih 2630e3ec7017SPing-Ke Shih return 0; 2631e3ec7017SPing-Ke Shih } 2632e3ec7017SPing-Ke Shih 2633e3ec7017SPing-Ke Shih static int rtw89_hw_sch_tx_en_h2c(struct rtw89_dev *rtwdev, u8 band, 2634e3ec7017SPing-Ke Shih u16 tx_en_u16, u16 mask_u16) 2635e3ec7017SPing-Ke Shih { 2636e3ec7017SPing-Ke Shih u32 ret; 2637e3ec7017SPing-Ke Shih struct rtw89_mac_c2h_info c2h_info = {0}; 2638e3ec7017SPing-Ke Shih struct rtw89_mac_h2c_info h2c_info = {0}; 2639e3ec7017SPing-Ke Shih struct rtw89_h2creg_sch_tx_en *h2creg = 2640e3ec7017SPing-Ke Shih (struct rtw89_h2creg_sch_tx_en *)h2c_info.h2creg; 2641e3ec7017SPing-Ke Shih 2642e3ec7017SPing-Ke Shih h2c_info.id = RTW89_FWCMD_H2CREG_FUNC_SCH_TX_EN; 2643e3ec7017SPing-Ke Shih h2c_info.content_len = sizeof(*h2creg) - RTW89_H2CREG_HDR_LEN; 2644e3ec7017SPing-Ke Shih h2creg->tx_en = tx_en_u16; 2645e3ec7017SPing-Ke Shih h2creg->mask = mask_u16; 2646e3ec7017SPing-Ke Shih h2creg->band = band; 2647e3ec7017SPing-Ke Shih 2648e3ec7017SPing-Ke Shih ret = rtw89_fw_msg_reg(rtwdev, &h2c_info, &c2h_info); 2649e3ec7017SPing-Ke Shih if (ret) 2650e3ec7017SPing-Ke Shih return ret; 2651e3ec7017SPing-Ke Shih 2652e3ec7017SPing-Ke Shih if (c2h_info.id != RTW89_FWCMD_C2HREG_FUNC_TX_PAUSE_RPT) 2653e3ec7017SPing-Ke Shih return -EINVAL; 2654e3ec7017SPing-Ke Shih 2655e3ec7017SPing-Ke Shih return 0; 2656e3ec7017SPing-Ke Shih } 2657e3ec7017SPing-Ke Shih 2658e3ec7017SPing-Ke Shih static int rtw89_set_hw_sch_tx_en(struct rtw89_dev *rtwdev, u8 mac_idx, 2659e3ec7017SPing-Ke Shih u16 tx_en, u16 tx_en_mask) 2660e3ec7017SPing-Ke Shih { 2661e3ec7017SPing-Ke Shih u32 reg = rtw89_mac_reg_by_idx(R_AX_CTN_TXEN, mac_idx); 2662e3ec7017SPing-Ke Shih u16 val; 2663e3ec7017SPing-Ke Shih int ret; 2664e3ec7017SPing-Ke Shih 2665e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2666e3ec7017SPing-Ke Shih if (ret) 2667e3ec7017SPing-Ke Shih return ret; 2668e3ec7017SPing-Ke Shih 2669e3ec7017SPing-Ke Shih if (test_bit(RTW89_FLAG_FW_RDY, rtwdev->flags)) 2670e3ec7017SPing-Ke Shih return rtw89_hw_sch_tx_en_h2c(rtwdev, mac_idx, 2671e3ec7017SPing-Ke Shih tx_en, tx_en_mask); 2672e3ec7017SPing-Ke Shih 2673e3ec7017SPing-Ke Shih val = rtw89_read16(rtwdev, reg); 2674e3ec7017SPing-Ke Shih val = (val & ~tx_en_mask) | (tx_en & tx_en_mask); 2675e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, reg, val); 2676e3ec7017SPing-Ke Shih 2677e3ec7017SPing-Ke Shih return 0; 2678e3ec7017SPing-Ke Shih } 2679e3ec7017SPing-Ke Shih 2680de7ba639SPing-Ke Shih static int rtw89_set_hw_sch_tx_en_v1(struct rtw89_dev *rtwdev, u8 mac_idx, 2681de7ba639SPing-Ke Shih u32 tx_en, u32 tx_en_mask) 2682de7ba639SPing-Ke Shih { 2683de7ba639SPing-Ke Shih u32 reg = rtw89_mac_reg_by_idx(R_AX_CTN_DRV_TXEN, mac_idx); 2684de7ba639SPing-Ke Shih u32 val; 2685de7ba639SPing-Ke Shih int ret; 2686de7ba639SPing-Ke Shih 2687de7ba639SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2688de7ba639SPing-Ke Shih if (ret) 2689de7ba639SPing-Ke Shih return ret; 2690de7ba639SPing-Ke Shih 2691de7ba639SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 2692de7ba639SPing-Ke Shih val = (val & ~tx_en_mask) | (tx_en & tx_en_mask); 2693de7ba639SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2694de7ba639SPing-Ke Shih 2695de7ba639SPing-Ke Shih return 0; 2696de7ba639SPing-Ke Shih } 2697de7ba639SPing-Ke Shih 2698e3ec7017SPing-Ke Shih int rtw89_mac_stop_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx, 2699d780f926SPing-Ke Shih u32 *tx_en, enum rtw89_sch_tx_sel sel) 2700e3ec7017SPing-Ke Shih { 2701e3ec7017SPing-Ke Shih int ret; 2702e3ec7017SPing-Ke Shih 2703e3ec7017SPing-Ke Shih *tx_en = rtw89_read16(rtwdev, 2704e3ec7017SPing-Ke Shih rtw89_mac_reg_by_idx(R_AX_CTN_TXEN, mac_idx)); 2705e3ec7017SPing-Ke Shih 2706e3ec7017SPing-Ke Shih switch (sel) { 2707e3ec7017SPing-Ke Shih case RTW89_SCH_TX_SEL_ALL: 2708de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 0, 2709de7ba639SPing-Ke Shih B_AX_CTN_TXEN_ALL_MASK); 2710e3ec7017SPing-Ke Shih if (ret) 2711e3ec7017SPing-Ke Shih return ret; 2712e3ec7017SPing-Ke Shih break; 2713e3ec7017SPing-Ke Shih case RTW89_SCH_TX_SEL_HIQ: 2714e3ec7017SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 2715e3ec7017SPing-Ke Shih 0, B_AX_CTN_TXEN_HGQ); 2716e3ec7017SPing-Ke Shih if (ret) 2717e3ec7017SPing-Ke Shih return ret; 2718e3ec7017SPing-Ke Shih break; 2719e3ec7017SPing-Ke Shih case RTW89_SCH_TX_SEL_MG0: 2720e3ec7017SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 2721e3ec7017SPing-Ke Shih 0, B_AX_CTN_TXEN_MGQ); 2722e3ec7017SPing-Ke Shih if (ret) 2723e3ec7017SPing-Ke Shih return ret; 2724e3ec7017SPing-Ke Shih break; 2725e3ec7017SPing-Ke Shih case RTW89_SCH_TX_SEL_MACID: 2726de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, 0, 2727de7ba639SPing-Ke Shih B_AX_CTN_TXEN_ALL_MASK); 2728e3ec7017SPing-Ke Shih if (ret) 2729e3ec7017SPing-Ke Shih return ret; 2730e3ec7017SPing-Ke Shih break; 2731e3ec7017SPing-Ke Shih default: 2732e3ec7017SPing-Ke Shih return 0; 2733e3ec7017SPing-Ke Shih } 2734e3ec7017SPing-Ke Shih 2735e3ec7017SPing-Ke Shih return 0; 2736e3ec7017SPing-Ke Shih } 2737861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_stop_sch_tx); 2738e3ec7017SPing-Ke Shih 2739de7ba639SPing-Ke Shih int rtw89_mac_stop_sch_tx_v1(struct rtw89_dev *rtwdev, u8 mac_idx, 2740de7ba639SPing-Ke Shih u32 *tx_en, enum rtw89_sch_tx_sel sel) 2741de7ba639SPing-Ke Shih { 2742de7ba639SPing-Ke Shih int ret; 2743de7ba639SPing-Ke Shih 2744de7ba639SPing-Ke Shih *tx_en = rtw89_read32(rtwdev, 2745de7ba639SPing-Ke Shih rtw89_mac_reg_by_idx(R_AX_CTN_DRV_TXEN, mac_idx)); 2746de7ba639SPing-Ke Shih 2747de7ba639SPing-Ke Shih switch (sel) { 2748de7ba639SPing-Ke Shih case RTW89_SCH_TX_SEL_ALL: 2749de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 0, 2750de7ba639SPing-Ke Shih B_AX_CTN_TXEN_ALL_MASK_V1); 2751de7ba639SPing-Ke Shih if (ret) 2752de7ba639SPing-Ke Shih return ret; 2753de7ba639SPing-Ke Shih break; 2754de7ba639SPing-Ke Shih case RTW89_SCH_TX_SEL_HIQ: 2755de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 2756de7ba639SPing-Ke Shih 0, B_AX_CTN_TXEN_HGQ); 2757de7ba639SPing-Ke Shih if (ret) 2758de7ba639SPing-Ke Shih return ret; 2759de7ba639SPing-Ke Shih break; 2760de7ba639SPing-Ke Shih case RTW89_SCH_TX_SEL_MG0: 2761de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 2762de7ba639SPing-Ke Shih 0, B_AX_CTN_TXEN_MGQ); 2763de7ba639SPing-Ke Shih if (ret) 2764de7ba639SPing-Ke Shih return ret; 2765de7ba639SPing-Ke Shih break; 2766de7ba639SPing-Ke Shih case RTW89_SCH_TX_SEL_MACID: 2767de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, 0, 2768de7ba639SPing-Ke Shih B_AX_CTN_TXEN_ALL_MASK_V1); 2769de7ba639SPing-Ke Shih if (ret) 2770de7ba639SPing-Ke Shih return ret; 2771de7ba639SPing-Ke Shih break; 2772de7ba639SPing-Ke Shih default: 2773de7ba639SPing-Ke Shih return 0; 2774de7ba639SPing-Ke Shih } 2775de7ba639SPing-Ke Shih 2776de7ba639SPing-Ke Shih return 0; 2777de7ba639SPing-Ke Shih } 2778de7ba639SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_stop_sch_tx_v1); 2779de7ba639SPing-Ke Shih 2780d780f926SPing-Ke Shih int rtw89_mac_resume_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en) 2781e3ec7017SPing-Ke Shih { 2782e3ec7017SPing-Ke Shih int ret; 2783e3ec7017SPing-Ke Shih 2784de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en(rtwdev, mac_idx, tx_en, B_AX_CTN_TXEN_ALL_MASK); 2785e3ec7017SPing-Ke Shih if (ret) 2786e3ec7017SPing-Ke Shih return ret; 2787e3ec7017SPing-Ke Shih 2788e3ec7017SPing-Ke Shih return 0; 2789e3ec7017SPing-Ke Shih } 2790861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_resume_sch_tx); 2791e3ec7017SPing-Ke Shih 2792de7ba639SPing-Ke Shih int rtw89_mac_resume_sch_tx_v1(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en) 2793de7ba639SPing-Ke Shih { 2794de7ba639SPing-Ke Shih int ret; 2795de7ba639SPing-Ke Shih 2796de7ba639SPing-Ke Shih ret = rtw89_set_hw_sch_tx_en_v1(rtwdev, mac_idx, tx_en, 2797de7ba639SPing-Ke Shih B_AX_CTN_TXEN_ALL_MASK_V1); 2798de7ba639SPing-Ke Shih if (ret) 2799de7ba639SPing-Ke Shih return ret; 2800de7ba639SPing-Ke Shih 2801de7ba639SPing-Ke Shih return 0; 2802de7ba639SPing-Ke Shih } 2803de7ba639SPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_resume_sch_tx_v1); 2804de7ba639SPing-Ke Shih 28058a1f6c88SZong-Zhe Yang u16 rtw89_mac_dle_buf_req(struct rtw89_dev *rtwdev, u16 buf_len, bool wd) 2806e3ec7017SPing-Ke Shih { 2807e3ec7017SPing-Ke Shih u32 val, reg; 2808e3ec7017SPing-Ke Shih int ret; 2809e3ec7017SPing-Ke Shih 2810e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_BUF_REQ : R_AX_PL_BUF_REQ; 2811e3ec7017SPing-Ke Shih val = buf_len; 2812e3ec7017SPing-Ke Shih val |= B_AX_WD_BUF_REQ_EXEC; 2813e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2814e3ec7017SPing-Ke Shih 2815e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_BUF_STATUS : R_AX_PL_BUF_STATUS; 2816e3ec7017SPing-Ke Shih 2817e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, val, val & B_AX_WD_BUF_STAT_DONE, 2818e3ec7017SPing-Ke Shih 1, 2000, false, rtwdev, reg); 2819e3ec7017SPing-Ke Shih if (ret) 2820e3ec7017SPing-Ke Shih return 0xffff; 2821e3ec7017SPing-Ke Shih 2822e3ec7017SPing-Ke Shih return FIELD_GET(B_AX_WD_BUF_STAT_PKTID_MASK, val); 2823e3ec7017SPing-Ke Shih } 2824e3ec7017SPing-Ke Shih 28258a1f6c88SZong-Zhe Yang int rtw89_mac_set_cpuio(struct rtw89_dev *rtwdev, 28268a1f6c88SZong-Zhe Yang struct rtw89_cpuio_ctrl *ctrl_para, bool wd) 2827e3ec7017SPing-Ke Shih { 2828e3ec7017SPing-Ke Shih u32 val, cmd_type, reg; 2829e3ec7017SPing-Ke Shih int ret; 2830e3ec7017SPing-Ke Shih 2831e3ec7017SPing-Ke Shih cmd_type = ctrl_para->cmd_type; 2832e3ec7017SPing-Ke Shih 2833e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_CPUQ_OP_2 : R_AX_PL_CPUQ_OP_2; 2834e3ec7017SPing-Ke Shih val = 0; 2835e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->start_pktid, 2836e3ec7017SPing-Ke Shih B_AX_WD_CPUQ_OP_STRT_PKTID_MASK); 2837e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->end_pktid, 2838e3ec7017SPing-Ke Shih B_AX_WD_CPUQ_OP_END_PKTID_MASK); 2839e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2840e3ec7017SPing-Ke Shih 2841e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_CPUQ_OP_1 : R_AX_PL_CPUQ_OP_1; 2842e3ec7017SPing-Ke Shih val = 0; 2843e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->src_pid, 2844e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_SRC_PID_MASK); 2845e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->src_qid, 2846e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_SRC_QID_MASK); 2847e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->dst_pid, 2848e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_DST_PID_MASK); 2849e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->dst_qid, 2850e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_DST_QID_MASK); 2851e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2852e3ec7017SPing-Ke Shih 2853e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_CPUQ_OP_0 : R_AX_PL_CPUQ_OP_0; 2854e3ec7017SPing-Ke Shih val = 0; 2855e3ec7017SPing-Ke Shih val = u32_replace_bits(val, cmd_type, 2856e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_CMD_TYPE_MASK); 2857e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->macid, 2858e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_MACID_MASK); 2859e3ec7017SPing-Ke Shih val = u32_replace_bits(val, ctrl_para->pkt_num, 2860e3ec7017SPing-Ke Shih B_AX_CPUQ_OP_PKTNUM_MASK); 2861e3ec7017SPing-Ke Shih val |= B_AX_WD_CPUQ_OP_EXEC; 2862e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 2863e3ec7017SPing-Ke Shih 2864e3ec7017SPing-Ke Shih reg = wd ? R_AX_WD_CPUQ_OP_STATUS : R_AX_PL_CPUQ_OP_STATUS; 2865e3ec7017SPing-Ke Shih 2866e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read32, val, val & B_AX_WD_CPUQ_OP_STAT_DONE, 2867e3ec7017SPing-Ke Shih 1, 2000, false, rtwdev, reg); 2868e3ec7017SPing-Ke Shih if (ret) 2869e3ec7017SPing-Ke Shih return ret; 2870e3ec7017SPing-Ke Shih 2871e3ec7017SPing-Ke Shih if (cmd_type == CPUIO_OP_CMD_GET_1ST_PID || 2872e3ec7017SPing-Ke Shih cmd_type == CPUIO_OP_CMD_GET_NEXT_PID) 2873e3ec7017SPing-Ke Shih ctrl_para->pktid = FIELD_GET(B_AX_WD_CPUQ_OP_PKTID_MASK, val); 2874e3ec7017SPing-Ke Shih 2875e3ec7017SPing-Ke Shih return 0; 2876e3ec7017SPing-Ke Shih } 2877e3ec7017SPing-Ke Shih 2878e3ec7017SPing-Ke Shih static int dle_quota_change(struct rtw89_dev *rtwdev, enum rtw89_qta_mode mode) 2879e3ec7017SPing-Ke Shih { 2880e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *cfg; 2881e3ec7017SPing-Ke Shih struct rtw89_cpuio_ctrl ctrl_para = {0}; 2882e3ec7017SPing-Ke Shih u16 pkt_id; 2883e3ec7017SPing-Ke Shih int ret; 2884e3ec7017SPing-Ke Shih 2885e3ec7017SPing-Ke Shih cfg = get_dle_mem_cfg(rtwdev, mode); 2886e3ec7017SPing-Ke Shih if (!cfg) { 2887e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n"); 2888e3ec7017SPing-Ke Shih return -EINVAL; 2889e3ec7017SPing-Ke Shih } 2890e3ec7017SPing-Ke Shih 28915f8c35b9SPing-Ke Shih if (dle_used_size(cfg->wde_size, cfg->ple_size) != 28925f8c35b9SPing-Ke Shih dle_expected_used_size(rtwdev, mode)) { 2893e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]wd/dle mem cfg\n"); 2894e3ec7017SPing-Ke Shih return -EINVAL; 2895e3ec7017SPing-Ke Shih } 2896e3ec7017SPing-Ke Shih 2897e3ec7017SPing-Ke Shih dle_quota_cfg(rtwdev, cfg, INVALID_QT_WCPU); 2898e3ec7017SPing-Ke Shih 2899e3ec7017SPing-Ke Shih pkt_id = rtw89_mac_dle_buf_req(rtwdev, 0x20, true); 2900e3ec7017SPing-Ke Shih if (pkt_id == 0xffff) { 2901e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]WDE DLE buf req\n"); 2902e3ec7017SPing-Ke Shih return -ENOMEM; 2903e3ec7017SPing-Ke Shih } 2904e3ec7017SPing-Ke Shih 2905e3ec7017SPing-Ke Shih ctrl_para.cmd_type = CPUIO_OP_CMD_ENQ_TO_HEAD; 2906e3ec7017SPing-Ke Shih ctrl_para.start_pktid = pkt_id; 2907e3ec7017SPing-Ke Shih ctrl_para.end_pktid = pkt_id; 2908e3ec7017SPing-Ke Shih ctrl_para.pkt_num = 0; 2909e3ec7017SPing-Ke Shih ctrl_para.dst_pid = WDE_DLE_PORT_ID_WDRLS; 2910e3ec7017SPing-Ke Shih ctrl_para.dst_qid = WDE_DLE_QUEID_NO_REPORT; 2911e3ec7017SPing-Ke Shih ret = rtw89_mac_set_cpuio(rtwdev, &ctrl_para, true); 2912e3ec7017SPing-Ke Shih if (ret) { 2913e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]WDE DLE enqueue to head\n"); 2914e3ec7017SPing-Ke Shih return -EFAULT; 2915e3ec7017SPing-Ke Shih } 2916e3ec7017SPing-Ke Shih 2917e3ec7017SPing-Ke Shih pkt_id = rtw89_mac_dle_buf_req(rtwdev, 0x20, false); 2918e3ec7017SPing-Ke Shih if (pkt_id == 0xffff) { 2919e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]PLE DLE buf req\n"); 2920e3ec7017SPing-Ke Shih return -ENOMEM; 2921e3ec7017SPing-Ke Shih } 2922e3ec7017SPing-Ke Shih 2923e3ec7017SPing-Ke Shih ctrl_para.cmd_type = CPUIO_OP_CMD_ENQ_TO_HEAD; 2924e3ec7017SPing-Ke Shih ctrl_para.start_pktid = pkt_id; 2925e3ec7017SPing-Ke Shih ctrl_para.end_pktid = pkt_id; 2926e3ec7017SPing-Ke Shih ctrl_para.pkt_num = 0; 2927e3ec7017SPing-Ke Shih ctrl_para.dst_pid = PLE_DLE_PORT_ID_PLRLS; 2928e3ec7017SPing-Ke Shih ctrl_para.dst_qid = PLE_DLE_QUEID_NO_REPORT; 2929e3ec7017SPing-Ke Shih ret = rtw89_mac_set_cpuio(rtwdev, &ctrl_para, false); 2930e3ec7017SPing-Ke Shih if (ret) { 2931e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]PLE DLE enqueue to head\n"); 2932e3ec7017SPing-Ke Shih return -EFAULT; 2933e3ec7017SPing-Ke Shih } 2934e3ec7017SPing-Ke Shih 2935e3ec7017SPing-Ke Shih return 0; 2936e3ec7017SPing-Ke Shih } 2937e3ec7017SPing-Ke Shih 2938e3ec7017SPing-Ke Shih static int band_idle_ck_b(struct rtw89_dev *rtwdev, u8 mac_idx) 2939e3ec7017SPing-Ke Shih { 2940e3ec7017SPing-Ke Shih int ret; 2941e3ec7017SPing-Ke Shih u32 reg; 2942e3ec7017SPing-Ke Shih u8 val; 2943e3ec7017SPing-Ke Shih 2944e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 2945e3ec7017SPing-Ke Shih if (ret) 2946e3ec7017SPing-Ke Shih return ret; 2947e3ec7017SPing-Ke Shih 2948e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_PTCL_TX_CTN_SEL, mac_idx); 2949e3ec7017SPing-Ke Shih 2950e3ec7017SPing-Ke Shih ret = read_poll_timeout(rtw89_read8, val, 2951e3ec7017SPing-Ke Shih (val & B_AX_PTCL_TX_ON_STAT) == 0, 2952e3ec7017SPing-Ke Shih SW_CVR_DUR_US, 2953e3ec7017SPing-Ke Shih SW_CVR_DUR_US * PTCL_IDLE_POLL_CNT, 2954e3ec7017SPing-Ke Shih false, rtwdev, reg); 2955e3ec7017SPing-Ke Shih if (ret) 2956e3ec7017SPing-Ke Shih return ret; 2957e3ec7017SPing-Ke Shih 2958e3ec7017SPing-Ke Shih return 0; 2959e3ec7017SPing-Ke Shih } 2960e3ec7017SPing-Ke Shih 2961e3ec7017SPing-Ke Shih static int band1_enable(struct rtw89_dev *rtwdev) 2962e3ec7017SPing-Ke Shih { 2963e3ec7017SPing-Ke Shih int ret, i; 2964e3ec7017SPing-Ke Shih u32 sleep_bak[4] = {0}; 2965e3ec7017SPing-Ke Shih u32 pause_bak[4] = {0}; 2966d780f926SPing-Ke Shih u32 tx_en; 2967e3ec7017SPing-Ke Shih 2968de7ba639SPing-Ke Shih ret = rtw89_chip_stop_sch_tx(rtwdev, 0, &tx_en, RTW89_SCH_TX_SEL_ALL); 2969e3ec7017SPing-Ke Shih if (ret) { 2970e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]stop sch tx %d\n", ret); 2971e3ec7017SPing-Ke Shih return ret; 2972e3ec7017SPing-Ke Shih } 2973e3ec7017SPing-Ke Shih 2974e3ec7017SPing-Ke Shih for (i = 0; i < 4; i++) { 2975e3ec7017SPing-Ke Shih sleep_bak[i] = rtw89_read32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4); 2976e3ec7017SPing-Ke Shih pause_bak[i] = rtw89_read32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4); 2977e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4, U32_MAX); 2978e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4, U32_MAX); 2979e3ec7017SPing-Ke Shih } 2980e3ec7017SPing-Ke Shih 2981e3ec7017SPing-Ke Shih ret = band_idle_ck_b(rtwdev, 0); 2982e3ec7017SPing-Ke Shih if (ret) { 2983e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]tx idle poll %d\n", ret); 2984e3ec7017SPing-Ke Shih return ret; 2985e3ec7017SPing-Ke Shih } 2986e3ec7017SPing-Ke Shih 2987e3ec7017SPing-Ke Shih ret = dle_quota_change(rtwdev, rtwdev->mac.qta_mode); 2988e3ec7017SPing-Ke Shih if (ret) { 2989e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]DLE quota change %d\n", ret); 2990e3ec7017SPing-Ke Shih return ret; 2991e3ec7017SPing-Ke Shih } 2992e3ec7017SPing-Ke Shih 2993e3ec7017SPing-Ke Shih for (i = 0; i < 4; i++) { 2994e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_MACID_SLEEP_0 + i * 4, sleep_bak[i]); 2995e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_SS_MACID_PAUSE_0 + i * 4, pause_bak[i]); 2996e3ec7017SPing-Ke Shih } 2997e3ec7017SPing-Ke Shih 2998de7ba639SPing-Ke Shih ret = rtw89_chip_resume_sch_tx(rtwdev, 0, tx_en); 2999e3ec7017SPing-Ke Shih if (ret) { 3000e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC1 resume sch tx %d\n", ret); 3001e3ec7017SPing-Ke Shih return ret; 3002e3ec7017SPing-Ke Shih } 3003e3ec7017SPing-Ke Shih 3004e3ec7017SPing-Ke Shih ret = cmac_func_en(rtwdev, 1, true); 3005e3ec7017SPing-Ke Shih if (ret) { 3006e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC1 func en %d\n", ret); 3007e3ec7017SPing-Ke Shih return ret; 3008e3ec7017SPing-Ke Shih } 3009e3ec7017SPing-Ke Shih 3010e3ec7017SPing-Ke Shih ret = cmac_init(rtwdev, 1); 3011e3ec7017SPing-Ke Shih if (ret) { 3012e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC1 init %d\n", ret); 3013e3ec7017SPing-Ke Shih return ret; 3014e3ec7017SPing-Ke Shih } 3015e3ec7017SPing-Ke Shih 3016e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SYS_ISO_CTRL_EXTEND, 3017e3ec7017SPing-Ke Shih B_AX_R_SYM_FEN_WLBBFUN_1 | B_AX_R_SYM_FEN_WLBBGLB_1); 3018e3ec7017SPing-Ke Shih 3019e3ec7017SPing-Ke Shih return 0; 3020e3ec7017SPing-Ke Shih } 3021e3ec7017SPing-Ke Shih 3022eeadcd2aSChia-Yuan Li static void rtw89_wdrls_imr_enable(struct rtw89_dev *rtwdev) 3023eeadcd2aSChia-Yuan Li { 3024eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3025eeadcd2aSChia-Yuan Li 3026eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_WDRLS_ERR_IMR, B_AX_WDRLS_IMR_EN_CLR); 3027eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_WDRLS_ERR_IMR, imr->wdrls_imr_set); 3028eeadcd2aSChia-Yuan Li } 3029eeadcd2aSChia-Yuan Li 3030eeadcd2aSChia-Yuan Li static void rtw89_wsec_imr_enable(struct rtw89_dev *rtwdev) 3031eeadcd2aSChia-Yuan Li { 3032eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3033eeadcd2aSChia-Yuan Li 3034eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, imr->wsec_imr_reg, imr->wsec_imr_set); 3035eeadcd2aSChia-Yuan Li } 3036eeadcd2aSChia-Yuan Li 3037eeadcd2aSChia-Yuan Li static void rtw89_mpdu_trx_imr_enable(struct rtw89_dev *rtwdev) 3038eeadcd2aSChia-Yuan Li { 3039eeadcd2aSChia-Yuan Li enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 3040eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3041eeadcd2aSChia-Yuan Li 3042eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_MPDU_TX_ERR_IMR, 3043eeadcd2aSChia-Yuan Li B_AX_TX_GET_ERRPKTID_INT_EN | 3044eeadcd2aSChia-Yuan Li B_AX_TX_NXT_ERRPKTID_INT_EN | 3045eeadcd2aSChia-Yuan Li B_AX_TX_MPDU_SIZE_ZERO_INT_EN | 3046eeadcd2aSChia-Yuan Li B_AX_TX_OFFSET_ERR_INT_EN | 3047eeadcd2aSChia-Yuan Li B_AX_TX_HDR3_SIZE_ERR_INT_EN); 3048eeadcd2aSChia-Yuan Li if (chip_id == RTL8852C) 3049eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_MPDU_TX_ERR_IMR, 3050eeadcd2aSChia-Yuan Li B_AX_TX_ETH_TYPE_ERR_EN | 3051eeadcd2aSChia-Yuan Li B_AX_TX_LLC_PRE_ERR_EN | 3052eeadcd2aSChia-Yuan Li B_AX_TX_NW_TYPE_ERR_EN | 3053eeadcd2aSChia-Yuan Li B_AX_TX_KSRCH_ERR_EN); 3054eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_MPDU_TX_ERR_IMR, 3055eeadcd2aSChia-Yuan Li imr->mpdu_tx_imr_set); 3056eeadcd2aSChia-Yuan Li 3057eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_MPDU_RX_ERR_IMR, 3058eeadcd2aSChia-Yuan Li B_AX_GETPKTID_ERR_INT_EN | 3059eeadcd2aSChia-Yuan Li B_AX_MHDRLEN_ERR_INT_EN | 3060eeadcd2aSChia-Yuan Li B_AX_RPT_ERR_INT_EN); 3061eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_MPDU_RX_ERR_IMR, 3062eeadcd2aSChia-Yuan Li imr->mpdu_rx_imr_set); 3063eeadcd2aSChia-Yuan Li } 3064eeadcd2aSChia-Yuan Li 3065eeadcd2aSChia-Yuan Li static void rtw89_sta_sch_imr_enable(struct rtw89_dev *rtwdev) 3066eeadcd2aSChia-Yuan Li { 3067eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3068eeadcd2aSChia-Yuan Li 3069eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_STA_SCHEDULER_ERR_IMR, 3070eeadcd2aSChia-Yuan Li B_AX_SEARCH_HANG_TIMEOUT_INT_EN | 3071eeadcd2aSChia-Yuan Li B_AX_RPT_HANG_TIMEOUT_INT_EN | 3072eeadcd2aSChia-Yuan Li B_AX_PLE_B_PKTID_ERR_INT_EN); 3073eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_STA_SCHEDULER_ERR_IMR, 3074eeadcd2aSChia-Yuan Li imr->sta_sch_imr_set); 3075eeadcd2aSChia-Yuan Li } 3076eeadcd2aSChia-Yuan Li 3077eeadcd2aSChia-Yuan Li static void rtw89_txpktctl_imr_enable(struct rtw89_dev *rtwdev) 3078eeadcd2aSChia-Yuan Li { 3079eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3080eeadcd2aSChia-Yuan Li 3081eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, imr->txpktctl_imr_b0_reg, 3082eeadcd2aSChia-Yuan Li imr->txpktctl_imr_b0_clr); 3083eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, imr->txpktctl_imr_b0_reg, 3084eeadcd2aSChia-Yuan Li imr->txpktctl_imr_b0_set); 3085eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, imr->txpktctl_imr_b1_reg, 3086eeadcd2aSChia-Yuan Li imr->txpktctl_imr_b1_clr); 3087eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, imr->txpktctl_imr_b1_reg, 3088eeadcd2aSChia-Yuan Li imr->txpktctl_imr_b1_set); 3089eeadcd2aSChia-Yuan Li } 3090eeadcd2aSChia-Yuan Li 3091eeadcd2aSChia-Yuan Li static void rtw89_wde_imr_enable(struct rtw89_dev *rtwdev) 3092eeadcd2aSChia-Yuan Li { 3093eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3094eeadcd2aSChia-Yuan Li 3095eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_WDE_ERR_IMR, imr->wde_imr_clr); 3096eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_WDE_ERR_IMR, imr->wde_imr_set); 3097eeadcd2aSChia-Yuan Li } 3098eeadcd2aSChia-Yuan Li 3099eeadcd2aSChia-Yuan Li static void rtw89_ple_imr_enable(struct rtw89_dev *rtwdev) 3100eeadcd2aSChia-Yuan Li { 3101eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3102eeadcd2aSChia-Yuan Li 3103eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_PLE_ERR_IMR, imr->ple_imr_clr); 3104eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_PLE_ERR_IMR, imr->ple_imr_set); 3105eeadcd2aSChia-Yuan Li } 3106eeadcd2aSChia-Yuan Li 3107eeadcd2aSChia-Yuan Li static void rtw89_pktin_imr_enable(struct rtw89_dev *rtwdev) 3108eeadcd2aSChia-Yuan Li { 3109eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_PKTIN_ERR_IMR, 3110eeadcd2aSChia-Yuan Li B_AX_PKTIN_GETPKTID_ERR_INT_EN); 3111eeadcd2aSChia-Yuan Li } 3112eeadcd2aSChia-Yuan Li 3113eeadcd2aSChia-Yuan Li static void rtw89_dispatcher_imr_enable(struct rtw89_dev *rtwdev) 3114eeadcd2aSChia-Yuan Li { 3115eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3116eeadcd2aSChia-Yuan Li 3117eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR, 3118eeadcd2aSChia-Yuan Li imr->host_disp_imr_clr); 3119eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_HOST_DISPATCHER_ERR_IMR, 3120eeadcd2aSChia-Yuan Li imr->host_disp_imr_set); 3121eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR, 3122eeadcd2aSChia-Yuan Li imr->cpu_disp_imr_clr); 3123eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_CPU_DISPATCHER_ERR_IMR, 3124eeadcd2aSChia-Yuan Li imr->cpu_disp_imr_set); 3125eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR, 3126eeadcd2aSChia-Yuan Li imr->other_disp_imr_clr); 3127eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_OTHER_DISPATCHER_ERR_IMR, 3128eeadcd2aSChia-Yuan Li imr->other_disp_imr_set); 3129eeadcd2aSChia-Yuan Li } 3130eeadcd2aSChia-Yuan Li 3131eeadcd2aSChia-Yuan Li static void rtw89_cpuio_imr_enable(struct rtw89_dev *rtwdev) 3132eeadcd2aSChia-Yuan Li { 3133eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_CPUIO_ERR_IMR, B_AX_CPUIO_IMR_CLR); 3134eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_CPUIO_ERR_IMR, B_AX_CPUIO_IMR_SET); 3135eeadcd2aSChia-Yuan Li } 3136eeadcd2aSChia-Yuan Li 3137eeadcd2aSChia-Yuan Li static void rtw89_bbrpt_imr_enable(struct rtw89_dev *rtwdev) 3138eeadcd2aSChia-Yuan Li { 3139eeadcd2aSChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3140eeadcd2aSChia-Yuan Li 314175f1ed29SPing-Ke Shih rtw89_write32_set(rtwdev, imr->bbrpt_com_err_imr_reg, 3142eeadcd2aSChia-Yuan Li B_AX_BBRPT_COM_NULL_PLPKTID_ERR_INT_EN); 3143eeadcd2aSChia-Yuan Li rtw89_write32_clr(rtwdev, imr->bbrpt_chinfo_err_imr_reg, 3144eeadcd2aSChia-Yuan Li B_AX_BBRPT_CHINFO_IMR_CLR); 3145eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, imr->bbrpt_chinfo_err_imr_reg, 3146eeadcd2aSChia-Yuan Li imr->bbrpt_err_imr_set); 3147eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, imr->bbrpt_dfs_err_imr_reg, 3148eeadcd2aSChia-Yuan Li B_AX_BBRPT_DFS_TO_ERR_INT_EN); 3149eeadcd2aSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_LA_ERRFLAG, B_AX_LA_IMR_DATA_LOSS_ERR); 3150eeadcd2aSChia-Yuan Li } 3151eeadcd2aSChia-Yuan Li 3152d86369e9SChia-Yuan Li static void rtw89_scheduler_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3153d86369e9SChia-Yuan Li { 3154d86369e9SChia-Yuan Li u32 reg; 3155d86369e9SChia-Yuan Li 3156d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(R_AX_SCHEDULE_ERR_IMR, mac_idx); 3157d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, B_AX_SORT_NON_IDLE_ERR_INT_EN | 3158d86369e9SChia-Yuan Li B_AX_FSM_TIMEOUT_ERR_INT_EN); 3159d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, B_AX_FSM_TIMEOUT_ERR_INT_EN); 3160d86369e9SChia-Yuan Li } 3161d86369e9SChia-Yuan Li 3162d86369e9SChia-Yuan Li static void rtw89_ptcl_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3163d86369e9SChia-Yuan Li { 3164d86369e9SChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3165d86369e9SChia-Yuan Li u32 reg; 3166d86369e9SChia-Yuan Li 3167d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(R_AX_PTCL_IMR0, mac_idx); 3168d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->ptcl_imr_clr); 3169d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->ptcl_imr_set); 3170d86369e9SChia-Yuan Li } 3171d86369e9SChia-Yuan Li 3172d86369e9SChia-Yuan Li static void rtw89_cdma_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3173d86369e9SChia-Yuan Li { 3174d86369e9SChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3175d86369e9SChia-Yuan Li enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 3176d86369e9SChia-Yuan Li u32 reg; 3177d86369e9SChia-Yuan Li 3178d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(imr->cdma_imr_0_reg, mac_idx); 3179d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->cdma_imr_0_clr); 3180d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->cdma_imr_0_set); 3181d86369e9SChia-Yuan Li 3182d86369e9SChia-Yuan Li if (chip_id == RTL8852C) { 3183d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(imr->cdma_imr_1_reg, mac_idx); 3184d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->cdma_imr_1_clr); 3185d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->cdma_imr_1_set); 3186d86369e9SChia-Yuan Li } 3187d86369e9SChia-Yuan Li } 3188d86369e9SChia-Yuan Li 3189d86369e9SChia-Yuan Li static void rtw89_phy_intf_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3190d86369e9SChia-Yuan Li { 3191d86369e9SChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3192d86369e9SChia-Yuan Li u32 reg; 3193d86369e9SChia-Yuan Li 3194d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(imr->phy_intf_imr_reg, mac_idx); 3195d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->phy_intf_imr_clr); 3196d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->phy_intf_imr_set); 3197d86369e9SChia-Yuan Li } 3198d86369e9SChia-Yuan Li 3199d86369e9SChia-Yuan Li static void rtw89_rmac_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3200d86369e9SChia-Yuan Li { 3201d86369e9SChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3202d86369e9SChia-Yuan Li u32 reg; 3203d86369e9SChia-Yuan Li 3204d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(imr->rmac_imr_reg, mac_idx); 3205d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->rmac_imr_clr); 3206d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->rmac_imr_set); 3207d86369e9SChia-Yuan Li } 3208d86369e9SChia-Yuan Li 3209d86369e9SChia-Yuan Li static void rtw89_tmac_imr_enable(struct rtw89_dev *rtwdev, u8 mac_idx) 3210d86369e9SChia-Yuan Li { 3211d86369e9SChia-Yuan Li const struct rtw89_imr_info *imr = rtwdev->chip->imr_info; 3212d86369e9SChia-Yuan Li u32 reg; 3213d86369e9SChia-Yuan Li 3214d86369e9SChia-Yuan Li reg = rtw89_mac_reg_by_idx(imr->tmac_imr_reg, mac_idx); 3215d86369e9SChia-Yuan Li rtw89_write32_clr(rtwdev, reg, imr->tmac_imr_clr); 3216d86369e9SChia-Yuan Li rtw89_write32_set(rtwdev, reg, imr->tmac_imr_set); 3217d86369e9SChia-Yuan Li } 3218d86369e9SChia-Yuan Li 3219e3ec7017SPing-Ke Shih static int rtw89_mac_enable_imr(struct rtw89_dev *rtwdev, u8 mac_idx, 3220e3ec7017SPing-Ke Shih enum rtw89_mac_hwmod_sel sel) 3221e3ec7017SPing-Ke Shih { 3222e3ec7017SPing-Ke Shih int ret; 3223e3ec7017SPing-Ke Shih 3224e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, sel); 3225e3ec7017SPing-Ke Shih if (ret) { 3226e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "MAC%d mac_idx%d is not ready\n", 3227e3ec7017SPing-Ke Shih sel, mac_idx); 3228e3ec7017SPing-Ke Shih return ret; 3229e3ec7017SPing-Ke Shih } 3230e3ec7017SPing-Ke Shih 3231e3ec7017SPing-Ke Shih if (sel == RTW89_DMAC_SEL) { 3232eeadcd2aSChia-Yuan Li rtw89_wdrls_imr_enable(rtwdev); 3233eeadcd2aSChia-Yuan Li rtw89_wsec_imr_enable(rtwdev); 3234eeadcd2aSChia-Yuan Li rtw89_mpdu_trx_imr_enable(rtwdev); 3235eeadcd2aSChia-Yuan Li rtw89_sta_sch_imr_enable(rtwdev); 3236eeadcd2aSChia-Yuan Li rtw89_txpktctl_imr_enable(rtwdev); 3237eeadcd2aSChia-Yuan Li rtw89_wde_imr_enable(rtwdev); 3238eeadcd2aSChia-Yuan Li rtw89_ple_imr_enable(rtwdev); 3239eeadcd2aSChia-Yuan Li rtw89_pktin_imr_enable(rtwdev); 3240eeadcd2aSChia-Yuan Li rtw89_dispatcher_imr_enable(rtwdev); 3241eeadcd2aSChia-Yuan Li rtw89_cpuio_imr_enable(rtwdev); 3242eeadcd2aSChia-Yuan Li rtw89_bbrpt_imr_enable(rtwdev); 3243e3ec7017SPing-Ke Shih } else if (sel == RTW89_CMAC_SEL) { 3244d86369e9SChia-Yuan Li rtw89_scheduler_imr_enable(rtwdev, mac_idx); 3245d86369e9SChia-Yuan Li rtw89_ptcl_imr_enable(rtwdev, mac_idx); 3246d86369e9SChia-Yuan Li rtw89_cdma_imr_enable(rtwdev, mac_idx); 3247d86369e9SChia-Yuan Li rtw89_phy_intf_imr_enable(rtwdev, mac_idx); 3248d86369e9SChia-Yuan Li rtw89_rmac_imr_enable(rtwdev, mac_idx); 3249d86369e9SChia-Yuan Li rtw89_tmac_imr_enable(rtwdev, mac_idx); 3250e3ec7017SPing-Ke Shih } else { 3251e3ec7017SPing-Ke Shih return -EINVAL; 3252e3ec7017SPing-Ke Shih } 3253e3ec7017SPing-Ke Shih 3254e3ec7017SPing-Ke Shih return 0; 3255e3ec7017SPing-Ke Shih } 3256e3ec7017SPing-Ke Shih 32579f405b01SPing-Ke Shih static void rtw89_mac_err_imr_ctrl(struct rtw89_dev *rtwdev, bool en) 32589f405b01SPing-Ke Shih { 32599f405b01SPing-Ke Shih enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 32609f405b01SPing-Ke Shih 32619f405b01SPing-Ke Shih rtw89_write32(rtwdev, R_AX_DMAC_ERR_IMR, 32629f405b01SPing-Ke Shih en ? DMAC_ERR_IMR_EN : DMAC_ERR_IMR_DIS); 32639f405b01SPing-Ke Shih rtw89_write32(rtwdev, R_AX_CMAC_ERR_IMR, 32649f405b01SPing-Ke Shih en ? CMAC0_ERR_IMR_EN : CMAC0_ERR_IMR_DIS); 32659f405b01SPing-Ke Shih if (chip_id != RTL8852B && rtwdev->mac.dle_info.c1_rx_qta) 32669f405b01SPing-Ke Shih rtw89_write32(rtwdev, R_AX_CMAC_ERR_IMR_C1, 32679f405b01SPing-Ke Shih en ? CMAC1_ERR_IMR_EN : CMAC1_ERR_IMR_DIS); 32689f405b01SPing-Ke Shih } 32699f405b01SPing-Ke Shih 3270e3ec7017SPing-Ke Shih static int rtw89_mac_dbcc_enable(struct rtw89_dev *rtwdev, bool enable) 3271e3ec7017SPing-Ke Shih { 3272e3ec7017SPing-Ke Shih int ret = 0; 3273e3ec7017SPing-Ke Shih 3274e3ec7017SPing-Ke Shih if (enable) { 3275e3ec7017SPing-Ke Shih ret = band1_enable(rtwdev); 3276e3ec7017SPing-Ke Shih if (ret) { 3277e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] band1_enable %d\n", ret); 3278e3ec7017SPing-Ke Shih return ret; 3279e3ec7017SPing-Ke Shih } 3280e3ec7017SPing-Ke Shih 3281e3ec7017SPing-Ke Shih ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_1, RTW89_CMAC_SEL); 3282e3ec7017SPing-Ke Shih if (ret) { 3283e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] enable CMAC1 IMR %d\n", ret); 3284e3ec7017SPing-Ke Shih return ret; 3285e3ec7017SPing-Ke Shih } 3286e3ec7017SPing-Ke Shih } else { 3287e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] disable dbcc is not implemented not\n"); 3288e3ec7017SPing-Ke Shih return -EINVAL; 3289e3ec7017SPing-Ke Shih } 3290e3ec7017SPing-Ke Shih 3291e3ec7017SPing-Ke Shih return 0; 3292e3ec7017SPing-Ke Shih } 3293e3ec7017SPing-Ke Shih 3294e3ec7017SPing-Ke Shih static int set_host_rpr(struct rtw89_dev *rtwdev) 3295e3ec7017SPing-Ke Shih { 3296e3ec7017SPing-Ke Shih if (rtwdev->hci.type == RTW89_HCI_TYPE_PCIE) { 3297e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_WDRLS_CFG, 3298e3ec7017SPing-Ke Shih B_AX_WDRLS_MODE_MASK, RTW89_RPR_MODE_POH); 3299e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_RLSRPT0_CFG0, 3300e3ec7017SPing-Ke Shih B_AX_RLSRPT0_FLTR_MAP_MASK); 3301e3ec7017SPing-Ke Shih } else { 3302e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_WDRLS_CFG, 3303e3ec7017SPing-Ke Shih B_AX_WDRLS_MODE_MASK, RTW89_RPR_MODE_STF); 3304e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_RLSRPT0_CFG0, 3305e3ec7017SPing-Ke Shih B_AX_RLSRPT0_FLTR_MAP_MASK); 3306e3ec7017SPing-Ke Shih } 3307e3ec7017SPing-Ke Shih 3308e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_RLSRPT0_CFG1, B_AX_RLSRPT0_AGGNUM_MASK, 30); 3309e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_RLSRPT0_CFG1, B_AX_RLSRPT0_TO_MASK, 255); 3310e3ec7017SPing-Ke Shih 3311e3ec7017SPing-Ke Shih return 0; 3312e3ec7017SPing-Ke Shih } 3313e3ec7017SPing-Ke Shih 3314e3ec7017SPing-Ke Shih static int rtw89_mac_trx_init(struct rtw89_dev *rtwdev) 3315e3ec7017SPing-Ke Shih { 3316e3ec7017SPing-Ke Shih enum rtw89_qta_mode qta_mode = rtwdev->mac.qta_mode; 3317e3ec7017SPing-Ke Shih int ret; 3318e3ec7017SPing-Ke Shih 3319e3ec7017SPing-Ke Shih ret = dmac_init(rtwdev, 0); 3320e3ec7017SPing-Ke Shih if (ret) { 3321e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]DMAC init %d\n", ret); 3322e3ec7017SPing-Ke Shih return ret; 3323e3ec7017SPing-Ke Shih } 3324e3ec7017SPing-Ke Shih 3325e3ec7017SPing-Ke Shih ret = cmac_init(rtwdev, 0); 3326e3ec7017SPing-Ke Shih if (ret) { 3327e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]CMAC%d init %d\n", 0, ret); 3328e3ec7017SPing-Ke Shih return ret; 3329e3ec7017SPing-Ke Shih } 3330e3ec7017SPing-Ke Shih 3331e3ec7017SPing-Ke Shih if (is_qta_dbcc(rtwdev, qta_mode)) { 3332e3ec7017SPing-Ke Shih ret = rtw89_mac_dbcc_enable(rtwdev, true); 3333e3ec7017SPing-Ke Shih if (ret) { 3334e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]dbcc_enable init %d\n", ret); 3335e3ec7017SPing-Ke Shih return ret; 3336e3ec7017SPing-Ke Shih } 3337e3ec7017SPing-Ke Shih } 3338e3ec7017SPing-Ke Shih 3339e3ec7017SPing-Ke Shih ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_0, RTW89_DMAC_SEL); 3340e3ec7017SPing-Ke Shih if (ret) { 3341e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] enable DMAC IMR %d\n", ret); 3342e3ec7017SPing-Ke Shih return ret; 3343e3ec7017SPing-Ke Shih } 3344e3ec7017SPing-Ke Shih 3345e3ec7017SPing-Ke Shih ret = rtw89_mac_enable_imr(rtwdev, RTW89_MAC_0, RTW89_CMAC_SEL); 3346e3ec7017SPing-Ke Shih if (ret) { 3347e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] to enable CMAC0 IMR %d\n", ret); 3348e3ec7017SPing-Ke Shih return ret; 3349e3ec7017SPing-Ke Shih } 3350e3ec7017SPing-Ke Shih 33519f405b01SPing-Ke Shih rtw89_mac_err_imr_ctrl(rtwdev, true); 33529f405b01SPing-Ke Shih 3353e3ec7017SPing-Ke Shih ret = set_host_rpr(rtwdev); 3354e3ec7017SPing-Ke Shih if (ret) { 3355e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR] set host rpr %d\n", ret); 3356e3ec7017SPing-Ke Shih return ret; 3357e3ec7017SPing-Ke Shih } 3358e3ec7017SPing-Ke Shih 3359e3ec7017SPing-Ke Shih return 0; 3360e3ec7017SPing-Ke Shih } 3361e3ec7017SPing-Ke Shih 3362ec356ffbSChia-Yuan Li static void rtw89_disable_fw_watchdog(struct rtw89_dev *rtwdev) 3363ec356ffbSChia-Yuan Li { 3364ec356ffbSChia-Yuan Li u32 val32; 3365ec356ffbSChia-Yuan Li 3366ec356ffbSChia-Yuan Li rtw89_mac_mem_write(rtwdev, R_AX_WDT_CTRL, 3367ec356ffbSChia-Yuan Li WDT_CTRL_ALL_DIS, RTW89_MAC_MEM_CPU_LOCAL); 3368ec356ffbSChia-Yuan Li 3369ec356ffbSChia-Yuan Li val32 = rtw89_mac_mem_read(rtwdev, R_AX_WDT_STATUS, RTW89_MAC_MEM_CPU_LOCAL); 3370ec356ffbSChia-Yuan Li val32 |= B_AX_FS_WDT_INT; 3371ec356ffbSChia-Yuan Li val32 &= ~B_AX_FS_WDT_INT_MSK; 3372ec356ffbSChia-Yuan Li rtw89_mac_mem_write(rtwdev, R_AX_WDT_STATUS, val32, RTW89_MAC_MEM_CPU_LOCAL); 3373ec356ffbSChia-Yuan Li } 3374ec356ffbSChia-Yuan Li 33755f05bdb0SChih-Kang Chang void rtw89_mac_disable_cpu(struct rtw89_dev *rtwdev) 3376e3ec7017SPing-Ke Shih { 3377e3ec7017SPing-Ke Shih clear_bit(RTW89_FLAG_FW_RDY, rtwdev->flags); 3378e3ec7017SPing-Ke Shih 3379e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_WCPU_EN); 3380de78869dSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_WCPU_FW_CTRL, B_AX_WCPU_FWDL_EN | 3381de78869dSChia-Yuan Li B_AX_H2C_PATH_RDY | B_AX_FWDL_PATH_RDY); 3382e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_SYS_CLK_CTRL, B_AX_CPU_CLK_EN); 3383ec356ffbSChia-Yuan Li 3384ec356ffbSChia-Yuan Li rtw89_disable_fw_watchdog(rtwdev); 3385ec356ffbSChia-Yuan Li 3386de78869dSChia-Yuan Li rtw89_write32_clr(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_PLATFORM_EN); 3387de78869dSChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_PLATFORM_EN); 3388e3ec7017SPing-Ke Shih } 3389e3ec7017SPing-Ke Shih 33905f05bdb0SChih-Kang Chang int rtw89_mac_enable_cpu(struct rtw89_dev *rtwdev, u8 boot_reason, bool dlfw) 3391e3ec7017SPing-Ke Shih { 3392e3ec7017SPing-Ke Shih u32 val; 3393e3ec7017SPing-Ke Shih int ret; 3394e3ec7017SPing-Ke Shih 3395e3ec7017SPing-Ke Shih if (rtw89_read32(rtwdev, R_AX_PLATFORM_ENABLE) & B_AX_WCPU_EN) 3396e3ec7017SPing-Ke Shih return -EFAULT; 3397e3ec7017SPing-Ke Shih 3398e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_H2C_CTRL, 0); 3399e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_C2H_CTRL, 0); 3400a63ae673SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_H2C, 0); 3401a63ae673SPing-Ke Shih rtw89_write32(rtwdev, R_AX_HALT_C2H, 0); 3402e3ec7017SPing-Ke Shih 3403e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_SYS_CLK_CTRL, B_AX_CPU_CLK_EN); 3404e3ec7017SPing-Ke Shih 3405e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_WCPU_FW_CTRL); 3406e3ec7017SPing-Ke Shih val &= ~(B_AX_WCPU_FWDL_EN | B_AX_H2C_PATH_RDY | B_AX_FWDL_PATH_RDY); 3407e3ec7017SPing-Ke Shih val = u32_replace_bits(val, RTW89_FWDL_INITIAL_STATE, 3408e3ec7017SPing-Ke Shih B_AX_WCPU_FWDL_STS_MASK); 3409e3ec7017SPing-Ke Shih 3410e3ec7017SPing-Ke Shih if (dlfw) 3411e3ec7017SPing-Ke Shih val |= B_AX_WCPU_FWDL_EN; 3412e3ec7017SPing-Ke Shih 3413e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_WCPU_FW_CTRL, val); 3414e3ec7017SPing-Ke Shih rtw89_write16_mask(rtwdev, R_AX_BOOT_REASON, B_AX_BOOT_REASON_MASK, 3415e3ec7017SPing-Ke Shih boot_reason); 3416e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_WCPU_EN); 3417e3ec7017SPing-Ke Shih 3418e3ec7017SPing-Ke Shih if (!dlfw) { 3419e3ec7017SPing-Ke Shih mdelay(5); 3420e3ec7017SPing-Ke Shih 3421e3ec7017SPing-Ke Shih ret = rtw89_fw_check_rdy(rtwdev); 3422e3ec7017SPing-Ke Shih if (ret) 3423e3ec7017SPing-Ke Shih return ret; 3424e3ec7017SPing-Ke Shih } 3425e3ec7017SPing-Ke Shih 3426e3ec7017SPing-Ke Shih return 0; 3427e3ec7017SPing-Ke Shih } 3428e3ec7017SPing-Ke Shih 3429a7d82a7aSPing-Ke Shih static int rtw89_mac_dmac_pre_init(struct rtw89_dev *rtwdev) 3430e3ec7017SPing-Ke Shih { 3431a7d82a7aSPing-Ke Shih enum rtw89_core_chip_id chip_id = rtwdev->chip->chip_id; 3432e3ec7017SPing-Ke Shih u32 val; 3433e3ec7017SPing-Ke Shih int ret; 3434e3ec7017SPing-Ke Shih 3435a7d82a7aSPing-Ke Shih if (chip_id == RTL8852C) 3436a7d82a7aSPing-Ke Shih val = B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | B_AX_DISPATCHER_EN | 3437a7d82a7aSPing-Ke Shih B_AX_PKT_BUF_EN | B_AX_H_AXIDMA_EN; 3438a7d82a7aSPing-Ke Shih else 3439e3ec7017SPing-Ke Shih val = B_AX_MAC_FUNC_EN | B_AX_DMAC_FUNC_EN | B_AX_DISPATCHER_EN | 3440e3ec7017SPing-Ke Shih B_AX_PKT_BUF_EN; 3441e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_DMAC_FUNC_EN, val); 3442e3ec7017SPing-Ke Shih 3443e3ec7017SPing-Ke Shih val = B_AX_DISPATCHER_CLK_EN; 3444e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_DMAC_CLK_EN, val); 3445e3ec7017SPing-Ke Shih 3446a7d82a7aSPing-Ke Shih if (chip_id != RTL8852C) 3447a7d82a7aSPing-Ke Shih goto dle; 3448a7d82a7aSPing-Ke Shih 3449a7d82a7aSPing-Ke Shih val = rtw89_read32(rtwdev, R_AX_HAXI_INIT_CFG1); 3450a7d82a7aSPing-Ke Shih val &= ~(B_AX_DMA_MODE_MASK | B_AX_STOP_AXI_MST); 3451a7d82a7aSPing-Ke Shih val |= FIELD_PREP(B_AX_DMA_MODE_MASK, DMA_MOD_PCIE_1B) | 3452a7d82a7aSPing-Ke Shih B_AX_TXHCI_EN_V1 | B_AX_RXHCI_EN_V1; 3453a7d82a7aSPing-Ke Shih rtw89_write32(rtwdev, R_AX_HAXI_INIT_CFG1, val); 3454a7d82a7aSPing-Ke Shih 3455a7d82a7aSPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_HAXI_DMA_STOP1, 3456a7d82a7aSPing-Ke Shih B_AX_STOP_ACH0 | B_AX_STOP_ACH1 | B_AX_STOP_ACH3 | 3457a7d82a7aSPing-Ke Shih B_AX_STOP_ACH4 | B_AX_STOP_ACH5 | B_AX_STOP_ACH6 | 3458a7d82a7aSPing-Ke Shih B_AX_STOP_ACH7 | B_AX_STOP_CH8 | B_AX_STOP_CH9 | 3459a7d82a7aSPing-Ke Shih B_AX_STOP_CH12 | B_AX_STOP_ACH2); 3460a7d82a7aSPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_HAXI_DMA_STOP2, B_AX_STOP_CH10 | B_AX_STOP_CH11); 3461a7d82a7aSPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_PLATFORM_ENABLE, B_AX_AXIDMA_EN); 3462a7d82a7aSPing-Ke Shih 3463a7d82a7aSPing-Ke Shih dle: 3464e3ec7017SPing-Ke Shih ret = dle_init(rtwdev, RTW89_QTA_DLFW, rtwdev->mac.qta_mode); 3465e3ec7017SPing-Ke Shih if (ret) { 3466e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]DLE pre init %d\n", ret); 3467e3ec7017SPing-Ke Shih return ret; 3468e3ec7017SPing-Ke Shih } 3469e3ec7017SPing-Ke Shih 3470e3ec7017SPing-Ke Shih ret = hfc_init(rtwdev, true, false, true); 3471e3ec7017SPing-Ke Shih if (ret) { 3472e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[ERR]HCI FC pre init %d\n", ret); 3473e3ec7017SPing-Ke Shih return ret; 3474e3ec7017SPing-Ke Shih } 3475e3ec7017SPing-Ke Shih 3476e3ec7017SPing-Ke Shih return ret; 3477e3ec7017SPing-Ke Shih } 3478e3ec7017SPing-Ke Shih 347961ebeecbSPing-Ke Shih int rtw89_mac_enable_bb_rf(struct rtw89_dev *rtwdev) 3480e3ec7017SPing-Ke Shih { 3481e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_SYS_FUNC_EN, 3482e3ec7017SPing-Ke Shih B_AX_FEN_BBRSTB | B_AX_FEN_BB_GLB_RSTN); 3483e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, R_AX_WLRF_CTRL, 3484e3ec7017SPing-Ke Shih B_AX_WLRF1_CTRL_7 | B_AX_WLRF1_CTRL_1 | 3485e3ec7017SPing-Ke Shih B_AX_WLRF_CTRL_7 | B_AX_WLRF_CTRL_1); 3486e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_PHYREG_SET, PHYREG_SET_ALL_CYCLE); 348761ebeecbSPing-Ke Shih 348861ebeecbSPing-Ke Shih return 0; 3489e3ec7017SPing-Ke Shih } 349061ebeecbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_enable_bb_rf); 3491e3ec7017SPing-Ke Shih 349214b6e9f4SPing-Ke Shih int rtw89_mac_disable_bb_rf(struct rtw89_dev *rtwdev) 3493e3ec7017SPing-Ke Shih { 3494e3ec7017SPing-Ke Shih rtw89_write8_clr(rtwdev, R_AX_SYS_FUNC_EN, 3495e3ec7017SPing-Ke Shih B_AX_FEN_BBRSTB | B_AX_FEN_BB_GLB_RSTN); 3496e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, R_AX_WLRF_CTRL, 3497e3ec7017SPing-Ke Shih B_AX_WLRF1_CTRL_7 | B_AX_WLRF1_CTRL_1 | 3498e3ec7017SPing-Ke Shih B_AX_WLRF_CTRL_7 | B_AX_WLRF_CTRL_1); 3499e3ec7017SPing-Ke Shih rtw89_write8_clr(rtwdev, R_AX_PHYREG_SET, PHYREG_SET_ALL_CYCLE); 350014b6e9f4SPing-Ke Shih 350114b6e9f4SPing-Ke Shih return 0; 3502e3ec7017SPing-Ke Shih } 350361ebeecbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_disable_bb_rf); 3504e3ec7017SPing-Ke Shih 3505e3ec7017SPing-Ke Shih int rtw89_mac_partial_init(struct rtw89_dev *rtwdev) 3506e3ec7017SPing-Ke Shih { 3507e3ec7017SPing-Ke Shih int ret; 3508e3ec7017SPing-Ke Shih 3509e3ec7017SPing-Ke Shih ret = rtw89_mac_power_switch(rtwdev, true); 3510e3ec7017SPing-Ke Shih if (ret) { 3511e3ec7017SPing-Ke Shih rtw89_mac_power_switch(rtwdev, false); 3512e3ec7017SPing-Ke Shih ret = rtw89_mac_power_switch(rtwdev, true); 3513e3ec7017SPing-Ke Shih if (ret) 3514e3ec7017SPing-Ke Shih return ret; 3515e3ec7017SPing-Ke Shih } 3516e3ec7017SPing-Ke Shih 351752f12705SChin-Yen Lee rtw89_mac_ctrl_hci_dma_trx(rtwdev, true); 3518e3ec7017SPing-Ke Shih 3519a7d82a7aSPing-Ke Shih ret = rtw89_mac_dmac_pre_init(rtwdev); 3520a7d82a7aSPing-Ke Shih if (ret) 3521a7d82a7aSPing-Ke Shih return ret; 3522a7d82a7aSPing-Ke Shih 3523e3ec7017SPing-Ke Shih if (rtwdev->hci.ops->mac_pre_init) { 3524e3ec7017SPing-Ke Shih ret = rtwdev->hci.ops->mac_pre_init(rtwdev); 3525e3ec7017SPing-Ke Shih if (ret) 3526e3ec7017SPing-Ke Shih return ret; 3527e3ec7017SPing-Ke Shih } 3528e3ec7017SPing-Ke Shih 3529e3ec7017SPing-Ke Shih ret = rtw89_fw_download(rtwdev, RTW89_FW_NORMAL); 3530e3ec7017SPing-Ke Shih if (ret) 3531e3ec7017SPing-Ke Shih return ret; 3532e3ec7017SPing-Ke Shih 3533e3ec7017SPing-Ke Shih return 0; 3534e3ec7017SPing-Ke Shih } 3535e3ec7017SPing-Ke Shih 3536e3ec7017SPing-Ke Shih int rtw89_mac_init(struct rtw89_dev *rtwdev) 3537e3ec7017SPing-Ke Shih { 3538e3ec7017SPing-Ke Shih int ret; 3539e3ec7017SPing-Ke Shih 3540e3ec7017SPing-Ke Shih ret = rtw89_mac_partial_init(rtwdev); 3541e3ec7017SPing-Ke Shih if (ret) 3542e3ec7017SPing-Ke Shih goto fail; 3543e3ec7017SPing-Ke Shih 354461ebeecbSPing-Ke Shih ret = rtw89_chip_enable_bb_rf(rtwdev); 354561ebeecbSPing-Ke Shih if (ret) 354661ebeecbSPing-Ke Shih goto fail; 3547e3ec7017SPing-Ke Shih 3548e3ec7017SPing-Ke Shih ret = rtw89_mac_sys_init(rtwdev); 3549e3ec7017SPing-Ke Shih if (ret) 3550e3ec7017SPing-Ke Shih goto fail; 3551e3ec7017SPing-Ke Shih 3552e3ec7017SPing-Ke Shih ret = rtw89_mac_trx_init(rtwdev); 3553e3ec7017SPing-Ke Shih if (ret) 3554e3ec7017SPing-Ke Shih goto fail; 3555e3ec7017SPing-Ke Shih 3556e3ec7017SPing-Ke Shih if (rtwdev->hci.ops->mac_post_init) { 3557e3ec7017SPing-Ke Shih ret = rtwdev->hci.ops->mac_post_init(rtwdev); 3558e3ec7017SPing-Ke Shih if (ret) 3559e3ec7017SPing-Ke Shih goto fail; 3560e3ec7017SPing-Ke Shih } 3561e3ec7017SPing-Ke Shih 3562e3ec7017SPing-Ke Shih rtw89_fw_send_all_early_h2c(rtwdev); 3563e3ec7017SPing-Ke Shih rtw89_fw_h2c_set_ofld_cfg(rtwdev); 3564e3ec7017SPing-Ke Shih 3565e3ec7017SPing-Ke Shih return ret; 3566e3ec7017SPing-Ke Shih fail: 3567e3ec7017SPing-Ke Shih rtw89_mac_power_switch(rtwdev, false); 3568e3ec7017SPing-Ke Shih 3569e3ec7017SPing-Ke Shih return ret; 3570e3ec7017SPing-Ke Shih } 3571e3ec7017SPing-Ke Shih 3572e3ec7017SPing-Ke Shih static void rtw89_mac_dmac_tbl_init(struct rtw89_dev *rtwdev, u8 macid) 3573e3ec7017SPing-Ke Shih { 3574e3ec7017SPing-Ke Shih u8 i; 3575e3ec7017SPing-Ke Shih 3576e3ec7017SPing-Ke Shih for (i = 0; i < 4; i++) { 3577e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR, 3578e3ec7017SPing-Ke Shih DMAC_TBL_BASE_ADDR + (macid << 4) + (i << 2)); 3579e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY, 0); 3580e3ec7017SPing-Ke Shih } 3581e3ec7017SPing-Ke Shih } 3582e3ec7017SPing-Ke Shih 3583e3ec7017SPing-Ke Shih static void rtw89_mac_cmac_tbl_init(struct rtw89_dev *rtwdev, u8 macid) 3584e3ec7017SPing-Ke Shih { 3585e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_FILTER_MODEL_ADDR, 3586e3ec7017SPing-Ke Shih CMAC_TBL_BASE_ADDR + macid * CCTL_INFO_SIZE); 3587e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY, 0x4); 3588e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 4, 0x400A0004); 3589e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 8, 0); 3590e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 12, 0); 3591e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 16, 0); 3592e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 20, 0xE43000B); 3593e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 24, 0); 3594e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_INDIR_ACCESS_ENTRY + 28, 0xB8109); 3595e3ec7017SPing-Ke Shih } 3596e3ec7017SPing-Ke Shih 35971b73e77dSPing-Ke Shih int rtw89_mac_set_macid_pause(struct rtw89_dev *rtwdev, u8 macid, bool pause) 3598e3ec7017SPing-Ke Shih { 3599e3ec7017SPing-Ke Shih u8 sh = FIELD_GET(GENMASK(4, 0), macid); 3600e3ec7017SPing-Ke Shih u8 grp = macid >> 5; 3601e3ec7017SPing-Ke Shih int ret; 3602e3ec7017SPing-Ke Shih 3603ac3a9f18SPing-Ke Shih /* If this is called by change_interface() in the case of P2P, it could 3604ac3a9f18SPing-Ke Shih * be power-off, so ignore this operation. 3605ac3a9f18SPing-Ke Shih */ 3606ac3a9f18SPing-Ke Shih if (test_bit(RTW89_FLAG_CHANGING_INTERFACE, rtwdev->flags) && 3607ac3a9f18SPing-Ke Shih !test_bit(RTW89_FLAG_POWERON, rtwdev->flags)) 3608ac3a9f18SPing-Ke Shih return 0; 3609ac3a9f18SPing-Ke Shih 3610e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, RTW89_MAC_0, RTW89_CMAC_SEL); 3611e3ec7017SPing-Ke Shih if (ret) 3612e3ec7017SPing-Ke Shih return ret; 3613e3ec7017SPing-Ke Shih 3614e3ec7017SPing-Ke Shih rtw89_fw_h2c_macid_pause(rtwdev, sh, grp, pause); 3615e3ec7017SPing-Ke Shih 3616e3ec7017SPing-Ke Shih return 0; 3617e3ec7017SPing-Ke Shih } 3618e3ec7017SPing-Ke Shih 3619e3ec7017SPing-Ke Shih static const struct rtw89_port_reg rtw_port_base = { 3620e3ec7017SPing-Ke Shih .port_cfg = R_AX_PORT_CFG_P0, 3621e3ec7017SPing-Ke Shih .tbtt_prohib = R_AX_TBTT_PROHIB_P0, 3622e3ec7017SPing-Ke Shih .bcn_area = R_AX_BCN_AREA_P0, 3623e3ec7017SPing-Ke Shih .bcn_early = R_AX_BCNERLYINT_CFG_P0, 3624e3ec7017SPing-Ke Shih .tbtt_early = R_AX_TBTTERLYINT_CFG_P0, 3625e3ec7017SPing-Ke Shih .tbtt_agg = R_AX_TBTT_AGG_P0, 3626e3ec7017SPing-Ke Shih .bcn_space = R_AX_BCN_SPACE_CFG_P0, 3627e3ec7017SPing-Ke Shih .bcn_forcetx = R_AX_BCN_FORCETX_P0, 3628e3ec7017SPing-Ke Shih .bcn_err_cnt = R_AX_BCN_ERR_CNT_P0, 3629e3ec7017SPing-Ke Shih .bcn_err_flag = R_AX_BCN_ERR_FLAG_P0, 3630e3ec7017SPing-Ke Shih .dtim_ctrl = R_AX_DTIM_CTRL_P0, 3631e3ec7017SPing-Ke Shih .tbtt_shift = R_AX_TBTT_SHIFT_P0, 3632e3ec7017SPing-Ke Shih .bcn_cnt_tmr = R_AX_BCN_CNT_TMR_P0, 3633e3ec7017SPing-Ke Shih .tsftr_l = R_AX_TSFTR_LOW_P0, 3634e3ec7017SPing-Ke Shih .tsftr_h = R_AX_TSFTR_HIGH_P0 3635e3ec7017SPing-Ke Shih }; 3636e3ec7017SPing-Ke Shih 3637e3ec7017SPing-Ke Shih #define BCN_INTERVAL 100 3638e3ec7017SPing-Ke Shih #define BCN_ERLY_DEF 160 3639e3ec7017SPing-Ke Shih #define BCN_SETUP_DEF 2 3640e3ec7017SPing-Ke Shih #define BCN_HOLD_DEF 200 3641e3ec7017SPing-Ke Shih #define BCN_MASK_DEF 0 3642e3ec7017SPing-Ke Shih #define TBTT_ERLY_DEF 5 3643e3ec7017SPing-Ke Shih #define BCN_SET_UNIT 32 3644e3ec7017SPing-Ke Shih #define BCN_ERLY_SET_DLY (10 * 2) 3645e3ec7017SPing-Ke Shih 3646e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_func_sw(struct rtw89_dev *rtwdev, 3647e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3648e3ec7017SPing-Ke Shih { 3649e3ec7017SPing-Ke Shih struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif); 3650e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3651e3ec7017SPing-Ke Shih 3652e3ec7017SPing-Ke Shih if (!rtw89_read32_port_mask(rtwdev, rtwvif, p->port_cfg, B_AX_PORT_FUNC_EN)) 3653e3ec7017SPing-Ke Shih return; 3654e3ec7017SPing-Ke Shih 3655e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->tbtt_prohib, B_AX_TBTT_SETUP_MASK); 3656e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib, B_AX_TBTT_HOLD_MASK, 1); 3657e3ec7017SPing-Ke Shih rtw89_write16_port_clr(rtwdev, rtwvif, p->tbtt_early, B_AX_TBTTERLY_MASK); 3658e3ec7017SPing-Ke Shih rtw89_write16_port_clr(rtwdev, rtwvif, p->bcn_early, B_AX_BCNERLY_MASK); 3659e3ec7017SPing-Ke Shih 3660e3ec7017SPing-Ke Shih msleep(vif->bss_conf.beacon_int + 1); 3661e3ec7017SPing-Ke Shih 3662e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_PORT_FUNC_EN | 3663e3ec7017SPing-Ke Shih B_AX_BRK_SETUP); 3664e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TSFTR_RST); 3665e3ec7017SPing-Ke Shih rtw89_write32_port(rtwdev, rtwvif, p->bcn_cnt_tmr, 0); 3666e3ec7017SPing-Ke Shih } 3667e3ec7017SPing-Ke Shih 3668e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tx_rpt(struct rtw89_dev *rtwdev, 3669e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif, bool en) 3670e3ec7017SPing-Ke Shih { 3671e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3672e3ec7017SPing-Ke Shih 3673e3ec7017SPing-Ke Shih if (en) 3674e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TXBCN_RPT_EN); 3675e3ec7017SPing-Ke Shih else 3676e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_TXBCN_RPT_EN); 3677e3ec7017SPing-Ke Shih } 3678e3ec7017SPing-Ke Shih 3679e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_rpt(struct rtw89_dev *rtwdev, 3680e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif, bool en) 3681e3ec7017SPing-Ke Shih { 3682e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3683e3ec7017SPing-Ke Shih 3684e3ec7017SPing-Ke Shih if (en) 3685e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_RXBCN_RPT_EN); 3686e3ec7017SPing-Ke Shih else 3687e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_RXBCN_RPT_EN); 3688e3ec7017SPing-Ke Shih } 3689e3ec7017SPing-Ke Shih 3690e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_net_type(struct rtw89_dev *rtwdev, 3691e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3692e3ec7017SPing-Ke Shih { 3693e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3694e3ec7017SPing-Ke Shih 3695e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->port_cfg, B_AX_NET_TYPE_MASK, 3696e3ec7017SPing-Ke Shih rtwvif->net_type); 3697e3ec7017SPing-Ke Shih } 3698e3ec7017SPing-Ke Shih 3699e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_prct(struct rtw89_dev *rtwdev, 3700e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3701e3ec7017SPing-Ke Shih { 3702e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3703e3ec7017SPing-Ke Shih bool en = rtwvif->net_type != RTW89_NET_TYPE_NO_LINK; 3704e3ec7017SPing-Ke Shih u32 bits = B_AX_TBTT_PROHIB_EN | B_AX_BRK_SETUP; 3705e3ec7017SPing-Ke Shih 3706e3ec7017SPing-Ke Shih if (en) 3707e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, bits); 3708e3ec7017SPing-Ke Shih else 3709e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, bits); 3710e3ec7017SPing-Ke Shih } 3711e3ec7017SPing-Ke Shih 3712e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_sw(struct rtw89_dev *rtwdev, 3713e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3714e3ec7017SPing-Ke Shih { 3715e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3716e3ec7017SPing-Ke Shih bool en = rtwvif->net_type == RTW89_NET_TYPE_INFRA || 3717e3ec7017SPing-Ke Shih rtwvif->net_type == RTW89_NET_TYPE_AD_HOC; 3718e3ec7017SPing-Ke Shih u32 bit = B_AX_RX_BSSID_FIT_EN; 3719e3ec7017SPing-Ke Shih 3720e3ec7017SPing-Ke Shih if (en) 3721e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, bit); 3722e3ec7017SPing-Ke Shih else 3723e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, bit); 3724e3ec7017SPing-Ke Shih } 3725e3ec7017SPing-Ke Shih 3726e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_rx_sync(struct rtw89_dev *rtwdev, 3727e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3728e3ec7017SPing-Ke Shih { 3729e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3730e3ec7017SPing-Ke Shih bool en = rtwvif->net_type == RTW89_NET_TYPE_INFRA || 3731e3ec7017SPing-Ke Shih rtwvif->net_type == RTW89_NET_TYPE_AD_HOC; 3732e3ec7017SPing-Ke Shih 3733e3ec7017SPing-Ke Shih if (en) 3734e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_TSF_UDT_EN); 3735e3ec7017SPing-Ke Shih else 3736e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_TSF_UDT_EN); 3737e3ec7017SPing-Ke Shih } 3738e3ec7017SPing-Ke Shih 3739e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tx_sw(struct rtw89_dev *rtwdev, 3740e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3741e3ec7017SPing-Ke Shih { 3742e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3743e3ec7017SPing-Ke Shih bool en = rtwvif->net_type == RTW89_NET_TYPE_AP_MODE || 3744e3ec7017SPing-Ke Shih rtwvif->net_type == RTW89_NET_TYPE_AD_HOC; 3745e3ec7017SPing-Ke Shih 3746e3ec7017SPing-Ke Shih if (en) 3747e3ec7017SPing-Ke Shih rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, B_AX_BCNTX_EN); 3748e3ec7017SPing-Ke Shih else 3749e3ec7017SPing-Ke Shih rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, B_AX_BCNTX_EN); 3750e3ec7017SPing-Ke Shih } 3751e3ec7017SPing-Ke Shih 3752e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_intv(struct rtw89_dev *rtwdev, 3753e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3754e3ec7017SPing-Ke Shih { 3755e3ec7017SPing-Ke Shih struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif); 3756e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3757e3ec7017SPing-Ke Shih u16 bcn_int = vif->bss_conf.beacon_int ? vif->bss_conf.beacon_int : BCN_INTERVAL; 3758e3ec7017SPing-Ke Shih 3759e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_space, B_AX_BCN_SPACE_MASK, 3760e3ec7017SPing-Ke Shih bcn_int); 3761e3ec7017SPing-Ke Shih } 3762e3ec7017SPing-Ke Shih 3763283c3d88SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_win(struct rtw89_dev *rtwdev, 3764283c3d88SPing-Ke Shih struct rtw89_vif *rtwvif) 3765283c3d88SPing-Ke Shih { 3766283c3d88SPing-Ke Shih static const u32 hiq_win_addr[RTW89_PORT_NUM] = { 3767283c3d88SPing-Ke Shih R_AX_P0MB_HGQ_WINDOW_CFG_0, R_AX_PORT_HGQ_WINDOW_CFG, 3768283c3d88SPing-Ke Shih R_AX_PORT_HGQ_WINDOW_CFG + 1, R_AX_PORT_HGQ_WINDOW_CFG + 2, 3769283c3d88SPing-Ke Shih R_AX_PORT_HGQ_WINDOW_CFG + 3, 3770283c3d88SPing-Ke Shih }; 3771283c3d88SPing-Ke Shih u8 win = rtwvif->net_type == RTW89_NET_TYPE_AP_MODE ? 16 : 0; 3772283c3d88SPing-Ke Shih u8 port = rtwvif->port; 3773283c3d88SPing-Ke Shih u32 reg; 3774283c3d88SPing-Ke Shih 3775283c3d88SPing-Ke Shih reg = rtw89_mac_reg_by_idx(hiq_win_addr[port], rtwvif->mac_idx); 3776283c3d88SPing-Ke Shih rtw89_write8(rtwdev, reg, win); 3777283c3d88SPing-Ke Shih } 3778283c3d88SPing-Ke Shih 3779283c3d88SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_dtim(struct rtw89_dev *rtwdev, 3780283c3d88SPing-Ke Shih struct rtw89_vif *rtwvif) 3781283c3d88SPing-Ke Shih { 3782283c3d88SPing-Ke Shih struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif); 3783283c3d88SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3784283c3d88SPing-Ke Shih u32 addr; 3785283c3d88SPing-Ke Shih 3786283c3d88SPing-Ke Shih addr = rtw89_mac_reg_by_idx(R_AX_MD_TSFT_STMP_CTL, rtwvif->mac_idx); 3787283c3d88SPing-Ke Shih rtw89_write8_set(rtwdev, addr, B_AX_UPD_HGQMD | B_AX_UPD_TIMIE); 3788283c3d88SPing-Ke Shih 3789283c3d88SPing-Ke Shih rtw89_write16_port_mask(rtwdev, rtwvif, p->dtim_ctrl, B_AX_DTIM_NUM_MASK, 3790283c3d88SPing-Ke Shih vif->bss_conf.dtim_period); 3791283c3d88SPing-Ke Shih } 3792283c3d88SPing-Ke Shih 3793e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_setup_time(struct rtw89_dev *rtwdev, 3794e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3795e3ec7017SPing-Ke Shih { 3796e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3797e3ec7017SPing-Ke Shih 3798e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib, 3799e3ec7017SPing-Ke Shih B_AX_TBTT_SETUP_MASK, BCN_SETUP_DEF); 3800e3ec7017SPing-Ke Shih } 3801e3ec7017SPing-Ke Shih 3802e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_hold_time(struct rtw89_dev *rtwdev, 3803e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3804e3ec7017SPing-Ke Shih { 3805e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3806e3ec7017SPing-Ke Shih 3807e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->tbtt_prohib, 3808e3ec7017SPing-Ke Shih B_AX_TBTT_HOLD_MASK, BCN_HOLD_DEF); 3809e3ec7017SPing-Ke Shih } 3810e3ec7017SPing-Ke Shih 3811e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_mask_area(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 3816e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_area, 3817e3ec7017SPing-Ke Shih B_AX_BCN_MSK_AREA_MASK, BCN_MASK_DEF); 3818e3ec7017SPing-Ke Shih } 3819e3ec7017SPing-Ke Shih 3820e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_tbtt_early(struct rtw89_dev *rtwdev, 3821e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3822e3ec7017SPing-Ke Shih { 3823e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3824e3ec7017SPing-Ke Shih 3825e3ec7017SPing-Ke Shih rtw89_write16_port_mask(rtwdev, rtwvif, p->tbtt_early, 3826e3ec7017SPing-Ke Shih B_AX_TBTTERLY_MASK, TBTT_ERLY_DEF); 3827e3ec7017SPing-Ke Shih } 3828e3ec7017SPing-Ke Shih 3829e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bss_color(struct rtw89_dev *rtwdev, 3830e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3831e3ec7017SPing-Ke Shih { 3832e3ec7017SPing-Ke Shih struct ieee80211_vif *vif = rtwvif_to_vif(rtwvif); 3833e3ec7017SPing-Ke Shih static const u32 masks[RTW89_PORT_NUM] = { 3834e3ec7017SPing-Ke Shih B_AX_BSS_COLOB_AX_PORT_0_MASK, B_AX_BSS_COLOB_AX_PORT_1_MASK, 3835e3ec7017SPing-Ke Shih B_AX_BSS_COLOB_AX_PORT_2_MASK, B_AX_BSS_COLOB_AX_PORT_3_MASK, 3836e3ec7017SPing-Ke Shih B_AX_BSS_COLOB_AX_PORT_4_MASK, 3837e3ec7017SPing-Ke Shih }; 3838e3ec7017SPing-Ke Shih u8 port = rtwvif->port; 3839e3ec7017SPing-Ke Shih u32 reg_base; 3840e3ec7017SPing-Ke Shih u32 reg; 3841e3ec7017SPing-Ke Shih u8 bss_color; 3842e3ec7017SPing-Ke Shih 3843e3ec7017SPing-Ke Shih bss_color = vif->bss_conf.he_bss_color.color; 3844e3ec7017SPing-Ke Shih reg_base = port >= 4 ? R_AX_PTCL_BSS_COLOR_1 : R_AX_PTCL_BSS_COLOR_0; 3845e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(reg_base, rtwvif->mac_idx); 3846e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, masks[port], bss_color); 3847e3ec7017SPing-Ke Shih } 3848e3ec7017SPing-Ke Shih 3849e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_mbssid(struct rtw89_dev *rtwdev, 3850e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3851e3ec7017SPing-Ke Shih { 3852e3ec7017SPing-Ke Shih u8 port = rtwvif->port; 3853e3ec7017SPing-Ke Shih u32 reg; 3854e3ec7017SPing-Ke Shih 3855e3ec7017SPing-Ke Shih if (rtwvif->net_type == RTW89_NET_TYPE_AP_MODE) 3856e3ec7017SPing-Ke Shih return; 3857e3ec7017SPing-Ke Shih 3858e3ec7017SPing-Ke Shih if (port == 0) { 3859e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_MBSSID_CTRL, rtwvif->mac_idx); 3860e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, reg, B_AX_P0MB_ALL_MASK); 3861e3ec7017SPing-Ke Shih } 3862e3ec7017SPing-Ke Shih } 3863e3ec7017SPing-Ke Shih 3864e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_hiq_drop(struct rtw89_dev *rtwdev, 3865e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3866e3ec7017SPing-Ke Shih { 3867e3ec7017SPing-Ke Shih u8 port = rtwvif->port; 3868e3ec7017SPing-Ke Shih u32 reg; 3869e3ec7017SPing-Ke Shih u32 val; 3870e3ec7017SPing-Ke Shih 3871e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_MBSSID_DROP_0, rtwvif->mac_idx); 3872e3ec7017SPing-Ke Shih val = rtw89_read32(rtwdev, reg); 3873e3ec7017SPing-Ke Shih val &= ~FIELD_PREP(B_AX_PORT_DROP_4_0_MASK, BIT(port)); 3874e3ec7017SPing-Ke Shih if (port == 0) 3875e3ec7017SPing-Ke Shih val &= ~BIT(0); 3876e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val); 3877e3ec7017SPing-Ke Shih } 3878e3ec7017SPing-Ke Shih 3879e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_func_en(struct rtw89_dev *rtwdev, 3880d592b9f7SPo-Hao Huang struct rtw89_vif *rtwvif, bool enable) 3881e3ec7017SPing-Ke Shih { 3882e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3883e3ec7017SPing-Ke Shih 3884d592b9f7SPo-Hao Huang if (enable) 3885d592b9f7SPo-Hao Huang rtw89_write32_port_set(rtwdev, rtwvif, p->port_cfg, 3886d592b9f7SPo-Hao Huang B_AX_PORT_FUNC_EN); 3887d592b9f7SPo-Hao Huang else 3888d592b9f7SPo-Hao Huang rtw89_write32_port_clr(rtwdev, rtwvif, p->port_cfg, 3889d592b9f7SPo-Hao Huang B_AX_PORT_FUNC_EN); 3890e3ec7017SPing-Ke Shih } 3891e3ec7017SPing-Ke Shih 3892e3ec7017SPing-Ke Shih static void rtw89_mac_port_cfg_bcn_early(struct rtw89_dev *rtwdev, 3893e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif) 3894e3ec7017SPing-Ke Shih { 3895e3ec7017SPing-Ke Shih const struct rtw89_port_reg *p = &rtw_port_base; 3896e3ec7017SPing-Ke Shih 3897e3ec7017SPing-Ke Shih rtw89_write32_port_mask(rtwdev, rtwvif, p->bcn_early, B_AX_BCNERLY_MASK, 3898e3ec7017SPing-Ke Shih BCN_ERLY_DEF); 3899e3ec7017SPing-Ke Shih } 3900e3ec7017SPing-Ke Shih 3901704052f5SChia-Yuan Li static void rtw89_mac_port_cfg_tbtt_shift(struct rtw89_dev *rtwdev, 3902704052f5SChia-Yuan Li struct rtw89_vif *rtwvif) 3903704052f5SChia-Yuan Li { 3904704052f5SChia-Yuan Li const struct rtw89_port_reg *p = &rtw_port_base; 3905704052f5SChia-Yuan Li u16 val; 3906704052f5SChia-Yuan Li 3907704052f5SChia-Yuan Li if (rtwdev->chip->chip_id != RTL8852C) 3908704052f5SChia-Yuan Li return; 3909704052f5SChia-Yuan Li 3910704052f5SChia-Yuan Li if (rtwvif->wifi_role != RTW89_WIFI_ROLE_P2P_CLIENT && 3911704052f5SChia-Yuan Li rtwvif->wifi_role != RTW89_WIFI_ROLE_STATION) 3912704052f5SChia-Yuan Li return; 3913704052f5SChia-Yuan Li 3914704052f5SChia-Yuan Li val = FIELD_PREP(B_AX_TBTT_SHIFT_OFST_MAG, 1) | 3915704052f5SChia-Yuan Li B_AX_TBTT_SHIFT_OFST_SIGN; 3916704052f5SChia-Yuan Li 3917704052f5SChia-Yuan Li rtw89_write16_port_mask(rtwdev, rtwvif, p->tbtt_shift, 3918704052f5SChia-Yuan Li B_AX_TBTT_SHIFT_OFST_MASK, val); 3919704052f5SChia-Yuan Li } 3920704052f5SChia-Yuan Li 3921fb2b8cecSPo-Hao Huang static void rtw89_mac_port_tsf_sync(struct rtw89_dev *rtwdev, 3922fb2b8cecSPo-Hao Huang struct rtw89_vif *rtwvif, 3923fb2b8cecSPo-Hao Huang struct rtw89_vif *rtwvif_src, u8 offset, 3924fb2b8cecSPo-Hao Huang int *n_offset) 3925fb2b8cecSPo-Hao Huang { 3926fb2b8cecSPo-Hao Huang u32 val, reg; 3927fb2b8cecSPo-Hao Huang 3928fb2b8cecSPo-Hao Huang if (rtwvif->net_type != RTW89_NET_TYPE_AP_MODE || rtwvif == rtwvif_src) 3929fb2b8cecSPo-Hao Huang return; 3930fb2b8cecSPo-Hao Huang 3931fb2b8cecSPo-Hao Huang /* adjust offset randomly to avoid beacon conflict */ 3932fb2b8cecSPo-Hao Huang offset = offset - offset / 4 + get_random_u32() % (offset / 2); 3933fb2b8cecSPo-Hao Huang val = RTW89_PORT_OFFSET_MS_TO_32US((*n_offset)++, offset); 3934fb2b8cecSPo-Hao Huang reg = rtw89_mac_reg_by_idx(R_AX_PORT0_TSF_SYNC + rtwvif->port * 4, 3935fb2b8cecSPo-Hao Huang rtwvif->mac_idx); 3936fb2b8cecSPo-Hao Huang 3937fb2b8cecSPo-Hao Huang rtw89_write32_mask(rtwdev, reg, B_AX_SYNC_PORT_SRC, rtwvif_src->port); 3938fb2b8cecSPo-Hao Huang rtw89_write32_mask(rtwdev, reg, B_AX_SYNC_PORT_OFFSET_VAL, val); 3939fb2b8cecSPo-Hao Huang rtw89_write32_set(rtwdev, reg, B_AX_SYNC_NOW); 3940fb2b8cecSPo-Hao Huang } 3941fb2b8cecSPo-Hao Huang 3942fb2b8cecSPo-Hao Huang static void rtw89_mac_port_tsf_resync_all(struct rtw89_dev *rtwdev) 3943fb2b8cecSPo-Hao Huang { 3944fb2b8cecSPo-Hao Huang struct rtw89_vif *src = NULL, *tmp; 3945fb2b8cecSPo-Hao Huang u8 offset = 100, vif_aps = 0; 3946fb2b8cecSPo-Hao Huang int n_offset = 1; 3947fb2b8cecSPo-Hao Huang 3948fb2b8cecSPo-Hao Huang rtw89_for_each_rtwvif(rtwdev, tmp) { 3949fb2b8cecSPo-Hao Huang if (!src || tmp->net_type == RTW89_NET_TYPE_INFRA) 3950fb2b8cecSPo-Hao Huang src = tmp; 3951fb2b8cecSPo-Hao Huang if (tmp->net_type == RTW89_NET_TYPE_AP_MODE) 3952fb2b8cecSPo-Hao Huang vif_aps++; 3953fb2b8cecSPo-Hao Huang } 3954fb2b8cecSPo-Hao Huang 3955fb2b8cecSPo-Hao Huang if (vif_aps == 0) 3956fb2b8cecSPo-Hao Huang return; 3957fb2b8cecSPo-Hao Huang 3958fb2b8cecSPo-Hao Huang offset /= (vif_aps + 1); 3959fb2b8cecSPo-Hao Huang 3960fb2b8cecSPo-Hao Huang rtw89_for_each_rtwvif(rtwdev, tmp) 3961fb2b8cecSPo-Hao Huang rtw89_mac_port_tsf_sync(rtwdev, tmp, src, offset, &n_offset); 3962fb2b8cecSPo-Hao Huang } 3963fb2b8cecSPo-Hao Huang 3964e3ec7017SPing-Ke Shih int rtw89_mac_vif_init(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 3965e3ec7017SPing-Ke Shih { 3966e3ec7017SPing-Ke Shih int ret; 3967e3ec7017SPing-Ke Shih 3968e3ec7017SPing-Ke Shih ret = rtw89_mac_port_update(rtwdev, rtwvif); 3969e3ec7017SPing-Ke Shih if (ret) 3970e3ec7017SPing-Ke Shih return ret; 3971e3ec7017SPing-Ke Shih 3972e3ec7017SPing-Ke Shih rtw89_mac_dmac_tbl_init(rtwdev, rtwvif->mac_id); 3973e3ec7017SPing-Ke Shih rtw89_mac_cmac_tbl_init(rtwdev, rtwvif->mac_id); 3974e3ec7017SPing-Ke Shih 39751b73e77dSPing-Ke Shih ret = rtw89_mac_set_macid_pause(rtwdev, rtwvif->mac_id, false); 3976e3ec7017SPing-Ke Shih if (ret) 3977e3ec7017SPing-Ke Shih return ret; 3978e3ec7017SPing-Ke Shih 3979ff66964aSPing-Ke Shih ret = rtw89_fw_h2c_role_maintain(rtwdev, rtwvif, NULL, RTW89_ROLE_CREATE); 3980e3ec7017SPing-Ke Shih if (ret) 3981e3ec7017SPing-Ke Shih return ret; 3982e3ec7017SPing-Ke Shih 3983a0e78d5cSPo-Hao Huang ret = rtw89_fw_h2c_join_info(rtwdev, rtwvif, NULL, true); 3984a0e78d5cSPo-Hao Huang if (ret) 3985a0e78d5cSPo-Hao Huang return ret; 3986a0e78d5cSPo-Hao Huang 3987e3ec7017SPing-Ke Shih ret = rtw89_cam_init(rtwdev, rtwvif); 3988e3ec7017SPing-Ke Shih if (ret) 3989e3ec7017SPing-Ke Shih return ret; 3990e3ec7017SPing-Ke Shih 399140822e07SPing-Ke Shih ret = rtw89_fw_h2c_cam(rtwdev, rtwvif, NULL, NULL); 3992e3ec7017SPing-Ke Shih if (ret) 3993e3ec7017SPing-Ke Shih return ret; 3994e3ec7017SPing-Ke Shih 3995742c470bSPing-Ke Shih ret = rtw89_fw_h2c_default_cmac_tbl(rtwdev, rtwvif); 3996e3ec7017SPing-Ke Shih if (ret) 3997e3ec7017SPing-Ke Shih return ret; 3998e3ec7017SPing-Ke Shih 3999e3ec7017SPing-Ke Shih return 0; 4000e3ec7017SPing-Ke Shih } 4001e3ec7017SPing-Ke Shih 4002e3ec7017SPing-Ke Shih int rtw89_mac_vif_deinit(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 4003e3ec7017SPing-Ke Shih { 4004e3ec7017SPing-Ke Shih int ret; 4005e3ec7017SPing-Ke Shih 4006ff66964aSPing-Ke Shih ret = rtw89_fw_h2c_role_maintain(rtwdev, rtwvif, NULL, RTW89_ROLE_REMOVE); 4007e3ec7017SPing-Ke Shih if (ret) 4008e3ec7017SPing-Ke Shih return ret; 4009e3ec7017SPing-Ke Shih 4010e3ec7017SPing-Ke Shih rtw89_cam_deinit(rtwdev, rtwvif); 4011e3ec7017SPing-Ke Shih 401240822e07SPing-Ke Shih ret = rtw89_fw_h2c_cam(rtwdev, rtwvif, NULL, NULL); 4013e3ec7017SPing-Ke Shih if (ret) 4014e3ec7017SPing-Ke Shih return ret; 4015e3ec7017SPing-Ke Shih 4016e3ec7017SPing-Ke Shih return 0; 4017e3ec7017SPing-Ke Shih } 4018e3ec7017SPing-Ke Shih 4019e3ec7017SPing-Ke Shih int rtw89_mac_port_update(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 4020e3ec7017SPing-Ke Shih { 4021e3ec7017SPing-Ke Shih u8 port = rtwvif->port; 4022e3ec7017SPing-Ke Shih 4023e3ec7017SPing-Ke Shih if (port >= RTW89_PORT_NUM) 4024e3ec7017SPing-Ke Shih return -EINVAL; 4025e3ec7017SPing-Ke Shih 4026e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_func_sw(rtwdev, rtwvif); 4027e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_tx_rpt(rtwdev, rtwvif, false); 4028e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_rx_rpt(rtwdev, rtwvif, false); 4029e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_net_type(rtwdev, rtwvif); 4030e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_prct(rtwdev, rtwvif); 4031e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_rx_sw(rtwdev, rtwvif); 4032e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_rx_sync(rtwdev, rtwvif); 4033e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_tx_sw(rtwdev, rtwvif); 4034e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_intv(rtwdev, rtwvif); 4035283c3d88SPing-Ke Shih rtw89_mac_port_cfg_hiq_win(rtwdev, rtwvif); 4036283c3d88SPing-Ke Shih rtw89_mac_port_cfg_hiq_dtim(rtwdev, rtwvif); 4037283c3d88SPing-Ke Shih rtw89_mac_port_cfg_hiq_drop(rtwdev, rtwvif); 4038e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_setup_time(rtwdev, rtwvif); 4039e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_hold_time(rtwdev, rtwvif); 4040e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_mask_area(rtwdev, rtwvif); 4041e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_tbtt_early(rtwdev, rtwvif); 4042704052f5SChia-Yuan Li rtw89_mac_port_cfg_tbtt_shift(rtwdev, rtwvif); 4043e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bss_color(rtwdev, rtwvif); 4044e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_mbssid(rtwdev, rtwvif); 4045d592b9f7SPo-Hao Huang rtw89_mac_port_cfg_func_en(rtwdev, rtwvif, true); 4046fb2b8cecSPo-Hao Huang rtw89_mac_port_tsf_resync_all(rtwdev); 4047e3ec7017SPing-Ke Shih fsleep(BCN_ERLY_SET_DLY); 4048e3ec7017SPing-Ke Shih rtw89_mac_port_cfg_bcn_early(rtwdev, rtwvif); 4049e3ec7017SPing-Ke Shih 4050e3ec7017SPing-Ke Shih return 0; 4051e3ec7017SPing-Ke Shih } 4052e3ec7017SPing-Ke Shih 40538d540f9dSKuan-Chung Chen static void rtw89_mac_check_he_obss_narrow_bw_ru_iter(struct wiphy *wiphy, 40548d540f9dSKuan-Chung Chen struct cfg80211_bss *bss, 40558d540f9dSKuan-Chung Chen void *data) 40568d540f9dSKuan-Chung Chen { 40578d540f9dSKuan-Chung Chen const struct cfg80211_bss_ies *ies; 40588d540f9dSKuan-Chung Chen const struct element *elem; 40598d540f9dSKuan-Chung Chen bool *tolerated = data; 40608d540f9dSKuan-Chung Chen 40618d540f9dSKuan-Chung Chen rcu_read_lock(); 40628d540f9dSKuan-Chung Chen ies = rcu_dereference(bss->ies); 40638d540f9dSKuan-Chung Chen elem = cfg80211_find_elem(WLAN_EID_EXT_CAPABILITY, ies->data, 40648d540f9dSKuan-Chung Chen ies->len); 40658d540f9dSKuan-Chung Chen 40668d540f9dSKuan-Chung Chen if (!elem || elem->datalen < 10 || 40678d540f9dSKuan-Chung Chen !(elem->data[10] & WLAN_EXT_CAPA10_OBSS_NARROW_BW_RU_TOLERANCE_SUPPORT)) 40688d540f9dSKuan-Chung Chen *tolerated = false; 40698d540f9dSKuan-Chung Chen rcu_read_unlock(); 40708d540f9dSKuan-Chung Chen } 40718d540f9dSKuan-Chung Chen 40728d540f9dSKuan-Chung Chen void rtw89_mac_set_he_obss_narrow_bw_ru(struct rtw89_dev *rtwdev, 40738d540f9dSKuan-Chung Chen struct ieee80211_vif *vif) 40748d540f9dSKuan-Chung Chen { 40758d540f9dSKuan-Chung Chen struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 40768d540f9dSKuan-Chung Chen struct ieee80211_hw *hw = rtwdev->hw; 40778d540f9dSKuan-Chung Chen bool tolerated = true; 40788d540f9dSKuan-Chung Chen u32 reg; 40798d540f9dSKuan-Chung Chen 40808d540f9dSKuan-Chung Chen if (!vif->bss_conf.he_support || vif->type != NL80211_IFTYPE_STATION) 40818d540f9dSKuan-Chung Chen return; 40828d540f9dSKuan-Chung Chen 40838d540f9dSKuan-Chung Chen if (!(vif->bss_conf.chandef.chan->flags & IEEE80211_CHAN_RADAR)) 40848d540f9dSKuan-Chung Chen return; 40858d540f9dSKuan-Chung Chen 40868d540f9dSKuan-Chung Chen cfg80211_bss_iter(hw->wiphy, &vif->bss_conf.chandef, 40878d540f9dSKuan-Chung Chen rtw89_mac_check_he_obss_narrow_bw_ru_iter, 40888d540f9dSKuan-Chung Chen &tolerated); 40898d540f9dSKuan-Chung Chen 40908d540f9dSKuan-Chung Chen reg = rtw89_mac_reg_by_idx(R_AX_RXTRIG_TEST_USER_2, rtwvif->mac_idx); 40918d540f9dSKuan-Chung Chen if (tolerated) 40928d540f9dSKuan-Chung Chen rtw89_write32_clr(rtwdev, reg, B_AX_RXTRIG_RU26_DIS); 40938d540f9dSKuan-Chung Chen else 40948d540f9dSKuan-Chung Chen rtw89_write32_set(rtwdev, reg, B_AX_RXTRIG_RU26_DIS); 40958d540f9dSKuan-Chung Chen } 40968d540f9dSKuan-Chung Chen 4097d592b9f7SPo-Hao Huang void rtw89_mac_stop_ap(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 4098d592b9f7SPo-Hao Huang { 4099d592b9f7SPo-Hao Huang rtw89_mac_port_cfg_func_en(rtwdev, rtwvif, false); 4100d592b9f7SPo-Hao Huang } 4101d592b9f7SPo-Hao Huang 4102e3ec7017SPing-Ke Shih int rtw89_mac_add_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 4103e3ec7017SPing-Ke Shih { 4104e3ec7017SPing-Ke Shih int ret; 4105e3ec7017SPing-Ke Shih 4106e3ec7017SPing-Ke Shih rtwvif->mac_id = rtw89_core_acquire_bit_map(rtwdev->mac_id_map, 4107e3ec7017SPing-Ke Shih RTW89_MAX_MAC_ID_NUM); 4108e3ec7017SPing-Ke Shih if (rtwvif->mac_id == RTW89_MAX_MAC_ID_NUM) 4109e3ec7017SPing-Ke Shih return -ENOSPC; 4110e3ec7017SPing-Ke Shih 4111e3ec7017SPing-Ke Shih ret = rtw89_mac_vif_init(rtwdev, rtwvif); 4112e3ec7017SPing-Ke Shih if (ret) 4113e3ec7017SPing-Ke Shih goto release_mac_id; 4114e3ec7017SPing-Ke Shih 4115e3ec7017SPing-Ke Shih return 0; 4116e3ec7017SPing-Ke Shih 4117e3ec7017SPing-Ke Shih release_mac_id: 4118e3ec7017SPing-Ke Shih rtw89_core_release_bit_map(rtwdev->mac_id_map, rtwvif->mac_id); 4119e3ec7017SPing-Ke Shih 4120e3ec7017SPing-Ke Shih return ret; 4121e3ec7017SPing-Ke Shih } 4122e3ec7017SPing-Ke Shih 4123e3ec7017SPing-Ke Shih int rtw89_mac_remove_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 4124e3ec7017SPing-Ke Shih { 4125e3ec7017SPing-Ke Shih int ret; 4126e3ec7017SPing-Ke Shih 4127e3ec7017SPing-Ke Shih ret = rtw89_mac_vif_deinit(rtwdev, rtwvif); 4128e3ec7017SPing-Ke Shih rtw89_core_release_bit_map(rtwdev->mac_id_map, rtwvif->mac_id); 4129e3ec7017SPing-Ke Shih 4130e3ec7017SPing-Ke Shih return ret; 4131e3ec7017SPing-Ke Shih } 4132e3ec7017SPing-Ke Shih 4133e3ec7017SPing-Ke Shih static void 4134e3ec7017SPing-Ke Shih rtw89_mac_c2h_macid_pause(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4135e3ec7017SPing-Ke Shih { 4136e3ec7017SPing-Ke Shih } 4137e3ec7017SPing-Ke Shih 413889590777SPo Hao Huang static bool rtw89_is_op_chan(struct rtw89_dev *rtwdev, u8 band, u8 channel) 413989590777SPo Hao Huang { 414089590777SPo Hao Huang struct rtw89_hw_scan_info *scan_info = &rtwdev->scan_info; 414189590777SPo Hao Huang 414289590777SPo Hao Huang return band == scan_info->op_band && channel == scan_info->op_pri_ch; 414389590777SPo Hao Huang } 414489590777SPo Hao Huang 414589590777SPo Hao Huang static void 414689590777SPo Hao Huang rtw89_mac_c2h_scanofld_rsp(struct rtw89_dev *rtwdev, struct sk_buff *c2h, 414789590777SPo Hao Huang u32 len) 414889590777SPo Hao Huang { 414989590777SPo Hao Huang struct ieee80211_vif *vif = rtwdev->scan_info.scanning_vif; 4150bd1056d4SPo-Hao Huang struct rtw89_vif *rtwvif = vif_to_rtwvif_safe(vif); 4151cbb145b9SZong-Zhe Yang struct rtw89_chan new; 41523a1e7cb1SPo-Hao Huang u8 reason, status, tx_fail, band, actual_period; 4153bd1056d4SPo-Hao Huang u32 last_chan = rtwdev->scan_info.last_chan_idx; 415489590777SPo Hao Huang u16 chan; 4155bd1056d4SPo-Hao Huang int ret; 415689590777SPo Hao Huang 415789590777SPo Hao Huang tx_fail = RTW89_GET_MAC_C2H_SCANOFLD_TX_FAIL(c2h->data); 415889590777SPo Hao Huang status = RTW89_GET_MAC_C2H_SCANOFLD_STATUS(c2h->data); 415989590777SPo Hao Huang chan = RTW89_GET_MAC_C2H_SCANOFLD_PRI_CH(c2h->data); 416089590777SPo Hao Huang reason = RTW89_GET_MAC_C2H_SCANOFLD_RSP(c2h->data); 416189590777SPo Hao Huang band = RTW89_GET_MAC_C2H_SCANOFLD_BAND(c2h->data); 41623a1e7cb1SPo-Hao Huang actual_period = RTW89_GET_MAC_C2H_ACTUAL_PERIOD(c2h->data); 416389590777SPo Hao Huang 416489590777SPo Hao Huang if (!(rtwdev->chip->support_bands & BIT(NL80211_BAND_6GHZ))) 416589590777SPo Hao Huang band = chan > 14 ? RTW89_BAND_5G : RTW89_BAND_2G; 416689590777SPo Hao Huang 416789590777SPo Hao Huang rtw89_debug(rtwdev, RTW89_DBG_HW_SCAN, 41683a1e7cb1SPo-Hao Huang "band: %d, chan: %d, reason: %d, status: %d, tx_fail: %d, actual: %d\n", 41693a1e7cb1SPo-Hao Huang band, chan, reason, status, tx_fail, actual_period); 417089590777SPo Hao Huang 417189590777SPo Hao Huang switch (reason) { 417289590777SPo Hao Huang case RTW89_SCAN_LEAVE_CH_NOTIFY: 417389590777SPo Hao Huang if (rtw89_is_op_chan(rtwdev, band, chan)) 417489590777SPo Hao Huang ieee80211_stop_queues(rtwdev->hw); 417589590777SPo Hao Huang return; 417689590777SPo Hao Huang case RTW89_SCAN_END_SCAN_NOTIFY: 4177bd1056d4SPo-Hao Huang if (rtwvif && rtwvif->scan_req && 4178bd1056d4SPo-Hao Huang last_chan < rtwvif->scan_req->n_channels) { 4179bd1056d4SPo-Hao Huang ret = rtw89_hw_scan_offload(rtwdev, vif, true); 4180bd1056d4SPo-Hao Huang if (ret) { 4181bd1056d4SPo-Hao Huang rtw89_hw_scan_abort(rtwdev, vif); 4182bd1056d4SPo-Hao Huang rtw89_warn(rtwdev, "HW scan failed: %d\n", ret); 4183bd1056d4SPo-Hao Huang } 4184bd1056d4SPo-Hao Huang } else { 418589590777SPo Hao Huang rtw89_hw_scan_complete(rtwdev, vif, false); 4186bd1056d4SPo-Hao Huang } 418789590777SPo Hao Huang break; 418889590777SPo Hao Huang case RTW89_SCAN_ENTER_CH_NOTIFY: 4189bb8152b3SZong-Zhe Yang rtw89_chan_create(&new, chan, chan, band, RTW89_CHANNEL_WIDTH_20); 4190cbb145b9SZong-Zhe Yang rtw89_assign_entity_chan(rtwdev, RTW89_SUB_ENTITY_0, &new); 419128000f7bSPo Hao Huang if (rtw89_is_op_chan(rtwdev, band, chan)) { 419228000f7bSPo Hao Huang rtw89_store_op_chan(rtwdev, false); 419389590777SPo Hao Huang ieee80211_wake_queues(rtwdev->hw); 419428000f7bSPo Hao Huang } 419589590777SPo Hao Huang break; 419689590777SPo Hao Huang default: 419789590777SPo Hao Huang return; 419889590777SPo Hao Huang } 419989590777SPo Hao Huang } 420089590777SPo Hao Huang 4201e3ec7017SPing-Ke Shih static void 4202e3ec7017SPing-Ke Shih rtw89_mac_c2h_rec_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4203e3ec7017SPing-Ke Shih { 4204e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_FW, 4205e3ec7017SPing-Ke Shih "C2H rev ack recv, cat: %d, class: %d, func: %d, seq : %d\n", 4206e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_REV_ACK_CAT(c2h->data), 4207e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_REV_ACK_CLASS(c2h->data), 4208e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_REV_ACK_FUNC(c2h->data), 4209e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_REV_ACK_H2C_SEQ(c2h->data)); 4210e3ec7017SPing-Ke Shih } 4211e3ec7017SPing-Ke Shih 4212e3ec7017SPing-Ke Shih static void 4213e3ec7017SPing-Ke Shih rtw89_mac_c2h_done_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4214e3ec7017SPing-Ke Shih { 4215e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_FW, 4216e3ec7017SPing-Ke Shih "C2H done ack recv, cat: %d, class: %d, func: %d, ret: %d, seq : %d\n", 4217e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_DONE_ACK_CAT(c2h->data), 4218e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_DONE_ACK_CLASS(c2h->data), 4219e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_DONE_ACK_FUNC(c2h->data), 4220e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_DONE_ACK_H2C_RETURN(c2h->data), 4221e3ec7017SPing-Ke Shih RTW89_GET_MAC_C2H_DONE_ACK_H2C_SEQ(c2h->data)); 4222e3ec7017SPing-Ke Shih } 4223e3ec7017SPing-Ke Shih 4224e3ec7017SPing-Ke Shih static void 4225e3ec7017SPing-Ke Shih rtw89_mac_c2h_log(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4226e3ec7017SPing-Ke Shih { 4227e3ec7017SPing-Ke Shih rtw89_info(rtwdev, "%*s", RTW89_GET_C2H_LOG_LEN(len), 4228e3ec7017SPing-Ke Shih RTW89_GET_C2H_LOG_SRT_PRT(c2h->data)); 4229e3ec7017SPing-Ke Shih } 4230e3ec7017SPing-Ke Shih 4231fccca934SPing-Ke Shih static void 4232fccca934SPing-Ke Shih rtw89_mac_c2h_bcn_cnt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4233fccca934SPing-Ke Shih { 4234fccca934SPing-Ke Shih } 4235fccca934SPing-Ke Shih 42362b8219e9SPo Hao Huang static void 42372b8219e9SPo Hao Huang rtw89_mac_c2h_pkt_ofld_rsp(struct rtw89_dev *rtwdev, struct sk_buff *c2h, 42382b8219e9SPo Hao Huang u32 len) 42392b8219e9SPo Hao Huang { 42402b8219e9SPo Hao Huang } 42412b8219e9SPo Hao Huang 4242f4a43c3bSDian-Syuan Yang static void 4243f4a43c3bSDian-Syuan Yang rtw89_mac_c2h_tsf32_toggle_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, 4244f4a43c3bSDian-Syuan Yang u32 len) 4245f4a43c3bSDian-Syuan Yang { 4246f4a43c3bSDian-Syuan Yang } 4247f4a43c3bSDian-Syuan Yang 4248ef9dff4cSZong-Zhe Yang static void 4249ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_rcv_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4250ef9dff4cSZong-Zhe Yang { 4251ef9dff4cSZong-Zhe Yang u8 group = RTW89_GET_MAC_C2H_MCC_RCV_ACK_GROUP(c2h->data); 4252ef9dff4cSZong-Zhe Yang u8 func = RTW89_GET_MAC_C2H_MCC_RCV_ACK_H2C_FUNC(c2h->data); 4253ef9dff4cSZong-Zhe Yang 4254ef9dff4cSZong-Zhe Yang switch (func) { 4255ef9dff4cSZong-Zhe Yang case H2C_FUNC_ADD_MCC: 4256ef9dff4cSZong-Zhe Yang case H2C_FUNC_START_MCC: 4257ef9dff4cSZong-Zhe Yang case H2C_FUNC_STOP_MCC: 4258ef9dff4cSZong-Zhe Yang case H2C_FUNC_DEL_MCC_GROUP: 4259ef9dff4cSZong-Zhe Yang case H2C_FUNC_RESET_MCC_GROUP: 4260ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_REQ_TSF: 4261ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_MACID_BITMAP: 4262ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_SYNC: 4263ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_SET_DURATION: 4264ef9dff4cSZong-Zhe Yang break; 4265ef9dff4cSZong-Zhe Yang default: 4266ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4267ef9dff4cSZong-Zhe Yang "invalid MCC C2H RCV ACK: func %d\n", func); 4268ef9dff4cSZong-Zhe Yang return; 4269ef9dff4cSZong-Zhe Yang } 4270ef9dff4cSZong-Zhe Yang 4271ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4272ef9dff4cSZong-Zhe Yang "MCC C2H RCV ACK: group %d, func %d\n", group, func); 4273ef9dff4cSZong-Zhe Yang } 4274ef9dff4cSZong-Zhe Yang 4275ef9dff4cSZong-Zhe Yang static void 4276ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_req_ack(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4277ef9dff4cSZong-Zhe Yang { 4278ef9dff4cSZong-Zhe Yang u8 group = RTW89_GET_MAC_C2H_MCC_REQ_ACK_GROUP(c2h->data); 4279ef9dff4cSZong-Zhe Yang u8 func = RTW89_GET_MAC_C2H_MCC_REQ_ACK_H2C_FUNC(c2h->data); 4280ef9dff4cSZong-Zhe Yang u8 retcode = RTW89_GET_MAC_C2H_MCC_REQ_ACK_H2C_RETURN(c2h->data); 4281ef9dff4cSZong-Zhe Yang struct rtw89_completion_data data = {}; 4282ef9dff4cSZong-Zhe Yang unsigned int cond; 4283ef9dff4cSZong-Zhe Yang bool next = false; 4284ef9dff4cSZong-Zhe Yang 4285ef9dff4cSZong-Zhe Yang switch (func) { 4286ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_REQ_TSF: 4287ef9dff4cSZong-Zhe Yang next = true; 4288ef9dff4cSZong-Zhe Yang break; 4289ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_MACID_BITMAP: 4290ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_SYNC: 4291ef9dff4cSZong-Zhe Yang case H2C_FUNC_MCC_SET_DURATION: 4292ef9dff4cSZong-Zhe Yang break; 4293ef9dff4cSZong-Zhe Yang case H2C_FUNC_ADD_MCC: 4294ef9dff4cSZong-Zhe Yang case H2C_FUNC_START_MCC: 4295ef9dff4cSZong-Zhe Yang case H2C_FUNC_STOP_MCC: 4296ef9dff4cSZong-Zhe Yang case H2C_FUNC_DEL_MCC_GROUP: 4297ef9dff4cSZong-Zhe Yang case H2C_FUNC_RESET_MCC_GROUP: 4298ef9dff4cSZong-Zhe Yang default: 4299ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4300ef9dff4cSZong-Zhe Yang "invalid MCC C2H REQ ACK: func %d\n", func); 4301ef9dff4cSZong-Zhe Yang return; 4302ef9dff4cSZong-Zhe Yang } 4303ef9dff4cSZong-Zhe Yang 4304ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4305ef9dff4cSZong-Zhe Yang "MCC C2H REQ ACK: group %d, func %d, return code %d\n", 4306ef9dff4cSZong-Zhe Yang group, func, retcode); 4307ef9dff4cSZong-Zhe Yang 4308ef9dff4cSZong-Zhe Yang if (!retcode && next) 4309ef9dff4cSZong-Zhe Yang return; 4310ef9dff4cSZong-Zhe Yang 4311ef9dff4cSZong-Zhe Yang data.err = !!retcode; 4312ef9dff4cSZong-Zhe Yang cond = RTW89_MCC_WAIT_COND(group, func); 4313ef9dff4cSZong-Zhe Yang rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data); 4314ef9dff4cSZong-Zhe Yang } 4315ef9dff4cSZong-Zhe Yang 4316ef9dff4cSZong-Zhe Yang static void 4317ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_tsf_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4318ef9dff4cSZong-Zhe Yang { 4319ef9dff4cSZong-Zhe Yang u8 group = RTW89_GET_MAC_C2H_MCC_TSF_RPT_GROUP(c2h->data); 4320ef9dff4cSZong-Zhe Yang struct rtw89_completion_data data = {}; 4321ef9dff4cSZong-Zhe Yang struct rtw89_mac_mcc_tsf_rpt *rpt; 4322ef9dff4cSZong-Zhe Yang unsigned int cond; 4323ef9dff4cSZong-Zhe Yang 4324ef9dff4cSZong-Zhe Yang rpt = (struct rtw89_mac_mcc_tsf_rpt *)data.buf; 4325ef9dff4cSZong-Zhe Yang rpt->macid_x = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_X(c2h->data); 4326ef9dff4cSZong-Zhe Yang rpt->macid_y = RTW89_GET_MAC_C2H_MCC_TSF_RPT_MACID_Y(c2h->data); 4327ef9dff4cSZong-Zhe Yang rpt->tsf_x_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_X(c2h->data); 4328ef9dff4cSZong-Zhe Yang rpt->tsf_x_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_X(c2h->data); 4329ef9dff4cSZong-Zhe Yang rpt->tsf_y_low = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_LOW_Y(c2h->data); 4330ef9dff4cSZong-Zhe Yang rpt->tsf_y_high = RTW89_GET_MAC_C2H_MCC_TSF_RPT_TSF_HIGH_Y(c2h->data); 4331ef9dff4cSZong-Zhe Yang 4332ef9dff4cSZong-Zhe Yang cond = RTW89_MCC_WAIT_COND(group, H2C_FUNC_MCC_REQ_TSF); 4333ef9dff4cSZong-Zhe Yang rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data); 4334ef9dff4cSZong-Zhe Yang } 4335ef9dff4cSZong-Zhe Yang 4336ef9dff4cSZong-Zhe Yang static void 4337ef9dff4cSZong-Zhe Yang rtw89_mac_c2h_mcc_status_rpt(struct rtw89_dev *rtwdev, struct sk_buff *c2h, u32 len) 4338ef9dff4cSZong-Zhe Yang { 4339ef9dff4cSZong-Zhe Yang u8 group = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_GROUP(c2h->data); 4340ef9dff4cSZong-Zhe Yang u8 macid = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_MACID(c2h->data); 4341ef9dff4cSZong-Zhe Yang u8 status = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_STATUS(c2h->data); 4342ef9dff4cSZong-Zhe Yang u32 tsf_low = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_TSF_LOW(c2h->data); 4343ef9dff4cSZong-Zhe Yang u32 tsf_high = RTW89_GET_MAC_C2H_MCC_STATUS_RPT_TSF_HIGH(c2h->data); 4344ef9dff4cSZong-Zhe Yang struct rtw89_completion_data data = {}; 4345ef9dff4cSZong-Zhe Yang unsigned int cond; 4346ef9dff4cSZong-Zhe Yang bool rsp = true; 4347ef9dff4cSZong-Zhe Yang bool err; 4348ef9dff4cSZong-Zhe Yang u8 func; 4349ef9dff4cSZong-Zhe Yang 4350ef9dff4cSZong-Zhe Yang switch (status) { 4351ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_ADD_ROLE_OK: 4352ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_ADD_ROLE_FAIL: 4353ef9dff4cSZong-Zhe Yang func = H2C_FUNC_ADD_MCC; 4354ef9dff4cSZong-Zhe Yang err = status == RTW89_MAC_MCC_ADD_ROLE_FAIL; 4355ef9dff4cSZong-Zhe Yang break; 4356ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_START_GROUP_OK: 4357ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_START_GROUP_FAIL: 4358ef9dff4cSZong-Zhe Yang func = H2C_FUNC_START_MCC; 4359ef9dff4cSZong-Zhe Yang err = status == RTW89_MAC_MCC_START_GROUP_FAIL; 4360ef9dff4cSZong-Zhe Yang break; 4361ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_STOP_GROUP_OK: 4362ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_STOP_GROUP_FAIL: 4363ef9dff4cSZong-Zhe Yang func = H2C_FUNC_STOP_MCC; 4364ef9dff4cSZong-Zhe Yang err = status == RTW89_MAC_MCC_STOP_GROUP_FAIL; 4365ef9dff4cSZong-Zhe Yang break; 4366ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_DEL_GROUP_OK: 4367ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_DEL_GROUP_FAIL: 4368ef9dff4cSZong-Zhe Yang func = H2C_FUNC_DEL_MCC_GROUP; 4369ef9dff4cSZong-Zhe Yang err = status == RTW89_MAC_MCC_DEL_GROUP_FAIL; 4370ef9dff4cSZong-Zhe Yang break; 4371ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_RESET_GROUP_OK: 4372ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_RESET_GROUP_FAIL: 4373ef9dff4cSZong-Zhe Yang func = H2C_FUNC_RESET_MCC_GROUP; 4374ef9dff4cSZong-Zhe Yang err = status == RTW89_MAC_MCC_RESET_GROUP_FAIL; 4375ef9dff4cSZong-Zhe Yang break; 4376ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_SWITCH_CH_OK: 4377ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_SWITCH_CH_FAIL: 4378ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_TXNULL0_OK: 4379ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_TXNULL0_FAIL: 4380ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_TXNULL1_OK: 4381ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_TXNULL1_FAIL: 4382ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_SWITCH_EARLY: 4383ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_TBTT: 4384ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_DURATION_START: 4385ef9dff4cSZong-Zhe Yang case RTW89_MAC_MCC_DURATION_END: 4386ef9dff4cSZong-Zhe Yang rsp = false; 4387ef9dff4cSZong-Zhe Yang break; 4388ef9dff4cSZong-Zhe Yang default: 4389ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4390ef9dff4cSZong-Zhe Yang "invalid MCC C2H STS RPT: status %d\n", status); 4391ef9dff4cSZong-Zhe Yang return; 4392ef9dff4cSZong-Zhe Yang } 4393ef9dff4cSZong-Zhe Yang 4394ef9dff4cSZong-Zhe Yang rtw89_debug(rtwdev, RTW89_DBG_FW, 4395ef9dff4cSZong-Zhe Yang "MCC C2H STS RPT: group %d, macid %d, status %d, tsf {%d, %d}\n", 4396ef9dff4cSZong-Zhe Yang group, macid, status, tsf_low, tsf_high); 4397ef9dff4cSZong-Zhe Yang 4398ef9dff4cSZong-Zhe Yang if (!rsp) 4399ef9dff4cSZong-Zhe Yang return; 4400ef9dff4cSZong-Zhe Yang 4401ef9dff4cSZong-Zhe Yang data.err = err; 4402ef9dff4cSZong-Zhe Yang cond = RTW89_MCC_WAIT_COND(group, func); 4403ef9dff4cSZong-Zhe Yang rtw89_complete_cond(&rtwdev->mcc.wait, cond, &data); 4404ef9dff4cSZong-Zhe Yang } 4405ef9dff4cSZong-Zhe Yang 4406e3ec7017SPing-Ke Shih static 4407e3ec7017SPing-Ke Shih void (* const rtw89_mac_c2h_ofld_handler[])(struct rtw89_dev *rtwdev, 4408e3ec7017SPing-Ke Shih struct sk_buff *c2h, u32 len) = { 4409e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_EFUSE_DUMP] = NULL, 4410e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_READ_RSP] = NULL, 44112b8219e9SPo Hao Huang [RTW89_MAC_C2H_FUNC_PKT_OFLD_RSP] = rtw89_mac_c2h_pkt_ofld_rsp, 4412e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_BCN_RESEND] = NULL, 4413e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_MACID_PAUSE] = rtw89_mac_c2h_macid_pause, 441489590777SPo Hao Huang [RTW89_MAC_C2H_FUNC_SCANOFLD_RSP] = rtw89_mac_c2h_scanofld_rsp, 4415f4a43c3bSDian-Syuan Yang [RTW89_MAC_C2H_FUNC_TSF32_TOGL_RPT] = rtw89_mac_c2h_tsf32_toggle_rpt, 4416e3ec7017SPing-Ke Shih }; 4417e3ec7017SPing-Ke Shih 4418e3ec7017SPing-Ke Shih static 4419e3ec7017SPing-Ke Shih void (* const rtw89_mac_c2h_info_handler[])(struct rtw89_dev *rtwdev, 4420e3ec7017SPing-Ke Shih struct sk_buff *c2h, u32 len) = { 4421e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_REC_ACK] = rtw89_mac_c2h_rec_ack, 4422e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_DONE_ACK] = rtw89_mac_c2h_done_ack, 4423e3ec7017SPing-Ke Shih [RTW89_MAC_C2H_FUNC_C2H_LOG] = rtw89_mac_c2h_log, 4424fccca934SPing-Ke Shih [RTW89_MAC_C2H_FUNC_BCN_CNT] = rtw89_mac_c2h_bcn_cnt, 4425e3ec7017SPing-Ke Shih }; 4426e3ec7017SPing-Ke Shih 4427ef9dff4cSZong-Zhe Yang static 4428ef9dff4cSZong-Zhe Yang void (* const rtw89_mac_c2h_mcc_handler[])(struct rtw89_dev *rtwdev, 4429ef9dff4cSZong-Zhe Yang struct sk_buff *c2h, u32 len) = { 4430ef9dff4cSZong-Zhe Yang [RTW89_MAC_C2H_FUNC_MCC_RCV_ACK] = rtw89_mac_c2h_mcc_rcv_ack, 4431ef9dff4cSZong-Zhe Yang [RTW89_MAC_C2H_FUNC_MCC_REQ_ACK] = rtw89_mac_c2h_mcc_req_ack, 4432ef9dff4cSZong-Zhe Yang [RTW89_MAC_C2H_FUNC_MCC_TSF_RPT] = rtw89_mac_c2h_mcc_tsf_rpt, 4433ef9dff4cSZong-Zhe Yang [RTW89_MAC_C2H_FUNC_MCC_STATUS_RPT] = rtw89_mac_c2h_mcc_status_rpt, 4434ef9dff4cSZong-Zhe Yang }; 4435ef9dff4cSZong-Zhe Yang 4436860e8263SZong-Zhe Yang bool rtw89_mac_c2h_chk_atomic(struct rtw89_dev *rtwdev, u8 class, u8 func) 4437860e8263SZong-Zhe Yang { 4438860e8263SZong-Zhe Yang switch (class) { 4439860e8263SZong-Zhe Yang default: 4440860e8263SZong-Zhe Yang return false; 4441860e8263SZong-Zhe Yang case RTW89_MAC_C2H_CLASS_MCC: 4442860e8263SZong-Zhe Yang return true; 4443860e8263SZong-Zhe Yang } 4444860e8263SZong-Zhe Yang } 4445860e8263SZong-Zhe Yang 4446e3ec7017SPing-Ke Shih void rtw89_mac_c2h_handle(struct rtw89_dev *rtwdev, struct sk_buff *skb, 4447e3ec7017SPing-Ke Shih u32 len, u8 class, u8 func) 4448e3ec7017SPing-Ke Shih { 4449e3ec7017SPing-Ke Shih void (*handler)(struct rtw89_dev *rtwdev, 4450e3ec7017SPing-Ke Shih struct sk_buff *c2h, u32 len) = NULL; 4451e3ec7017SPing-Ke Shih 4452e3ec7017SPing-Ke Shih switch (class) { 4453e3ec7017SPing-Ke Shih case RTW89_MAC_C2H_CLASS_INFO: 4454e3ec7017SPing-Ke Shih if (func < RTW89_MAC_C2H_FUNC_INFO_MAX) 4455e3ec7017SPing-Ke Shih handler = rtw89_mac_c2h_info_handler[func]; 4456e3ec7017SPing-Ke Shih break; 4457e3ec7017SPing-Ke Shih case RTW89_MAC_C2H_CLASS_OFLD: 4458e3ec7017SPing-Ke Shih if (func < RTW89_MAC_C2H_FUNC_OFLD_MAX) 4459e3ec7017SPing-Ke Shih handler = rtw89_mac_c2h_ofld_handler[func]; 4460e3ec7017SPing-Ke Shih break; 4461ef9dff4cSZong-Zhe Yang case RTW89_MAC_C2H_CLASS_MCC: 4462ef9dff4cSZong-Zhe Yang if (func < NUM_OF_RTW89_MAC_C2H_FUNC_MCC) 4463ef9dff4cSZong-Zhe Yang handler = rtw89_mac_c2h_mcc_handler[func]; 4464ef9dff4cSZong-Zhe Yang break; 4465e3ec7017SPing-Ke Shih case RTW89_MAC_C2H_CLASS_FWDBG: 4466e3ec7017SPing-Ke Shih return; 4467e3ec7017SPing-Ke Shih default: 4468e3ec7017SPing-Ke Shih rtw89_info(rtwdev, "c2h class %d not support\n", class); 4469e3ec7017SPing-Ke Shih return; 4470e3ec7017SPing-Ke Shih } 4471e3ec7017SPing-Ke Shih if (!handler) { 4472e3ec7017SPing-Ke Shih rtw89_info(rtwdev, "c2h class %d func %d not support\n", class, 4473e3ec7017SPing-Ke Shih func); 4474e3ec7017SPing-Ke Shih return; 4475e3ec7017SPing-Ke Shih } 4476e3ec7017SPing-Ke Shih handler(rtwdev, skb, len); 4477e3ec7017SPing-Ke Shih } 4478e3ec7017SPing-Ke Shih 4479e3ec7017SPing-Ke Shih bool rtw89_mac_get_txpwr_cr(struct rtw89_dev *rtwdev, 4480e3ec7017SPing-Ke Shih enum rtw89_phy_idx phy_idx, 4481e3ec7017SPing-Ke Shih u32 reg_base, u32 *cr) 4482e3ec7017SPing-Ke Shih { 4483e3ec7017SPing-Ke Shih const struct rtw89_dle_mem *dle_mem = rtwdev->chip->dle_mem; 4484e3ec7017SPing-Ke Shih enum rtw89_qta_mode mode = dle_mem->mode; 4485e3ec7017SPing-Ke Shih u32 addr = rtw89_mac_reg_by_idx(reg_base, phy_idx); 4486e3ec7017SPing-Ke Shih 4487e3ec7017SPing-Ke Shih if (addr < R_AX_PWR_RATE_CTRL || addr > CMAC1_END_ADDR) { 4488e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[TXPWR] addr=0x%x exceed txpwr cr\n", 4489e3ec7017SPing-Ke Shih addr); 4490e3ec7017SPing-Ke Shih goto error; 4491e3ec7017SPing-Ke Shih } 4492e3ec7017SPing-Ke Shih 4493e3ec7017SPing-Ke Shih if (addr >= CMAC1_START_ADDR && addr <= CMAC1_END_ADDR) 4494e3ec7017SPing-Ke Shih if (mode == RTW89_QTA_SCC) { 4495e3ec7017SPing-Ke Shih rtw89_err(rtwdev, 4496e3ec7017SPing-Ke Shih "[TXPWR] addr=0x%x but hw not enable\n", 4497e3ec7017SPing-Ke Shih addr); 4498e3ec7017SPing-Ke Shih goto error; 4499e3ec7017SPing-Ke Shih } 4500e3ec7017SPing-Ke Shih 4501e3ec7017SPing-Ke Shih *cr = addr; 4502e3ec7017SPing-Ke Shih return true; 4503e3ec7017SPing-Ke Shih 4504e3ec7017SPing-Ke Shih error: 4505e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "[TXPWR] check txpwr cr 0x%x(phy%d) fail\n", 4506e3ec7017SPing-Ke Shih addr, phy_idx); 4507e3ec7017SPing-Ke Shih 4508e3ec7017SPing-Ke Shih return false; 4509e3ec7017SPing-Ke Shih } 4510861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_get_txpwr_cr); 4511e3ec7017SPing-Ke Shih 4512e3ec7017SPing-Ke Shih int rtw89_mac_cfg_ppdu_status(struct rtw89_dev *rtwdev, u8 mac_idx, bool enable) 4513e3ec7017SPing-Ke Shih { 4514e3ec7017SPing-Ke Shih u32 reg = rtw89_mac_reg_by_idx(R_AX_PPDU_STAT, mac_idx); 4515e3ec7017SPing-Ke Shih int ret = 0; 4516e3ec7017SPing-Ke Shih 4517e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 4518e3ec7017SPing-Ke Shih if (ret) 4519e3ec7017SPing-Ke Shih return ret; 4520e3ec7017SPing-Ke Shih 4521e3ec7017SPing-Ke Shih if (!enable) { 4522e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, reg, B_AX_PPDU_STAT_RPT_EN); 4523e3ec7017SPing-Ke Shih return ret; 4524e3ec7017SPing-Ke Shih } 4525e3ec7017SPing-Ke Shih 4526e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, B_AX_PPDU_STAT_RPT_EN | 4527e3ec7017SPing-Ke Shih B_AX_APP_MAC_INFO_RPT | 4528e3ec7017SPing-Ke Shih B_AX_APP_RX_CNT_RPT | B_AX_APP_PLCP_HDR_RPT | 4529e3ec7017SPing-Ke Shih B_AX_PPDU_STAT_RPT_CRC32); 4530e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, R_AX_HW_RPT_FWD, B_AX_FWD_PPDU_STAT_MASK, 4531e3ec7017SPing-Ke Shih RTW89_PRPT_DEST_HOST); 4532e3ec7017SPing-Ke Shih 4533e3ec7017SPing-Ke Shih return ret; 4534e3ec7017SPing-Ke Shih } 4535861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_cfg_ppdu_status); 4536e3ec7017SPing-Ke Shih 4537e3ec7017SPing-Ke Shih void rtw89_mac_update_rts_threshold(struct rtw89_dev *rtwdev, u8 mac_idx) 4538e3ec7017SPing-Ke Shih { 4539e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_SH 5 4540e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_SH 4 4541e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_MAX 255 4542e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_MAX 255 4543e3ec7017SPing-Ke Shih #define MAC_AX_TIME_TH_DEF 88 4544e3ec7017SPing-Ke Shih #define MAC_AX_LEN_TH_DEF 4080 4545e3ec7017SPing-Ke Shih struct ieee80211_hw *hw = rtwdev->hw; 4546e3ec7017SPing-Ke Shih u32 rts_threshold = hw->wiphy->rts_threshold; 4547e3ec7017SPing-Ke Shih u32 time_th, len_th; 4548e3ec7017SPing-Ke Shih u32 reg; 4549e3ec7017SPing-Ke Shih 4550e3ec7017SPing-Ke Shih if (rts_threshold == (u32)-1) { 4551e3ec7017SPing-Ke Shih time_th = MAC_AX_TIME_TH_DEF; 4552e3ec7017SPing-Ke Shih len_th = MAC_AX_LEN_TH_DEF; 4553e3ec7017SPing-Ke Shih } else { 4554e3ec7017SPing-Ke Shih time_th = MAC_AX_TIME_TH_MAX << MAC_AX_TIME_TH_SH; 4555e3ec7017SPing-Ke Shih len_th = rts_threshold; 4556e3ec7017SPing-Ke Shih } 4557e3ec7017SPing-Ke Shih 4558e3ec7017SPing-Ke Shih time_th = min_t(u32, time_th >> MAC_AX_TIME_TH_SH, MAC_AX_TIME_TH_MAX); 4559e3ec7017SPing-Ke Shih len_th = min_t(u32, len_th >> MAC_AX_LEN_TH_SH, MAC_AX_LEN_TH_MAX); 4560e3ec7017SPing-Ke Shih 4561e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_AGG_LEN_HT_0, mac_idx); 4562e3ec7017SPing-Ke Shih rtw89_write16_mask(rtwdev, reg, B_AX_RTS_TXTIME_TH_MASK, time_th); 4563e3ec7017SPing-Ke Shih rtw89_write16_mask(rtwdev, reg, B_AX_RTS_LEN_TH_MASK, len_th); 4564e3ec7017SPing-Ke Shih } 4565e3ec7017SPing-Ke Shih 4566e3ec7017SPing-Ke Shih void rtw89_mac_flush_txq(struct rtw89_dev *rtwdev, u32 queues, bool drop) 4567e3ec7017SPing-Ke Shih { 4568e3ec7017SPing-Ke Shih bool empty; 4569e3ec7017SPing-Ke Shih int ret; 4570e3ec7017SPing-Ke Shih 4571e3ec7017SPing-Ke Shih if (!test_bit(RTW89_FLAG_POWERON, rtwdev->flags)) 4572e3ec7017SPing-Ke Shih return; 4573e3ec7017SPing-Ke Shih 4574e3ec7017SPing-Ke Shih ret = read_poll_timeout(dle_is_txq_empty, empty, empty, 4575e3ec7017SPing-Ke Shih 10000, 200000, false, rtwdev); 4576e3ec7017SPing-Ke Shih if (ret && !drop && (rtwdev->total_sta_assoc || rtwdev->scanning)) 4577e3ec7017SPing-Ke Shih rtw89_info(rtwdev, "timed out to flush queues\n"); 4578e3ec7017SPing-Ke Shih } 4579e3ec7017SPing-Ke Shih 4580e3ec7017SPing-Ke Shih int rtw89_mac_coex_init(struct rtw89_dev *rtwdev, const struct rtw89_mac_ax_coex *coex) 4581e3ec7017SPing-Ke Shih { 4582e3ec7017SPing-Ke Shih u8 val; 4583e3ec7017SPing-Ke Shih u16 val16; 4584e3ec7017SPing-Ke Shih u32 val32; 4585e3ec7017SPing-Ke Shih int ret; 4586e3ec7017SPing-Ke Shih 4587e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_GPIO_MUXCFG, B_AX_ENBT); 4588e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_BTC_FUNC_EN, B_AX_PTA_WL_TX_EN); 4589e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_BT_COEX_CFG_2 + 1, B_AX_GNT_BT_POLARITY >> 8); 4590e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_CSR_MODE, B_AX_STATIS_BT_EN | B_AX_WL_ACT_MSK); 4591e3ec7017SPing-Ke Shih rtw89_write8_set(rtwdev, R_AX_CSR_MODE + 2, B_AX_BT_CNT_RST >> 16); 4592e3ec7017SPing-Ke Shih rtw89_write8_clr(rtwdev, R_AX_TRXPTCL_RESP_0 + 3, B_AX_RSP_CHK_BTCCA >> 24); 4593e3ec7017SPing-Ke Shih 4594e3ec7017SPing-Ke Shih val16 = rtw89_read16(rtwdev, R_AX_CCA_CFG_0); 4595e3ec7017SPing-Ke Shih val16 = (val16 | B_AX_BTCCA_EN) & ~B_AX_BTCCA_BRK_TXOP_EN; 4596e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, R_AX_CCA_CFG_0, val16); 4597e3ec7017SPing-Ke Shih 4598e3ec7017SPing-Ke Shih ret = rtw89_mac_read_lte(rtwdev, R_AX_LTE_SW_CFG_2, &val32); 4599e3ec7017SPing-Ke Shih if (ret) { 4600e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "Read R_AX_LTE_SW_CFG_2 fail!\n"); 4601e3ec7017SPing-Ke Shih return ret; 4602e3ec7017SPing-Ke Shih } 4603e3ec7017SPing-Ke Shih val32 = val32 & B_AX_WL_RX_CTRL; 4604e3ec7017SPing-Ke Shih ret = rtw89_mac_write_lte(rtwdev, R_AX_LTE_SW_CFG_2, val32); 4605e3ec7017SPing-Ke Shih if (ret) { 4606e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "Write R_AX_LTE_SW_CFG_2 fail!\n"); 4607e3ec7017SPing-Ke Shih return ret; 4608e3ec7017SPing-Ke Shih } 4609e3ec7017SPing-Ke Shih 4610e3ec7017SPing-Ke Shih switch (coex->pta_mode) { 4611e3ec7017SPing-Ke Shih case RTW89_MAC_AX_COEX_RTK_MODE: 4612e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG); 4613e3ec7017SPing-Ke Shih val &= ~B_AX_BTMODE_MASK; 4614e3ec7017SPing-Ke Shih val |= FIELD_PREP(B_AX_BTMODE_MASK, MAC_AX_BT_MODE_0_3); 4615e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG, val); 4616e3ec7017SPing-Ke Shih 4617e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_TDMA_MODE); 4618e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_TDMA_MODE, val | B_AX_RTK_BT_ENABLE); 4619e3ec7017SPing-Ke Shih 4620e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_BT_COEX_CFG_5); 4621e3ec7017SPing-Ke Shih val &= ~B_AX_BT_RPT_SAMPLE_RATE_MASK; 4622e3ec7017SPing-Ke Shih val |= FIELD_PREP(B_AX_BT_RPT_SAMPLE_RATE_MASK, MAC_AX_RTK_RATE); 4623e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_BT_COEX_CFG_5, val); 4624e3ec7017SPing-Ke Shih break; 4625e3ec7017SPing-Ke Shih case RTW89_MAC_AX_COEX_CSR_MODE: 4626e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG); 4627e3ec7017SPing-Ke Shih val &= ~B_AX_BTMODE_MASK; 4628e3ec7017SPing-Ke Shih val |= FIELD_PREP(B_AX_BTMODE_MASK, MAC_AX_BT_MODE_2); 4629e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG, val); 4630e3ec7017SPing-Ke Shih 4631e3ec7017SPing-Ke Shih val16 = rtw89_read16(rtwdev, R_AX_CSR_MODE); 4632e3ec7017SPing-Ke Shih val16 &= ~B_AX_BT_PRI_DETECT_TO_MASK; 4633e3ec7017SPing-Ke Shih val16 |= FIELD_PREP(B_AX_BT_PRI_DETECT_TO_MASK, MAC_AX_CSR_PRI_TO); 4634e3ec7017SPing-Ke Shih val16 &= ~B_AX_BT_TRX_INIT_DETECT_MASK; 4635e3ec7017SPing-Ke Shih val16 |= FIELD_PREP(B_AX_BT_TRX_INIT_DETECT_MASK, MAC_AX_CSR_TRX_TO); 4636e3ec7017SPing-Ke Shih val16 &= ~B_AX_BT_STAT_DELAY_MASK; 4637e3ec7017SPing-Ke Shih val16 |= FIELD_PREP(B_AX_BT_STAT_DELAY_MASK, MAC_AX_CSR_DELAY); 4638e3ec7017SPing-Ke Shih val16 |= B_AX_ENHANCED_BT; 4639e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, R_AX_CSR_MODE, val16); 4640e3ec7017SPing-Ke Shih 4641e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_BT_COEX_CFG_2, MAC_AX_CSR_RATE); 4642e3ec7017SPing-Ke Shih break; 4643e3ec7017SPing-Ke Shih default: 4644e3ec7017SPing-Ke Shih return -EINVAL; 4645e3ec7017SPing-Ke Shih } 4646e3ec7017SPing-Ke Shih 4647e3ec7017SPing-Ke Shih switch (coex->direction) { 4648e3ec7017SPing-Ke Shih case RTW89_MAC_AX_COEX_INNER: 4649e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1); 4650e3ec7017SPing-Ke Shih val = (val & ~BIT(2)) | BIT(1); 4651e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val); 4652e3ec7017SPing-Ke Shih break; 4653e3ec7017SPing-Ke Shih case RTW89_MAC_AX_COEX_OUTPUT: 4654e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1); 4655e3ec7017SPing-Ke Shih val = val | BIT(1) | BIT(0); 4656e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val); 4657e3ec7017SPing-Ke Shih break; 4658e3ec7017SPing-Ke Shih case RTW89_MAC_AX_COEX_INPUT: 4659e3ec7017SPing-Ke Shih val = rtw89_read8(rtwdev, R_AX_GPIO_MUXCFG + 1); 4660e3ec7017SPing-Ke Shih val = val & ~(BIT(2) | BIT(1)); 4661e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_GPIO_MUXCFG + 1, val); 4662e3ec7017SPing-Ke Shih break; 4663e3ec7017SPing-Ke Shih default: 4664e3ec7017SPing-Ke Shih return -EINVAL; 4665e3ec7017SPing-Ke Shih } 4666e3ec7017SPing-Ke Shih 4667e3ec7017SPing-Ke Shih return 0; 4668e3ec7017SPing-Ke Shih } 4669861e58c8SZong-Zhe Yang EXPORT_SYMBOL(rtw89_mac_coex_init); 4670e3ec7017SPing-Ke Shih 4671065cf8f9SChia-Yuan Li int rtw89_mac_coex_init_v1(struct rtw89_dev *rtwdev, 4672065cf8f9SChia-Yuan Li const struct rtw89_mac_ax_coex *coex) 4673065cf8f9SChia-Yuan Li { 4674065cf8f9SChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_BTC_CFG, 4675065cf8f9SChia-Yuan Li B_AX_BTC_EN | B_AX_BTG_LNA1_GAIN_SEL); 4676065cf8f9SChia-Yuan Li rtw89_write32_set(rtwdev, R_AX_BT_CNT_CFG, B_AX_BT_CNT_EN); 4677065cf8f9SChia-Yuan Li rtw89_write16_set(rtwdev, R_AX_CCA_CFG_0, B_AX_BTCCA_EN); 4678065cf8f9SChia-Yuan Li rtw89_write16_clr(rtwdev, R_AX_CCA_CFG_0, B_AX_BTCCA_BRK_TXOP_EN); 4679065cf8f9SChia-Yuan Li 4680065cf8f9SChia-Yuan Li switch (coex->pta_mode) { 4681065cf8f9SChia-Yuan Li case RTW89_MAC_AX_COEX_RTK_MODE: 4682065cf8f9SChia-Yuan Li rtw89_write32_mask(rtwdev, R_AX_BTC_CFG, B_AX_BTC_MODE_MASK, 4683065cf8f9SChia-Yuan Li MAC_AX_RTK_MODE); 4684065cf8f9SChia-Yuan Li rtw89_write32_mask(rtwdev, R_AX_RTK_MODE_CFG_V1, 4685065cf8f9SChia-Yuan Li B_AX_SAMPLE_CLK_MASK, MAC_AX_RTK_RATE); 4686065cf8f9SChia-Yuan Li break; 4687065cf8f9SChia-Yuan Li case RTW89_MAC_AX_COEX_CSR_MODE: 4688065cf8f9SChia-Yuan Li rtw89_write32_mask(rtwdev, R_AX_BTC_CFG, B_AX_BTC_MODE_MASK, 4689065cf8f9SChia-Yuan Li MAC_AX_CSR_MODE); 4690065cf8f9SChia-Yuan Li break; 4691065cf8f9SChia-Yuan Li default: 4692065cf8f9SChia-Yuan Li return -EINVAL; 4693065cf8f9SChia-Yuan Li } 4694065cf8f9SChia-Yuan Li 4695065cf8f9SChia-Yuan Li return 0; 4696065cf8f9SChia-Yuan Li } 4697065cf8f9SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_coex_init_v1); 4698065cf8f9SChia-Yuan Li 4699e3ec7017SPing-Ke Shih int rtw89_mac_cfg_gnt(struct rtw89_dev *rtwdev, 4700e3ec7017SPing-Ke Shih const struct rtw89_mac_ax_coex_gnt *gnt_cfg) 4701e3ec7017SPing-Ke Shih { 47028001c741SPing-Ke Shih u32 val = 0, ret; 4703e3ec7017SPing-Ke Shih 47048001c741SPing-Ke Shih if (gnt_cfg->band[0].gnt_bt) 47058001c741SPing-Ke Shih val |= B_AX_GNT_BT_RFC_S0_SW_VAL | B_AX_GNT_BT_BB_S0_SW_VAL; 47068001c741SPing-Ke Shih 47078001c741SPing-Ke Shih if (gnt_cfg->band[0].gnt_bt_sw_en) 47088001c741SPing-Ke Shih val |= B_AX_GNT_BT_RFC_S0_SW_CTRL | B_AX_GNT_BT_BB_S0_SW_CTRL; 47098001c741SPing-Ke Shih 47108001c741SPing-Ke Shih if (gnt_cfg->band[0].gnt_wl) 47118001c741SPing-Ke Shih val |= B_AX_GNT_WL_RFC_S0_SW_VAL | B_AX_GNT_WL_BB_S0_SW_VAL; 47128001c741SPing-Ke Shih 47138001c741SPing-Ke Shih if (gnt_cfg->band[0].gnt_wl_sw_en) 47148001c741SPing-Ke Shih val |= B_AX_GNT_WL_RFC_S0_SW_CTRL | B_AX_GNT_WL_BB_S0_SW_CTRL; 47158001c741SPing-Ke Shih 47168001c741SPing-Ke Shih if (gnt_cfg->band[1].gnt_bt) 47178001c741SPing-Ke Shih val |= B_AX_GNT_BT_RFC_S1_SW_VAL | B_AX_GNT_BT_BB_S1_SW_VAL; 47188001c741SPing-Ke Shih 47198001c741SPing-Ke Shih if (gnt_cfg->band[1].gnt_bt_sw_en) 47208001c741SPing-Ke Shih val |= B_AX_GNT_BT_RFC_S1_SW_CTRL | B_AX_GNT_BT_BB_S1_SW_CTRL; 47218001c741SPing-Ke Shih 47228001c741SPing-Ke Shih if (gnt_cfg->band[1].gnt_wl) 47238001c741SPing-Ke Shih val |= B_AX_GNT_WL_RFC_S1_SW_VAL | B_AX_GNT_WL_BB_S1_SW_VAL; 47248001c741SPing-Ke Shih 47258001c741SPing-Ke Shih if (gnt_cfg->band[1].gnt_wl_sw_en) 47268001c741SPing-Ke Shih val |= B_AX_GNT_WL_RFC_S1_SW_CTRL | B_AX_GNT_WL_BB_S1_SW_CTRL; 47278001c741SPing-Ke Shih 4728e3ec7017SPing-Ke Shih ret = rtw89_mac_write_lte(rtwdev, R_AX_LTE_SW_CFG_1, val); 4729e3ec7017SPing-Ke Shih if (ret) { 4730e3ec7017SPing-Ke Shih rtw89_err(rtwdev, "Write LTE fail!\n"); 4731e3ec7017SPing-Ke Shih return ret; 4732e3ec7017SPing-Ke Shih } 4733e3ec7017SPing-Ke Shih 4734e3ec7017SPing-Ke Shih return 0; 4735e3ec7017SPing-Ke Shih } 4736feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_gnt); 4737feed6541SChia-Yuan Li 4738feed6541SChia-Yuan Li int rtw89_mac_cfg_gnt_v1(struct rtw89_dev *rtwdev, 4739feed6541SChia-Yuan Li const struct rtw89_mac_ax_coex_gnt *gnt_cfg) 4740feed6541SChia-Yuan Li { 4741feed6541SChia-Yuan Li u32 val = 0; 4742feed6541SChia-Yuan Li 4743feed6541SChia-Yuan Li if (gnt_cfg->band[0].gnt_bt) 4744feed6541SChia-Yuan Li val |= B_AX_GNT_BT_RFC_S0_VAL | B_AX_GNT_BT_RX_VAL | 4745feed6541SChia-Yuan Li B_AX_GNT_BT_TX_VAL; 4746feed6541SChia-Yuan Li else 4747feed6541SChia-Yuan Li val |= B_AX_WL_ACT_VAL; 4748feed6541SChia-Yuan Li 4749feed6541SChia-Yuan Li if (gnt_cfg->band[0].gnt_bt_sw_en) 4750feed6541SChia-Yuan Li val |= B_AX_GNT_BT_RFC_S0_SWCTRL | B_AX_GNT_BT_RX_SWCTRL | 4751feed6541SChia-Yuan Li B_AX_GNT_BT_TX_SWCTRL | B_AX_WL_ACT_SWCTRL; 4752feed6541SChia-Yuan Li 4753feed6541SChia-Yuan Li if (gnt_cfg->band[0].gnt_wl) 4754feed6541SChia-Yuan Li val |= B_AX_GNT_WL_RFC_S0_VAL | B_AX_GNT_WL_RX_VAL | 4755feed6541SChia-Yuan Li B_AX_GNT_WL_TX_VAL | B_AX_GNT_WL_BB_VAL; 4756feed6541SChia-Yuan Li 4757feed6541SChia-Yuan Li if (gnt_cfg->band[0].gnt_wl_sw_en) 4758feed6541SChia-Yuan Li val |= B_AX_GNT_WL_RFC_S0_SWCTRL | B_AX_GNT_WL_RX_SWCTRL | 4759feed6541SChia-Yuan Li B_AX_GNT_WL_TX_SWCTRL | B_AX_GNT_WL_BB_SWCTRL; 4760feed6541SChia-Yuan Li 4761feed6541SChia-Yuan Li if (gnt_cfg->band[1].gnt_bt) 4762feed6541SChia-Yuan Li val |= B_AX_GNT_BT_RFC_S1_VAL | B_AX_GNT_BT_RX_VAL | 4763feed6541SChia-Yuan Li B_AX_GNT_BT_TX_VAL; 4764feed6541SChia-Yuan Li else 4765feed6541SChia-Yuan Li val |= B_AX_WL_ACT_VAL; 4766feed6541SChia-Yuan Li 4767feed6541SChia-Yuan Li if (gnt_cfg->band[1].gnt_bt_sw_en) 4768feed6541SChia-Yuan Li val |= B_AX_GNT_BT_RFC_S1_SWCTRL | B_AX_GNT_BT_RX_SWCTRL | 4769feed6541SChia-Yuan Li B_AX_GNT_BT_TX_SWCTRL | B_AX_WL_ACT_SWCTRL; 4770feed6541SChia-Yuan Li 4771feed6541SChia-Yuan Li if (gnt_cfg->band[1].gnt_wl) 4772feed6541SChia-Yuan Li val |= B_AX_GNT_WL_RFC_S1_VAL | B_AX_GNT_WL_RX_VAL | 4773feed6541SChia-Yuan Li B_AX_GNT_WL_TX_VAL | B_AX_GNT_WL_BB_VAL; 4774feed6541SChia-Yuan Li 4775feed6541SChia-Yuan Li if (gnt_cfg->band[1].gnt_wl_sw_en) 4776feed6541SChia-Yuan Li val |= B_AX_GNT_WL_RFC_S1_SWCTRL | B_AX_GNT_WL_RX_SWCTRL | 4777feed6541SChia-Yuan Li B_AX_GNT_WL_TX_SWCTRL | B_AX_GNT_WL_BB_SWCTRL; 4778feed6541SChia-Yuan Li 4779feed6541SChia-Yuan Li rtw89_write32(rtwdev, R_AX_GNT_SW_CTRL, val); 4780feed6541SChia-Yuan Li 4781feed6541SChia-Yuan Li return 0; 4782feed6541SChia-Yuan Li } 4783feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_gnt_v1); 4784e3ec7017SPing-Ke Shih 4785e3ec7017SPing-Ke Shih int rtw89_mac_cfg_plt(struct rtw89_dev *rtwdev, struct rtw89_mac_ax_plt *plt) 4786e3ec7017SPing-Ke Shih { 4787e3ec7017SPing-Ke Shih u32 reg; 478828e7ea8aSPing-Ke Shih u16 val; 4789e3ec7017SPing-Ke Shih int ret; 4790e3ec7017SPing-Ke Shih 4791e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, plt->band, RTW89_CMAC_SEL); 4792e3ec7017SPing-Ke Shih if (ret) 4793e3ec7017SPing-Ke Shih return ret; 4794e3ec7017SPing-Ke Shih 4795e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_BT_PLT, plt->band); 4796e3ec7017SPing-Ke Shih val = (plt->tx & RTW89_MAC_AX_PLT_LTE_RX ? B_AX_TX_PLT_GNT_LTE_RX : 0) | 4797e3ec7017SPing-Ke Shih (plt->tx & RTW89_MAC_AX_PLT_GNT_BT_TX ? B_AX_TX_PLT_GNT_BT_TX : 0) | 4798e3ec7017SPing-Ke Shih (plt->tx & RTW89_MAC_AX_PLT_GNT_BT_RX ? B_AX_TX_PLT_GNT_BT_RX : 0) | 4799e3ec7017SPing-Ke Shih (plt->tx & RTW89_MAC_AX_PLT_GNT_WL ? B_AX_TX_PLT_GNT_WL : 0) | 4800e3ec7017SPing-Ke Shih (plt->rx & RTW89_MAC_AX_PLT_LTE_RX ? B_AX_RX_PLT_GNT_LTE_RX : 0) | 4801e3ec7017SPing-Ke Shih (plt->rx & RTW89_MAC_AX_PLT_GNT_BT_TX ? B_AX_RX_PLT_GNT_BT_TX : 0) | 4802e3ec7017SPing-Ke Shih (plt->rx & RTW89_MAC_AX_PLT_GNT_BT_RX ? B_AX_RX_PLT_GNT_BT_RX : 0) | 480328e7ea8aSPing-Ke Shih (plt->rx & RTW89_MAC_AX_PLT_GNT_WL ? B_AX_RX_PLT_GNT_WL : 0) | 480428e7ea8aSPing-Ke Shih B_AX_PLT_EN; 480528e7ea8aSPing-Ke Shih rtw89_write16(rtwdev, reg, val); 4806e3ec7017SPing-Ke Shih 4807e3ec7017SPing-Ke Shih return 0; 4808e3ec7017SPing-Ke Shih } 4809e3ec7017SPing-Ke Shih 4810e3ec7017SPing-Ke Shih void rtw89_mac_cfg_sb(struct rtw89_dev *rtwdev, u32 val) 4811e3ec7017SPing-Ke Shih { 4812e3ec7017SPing-Ke Shih u32 fw_sb; 4813e3ec7017SPing-Ke Shih 4814e3ec7017SPing-Ke Shih fw_sb = rtw89_read32(rtwdev, R_AX_SCOREBOARD); 4815e3ec7017SPing-Ke Shih fw_sb = FIELD_GET(B_MAC_AX_SB_FW_MASK, fw_sb); 4816e3ec7017SPing-Ke Shih fw_sb = fw_sb & ~B_MAC_AX_BTGS1_NOTIFY; 4817e3ec7017SPing-Ke Shih if (!test_bit(RTW89_FLAG_POWERON, rtwdev->flags)) 4818e3ec7017SPing-Ke Shih fw_sb = fw_sb | MAC_AX_NOTIFY_PWR_MAJOR; 4819e3ec7017SPing-Ke Shih else 4820e3ec7017SPing-Ke Shih fw_sb = fw_sb | MAC_AX_NOTIFY_TP_MAJOR; 4821e3ec7017SPing-Ke Shih val = FIELD_GET(B_MAC_AX_SB_DRV_MASK, val); 4822e3ec7017SPing-Ke Shih val = B_AX_TOGGLE | 4823e3ec7017SPing-Ke Shih FIELD_PREP(B_MAC_AX_SB_DRV_MASK, val) | 4824e3ec7017SPing-Ke Shih FIELD_PREP(B_MAC_AX_SB_FW_MASK, fw_sb); 4825e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, R_AX_SCOREBOARD, val); 4826e3ec7017SPing-Ke Shih fsleep(1000); /* avoid BT FW loss information */ 4827e3ec7017SPing-Ke Shih } 4828e3ec7017SPing-Ke Shih 4829e3ec7017SPing-Ke Shih u32 rtw89_mac_get_sb(struct rtw89_dev *rtwdev) 4830e3ec7017SPing-Ke Shih { 4831e3ec7017SPing-Ke Shih return rtw89_read32(rtwdev, R_AX_SCOREBOARD); 4832e3ec7017SPing-Ke Shih } 4833e3ec7017SPing-Ke Shih 4834e3ec7017SPing-Ke Shih int rtw89_mac_cfg_ctrl_path(struct rtw89_dev *rtwdev, bool wl) 4835e3ec7017SPing-Ke Shih { 4836e3ec7017SPing-Ke Shih u8 val = rtw89_read8(rtwdev, R_AX_SYS_SDIO_CTRL + 3); 4837e3ec7017SPing-Ke Shih 4838e3ec7017SPing-Ke Shih val = wl ? val | BIT(2) : val & ~BIT(2); 4839e3ec7017SPing-Ke Shih rtw89_write8(rtwdev, R_AX_SYS_SDIO_CTRL + 3, val); 4840e3ec7017SPing-Ke Shih 4841e3ec7017SPing-Ke Shih return 0; 4842e3ec7017SPing-Ke Shih } 4843feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_ctrl_path); 4844feed6541SChia-Yuan Li 4845feed6541SChia-Yuan Li int rtw89_mac_cfg_ctrl_path_v1(struct rtw89_dev *rtwdev, bool wl) 4846feed6541SChia-Yuan Li { 4847feed6541SChia-Yuan Li struct rtw89_btc *btc = &rtwdev->btc; 4848feed6541SChia-Yuan Li struct rtw89_btc_dm *dm = &btc->dm; 4849feed6541SChia-Yuan Li struct rtw89_mac_ax_gnt *g = dm->gnt.band; 4850feed6541SChia-Yuan Li int i; 4851feed6541SChia-Yuan Li 4852feed6541SChia-Yuan Li if (wl) 4853feed6541SChia-Yuan Li return 0; 4854feed6541SChia-Yuan Li 4855feed6541SChia-Yuan Li for (i = 0; i < RTW89_PHY_MAX; i++) { 4856feed6541SChia-Yuan Li g[i].gnt_bt_sw_en = 1; 4857feed6541SChia-Yuan Li g[i].gnt_bt = 1; 4858feed6541SChia-Yuan Li g[i].gnt_wl_sw_en = 1; 4859feed6541SChia-Yuan Li g[i].gnt_wl = 0; 4860feed6541SChia-Yuan Li } 4861feed6541SChia-Yuan Li 4862feed6541SChia-Yuan Li return rtw89_mac_cfg_gnt_v1(rtwdev, &dm->gnt); 4863feed6541SChia-Yuan Li } 4864feed6541SChia-Yuan Li EXPORT_SYMBOL(rtw89_mac_cfg_ctrl_path_v1); 4865e3ec7017SPing-Ke Shih 4866e3ec7017SPing-Ke Shih bool rtw89_mac_get_ctrl_path(struct rtw89_dev *rtwdev) 4867e3ec7017SPing-Ke Shih { 4868*ae4e1adbSChing-Te Ku const struct rtw89_chip_info *chip = rtwdev->chip; 4869*ae4e1adbSChing-Te Ku u8 val = 0; 4870e3ec7017SPing-Ke Shih 4871*ae4e1adbSChing-Te Ku if (chip->chip_id == RTL8852C) 4872*ae4e1adbSChing-Te Ku return false; 4873*ae4e1adbSChing-Te Ku else if (chip->chip_id == RTL8852A || chip->chip_id == RTL8852B) 4874*ae4e1adbSChing-Te Ku val = rtw89_read8_mask(rtwdev, R_AX_SYS_SDIO_CTRL + 3, 4875*ae4e1adbSChing-Te Ku B_AX_LTE_MUX_CTRL_PATH >> 24); 4876*ae4e1adbSChing-Te Ku 4877*ae4e1adbSChing-Te Ku return !!val; 4878e3ec7017SPing-Ke Shih } 4879e3ec7017SPing-Ke Shih 48808c7e9cebSChing-Te Ku u16 rtw89_mac_get_plt_cnt(struct rtw89_dev *rtwdev, u8 band) 48818c7e9cebSChing-Te Ku { 48828c7e9cebSChing-Te Ku u32 reg; 48838c7e9cebSChing-Te Ku u16 cnt; 48848c7e9cebSChing-Te Ku 48858c7e9cebSChing-Te Ku reg = rtw89_mac_reg_by_idx(R_AX_BT_PLT, band); 48868c7e9cebSChing-Te Ku cnt = rtw89_read32_mask(rtwdev, reg, B_AX_BT_PLT_PKT_CNT_MASK); 48878c7e9cebSChing-Te Ku rtw89_write16_set(rtwdev, reg, B_AX_BT_PLT_RST); 48888c7e9cebSChing-Te Ku 48898c7e9cebSChing-Te Ku return cnt; 48908c7e9cebSChing-Te Ku } 48918c7e9cebSChing-Te Ku 4892e3ec7017SPing-Ke Shih static void rtw89_mac_bfee_ctrl(struct rtw89_dev *rtwdev, u8 mac_idx, bool en) 4893e3ec7017SPing-Ke Shih { 4894e3ec7017SPing-Ke Shih u32 reg; 4895e3ec7017SPing-Ke Shih u32 mask = B_AX_BFMEE_HT_NDPA_EN | B_AX_BFMEE_VHT_NDPA_EN | 4896e3ec7017SPing-Ke Shih B_AX_BFMEE_HE_NDPA_EN; 4897e3ec7017SPing-Ke Shih 4898e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_BF, "set bfee ndpa_en to %d\n", en); 4899e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_BFMEE_RESP_OPTION, mac_idx); 4900e3ec7017SPing-Ke Shih if (en) { 4901e3ec7017SPing-Ke Shih set_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags); 4902e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, mask); 4903e3ec7017SPing-Ke Shih } else { 4904e3ec7017SPing-Ke Shih clear_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags); 4905e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, reg, mask); 4906e3ec7017SPing-Ke Shih } 4907e3ec7017SPing-Ke Shih } 4908e3ec7017SPing-Ke Shih 4909e3ec7017SPing-Ke Shih static int rtw89_mac_init_bfee(struct rtw89_dev *rtwdev, u8 mac_idx) 4910e3ec7017SPing-Ke Shih { 4911e3ec7017SPing-Ke Shih u32 reg; 4912e3ec7017SPing-Ke Shih u32 val32; 4913e3ec7017SPing-Ke Shih int ret; 4914e3ec7017SPing-Ke Shih 4915e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 4916e3ec7017SPing-Ke Shih if (ret) 4917e3ec7017SPing-Ke Shih return ret; 4918e3ec7017SPing-Ke Shih 4919e3ec7017SPing-Ke Shih /* AP mode set tx gid to 63 */ 4920e3ec7017SPing-Ke Shih /* STA mode set tx gid to 0(default) */ 4921e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_BFMER_CTRL_0, mac_idx); 4922e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_BFMER_NDP_BFEN); 4923e3ec7017SPing-Ke Shih 4924e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RRSC, mac_idx); 4925e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, CSI_RRSC_BMAP); 4926e3ec7017SPing-Ke Shih 4927e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_BFMEE_RESP_OPTION, mac_idx); 4928e3ec7017SPing-Ke Shih val32 = FIELD_PREP(B_AX_BFMEE_BFRP_RX_STANDBY_TIMER_MASK, BFRP_RX_STANDBY_TIMER); 4929e3ec7017SPing-Ke Shih val32 |= FIELD_PREP(B_AX_BFMEE_NDP_RX_STANDBY_TIMER_MASK, NDP_RX_STANDBY_TIMER); 4930e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, val32); 4931e3ec7017SPing-Ke Shih rtw89_mac_bfee_ctrl(rtwdev, mac_idx, true); 4932e3ec7017SPing-Ke Shih 4933e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx); 4934e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL | 4935e3ec7017SPing-Ke Shih B_AX_BFMEE_USE_NSTS | 4936e3ec7017SPing-Ke Shih B_AX_BFMEE_CSI_GID_SEL | 4937e3ec7017SPing-Ke Shih B_AX_BFMEE_CSI_FORCE_RETE_EN); 4938e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RATE, mac_idx); 4939e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, reg, 4940e3ec7017SPing-Ke Shih u32_encode_bits(CSI_INIT_RATE_HT, B_AX_BFMEE_HT_CSI_RATE_MASK) | 4941e3ec7017SPing-Ke Shih u32_encode_bits(CSI_INIT_RATE_VHT, B_AX_BFMEE_VHT_CSI_RATE_MASK) | 4942e3ec7017SPing-Ke Shih u32_encode_bits(CSI_INIT_RATE_HE, B_AX_BFMEE_HE_CSI_RATE_MASK)); 4943e3ec7017SPing-Ke Shih 494462440fbeSPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_CSIRPT_OPTION, mac_idx); 494562440fbeSPing-Ke Shih rtw89_write32_set(rtwdev, reg, 494662440fbeSPing-Ke Shih B_AX_CSIPRT_VHTSU_AID_EN | B_AX_CSIPRT_HESU_AID_EN); 494762440fbeSPing-Ke Shih 4948e3ec7017SPing-Ke Shih return 0; 4949e3ec7017SPing-Ke Shih } 4950e3ec7017SPing-Ke Shih 4951e3ec7017SPing-Ke Shih static int rtw89_mac_set_csi_para_reg(struct rtw89_dev *rtwdev, 4952e3ec7017SPing-Ke Shih struct ieee80211_vif *vif, 4953e3ec7017SPing-Ke Shih struct ieee80211_sta *sta) 4954e3ec7017SPing-Ke Shih { 4955e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 4956e3ec7017SPing-Ke Shih u8 mac_idx = rtwvif->mac_idx; 4957e3ec7017SPing-Ke Shih u8 nc = 1, nr = 3, ng = 0, cb = 1, cs = 1, ldpc_en = 1, stbc_en = 1; 4958e3ec7017SPing-Ke Shih u8 port_sel = rtwvif->port; 4959e3ec7017SPing-Ke Shih u8 sound_dim = 3, t; 4960046d2e7cSSriram R u8 *phy_cap = sta->deflink.he_cap.he_cap_elem.phy_cap_info; 4961e3ec7017SPing-Ke Shih u32 reg; 4962e3ec7017SPing-Ke Shih u16 val; 4963e3ec7017SPing-Ke Shih int ret; 4964e3ec7017SPing-Ke Shih 4965e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 4966e3ec7017SPing-Ke Shih if (ret) 4967e3ec7017SPing-Ke Shih return ret; 4968e3ec7017SPing-Ke Shih 4969e3ec7017SPing-Ke Shih if ((phy_cap[3] & IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER) || 4970e3ec7017SPing-Ke Shih (phy_cap[4] & IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER)) { 4971e3ec7017SPing-Ke Shih ldpc_en &= !!(phy_cap[1] & IEEE80211_HE_PHY_CAP1_LDPC_CODING_IN_PAYLOAD); 4972e3ec7017SPing-Ke Shih stbc_en &= !!(phy_cap[2] & IEEE80211_HE_PHY_CAP2_STBC_RX_UNDER_80MHZ); 4973e3ec7017SPing-Ke Shih t = FIELD_GET(IEEE80211_HE_PHY_CAP5_BEAMFORMEE_NUM_SND_DIM_UNDER_80MHZ_MASK, 4974e3ec7017SPing-Ke Shih phy_cap[5]); 4975e3ec7017SPing-Ke Shih sound_dim = min(sound_dim, t); 4976e3ec7017SPing-Ke Shih } 4977046d2e7cSSriram R if ((sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE) || 4978046d2e7cSSriram R (sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE)) { 4979046d2e7cSSriram R ldpc_en &= !!(sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_RXLDPC); 4980046d2e7cSSriram R stbc_en &= !!(sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_RXSTBC_MASK); 4981e3ec7017SPing-Ke Shih t = FIELD_GET(IEEE80211_VHT_CAP_SOUNDING_DIMENSIONS_MASK, 4982046d2e7cSSriram R sta->deflink.vht_cap.cap); 4983e3ec7017SPing-Ke Shih sound_dim = min(sound_dim, t); 4984e3ec7017SPing-Ke Shih } 4985e3ec7017SPing-Ke Shih nc = min(nc, sound_dim); 4986e3ec7017SPing-Ke Shih nr = min(nr, sound_dim); 4987e3ec7017SPing-Ke Shih 4988e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx); 4989e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL); 4990e3ec7017SPing-Ke Shih 4991e3ec7017SPing-Ke Shih val = FIELD_PREP(B_AX_BFMEE_CSIINFO0_NC_MASK, nc) | 4992e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_NR_MASK, nr) | 4993e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_NG_MASK, ng) | 4994e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_CB_MASK, cb) | 4995e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_CS_MASK, cs) | 4996e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_LDPC_EN, ldpc_en) | 4997e3ec7017SPing-Ke Shih FIELD_PREP(B_AX_BFMEE_CSIINFO0_STBC_EN, stbc_en); 4998e3ec7017SPing-Ke Shih 4999e3ec7017SPing-Ke Shih if (port_sel == 0) 5000e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx); 5001e3ec7017SPing-Ke Shih else 5002e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_1, mac_idx); 5003e3ec7017SPing-Ke Shih 5004e3ec7017SPing-Ke Shih rtw89_write16(rtwdev, reg, val); 5005e3ec7017SPing-Ke Shih 5006e3ec7017SPing-Ke Shih return 0; 5007e3ec7017SPing-Ke Shih } 5008e3ec7017SPing-Ke Shih 5009e3ec7017SPing-Ke Shih static int rtw89_mac_csi_rrsc(struct rtw89_dev *rtwdev, 5010e3ec7017SPing-Ke Shih struct ieee80211_vif *vif, 5011e3ec7017SPing-Ke Shih struct ieee80211_sta *sta) 5012e3ec7017SPing-Ke Shih { 5013e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 5014e3ec7017SPing-Ke Shih u32 rrsc = BIT(RTW89_MAC_BF_RRSC_6M) | BIT(RTW89_MAC_BF_RRSC_24M); 5015e3ec7017SPing-Ke Shih u32 reg; 5016e3ec7017SPing-Ke Shih u8 mac_idx = rtwvif->mac_idx; 5017e3ec7017SPing-Ke Shih int ret; 5018e3ec7017SPing-Ke Shih 5019e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 5020e3ec7017SPing-Ke Shih if (ret) 5021e3ec7017SPing-Ke Shih return ret; 5022e3ec7017SPing-Ke Shih 5023046d2e7cSSriram R if (sta->deflink.he_cap.has_he) { 5024e3ec7017SPing-Ke Shih rrsc |= (BIT(RTW89_MAC_BF_RRSC_HE_MSC0) | 5025e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_HE_MSC3) | 5026e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_HE_MSC5)); 5027e3ec7017SPing-Ke Shih } 5028046d2e7cSSriram R if (sta->deflink.vht_cap.vht_supported) { 5029e3ec7017SPing-Ke Shih rrsc |= (BIT(RTW89_MAC_BF_RRSC_VHT_MSC0) | 5030e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_VHT_MSC3) | 5031e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_VHT_MSC5)); 5032e3ec7017SPing-Ke Shih } 5033046d2e7cSSriram R if (sta->deflink.ht_cap.ht_supported) { 5034e3ec7017SPing-Ke Shih rrsc |= (BIT(RTW89_MAC_BF_RRSC_HT_MSC0) | 5035e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_HT_MSC3) | 5036e3ec7017SPing-Ke Shih BIT(RTW89_MAC_BF_RRSC_HT_MSC5)); 5037e3ec7017SPing-Ke Shih } 5038e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_CTRL_0, mac_idx); 5039e3ec7017SPing-Ke Shih rtw89_write32_set(rtwdev, reg, B_AX_BFMEE_BFPARAM_SEL); 5040e3ec7017SPing-Ke Shih rtw89_write32_clr(rtwdev, reg, B_AX_BFMEE_CSI_FORCE_RETE_EN); 5041e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, 5042e3ec7017SPing-Ke Shih rtw89_mac_reg_by_idx(R_AX_TRXPTCL_RESP_CSI_RRSC, mac_idx), 5043e3ec7017SPing-Ke Shih rrsc); 5044e3ec7017SPing-Ke Shih 5045e3ec7017SPing-Ke Shih return 0; 5046e3ec7017SPing-Ke Shih } 5047e3ec7017SPing-Ke Shih 5048e3ec7017SPing-Ke Shih void rtw89_mac_bf_assoc(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif, 5049e3ec7017SPing-Ke Shih struct ieee80211_sta *sta) 5050e3ec7017SPing-Ke Shih { 5051e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 5052e3ec7017SPing-Ke Shih 5053e3ec7017SPing-Ke Shih if (rtw89_sta_has_beamformer_cap(sta)) { 5054e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_BF, 5055e3ec7017SPing-Ke Shih "initialize bfee for new association\n"); 5056e3ec7017SPing-Ke Shih rtw89_mac_init_bfee(rtwdev, rtwvif->mac_idx); 5057e3ec7017SPing-Ke Shih rtw89_mac_set_csi_para_reg(rtwdev, vif, sta); 5058e3ec7017SPing-Ke Shih rtw89_mac_csi_rrsc(rtwdev, vif, sta); 5059e3ec7017SPing-Ke Shih } 5060e3ec7017SPing-Ke Shih } 5061e3ec7017SPing-Ke Shih 5062e3ec7017SPing-Ke Shih void rtw89_mac_bf_disassoc(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif, 5063e3ec7017SPing-Ke Shih struct ieee80211_sta *sta) 5064e3ec7017SPing-Ke Shih { 5065e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 5066e3ec7017SPing-Ke Shih 5067e3ec7017SPing-Ke Shih rtw89_mac_bfee_ctrl(rtwdev, rtwvif->mac_idx, false); 5068e3ec7017SPing-Ke Shih } 5069e3ec7017SPing-Ke Shih 5070e3ec7017SPing-Ke Shih void rtw89_mac_bf_set_gid_table(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif, 5071e3ec7017SPing-Ke Shih struct ieee80211_bss_conf *conf) 5072e3ec7017SPing-Ke Shih { 5073e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv; 5074e3ec7017SPing-Ke Shih u8 mac_idx = rtwvif->mac_idx; 5075e3ec7017SPing-Ke Shih __le32 *p; 5076e3ec7017SPing-Ke Shih 5077e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_BF, "update bf GID table\n"); 5078e3ec7017SPing-Ke Shih 5079e3ec7017SPing-Ke Shih p = (__le32 *)conf->mu_group.membership; 5080e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION_EN0, mac_idx), 5081e3ec7017SPing-Ke Shih le32_to_cpu(p[0])); 5082e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION_EN1, mac_idx), 5083e3ec7017SPing-Ke Shih le32_to_cpu(p[1])); 5084e3ec7017SPing-Ke Shih 5085e3ec7017SPing-Ke Shih p = (__le32 *)conf->mu_group.position; 5086e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION0, mac_idx), 5087e3ec7017SPing-Ke Shih le32_to_cpu(p[0])); 5088e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION1, mac_idx), 5089e3ec7017SPing-Ke Shih le32_to_cpu(p[1])); 5090e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION2, mac_idx), 5091e3ec7017SPing-Ke Shih le32_to_cpu(p[2])); 5092e3ec7017SPing-Ke Shih rtw89_write32(rtwdev, rtw89_mac_reg_by_idx(R_AX_GID_POSITION3, mac_idx), 5093e3ec7017SPing-Ke Shih le32_to_cpu(p[3])); 5094e3ec7017SPing-Ke Shih } 5095e3ec7017SPing-Ke Shih 5096e3ec7017SPing-Ke Shih struct rtw89_mac_bf_monitor_iter_data { 5097e3ec7017SPing-Ke Shih struct rtw89_dev *rtwdev; 5098e3ec7017SPing-Ke Shih struct ieee80211_sta *down_sta; 5099e3ec7017SPing-Ke Shih int count; 5100e3ec7017SPing-Ke Shih }; 5101e3ec7017SPing-Ke Shih 5102e3ec7017SPing-Ke Shih static 5103e3ec7017SPing-Ke Shih void rtw89_mac_bf_monitor_calc_iter(void *data, struct ieee80211_sta *sta) 5104e3ec7017SPing-Ke Shih { 5105e3ec7017SPing-Ke Shih struct rtw89_mac_bf_monitor_iter_data *iter_data = 5106e3ec7017SPing-Ke Shih (struct rtw89_mac_bf_monitor_iter_data *)data; 5107e3ec7017SPing-Ke Shih struct ieee80211_sta *down_sta = iter_data->down_sta; 5108e3ec7017SPing-Ke Shih int *count = &iter_data->count; 5109e3ec7017SPing-Ke Shih 5110e3ec7017SPing-Ke Shih if (down_sta == sta) 5111e3ec7017SPing-Ke Shih return; 5112e3ec7017SPing-Ke Shih 5113e3ec7017SPing-Ke Shih if (rtw89_sta_has_beamformer_cap(sta)) 5114e3ec7017SPing-Ke Shih (*count)++; 5115e3ec7017SPing-Ke Shih } 5116e3ec7017SPing-Ke Shih 5117e3ec7017SPing-Ke Shih void rtw89_mac_bf_monitor_calc(struct rtw89_dev *rtwdev, 5118e3ec7017SPing-Ke Shih struct ieee80211_sta *sta, bool disconnect) 5119e3ec7017SPing-Ke Shih { 5120e3ec7017SPing-Ke Shih struct rtw89_mac_bf_monitor_iter_data data; 5121e3ec7017SPing-Ke Shih 5122e3ec7017SPing-Ke Shih data.rtwdev = rtwdev; 5123e3ec7017SPing-Ke Shih data.down_sta = disconnect ? sta : NULL; 5124e3ec7017SPing-Ke Shih data.count = 0; 5125e3ec7017SPing-Ke Shih ieee80211_iterate_stations_atomic(rtwdev->hw, 5126e3ec7017SPing-Ke Shih rtw89_mac_bf_monitor_calc_iter, 5127e3ec7017SPing-Ke Shih &data); 5128e3ec7017SPing-Ke Shih 5129e3ec7017SPing-Ke Shih rtw89_debug(rtwdev, RTW89_DBG_BF, "bfee STA count=%d\n", data.count); 5130e3ec7017SPing-Ke Shih if (data.count) 5131e3ec7017SPing-Ke Shih set_bit(RTW89_FLAG_BFEE_MON, rtwdev->flags); 5132e3ec7017SPing-Ke Shih else 5133e3ec7017SPing-Ke Shih clear_bit(RTW89_FLAG_BFEE_MON, rtwdev->flags); 5134e3ec7017SPing-Ke Shih } 5135e3ec7017SPing-Ke Shih 5136e3ec7017SPing-Ke Shih void _rtw89_mac_bf_monitor_track(struct rtw89_dev *rtwdev) 5137e3ec7017SPing-Ke Shih { 5138e3ec7017SPing-Ke Shih struct rtw89_traffic_stats *stats = &rtwdev->stats; 5139e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif; 51401646ce8fSYe Guojin bool en = stats->tx_tfc_lv <= stats->rx_tfc_lv; 5141e3ec7017SPing-Ke Shih bool old = test_bit(RTW89_FLAG_BFEE_EN, rtwdev->flags); 5142e3ec7017SPing-Ke Shih 5143e3ec7017SPing-Ke Shih if (en == old) 5144e3ec7017SPing-Ke Shih return; 5145e3ec7017SPing-Ke Shih 5146e3ec7017SPing-Ke Shih rtw89_for_each_rtwvif(rtwdev, rtwvif) 5147e3ec7017SPing-Ke Shih rtw89_mac_bfee_ctrl(rtwdev, rtwvif->mac_idx, en); 5148e3ec7017SPing-Ke Shih } 5149e3ec7017SPing-Ke Shih 5150e3ec7017SPing-Ke Shih static int 5151e3ec7017SPing-Ke Shih __rtw89_mac_set_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta, 5152e3ec7017SPing-Ke Shih u32 tx_time) 5153e3ec7017SPing-Ke Shih { 5154e3ec7017SPing-Ke Shih #define MAC_AX_DFLT_TX_TIME 5280 5155e3ec7017SPing-Ke Shih u8 mac_idx = rtwsta->rtwvif->mac_idx; 5156e3ec7017SPing-Ke Shih u32 max_tx_time = tx_time == 0 ? MAC_AX_DFLT_TX_TIME : tx_time; 5157e3ec7017SPing-Ke Shih u32 reg; 5158e3ec7017SPing-Ke Shih int ret = 0; 5159e3ec7017SPing-Ke Shih 5160e3ec7017SPing-Ke Shih if (rtwsta->cctl_tx_time) { 5161e3ec7017SPing-Ke Shih rtwsta->ampdu_max_time = (max_tx_time - 512) >> 9; 5162e3ec7017SPing-Ke Shih ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta); 5163e3ec7017SPing-Ke Shih } else { 5164e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 5165e3ec7017SPing-Ke Shih if (ret) { 5166e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "failed to check cmac in set txtime\n"); 5167e3ec7017SPing-Ke Shih return ret; 5168e3ec7017SPing-Ke Shih } 5169e3ec7017SPing-Ke Shih 5170e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_AMPDU_AGG_LIMIT, mac_idx); 5171e3ec7017SPing-Ke Shih rtw89_write32_mask(rtwdev, reg, B_AX_AMPDU_MAX_TIME_MASK, 5172e3ec7017SPing-Ke Shih max_tx_time >> 5); 5173e3ec7017SPing-Ke Shih } 5174e3ec7017SPing-Ke Shih 5175e3ec7017SPing-Ke Shih return ret; 5176e3ec7017SPing-Ke Shih } 5177e3ec7017SPing-Ke Shih 5178e3ec7017SPing-Ke Shih int rtw89_mac_set_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta, 5179e3ec7017SPing-Ke Shih bool resume, u32 tx_time) 5180e3ec7017SPing-Ke Shih { 5181e3ec7017SPing-Ke Shih int ret = 0; 5182e3ec7017SPing-Ke Shih 5183e3ec7017SPing-Ke Shih if (!resume) { 5184e3ec7017SPing-Ke Shih rtwsta->cctl_tx_time = true; 5185e3ec7017SPing-Ke Shih ret = __rtw89_mac_set_tx_time(rtwdev, rtwsta, tx_time); 5186e3ec7017SPing-Ke Shih } else { 5187e3ec7017SPing-Ke Shih ret = __rtw89_mac_set_tx_time(rtwdev, rtwsta, tx_time); 5188e3ec7017SPing-Ke Shih rtwsta->cctl_tx_time = false; 5189e3ec7017SPing-Ke Shih } 5190e3ec7017SPing-Ke Shih 5191e3ec7017SPing-Ke Shih return ret; 5192e3ec7017SPing-Ke Shih } 5193e3ec7017SPing-Ke Shih 5194e3ec7017SPing-Ke Shih int rtw89_mac_get_tx_time(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta, 5195e3ec7017SPing-Ke Shih u32 *tx_time) 5196e3ec7017SPing-Ke Shih { 5197e3ec7017SPing-Ke Shih u8 mac_idx = rtwsta->rtwvif->mac_idx; 5198e3ec7017SPing-Ke Shih u32 reg; 5199e3ec7017SPing-Ke Shih int ret = 0; 5200e3ec7017SPing-Ke Shih 5201e3ec7017SPing-Ke Shih if (rtwsta->cctl_tx_time) { 5202e3ec7017SPing-Ke Shih *tx_time = (rtwsta->ampdu_max_time + 1) << 9; 5203e3ec7017SPing-Ke Shih } else { 5204e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 5205e3ec7017SPing-Ke Shih if (ret) { 5206e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "failed to check cmac in tx_time\n"); 5207e3ec7017SPing-Ke Shih return ret; 5208e3ec7017SPing-Ke Shih } 5209e3ec7017SPing-Ke Shih 5210e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_AMPDU_AGG_LIMIT, mac_idx); 5211e3ec7017SPing-Ke Shih *tx_time = rtw89_read32_mask(rtwdev, reg, B_AX_AMPDU_MAX_TIME_MASK) << 5; 5212e3ec7017SPing-Ke Shih } 5213e3ec7017SPing-Ke Shih 5214e3ec7017SPing-Ke Shih return ret; 5215e3ec7017SPing-Ke Shih } 5216e3ec7017SPing-Ke Shih 5217e3ec7017SPing-Ke Shih int rtw89_mac_set_tx_retry_limit(struct rtw89_dev *rtwdev, 5218e3ec7017SPing-Ke Shih struct rtw89_sta *rtwsta, 5219e3ec7017SPing-Ke Shih bool resume, u8 tx_retry) 5220e3ec7017SPing-Ke Shih { 5221e3ec7017SPing-Ke Shih int ret = 0; 5222e3ec7017SPing-Ke Shih 5223e3ec7017SPing-Ke Shih rtwsta->data_tx_cnt_lmt = tx_retry; 5224e3ec7017SPing-Ke Shih 5225e3ec7017SPing-Ke Shih if (!resume) { 5226e3ec7017SPing-Ke Shih rtwsta->cctl_tx_retry_limit = true; 5227e3ec7017SPing-Ke Shih ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta); 5228e3ec7017SPing-Ke Shih } else { 5229e3ec7017SPing-Ke Shih ret = rtw89_fw_h2c_txtime_cmac_tbl(rtwdev, rtwsta); 5230e3ec7017SPing-Ke Shih rtwsta->cctl_tx_retry_limit = false; 5231e3ec7017SPing-Ke Shih } 5232e3ec7017SPing-Ke Shih 5233e3ec7017SPing-Ke Shih return ret; 5234e3ec7017SPing-Ke Shih } 5235e3ec7017SPing-Ke Shih 5236e3ec7017SPing-Ke Shih int rtw89_mac_get_tx_retry_limit(struct rtw89_dev *rtwdev, 5237e3ec7017SPing-Ke Shih struct rtw89_sta *rtwsta, u8 *tx_retry) 5238e3ec7017SPing-Ke Shih { 5239e3ec7017SPing-Ke Shih u8 mac_idx = rtwsta->rtwvif->mac_idx; 5240e3ec7017SPing-Ke Shih u32 reg; 5241e3ec7017SPing-Ke Shih int ret = 0; 5242e3ec7017SPing-Ke Shih 5243e3ec7017SPing-Ke Shih if (rtwsta->cctl_tx_retry_limit) { 5244e3ec7017SPing-Ke Shih *tx_retry = rtwsta->data_tx_cnt_lmt; 5245e3ec7017SPing-Ke Shih } else { 5246e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 5247e3ec7017SPing-Ke Shih if (ret) { 5248e3ec7017SPing-Ke Shih rtw89_warn(rtwdev, "failed to check cmac in rty_lmt\n"); 5249e3ec7017SPing-Ke Shih return ret; 5250e3ec7017SPing-Ke Shih } 5251e3ec7017SPing-Ke Shih 5252e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_TXCNT, mac_idx); 5253e3ec7017SPing-Ke Shih *tx_retry = rtw89_read32_mask(rtwdev, reg, B_AX_L_TXCNT_LMT_MASK); 5254e3ec7017SPing-Ke Shih } 5255e3ec7017SPing-Ke Shih 5256e3ec7017SPing-Ke Shih return ret; 5257e3ec7017SPing-Ke Shih } 5258e3ec7017SPing-Ke Shih 5259e3ec7017SPing-Ke Shih int rtw89_mac_set_hw_muedca_ctrl(struct rtw89_dev *rtwdev, 5260e3ec7017SPing-Ke Shih struct rtw89_vif *rtwvif, bool en) 5261e3ec7017SPing-Ke Shih { 5262e3ec7017SPing-Ke Shih u8 mac_idx = rtwvif->mac_idx; 5263e3ec7017SPing-Ke Shih u16 set = B_AX_MUEDCA_EN_0 | B_AX_SET_MUEDCATIMER_TF_0; 5264e3ec7017SPing-Ke Shih u32 reg; 5265e3ec7017SPing-Ke Shih u32 ret; 5266e3ec7017SPing-Ke Shih 5267e3ec7017SPing-Ke Shih ret = rtw89_mac_check_mac_en(rtwdev, mac_idx, RTW89_CMAC_SEL); 5268e3ec7017SPing-Ke Shih if (ret) 5269e3ec7017SPing-Ke Shih return ret; 5270e3ec7017SPing-Ke Shih 5271e3ec7017SPing-Ke Shih reg = rtw89_mac_reg_by_idx(R_AX_MUEDCA_EN, mac_idx); 5272e3ec7017SPing-Ke Shih if (en) 5273e3ec7017SPing-Ke Shih rtw89_write16_set(rtwdev, reg, set); 5274e3ec7017SPing-Ke Shih else 5275e3ec7017SPing-Ke Shih rtw89_write16_clr(rtwdev, reg, set); 5276e3ec7017SPing-Ke Shih 5277e3ec7017SPing-Ke Shih return 0; 5278e3ec7017SPing-Ke Shih } 52792a7e54dbSPing-Ke Shih 52802a7e54dbSPing-Ke Shih int rtw89_mac_write_xtal_si(struct rtw89_dev *rtwdev, u8 offset, u8 val, u8 mask) 52812a7e54dbSPing-Ke Shih { 52822a7e54dbSPing-Ke Shih u32 val32; 52832a7e54dbSPing-Ke Shih int ret; 52842a7e54dbSPing-Ke Shih 52852a7e54dbSPing-Ke Shih val32 = FIELD_PREP(B_AX_WL_XTAL_SI_ADDR_MASK, offset) | 52862a7e54dbSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_DATA_MASK, val) | 52872a7e54dbSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_BITMASK_MASK, mask) | 52882a7e54dbSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_MODE_MASK, XTAL_SI_NORMAL_WRITE) | 52892a7e54dbSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_CMD_POLL, 1); 52902a7e54dbSPing-Ke Shih rtw89_write32(rtwdev, R_AX_WLAN_XTAL_SI_CTRL, val32); 52912a7e54dbSPing-Ke Shih 52922a7e54dbSPing-Ke Shih ret = read_poll_timeout(rtw89_read32, val32, !(val32 & B_AX_WL_XTAL_SI_CMD_POLL), 52932a7e54dbSPing-Ke Shih 50, 50000, false, rtwdev, R_AX_WLAN_XTAL_SI_CTRL); 52942a7e54dbSPing-Ke Shih if (ret) { 52952a7e54dbSPing-Ke Shih rtw89_warn(rtwdev, "xtal si not ready(W): offset=%x val=%x mask=%x\n", 52962a7e54dbSPing-Ke Shih offset, val, mask); 52972a7e54dbSPing-Ke Shih return ret; 52982a7e54dbSPing-Ke Shih } 52992a7e54dbSPing-Ke Shih 53002a7e54dbSPing-Ke Shih return 0; 53012a7e54dbSPing-Ke Shih } 53022a7e54dbSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_write_xtal_si); 5303bdfbf06cSPing-Ke Shih 5304bdfbf06cSPing-Ke Shih int rtw89_mac_read_xtal_si(struct rtw89_dev *rtwdev, u8 offset, u8 *val) 5305bdfbf06cSPing-Ke Shih { 5306bdfbf06cSPing-Ke Shih u32 val32; 5307bdfbf06cSPing-Ke Shih int ret; 5308bdfbf06cSPing-Ke Shih 5309bdfbf06cSPing-Ke Shih val32 = FIELD_PREP(B_AX_WL_XTAL_SI_ADDR_MASK, offset) | 5310bdfbf06cSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_DATA_MASK, 0x00) | 5311bdfbf06cSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_BITMASK_MASK, 0x00) | 5312bdfbf06cSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_MODE_MASK, XTAL_SI_NORMAL_READ) | 5313bdfbf06cSPing-Ke Shih FIELD_PREP(B_AX_WL_XTAL_SI_CMD_POLL, 1); 5314bdfbf06cSPing-Ke Shih rtw89_write32(rtwdev, R_AX_WLAN_XTAL_SI_CTRL, val32); 5315bdfbf06cSPing-Ke Shih 5316bdfbf06cSPing-Ke Shih ret = read_poll_timeout(rtw89_read32, val32, !(val32 & B_AX_WL_XTAL_SI_CMD_POLL), 5317bdfbf06cSPing-Ke Shih 50, 50000, false, rtwdev, R_AX_WLAN_XTAL_SI_CTRL); 5318bdfbf06cSPing-Ke Shih if (ret) { 5319bdfbf06cSPing-Ke Shih rtw89_warn(rtwdev, "xtal si not ready(R): offset=%x\n", offset); 5320bdfbf06cSPing-Ke Shih return ret; 5321bdfbf06cSPing-Ke Shih } 5322bdfbf06cSPing-Ke Shih 5323bdfbf06cSPing-Ke Shih *val = rtw89_read8(rtwdev, R_AX_WLAN_XTAL_SI_CTRL + 1); 5324bdfbf06cSPing-Ke Shih 5325bdfbf06cSPing-Ke Shih return 0; 5326bdfbf06cSPing-Ke Shih } 532708484e1fSPing-Ke Shih EXPORT_SYMBOL(rtw89_mac_read_xtal_si); 53289a785583SZong-Zhe Yang 53299a785583SZong-Zhe Yang static 53309a785583SZong-Zhe Yang void rtw89_mac_pkt_drop_sta(struct rtw89_dev *rtwdev, struct rtw89_sta *rtwsta) 53319a785583SZong-Zhe Yang { 53329a785583SZong-Zhe Yang static const enum rtw89_pkt_drop_sel sels[] = { 53339a785583SZong-Zhe Yang RTW89_PKT_DROP_SEL_MACID_BE_ONCE, 53349a785583SZong-Zhe Yang RTW89_PKT_DROP_SEL_MACID_BK_ONCE, 53359a785583SZong-Zhe Yang RTW89_PKT_DROP_SEL_MACID_VI_ONCE, 53369a785583SZong-Zhe Yang RTW89_PKT_DROP_SEL_MACID_VO_ONCE, 53379a785583SZong-Zhe Yang }; 53389a785583SZong-Zhe Yang struct rtw89_vif *rtwvif = rtwsta->rtwvif; 53399a785583SZong-Zhe Yang struct rtw89_pkt_drop_params params = {0}; 53409a785583SZong-Zhe Yang int i; 53419a785583SZong-Zhe Yang 53429a785583SZong-Zhe Yang params.mac_band = RTW89_MAC_0; 53439a785583SZong-Zhe Yang params.macid = rtwsta->mac_id; 53449a785583SZong-Zhe Yang params.port = rtwvif->port; 53459a785583SZong-Zhe Yang params.mbssid = 0; 53469a785583SZong-Zhe Yang params.tf_trs = rtwvif->trigger; 53479a785583SZong-Zhe Yang 53489a785583SZong-Zhe Yang for (i = 0; i < ARRAY_SIZE(sels); i++) { 53499a785583SZong-Zhe Yang params.sel = sels[i]; 53509a785583SZong-Zhe Yang rtw89_fw_h2c_pkt_drop(rtwdev, ¶ms); 53519a785583SZong-Zhe Yang } 53529a785583SZong-Zhe Yang } 53539a785583SZong-Zhe Yang 53549a785583SZong-Zhe Yang static void rtw89_mac_pkt_drop_vif_iter(void *data, struct ieee80211_sta *sta) 53559a785583SZong-Zhe Yang { 53569a785583SZong-Zhe Yang struct rtw89_sta *rtwsta = (struct rtw89_sta *)sta->drv_priv; 53579a785583SZong-Zhe Yang struct rtw89_vif *rtwvif = rtwsta->rtwvif; 53589a785583SZong-Zhe Yang struct rtw89_dev *rtwdev = rtwvif->rtwdev; 53599a785583SZong-Zhe Yang struct rtw89_vif *target = data; 53609a785583SZong-Zhe Yang 53619a785583SZong-Zhe Yang if (rtwvif != target) 53629a785583SZong-Zhe Yang return; 53639a785583SZong-Zhe Yang 53649a785583SZong-Zhe Yang rtw89_mac_pkt_drop_sta(rtwdev, rtwsta); 53659a785583SZong-Zhe Yang } 53669a785583SZong-Zhe Yang 53679a785583SZong-Zhe Yang void rtw89_mac_pkt_drop_vif(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif) 53689a785583SZong-Zhe Yang { 53699a785583SZong-Zhe Yang ieee80211_iterate_stations_atomic(rtwdev->hw, 53709a785583SZong-Zhe Yang rtw89_mac_pkt_drop_vif_iter, 53719a785583SZong-Zhe Yang rtwvif); 53729a785583SZong-Zhe Yang } 537341d56769SChih-Kang Chang 537441d56769SChih-Kang Chang int rtw89_mac_ptk_drop_by_band_and_wait(struct rtw89_dev *rtwdev, 537541d56769SChih-Kang Chang enum rtw89_mac_idx band) 537641d56769SChih-Kang Chang { 537741d56769SChih-Kang Chang struct rtw89_pkt_drop_params params = {0}; 537841d56769SChih-Kang Chang bool empty; 537941d56769SChih-Kang Chang int i, ret = 0, try_cnt = 3; 538041d56769SChih-Kang Chang 538141d56769SChih-Kang Chang params.mac_band = band; 538241d56769SChih-Kang Chang params.sel = RTW89_PKT_DROP_SEL_BAND_ONCE; 538341d56769SChih-Kang Chang 538441d56769SChih-Kang Chang for (i = 0; i < try_cnt; i++) { 538541d56769SChih-Kang Chang ret = read_poll_timeout(mac_is_txq_empty, empty, empty, 50, 538641d56769SChih-Kang Chang 50000, false, rtwdev); 538741d56769SChih-Kang Chang if (ret) 538841d56769SChih-Kang Chang rtw89_fw_h2c_pkt_drop(rtwdev, ¶ms); 538941d56769SChih-Kang Chang else 539041d56769SChih-Kang Chang return 0; 539141d56769SChih-Kang Chang } 539241d56769SChih-Kang Chang return ret; 539341d56769SChih-Kang Chang } 5394