1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Core PHY library, taken from phy.c 4 */ 5 #include <linux/export.h> 6 #include <linux/phy.h> 7 #include <linux/of.h> 8 9 /** 10 * phy_speed_to_str - Return a string representing the PHY link speed 11 * 12 * @speed: Speed of the link 13 */ 14 const char *phy_speed_to_str(int speed) 15 { 16 BUILD_BUG_ON_MSG(__ETHTOOL_LINK_MODE_MASK_NBITS != 103, 17 "Enum ethtool_link_mode_bit_indices and phylib are out of sync. " 18 "If a speed or mode has been added please update phy_speed_to_str " 19 "and the PHY settings array.\n"); 20 21 switch (speed) { 22 case SPEED_10: 23 return "10Mbps"; 24 case SPEED_100: 25 return "100Mbps"; 26 case SPEED_1000: 27 return "1Gbps"; 28 case SPEED_2500: 29 return "2.5Gbps"; 30 case SPEED_5000: 31 return "5Gbps"; 32 case SPEED_10000: 33 return "10Gbps"; 34 case SPEED_14000: 35 return "14Gbps"; 36 case SPEED_20000: 37 return "20Gbps"; 38 case SPEED_25000: 39 return "25Gbps"; 40 case SPEED_40000: 41 return "40Gbps"; 42 case SPEED_50000: 43 return "50Gbps"; 44 case SPEED_56000: 45 return "56Gbps"; 46 case SPEED_100000: 47 return "100Gbps"; 48 case SPEED_200000: 49 return "200Gbps"; 50 case SPEED_400000: 51 return "400Gbps"; 52 case SPEED_800000: 53 return "800Gbps"; 54 case SPEED_UNKNOWN: 55 return "Unknown"; 56 default: 57 return "Unsupported (update phy-core.c)"; 58 } 59 } 60 EXPORT_SYMBOL_GPL(phy_speed_to_str); 61 62 /** 63 * phy_duplex_to_str - Return string describing the duplex 64 * 65 * @duplex: Duplex setting to describe 66 */ 67 const char *phy_duplex_to_str(unsigned int duplex) 68 { 69 if (duplex == DUPLEX_HALF) 70 return "Half"; 71 if (duplex == DUPLEX_FULL) 72 return "Full"; 73 if (duplex == DUPLEX_UNKNOWN) 74 return "Unknown"; 75 return "Unsupported (update phy-core.c)"; 76 } 77 EXPORT_SYMBOL_GPL(phy_duplex_to_str); 78 79 /** 80 * phy_rate_matching_to_str - Return a string describing the rate matching 81 * 82 * @rate_matching: Type of rate matching to describe 83 */ 84 const char *phy_rate_matching_to_str(int rate_matching) 85 { 86 switch (rate_matching) { 87 case RATE_MATCH_NONE: 88 return "none"; 89 case RATE_MATCH_PAUSE: 90 return "pause"; 91 case RATE_MATCH_CRS: 92 return "crs"; 93 case RATE_MATCH_OPEN_LOOP: 94 return "open-loop"; 95 } 96 return "Unsupported (update phy-core.c)"; 97 } 98 EXPORT_SYMBOL_GPL(phy_rate_matching_to_str); 99 100 /** 101 * phy_interface_num_ports - Return the number of links that can be carried by 102 * a given MAC-PHY physical link. Returns 0 if this is 103 * unknown, the number of links else. 104 * 105 * @interface: The interface mode we want to get the number of ports 106 */ 107 int phy_interface_num_ports(phy_interface_t interface) 108 { 109 switch (interface) { 110 case PHY_INTERFACE_MODE_NA: 111 return 0; 112 case PHY_INTERFACE_MODE_INTERNAL: 113 case PHY_INTERFACE_MODE_MII: 114 case PHY_INTERFACE_MODE_GMII: 115 case PHY_INTERFACE_MODE_TBI: 116 case PHY_INTERFACE_MODE_REVMII: 117 case PHY_INTERFACE_MODE_RMII: 118 case PHY_INTERFACE_MODE_REVRMII: 119 case PHY_INTERFACE_MODE_RGMII: 120 case PHY_INTERFACE_MODE_RGMII_ID: 121 case PHY_INTERFACE_MODE_RGMII_RXID: 122 case PHY_INTERFACE_MODE_RGMII_TXID: 123 case PHY_INTERFACE_MODE_RTBI: 124 case PHY_INTERFACE_MODE_XGMII: 125 case PHY_INTERFACE_MODE_XLGMII: 126 case PHY_INTERFACE_MODE_MOCA: 127 case PHY_INTERFACE_MODE_TRGMII: 128 case PHY_INTERFACE_MODE_USXGMII: 129 case PHY_INTERFACE_MODE_SGMII: 130 case PHY_INTERFACE_MODE_SMII: 131 case PHY_INTERFACE_MODE_1000BASEX: 132 case PHY_INTERFACE_MODE_2500BASEX: 133 case PHY_INTERFACE_MODE_5GBASER: 134 case PHY_INTERFACE_MODE_10GBASER: 135 case PHY_INTERFACE_MODE_25GBASER: 136 case PHY_INTERFACE_MODE_10GKR: 137 case PHY_INTERFACE_MODE_100BASEX: 138 case PHY_INTERFACE_MODE_RXAUI: 139 case PHY_INTERFACE_MODE_XAUI: 140 case PHY_INTERFACE_MODE_1000BASEKX: 141 return 1; 142 case PHY_INTERFACE_MODE_QSGMII: 143 case PHY_INTERFACE_MODE_QUSGMII: 144 case PHY_INTERFACE_MODE_10G_QXGMII: 145 return 4; 146 case PHY_INTERFACE_MODE_PSGMII: 147 return 5; 148 case PHY_INTERFACE_MODE_MAX: 149 WARN_ONCE(1, "PHY_INTERFACE_MODE_MAX isn't a valid interface mode"); 150 return 0; 151 } 152 return 0; 153 } 154 EXPORT_SYMBOL_GPL(phy_interface_num_ports); 155 156 /* A mapping of all SUPPORTED settings to speed/duplex. This table 157 * must be grouped by speed and sorted in descending match priority 158 * - iow, descending speed. 159 */ 160 161 #define PHY_SETTING(s, d, b) { .speed = SPEED_ ## s, .duplex = DUPLEX_ ## d, \ 162 .bit = ETHTOOL_LINK_MODE_ ## b ## _BIT} 163 164 static const struct phy_setting settings[] = { 165 /* 800G */ 166 PHY_SETTING( 800000, FULL, 800000baseCR8_Full ), 167 PHY_SETTING( 800000, FULL, 800000baseKR8_Full ), 168 PHY_SETTING( 800000, FULL, 800000baseDR8_Full ), 169 PHY_SETTING( 800000, FULL, 800000baseDR8_2_Full ), 170 PHY_SETTING( 800000, FULL, 800000baseSR8_Full ), 171 PHY_SETTING( 800000, FULL, 800000baseVR8_Full ), 172 /* 400G */ 173 PHY_SETTING( 400000, FULL, 400000baseCR8_Full ), 174 PHY_SETTING( 400000, FULL, 400000baseKR8_Full ), 175 PHY_SETTING( 400000, FULL, 400000baseLR8_ER8_FR8_Full ), 176 PHY_SETTING( 400000, FULL, 400000baseDR8_Full ), 177 PHY_SETTING( 400000, FULL, 400000baseSR8_Full ), 178 PHY_SETTING( 400000, FULL, 400000baseCR4_Full ), 179 PHY_SETTING( 400000, FULL, 400000baseKR4_Full ), 180 PHY_SETTING( 400000, FULL, 400000baseLR4_ER4_FR4_Full ), 181 PHY_SETTING( 400000, FULL, 400000baseDR4_Full ), 182 PHY_SETTING( 400000, FULL, 400000baseSR4_Full ), 183 /* 200G */ 184 PHY_SETTING( 200000, FULL, 200000baseCR4_Full ), 185 PHY_SETTING( 200000, FULL, 200000baseKR4_Full ), 186 PHY_SETTING( 200000, FULL, 200000baseLR4_ER4_FR4_Full ), 187 PHY_SETTING( 200000, FULL, 200000baseDR4_Full ), 188 PHY_SETTING( 200000, FULL, 200000baseSR4_Full ), 189 PHY_SETTING( 200000, FULL, 200000baseCR2_Full ), 190 PHY_SETTING( 200000, FULL, 200000baseKR2_Full ), 191 PHY_SETTING( 200000, FULL, 200000baseLR2_ER2_FR2_Full ), 192 PHY_SETTING( 200000, FULL, 200000baseDR2_Full ), 193 PHY_SETTING( 200000, FULL, 200000baseSR2_Full ), 194 /* 100G */ 195 PHY_SETTING( 100000, FULL, 100000baseCR4_Full ), 196 PHY_SETTING( 100000, FULL, 100000baseKR4_Full ), 197 PHY_SETTING( 100000, FULL, 100000baseLR4_ER4_Full ), 198 PHY_SETTING( 100000, FULL, 100000baseSR4_Full ), 199 PHY_SETTING( 100000, FULL, 100000baseCR2_Full ), 200 PHY_SETTING( 100000, FULL, 100000baseKR2_Full ), 201 PHY_SETTING( 100000, FULL, 100000baseLR2_ER2_FR2_Full ), 202 PHY_SETTING( 100000, FULL, 100000baseDR2_Full ), 203 PHY_SETTING( 100000, FULL, 100000baseSR2_Full ), 204 PHY_SETTING( 100000, FULL, 100000baseCR_Full ), 205 PHY_SETTING( 100000, FULL, 100000baseKR_Full ), 206 PHY_SETTING( 100000, FULL, 100000baseLR_ER_FR_Full ), 207 PHY_SETTING( 100000, FULL, 100000baseDR_Full ), 208 PHY_SETTING( 100000, FULL, 100000baseSR_Full ), 209 /* 56G */ 210 PHY_SETTING( 56000, FULL, 56000baseCR4_Full ), 211 PHY_SETTING( 56000, FULL, 56000baseKR4_Full ), 212 PHY_SETTING( 56000, FULL, 56000baseLR4_Full ), 213 PHY_SETTING( 56000, FULL, 56000baseSR4_Full ), 214 /* 50G */ 215 PHY_SETTING( 50000, FULL, 50000baseCR2_Full ), 216 PHY_SETTING( 50000, FULL, 50000baseKR2_Full ), 217 PHY_SETTING( 50000, FULL, 50000baseSR2_Full ), 218 PHY_SETTING( 50000, FULL, 50000baseCR_Full ), 219 PHY_SETTING( 50000, FULL, 50000baseKR_Full ), 220 PHY_SETTING( 50000, FULL, 50000baseLR_ER_FR_Full ), 221 PHY_SETTING( 50000, FULL, 50000baseDR_Full ), 222 PHY_SETTING( 50000, FULL, 50000baseSR_Full ), 223 /* 40G */ 224 PHY_SETTING( 40000, FULL, 40000baseCR4_Full ), 225 PHY_SETTING( 40000, FULL, 40000baseKR4_Full ), 226 PHY_SETTING( 40000, FULL, 40000baseLR4_Full ), 227 PHY_SETTING( 40000, FULL, 40000baseSR4_Full ), 228 /* 25G */ 229 PHY_SETTING( 25000, FULL, 25000baseCR_Full ), 230 PHY_SETTING( 25000, FULL, 25000baseKR_Full ), 231 PHY_SETTING( 25000, FULL, 25000baseSR_Full ), 232 /* 20G */ 233 PHY_SETTING( 20000, FULL, 20000baseKR2_Full ), 234 PHY_SETTING( 20000, FULL, 20000baseMLD2_Full ), 235 /* 10G */ 236 PHY_SETTING( 10000, FULL, 10000baseCR_Full ), 237 PHY_SETTING( 10000, FULL, 10000baseER_Full ), 238 PHY_SETTING( 10000, FULL, 10000baseKR_Full ), 239 PHY_SETTING( 10000, FULL, 10000baseKX4_Full ), 240 PHY_SETTING( 10000, FULL, 10000baseLR_Full ), 241 PHY_SETTING( 10000, FULL, 10000baseLRM_Full ), 242 PHY_SETTING( 10000, FULL, 10000baseR_FEC ), 243 PHY_SETTING( 10000, FULL, 10000baseSR_Full ), 244 PHY_SETTING( 10000, FULL, 10000baseT_Full ), 245 /* 5G */ 246 PHY_SETTING( 5000, FULL, 5000baseT_Full ), 247 /* 2.5G */ 248 PHY_SETTING( 2500, FULL, 2500baseT_Full ), 249 PHY_SETTING( 2500, FULL, 2500baseX_Full ), 250 /* 1G */ 251 PHY_SETTING( 1000, FULL, 1000baseT_Full ), 252 PHY_SETTING( 1000, HALF, 1000baseT_Half ), 253 PHY_SETTING( 1000, FULL, 1000baseT1_Full ), 254 PHY_SETTING( 1000, FULL, 1000baseX_Full ), 255 PHY_SETTING( 1000, FULL, 1000baseKX_Full ), 256 /* 100M */ 257 PHY_SETTING( 100, FULL, 100baseT_Full ), 258 PHY_SETTING( 100, FULL, 100baseT1_Full ), 259 PHY_SETTING( 100, HALF, 100baseT_Half ), 260 PHY_SETTING( 100, HALF, 100baseFX_Half ), 261 PHY_SETTING( 100, FULL, 100baseFX_Full ), 262 /* 10M */ 263 PHY_SETTING( 10, FULL, 10baseT_Full ), 264 PHY_SETTING( 10, HALF, 10baseT_Half ), 265 PHY_SETTING( 10, FULL, 10baseT1L_Full ), 266 PHY_SETTING( 10, FULL, 10baseT1S_Full ), 267 PHY_SETTING( 10, HALF, 10baseT1S_Half ), 268 PHY_SETTING( 10, HALF, 10baseT1S_P2MP_Half ), 269 PHY_SETTING( 10, FULL, 10baseT1BRR_Full ), 270 }; 271 #undef PHY_SETTING 272 273 /** 274 * phy_lookup_setting - lookup a PHY setting 275 * @speed: speed to match 276 * @duplex: duplex to match 277 * @mask: allowed link modes 278 * @exact: an exact match is required 279 * 280 * Search the settings array for a setting that matches the speed and 281 * duplex, and which is supported. 282 * 283 * If @exact is unset, either an exact match or %NULL for no match will 284 * be returned. 285 * 286 * If @exact is set, an exact match, the fastest supported setting at 287 * or below the specified speed, the slowest supported setting, or if 288 * they all fail, %NULL will be returned. 289 */ 290 const struct phy_setting * 291 phy_lookup_setting(int speed, int duplex, const unsigned long *mask, bool exact) 292 { 293 const struct phy_setting *p, *match = NULL, *last = NULL; 294 int i; 295 296 for (i = 0, p = settings; i < ARRAY_SIZE(settings); i++, p++) { 297 if (p->bit < __ETHTOOL_LINK_MODE_MASK_NBITS && 298 test_bit(p->bit, mask)) { 299 last = p; 300 if (p->speed == speed && p->duplex == duplex) { 301 /* Exact match for speed and duplex */ 302 match = p; 303 break; 304 } else if (!exact) { 305 if (!match && p->speed <= speed) 306 /* Candidate */ 307 match = p; 308 309 if (p->speed < speed) 310 break; 311 } 312 } 313 } 314 315 if (!match && !exact) 316 match = last; 317 318 return match; 319 } 320 EXPORT_SYMBOL_GPL(phy_lookup_setting); 321 322 size_t phy_speeds(unsigned int *speeds, size_t size, 323 unsigned long *mask) 324 { 325 size_t count; 326 int i; 327 328 for (i = 0, count = 0; i < ARRAY_SIZE(settings) && count < size; i++) 329 if (settings[i].bit < __ETHTOOL_LINK_MODE_MASK_NBITS && 330 test_bit(settings[i].bit, mask) && 331 (count == 0 || speeds[count - 1] != settings[i].speed)) 332 speeds[count++] = settings[i].speed; 333 334 return count; 335 } 336 337 static void __set_linkmode_max_speed(u32 max_speed, unsigned long *addr) 338 { 339 const struct phy_setting *p; 340 int i; 341 342 for (i = 0, p = settings; i < ARRAY_SIZE(settings); i++, p++) { 343 if (p->speed > max_speed) 344 linkmode_clear_bit(p->bit, addr); 345 else 346 break; 347 } 348 } 349 350 static void __set_phy_supported(struct phy_device *phydev, u32 max_speed) 351 { 352 __set_linkmode_max_speed(max_speed, phydev->supported); 353 } 354 355 /** 356 * phy_set_max_speed - Set the maximum speed the PHY should support 357 * 358 * @phydev: The phy_device struct 359 * @max_speed: Maximum speed 360 * 361 * The PHY might be more capable than the MAC. For example a Fast Ethernet 362 * is connected to a 1G PHY. This function allows the MAC to indicate its 363 * maximum speed, and so limit what the PHY will advertise. 364 */ 365 void phy_set_max_speed(struct phy_device *phydev, u32 max_speed) 366 { 367 __set_phy_supported(phydev, max_speed); 368 369 phy_advertise_supported(phydev); 370 } 371 EXPORT_SYMBOL(phy_set_max_speed); 372 373 void of_set_phy_supported(struct phy_device *phydev) 374 { 375 struct device_node *node = phydev->mdio.dev.of_node; 376 u32 max_speed; 377 378 if (!IS_ENABLED(CONFIG_OF_MDIO)) 379 return; 380 381 if (!node) 382 return; 383 384 if (!of_property_read_u32(node, "max-speed", &max_speed)) 385 __set_phy_supported(phydev, max_speed); 386 } 387 388 void of_set_phy_eee_broken(struct phy_device *phydev) 389 { 390 struct device_node *node = phydev->mdio.dev.of_node; 391 u32 broken = 0; 392 393 if (!IS_ENABLED(CONFIG_OF_MDIO)) 394 return; 395 396 if (!node) 397 return; 398 399 if (of_property_read_bool(node, "eee-broken-100tx")) 400 broken |= MDIO_EEE_100TX; 401 if (of_property_read_bool(node, "eee-broken-1000t")) 402 broken |= MDIO_EEE_1000T; 403 if (of_property_read_bool(node, "eee-broken-10gt")) 404 broken |= MDIO_EEE_10GT; 405 if (of_property_read_bool(node, "eee-broken-1000kx")) 406 broken |= MDIO_EEE_1000KX; 407 if (of_property_read_bool(node, "eee-broken-10gkx4")) 408 broken |= MDIO_EEE_10GKX4; 409 if (of_property_read_bool(node, "eee-broken-10gkr")) 410 broken |= MDIO_EEE_10GKR; 411 412 phydev->eee_broken_modes = broken; 413 } 414 415 /** 416 * of_set_phy_timing_role - Set the master/slave mode of the PHY 417 * 418 * @phydev: The phy_device struct 419 * 420 * Set master/slave configuration of the PHY based on the device tree. 421 */ 422 void of_set_phy_timing_role(struct phy_device *phydev) 423 { 424 struct device_node *node = phydev->mdio.dev.of_node; 425 const char *master; 426 427 if (!IS_ENABLED(CONFIG_OF_MDIO)) 428 return; 429 430 if (!node) 431 return; 432 433 if (of_property_read_string(node, "timing-role", &master)) 434 return; 435 436 if (strcmp(master, "forced-master") == 0) 437 phydev->master_slave_set = MASTER_SLAVE_CFG_MASTER_FORCE; 438 else if (strcmp(master, "forced-slave") == 0) 439 phydev->master_slave_set = MASTER_SLAVE_CFG_SLAVE_FORCE; 440 else if (strcmp(master, "preferred-master") == 0) 441 phydev->master_slave_set = MASTER_SLAVE_CFG_MASTER_PREFERRED; 442 else if (strcmp(master, "preferred-slave") == 0) 443 phydev->master_slave_set = MASTER_SLAVE_CFG_SLAVE_PREFERRED; 444 else 445 phydev_warn(phydev, "Unknown master-slave mode %s\n", master); 446 } 447 448 /** 449 * phy_resolve_aneg_pause - Determine pause autoneg results 450 * 451 * @phydev: The phy_device struct 452 * 453 * Once autoneg has completed the local pause settings can be 454 * resolved. Determine if pause and asymmetric pause should be used 455 * by the MAC. 456 */ 457 458 void phy_resolve_aneg_pause(struct phy_device *phydev) 459 { 460 if (phydev->duplex == DUPLEX_FULL) { 461 phydev->pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, 462 phydev->lp_advertising); 463 phydev->asym_pause = linkmode_test_bit( 464 ETHTOOL_LINK_MODE_Asym_Pause_BIT, 465 phydev->lp_advertising); 466 } 467 } 468 EXPORT_SYMBOL_GPL(phy_resolve_aneg_pause); 469 470 /** 471 * phy_resolve_aneg_linkmode - resolve the advertisements into PHY settings 472 * @phydev: The phy_device struct 473 * 474 * Resolve our and the link partner advertisements into their corresponding 475 * speed and duplex. If full duplex was negotiated, extract the pause mode 476 * from the link partner mask. 477 */ 478 void phy_resolve_aneg_linkmode(struct phy_device *phydev) 479 { 480 __ETHTOOL_DECLARE_LINK_MODE_MASK(common); 481 int i; 482 483 linkmode_and(common, phydev->lp_advertising, phydev->advertising); 484 485 for (i = 0; i < ARRAY_SIZE(settings); i++) 486 if (test_bit(settings[i].bit, common)) { 487 phydev->speed = settings[i].speed; 488 phydev->duplex = settings[i].duplex; 489 break; 490 } 491 492 phy_resolve_aneg_pause(phydev); 493 } 494 EXPORT_SYMBOL_GPL(phy_resolve_aneg_linkmode); 495 496 /** 497 * phy_check_downshift - check whether downshift occurred 498 * @phydev: The phy_device struct 499 * 500 * Check whether a downshift to a lower speed occurred. If this should be the 501 * case warn the user. 502 * Prerequisite for detecting downshift is that PHY driver implements the 503 * read_status callback and sets phydev->speed to the actual link speed. 504 */ 505 void phy_check_downshift(struct phy_device *phydev) 506 { 507 __ETHTOOL_DECLARE_LINK_MODE_MASK(common); 508 int i, speed = SPEED_UNKNOWN; 509 510 phydev->downshifted_rate = 0; 511 512 if (phydev->autoneg == AUTONEG_DISABLE || 513 phydev->speed == SPEED_UNKNOWN) 514 return; 515 516 linkmode_and(common, phydev->lp_advertising, phydev->advertising); 517 518 for (i = 0; i < ARRAY_SIZE(settings); i++) 519 if (test_bit(settings[i].bit, common)) { 520 speed = settings[i].speed; 521 break; 522 } 523 524 if (speed == SPEED_UNKNOWN || phydev->speed >= speed) 525 return; 526 527 phydev_warn(phydev, "Downshift occurred from negotiated speed %s to actual speed %s, check cabling!\n", 528 phy_speed_to_str(speed), phy_speed_to_str(phydev->speed)); 529 530 phydev->downshifted_rate = 1; 531 } 532 EXPORT_SYMBOL_GPL(phy_check_downshift); 533 534 static int phy_resolve_min_speed(struct phy_device *phydev, bool fdx_only) 535 { 536 __ETHTOOL_DECLARE_LINK_MODE_MASK(common); 537 int i = ARRAY_SIZE(settings); 538 539 linkmode_and(common, phydev->lp_advertising, phydev->advertising); 540 541 while (--i >= 0) { 542 if (test_bit(settings[i].bit, common)) { 543 if (fdx_only && settings[i].duplex != DUPLEX_FULL) 544 continue; 545 return settings[i].speed; 546 } 547 } 548 549 return SPEED_UNKNOWN; 550 } 551 552 int phy_speed_down_core(struct phy_device *phydev) 553 { 554 int min_common_speed = phy_resolve_min_speed(phydev, true); 555 556 if (min_common_speed == SPEED_UNKNOWN) 557 return -EINVAL; 558 559 __set_linkmode_max_speed(min_common_speed, phydev->advertising); 560 561 return 0; 562 } 563 564 static void mmd_phy_indirect(struct mii_bus *bus, int phy_addr, int devad, 565 u16 regnum) 566 { 567 /* Write the desired MMD Devad */ 568 __mdiobus_write(bus, phy_addr, MII_MMD_CTRL, devad); 569 570 /* Write the desired MMD register address */ 571 __mdiobus_write(bus, phy_addr, MII_MMD_DATA, regnum); 572 573 /* Select the Function : DATA with no post increment */ 574 __mdiobus_write(bus, phy_addr, MII_MMD_CTRL, 575 devad | MII_MMD_CTRL_NOINCR); 576 } 577 578 static int mmd_phy_read(struct mii_bus *bus, int phy_addr, bool is_c45, 579 int devad, u32 regnum) 580 { 581 if (is_c45) 582 return __mdiobus_c45_read(bus, phy_addr, devad, regnum); 583 584 mmd_phy_indirect(bus, phy_addr, devad, regnum); 585 /* Read the content of the MMD's selected register */ 586 return __mdiobus_read(bus, phy_addr, MII_MMD_DATA); 587 } 588 589 static int mmd_phy_write(struct mii_bus *bus, int phy_addr, bool is_c45, 590 int devad, u32 regnum, u16 val) 591 { 592 if (is_c45) 593 return __mdiobus_c45_write(bus, phy_addr, devad, regnum, val); 594 595 mmd_phy_indirect(bus, phy_addr, devad, regnum); 596 /* Write the data into MMD's selected register */ 597 return __mdiobus_write(bus, phy_addr, MII_MMD_DATA, val); 598 } 599 600 /** 601 * __phy_read_mmd - Convenience function for reading a register 602 * from an MMD on a given PHY. 603 * @phydev: The phy_device struct 604 * @devad: The MMD to read from (0..31) 605 * @regnum: The register on the MMD to read (0..65535) 606 * 607 * Same rules as for __phy_read(); 608 */ 609 int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum) 610 { 611 if (regnum > (u16)~0 || devad > 32) 612 return -EINVAL; 613 614 if (phydev->drv && phydev->drv->read_mmd) 615 return phydev->drv->read_mmd(phydev, devad, regnum); 616 617 return mmd_phy_read(phydev->mdio.bus, phydev->mdio.addr, 618 phydev->is_c45, devad, regnum); 619 } 620 EXPORT_SYMBOL(__phy_read_mmd); 621 622 /** 623 * phy_read_mmd - Convenience function for reading a register 624 * from an MMD on a given PHY. 625 * @phydev: The phy_device struct 626 * @devad: The MMD to read from 627 * @regnum: The register on the MMD to read 628 * 629 * Same rules as for phy_read(); 630 */ 631 int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum) 632 { 633 int ret; 634 635 phy_lock_mdio_bus(phydev); 636 ret = __phy_read_mmd(phydev, devad, regnum); 637 phy_unlock_mdio_bus(phydev); 638 639 return ret; 640 } 641 EXPORT_SYMBOL(phy_read_mmd); 642 643 /** 644 * __phy_write_mmd - Convenience function for writing a register 645 * on an MMD on a given PHY. 646 * @phydev: The phy_device struct 647 * @devad: The MMD to read from 648 * @regnum: The register on the MMD to read 649 * @val: value to write to @regnum 650 * 651 * Same rules as for __phy_write(); 652 */ 653 int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) 654 { 655 if (regnum > (u16)~0 || devad > 32) 656 return -EINVAL; 657 658 if (phydev->drv && phydev->drv->write_mmd) 659 return phydev->drv->write_mmd(phydev, devad, regnum, val); 660 661 return mmd_phy_write(phydev->mdio.bus, phydev->mdio.addr, 662 phydev->is_c45, devad, regnum, val); 663 } 664 EXPORT_SYMBOL(__phy_write_mmd); 665 666 /** 667 * phy_write_mmd - Convenience function for writing a register 668 * on an MMD on a given PHY. 669 * @phydev: The phy_device struct 670 * @devad: The MMD to read from 671 * @regnum: The register on the MMD to read 672 * @val: value to write to @regnum 673 * 674 * Same rules as for phy_write(); 675 */ 676 int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) 677 { 678 int ret; 679 680 phy_lock_mdio_bus(phydev); 681 ret = __phy_write_mmd(phydev, devad, regnum, val); 682 phy_unlock_mdio_bus(phydev); 683 684 return ret; 685 } 686 EXPORT_SYMBOL(phy_write_mmd); 687 688 /** 689 * __phy_package_read_mmd - read MMD reg relative to PHY package base addr 690 * @phydev: The phy_device struct 691 * @addr_offset: The offset to be added to PHY package base_addr 692 * @devad: The MMD to read from 693 * @regnum: The register on the MMD to read 694 * 695 * Convenience helper for reading a register of an MMD on a given PHY 696 * using the PHY package base address. The base address is added to 697 * the addr_offset value. 698 * 699 * Same calling rules as for __phy_read(); 700 * 701 * NOTE: It's assumed that the entire PHY package is either C22 or C45. 702 */ 703 int __phy_package_read_mmd(struct phy_device *phydev, 704 unsigned int addr_offset, int devad, 705 u32 regnum) 706 { 707 int addr = phy_package_address(phydev, addr_offset); 708 709 if (addr < 0) 710 return addr; 711 712 if (regnum > (u16)~0 || devad > 32) 713 return -EINVAL; 714 715 return mmd_phy_read(phydev->mdio.bus, addr, phydev->is_c45, devad, 716 regnum); 717 } 718 EXPORT_SYMBOL(__phy_package_read_mmd); 719 720 /** 721 * phy_package_read_mmd - read MMD reg relative to PHY package base addr 722 * @phydev: The phy_device struct 723 * @addr_offset: The offset to be added to PHY package base_addr 724 * @devad: The MMD to read from 725 * @regnum: The register on the MMD to read 726 * 727 * Convenience helper for reading a register of an MMD on a given PHY 728 * using the PHY package base address. The base address is added to 729 * the addr_offset value. 730 * 731 * Same calling rules as for phy_read(); 732 * 733 * NOTE: It's assumed that the entire PHY package is either C22 or C45. 734 */ 735 int phy_package_read_mmd(struct phy_device *phydev, 736 unsigned int addr_offset, int devad, 737 u32 regnum) 738 { 739 int addr = phy_package_address(phydev, addr_offset); 740 int val; 741 742 if (addr < 0) 743 return addr; 744 745 if (regnum > (u16)~0 || devad > 32) 746 return -EINVAL; 747 748 phy_lock_mdio_bus(phydev); 749 val = mmd_phy_read(phydev->mdio.bus, addr, phydev->is_c45, devad, 750 regnum); 751 phy_unlock_mdio_bus(phydev); 752 753 return val; 754 } 755 EXPORT_SYMBOL(phy_package_read_mmd); 756 757 /** 758 * __phy_package_write_mmd - write MMD reg relative to PHY package base addr 759 * @phydev: The phy_device struct 760 * @addr_offset: The offset to be added to PHY package base_addr 761 * @devad: The MMD to write to 762 * @regnum: The register on the MMD to write 763 * @val: value to write to @regnum 764 * 765 * Convenience helper for writing a register of an MMD on a given PHY 766 * using the PHY package base address. The base address is added to 767 * the addr_offset value. 768 * 769 * Same calling rules as for __phy_write(); 770 * 771 * NOTE: It's assumed that the entire PHY package is either C22 or C45. 772 */ 773 int __phy_package_write_mmd(struct phy_device *phydev, 774 unsigned int addr_offset, int devad, 775 u32 regnum, u16 val) 776 { 777 int addr = phy_package_address(phydev, addr_offset); 778 779 if (addr < 0) 780 return addr; 781 782 if (regnum > (u16)~0 || devad > 32) 783 return -EINVAL; 784 785 return mmd_phy_write(phydev->mdio.bus, addr, phydev->is_c45, devad, 786 regnum, val); 787 } 788 EXPORT_SYMBOL(__phy_package_write_mmd); 789 790 /** 791 * phy_package_write_mmd - write MMD reg relative to PHY package base addr 792 * @phydev: The phy_device struct 793 * @addr_offset: The offset to be added to PHY package base_addr 794 * @devad: The MMD to write to 795 * @regnum: The register on the MMD to write 796 * @val: value to write to @regnum 797 * 798 * Convenience helper for writing a register of an MMD on a given PHY 799 * using the PHY package base address. The base address is added to 800 * the addr_offset value. 801 * 802 * Same calling rules as for phy_write(); 803 * 804 * NOTE: It's assumed that the entire PHY package is either C22 or C45. 805 */ 806 int phy_package_write_mmd(struct phy_device *phydev, 807 unsigned int addr_offset, int devad, 808 u32 regnum, u16 val) 809 { 810 int addr = phy_package_address(phydev, addr_offset); 811 int ret; 812 813 if (addr < 0) 814 return addr; 815 816 if (regnum > (u16)~0 || devad > 32) 817 return -EINVAL; 818 819 phy_lock_mdio_bus(phydev); 820 ret = mmd_phy_write(phydev->mdio.bus, addr, phydev->is_c45, devad, 821 regnum, val); 822 phy_unlock_mdio_bus(phydev); 823 824 return ret; 825 } 826 EXPORT_SYMBOL(phy_package_write_mmd); 827 828 /** 829 * phy_modify_changed - Function for modifying a PHY register 830 * @phydev: the phy_device struct 831 * @regnum: register number to modify 832 * @mask: bit mask of bits to clear 833 * @set: new value of bits set in mask to write to @regnum 834 * 835 * NOTE: MUST NOT be called from interrupt context, 836 * because the bus read/write functions may wait for an interrupt 837 * to conclude the operation. 838 * 839 * Returns negative errno, 0 if there was no change, and 1 in case of change 840 */ 841 int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, u16 set) 842 { 843 int ret; 844 845 phy_lock_mdio_bus(phydev); 846 ret = __phy_modify_changed(phydev, regnum, mask, set); 847 phy_unlock_mdio_bus(phydev); 848 849 return ret; 850 } 851 EXPORT_SYMBOL_GPL(phy_modify_changed); 852 853 /** 854 * __phy_modify - Convenience function for modifying a PHY register 855 * @phydev: the phy_device struct 856 * @regnum: register number to modify 857 * @mask: bit mask of bits to clear 858 * @set: new value of bits set in mask to write to @regnum 859 * 860 * NOTE: MUST NOT be called from interrupt context, 861 * because the bus read/write functions may wait for an interrupt 862 * to conclude the operation. 863 */ 864 int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set) 865 { 866 int ret; 867 868 ret = __phy_modify_changed(phydev, regnum, mask, set); 869 870 return ret < 0 ? ret : 0; 871 } 872 EXPORT_SYMBOL_GPL(__phy_modify); 873 874 /** 875 * phy_modify - Convenience function for modifying a given PHY register 876 * @phydev: the phy_device struct 877 * @regnum: register number to write 878 * @mask: bit mask of bits to clear 879 * @set: new value of bits set in mask to write to @regnum 880 * 881 * NOTE: MUST NOT be called from interrupt context, 882 * because the bus read/write functions may wait for an interrupt 883 * to conclude the operation. 884 */ 885 int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set) 886 { 887 int ret; 888 889 phy_lock_mdio_bus(phydev); 890 ret = __phy_modify(phydev, regnum, mask, set); 891 phy_unlock_mdio_bus(phydev); 892 893 return ret; 894 } 895 EXPORT_SYMBOL_GPL(phy_modify); 896 897 /** 898 * __phy_modify_mmd_changed - Function for modifying a register on MMD 899 * @phydev: the phy_device struct 900 * @devad: the MMD containing register to modify 901 * @regnum: register number to modify 902 * @mask: bit mask of bits to clear 903 * @set: new value of bits set in mask to write to @regnum 904 * 905 * Unlocked helper function which allows a MMD register to be modified as 906 * new register value = (old register value & ~mask) | set 907 * 908 * Returns negative errno, 0 if there was no change, and 1 in case of change 909 */ 910 int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, 911 u16 mask, u16 set) 912 { 913 int new, ret; 914 915 ret = __phy_read_mmd(phydev, devad, regnum); 916 if (ret < 0) 917 return ret; 918 919 new = (ret & ~mask) | set; 920 if (new == ret) 921 return 0; 922 923 ret = __phy_write_mmd(phydev, devad, regnum, new); 924 925 return ret < 0 ? ret : 1; 926 } 927 EXPORT_SYMBOL_GPL(__phy_modify_mmd_changed); 928 929 /** 930 * phy_modify_mmd_changed - Function for modifying a register on MMD 931 * @phydev: the phy_device struct 932 * @devad: the MMD containing register to modify 933 * @regnum: register number to modify 934 * @mask: bit mask of bits to clear 935 * @set: new value of bits set in mask to write to @regnum 936 * 937 * NOTE: MUST NOT be called from interrupt context, 938 * because the bus read/write functions may wait for an interrupt 939 * to conclude the operation. 940 * 941 * Returns negative errno, 0 if there was no change, and 1 in case of change 942 */ 943 int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum, 944 u16 mask, u16 set) 945 { 946 int ret; 947 948 phy_lock_mdio_bus(phydev); 949 ret = __phy_modify_mmd_changed(phydev, devad, regnum, mask, set); 950 phy_unlock_mdio_bus(phydev); 951 952 return ret; 953 } 954 EXPORT_SYMBOL_GPL(phy_modify_mmd_changed); 955 956 /** 957 * __phy_modify_mmd - Convenience function for modifying a register on MMD 958 * @phydev: the phy_device struct 959 * @devad: the MMD containing register to modify 960 * @regnum: register number to modify 961 * @mask: bit mask of bits to clear 962 * @set: new value of bits set in mask to write to @regnum 963 * 964 * NOTE: MUST NOT be called from interrupt context, 965 * because the bus read/write functions may wait for an interrupt 966 * to conclude the operation. 967 */ 968 int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, 969 u16 mask, u16 set) 970 { 971 int ret; 972 973 ret = __phy_modify_mmd_changed(phydev, devad, regnum, mask, set); 974 975 return ret < 0 ? ret : 0; 976 } 977 EXPORT_SYMBOL_GPL(__phy_modify_mmd); 978 979 /** 980 * phy_modify_mmd - Convenience function for modifying a register on MMD 981 * @phydev: the phy_device struct 982 * @devad: the MMD containing register to modify 983 * @regnum: register number to modify 984 * @mask: bit mask of bits to clear 985 * @set: new value of bits set in mask to write to @regnum 986 * 987 * NOTE: MUST NOT be called from interrupt context, 988 * because the bus read/write functions may wait for an interrupt 989 * to conclude the operation. 990 */ 991 int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum, 992 u16 mask, u16 set) 993 { 994 int ret; 995 996 phy_lock_mdio_bus(phydev); 997 ret = __phy_modify_mmd(phydev, devad, regnum, mask, set); 998 phy_unlock_mdio_bus(phydev); 999 1000 return ret; 1001 } 1002 EXPORT_SYMBOL_GPL(phy_modify_mmd); 1003 1004 static int __phy_read_page(struct phy_device *phydev) 1005 { 1006 if (WARN_ONCE(!phydev->drv->read_page, "read_page callback not available, PHY driver not loaded?\n")) 1007 return -EOPNOTSUPP; 1008 1009 return phydev->drv->read_page(phydev); 1010 } 1011 1012 static int __phy_write_page(struct phy_device *phydev, int page) 1013 { 1014 if (WARN_ONCE(!phydev->drv->write_page, "write_page callback not available, PHY driver not loaded?\n")) 1015 return -EOPNOTSUPP; 1016 1017 return phydev->drv->write_page(phydev, page); 1018 } 1019 1020 /** 1021 * phy_save_page() - take the bus lock and save the current page 1022 * @phydev: a pointer to a &struct phy_device 1023 * 1024 * Take the MDIO bus lock, and return the current page number. On error, 1025 * returns a negative errno. phy_restore_page() must always be called 1026 * after this, irrespective of success or failure of this call. 1027 */ 1028 int phy_save_page(struct phy_device *phydev) 1029 { 1030 phy_lock_mdio_bus(phydev); 1031 return __phy_read_page(phydev); 1032 } 1033 EXPORT_SYMBOL_GPL(phy_save_page); 1034 1035 /** 1036 * phy_select_page() - take the bus lock, save the current page, and set a page 1037 * @phydev: a pointer to a &struct phy_device 1038 * @page: desired page 1039 * 1040 * Take the MDIO bus lock to protect against concurrent access, save the 1041 * current PHY page, and set the current page. On error, returns a 1042 * negative errno, otherwise returns the previous page number. 1043 * phy_restore_page() must always be called after this, irrespective 1044 * of success or failure of this call. 1045 */ 1046 int phy_select_page(struct phy_device *phydev, int page) 1047 { 1048 int ret, oldpage; 1049 1050 oldpage = ret = phy_save_page(phydev); 1051 if (ret < 0) 1052 return ret; 1053 1054 if (oldpage != page) { 1055 ret = __phy_write_page(phydev, page); 1056 if (ret < 0) 1057 return ret; 1058 } 1059 1060 return oldpage; 1061 } 1062 EXPORT_SYMBOL_GPL(phy_select_page); 1063 1064 /** 1065 * phy_restore_page() - restore the page register and release the bus lock 1066 * @phydev: a pointer to a &struct phy_device 1067 * @oldpage: the old page, return value from phy_save_page() or phy_select_page() 1068 * @ret: operation's return code 1069 * 1070 * Release the MDIO bus lock, restoring @oldpage if it is a valid page. 1071 * This function propagates the earliest error code from the group of 1072 * operations. 1073 * 1074 * Returns: 1075 * @oldpage if it was a negative value, otherwise 1076 * @ret if it was a negative errno value, otherwise 1077 * phy_write_page()'s negative value if it were in error, otherwise 1078 * @ret. 1079 */ 1080 int phy_restore_page(struct phy_device *phydev, int oldpage, int ret) 1081 { 1082 int r; 1083 1084 if (oldpage >= 0) { 1085 r = __phy_write_page(phydev, oldpage); 1086 1087 /* Propagate the operation return code if the page write 1088 * was successful. 1089 */ 1090 if (ret >= 0 && r < 0) 1091 ret = r; 1092 } else { 1093 /* Propagate the phy page selection error code */ 1094 ret = oldpage; 1095 } 1096 1097 phy_unlock_mdio_bus(phydev); 1098 1099 return ret; 1100 } 1101 EXPORT_SYMBOL_GPL(phy_restore_page); 1102 1103 /** 1104 * phy_read_paged() - Convenience function for reading a paged register 1105 * @phydev: a pointer to a &struct phy_device 1106 * @page: the page for the phy 1107 * @regnum: register number 1108 * 1109 * Same rules as for phy_read(). 1110 */ 1111 int phy_read_paged(struct phy_device *phydev, int page, u32 regnum) 1112 { 1113 int ret = 0, oldpage; 1114 1115 oldpage = phy_select_page(phydev, page); 1116 if (oldpage >= 0) 1117 ret = __phy_read(phydev, regnum); 1118 1119 return phy_restore_page(phydev, oldpage, ret); 1120 } 1121 EXPORT_SYMBOL(phy_read_paged); 1122 1123 /** 1124 * phy_write_paged() - Convenience function for writing a paged register 1125 * @phydev: a pointer to a &struct phy_device 1126 * @page: the page for the phy 1127 * @regnum: register number 1128 * @val: value to write 1129 * 1130 * Same rules as for phy_write(). 1131 */ 1132 int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val) 1133 { 1134 int ret = 0, oldpage; 1135 1136 oldpage = phy_select_page(phydev, page); 1137 if (oldpage >= 0) 1138 ret = __phy_write(phydev, regnum, val); 1139 1140 return phy_restore_page(phydev, oldpage, ret); 1141 } 1142 EXPORT_SYMBOL(phy_write_paged); 1143 1144 /** 1145 * phy_modify_paged_changed() - Function for modifying a paged register 1146 * @phydev: a pointer to a &struct phy_device 1147 * @page: the page for the phy 1148 * @regnum: register number 1149 * @mask: bit mask of bits to clear 1150 * @set: bit mask of bits to set 1151 * 1152 * Returns negative errno, 0 if there was no change, and 1 in case of change 1153 */ 1154 int phy_modify_paged_changed(struct phy_device *phydev, int page, u32 regnum, 1155 u16 mask, u16 set) 1156 { 1157 int ret = 0, oldpage; 1158 1159 oldpage = phy_select_page(phydev, page); 1160 if (oldpage >= 0) 1161 ret = __phy_modify_changed(phydev, regnum, mask, set); 1162 1163 return phy_restore_page(phydev, oldpage, ret); 1164 } 1165 EXPORT_SYMBOL(phy_modify_paged_changed); 1166 1167 /** 1168 * phy_modify_paged() - Convenience function for modifying a paged register 1169 * @phydev: a pointer to a &struct phy_device 1170 * @page: the page for the phy 1171 * @regnum: register number 1172 * @mask: bit mask of bits to clear 1173 * @set: bit mask of bits to set 1174 * 1175 * Same rules as for phy_read() and phy_write(). 1176 */ 1177 int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum, 1178 u16 mask, u16 set) 1179 { 1180 int ret = phy_modify_paged_changed(phydev, page, regnum, mask, set); 1181 1182 return ret < 0 ? ret : 0; 1183 } 1184 EXPORT_SYMBOL(phy_modify_paged); 1185