1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright (C) 2017 Sean Wang <sean.wang@mediatek.com> 4 */ 5 6 #ifndef __MT7530_H 7 #define __MT7530_H 8 9 #define MT7530_NUM_PORTS 7 10 #define MT7530_CPU_PORT 6 11 #define MT7530_NUM_FDB_RECORDS 2048 12 #define MT7530_ALL_MEMBERS 0xff 13 14 #define MTK_HDR_LEN 4 15 #define MT7530_MAX_MTU (15 * 1024 - ETH_HLEN - ETH_FCS_LEN - MTK_HDR_LEN) 16 17 enum mt753x_id { 18 ID_MT7530 = 0, 19 ID_MT7621 = 1, 20 ID_MT7531 = 2, 21 }; 22 23 #define NUM_TRGMII_CTRL 5 24 25 #define TRGMII_BASE(x) (0x10000 + (x)) 26 27 /* Registers to ethsys access */ 28 #define ETHSYS_CLKCFG0 0x2c 29 #define ETHSYS_TRGMII_CLK_SEL362_5 BIT(11) 30 31 #define SYSC_REG_RSTCTRL 0x34 32 #define RESET_MCM BIT(2) 33 34 /* Registers to mac forward control for unknown frames */ 35 #define MT7530_MFC 0x10 36 #define BC_FFP(x) (((x) & 0xff) << 24) 37 #define UNM_FFP(x) (((x) & 0xff) << 16) 38 #define UNM_FFP_MASK UNM_FFP(~0) 39 #define UNU_FFP(x) (((x) & 0xff) << 8) 40 #define UNU_FFP_MASK UNU_FFP(~0) 41 #define CPU_EN BIT(7) 42 #define CPU_PORT(x) ((x) << 4) 43 #define CPU_MASK (0xf << 4) 44 #define MIRROR_EN BIT(3) 45 #define MIRROR_PORT(x) ((x) & 0x7) 46 #define MIRROR_MASK 0x7 47 48 /* Registers for CPU forward control */ 49 #define MT7531_CFC 0x4 50 #define MT7531_MIRROR_EN BIT(19) 51 #define MT7531_MIRROR_MASK (MIRROR_MASK << 16) 52 #define MT7531_MIRROR_PORT_GET(x) (((x) >> 16) & MIRROR_MASK) 53 #define MT7531_MIRROR_PORT_SET(x) (((x) & MIRROR_MASK) << 16) 54 #define MT7531_CPU_PMAP_MASK GENMASK(7, 0) 55 56 #define MT753X_MIRROR_REG(id) (((id) == ID_MT7531) ? \ 57 MT7531_CFC : MT7530_MFC) 58 #define MT753X_MIRROR_EN(id) (((id) == ID_MT7531) ? \ 59 MT7531_MIRROR_EN : MIRROR_EN) 60 #define MT753X_MIRROR_MASK(id) (((id) == ID_MT7531) ? \ 61 MT7531_MIRROR_MASK : MIRROR_MASK) 62 63 /* Registers for BPDU and PAE frame control*/ 64 #define MT753X_BPC 0x24 65 #define MT753X_BPDU_PORT_FW_MASK GENMASK(2, 0) 66 67 enum mt753x_bpdu_port_fw { 68 MT753X_BPDU_FOLLOW_MFC, 69 MT753X_BPDU_CPU_EXCLUDE = 4, 70 MT753X_BPDU_CPU_INCLUDE = 5, 71 MT753X_BPDU_CPU_ONLY = 6, 72 MT753X_BPDU_DROP = 7, 73 }; 74 75 /* Registers for address table access */ 76 #define MT7530_ATA1 0x74 77 #define STATIC_EMP 0 78 #define STATIC_ENT 3 79 #define MT7530_ATA2 0x78 80 81 /* Register for address table write data */ 82 #define MT7530_ATWD 0x7c 83 84 /* Register for address table control */ 85 #define MT7530_ATC 0x80 86 #define ATC_HASH (((x) & 0xfff) << 16) 87 #define ATC_BUSY BIT(15) 88 #define ATC_SRCH_END BIT(14) 89 #define ATC_SRCH_HIT BIT(13) 90 #define ATC_INVALID BIT(12) 91 #define ATC_MAT(x) (((x) & 0xf) << 8) 92 #define ATC_MAT_MACTAB ATC_MAT(0) 93 94 enum mt7530_fdb_cmd { 95 MT7530_FDB_READ = 0, 96 MT7530_FDB_WRITE = 1, 97 MT7530_FDB_FLUSH = 2, 98 MT7530_FDB_START = 4, 99 MT7530_FDB_NEXT = 5, 100 }; 101 102 /* Registers for table search read address */ 103 #define MT7530_TSRA1 0x84 104 #define MAC_BYTE_0 24 105 #define MAC_BYTE_1 16 106 #define MAC_BYTE_2 8 107 #define MAC_BYTE_3 0 108 #define MAC_BYTE_MASK 0xff 109 110 #define MT7530_TSRA2 0x88 111 #define MAC_BYTE_4 24 112 #define MAC_BYTE_5 16 113 #define CVID 0 114 #define CVID_MASK 0xfff 115 116 #define MT7530_ATRD 0x8C 117 #define AGE_TIMER 24 118 #define AGE_TIMER_MASK 0xff 119 #define PORT_MAP 4 120 #define PORT_MAP_MASK 0xff 121 #define ENT_STATUS 2 122 #define ENT_STATUS_MASK 0x3 123 124 /* Register for vlan table control */ 125 #define MT7530_VTCR 0x90 126 #define VTCR_BUSY BIT(31) 127 #define VTCR_INVALID BIT(16) 128 #define VTCR_FUNC(x) (((x) & 0xf) << 12) 129 #define VTCR_VID ((x) & 0xfff) 130 131 enum mt7530_vlan_cmd { 132 /* Read/Write the specified VID entry from VAWD register based 133 * on VID. 134 */ 135 MT7530_VTCR_RD_VID = 0, 136 MT7530_VTCR_WR_VID = 1, 137 }; 138 139 /* Register for setup vlan and acl write data */ 140 #define MT7530_VAWD1 0x94 141 #define PORT_STAG BIT(31) 142 /* Independent VLAN Learning */ 143 #define IVL_MAC BIT(30) 144 /* Per VLAN Egress Tag Control */ 145 #define VTAG_EN BIT(28) 146 /* VLAN Member Control */ 147 #define PORT_MEM(x) (((x) & 0xff) << 16) 148 /* VLAN Entry Valid */ 149 #define VLAN_VALID BIT(0) 150 #define PORT_MEM_SHFT 16 151 #define PORT_MEM_MASK 0xff 152 153 #define MT7530_VAWD2 0x98 154 /* Egress Tag Control */ 155 #define ETAG_CTRL_P(p, x) (((x) & 0x3) << ((p) << 1)) 156 #define ETAG_CTRL_P_MASK(p) ETAG_CTRL_P(p, 3) 157 158 enum mt7530_vlan_egress_attr { 159 MT7530_VLAN_EGRESS_UNTAG = 0, 160 MT7530_VLAN_EGRESS_TAG = 2, 161 MT7530_VLAN_EGRESS_STACK = 3, 162 }; 163 164 /* Register for port STP state control */ 165 #define MT7530_SSP_P(x) (0x2000 + ((x) * 0x100)) 166 #define FID_PST(x) ((x) & 0x3) 167 #define FID_PST_MASK FID_PST(0x3) 168 169 enum mt7530_stp_state { 170 MT7530_STP_DISABLED = 0, 171 MT7530_STP_BLOCKING = 1, 172 MT7530_STP_LISTENING = 1, 173 MT7530_STP_LEARNING = 2, 174 MT7530_STP_FORWARDING = 3 175 }; 176 177 /* Register for port control */ 178 #define MT7530_PCR_P(x) (0x2004 + ((x) * 0x100)) 179 #define PORT_TX_MIR BIT(9) 180 #define PORT_RX_MIR BIT(8) 181 #define PORT_VLAN(x) ((x) & 0x3) 182 183 enum mt7530_port_mode { 184 /* Port Matrix Mode: Frames are forwarded by the PCR_MATRIX members. */ 185 MT7530_PORT_MATRIX_MODE = PORT_VLAN(0), 186 187 /* Fallback Mode: Forward received frames with ingress ports that do 188 * not belong to the VLAN member. Frames whose VID is not listed on 189 * the VLAN table are forwarded by the PCR_MATRIX members. 190 */ 191 MT7530_PORT_FALLBACK_MODE = PORT_VLAN(1), 192 193 /* Security Mode: Discard any frame due to ingress membership 194 * violation or VID missed on the VLAN table. 195 */ 196 MT7530_PORT_SECURITY_MODE = PORT_VLAN(3), 197 }; 198 199 #define PCR_MATRIX(x) (((x) & 0xff) << 16) 200 #define PORT_PRI(x) (((x) & 0x7) << 24) 201 #define EG_TAG(x) (((x) & 0x3) << 28) 202 #define PCR_MATRIX_MASK PCR_MATRIX(0xff) 203 #define PCR_MATRIX_CLR PCR_MATRIX(0) 204 #define PCR_PORT_VLAN_MASK PORT_VLAN(3) 205 206 /* Register for port security control */ 207 #define MT7530_PSC_P(x) (0x200c + ((x) * 0x100)) 208 #define SA_DIS BIT(4) 209 210 /* Register for port vlan control */ 211 #define MT7530_PVC_P(x) (0x2010 + ((x) * 0x100)) 212 #define PORT_SPEC_TAG BIT(5) 213 #define PVC_EG_TAG(x) (((x) & 0x7) << 8) 214 #define PVC_EG_TAG_MASK PVC_EG_TAG(7) 215 #define VLAN_ATTR(x) (((x) & 0x3) << 6) 216 #define VLAN_ATTR_MASK VLAN_ATTR(3) 217 218 enum mt7530_vlan_port_eg_tag { 219 MT7530_VLAN_EG_DISABLED = 0, 220 MT7530_VLAN_EG_CONSISTENT = 1, 221 }; 222 223 enum mt7530_vlan_port_attr { 224 MT7530_VLAN_USER = 0, 225 MT7530_VLAN_TRANSPARENT = 3, 226 }; 227 228 #define STAG_VPID (((x) & 0xffff) << 16) 229 230 /* Register for port port-and-protocol based vlan 1 control */ 231 #define MT7530_PPBV1_P(x) (0x2014 + ((x) * 0x100)) 232 #define G0_PORT_VID(x) (((x) & 0xfff) << 0) 233 #define G0_PORT_VID_MASK G0_PORT_VID(0xfff) 234 #define G0_PORT_VID_DEF G0_PORT_VID(1) 235 236 /* Register for port MAC control register */ 237 #define MT7530_PMCR_P(x) (0x3000 + ((x) * 0x100)) 238 #define PMCR_IFG_XMIT(x) (((x) & 0x3) << 18) 239 #define PMCR_EXT_PHY BIT(17) 240 #define PMCR_MAC_MODE BIT(16) 241 #define PMCR_FORCE_MODE BIT(15) 242 #define PMCR_TX_EN BIT(14) 243 #define PMCR_RX_EN BIT(13) 244 #define PMCR_BACKOFF_EN BIT(9) 245 #define PMCR_BACKPR_EN BIT(8) 246 #define PMCR_TX_FC_EN BIT(5) 247 #define PMCR_RX_FC_EN BIT(4) 248 #define PMCR_FORCE_SPEED_1000 BIT(3) 249 #define PMCR_FORCE_SPEED_100 BIT(2) 250 #define PMCR_FORCE_FDX BIT(1) 251 #define PMCR_FORCE_LNK BIT(0) 252 #define PMCR_SPEED_MASK (PMCR_FORCE_SPEED_100 | \ 253 PMCR_FORCE_SPEED_1000) 254 #define MT7531_FORCE_LNK BIT(31) 255 #define MT7531_FORCE_SPD BIT(30) 256 #define MT7531_FORCE_DPX BIT(29) 257 #define MT7531_FORCE_RX_FC BIT(28) 258 #define MT7531_FORCE_TX_FC BIT(27) 259 #define MT7531_FORCE_MODE (MT7531_FORCE_LNK | \ 260 MT7531_FORCE_SPD | \ 261 MT7531_FORCE_DPX | \ 262 MT7531_FORCE_RX_FC | \ 263 MT7531_FORCE_TX_FC) 264 #define PMCR_FORCE_MODE_ID(id) (((id) == ID_MT7531) ? \ 265 MT7531_FORCE_MODE : \ 266 PMCR_FORCE_MODE) 267 #define PMCR_LINK_SETTINGS_MASK (PMCR_TX_EN | PMCR_FORCE_SPEED_1000 | \ 268 PMCR_RX_EN | PMCR_FORCE_SPEED_100 | \ 269 PMCR_TX_FC_EN | PMCR_RX_FC_EN | \ 270 PMCR_FORCE_FDX | PMCR_FORCE_LNK) 271 #define PMCR_CPU_PORT_SETTING(id) (PMCR_FORCE_MODE_ID((id)) | \ 272 PMCR_IFG_XMIT(1) | PMCR_MAC_MODE | \ 273 PMCR_BACKOFF_EN | PMCR_BACKPR_EN | \ 274 PMCR_TX_EN | PMCR_RX_EN | \ 275 PMCR_TX_FC_EN | PMCR_RX_FC_EN | \ 276 PMCR_FORCE_SPEED_1000 | \ 277 PMCR_FORCE_FDX | PMCR_FORCE_LNK) 278 279 #define MT7530_PMSR_P(x) (0x3008 + (x) * 0x100) 280 #define PMSR_EEE1G BIT(7) 281 #define PMSR_EEE100M BIT(6) 282 #define PMSR_RX_FC BIT(5) 283 #define PMSR_TX_FC BIT(4) 284 #define PMSR_SPEED_1000 BIT(3) 285 #define PMSR_SPEED_100 BIT(2) 286 #define PMSR_SPEED_10 0x00 287 #define PMSR_SPEED_MASK (PMSR_SPEED_100 | PMSR_SPEED_1000) 288 #define PMSR_DPX BIT(1) 289 #define PMSR_LINK BIT(0) 290 291 /* Register for port debug count */ 292 #define MT7531_DBG_CNT(x) (0x3018 + (x) * 0x100) 293 #define MT7531_DIS_CLR BIT(31) 294 295 #define MT7530_GMACCR 0x30e0 296 #define MAX_RX_JUMBO(x) ((x) << 2) 297 #define MAX_RX_JUMBO_MASK GENMASK(5, 2) 298 #define MAX_RX_PKT_LEN_MASK GENMASK(1, 0) 299 #define MAX_RX_PKT_LEN_1522 0x0 300 #define MAX_RX_PKT_LEN_1536 0x1 301 #define MAX_RX_PKT_LEN_1552 0x2 302 #define MAX_RX_PKT_LEN_JUMBO 0x3 303 304 /* Register for MIB */ 305 #define MT7530_PORT_MIB_COUNTER(x) (0x4000 + (x) * 0x100) 306 #define MT7530_MIB_CCR 0x4fe0 307 #define CCR_MIB_ENABLE BIT(31) 308 #define CCR_RX_OCT_CNT_GOOD BIT(7) 309 #define CCR_RX_OCT_CNT_BAD BIT(6) 310 #define CCR_TX_OCT_CNT_GOOD BIT(5) 311 #define CCR_TX_OCT_CNT_BAD BIT(4) 312 #define CCR_MIB_FLUSH (CCR_RX_OCT_CNT_GOOD | \ 313 CCR_RX_OCT_CNT_BAD | \ 314 CCR_TX_OCT_CNT_GOOD | \ 315 CCR_TX_OCT_CNT_BAD) 316 #define CCR_MIB_ACTIVATE (CCR_MIB_ENABLE | \ 317 CCR_RX_OCT_CNT_GOOD | \ 318 CCR_RX_OCT_CNT_BAD | \ 319 CCR_TX_OCT_CNT_GOOD | \ 320 CCR_TX_OCT_CNT_BAD) 321 322 /* MT7531 SGMII register group */ 323 #define MT7531_SGMII_REG_BASE 0x5000 324 #define MT7531_SGMII_REG(p, r) (MT7531_SGMII_REG_BASE + \ 325 ((p) - 5) * 0x1000 + (r)) 326 327 /* Register forSGMII PCS_CONTROL_1 */ 328 #define MT7531_PCS_CONTROL_1(p) MT7531_SGMII_REG(p, 0x00) 329 #define MT7531_SGMII_LINK_STATUS BIT(18) 330 #define MT7531_SGMII_AN_ENABLE BIT(12) 331 #define MT7531_SGMII_AN_RESTART BIT(9) 332 333 /* Register for SGMII PCS_SPPED_ABILITY */ 334 #define MT7531_PCS_SPEED_ABILITY(p) MT7531_SGMII_REG(p, 0x08) 335 #define MT7531_SGMII_TX_CONFIG_MASK GENMASK(15, 0) 336 #define MT7531_SGMII_TX_CONFIG BIT(0) 337 338 /* Register for SGMII_MODE */ 339 #define MT7531_SGMII_MODE(p) MT7531_SGMII_REG(p, 0x20) 340 #define MT7531_SGMII_REMOTE_FAULT_DIS BIT(8) 341 #define MT7531_SGMII_IF_MODE_MASK GENMASK(5, 1) 342 #define MT7531_SGMII_FORCE_DUPLEX BIT(4) 343 #define MT7531_SGMII_FORCE_SPEED_MASK GENMASK(3, 2) 344 #define MT7531_SGMII_FORCE_SPEED_1000 BIT(3) 345 #define MT7531_SGMII_FORCE_SPEED_100 BIT(2) 346 #define MT7531_SGMII_FORCE_SPEED_10 0 347 #define MT7531_SGMII_SPEED_DUPLEX_AN BIT(1) 348 349 enum mt7531_sgmii_force_duplex { 350 MT7531_SGMII_FORCE_FULL_DUPLEX = 0, 351 MT7531_SGMII_FORCE_HALF_DUPLEX = 0x10, 352 }; 353 354 /* Fields of QPHY_PWR_STATE_CTRL */ 355 #define MT7531_QPHY_PWR_STATE_CTRL(p) MT7531_SGMII_REG(p, 0xe8) 356 #define MT7531_SGMII_PHYA_PWD BIT(4) 357 358 /* Values of SGMII SPEED */ 359 #define MT7531_PHYA_CTRL_SIGNAL3(p) MT7531_SGMII_REG(p, 0x128) 360 #define MT7531_RG_TPHY_SPEED_MASK (BIT(2) | BIT(3)) 361 #define MT7531_RG_TPHY_SPEED_1_25G 0x0 362 #define MT7531_RG_TPHY_SPEED_3_125G BIT(2) 363 364 /* Register for system reset */ 365 #define MT7530_SYS_CTRL 0x7000 366 #define SYS_CTRL_PHY_RST BIT(2) 367 #define SYS_CTRL_SW_RST BIT(1) 368 #define SYS_CTRL_REG_RST BIT(0) 369 370 /* Register for PHY Indirect Access Control */ 371 #define MT7531_PHY_IAC 0x701C 372 #define MT7531_PHY_ACS_ST BIT(31) 373 #define MT7531_MDIO_REG_ADDR_MASK (0x1f << 25) 374 #define MT7531_MDIO_PHY_ADDR_MASK (0x1f << 20) 375 #define MT7531_MDIO_CMD_MASK (0x3 << 18) 376 #define MT7531_MDIO_ST_MASK (0x3 << 16) 377 #define MT7531_MDIO_RW_DATA_MASK (0xffff) 378 #define MT7531_MDIO_REG_ADDR(x) (((x) & 0x1f) << 25) 379 #define MT7531_MDIO_DEV_ADDR(x) (((x) & 0x1f) << 25) 380 #define MT7531_MDIO_PHY_ADDR(x) (((x) & 0x1f) << 20) 381 #define MT7531_MDIO_CMD(x) (((x) & 0x3) << 18) 382 #define MT7531_MDIO_ST(x) (((x) & 0x3) << 16) 383 384 enum mt7531_phy_iac_cmd { 385 MT7531_MDIO_ADDR = 0, 386 MT7531_MDIO_WRITE = 1, 387 MT7531_MDIO_READ = 2, 388 MT7531_MDIO_READ_CL45 = 3, 389 }; 390 391 /* MDIO_ST: MDIO start field */ 392 enum mt7531_mdio_st { 393 MT7531_MDIO_ST_CL45 = 0, 394 MT7531_MDIO_ST_CL22 = 1, 395 }; 396 397 #define MT7531_MDIO_CL22_READ (MT7531_MDIO_ST(MT7531_MDIO_ST_CL22) | \ 398 MT7531_MDIO_CMD(MT7531_MDIO_READ)) 399 #define MT7531_MDIO_CL22_WRITE (MT7531_MDIO_ST(MT7531_MDIO_ST_CL22) | \ 400 MT7531_MDIO_CMD(MT7531_MDIO_WRITE)) 401 #define MT7531_MDIO_CL45_ADDR (MT7531_MDIO_ST(MT7531_MDIO_ST_CL45) | \ 402 MT7531_MDIO_CMD(MT7531_MDIO_ADDR)) 403 #define MT7531_MDIO_CL45_READ (MT7531_MDIO_ST(MT7531_MDIO_ST_CL45) | \ 404 MT7531_MDIO_CMD(MT7531_MDIO_READ)) 405 #define MT7531_MDIO_CL45_WRITE (MT7531_MDIO_ST(MT7531_MDIO_ST_CL45) | \ 406 MT7531_MDIO_CMD(MT7531_MDIO_WRITE)) 407 408 /* Register for RGMII clock phase */ 409 #define MT7531_CLKGEN_CTRL 0x7500 410 #define CLK_SKEW_OUT(x) (((x) & 0x3) << 8) 411 #define CLK_SKEW_OUT_MASK GENMASK(9, 8) 412 #define CLK_SKEW_IN(x) (((x) & 0x3) << 6) 413 #define CLK_SKEW_IN_MASK GENMASK(7, 6) 414 #define RXCLK_NO_DELAY BIT(5) 415 #define TXCLK_NO_REVERSE BIT(4) 416 #define GP_MODE(x) (((x) & 0x3) << 1) 417 #define GP_MODE_MASK GENMASK(2, 1) 418 #define GP_CLK_EN BIT(0) 419 420 enum mt7531_gp_mode { 421 MT7531_GP_MODE_RGMII = 0, 422 MT7531_GP_MODE_MII = 1, 423 MT7531_GP_MODE_REV_MII = 2 424 }; 425 426 enum mt7531_clk_skew { 427 MT7531_CLK_SKEW_NO_CHG = 0, 428 MT7531_CLK_SKEW_DLY_100PPS = 1, 429 MT7531_CLK_SKEW_DLY_200PPS = 2, 430 MT7531_CLK_SKEW_REVERSE = 3, 431 }; 432 433 /* Register for hw trap status */ 434 #define MT7530_HWTRAP 0x7800 435 #define HWTRAP_XTAL_MASK (BIT(10) | BIT(9)) 436 #define HWTRAP_XTAL_25MHZ (BIT(10) | BIT(9)) 437 #define HWTRAP_XTAL_40MHZ (BIT(10)) 438 #define HWTRAP_XTAL_20MHZ (BIT(9)) 439 440 #define MT7531_HWTRAP 0x7800 441 #define HWTRAP_XTAL_FSEL_MASK BIT(7) 442 #define HWTRAP_XTAL_FSEL_25MHZ BIT(7) 443 #define HWTRAP_XTAL_FSEL_40MHZ 0 444 /* Unique fields of (M)HWSTRAP for MT7531 */ 445 #define XTAL_FSEL_S 7 446 #define XTAL_FSEL_M BIT(7) 447 #define PHY_EN BIT(6) 448 #define CHG_STRAP BIT(8) 449 450 /* Register for hw trap modification */ 451 #define MT7530_MHWTRAP 0x7804 452 #define MHWTRAP_PHY0_SEL BIT(20) 453 #define MHWTRAP_MANUAL BIT(16) 454 #define MHWTRAP_P5_MAC_SEL BIT(13) 455 #define MHWTRAP_P6_DIS BIT(8) 456 #define MHWTRAP_P5_RGMII_MODE BIT(7) 457 #define MHWTRAP_P5_DIS BIT(6) 458 #define MHWTRAP_PHY_ACCESS BIT(5) 459 460 /* Register for TOP signal control */ 461 #define MT7530_TOP_SIG_CTRL 0x7808 462 #define TOP_SIG_CTRL_NORMAL (BIT(17) | BIT(16)) 463 464 #define MT7531_TOP_SIG_SR 0x780c 465 #define PAD_DUAL_SGMII_EN BIT(1) 466 #define PAD_MCM_SMI_EN BIT(0) 467 468 #define MT7530_IO_DRV_CR 0x7810 469 #define P5_IO_CLK_DRV(x) ((x) & 0x3) 470 #define P5_IO_DATA_DRV(x) (((x) & 0x3) << 4) 471 472 #define MT7531_CHIP_REV 0x781C 473 474 #define MT7531_PLLGP_EN 0x7820 475 #define EN_COREPLL BIT(2) 476 #define SW_CLKSW BIT(1) 477 #define SW_PLLGP BIT(0) 478 479 #define MT7530_P6ECR 0x7830 480 #define P6_INTF_MODE_MASK 0x3 481 #define P6_INTF_MODE(x) ((x) & 0x3) 482 483 #define MT7531_PLLGP_CR0 0x78a8 484 #define RG_COREPLL_EN BIT(22) 485 #define RG_COREPLL_POSDIV_S 23 486 #define RG_COREPLL_POSDIV_M 0x3800000 487 #define RG_COREPLL_SDM_PCW_S 1 488 #define RG_COREPLL_SDM_PCW_M 0x3ffffe 489 #define RG_COREPLL_SDM_PCW_CHG BIT(0) 490 491 /* Registers for RGMII and SGMII PLL clock */ 492 #define MT7531_ANA_PLLGP_CR2 0x78b0 493 #define MT7531_ANA_PLLGP_CR5 0x78bc 494 495 /* Registers for TRGMII on the both side */ 496 #define MT7530_TRGMII_RCK_CTRL 0x7a00 497 #define RX_RST BIT(31) 498 #define RXC_DQSISEL BIT(30) 499 #define DQSI1_TAP_MASK (0x7f << 8) 500 #define DQSI0_TAP_MASK 0x7f 501 #define DQSI1_TAP(x) (((x) & 0x7f) << 8) 502 #define DQSI0_TAP(x) ((x) & 0x7f) 503 504 #define MT7530_TRGMII_RCK_RTT 0x7a04 505 #define DQS1_GATE BIT(31) 506 #define DQS0_GATE BIT(30) 507 508 #define MT7530_TRGMII_RD(x) (0x7a10 + (x) * 8) 509 #define BSLIP_EN BIT(31) 510 #define EDGE_CHK BIT(30) 511 #define RD_TAP_MASK 0x7f 512 #define RD_TAP(x) ((x) & 0x7f) 513 514 #define MT7530_TRGMII_TXCTRL 0x7a40 515 #define TRAIN_TXEN BIT(31) 516 #define TXC_INV BIT(30) 517 #define TX_RST BIT(28) 518 519 #define MT7530_TRGMII_TD_ODT(i) (0x7a54 + 8 * (i)) 520 #define TD_DM_DRVP(x) ((x) & 0xf) 521 #define TD_DM_DRVN(x) (((x) & 0xf) << 4) 522 523 #define MT7530_TRGMII_TCK_CTRL 0x7a78 524 #define TCK_TAP(x) (((x) & 0xf) << 8) 525 526 #define MT7530_P5RGMIIRXCR 0x7b00 527 #define CSR_RGMII_EDGE_ALIGN BIT(8) 528 #define CSR_RGMII_RXC_0DEG_CFG(x) ((x) & 0xf) 529 530 #define MT7530_P5RGMIITXCR 0x7b04 531 #define CSR_RGMII_TXC_CFG(x) ((x) & 0x1f) 532 533 /* Registers for GPIO mode */ 534 #define MT7531_GPIO_MODE0 0x7c0c 535 #define MT7531_GPIO0_MASK GENMASK(3, 0) 536 #define MT7531_GPIO0_INTERRUPT 1 537 538 #define MT7531_GPIO_MODE1 0x7c10 539 #define MT7531_GPIO11_RG_RXD2_MASK GENMASK(15, 12) 540 #define MT7531_EXT_P_MDC_11 (2 << 12) 541 #define MT7531_GPIO12_RG_RXD3_MASK GENMASK(19, 16) 542 #define MT7531_EXT_P_MDIO_12 (2 << 16) 543 544 #define MT7530_CREV 0x7ffc 545 #define CHIP_NAME_SHIFT 16 546 #define MT7530_ID 0x7530 547 548 #define MT7531_CREV 0x781C 549 #define CHIP_REV_M 0x0f 550 #define MT7531_ID 0x7531 551 552 /* Registers for core PLL access through mmd indirect */ 553 #define CORE_PLL_GROUP2 0x401 554 #define RG_SYSPLL_EN_NORMAL BIT(15) 555 #define RG_SYSPLL_VODEN BIT(14) 556 #define RG_SYSPLL_LF BIT(13) 557 #define RG_SYSPLL_RST_DLY(x) (((x) & 0x3) << 12) 558 #define RG_SYSPLL_LVROD_EN BIT(10) 559 #define RG_SYSPLL_PREDIV(x) (((x) & 0x3) << 8) 560 #define RG_SYSPLL_POSDIV(x) (((x) & 0x3) << 5) 561 #define RG_SYSPLL_FBKSEL BIT(4) 562 #define RT_SYSPLL_EN_AFE_OLT BIT(0) 563 564 #define CORE_PLL_GROUP4 0x403 565 #define RG_SYSPLL_DDSFBK_EN BIT(12) 566 #define RG_SYSPLL_BIAS_EN BIT(11) 567 #define RG_SYSPLL_BIAS_LPF_EN BIT(10) 568 #define MT7531_PHY_PLL_OFF BIT(5) 569 #define MT7531_PHY_PLL_BYPASS_MODE BIT(4) 570 571 #define MT753X_CTRL_PHY_ADDR 0 572 573 #define CORE_PLL_GROUP5 0x404 574 #define RG_LCDDS_PCW_NCPO1(x) ((x) & 0xffff) 575 576 #define CORE_PLL_GROUP6 0x405 577 #define RG_LCDDS_PCW_NCPO0(x) ((x) & 0xffff) 578 579 #define CORE_PLL_GROUP7 0x406 580 #define RG_LCDDS_PWDB BIT(15) 581 #define RG_LCDDS_ISO_EN BIT(13) 582 #define RG_LCCDS_C(x) (((x) & 0x7) << 4) 583 #define RG_LCDDS_PCW_NCPO_CHG BIT(3) 584 585 #define CORE_PLL_GROUP10 0x409 586 #define RG_LCDDS_SSC_DELTA(x) ((x) & 0xfff) 587 588 #define CORE_PLL_GROUP11 0x40a 589 #define RG_LCDDS_SSC_DELTA1(x) ((x) & 0xfff) 590 591 #define CORE_GSWPLL_GRP1 0x40d 592 #define RG_GSWPLL_PREDIV(x) (((x) & 0x3) << 14) 593 #define RG_GSWPLL_POSDIV_200M(x) (((x) & 0x3) << 12) 594 #define RG_GSWPLL_EN_PRE BIT(11) 595 #define RG_GSWPLL_FBKSEL BIT(10) 596 #define RG_GSWPLL_BP BIT(9) 597 #define RG_GSWPLL_BR BIT(8) 598 #define RG_GSWPLL_FBKDIV_200M(x) ((x) & 0xff) 599 600 #define CORE_GSWPLL_GRP2 0x40e 601 #define RG_GSWPLL_POSDIV_500M(x) (((x) & 0x3) << 8) 602 #define RG_GSWPLL_FBKDIV_500M(x) ((x) & 0xff) 603 604 #define CORE_TRGMII_GSW_CLK_CG 0x410 605 #define REG_GSWCK_EN BIT(0) 606 #define REG_TRGMIICK_EN BIT(1) 607 608 #define MIB_DESC(_s, _o, _n) \ 609 { \ 610 .size = (_s), \ 611 .offset = (_o), \ 612 .name = (_n), \ 613 } 614 615 struct mt7530_mib_desc { 616 unsigned int size; 617 unsigned int offset; 618 const char *name; 619 }; 620 621 struct mt7530_fdb { 622 u16 vid; 623 u8 port_mask; 624 u8 aging; 625 u8 mac[6]; 626 bool noarp; 627 }; 628 629 /* struct mt7530_port - This is the main data structure for holding the state 630 * of the port. 631 * @enable: The status used for show port is enabled or not. 632 * @pm: The matrix used to show all connections with the port. 633 * @pvid: The VLAN specified is to be considered a PVID at ingress. Any 634 * untagged frames will be assigned to the related VLAN. 635 * @vlan_filtering: The flags indicating whether the port that can recognize 636 * VLAN-tagged frames. 637 */ 638 struct mt7530_port { 639 bool enable; 640 u32 pm; 641 u16 pvid; 642 }; 643 644 /* Port 5 interface select definitions */ 645 enum p5_interface_select { 646 P5_DISABLED = 0, 647 P5_INTF_SEL_PHY_P0, 648 P5_INTF_SEL_PHY_P4, 649 P5_INTF_SEL_GMAC5, 650 P5_INTF_SEL_GMAC5_SGMII, 651 }; 652 653 static const char *p5_intf_modes(unsigned int p5_interface) 654 { 655 switch (p5_interface) { 656 case P5_DISABLED: 657 return "DISABLED"; 658 case P5_INTF_SEL_PHY_P0: 659 return "PHY P0"; 660 case P5_INTF_SEL_PHY_P4: 661 return "PHY P4"; 662 case P5_INTF_SEL_GMAC5: 663 return "GMAC5"; 664 case P5_INTF_SEL_GMAC5_SGMII: 665 return "GMAC5_SGMII"; 666 default: 667 return "unknown"; 668 } 669 } 670 671 /* struct mt753x_info - This is the main data structure for holding the specific 672 * part for each supported device 673 * @sw_setup: Holding the handler to a device initialization 674 * @phy_read: Holding the way reading PHY port 675 * @phy_write: Holding the way writing PHY port 676 * @pad_setup: Holding the way setting up the bus pad for a certain 677 * MAC port 678 * @phy_mode_supported: Check if the PHY type is being supported on a certain 679 * port 680 * @mac_port_validate: Holding the way to set addition validate type for a 681 * certan MAC port 682 * @mac_port_get_state: Holding the way getting the MAC/PCS state for a certain 683 * MAC port 684 * @mac_port_config: Holding the way setting up the PHY attribute to a 685 * certain MAC port 686 * @mac_pcs_an_restart Holding the way restarting PCS autonegotiation for a 687 * certain MAC port 688 * @mac_pcs_link_up: Holding the way setting up the PHY attribute to the pcs 689 * of the certain MAC port 690 */ 691 struct mt753x_info { 692 enum mt753x_id id; 693 694 int (*sw_setup)(struct dsa_switch *ds); 695 int (*phy_read)(struct dsa_switch *ds, int port, int regnum); 696 int (*phy_write)(struct dsa_switch *ds, int port, int regnum, u16 val); 697 int (*pad_setup)(struct dsa_switch *ds, phy_interface_t interface); 698 int (*cpu_port_config)(struct dsa_switch *ds, int port); 699 bool (*phy_mode_supported)(struct dsa_switch *ds, int port, 700 const struct phylink_link_state *state); 701 void (*mac_port_validate)(struct dsa_switch *ds, int port, 702 unsigned long *supported); 703 int (*mac_port_get_state)(struct dsa_switch *ds, int port, 704 struct phylink_link_state *state); 705 int (*mac_port_config)(struct dsa_switch *ds, int port, 706 unsigned int mode, 707 phy_interface_t interface); 708 void (*mac_pcs_an_restart)(struct dsa_switch *ds, int port); 709 void (*mac_pcs_link_up)(struct dsa_switch *ds, int port, 710 unsigned int mode, phy_interface_t interface, 711 int speed, int duplex); 712 }; 713 714 /* struct mt7530_priv - This is the main data structure for holding the state 715 * of the driver 716 * @dev: The device pointer 717 * @ds: The pointer to the dsa core structure 718 * @bus: The bus used for the device and built-in PHY 719 * @rstc: The pointer to reset control used by MCM 720 * @core_pwr: The power supplied into the core 721 * @io_pwr: The power supplied into the I/O 722 * @reset: The descriptor for GPIO line tied to its reset pin 723 * @mcm: Flag for distinguishing if standalone IC or module 724 * coupling 725 * @ports: Holding the state among ports 726 * @reg_mutex: The lock for protecting among process accessing 727 * registers 728 * @p6_interface Holding the current port 6 interface 729 * @p5_intf_sel: Holding the current port 5 interface select 730 */ 731 struct mt7530_priv { 732 struct device *dev; 733 struct dsa_switch *ds; 734 struct mii_bus *bus; 735 struct reset_control *rstc; 736 struct regulator *core_pwr; 737 struct regulator *io_pwr; 738 struct gpio_desc *reset; 739 const struct mt753x_info *info; 740 unsigned int id; 741 bool mcm; 742 phy_interface_t p6_interface; 743 phy_interface_t p5_interface; 744 unsigned int p5_intf_sel; 745 u8 mirror_rx; 746 u8 mirror_tx; 747 748 struct mt7530_port ports[MT7530_NUM_PORTS]; 749 /* protect among processes for registers access*/ 750 struct mutex reg_mutex; 751 }; 752 753 struct mt7530_hw_vlan_entry { 754 int port; 755 u8 old_members; 756 bool untagged; 757 }; 758 759 static inline void mt7530_hw_vlan_entry_init(struct mt7530_hw_vlan_entry *e, 760 int port, bool untagged) 761 { 762 e->port = port; 763 e->untagged = untagged; 764 } 765 766 typedef void (*mt7530_vlan_op)(struct mt7530_priv *, 767 struct mt7530_hw_vlan_entry *); 768 769 struct mt7530_hw_stats { 770 const char *string; 771 u16 reg; 772 u8 sizeof_stat; 773 }; 774 775 struct mt7530_dummy_poll { 776 struct mt7530_priv *priv; 777 u32 reg; 778 }; 779 780 static inline void INIT_MT7530_DUMMY_POLL(struct mt7530_dummy_poll *p, 781 struct mt7530_priv *priv, u32 reg) 782 { 783 p->priv = priv; 784 p->reg = reg; 785 } 786 787 #endif /* __MT7530_H */ 788