1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * drivers/net/phy/broadcom.c 4 * 5 * Broadcom BCM5411, BCM5421 and BCM5461 Gigabit Ethernet 6 * transceivers. 7 * 8 * Copyright (c) 2006 Maciej W. Rozycki 9 * 10 * Inspired by code written by Amy Fong. 11 */ 12 13 #include "bcm-phy-lib.h" 14 #include <linux/delay.h> 15 #include <linux/module.h> 16 #include <linux/phy.h> 17 #include <linux/pm_wakeup.h> 18 #include <linux/brcmphy.h> 19 #include <linux/of.h> 20 #include <linux/interrupt.h> 21 #include <linux/irq.h> 22 #include <linux/gpio/consumer.h> 23 24 #define BRCM_PHY_MODEL(phydev) \ 25 ((phydev)->drv->phy_id & (phydev)->drv->phy_id_mask) 26 27 #define BRCM_PHY_REV(phydev) \ 28 ((phydev)->drv->phy_id & ~((phydev)->drv->phy_id_mask)) 29 30 MODULE_DESCRIPTION("Broadcom PHY driver"); 31 MODULE_AUTHOR("Maciej W. Rozycki"); 32 MODULE_LICENSE("GPL"); 33 34 struct bcm54xx_phy_priv { 35 u64 *stats; 36 struct bcm_ptp_private *ptp; 37 int wake_irq; 38 bool wake_irq_enabled; 39 }; 40 41 static bool bcm54xx_phy_can_wakeup(struct phy_device *phydev) 42 { 43 struct bcm54xx_phy_priv *priv = phydev->priv; 44 45 return phy_interrupt_is_valid(phydev) || priv->wake_irq >= 0; 46 } 47 48 static int bcm54xx_config_clock_delay(struct phy_device *phydev) 49 { 50 int rc, val; 51 52 /* handling PHY's internal RX clock delay */ 53 val = bcm54xx_auxctl_read(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC); 54 val |= MII_BCM54XX_AUXCTL_MISC_WREN; 55 if (phydev->interface == PHY_INTERFACE_MODE_RGMII || 56 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) { 57 /* Disable RGMII RXC-RXD skew */ 58 val &= ~MII_BCM54XX_AUXCTL_SHDWSEL_MISC_RGMII_SKEW_EN; 59 } 60 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID || 61 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) { 62 /* Enable RGMII RXC-RXD skew */ 63 val |= MII_BCM54XX_AUXCTL_SHDWSEL_MISC_RGMII_SKEW_EN; 64 } 65 rc = bcm54xx_auxctl_write(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC, 66 val); 67 if (rc < 0) 68 return rc; 69 70 /* handling PHY's internal TX clock delay */ 71 val = bcm_phy_read_shadow(phydev, BCM54810_SHD_CLK_CTL); 72 if (phydev->interface == PHY_INTERFACE_MODE_RGMII || 73 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) { 74 /* Disable internal TX clock delay */ 75 val &= ~BCM54810_SHD_CLK_CTL_GTXCLK_EN; 76 } 77 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID || 78 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) { 79 /* Enable internal TX clock delay */ 80 val |= BCM54810_SHD_CLK_CTL_GTXCLK_EN; 81 } 82 rc = bcm_phy_write_shadow(phydev, BCM54810_SHD_CLK_CTL, val); 83 if (rc < 0) 84 return rc; 85 86 return 0; 87 } 88 89 static int bcm54210e_config_init(struct phy_device *phydev) 90 { 91 int val; 92 93 bcm54xx_config_clock_delay(phydev); 94 95 if (phydev->dev_flags & PHY_BRCM_EN_MASTER_MODE) { 96 val = phy_read(phydev, MII_CTRL1000); 97 val |= CTL1000_AS_MASTER | CTL1000_ENABLE_MASTER; 98 phy_write(phydev, MII_CTRL1000, val); 99 } 100 101 return 0; 102 } 103 104 static int bcm54612e_config_init(struct phy_device *phydev) 105 { 106 int reg; 107 108 bcm54xx_config_clock_delay(phydev); 109 110 /* Enable CLK125 MUX on LED4 if ref clock is enabled. */ 111 if (!(phydev->dev_flags & PHY_BRCM_RX_REFCLK_UNUSED)) { 112 int err; 113 114 reg = bcm_phy_read_exp(phydev, BCM54612E_EXP_SPARE0); 115 err = bcm_phy_write_exp(phydev, BCM54612E_EXP_SPARE0, 116 BCM54612E_LED4_CLK125OUT_EN | reg); 117 118 if (err < 0) 119 return err; 120 } 121 122 return 0; 123 } 124 125 static int bcm54616s_config_init(struct phy_device *phydev) 126 { 127 int rc, val; 128 129 if (phydev->interface != PHY_INTERFACE_MODE_SGMII && 130 phydev->interface != PHY_INTERFACE_MODE_1000BASEX) 131 return 0; 132 133 /* Ensure proper interface mode is selected. */ 134 /* Disable RGMII mode */ 135 val = bcm54xx_auxctl_read(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC); 136 if (val < 0) 137 return val; 138 val &= ~MII_BCM54XX_AUXCTL_SHDWSEL_MISC_RGMII_EN; 139 val |= MII_BCM54XX_AUXCTL_MISC_WREN; 140 rc = bcm54xx_auxctl_write(phydev, MII_BCM54XX_AUXCTL_SHDWSEL_MISC, 141 val); 142 if (rc < 0) 143 return rc; 144 145 /* Select 1000BASE-X register set (primary SerDes) */ 146 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_MODE); 147 if (val < 0) 148 return val; 149 val |= BCM54XX_SHD_MODE_1000BX; 150 rc = bcm_phy_write_shadow(phydev, BCM54XX_SHD_MODE, val); 151 if (rc < 0) 152 return rc; 153 154 /* Power down SerDes interface */ 155 rc = phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN); 156 if (rc < 0) 157 return rc; 158 159 /* Select proper interface mode */ 160 val &= ~BCM54XX_SHD_INTF_SEL_MASK; 161 val |= phydev->interface == PHY_INTERFACE_MODE_SGMII ? 162 BCM54XX_SHD_INTF_SEL_SGMII : 163 BCM54XX_SHD_INTF_SEL_GBIC; 164 rc = bcm_phy_write_shadow(phydev, BCM54XX_SHD_MODE, val); 165 if (rc < 0) 166 return rc; 167 168 /* Power up SerDes interface */ 169 rc = phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN); 170 if (rc < 0) 171 return rc; 172 173 /* Select copper register set */ 174 val &= ~BCM54XX_SHD_MODE_1000BX; 175 rc = bcm_phy_write_shadow(phydev, BCM54XX_SHD_MODE, val); 176 if (rc < 0) 177 return rc; 178 179 /* Power up copper interface */ 180 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN); 181 } 182 183 /* Needs SMDSP clock enabled via bcm54xx_phydsp_config() */ 184 static int bcm50610_a0_workaround(struct phy_device *phydev) 185 { 186 int err; 187 188 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_AADJ1CH0, 189 MII_BCM54XX_EXP_AADJ1CH0_SWP_ABCD_OEN | 190 MII_BCM54XX_EXP_AADJ1CH0_SWSEL_THPF); 191 if (err < 0) 192 return err; 193 194 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_AADJ1CH3, 195 MII_BCM54XX_EXP_AADJ1CH3_ADCCKADJ); 196 if (err < 0) 197 return err; 198 199 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP75, 200 MII_BCM54XX_EXP_EXP75_VDACCTRL); 201 if (err < 0) 202 return err; 203 204 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP96, 205 MII_BCM54XX_EXP_EXP96_MYST); 206 if (err < 0) 207 return err; 208 209 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP97, 210 MII_BCM54XX_EXP_EXP97_MYST); 211 212 return err; 213 } 214 215 static int bcm54xx_phydsp_config(struct phy_device *phydev) 216 { 217 int err, err2; 218 219 /* Enable the SMDSP clock */ 220 err = bcm54xx_auxctl_write(phydev, 221 MII_BCM54XX_AUXCTL_SHDWSEL_AUXCTL, 222 MII_BCM54XX_AUXCTL_ACTL_SMDSP_ENA | 223 MII_BCM54XX_AUXCTL_ACTL_TX_6DB); 224 if (err < 0) 225 return err; 226 227 if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 || 228 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) { 229 /* Clear bit 9 to fix a phy interop issue. */ 230 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP08, 231 MII_BCM54XX_EXP_EXP08_RJCT_2MHZ); 232 if (err < 0) 233 goto error; 234 235 if (phydev->drv->phy_id == PHY_ID_BCM50610) { 236 err = bcm50610_a0_workaround(phydev); 237 if (err < 0) 238 goto error; 239 } 240 } 241 242 if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM57780) { 243 int val; 244 245 val = bcm_phy_read_exp(phydev, MII_BCM54XX_EXP_EXP75); 246 if (val < 0) 247 goto error; 248 249 val |= MII_BCM54XX_EXP_EXP75_CM_OSC; 250 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP75, val); 251 } 252 253 error: 254 /* Disable the SMDSP clock */ 255 err2 = bcm54xx_auxctl_write(phydev, 256 MII_BCM54XX_AUXCTL_SHDWSEL_AUXCTL, 257 MII_BCM54XX_AUXCTL_ACTL_TX_6DB); 258 259 /* Return the first error reported. */ 260 return err ? err : err2; 261 } 262 263 static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev) 264 { 265 u32 orig; 266 int val; 267 bool clk125en = true; 268 269 /* Abort if we are using an untested phy. */ 270 if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM57780 && 271 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610 && 272 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610M && 273 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54210E && 274 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54810 && 275 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54811) 276 return; 277 278 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_SCR3); 279 if (val < 0) 280 return; 281 282 orig = val; 283 284 if ((BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 || 285 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) && 286 BRCM_PHY_REV(phydev) >= 0x3) { 287 /* 288 * Here, bit 0 _disables_ CLK125 when set. 289 * This bit is set by default. 290 */ 291 clk125en = false; 292 } else { 293 if (phydev->dev_flags & PHY_BRCM_RX_REFCLK_UNUSED) { 294 if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM54811) { 295 /* Here, bit 0 _enables_ CLK125 when set */ 296 val &= ~BCM54XX_SHD_SCR3_DEF_CLK125; 297 } 298 clk125en = false; 299 } 300 } 301 302 if (!clk125en || (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE)) 303 val &= ~BCM54XX_SHD_SCR3_DLLAPD_DIS; 304 else 305 val |= BCM54XX_SHD_SCR3_DLLAPD_DIS; 306 307 if (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY) { 308 if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54210E || 309 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54810 || 310 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM54811) 311 val |= BCM54XX_SHD_SCR3_RXCTXC_DIS; 312 else 313 val |= BCM54XX_SHD_SCR3_TRDDAPD; 314 } 315 316 if (orig != val) 317 bcm_phy_write_shadow(phydev, BCM54XX_SHD_SCR3, val); 318 319 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_APD); 320 if (val < 0) 321 return; 322 323 orig = val; 324 325 if (!clk125en || (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE)) 326 val |= BCM54XX_SHD_APD_EN; 327 else 328 val &= ~BCM54XX_SHD_APD_EN; 329 330 if (orig != val) 331 bcm_phy_write_shadow(phydev, BCM54XX_SHD_APD, val); 332 } 333 334 static void bcm54xx_ptp_stop(struct phy_device *phydev) 335 { 336 struct bcm54xx_phy_priv *priv = phydev->priv; 337 338 if (priv->ptp) 339 bcm_ptp_stop(priv->ptp); 340 } 341 342 static void bcm54xx_ptp_config_init(struct phy_device *phydev) 343 { 344 struct bcm54xx_phy_priv *priv = phydev->priv; 345 346 if (priv->ptp) 347 bcm_ptp_config_init(phydev); 348 } 349 350 static int bcm54xx_config_init(struct phy_device *phydev) 351 { 352 int reg, err, val; 353 354 reg = phy_read(phydev, MII_BCM54XX_ECR); 355 if (reg < 0) 356 return reg; 357 358 /* Mask interrupts globally. */ 359 reg |= MII_BCM54XX_ECR_IM; 360 err = phy_write(phydev, MII_BCM54XX_ECR, reg); 361 if (err < 0) 362 return err; 363 364 /* Unmask events we are interested in. */ 365 reg = ~(MII_BCM54XX_INT_DUPLEX | 366 MII_BCM54XX_INT_SPEED | 367 MII_BCM54XX_INT_LINK); 368 err = phy_write(phydev, MII_BCM54XX_IMR, reg); 369 if (err < 0) 370 return err; 371 372 if ((BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 || 373 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) && 374 (phydev->dev_flags & PHY_BRCM_CLEAR_RGMII_MODE)) 375 bcm_phy_write_shadow(phydev, BCM54XX_SHD_RGMII_MODE, 0); 376 377 bcm54xx_adjust_rxrefclk(phydev); 378 379 switch (BRCM_PHY_MODEL(phydev)) { 380 case PHY_ID_BCM50610: 381 case PHY_ID_BCM50610M: 382 err = bcm54xx_config_clock_delay(phydev); 383 break; 384 case PHY_ID_BCM54210E: 385 err = bcm54210e_config_init(phydev); 386 break; 387 case PHY_ID_BCM54612E: 388 err = bcm54612e_config_init(phydev); 389 break; 390 case PHY_ID_BCM54616S: 391 err = bcm54616s_config_init(phydev); 392 break; 393 case PHY_ID_BCM54810: 394 /* For BCM54810, we need to disable BroadR-Reach function */ 395 val = bcm_phy_read_exp(phydev, 396 BCM54810_EXP_BROADREACH_LRE_MISC_CTL); 397 val &= ~BCM54810_EXP_BROADREACH_LRE_MISC_CTL_EN; 398 err = bcm_phy_write_exp(phydev, 399 BCM54810_EXP_BROADREACH_LRE_MISC_CTL, 400 val); 401 break; 402 } 403 if (err) 404 return err; 405 406 bcm54xx_phydsp_config(phydev); 407 408 /* For non-SFP setups, encode link speed into LED1 and LED3 pair 409 * (green/amber). 410 * Also flash these two LEDs on activity. This means configuring 411 * them for MULTICOLOR and encoding link/activity into them. 412 * Don't do this for devices on an SFP module, since some of these 413 * use the LED outputs to control the SFP LOS signal, and changing 414 * these settings will cause LOS to malfunction. 415 */ 416 if (!phy_on_sfp(phydev)) { 417 val = BCM54XX_SHD_LEDS1_LED1(BCM_LED_SRC_MULTICOLOR1) | 418 BCM54XX_SHD_LEDS1_LED3(BCM_LED_SRC_MULTICOLOR1); 419 bcm_phy_write_shadow(phydev, BCM54XX_SHD_LEDS1, val); 420 421 val = BCM_LED_MULTICOLOR_IN_PHASE | 422 BCM54XX_SHD_LEDS1_LED1(BCM_LED_MULTICOLOR_LINK_ACT) | 423 BCM54XX_SHD_LEDS1_LED3(BCM_LED_MULTICOLOR_LINK_ACT); 424 bcm_phy_write_exp(phydev, BCM_EXP_MULTICOLOR, val); 425 } 426 427 bcm54xx_ptp_config_init(phydev); 428 429 /* Acknowledge any left over interrupt and charge the device for 430 * wake-up. 431 */ 432 err = bcm_phy_read_exp(phydev, BCM54XX_WOL_INT_STATUS); 433 if (err < 0) 434 return err; 435 436 if (err) 437 pm_wakeup_event(&phydev->mdio.dev, 0); 438 439 return 0; 440 } 441 442 static int bcm54xx_iddq_set(struct phy_device *phydev, bool enable) 443 { 444 int ret = 0; 445 446 if (!(phydev->dev_flags & PHY_BRCM_IDDQ_SUSPEND)) 447 return ret; 448 449 ret = bcm_phy_read_exp(phydev, BCM54XX_TOP_MISC_IDDQ_CTRL); 450 if (ret < 0) 451 goto out; 452 453 if (enable) 454 ret |= BCM54XX_TOP_MISC_IDDQ_SR | BCM54XX_TOP_MISC_IDDQ_LP; 455 else 456 ret &= ~(BCM54XX_TOP_MISC_IDDQ_SR | BCM54XX_TOP_MISC_IDDQ_LP); 457 458 ret = bcm_phy_write_exp(phydev, BCM54XX_TOP_MISC_IDDQ_CTRL, ret); 459 out: 460 return ret; 461 } 462 463 static int bcm54xx_set_wakeup_irq(struct phy_device *phydev, bool state) 464 { 465 struct bcm54xx_phy_priv *priv = phydev->priv; 466 int ret = 0; 467 468 if (!bcm54xx_phy_can_wakeup(phydev)) 469 return ret; 470 471 if (priv->wake_irq_enabled != state) { 472 if (state) 473 ret = enable_irq_wake(priv->wake_irq); 474 else 475 ret = disable_irq_wake(priv->wake_irq); 476 priv->wake_irq_enabled = state; 477 } 478 479 return ret; 480 } 481 482 static int bcm54xx_suspend(struct phy_device *phydev) 483 { 484 int ret = 0; 485 486 bcm54xx_ptp_stop(phydev); 487 488 /* Acknowledge any Wake-on-LAN interrupt prior to suspend */ 489 ret = bcm_phy_read_exp(phydev, BCM54XX_WOL_INT_STATUS); 490 if (ret < 0) 491 return ret; 492 493 if (phydev->wol_enabled) 494 return bcm54xx_set_wakeup_irq(phydev, true); 495 496 /* We cannot use a read/modify/write here otherwise the PHY gets into 497 * a bad state where its LEDs keep flashing, thus defeating the purpose 498 * of low power mode. 499 */ 500 ret = phy_write(phydev, MII_BMCR, BMCR_PDOWN); 501 if (ret < 0) 502 return ret; 503 504 return bcm54xx_iddq_set(phydev, true); 505 } 506 507 static int bcm54xx_resume(struct phy_device *phydev) 508 { 509 int ret = 0; 510 511 if (phydev->wol_enabled) { 512 ret = bcm54xx_set_wakeup_irq(phydev, false); 513 if (ret) 514 return ret; 515 } 516 517 ret = bcm54xx_iddq_set(phydev, false); 518 if (ret < 0) 519 return ret; 520 521 /* Writes to register other than BMCR would be ignored 522 * unless we clear the PDOWN bit first 523 */ 524 ret = genphy_resume(phydev); 525 if (ret < 0) 526 return ret; 527 528 /* Upon exiting power down, the PHY remains in an internal reset state 529 * for 40us 530 */ 531 fsleep(40); 532 533 /* Issue a soft reset after clearing the power down bit 534 * and before doing any other configuration. 535 */ 536 if (phydev->dev_flags & PHY_BRCM_IDDQ_SUSPEND) { 537 ret = genphy_soft_reset(phydev); 538 if (ret < 0) 539 return ret; 540 } 541 542 return bcm54xx_config_init(phydev); 543 } 544 545 static int bcm54811_config_init(struct phy_device *phydev) 546 { 547 int err, reg; 548 549 /* Disable BroadR-Reach function. */ 550 reg = bcm_phy_read_exp(phydev, BCM54810_EXP_BROADREACH_LRE_MISC_CTL); 551 reg &= ~BCM54810_EXP_BROADREACH_LRE_MISC_CTL_EN; 552 err = bcm_phy_write_exp(phydev, BCM54810_EXP_BROADREACH_LRE_MISC_CTL, 553 reg); 554 if (err < 0) 555 return err; 556 557 err = bcm54xx_config_init(phydev); 558 559 /* Enable CLK125 MUX on LED4 if ref clock is enabled. */ 560 if (!(phydev->dev_flags & PHY_BRCM_RX_REFCLK_UNUSED)) { 561 reg = bcm_phy_read_exp(phydev, BCM54612E_EXP_SPARE0); 562 err = bcm_phy_write_exp(phydev, BCM54612E_EXP_SPARE0, 563 BCM54612E_LED4_CLK125OUT_EN | reg); 564 if (err < 0) 565 return err; 566 } 567 568 return err; 569 } 570 571 static int bcm5481_config_aneg(struct phy_device *phydev) 572 { 573 struct device_node *np = phydev->mdio.dev.of_node; 574 int ret; 575 576 /* Aneg firstly. */ 577 ret = genphy_config_aneg(phydev); 578 579 /* Then we can set up the delay. */ 580 bcm54xx_config_clock_delay(phydev); 581 582 if (of_property_read_bool(np, "enet-phy-lane-swap")) { 583 /* Lane Swap - Undocumented register...magic! */ 584 ret = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_SEL_ER + 0x9, 585 0x11B); 586 if (ret < 0) 587 return ret; 588 } 589 590 return ret; 591 } 592 593 struct bcm54616s_phy_priv { 594 bool mode_1000bx_en; 595 }; 596 597 static int bcm54616s_probe(struct phy_device *phydev) 598 { 599 struct bcm54616s_phy_priv *priv; 600 int val; 601 602 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL); 603 if (!priv) 604 return -ENOMEM; 605 606 phydev->priv = priv; 607 608 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_MODE); 609 if (val < 0) 610 return val; 611 612 /* The PHY is strapped in RGMII-fiber mode when INTERF_SEL[1:0] 613 * is 01b, and the link between PHY and its link partner can be 614 * either 1000Base-X or 100Base-FX. 615 * RGMII-1000Base-X is properly supported, but RGMII-100Base-FX 616 * support is still missing as of now. 617 */ 618 if ((val & BCM54XX_SHD_INTF_SEL_MASK) == BCM54XX_SHD_INTF_SEL_RGMII) { 619 val = bcm_phy_read_shadow(phydev, BCM54616S_SHD_100FX_CTRL); 620 if (val < 0) 621 return val; 622 623 /* Bit 0 of the SerDes 100-FX Control register, when set 624 * to 1, sets the MII/RGMII -> 100BASE-FX configuration. 625 * When this bit is set to 0, it sets the GMII/RGMII -> 626 * 1000BASE-X configuration. 627 */ 628 if (!(val & BCM54616S_100FX_MODE)) 629 priv->mode_1000bx_en = true; 630 631 phydev->port = PORT_FIBRE; 632 } 633 634 return 0; 635 } 636 637 static int bcm54616s_config_aneg(struct phy_device *phydev) 638 { 639 struct bcm54616s_phy_priv *priv = phydev->priv; 640 int ret; 641 642 /* Aneg firstly. */ 643 if (priv->mode_1000bx_en) 644 ret = genphy_c37_config_aneg(phydev); 645 else 646 ret = genphy_config_aneg(phydev); 647 648 /* Then we can set up the delay. */ 649 bcm54xx_config_clock_delay(phydev); 650 651 return ret; 652 } 653 654 static int bcm54616s_read_status(struct phy_device *phydev) 655 { 656 struct bcm54616s_phy_priv *priv = phydev->priv; 657 int err; 658 659 if (priv->mode_1000bx_en) 660 err = genphy_c37_read_status(phydev); 661 else 662 err = genphy_read_status(phydev); 663 664 return err; 665 } 666 667 static int brcm_phy_setbits(struct phy_device *phydev, int reg, int set) 668 { 669 int val; 670 671 val = phy_read(phydev, reg); 672 if (val < 0) 673 return val; 674 675 return phy_write(phydev, reg, val | set); 676 } 677 678 static int brcm_fet_config_init(struct phy_device *phydev) 679 { 680 int reg, err, err2, brcmtest; 681 682 /* Reset the PHY to bring it to a known state. */ 683 err = phy_write(phydev, MII_BMCR, BMCR_RESET); 684 if (err < 0) 685 return err; 686 687 /* The datasheet indicates the PHY needs up to 1us to complete a reset, 688 * build some slack here. 689 */ 690 usleep_range(1000, 2000); 691 692 /* The PHY requires 65 MDC clock cycles to complete a write operation 693 * and turnaround the line properly. 694 * 695 * We ignore -EIO here as the MDIO controller (e.g.: mdio-bcm-unimac) 696 * may flag the lack of turn-around as a read failure. This is 697 * particularly true with this combination since the MDIO controller 698 * only used 64 MDC cycles. This is not a critical failure in this 699 * specific case and it has no functional impact otherwise, so we let 700 * that one go through. If there is a genuine bus error, the next read 701 * of MII_BRCM_FET_INTREG will error out. 702 */ 703 err = phy_read(phydev, MII_BMCR); 704 if (err < 0 && err != -EIO) 705 return err; 706 707 reg = phy_read(phydev, MII_BRCM_FET_INTREG); 708 if (reg < 0) 709 return reg; 710 711 /* Unmask events we are interested in and mask interrupts globally. */ 712 reg = MII_BRCM_FET_IR_DUPLEX_EN | 713 MII_BRCM_FET_IR_SPEED_EN | 714 MII_BRCM_FET_IR_LINK_EN | 715 MII_BRCM_FET_IR_ENABLE | 716 MII_BRCM_FET_IR_MASK; 717 718 err = phy_write(phydev, MII_BRCM_FET_INTREG, reg); 719 if (err < 0) 720 return err; 721 722 /* Enable shadow register access */ 723 brcmtest = phy_read(phydev, MII_BRCM_FET_BRCMTEST); 724 if (brcmtest < 0) 725 return brcmtest; 726 727 reg = brcmtest | MII_BRCM_FET_BT_SRE; 728 729 err = phy_write(phydev, MII_BRCM_FET_BRCMTEST, reg); 730 if (err < 0) 731 return err; 732 733 /* Set the LED mode */ 734 reg = phy_read(phydev, MII_BRCM_FET_SHDW_AUXMODE4); 735 if (reg < 0) { 736 err = reg; 737 goto done; 738 } 739 740 reg &= ~MII_BRCM_FET_SHDW_AM4_LED_MASK; 741 reg |= MII_BRCM_FET_SHDW_AM4_LED_MODE1; 742 743 err = phy_write(phydev, MII_BRCM_FET_SHDW_AUXMODE4, reg); 744 if (err < 0) 745 goto done; 746 747 /* Enable auto MDIX */ 748 err = brcm_phy_setbits(phydev, MII_BRCM_FET_SHDW_MISCCTRL, 749 MII_BRCM_FET_SHDW_MC_FAME); 750 if (err < 0) 751 goto done; 752 753 if (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE) { 754 /* Enable auto power down */ 755 err = brcm_phy_setbits(phydev, MII_BRCM_FET_SHDW_AUXSTAT2, 756 MII_BRCM_FET_SHDW_AS2_APDE); 757 } 758 759 done: 760 /* Disable shadow register access */ 761 err2 = phy_write(phydev, MII_BRCM_FET_BRCMTEST, brcmtest); 762 if (!err) 763 err = err2; 764 765 return err; 766 } 767 768 static int brcm_fet_ack_interrupt(struct phy_device *phydev) 769 { 770 int reg; 771 772 /* Clear pending interrupts. */ 773 reg = phy_read(phydev, MII_BRCM_FET_INTREG); 774 if (reg < 0) 775 return reg; 776 777 return 0; 778 } 779 780 static int brcm_fet_config_intr(struct phy_device *phydev) 781 { 782 int reg, err; 783 784 reg = phy_read(phydev, MII_BRCM_FET_INTREG); 785 if (reg < 0) 786 return reg; 787 788 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) { 789 err = brcm_fet_ack_interrupt(phydev); 790 if (err) 791 return err; 792 793 reg &= ~MII_BRCM_FET_IR_MASK; 794 err = phy_write(phydev, MII_BRCM_FET_INTREG, reg); 795 } else { 796 reg |= MII_BRCM_FET_IR_MASK; 797 err = phy_write(phydev, MII_BRCM_FET_INTREG, reg); 798 if (err) 799 return err; 800 801 err = brcm_fet_ack_interrupt(phydev); 802 } 803 804 return err; 805 } 806 807 static irqreturn_t brcm_fet_handle_interrupt(struct phy_device *phydev) 808 { 809 int irq_status; 810 811 irq_status = phy_read(phydev, MII_BRCM_FET_INTREG); 812 if (irq_status < 0) { 813 phy_error(phydev); 814 return IRQ_NONE; 815 } 816 817 if (irq_status == 0) 818 return IRQ_NONE; 819 820 phy_trigger_machine(phydev); 821 822 return IRQ_HANDLED; 823 } 824 825 static int brcm_fet_suspend(struct phy_device *phydev) 826 { 827 int reg, err, err2, brcmtest; 828 829 /* We cannot use a read/modify/write here otherwise the PHY continues 830 * to drive LEDs which defeats the purpose of low power mode. 831 */ 832 err = phy_write(phydev, MII_BMCR, BMCR_PDOWN); 833 if (err < 0) 834 return err; 835 836 /* Enable shadow register access */ 837 brcmtest = phy_read(phydev, MII_BRCM_FET_BRCMTEST); 838 if (brcmtest < 0) 839 return brcmtest; 840 841 reg = brcmtest | MII_BRCM_FET_BT_SRE; 842 843 err = phy_write(phydev, MII_BRCM_FET_BRCMTEST, reg); 844 if (err < 0) 845 return err; 846 847 /* Set standby mode */ 848 err = phy_modify(phydev, MII_BRCM_FET_SHDW_AUXMODE4, 849 MII_BRCM_FET_SHDW_AM4_STANDBY, 850 MII_BRCM_FET_SHDW_AM4_STANDBY); 851 852 /* Disable shadow register access */ 853 err2 = phy_write(phydev, MII_BRCM_FET_BRCMTEST, brcmtest); 854 if (!err) 855 err = err2; 856 857 return err; 858 } 859 860 static void bcm54xx_phy_get_wol(struct phy_device *phydev, 861 struct ethtool_wolinfo *wol) 862 { 863 /* We cannot wake-up if we do not have a dedicated PHY interrupt line 864 * or an out of band GPIO descriptor for wake-up. Zeroing 865 * wol->supported allows the caller (MAC driver) to play through and 866 * offer its own Wake-on-LAN scheme if available. 867 */ 868 if (!bcm54xx_phy_can_wakeup(phydev)) { 869 wol->supported = 0; 870 return; 871 } 872 873 bcm_phy_get_wol(phydev, wol); 874 } 875 876 static int bcm54xx_phy_set_wol(struct phy_device *phydev, 877 struct ethtool_wolinfo *wol) 878 { 879 int ret; 880 881 /* We cannot wake-up if we do not have a dedicated PHY interrupt line 882 * or an out of band GPIO descriptor for wake-up. Returning -EOPNOTSUPP 883 * allows the caller (MAC driver) to play through and offer its own 884 * Wake-on-LAN scheme if available. 885 */ 886 if (!bcm54xx_phy_can_wakeup(phydev)) 887 return -EOPNOTSUPP; 888 889 ret = bcm_phy_set_wol(phydev, wol); 890 if (ret < 0) 891 return ret; 892 893 return 0; 894 } 895 896 static int bcm54xx_phy_probe(struct phy_device *phydev) 897 { 898 struct bcm54xx_phy_priv *priv; 899 struct gpio_desc *wakeup_gpio; 900 int ret = 0; 901 902 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL); 903 if (!priv) 904 return -ENOMEM; 905 906 priv->wake_irq = -ENXIO; 907 908 phydev->priv = priv; 909 910 priv->stats = devm_kcalloc(&phydev->mdio.dev, 911 bcm_phy_get_sset_count(phydev), sizeof(u64), 912 GFP_KERNEL); 913 if (!priv->stats) 914 return -ENOMEM; 915 916 priv->ptp = bcm_ptp_probe(phydev); 917 if (IS_ERR(priv->ptp)) 918 return PTR_ERR(priv->ptp); 919 920 /* We cannot utilize the _optional variant here since we want to know 921 * whether the GPIO descriptor exists or not to advertise Wake-on-LAN 922 * support or not. 923 */ 924 wakeup_gpio = devm_gpiod_get(&phydev->mdio.dev, "wakeup", GPIOD_IN); 925 if (PTR_ERR(wakeup_gpio) == -EPROBE_DEFER) 926 return PTR_ERR(wakeup_gpio); 927 928 if (!IS_ERR(wakeup_gpio)) { 929 priv->wake_irq = gpiod_to_irq(wakeup_gpio); 930 931 /* Dummy interrupt handler which is not enabled but is provided 932 * in order for the interrupt descriptor to be fully set-up. 933 */ 934 ret = devm_request_irq(&phydev->mdio.dev, priv->wake_irq, 935 bcm_phy_wol_isr, 936 IRQF_TRIGGER_LOW | IRQF_NO_AUTOEN, 937 dev_name(&phydev->mdio.dev), phydev); 938 if (ret) 939 return ret; 940 } 941 942 /* If we do not have a main interrupt or a side-band wake-up interrupt, 943 * then the device cannot be marked as wake-up capable. 944 */ 945 if (!bcm54xx_phy_can_wakeup(phydev)) 946 return 0; 947 948 return device_init_wakeup(&phydev->mdio.dev, true); 949 } 950 951 static void bcm54xx_get_stats(struct phy_device *phydev, 952 struct ethtool_stats *stats, u64 *data) 953 { 954 struct bcm54xx_phy_priv *priv = phydev->priv; 955 956 bcm_phy_get_stats(phydev, priv->stats, stats, data); 957 } 958 959 static void bcm54xx_link_change_notify(struct phy_device *phydev) 960 { 961 u16 mask = MII_BCM54XX_EXP_EXP08_EARLY_DAC_WAKE | 962 MII_BCM54XX_EXP_EXP08_FORCE_DAC_WAKE; 963 int ret; 964 965 if (phydev->state != PHY_RUNNING) 966 return; 967 968 /* Don't change the DAC wake settings if auto power down 969 * is not requested. 970 */ 971 if (!(phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE)) 972 return; 973 974 ret = bcm_phy_read_exp(phydev, MII_BCM54XX_EXP_EXP08); 975 if (ret < 0) 976 return; 977 978 /* Enable/disable 10BaseT auto and forced early DAC wake depending 979 * on the negotiated speed, those settings should only be done 980 * for 10Mbits/sec. 981 */ 982 if (phydev->speed == SPEED_10) 983 ret |= mask; 984 else 985 ret &= ~mask; 986 bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP08, ret); 987 } 988 989 static struct phy_driver broadcom_drivers[] = { 990 { 991 .phy_id = PHY_ID_BCM5411, 992 .phy_id_mask = 0xfffffff0, 993 .name = "Broadcom BCM5411", 994 /* PHY_GBIT_FEATURES */ 995 .get_sset_count = bcm_phy_get_sset_count, 996 .get_strings = bcm_phy_get_strings, 997 .get_stats = bcm54xx_get_stats, 998 .probe = bcm54xx_phy_probe, 999 .config_init = bcm54xx_config_init, 1000 .config_intr = bcm_phy_config_intr, 1001 .handle_interrupt = bcm_phy_handle_interrupt, 1002 .link_change_notify = bcm54xx_link_change_notify, 1003 }, { 1004 .phy_id = PHY_ID_BCM5421, 1005 .phy_id_mask = 0xfffffff0, 1006 .name = "Broadcom BCM5421", 1007 /* PHY_GBIT_FEATURES */ 1008 .get_sset_count = bcm_phy_get_sset_count, 1009 .get_strings = bcm_phy_get_strings, 1010 .get_stats = bcm54xx_get_stats, 1011 .probe = bcm54xx_phy_probe, 1012 .config_init = bcm54xx_config_init, 1013 .config_intr = bcm_phy_config_intr, 1014 .handle_interrupt = bcm_phy_handle_interrupt, 1015 .link_change_notify = bcm54xx_link_change_notify, 1016 }, { 1017 .phy_id = PHY_ID_BCM54210E, 1018 .phy_id_mask = 0xfffffff0, 1019 .name = "Broadcom BCM54210E", 1020 /* PHY_GBIT_FEATURES */ 1021 .flags = PHY_ALWAYS_CALL_SUSPEND, 1022 .get_sset_count = bcm_phy_get_sset_count, 1023 .get_strings = bcm_phy_get_strings, 1024 .get_stats = bcm54xx_get_stats, 1025 .probe = bcm54xx_phy_probe, 1026 .config_init = bcm54xx_config_init, 1027 .config_intr = bcm_phy_config_intr, 1028 .handle_interrupt = bcm_phy_handle_interrupt, 1029 .link_change_notify = bcm54xx_link_change_notify, 1030 .suspend = bcm54xx_suspend, 1031 .resume = bcm54xx_resume, 1032 .get_wol = bcm54xx_phy_get_wol, 1033 .set_wol = bcm54xx_phy_set_wol, 1034 .led_brightness_set = bcm_phy_led_brightness_set, 1035 }, { 1036 .phy_id = PHY_ID_BCM5461, 1037 .phy_id_mask = 0xfffffff0, 1038 .name = "Broadcom BCM5461", 1039 /* PHY_GBIT_FEATURES */ 1040 .get_sset_count = bcm_phy_get_sset_count, 1041 .get_strings = bcm_phy_get_strings, 1042 .get_stats = bcm54xx_get_stats, 1043 .probe = bcm54xx_phy_probe, 1044 .config_init = bcm54xx_config_init, 1045 .config_intr = bcm_phy_config_intr, 1046 .handle_interrupt = bcm_phy_handle_interrupt, 1047 .link_change_notify = bcm54xx_link_change_notify, 1048 .led_brightness_set = bcm_phy_led_brightness_set, 1049 }, { 1050 .phy_id = PHY_ID_BCM54612E, 1051 .phy_id_mask = 0xfffffff0, 1052 .name = "Broadcom BCM54612E", 1053 /* PHY_GBIT_FEATURES */ 1054 .get_sset_count = bcm_phy_get_sset_count, 1055 .get_strings = bcm_phy_get_strings, 1056 .get_stats = bcm54xx_get_stats, 1057 .probe = bcm54xx_phy_probe, 1058 .config_init = bcm54xx_config_init, 1059 .config_intr = bcm_phy_config_intr, 1060 .handle_interrupt = bcm_phy_handle_interrupt, 1061 .link_change_notify = bcm54xx_link_change_notify, 1062 .led_brightness_set = bcm_phy_led_brightness_set, 1063 }, { 1064 .phy_id = PHY_ID_BCM54616S, 1065 .phy_id_mask = 0xfffffff0, 1066 .name = "Broadcom BCM54616S", 1067 /* PHY_GBIT_FEATURES */ 1068 .soft_reset = genphy_soft_reset, 1069 .config_init = bcm54xx_config_init, 1070 .config_aneg = bcm54616s_config_aneg, 1071 .config_intr = bcm_phy_config_intr, 1072 .handle_interrupt = bcm_phy_handle_interrupt, 1073 .read_status = bcm54616s_read_status, 1074 .probe = bcm54616s_probe, 1075 .link_change_notify = bcm54xx_link_change_notify, 1076 .led_brightness_set = bcm_phy_led_brightness_set, 1077 }, { 1078 .phy_id = PHY_ID_BCM5464, 1079 .phy_id_mask = 0xfffffff0, 1080 .name = "Broadcom BCM5464", 1081 /* PHY_GBIT_FEATURES */ 1082 .get_sset_count = bcm_phy_get_sset_count, 1083 .get_strings = bcm_phy_get_strings, 1084 .get_stats = bcm54xx_get_stats, 1085 .probe = bcm54xx_phy_probe, 1086 .config_init = bcm54xx_config_init, 1087 .config_intr = bcm_phy_config_intr, 1088 .handle_interrupt = bcm_phy_handle_interrupt, 1089 .suspend = genphy_suspend, 1090 .resume = genphy_resume, 1091 .link_change_notify = bcm54xx_link_change_notify, 1092 .led_brightness_set = bcm_phy_led_brightness_set, 1093 }, { 1094 .phy_id = PHY_ID_BCM5481, 1095 .phy_id_mask = 0xfffffff0, 1096 .name = "Broadcom BCM5481", 1097 /* PHY_GBIT_FEATURES */ 1098 .get_sset_count = bcm_phy_get_sset_count, 1099 .get_strings = bcm_phy_get_strings, 1100 .get_stats = bcm54xx_get_stats, 1101 .probe = bcm54xx_phy_probe, 1102 .config_init = bcm54xx_config_init, 1103 .config_aneg = bcm5481_config_aneg, 1104 .config_intr = bcm_phy_config_intr, 1105 .handle_interrupt = bcm_phy_handle_interrupt, 1106 .link_change_notify = bcm54xx_link_change_notify, 1107 .led_brightness_set = bcm_phy_led_brightness_set, 1108 }, { 1109 .phy_id = PHY_ID_BCM54810, 1110 .phy_id_mask = 0xfffffff0, 1111 .name = "Broadcom BCM54810", 1112 /* PHY_GBIT_FEATURES */ 1113 .get_sset_count = bcm_phy_get_sset_count, 1114 .get_strings = bcm_phy_get_strings, 1115 .get_stats = bcm54xx_get_stats, 1116 .probe = bcm54xx_phy_probe, 1117 .config_init = bcm54xx_config_init, 1118 .config_aneg = bcm5481_config_aneg, 1119 .config_intr = bcm_phy_config_intr, 1120 .handle_interrupt = bcm_phy_handle_interrupt, 1121 .suspend = bcm54xx_suspend, 1122 .resume = bcm54xx_resume, 1123 .link_change_notify = bcm54xx_link_change_notify, 1124 .led_brightness_set = bcm_phy_led_brightness_set, 1125 }, { 1126 .phy_id = PHY_ID_BCM54811, 1127 .phy_id_mask = 0xfffffff0, 1128 .name = "Broadcom BCM54811", 1129 /* PHY_GBIT_FEATURES */ 1130 .get_sset_count = bcm_phy_get_sset_count, 1131 .get_strings = bcm_phy_get_strings, 1132 .get_stats = bcm54xx_get_stats, 1133 .probe = bcm54xx_phy_probe, 1134 .config_init = bcm54811_config_init, 1135 .config_aneg = bcm5481_config_aneg, 1136 .config_intr = bcm_phy_config_intr, 1137 .handle_interrupt = bcm_phy_handle_interrupt, 1138 .suspend = bcm54xx_suspend, 1139 .resume = bcm54xx_resume, 1140 .link_change_notify = bcm54xx_link_change_notify, 1141 .led_brightness_set = bcm_phy_led_brightness_set, 1142 }, { 1143 .phy_id = PHY_ID_BCM5482, 1144 .phy_id_mask = 0xfffffff0, 1145 .name = "Broadcom BCM5482", 1146 /* PHY_GBIT_FEATURES */ 1147 .get_sset_count = bcm_phy_get_sset_count, 1148 .get_strings = bcm_phy_get_strings, 1149 .get_stats = bcm54xx_get_stats, 1150 .probe = bcm54xx_phy_probe, 1151 .config_init = bcm54xx_config_init, 1152 .config_intr = bcm_phy_config_intr, 1153 .handle_interrupt = bcm_phy_handle_interrupt, 1154 .link_change_notify = bcm54xx_link_change_notify, 1155 .led_brightness_set = bcm_phy_led_brightness_set, 1156 }, { 1157 .phy_id = PHY_ID_BCM50610, 1158 .phy_id_mask = 0xfffffff0, 1159 .name = "Broadcom BCM50610", 1160 /* PHY_GBIT_FEATURES */ 1161 .get_sset_count = bcm_phy_get_sset_count, 1162 .get_strings = bcm_phy_get_strings, 1163 .get_stats = bcm54xx_get_stats, 1164 .probe = bcm54xx_phy_probe, 1165 .config_init = bcm54xx_config_init, 1166 .config_intr = bcm_phy_config_intr, 1167 .handle_interrupt = bcm_phy_handle_interrupt, 1168 .link_change_notify = bcm54xx_link_change_notify, 1169 .suspend = bcm54xx_suspend, 1170 .resume = bcm54xx_resume, 1171 .led_brightness_set = bcm_phy_led_brightness_set, 1172 }, { 1173 .phy_id = PHY_ID_BCM50610M, 1174 .phy_id_mask = 0xfffffff0, 1175 .name = "Broadcom BCM50610M", 1176 /* PHY_GBIT_FEATURES */ 1177 .get_sset_count = bcm_phy_get_sset_count, 1178 .get_strings = bcm_phy_get_strings, 1179 .get_stats = bcm54xx_get_stats, 1180 .probe = bcm54xx_phy_probe, 1181 .config_init = bcm54xx_config_init, 1182 .config_intr = bcm_phy_config_intr, 1183 .handle_interrupt = bcm_phy_handle_interrupt, 1184 .link_change_notify = bcm54xx_link_change_notify, 1185 .suspend = bcm54xx_suspend, 1186 .resume = bcm54xx_resume, 1187 .led_brightness_set = bcm_phy_led_brightness_set, 1188 }, { 1189 .phy_id = PHY_ID_BCM57780, 1190 .phy_id_mask = 0xfffffff0, 1191 .name = "Broadcom BCM57780", 1192 /* PHY_GBIT_FEATURES */ 1193 .get_sset_count = bcm_phy_get_sset_count, 1194 .get_strings = bcm_phy_get_strings, 1195 .get_stats = bcm54xx_get_stats, 1196 .probe = bcm54xx_phy_probe, 1197 .config_init = bcm54xx_config_init, 1198 .config_intr = bcm_phy_config_intr, 1199 .handle_interrupt = bcm_phy_handle_interrupt, 1200 .link_change_notify = bcm54xx_link_change_notify, 1201 .led_brightness_set = bcm_phy_led_brightness_set, 1202 }, { 1203 .phy_id = PHY_ID_BCMAC131, 1204 .phy_id_mask = 0xfffffff0, 1205 .name = "Broadcom BCMAC131", 1206 /* PHY_BASIC_FEATURES */ 1207 .config_init = brcm_fet_config_init, 1208 .config_intr = brcm_fet_config_intr, 1209 .handle_interrupt = brcm_fet_handle_interrupt, 1210 .suspend = brcm_fet_suspend, 1211 .resume = brcm_fet_config_init, 1212 }, { 1213 .phy_id = PHY_ID_BCM5241, 1214 .phy_id_mask = 0xfffffff0, 1215 .name = "Broadcom BCM5241", 1216 /* PHY_BASIC_FEATURES */ 1217 .config_init = brcm_fet_config_init, 1218 .config_intr = brcm_fet_config_intr, 1219 .handle_interrupt = brcm_fet_handle_interrupt, 1220 .suspend = brcm_fet_suspend, 1221 .resume = brcm_fet_config_init, 1222 }, { 1223 .phy_id = PHY_ID_BCM5395, 1224 .phy_id_mask = 0xfffffff0, 1225 .name = "Broadcom BCM5395", 1226 .flags = PHY_IS_INTERNAL, 1227 /* PHY_GBIT_FEATURES */ 1228 .get_sset_count = bcm_phy_get_sset_count, 1229 .get_strings = bcm_phy_get_strings, 1230 .get_stats = bcm54xx_get_stats, 1231 .probe = bcm54xx_phy_probe, 1232 .link_change_notify = bcm54xx_link_change_notify, 1233 .led_brightness_set = bcm_phy_led_brightness_set, 1234 }, { 1235 .phy_id = PHY_ID_BCM53125, 1236 .phy_id_mask = 0xfffffff0, 1237 .name = "Broadcom BCM53125", 1238 .flags = PHY_IS_INTERNAL, 1239 /* PHY_GBIT_FEATURES */ 1240 .get_sset_count = bcm_phy_get_sset_count, 1241 .get_strings = bcm_phy_get_strings, 1242 .get_stats = bcm54xx_get_stats, 1243 .probe = bcm54xx_phy_probe, 1244 .config_init = bcm54xx_config_init, 1245 .config_intr = bcm_phy_config_intr, 1246 .handle_interrupt = bcm_phy_handle_interrupt, 1247 .link_change_notify = bcm54xx_link_change_notify, 1248 .led_brightness_set = bcm_phy_led_brightness_set, 1249 }, { 1250 .phy_id = PHY_ID_BCM53128, 1251 .phy_id_mask = 0xfffffff0, 1252 .name = "Broadcom BCM53128", 1253 .flags = PHY_IS_INTERNAL, 1254 /* PHY_GBIT_FEATURES */ 1255 .get_sset_count = bcm_phy_get_sset_count, 1256 .get_strings = bcm_phy_get_strings, 1257 .get_stats = bcm54xx_get_stats, 1258 .probe = bcm54xx_phy_probe, 1259 .config_init = bcm54xx_config_init, 1260 .config_intr = bcm_phy_config_intr, 1261 .handle_interrupt = bcm_phy_handle_interrupt, 1262 .link_change_notify = bcm54xx_link_change_notify, 1263 .led_brightness_set = bcm_phy_led_brightness_set, 1264 }, { 1265 .phy_id = PHY_ID_BCM89610, 1266 .phy_id_mask = 0xfffffff0, 1267 .name = "Broadcom BCM89610", 1268 /* PHY_GBIT_FEATURES */ 1269 .get_sset_count = bcm_phy_get_sset_count, 1270 .get_strings = bcm_phy_get_strings, 1271 .get_stats = bcm54xx_get_stats, 1272 .probe = bcm54xx_phy_probe, 1273 .config_init = bcm54xx_config_init, 1274 .config_intr = bcm_phy_config_intr, 1275 .handle_interrupt = bcm_phy_handle_interrupt, 1276 .link_change_notify = bcm54xx_link_change_notify, 1277 } }; 1278 1279 module_phy_driver(broadcom_drivers); 1280 1281 static struct mdio_device_id __maybe_unused broadcom_tbl[] = { 1282 { PHY_ID_BCM5411, 0xfffffff0 }, 1283 { PHY_ID_BCM5421, 0xfffffff0 }, 1284 { PHY_ID_BCM54210E, 0xfffffff0 }, 1285 { PHY_ID_BCM5461, 0xfffffff0 }, 1286 { PHY_ID_BCM54612E, 0xfffffff0 }, 1287 { PHY_ID_BCM54616S, 0xfffffff0 }, 1288 { PHY_ID_BCM5464, 0xfffffff0 }, 1289 { PHY_ID_BCM5481, 0xfffffff0 }, 1290 { PHY_ID_BCM54810, 0xfffffff0 }, 1291 { PHY_ID_BCM54811, 0xfffffff0 }, 1292 { PHY_ID_BCM5482, 0xfffffff0 }, 1293 { PHY_ID_BCM50610, 0xfffffff0 }, 1294 { PHY_ID_BCM50610M, 0xfffffff0 }, 1295 { PHY_ID_BCM57780, 0xfffffff0 }, 1296 { PHY_ID_BCMAC131, 0xfffffff0 }, 1297 { PHY_ID_BCM5241, 0xfffffff0 }, 1298 { PHY_ID_BCM5395, 0xfffffff0 }, 1299 { PHY_ID_BCM53125, 0xfffffff0 }, 1300 { PHY_ID_BCM53128, 0xfffffff0 }, 1301 { PHY_ID_BCM89610, 0xfffffff0 }, 1302 { } 1303 }; 1304 1305 MODULE_DEVICE_TABLE(mdio, broadcom_tbl); 1306