1 /* SPDX-License-Identifier: ISC */ 2 /* Copyright (C) 2020 MediaTek Inc. */ 3 4 #ifndef __MT7915_REGS_H 5 #define __MT7915_REGS_H 6 7 /* MCU WFDMA0 */ 8 #define MT_MCU_WFDMA0_BASE 0x2000 9 #define MT_MCU_WFDMA0(ofs) (MT_MCU_WFDMA0_BASE + (ofs)) 10 #define MT_MCU_WFDMA0_DUMMY_CR MT_MCU_WFDMA0(0x120) 11 12 /* MCU WFDMA1 */ 13 #define MT_MCU_WFDMA1_BASE 0x3000 14 #define MT_MCU_WFDMA1(ofs) (MT_MCU_WFDMA1_BASE + (ofs)) 15 16 #define MT_MCU_INT_EVENT MT_MCU_WFDMA1(0x108) 17 #define MT_MCU_INT_EVENT_DMA_STOPPED BIT(0) 18 #define MT_MCU_INT_EVENT_DMA_INIT BIT(1) 19 #define MT_MCU_INT_EVENT_SER_TRIGGER BIT(2) 20 #define MT_MCU_INT_EVENT_RESET_DONE BIT(3) 21 22 #define MT_PLE_BASE 0x8000 23 #define MT_PLE(ofs) (MT_PLE_BASE + (ofs)) 24 25 #define MT_FL_Q_EMPTY 0x0b0 26 #define MT_FL_Q0_CTRL 0x1b0 27 #define MT_FL_Q2_CTRL 0x1b8 28 #define MT_FL_Q3_CTRL 0x1bc 29 30 #define MT_PLE_FREEPG_CNT MT_PLE(0x100) 31 #define MT_PLE_FREEPG_HEAD_TAIL MT_PLE(0x104) 32 #define MT_PLE_PG_HIF_GROUP MT_PLE(0x110) 33 #define MT_PLE_HIF_PG_INFO MT_PLE(0x114) 34 #define MT_PLE_AC_QEMPTY(ac, n) MT_PLE(0x500 + 0x40 * (ac) + \ 35 ((n) << 2)) 36 #define MT_PLE_AMSDU_PACK_MSDU_CNT(n) MT_PLE(0x10e0 + ((n) << 2)) 37 38 #define MT_PSE_BASE 0xc000 39 #define MT_PSE(ofs) (MT_PSE_BASE + (ofs)) 40 41 #define MT_MDP_BASE 0xf000 42 #define MT_MDP(ofs) (MT_MDP_BASE + (ofs)) 43 44 #define MT_MDP_DCR0 MT_MDP(0x000) 45 #define MT_MDP_DCR0_DAMSDU_EN BIT(15) 46 47 #define MT_MDP_DCR1 MT_MDP(0x004) 48 #define MT_MDP_DCR1_MAX_RX_LEN GENMASK(15, 3) 49 50 #define MT_MDP_BNRCFR0(_band) MT_MDP(0x070 + ((_band) << 8)) 51 #define MT_MDP_RCFR0_MCU_RX_MGMT GENMASK(5, 4) 52 #define MT_MDP_RCFR0_MCU_RX_CTL_NON_BAR GENMASK(7, 6) 53 #define MT_MDP_RCFR0_MCU_RX_CTL_BAR GENMASK(9, 8) 54 55 #define MT_MDP_BNRCFR1(_band) MT_MDP(0x074 + ((_band) << 8)) 56 #define MT_MDP_RCFR1_MCU_RX_BYPASS GENMASK(23, 22) 57 #define MT_MDP_RCFR1_RX_DROPPED_UCAST GENMASK(28, 27) 58 #define MT_MDP_RCFR1_RX_DROPPED_MCAST GENMASK(30, 29) 59 #define MT_MDP_TO_HIF 0 60 #define MT_MDP_TO_WM 1 61 62 /* TMAC: band 0(0x21000), band 1(0xa1000) */ 63 #define MT_WF_TMAC_BASE(_band) ((_band) ? 0xa1000 : 0x21000) 64 #define MT_WF_TMAC(_band, ofs) (MT_WF_TMAC_BASE(_band) + (ofs)) 65 66 #define MT_TMAC_TCR0(_band) MT_WF_TMAC(_band, 0) 67 #define MT_TMAC_TCR0_TX_BLINK GENMASK(7, 6) 68 #define MT_TMAC_TCR0_TBTT_STOP_CTRL BIT(25) 69 70 #define MT_TMAC_CDTR(_band) MT_WF_TMAC(_band, 0x090) 71 #define MT_TMAC_ODTR(_band) MT_WF_TMAC(_band, 0x094) 72 #define MT_TIMEOUT_VAL_PLCP GENMASK(15, 0) 73 #define MT_TIMEOUT_VAL_CCA GENMASK(31, 16) 74 75 #define MT_TMAC_ATCR(_band) MT_WF_TMAC(_band, 0x098) 76 #define MT_TMAC_ATCR_TXV_TOUT GENMASK(7, 0) 77 78 #define MT_TMAC_TRCR0(_band) MT_WF_TMAC(_band, 0x09c) 79 #define MT_TMAC_TRCR0_TR2T_CHK GENMASK(8, 0) 80 #define MT_TMAC_TRCR0_I2T_CHK GENMASK(24, 16) 81 82 #define MT_TMAC_ICR0(_band) MT_WF_TMAC(_band, 0x0a4) 83 #define MT_IFS_EIFS_OFDM GENMASK(8, 0) 84 #define MT_IFS_RIFS GENMASK(14, 10) 85 #define MT_IFS_SIFS GENMASK(22, 16) 86 #define MT_IFS_SLOT GENMASK(30, 24) 87 88 #define MT_TMAC_ICR1(_band) MT_WF_TMAC(_band, 0x0b4) 89 #define MT_IFS_EIFS_CCK GENMASK(8, 0) 90 91 #define MT_TMAC_CTCR0(_band) MT_WF_TMAC(_band, 0x0f4) 92 #define MT_TMAC_CTCR0_INS_DDLMT_REFTIME GENMASK(5, 0) 93 #define MT_TMAC_CTCR0_INS_DDLMT_EN BIT(17) 94 #define MT_TMAC_CTCR0_INS_DDLMT_VHT_SMPDU_EN BIT(18) 95 96 #define MT_TMAC_TFCR0(_band) MT_WF_TMAC(_band, 0x1e0) 97 98 #define MT_WF_DMA_BASE(_band) ((_band) ? 0xa1e00 : 0x21e00) 99 #define MT_WF_DMA(_band, ofs) (MT_WF_DMA_BASE(_band) + (ofs)) 100 101 #define MT_DMA_DCR0(_band) MT_WF_DMA(_band, 0x000) 102 #define MT_DMA_DCR0_MAX_RX_LEN GENMASK(15, 3) 103 #define MT_DMA_DCR0_RXD_G5_EN BIT(23) 104 105 /* ETBF: band 0(0x24000), band 1(0xa4000) */ 106 #define MT_WF_ETBF_BASE(_band) ((_band) ? 0xa4000 : 0x24000) 107 #define MT_WF_ETBF(_band, ofs) (MT_WF_ETBF_BASE(_band) + (ofs)) 108 109 #define MT_ETBF_TX_NDP_BFRP(_band) MT_WF_ETBF(_band, 0x040) 110 #define MT_ETBF_TX_FB_CPL GENMASK(31, 16) 111 #define MT_ETBF_TX_FB_TRI GENMASK(15, 0) 112 113 #define MT_ETBF_RX_FB_CONT(_band) MT_WF_ETBF(_band, 0x068) 114 #define MT_ETBF_RX_FB_BW GENMASK(7, 6) 115 #define MT_ETBF_RX_FB_NC GENMASK(5, 3) 116 #define MT_ETBF_RX_FB_NR GENMASK(2, 0) 117 118 #define MT_ETBF_TX_APP_CNT(_band) MT_WF_ETBF(_band, 0x0f0) 119 #define MT_ETBF_TX_IBF_CNT GENMASK(31, 16) 120 #define MT_ETBF_TX_EBF_CNT GENMASK(15, 0) 121 122 #define MT_ETBF_RX_FB_CNT(_band) MT_WF_ETBF(_band, 0x0f8) 123 #define MT_ETBF_RX_FB_ALL GENMASK(31, 24) 124 #define MT_ETBF_RX_FB_HE GENMASK(23, 16) 125 #define MT_ETBF_RX_FB_VHT GENMASK(15, 8) 126 #define MT_ETBF_RX_FB_HT GENMASK(7, 0) 127 128 /* LPON: band 0(0x24200), band 1(0xa4200) */ 129 #define MT_WF_LPON_BASE(_band) ((_band) ? 0xa4200 : 0x24200) 130 #define MT_WF_LPON(_band, ofs) (MT_WF_LPON_BASE(_band) + (ofs)) 131 132 #define MT_LPON_UTTR0(_band) MT_WF_LPON(_band, 0x080) 133 #define MT_LPON_UTTR1(_band) MT_WF_LPON(_band, 0x084) 134 135 #define MT_LPON_TCR(_band, n) MT_WF_LPON(_band, 0x0a8 + (n) * 4) 136 #define MT_LPON_TCR_SW_MODE GENMASK(1, 0) 137 #define MT_LPON_TCR_SW_WRITE BIT(0) 138 #define MT_LPON_TCR_SW_ADJUST BIT(1) 139 #define MT_LPON_TCR_SW_READ GENMASK(1, 0) 140 141 /* MIB: band 0(0x24800), band 1(0xa4800) */ 142 /* These counters are (mostly?) clear-on-read. So, some should not 143 * be read at all in case firmware is already reading them. These 144 * are commented with 'DNR' below. The DNR stats will be read by querying 145 * the firmware API for the appropriate message. For counters the driver 146 * does read, the driver should accumulate the counters. 147 */ 148 #define MT_WF_MIB_BASE(_band) ((_band) ? 0xa4800 : 0x24800) 149 #define MT_WF_MIB(_band, ofs) (MT_WF_MIB_BASE(_band) + (ofs)) 150 151 #define MT_MIB_SDR0(_band) MT_WF_MIB(_band, 0x010) 152 #define MT_MIB_SDR0_BERACON_TX_CNT_MASK GENMASK(15, 0) 153 154 #define MT_MIB_SDR3(_band) MT_WF_MIB(_band, 0x014) 155 #define MT_MIB_SDR3_FCS_ERR_MASK GENMASK(15, 0) 156 157 #define MT_MIB_SDR4(_band) MT_WF_MIB(_band, 0x018) 158 #define MT_MIB_SDR4_RX_FIFO_FULL_MASK GENMASK(15, 0) 159 160 /* rx mpdu counter, full 32 bits */ 161 #define MT_MIB_SDR5(_band) MT_WF_MIB(_band, 0x01c) 162 163 #define MT_MIB_SDR6(_band) MT_WF_MIB(_band, 0x020) 164 #define MT_MIB_SDR6_CHANNEL_IDL_CNT_MASK GENMASK(15, 0) 165 166 #define MT_MIB_SDR7(_band) MT_WF_MIB(_band, 0x024) 167 #define MT_MIB_SDR7_RX_VECTOR_MISMATCH_CNT_MASK GENMASK(15, 0) 168 169 #define MT_MIB_SDR8(_band) MT_WF_MIB(_band, 0x028) 170 #define MT_MIB_SDR8_RX_DELIMITER_FAIL_CNT_MASK GENMASK(15, 0) 171 172 /* aka CCA_NAV_TX_TIME */ 173 #define MT_MIB_SDR9_DNR(_band) MT_WF_MIB(_band, 0x02c) 174 #define MT_MIB_SDR9_CCA_BUSY_TIME_MASK GENMASK(23, 0) 175 176 #define MT_MIB_SDR10_DNR(_band) MT_WF_MIB(_band, 0x030) 177 #define MT_MIB_SDR10_MRDY_COUNT_MASK GENMASK(25, 0) 178 179 #define MT_MIB_SDR11(_band) MT_WF_MIB(_band, 0x034) 180 #define MT_MIB_SDR11_RX_LEN_MISMATCH_CNT_MASK GENMASK(15, 0) 181 182 /* tx ampdu cnt, full 32 bits */ 183 #define MT_MIB_SDR12(_band) MT_WF_MIB(_band, 0x038) 184 185 #define MT_MIB_SDR13(_band) MT_WF_MIB(_band, 0x03c) 186 #define MT_MIB_SDR13_TX_STOP_Q_EMPTY_CNT_MASK GENMASK(15, 0) 187 188 /* counts all mpdus in ampdu, regardless of success */ 189 #define MT_MIB_SDR14(_band) MT_WF_MIB(_band, 0x040) 190 #define MT_MIB_SDR14_TX_MPDU_ATTEMPTS_CNT_MASK GENMASK(23, 0) 191 192 /* counts all successfully tx'd mpdus in ampdu */ 193 #define MT_MIB_SDR15(_band) MT_WF_MIB(_band, 0x044) 194 #define MT_MIB_SDR15_TX_MPDU_SUCCESS_CNT_MASK GENMASK(23, 0) 195 196 /* in units of 'us' */ 197 #define MT_MIB_SDR16_DNR(_band) MT_WF_MIB(_band, 0x048) 198 #define MT_MIB_SDR16_PRIMARY_CCA_BUSY_TIME_MASK GENMASK(23, 0) 199 200 #define MT_MIB_SDR17_DNR(_band) MT_WF_MIB(_band, 0x04c) 201 #define MT_MIB_SDR17_SECONDARY_CCA_BUSY_TIME_MASK GENMASK(23, 0) 202 203 #define MT_MIB_SDR18(_band) MT_WF_MIB(_band, 0x050) 204 #define MT_MIB_SDR18_PRIMARY_ENERGY_DETECT_TIME_MASK GENMASK(23, 0) 205 206 /* units are us */ 207 #define MT_MIB_SDR19_DNR(_band) MT_WF_MIB(_band, 0x054) 208 #define MT_MIB_SDR19_CCK_MDRDY_TIME_MASK GENMASK(23, 0) 209 210 #define MT_MIB_SDR20_DNR(_band) MT_WF_MIB(_band, 0x058) 211 #define MT_MIB_SDR20_OFDM_VHT_MDRDY_TIME_MASK GENMASK(23, 0) 212 213 #define MT_MIB_SDR21_DNR(_band) MT_WF_MIB(_band, 0x05c) 214 #define MT_MIB_SDR20_GREEN_MDRDY_TIME_MASK GENMASK(23, 0) 215 216 /* rx ampdu count, 32-bit */ 217 #define MT_MIB_SDR22(_band) MT_WF_MIB(_band, 0x060) 218 219 /* rx ampdu bytes count, 32-bit */ 220 #define MT_MIB_SDR23(_band) MT_WF_MIB(_band, 0x064) 221 222 /* rx ampdu valid subframe count */ 223 #define MT_MIB_SDR24(_band) MT_WF_MIB(_band, 0x068) 224 #define MT_MIB_SDR24_RX_AMPDU_SF_CNT_MASK GENMASK(23, 0) 225 226 /* rx ampdu valid subframe bytes count, 32bits */ 227 #define MT_MIB_SDR25(_band) MT_WF_MIB(_band, 0x06c) 228 229 /* remaining windows protected stats */ 230 #define MT_MIB_SDR27(_band) MT_WF_MIB(_band, 0x074) 231 #define MT_MIB_SDR27_TX_RWP_FAIL_CNT_MASK GENMASK(15, 0) 232 233 #define MT_MIB_SDR28(_band) MT_WF_MIB(_band, 0x078) 234 #define MT_MIB_SDR28_TX_RWP_NEED_CNT_MASK GENMASK(15, 0) 235 236 #define MT_MIB_SDR29(_band) MT_WF_MIB(_band, 0x07c) 237 #define MT_MIB_SDR29_RX_PFDROP_CNT_MASK GENMASK(7, 0) 238 239 #define MT_MIB_SDR30(_band) MT_WF_MIB(_band, 0x080) 240 #define MT_MIB_SDR30_RX_VEC_QUEUE_OVERFLOW_DROP_CNT_MASK GENMASK(15, 0) 241 242 /* rx blockack count, 32 bits */ 243 #define MT_MIB_SDR31(_band) MT_WF_MIB(_band, 0x084) 244 245 #define MT_MIB_SDR32(_band) MT_WF_MIB(_band, 0x088) 246 #define MT_MIB_SDR32_TX_PKT_EBF_CNT_MASK GENMASK(15, 0) 247 248 #define MT_MIB_SDR33(_band) MT_WF_MIB(_band, 0x08c) 249 #define MT_MIB_SDR33_TX_PKT_IBF_CNT_MASK GENMASK(15, 0) 250 251 #define MT_MIB_SDR34(_band) MT_WF_MIB(_band, 0x090) 252 #define MT_MIB_MU_BF_TX_CNT GENMASK(15, 0) 253 254 /* 36, 37 both DNR */ 255 256 #define MT_MIB_DR8(_band) MT_WF_MIB(_band, 0x0c0) 257 #define MT_MIB_DR9(_band) MT_WF_MIB(_band, 0x0c4) 258 #define MT_MIB_DR11(_band) MT_WF_MIB(_band, 0x0cc) 259 260 #define MT_MIB_MB_SDR0(_band, n) MT_WF_MIB(_band, 0x100 + ((n) << 4)) 261 #define MT_MIB_RTS_RETRIES_COUNT_MASK GENMASK(31, 16) 262 #define MT_MIB_RTS_COUNT_MASK GENMASK(15, 0) 263 264 #define MT_MIB_MB_SDR1(_band, n) MT_WF_MIB(_band, 0x104 + ((n) << 4)) 265 #define MT_MIB_BA_MISS_COUNT_MASK GENMASK(15, 0) 266 #define MT_MIB_ACK_FAIL_COUNT_MASK GENMASK(31, 16) 267 268 #define MT_TX_AGG_CNT(_band, n) MT_WF_MIB(_band, 0x0a8 + ((n) << 2)) 269 #define MT_TX_AGG_CNT2(_band, n) MT_WF_MIB(_band, 0x164 + ((n) << 2)) 270 #define MT_MIB_ARNG(_band, n) MT_WF_MIB(_band, 0x4b8 + ((n) << 2)) 271 #define MT_MIB_ARNCR_RANGE(val, n) (((val) >> ((n) << 3)) & GENMASK(7, 0)) 272 273 #define MT_WTBLON_TOP_BASE 0x34000 274 #define MT_WTBLON_TOP(ofs) (MT_WTBLON_TOP_BASE + (ofs)) 275 #define MT_WTBLON_TOP_WDUCR MT_WTBLON_TOP(0x0) 276 #define MT_WTBLON_TOP_WDUCR_GROUP GENMASK(2, 0) 277 278 #define MT_WTBL_UPDATE MT_WTBLON_TOP(0x030) 279 #define MT_WTBL_UPDATE_WLAN_IDX GENMASK(9, 0) 280 #define MT_WTBL_UPDATE_ADM_COUNT_CLEAR BIT(12) 281 #define MT_WTBL_UPDATE_BUSY BIT(31) 282 283 #define MT_WTBL_BASE 0x38000 284 #define MT_WTBL_LMAC_ID GENMASK(14, 8) 285 #define MT_WTBL_LMAC_DW GENMASK(7, 2) 286 #define MT_WTBL_LMAC_OFFS(_id, _dw) (MT_WTBL_BASE | \ 287 FIELD_PREP(MT_WTBL_LMAC_ID, _id) | \ 288 FIELD_PREP(MT_WTBL_LMAC_DW, _dw)) 289 290 /* AGG: band 0(0x20800), band 1(0xa0800) */ 291 #define MT_WF_AGG_BASE(_band) ((_band) ? 0xa0800 : 0x20800) 292 #define MT_WF_AGG(_band, ofs) (MT_WF_AGG_BASE(_band) + (ofs)) 293 294 #define MT_AGG_AWSCR0(_band, _n) MT_WF_AGG(_band, 0x05c + (_n) * 4) 295 #define MT_AGG_PCR0(_band, _n) MT_WF_AGG(_band, 0x06c + (_n) * 4) 296 #define MT_AGG_PCR0_MM_PROT BIT(0) 297 #define MT_AGG_PCR0_GF_PROT BIT(1) 298 #define MT_AGG_PCR0_BW20_PROT BIT(2) 299 #define MT_AGG_PCR0_BW40_PROT BIT(4) 300 #define MT_AGG_PCR0_BW80_PROT BIT(6) 301 #define MT_AGG_PCR0_ERP_PROT GENMASK(12, 8) 302 #define MT_AGG_PCR0_VHT_PROT BIT(13) 303 #define MT_AGG_PCR0_PTA_WIN_DIS BIT(15) 304 305 #define MT_AGG_PCR1_RTS0_NUM_THRES GENMASK(31, 23) 306 #define MT_AGG_PCR1_RTS0_LEN_THRES GENMASK(19, 0) 307 308 #define MT_AGG_ACR0(_band) MT_WF_AGG(_band, 0x084) 309 #define MT_AGG_ACR_CFEND_RATE GENMASK(13, 0) 310 #define MT_AGG_ACR_BAR_RATE GENMASK(29, 16) 311 312 #define MT_AGG_MRCR(_band) MT_WF_AGG(_band, 0x098) 313 #define MT_AGG_MRCR_BAR_CNT_LIMIT GENMASK(15, 12) 314 #define MT_AGG_MRCR_LAST_RTS_CTS_RN BIT(6) 315 #define MT_AGG_MRCR_RTS_FAIL_LIMIT GENMASK(11, 7) 316 #define MT_AGG_MRCR_TXCMD_RTS_FAIL_LIMIT GENMASK(28, 24) 317 318 #define MT_AGG_ATCR1(_band) MT_WF_AGG(_band, 0x0f0) 319 #define MT_AGG_ATCR3(_band) MT_WF_AGG(_band, 0x0f4) 320 321 /* ARB: band 0(0x20c00), band 1(0xa0c00) */ 322 #define MT_WF_ARB_BASE(_band) ((_band) ? 0xa0c00 : 0x20c00) 323 #define MT_WF_ARB(_band, ofs) (MT_WF_ARB_BASE(_band) + (ofs)) 324 325 #define MT_ARB_SCR(_band) MT_WF_ARB(_band, 0x080) 326 #define MT_ARB_SCR_TX_DISABLE BIT(8) 327 #define MT_ARB_SCR_RX_DISABLE BIT(9) 328 329 #define MT_ARB_DRNGR0(_band, _n) MT_WF_ARB(_band, 0x194 + (_n) * 4) 330 331 /* RMAC: band 0(0x21400), band 1(0xa1400) */ 332 #define MT_WF_RMAC_BASE(_band) ((_band) ? 0xa1400 : 0x21400) 333 #define MT_WF_RMAC(_band, ofs) (MT_WF_RMAC_BASE(_band) + (ofs)) 334 335 #define MT_WF_RFCR(_band) MT_WF_RMAC(_band, 0x000) 336 #define MT_WF_RFCR_DROP_STBC_MULTI BIT(0) 337 #define MT_WF_RFCR_DROP_FCSFAIL BIT(1) 338 #define MT_WF_RFCR_DROP_VERSION BIT(3) 339 #define MT_WF_RFCR_DROP_PROBEREQ BIT(4) 340 #define MT_WF_RFCR_DROP_MCAST BIT(5) 341 #define MT_WF_RFCR_DROP_BCAST BIT(6) 342 #define MT_WF_RFCR_DROP_MCAST_FILTERED BIT(7) 343 #define MT_WF_RFCR_DROP_A3_MAC BIT(8) 344 #define MT_WF_RFCR_DROP_A3_BSSID BIT(9) 345 #define MT_WF_RFCR_DROP_A2_BSSID BIT(10) 346 #define MT_WF_RFCR_DROP_OTHER_BEACON BIT(11) 347 #define MT_WF_RFCR_DROP_FRAME_REPORT BIT(12) 348 #define MT_WF_RFCR_DROP_CTL_RSV BIT(13) 349 #define MT_WF_RFCR_DROP_CTS BIT(14) 350 #define MT_WF_RFCR_DROP_RTS BIT(15) 351 #define MT_WF_RFCR_DROP_DUPLICATE BIT(16) 352 #define MT_WF_RFCR_DROP_OTHER_BSS BIT(17) 353 #define MT_WF_RFCR_DROP_OTHER_UC BIT(18) 354 #define MT_WF_RFCR_DROP_OTHER_TIM BIT(19) 355 #define MT_WF_RFCR_DROP_NDPA BIT(20) 356 #define MT_WF_RFCR_DROP_UNWANTED_CTL BIT(21) 357 358 #define MT_WF_RFCR1(_band) MT_WF_RMAC(_band, 0x004) 359 #define MT_WF_RFCR1_DROP_ACK BIT(4) 360 #define MT_WF_RFCR1_DROP_BF_POLL BIT(5) 361 #define MT_WF_RFCR1_DROP_BA BIT(6) 362 #define MT_WF_RFCR1_DROP_CFEND BIT(7) 363 #define MT_WF_RFCR1_DROP_CFACK BIT(8) 364 365 #define MT_WF_RMAC_MIB_AIRTIME0(_band) MT_WF_RMAC(_band, 0x0380) 366 #define MT_WF_RMAC_MIB_RXTIME_CLR BIT(31) 367 368 /* WFDMA0 */ 369 #define MT_WFDMA0_BASE 0xd4000 370 #define MT_WFDMA0(ofs) (MT_WFDMA0_BASE + (ofs)) 371 372 #define MT_WFDMA0_RST MT_WFDMA0(0x100) 373 #define MT_WFDMA0_RST_LOGIC_RST BIT(4) 374 #define MT_WFDMA0_RST_DMASHDL_ALL_RST BIT(5) 375 376 #define MT_WFDMA0_BUSY_ENA MT_WFDMA0(0x13c) 377 #define MT_WFDMA0_BUSY_ENA_TX_FIFO0 BIT(0) 378 #define MT_WFDMA0_BUSY_ENA_TX_FIFO1 BIT(1) 379 #define MT_WFDMA0_BUSY_ENA_RX_FIFO BIT(2) 380 381 #define MT_WFDMA0_GLO_CFG MT_WFDMA0(0x208) 382 #define MT_WFDMA0_GLO_CFG_TX_DMA_EN BIT(0) 383 #define MT_WFDMA0_GLO_CFG_RX_DMA_EN BIT(2) 384 385 #define MT_WFDMA0_RST_DTX_PTR MT_WFDMA0(0x20c) 386 #define MT_WFDMA0_PRI_DLY_INT_CFG0 MT_WFDMA0(0x2f0) 387 388 #define MT_RX_DATA_RING_BASE MT_WFDMA0(0x500) 389 390 #define MT_WFDMA0_RX_RING0_EXT_CTRL MT_WFDMA0(0x680) 391 #define MT_WFDMA0_RX_RING1_EXT_CTRL MT_WFDMA0(0x684) 392 #define MT_WFDMA0_RX_RING2_EXT_CTRL MT_WFDMA0(0x688) 393 394 /* WFDMA1 */ 395 #define MT_WFDMA1_BASE 0xd5000 396 #define MT_WFDMA1(ofs) (MT_WFDMA1_BASE + (ofs)) 397 398 #define MT_WFDMA1_RST MT_WFDMA1(0x100) 399 #define MT_WFDMA1_RST_LOGIC_RST BIT(4) 400 #define MT_WFDMA1_RST_DMASHDL_ALL_RST BIT(5) 401 402 #define MT_WFDMA1_BUSY_ENA MT_WFDMA1(0x13c) 403 #define MT_WFDMA1_BUSY_ENA_TX_FIFO0 BIT(0) 404 #define MT_WFDMA1_BUSY_ENA_TX_FIFO1 BIT(1) 405 #define MT_WFDMA1_BUSY_ENA_RX_FIFO BIT(2) 406 407 #define MT_MCU_CMD MT_WFDMA1(0x1f0) 408 #define MT_MCU_CMD_STOP_DMA_FW_RELOAD BIT(1) 409 #define MT_MCU_CMD_STOP_DMA BIT(2) 410 #define MT_MCU_CMD_RESET_DONE BIT(3) 411 #define MT_MCU_CMD_RECOVERY_DONE BIT(4) 412 #define MT_MCU_CMD_NORMAL_STATE BIT(5) 413 #define MT_MCU_CMD_ERROR_MASK GENMASK(5, 1) 414 415 #define MT_WFDMA1_GLO_CFG MT_WFDMA1(0x208) 416 #define MT_WFDMA1_GLO_CFG_TX_DMA_EN BIT(0) 417 #define MT_WFDMA1_GLO_CFG_RX_DMA_EN BIT(2) 418 #define MT_WFDMA1_GLO_CFG_OMIT_TX_INFO BIT(28) 419 #define MT_WFDMA1_GLO_CFG_OMIT_RX_INFO BIT(27) 420 421 #define MT_WFDMA1_RST_DTX_PTR MT_WFDMA1(0x20c) 422 #define MT_WFDMA1_PRI_DLY_INT_CFG0 MT_WFDMA1(0x2f0) 423 424 #define MT_TX_RING_BASE MT_WFDMA1(0x300) 425 #define MT_RX_EVENT_RING_BASE MT_WFDMA1(0x500) 426 427 #define MT_WFDMA1_TX_RING0_EXT_CTRL MT_WFDMA1(0x600) 428 #define MT_WFDMA1_TX_RING1_EXT_CTRL MT_WFDMA1(0x604) 429 #define MT_WFDMA1_TX_RING2_EXT_CTRL MT_WFDMA1(0x608) 430 #define MT_WFDMA1_TX_RING3_EXT_CTRL MT_WFDMA1(0x60c) 431 #define MT_WFDMA1_TX_RING4_EXT_CTRL MT_WFDMA1(0x610) 432 #define MT_WFDMA1_TX_RING5_EXT_CTRL MT_WFDMA1(0x614) 433 #define MT_WFDMA1_TX_RING6_EXT_CTRL MT_WFDMA1(0x618) 434 #define MT_WFDMA1_TX_RING7_EXT_CTRL MT_WFDMA1(0x61c) 435 436 #define MT_WFDMA1_TX_RING16_EXT_CTRL MT_WFDMA1(0x640) 437 #define MT_WFDMA1_TX_RING17_EXT_CTRL MT_WFDMA1(0x644) 438 #define MT_WFDMA1_TX_RING18_EXT_CTRL MT_WFDMA1(0x648) 439 #define MT_WFDMA1_TX_RING19_EXT_CTRL MT_WFDMA1(0x64c) 440 #define MT_WFDMA1_TX_RING20_EXT_CTRL MT_WFDMA1(0x650) 441 #define MT_WFDMA1_TX_RING21_EXT_CTRL MT_WFDMA1(0x654) 442 #define MT_WFDMA1_TX_RING22_EXT_CTRL MT_WFDMA1(0x658) 443 #define MT_WFDMA1_TX_RING23_EXT_CTRL MT_WFDMA1(0x65c) 444 445 #define MT_WFDMA1_RX_RING0_EXT_CTRL MT_WFDMA1(0x680) 446 #define MT_WFDMA1_RX_RING1_EXT_CTRL MT_WFDMA1(0x684) 447 #define MT_WFDMA1_RX_RING2_EXT_CTRL MT_WFDMA1(0x688) 448 #define MT_WFDMA1_RX_RING3_EXT_CTRL MT_WFDMA1(0x68c) 449 450 /* WFDMA CSR */ 451 #define MT_WFDMA_EXT_CSR_BASE 0xd7000 452 #define MT_WFDMA_EXT_CSR(ofs) (MT_WFDMA_EXT_CSR_BASE + (ofs)) 453 454 #define MT_INT_SOURCE_CSR MT_WFDMA_EXT_CSR(0x10) 455 #define MT_INT_MASK_CSR MT_WFDMA_EXT_CSR(0x14) 456 #define MT_INT_RX_DONE_DATA0 BIT(16) 457 #define MT_INT_RX_DONE_DATA1 BIT(17) 458 #define MT_INT_RX_DONE_WM BIT(0) 459 #define MT_INT_RX_DONE_WA BIT(1) 460 #define MT_INT_RX_DONE_WA_EXT BIT(2) 461 #define MT_INT_RX_DONE_ALL (GENMASK(2, 0) | GENMASK(17, 16)) 462 #define MT_INT_TX_DONE_MCU_WA BIT(15) 463 #define MT_INT_TX_DONE_FWDL BIT(26) 464 #define MT_INT_TX_DONE_MCU_WM BIT(27) 465 #define MT_INT_TX_DONE_BAND0 BIT(30) 466 #define MT_INT_TX_DONE_BAND1 BIT(31) 467 468 #define MT_INT_BAND1_MASK (MT_INT_RX_DONE_WA_EXT | \ 469 MT_INT_TX_DONE_BAND1) 470 471 #define MT_INT_MCU_CMD BIT(29) 472 473 #define MT_INT_TX_DONE_MCU (MT_INT_TX_DONE_MCU_WA | \ 474 MT_INT_TX_DONE_MCU_WM | \ 475 MT_INT_TX_DONE_FWDL) 476 477 #define MT_WFDMA_HOST_CONFIG MT_WFDMA_EXT_CSR(0x30) 478 #define MT_WFDMA_HOST_CONFIG_PDMA_BAND BIT(0) 479 480 #define MT_WFDMA_EXT_CSR_HIF_MISC MT_WFDMA_EXT_CSR(0x44) 481 #define MT_WFDMA_EXT_CSR_HIF_MISC_BUSY BIT(0) 482 483 #define MT_INT1_SOURCE_CSR MT_WFDMA_EXT_CSR(0x88) 484 #define MT_INT1_MASK_CSR MT_WFDMA_EXT_CSR(0x8c) 485 486 #define MT_PCIE_RECOG_ID MT_WFDMA_EXT_CSR(0x90) 487 #define MT_PCIE_RECOG_ID_MASK GENMASK(30, 0) 488 #define MT_PCIE_RECOG_ID_SEM BIT(31) 489 490 /* WFDMA0 PCIE1 */ 491 #define MT_WFDMA0_PCIE1_BASE 0xd8000 492 #define MT_WFDMA0_PCIE1(ofs) (MT_WFDMA0_PCIE1_BASE + (ofs)) 493 494 #define MT_WFDMA0_PCIE1_BUSY_ENA MT_WFDMA0_PCIE1(0x13c) 495 #define MT_WFDMA0_PCIE1_BUSY_ENA_TX_FIFO0 BIT(0) 496 #define MT_WFDMA0_PCIE1_BUSY_ENA_TX_FIFO1 BIT(1) 497 #define MT_WFDMA0_PCIE1_BUSY_ENA_RX_FIFO BIT(2) 498 499 /* WFDMA1 PCIE1 */ 500 #define MT_WFDMA1_PCIE1_BASE 0xd9000 501 #define MT_WFDMA1_PCIE1(ofs) (MT_WFDMA0_PCIE1_BASE + (ofs)) 502 503 #define MT_WFDMA1_PCIE1_BUSY_ENA MT_WFDMA1_PCIE1(0x13c) 504 #define MT_WFDMA1_PCIE1_BUSY_ENA_TX_FIFO0 BIT(0) 505 #define MT_WFDMA1_PCIE1_BUSY_ENA_TX_FIFO1 BIT(1) 506 #define MT_WFDMA1_PCIE1_BUSY_ENA_RX_FIFO BIT(2) 507 508 #define MT_TOP_RGU_BASE 0xf0000 509 #define MT_TOP_PWR_CTRL (MT_TOP_RGU_BASE + (0x0)) 510 #define MT_TOP_PWR_KEY (0x5746 << 16) 511 #define MT_TOP_PWR_SW_RST BIT(0) 512 #define MT_TOP_PWR_SW_PWR_ON GENMASK(3, 2) 513 #define MT_TOP_PWR_HW_CTRL BIT(4) 514 #define MT_TOP_PWR_PWR_ON BIT(7) 515 516 #define MT_INFRA_CFG_BASE 0xf1000 517 #define MT_INFRA(ofs) (MT_INFRA_CFG_BASE + (ofs)) 518 519 #define MT_HIF_REMAP_L1 MT_INFRA(0x1ac) 520 #define MT_HIF_REMAP_L1_MASK GENMASK(15, 0) 521 #define MT_HIF_REMAP_L1_OFFSET GENMASK(15, 0) 522 #define MT_HIF_REMAP_L1_BASE GENMASK(31, 16) 523 #define MT_HIF_REMAP_BASE_L1 0xe0000 524 525 #define MT_HIF_REMAP_L2 MT_INFRA(0x1b0) 526 #define MT_HIF_REMAP_L2_MASK GENMASK(19, 0) 527 #define MT_HIF_REMAP_L2_OFFSET GENMASK(11, 0) 528 #define MT_HIF_REMAP_L2_BASE GENMASK(31, 12) 529 #define MT_HIF_REMAP_BASE_L2 0x00000 530 531 #define MT_DIC_CMD_REG_BASE 0x41f000 532 #define MT_DIC_CMD_REG(ofs) (MT_DIC_CMD_REG_BASE + (ofs)) 533 #define MT_DIC_CMD_REG_CMD MT_DIC_CMD_REG(0x10) 534 535 #define MT_CPU_UTIL_BASE 0x41f030 536 #define MT_CPU_UTIL(ofs) (MT_CPU_UTIL_BASE + (ofs)) 537 #define MT_CPU_UTIL_BUSY_PCT MT_CPU_UTIL(0x00) 538 #define MT_CPU_UTIL_PEAK_BUSY_PCT MT_CPU_UTIL(0x04) 539 #define MT_CPU_UTIL_IDLE_CNT MT_CPU_UTIL(0x08) 540 #define MT_CPU_UTIL_PEAK_IDLE_CNT MT_CPU_UTIL(0x0c) 541 #define MT_CPU_UTIL_CTRL MT_CPU_UTIL(0x1c) 542 543 #define MT_SWDEF_BASE 0x41f200 544 #define MT_SWDEF(ofs) (MT_SWDEF_BASE + (ofs)) 545 #define MT_SWDEF_MODE MT_SWDEF(0x3c) 546 #define MT_SWDEF_NORMAL_MODE 0 547 #define MT_SWDEF_ICAP_MODE 1 548 #define MT_SWDEF_SPECTRUM_MODE 2 549 550 #define MT_LED_TOP_BASE 0x18013000 551 #define MT_LED_PHYS(_n) (MT_LED_TOP_BASE + (_n)) 552 553 #define MT_LED_CTRL(_n) MT_LED_PHYS(0x00 + ((_n) * 4)) 554 #define MT_LED_CTRL_KICK BIT(7) 555 #define MT_LED_CTRL_BLINK_MODE BIT(2) 556 #define MT_LED_CTRL_POLARITY BIT(1) 557 558 #define MT_LED_TX_BLINK(_n) MT_LED_PHYS(0x10 + ((_n) * 4)) 559 #define MT_LED_TX_BLINK_ON_MASK GENMASK(7, 0) 560 #define MT_LED_TX_BLINK_OFF_MASK GENMASK(15, 8) 561 562 #define MT_LED_EN(_n) MT_LED_PHYS(0x40 + ((_n) * 4)) 563 564 #define MT_TOP_BASE 0x18060000 565 #define MT_TOP(ofs) (MT_TOP_BASE + (ofs)) 566 567 #define MT_TOP_LPCR_HOST_BAND0 MT_TOP(0x10) 568 #define MT_TOP_LPCR_HOST_FW_OWN BIT(0) 569 #define MT_TOP_LPCR_HOST_DRV_OWN BIT(1) 570 571 #define MT_TOP_MISC MT_TOP(0xf0) 572 #define MT_TOP_MISC_FW_STATE GENMASK(2, 0) 573 574 #define MT_LED_GPIO_MUX2 0x70005058 /* GPIO 18 */ 575 #define MT_LED_GPIO_MUX3 0x7000505C /* GPIO 26 */ 576 #define MT_LED_GPIO_SEL_MASK GENMASK(11, 8) 577 578 #define MT_HW_BOUND 0x70010020 579 #define MT_HW_CHIPID 0x70010200 580 #define MT_HW_REV 0x70010204 581 582 #define MT_PCIE1_MAC_BASE 0x74020000 583 #define MT_PCIE1_MAC(ofs) (MT_PCIE1_MAC_BASE + (ofs)) 584 #define MT_PCIE1_MAC_INT_ENABLE MT_PCIE1_MAC(0x188) 585 586 #define MT_PCIE_MAC_BASE 0x74030000 587 #define MT_PCIE_MAC(ofs) (MT_PCIE_MAC_BASE + (ofs)) 588 #define MT_PCIE_MAC_INT_ENABLE MT_PCIE_MAC(0x188) 589 590 #define MT_WF_IRPI_BASE 0x83006000 591 #define MT_WF_IRPI(ofs) (MT_WF_IRPI_BASE + ((ofs) << 16)) 592 593 /* PHY: band 0(0x83080000), band 1(0x83090000) */ 594 #define MT_WF_PHY_BASE 0x83080000 595 #define MT_WF_PHY(ofs) (MT_WF_PHY_BASE + (ofs)) 596 597 #define MT_WF_PHY_RX_CTRL1(_phy) MT_WF_PHY(0x2004 + ((_phy) << 16)) 598 #define MT_WF_PHY_RX_CTRL1_IPI_EN GENMASK(2, 0) 599 #define MT_WF_PHY_RX_CTRL1_STSCNT_EN GENMASK(11, 9) 600 601 #define MT_WF_PHY_RXTD12(_phy) MT_WF_PHY(0x8230 + ((_phy) << 16)) 602 #define MT_WF_PHY_RXTD12_IRPI_SW_CLR_ONLY BIT(18) 603 #define MT_WF_PHY_RXTD12_IRPI_SW_CLR BIT(29) 604 605 #define MT_MCU_WM_CIRQ_BASE 0x89010000 606 #define MT_MCU_WM_CIRQ(ofs) (MT_MCU_WM_CIRQ_BASE + (ofs)) 607 #define MT_MCU_WM_CIRQ_IRQ_MASK_CLR_ADDR MT_MCU_WM_CIRQ(0x80) 608 #define MT_MCU_WM_CIRQ_IRQ_SOFT_ADDR MT_MCU_WM_CIRQ(0xc0) 609 610 #endif 611