1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * phylink models the MAC to optional PHY connection, supporting 4 * technologies such as SFP cages where the PHY is hot-pluggable. 5 * 6 * Copyright (C) 2015 Russell King 7 */ 8 #include <linux/acpi.h> 9 #include <linux/ethtool.h> 10 #include <linux/export.h> 11 #include <linux/gpio/consumer.h> 12 #include <linux/netdevice.h> 13 #include <linux/of.h> 14 #include <linux/of_mdio.h> 15 #include <linux/phy.h> 16 #include <linux/phy_fixed.h> 17 #include <linux/phylink.h> 18 #include <linux/rtnetlink.h> 19 #include <linux/spinlock.h> 20 #include <linux/timer.h> 21 #include <linux/workqueue.h> 22 23 #include "sfp.h" 24 #include "swphy.h" 25 26 #define SUPPORTED_INTERFACES \ 27 (SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_FIBRE | \ 28 SUPPORTED_BNC | SUPPORTED_AUI | SUPPORTED_Backplane) 29 #define ADVERTISED_INTERFACES \ 30 (ADVERTISED_TP | ADVERTISED_MII | ADVERTISED_FIBRE | \ 31 ADVERTISED_BNC | ADVERTISED_AUI | ADVERTISED_Backplane) 32 33 enum { 34 PHYLINK_DISABLE_STOPPED, 35 PHYLINK_DISABLE_LINK, 36 PHYLINK_DISABLE_MAC_WOL, 37 }; 38 39 /** 40 * struct phylink - internal data type for phylink 41 */ 42 struct phylink { 43 /* private: */ 44 struct net_device *netdev; 45 const struct phylink_mac_ops *mac_ops; 46 struct phylink_config *config; 47 struct phylink_pcs *pcs; 48 struct device *dev; 49 unsigned int old_link_state:1; 50 51 unsigned long phylink_disable_state; /* bitmask of disables */ 52 struct phy_device *phydev; 53 phy_interface_t link_interface; /* PHY_INTERFACE_xxx */ 54 u8 cfg_link_an_mode; /* MLO_AN_xxx */ 55 u8 cur_link_an_mode; 56 u8 link_port; /* The current non-phy ethtool port */ 57 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 58 59 /* The link configuration settings */ 60 struct phylink_link_state link_config; 61 62 /* The current settings */ 63 phy_interface_t cur_interface; 64 65 struct gpio_desc *link_gpio; 66 unsigned int link_irq; 67 struct timer_list link_poll; 68 void (*get_fixed_state)(struct net_device *dev, 69 struct phylink_link_state *s); 70 71 struct mutex state_mutex; 72 struct phylink_link_state phy_state; 73 struct work_struct resolve; 74 75 bool mac_link_dropped; 76 bool using_mac_select_pcs; 77 78 struct sfp_bus *sfp_bus; 79 bool sfp_may_have_phy; 80 __ETHTOOL_DECLARE_LINK_MODE_MASK(sfp_support); 81 u8 sfp_port; 82 }; 83 84 #define phylink_printk(level, pl, fmt, ...) \ 85 do { \ 86 if ((pl)->config->type == PHYLINK_NETDEV) \ 87 netdev_printk(level, (pl)->netdev, fmt, ##__VA_ARGS__); \ 88 else if ((pl)->config->type == PHYLINK_DEV) \ 89 dev_printk(level, (pl)->dev, fmt, ##__VA_ARGS__); \ 90 } while (0) 91 92 #define phylink_err(pl, fmt, ...) \ 93 phylink_printk(KERN_ERR, pl, fmt, ##__VA_ARGS__) 94 #define phylink_warn(pl, fmt, ...) \ 95 phylink_printk(KERN_WARNING, pl, fmt, ##__VA_ARGS__) 96 #define phylink_info(pl, fmt, ...) \ 97 phylink_printk(KERN_INFO, pl, fmt, ##__VA_ARGS__) 98 #if defined(CONFIG_DYNAMIC_DEBUG) 99 #define phylink_dbg(pl, fmt, ...) \ 100 do { \ 101 if ((pl)->config->type == PHYLINK_NETDEV) \ 102 netdev_dbg((pl)->netdev, fmt, ##__VA_ARGS__); \ 103 else if ((pl)->config->type == PHYLINK_DEV) \ 104 dev_dbg((pl)->dev, fmt, ##__VA_ARGS__); \ 105 } while (0) 106 #elif defined(DEBUG) 107 #define phylink_dbg(pl, fmt, ...) \ 108 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__) 109 #else 110 #define phylink_dbg(pl, fmt, ...) \ 111 ({ \ 112 if (0) \ 113 phylink_printk(KERN_DEBUG, pl, fmt, ##__VA_ARGS__); \ 114 }) 115 #endif 116 117 /** 118 * phylink_set_port_modes() - set the port type modes in the ethtool mask 119 * @mask: ethtool link mode mask 120 * 121 * Sets all the port type modes in the ethtool mask. MAC drivers should 122 * use this in their 'validate' callback. 123 */ 124 void phylink_set_port_modes(unsigned long *mask) 125 { 126 phylink_set(mask, TP); 127 phylink_set(mask, AUI); 128 phylink_set(mask, MII); 129 phylink_set(mask, FIBRE); 130 phylink_set(mask, BNC); 131 phylink_set(mask, Backplane); 132 } 133 EXPORT_SYMBOL_GPL(phylink_set_port_modes); 134 135 static int phylink_is_empty_linkmode(const unsigned long *linkmode) 136 { 137 __ETHTOOL_DECLARE_LINK_MODE_MASK(tmp) = { 0, }; 138 139 phylink_set_port_modes(tmp); 140 phylink_set(tmp, Autoneg); 141 phylink_set(tmp, Pause); 142 phylink_set(tmp, Asym_Pause); 143 144 return linkmode_subset(linkmode, tmp); 145 } 146 147 static const char *phylink_an_mode_str(unsigned int mode) 148 { 149 static const char *modestr[] = { 150 [MLO_AN_PHY] = "phy", 151 [MLO_AN_FIXED] = "fixed", 152 [MLO_AN_INBAND] = "inband", 153 }; 154 155 return mode < ARRAY_SIZE(modestr) ? modestr[mode] : "unknown"; 156 } 157 158 /** 159 * phylink_interface_max_speed() - get the maximum speed of a phy interface 160 * @interface: phy interface mode defined by &typedef phy_interface_t 161 * 162 * Determine the maximum speed of a phy interface. This is intended to help 163 * determine the correct speed to pass to the MAC when the phy is performing 164 * rate matching. 165 * 166 * Return: The maximum speed of @interface 167 */ 168 static int phylink_interface_max_speed(phy_interface_t interface) 169 { 170 switch (interface) { 171 case PHY_INTERFACE_MODE_100BASEX: 172 case PHY_INTERFACE_MODE_REVRMII: 173 case PHY_INTERFACE_MODE_RMII: 174 case PHY_INTERFACE_MODE_SMII: 175 case PHY_INTERFACE_MODE_REVMII: 176 case PHY_INTERFACE_MODE_MII: 177 return SPEED_100; 178 179 case PHY_INTERFACE_MODE_TBI: 180 case PHY_INTERFACE_MODE_MOCA: 181 case PHY_INTERFACE_MODE_RTBI: 182 case PHY_INTERFACE_MODE_1000BASEX: 183 case PHY_INTERFACE_MODE_1000BASEKX: 184 case PHY_INTERFACE_MODE_TRGMII: 185 case PHY_INTERFACE_MODE_RGMII_TXID: 186 case PHY_INTERFACE_MODE_RGMII_RXID: 187 case PHY_INTERFACE_MODE_RGMII_ID: 188 case PHY_INTERFACE_MODE_RGMII: 189 case PHY_INTERFACE_MODE_QSGMII: 190 case PHY_INTERFACE_MODE_SGMII: 191 case PHY_INTERFACE_MODE_GMII: 192 return SPEED_1000; 193 194 case PHY_INTERFACE_MODE_2500BASEX: 195 return SPEED_2500; 196 197 case PHY_INTERFACE_MODE_5GBASER: 198 return SPEED_5000; 199 200 case PHY_INTERFACE_MODE_XGMII: 201 case PHY_INTERFACE_MODE_RXAUI: 202 case PHY_INTERFACE_MODE_XAUI: 203 case PHY_INTERFACE_MODE_10GBASER: 204 case PHY_INTERFACE_MODE_10GKR: 205 case PHY_INTERFACE_MODE_USXGMII: 206 case PHY_INTERFACE_MODE_QUSGMII: 207 return SPEED_10000; 208 209 case PHY_INTERFACE_MODE_25GBASER: 210 return SPEED_25000; 211 212 case PHY_INTERFACE_MODE_XLGMII: 213 return SPEED_40000; 214 215 case PHY_INTERFACE_MODE_INTERNAL: 216 case PHY_INTERFACE_MODE_NA: 217 case PHY_INTERFACE_MODE_MAX: 218 /* No idea! Garbage in, unknown out */ 219 return SPEED_UNKNOWN; 220 } 221 222 /* If we get here, someone forgot to add an interface mode above */ 223 WARN_ON_ONCE(1); 224 return SPEED_UNKNOWN; 225 } 226 227 /** 228 * phylink_caps_to_linkmodes() - Convert capabilities to ethtool link modes 229 * @linkmodes: ethtool linkmode mask (must be already initialised) 230 * @caps: bitmask of MAC capabilities 231 * 232 * Set all possible pause, speed and duplex linkmodes in @linkmodes that are 233 * supported by the @caps. @linkmodes must have been initialised previously. 234 */ 235 void phylink_caps_to_linkmodes(unsigned long *linkmodes, unsigned long caps) 236 { 237 if (caps & MAC_SYM_PAUSE) 238 __set_bit(ETHTOOL_LINK_MODE_Pause_BIT, linkmodes); 239 240 if (caps & MAC_ASYM_PAUSE) 241 __set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, linkmodes); 242 243 if (caps & MAC_10HD) 244 __set_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, linkmodes); 245 246 if (caps & MAC_10FD) { 247 __set_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, linkmodes); 248 __set_bit(ETHTOOL_LINK_MODE_10baseT1L_Full_BIT, linkmodes); 249 } 250 251 if (caps & MAC_100HD) { 252 __set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, linkmodes); 253 __set_bit(ETHTOOL_LINK_MODE_100baseFX_Half_BIT, linkmodes); 254 } 255 256 if (caps & MAC_100FD) { 257 __set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, linkmodes); 258 __set_bit(ETHTOOL_LINK_MODE_100baseT1_Full_BIT, linkmodes); 259 __set_bit(ETHTOOL_LINK_MODE_100baseFX_Full_BIT, linkmodes); 260 } 261 262 if (caps & MAC_1000HD) 263 __set_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT, linkmodes); 264 265 if (caps & MAC_1000FD) { 266 __set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT, linkmodes); 267 __set_bit(ETHTOOL_LINK_MODE_1000baseKX_Full_BIT, linkmodes); 268 __set_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT, linkmodes); 269 __set_bit(ETHTOOL_LINK_MODE_1000baseT1_Full_BIT, linkmodes); 270 } 271 272 if (caps & MAC_2500FD) { 273 __set_bit(ETHTOOL_LINK_MODE_2500baseT_Full_BIT, linkmodes); 274 __set_bit(ETHTOOL_LINK_MODE_2500baseX_Full_BIT, linkmodes); 275 } 276 277 if (caps & MAC_5000FD) 278 __set_bit(ETHTOOL_LINK_MODE_5000baseT_Full_BIT, linkmodes); 279 280 if (caps & MAC_10000FD) { 281 __set_bit(ETHTOOL_LINK_MODE_10000baseT_Full_BIT, linkmodes); 282 __set_bit(ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT, linkmodes); 283 __set_bit(ETHTOOL_LINK_MODE_10000baseKR_Full_BIT, linkmodes); 284 __set_bit(ETHTOOL_LINK_MODE_10000baseR_FEC_BIT, linkmodes); 285 __set_bit(ETHTOOL_LINK_MODE_10000baseCR_Full_BIT, linkmodes); 286 __set_bit(ETHTOOL_LINK_MODE_10000baseSR_Full_BIT, linkmodes); 287 __set_bit(ETHTOOL_LINK_MODE_10000baseLR_Full_BIT, linkmodes); 288 __set_bit(ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT, linkmodes); 289 __set_bit(ETHTOOL_LINK_MODE_10000baseER_Full_BIT, linkmodes); 290 } 291 292 if (caps & MAC_25000FD) { 293 __set_bit(ETHTOOL_LINK_MODE_25000baseCR_Full_BIT, linkmodes); 294 __set_bit(ETHTOOL_LINK_MODE_25000baseKR_Full_BIT, linkmodes); 295 __set_bit(ETHTOOL_LINK_MODE_25000baseSR_Full_BIT, linkmodes); 296 } 297 298 if (caps & MAC_40000FD) { 299 __set_bit(ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT, linkmodes); 300 __set_bit(ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT, linkmodes); 301 __set_bit(ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT, linkmodes); 302 __set_bit(ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT, linkmodes); 303 } 304 305 if (caps & MAC_50000FD) { 306 __set_bit(ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT, linkmodes); 307 __set_bit(ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT, linkmodes); 308 __set_bit(ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT, linkmodes); 309 __set_bit(ETHTOOL_LINK_MODE_50000baseKR_Full_BIT, linkmodes); 310 __set_bit(ETHTOOL_LINK_MODE_50000baseSR_Full_BIT, linkmodes); 311 __set_bit(ETHTOOL_LINK_MODE_50000baseCR_Full_BIT, linkmodes); 312 __set_bit(ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT, 313 linkmodes); 314 __set_bit(ETHTOOL_LINK_MODE_50000baseDR_Full_BIT, linkmodes); 315 } 316 317 if (caps & MAC_56000FD) { 318 __set_bit(ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT, linkmodes); 319 __set_bit(ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT, linkmodes); 320 __set_bit(ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT, linkmodes); 321 __set_bit(ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT, linkmodes); 322 } 323 324 if (caps & MAC_100000FD) { 325 __set_bit(ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT, linkmodes); 326 __set_bit(ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT, linkmodes); 327 __set_bit(ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT, linkmodes); 328 __set_bit(ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT, 329 linkmodes); 330 __set_bit(ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT, linkmodes); 331 __set_bit(ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT, linkmodes); 332 __set_bit(ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT, linkmodes); 333 __set_bit(ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT, 334 linkmodes); 335 __set_bit(ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT, linkmodes); 336 __set_bit(ETHTOOL_LINK_MODE_100000baseKR_Full_BIT, linkmodes); 337 __set_bit(ETHTOOL_LINK_MODE_100000baseSR_Full_BIT, linkmodes); 338 __set_bit(ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT, 339 linkmodes); 340 __set_bit(ETHTOOL_LINK_MODE_100000baseCR_Full_BIT, linkmodes); 341 __set_bit(ETHTOOL_LINK_MODE_100000baseDR_Full_BIT, linkmodes); 342 } 343 344 if (caps & MAC_200000FD) { 345 __set_bit(ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT, linkmodes); 346 __set_bit(ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT, linkmodes); 347 __set_bit(ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT, 348 linkmodes); 349 __set_bit(ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT, linkmodes); 350 __set_bit(ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT, linkmodes); 351 __set_bit(ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT, linkmodes); 352 __set_bit(ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT, linkmodes); 353 __set_bit(ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT, 354 linkmodes); 355 __set_bit(ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT, linkmodes); 356 __set_bit(ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT, linkmodes); 357 } 358 359 if (caps & MAC_400000FD) { 360 __set_bit(ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT, linkmodes); 361 __set_bit(ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT, linkmodes); 362 __set_bit(ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT, 363 linkmodes); 364 __set_bit(ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT, linkmodes); 365 __set_bit(ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT, linkmodes); 366 __set_bit(ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT, linkmodes); 367 __set_bit(ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT, linkmodes); 368 __set_bit(ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT, 369 linkmodes); 370 __set_bit(ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT, linkmodes); 371 __set_bit(ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT, linkmodes); 372 } 373 } 374 EXPORT_SYMBOL_GPL(phylink_caps_to_linkmodes); 375 376 static struct { 377 unsigned long mask; 378 int speed; 379 unsigned int duplex; 380 } phylink_caps_params[] = { 381 { MAC_400000FD, SPEED_400000, DUPLEX_FULL }, 382 { MAC_200000FD, SPEED_200000, DUPLEX_FULL }, 383 { MAC_100000FD, SPEED_100000, DUPLEX_FULL }, 384 { MAC_56000FD, SPEED_56000, DUPLEX_FULL }, 385 { MAC_50000FD, SPEED_50000, DUPLEX_FULL }, 386 { MAC_40000FD, SPEED_40000, DUPLEX_FULL }, 387 { MAC_25000FD, SPEED_25000, DUPLEX_FULL }, 388 { MAC_20000FD, SPEED_20000, DUPLEX_FULL }, 389 { MAC_10000FD, SPEED_10000, DUPLEX_FULL }, 390 { MAC_5000FD, SPEED_5000, DUPLEX_FULL }, 391 { MAC_2500FD, SPEED_2500, DUPLEX_FULL }, 392 { MAC_1000FD, SPEED_1000, DUPLEX_FULL }, 393 { MAC_1000HD, SPEED_1000, DUPLEX_HALF }, 394 { MAC_100FD, SPEED_100, DUPLEX_FULL }, 395 { MAC_100HD, SPEED_100, DUPLEX_HALF }, 396 { MAC_10FD, SPEED_10, DUPLEX_FULL }, 397 { MAC_10HD, SPEED_10, DUPLEX_HALF }, 398 }; 399 400 /** 401 * phylink_cap_from_speed_duplex - Get mac capability from speed/duplex 402 * @speed: the speed to search for 403 * @duplex: the duplex to search for 404 * 405 * Find the mac capability for a given speed and duplex. 406 * 407 * Return: A mask with the mac capability patching @speed and @duplex, or 0 if 408 * there were no matches. 409 */ 410 static unsigned long phylink_cap_from_speed_duplex(int speed, 411 unsigned int duplex) 412 { 413 int i; 414 415 for (i = 0; i < ARRAY_SIZE(phylink_caps_params); i++) { 416 if (speed == phylink_caps_params[i].speed && 417 duplex == phylink_caps_params[i].duplex) 418 return phylink_caps_params[i].mask; 419 } 420 421 return 0; 422 } 423 424 /** 425 * phylink_get_capabilities() - get capabilities for a given MAC 426 * @interface: phy interface mode defined by &typedef phy_interface_t 427 * @mac_capabilities: bitmask of MAC capabilities 428 * @rate_matching: type of rate matching being performed 429 * 430 * Get the MAC capabilities that are supported by the @interface mode and 431 * @mac_capabilities. 432 */ 433 unsigned long phylink_get_capabilities(phy_interface_t interface, 434 unsigned long mac_capabilities, 435 int rate_matching) 436 { 437 int max_speed = phylink_interface_max_speed(interface); 438 unsigned long caps = MAC_SYM_PAUSE | MAC_ASYM_PAUSE; 439 unsigned long matched_caps = 0; 440 441 switch (interface) { 442 case PHY_INTERFACE_MODE_USXGMII: 443 caps |= MAC_10000FD | MAC_5000FD | MAC_2500FD; 444 fallthrough; 445 446 case PHY_INTERFACE_MODE_RGMII_TXID: 447 case PHY_INTERFACE_MODE_RGMII_RXID: 448 case PHY_INTERFACE_MODE_RGMII_ID: 449 case PHY_INTERFACE_MODE_RGMII: 450 case PHY_INTERFACE_MODE_QSGMII: 451 case PHY_INTERFACE_MODE_QUSGMII: 452 case PHY_INTERFACE_MODE_SGMII: 453 case PHY_INTERFACE_MODE_GMII: 454 caps |= MAC_1000HD | MAC_1000FD; 455 fallthrough; 456 457 case PHY_INTERFACE_MODE_REVRMII: 458 case PHY_INTERFACE_MODE_RMII: 459 case PHY_INTERFACE_MODE_SMII: 460 case PHY_INTERFACE_MODE_REVMII: 461 case PHY_INTERFACE_MODE_MII: 462 caps |= MAC_10HD | MAC_10FD; 463 fallthrough; 464 465 case PHY_INTERFACE_MODE_100BASEX: 466 caps |= MAC_100HD | MAC_100FD; 467 break; 468 469 case PHY_INTERFACE_MODE_TBI: 470 case PHY_INTERFACE_MODE_MOCA: 471 case PHY_INTERFACE_MODE_RTBI: 472 case PHY_INTERFACE_MODE_1000BASEX: 473 caps |= MAC_1000HD; 474 fallthrough; 475 case PHY_INTERFACE_MODE_1000BASEKX: 476 case PHY_INTERFACE_MODE_TRGMII: 477 caps |= MAC_1000FD; 478 break; 479 480 case PHY_INTERFACE_MODE_2500BASEX: 481 caps |= MAC_2500FD; 482 break; 483 484 case PHY_INTERFACE_MODE_5GBASER: 485 caps |= MAC_5000FD; 486 break; 487 488 case PHY_INTERFACE_MODE_XGMII: 489 case PHY_INTERFACE_MODE_RXAUI: 490 case PHY_INTERFACE_MODE_XAUI: 491 case PHY_INTERFACE_MODE_10GBASER: 492 case PHY_INTERFACE_MODE_10GKR: 493 caps |= MAC_10000FD; 494 break; 495 496 case PHY_INTERFACE_MODE_25GBASER: 497 caps |= MAC_25000FD; 498 break; 499 500 case PHY_INTERFACE_MODE_XLGMII: 501 caps |= MAC_40000FD; 502 break; 503 504 case PHY_INTERFACE_MODE_INTERNAL: 505 caps |= ~0; 506 break; 507 508 case PHY_INTERFACE_MODE_NA: 509 case PHY_INTERFACE_MODE_MAX: 510 break; 511 } 512 513 switch (rate_matching) { 514 case RATE_MATCH_OPEN_LOOP: 515 /* TODO */ 516 fallthrough; 517 case RATE_MATCH_NONE: 518 matched_caps = 0; 519 break; 520 case RATE_MATCH_PAUSE: { 521 /* The MAC must support asymmetric pause towards the local 522 * device for this. We could allow just symmetric pause, but 523 * then we might have to renegotiate if the link partner 524 * doesn't support pause. This is because there's no way to 525 * accept pause frames without transmitting them if we only 526 * support symmetric pause. 527 */ 528 if (!(mac_capabilities & MAC_SYM_PAUSE) || 529 !(mac_capabilities & MAC_ASYM_PAUSE)) 530 break; 531 532 /* We can't adapt if the MAC doesn't support the interface's 533 * max speed at full duplex. 534 */ 535 if (mac_capabilities & 536 phylink_cap_from_speed_duplex(max_speed, DUPLEX_FULL)) { 537 /* Although a duplex-matching phy might exist, we 538 * conservatively remove these modes because the MAC 539 * will not be aware of the half-duplex nature of the 540 * link. 541 */ 542 matched_caps = GENMASK(__fls(caps), __fls(MAC_10HD)); 543 matched_caps &= ~(MAC_1000HD | MAC_100HD | MAC_10HD); 544 } 545 break; 546 } 547 case RATE_MATCH_CRS: 548 /* The MAC must support half duplex at the interface's max 549 * speed. 550 */ 551 if (mac_capabilities & 552 phylink_cap_from_speed_duplex(max_speed, DUPLEX_HALF)) { 553 matched_caps = GENMASK(__fls(caps), __fls(MAC_10HD)); 554 matched_caps &= mac_capabilities; 555 } 556 break; 557 } 558 559 return (caps & mac_capabilities) | matched_caps; 560 } 561 EXPORT_SYMBOL_GPL(phylink_get_capabilities); 562 563 /** 564 * phylink_generic_validate() - generic validate() callback implementation 565 * @config: a pointer to a &struct phylink_config. 566 * @supported: ethtool bitmask for supported link modes. 567 * @state: a pointer to a &struct phylink_link_state. 568 * 569 * Generic implementation of the validate() callback that MAC drivers can 570 * use when they pass the range of supported interfaces and MAC capabilities. 571 * This makes use of phylink_get_linkmodes(). 572 */ 573 void phylink_generic_validate(struct phylink_config *config, 574 unsigned long *supported, 575 struct phylink_link_state *state) 576 { 577 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, }; 578 unsigned long caps; 579 580 phylink_set_port_modes(mask); 581 phylink_set(mask, Autoneg); 582 caps = phylink_get_capabilities(state->interface, 583 config->mac_capabilities, 584 state->rate_matching); 585 phylink_caps_to_linkmodes(mask, caps); 586 587 linkmode_and(supported, supported, mask); 588 linkmode_and(state->advertising, state->advertising, mask); 589 } 590 EXPORT_SYMBOL_GPL(phylink_generic_validate); 591 592 static int phylink_validate_mac_and_pcs(struct phylink *pl, 593 unsigned long *supported, 594 struct phylink_link_state *state) 595 { 596 struct phylink_pcs *pcs; 597 int ret; 598 599 /* Get the PCS for this interface mode */ 600 if (pl->using_mac_select_pcs) { 601 pcs = pl->mac_ops->mac_select_pcs(pl->config, state->interface); 602 if (IS_ERR(pcs)) 603 return PTR_ERR(pcs); 604 } else { 605 pcs = pl->pcs; 606 } 607 608 if (pcs) { 609 /* The PCS, if present, must be setup before phylink_create() 610 * has been called. If the ops is not initialised, print an 611 * error and backtrace rather than oopsing the kernel. 612 */ 613 if (!pcs->ops) { 614 phylink_err(pl, "interface %s: uninitialised PCS\n", 615 phy_modes(state->interface)); 616 dump_stack(); 617 return -EINVAL; 618 } 619 620 /* Validate the link parameters with the PCS */ 621 if (pcs->ops->pcs_validate) { 622 ret = pcs->ops->pcs_validate(pcs, supported, state); 623 if (ret < 0 || phylink_is_empty_linkmode(supported)) 624 return -EINVAL; 625 626 /* Ensure the advertising mask is a subset of the 627 * supported mask. 628 */ 629 linkmode_and(state->advertising, state->advertising, 630 supported); 631 } 632 } 633 634 /* Then validate the link parameters with the MAC */ 635 pl->mac_ops->validate(pl->config, supported, state); 636 637 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0; 638 } 639 640 static int phylink_validate_any(struct phylink *pl, unsigned long *supported, 641 struct phylink_link_state *state) 642 { 643 __ETHTOOL_DECLARE_LINK_MODE_MASK(all_adv) = { 0, }; 644 __ETHTOOL_DECLARE_LINK_MODE_MASK(all_s) = { 0, }; 645 __ETHTOOL_DECLARE_LINK_MODE_MASK(s); 646 struct phylink_link_state t; 647 int intf; 648 649 for (intf = 0; intf < PHY_INTERFACE_MODE_MAX; intf++) { 650 if (test_bit(intf, pl->config->supported_interfaces)) { 651 linkmode_copy(s, supported); 652 653 t = *state; 654 t.interface = intf; 655 if (!phylink_validate_mac_and_pcs(pl, s, &t)) { 656 linkmode_or(all_s, all_s, s); 657 linkmode_or(all_adv, all_adv, t.advertising); 658 } 659 } 660 } 661 662 linkmode_copy(supported, all_s); 663 linkmode_copy(state->advertising, all_adv); 664 665 return phylink_is_empty_linkmode(supported) ? -EINVAL : 0; 666 } 667 668 static int phylink_validate(struct phylink *pl, unsigned long *supported, 669 struct phylink_link_state *state) 670 { 671 if (!phy_interface_empty(pl->config->supported_interfaces)) { 672 if (state->interface == PHY_INTERFACE_MODE_NA) 673 return phylink_validate_any(pl, supported, state); 674 675 if (!test_bit(state->interface, 676 pl->config->supported_interfaces)) 677 return -EINVAL; 678 } 679 680 return phylink_validate_mac_and_pcs(pl, supported, state); 681 } 682 683 static int phylink_parse_fixedlink(struct phylink *pl, 684 struct fwnode_handle *fwnode) 685 { 686 struct fwnode_handle *fixed_node; 687 const struct phy_setting *s; 688 struct gpio_desc *desc; 689 u32 speed; 690 int ret; 691 692 fixed_node = fwnode_get_named_child_node(fwnode, "fixed-link"); 693 if (fixed_node) { 694 ret = fwnode_property_read_u32(fixed_node, "speed", &speed); 695 696 pl->link_config.speed = speed; 697 pl->link_config.duplex = DUPLEX_HALF; 698 699 if (fwnode_property_read_bool(fixed_node, "full-duplex")) 700 pl->link_config.duplex = DUPLEX_FULL; 701 702 /* We treat the "pause" and "asym-pause" terminology as 703 * defining the link partner's ability. 704 */ 705 if (fwnode_property_read_bool(fixed_node, "pause")) 706 __set_bit(ETHTOOL_LINK_MODE_Pause_BIT, 707 pl->link_config.lp_advertising); 708 if (fwnode_property_read_bool(fixed_node, "asym-pause")) 709 __set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, 710 pl->link_config.lp_advertising); 711 712 if (ret == 0) { 713 desc = fwnode_gpiod_get_index(fixed_node, "link", 0, 714 GPIOD_IN, "?"); 715 716 if (!IS_ERR(desc)) 717 pl->link_gpio = desc; 718 else if (desc == ERR_PTR(-EPROBE_DEFER)) 719 ret = -EPROBE_DEFER; 720 } 721 fwnode_handle_put(fixed_node); 722 723 if (ret) 724 return ret; 725 } else { 726 u32 prop[5]; 727 728 ret = fwnode_property_read_u32_array(fwnode, "fixed-link", 729 NULL, 0); 730 if (ret != ARRAY_SIZE(prop)) { 731 phylink_err(pl, "broken fixed-link?\n"); 732 return -EINVAL; 733 } 734 735 ret = fwnode_property_read_u32_array(fwnode, "fixed-link", 736 prop, ARRAY_SIZE(prop)); 737 if (!ret) { 738 pl->link_config.duplex = prop[1] ? 739 DUPLEX_FULL : DUPLEX_HALF; 740 pl->link_config.speed = prop[2]; 741 if (prop[3]) 742 __set_bit(ETHTOOL_LINK_MODE_Pause_BIT, 743 pl->link_config.lp_advertising); 744 if (prop[4]) 745 __set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, 746 pl->link_config.lp_advertising); 747 } 748 } 749 750 if (pl->link_config.speed > SPEED_1000 && 751 pl->link_config.duplex != DUPLEX_FULL) 752 phylink_warn(pl, "fixed link specifies half duplex for %dMbps link?\n", 753 pl->link_config.speed); 754 755 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS); 756 linkmode_copy(pl->link_config.advertising, pl->supported); 757 phylink_validate(pl, pl->supported, &pl->link_config); 758 759 s = phy_lookup_setting(pl->link_config.speed, pl->link_config.duplex, 760 pl->supported, true); 761 linkmode_zero(pl->supported); 762 phylink_set(pl->supported, MII); 763 phylink_set(pl->supported, Pause); 764 phylink_set(pl->supported, Asym_Pause); 765 phylink_set(pl->supported, Autoneg); 766 if (s) { 767 __set_bit(s->bit, pl->supported); 768 __set_bit(s->bit, pl->link_config.lp_advertising); 769 } else { 770 phylink_warn(pl, "fixed link %s duplex %dMbps not recognised\n", 771 pl->link_config.duplex == DUPLEX_FULL ? "full" : "half", 772 pl->link_config.speed); 773 } 774 775 linkmode_and(pl->link_config.advertising, pl->link_config.advertising, 776 pl->supported); 777 778 pl->link_config.link = 1; 779 pl->link_config.an_complete = 1; 780 781 return 0; 782 } 783 784 static int phylink_parse_mode(struct phylink *pl, struct fwnode_handle *fwnode) 785 { 786 struct fwnode_handle *dn; 787 const char *managed; 788 789 dn = fwnode_get_named_child_node(fwnode, "fixed-link"); 790 if (dn || fwnode_property_present(fwnode, "fixed-link")) 791 pl->cfg_link_an_mode = MLO_AN_FIXED; 792 fwnode_handle_put(dn); 793 794 if ((fwnode_property_read_string(fwnode, "managed", &managed) == 0 && 795 strcmp(managed, "in-band-status") == 0) || 796 pl->config->ovr_an_inband) { 797 if (pl->cfg_link_an_mode == MLO_AN_FIXED) { 798 phylink_err(pl, 799 "can't use both fixed-link and in-band-status\n"); 800 return -EINVAL; 801 } 802 803 linkmode_zero(pl->supported); 804 phylink_set(pl->supported, MII); 805 phylink_set(pl->supported, Autoneg); 806 phylink_set(pl->supported, Asym_Pause); 807 phylink_set(pl->supported, Pause); 808 pl->link_config.an_enabled = true; 809 pl->cfg_link_an_mode = MLO_AN_INBAND; 810 811 switch (pl->link_config.interface) { 812 case PHY_INTERFACE_MODE_SGMII: 813 case PHY_INTERFACE_MODE_QSGMII: 814 case PHY_INTERFACE_MODE_QUSGMII: 815 case PHY_INTERFACE_MODE_RGMII: 816 case PHY_INTERFACE_MODE_RGMII_ID: 817 case PHY_INTERFACE_MODE_RGMII_RXID: 818 case PHY_INTERFACE_MODE_RGMII_TXID: 819 case PHY_INTERFACE_MODE_RTBI: 820 phylink_set(pl->supported, 10baseT_Half); 821 phylink_set(pl->supported, 10baseT_Full); 822 phylink_set(pl->supported, 100baseT_Half); 823 phylink_set(pl->supported, 100baseT_Full); 824 phylink_set(pl->supported, 1000baseT_Half); 825 phylink_set(pl->supported, 1000baseT_Full); 826 break; 827 828 case PHY_INTERFACE_MODE_1000BASEX: 829 phylink_set(pl->supported, 1000baseX_Full); 830 break; 831 832 case PHY_INTERFACE_MODE_2500BASEX: 833 phylink_set(pl->supported, 2500baseX_Full); 834 break; 835 836 case PHY_INTERFACE_MODE_5GBASER: 837 phylink_set(pl->supported, 5000baseT_Full); 838 break; 839 840 case PHY_INTERFACE_MODE_25GBASER: 841 phylink_set(pl->supported, 25000baseCR_Full); 842 phylink_set(pl->supported, 25000baseKR_Full); 843 phylink_set(pl->supported, 25000baseSR_Full); 844 fallthrough; 845 case PHY_INTERFACE_MODE_USXGMII: 846 case PHY_INTERFACE_MODE_10GKR: 847 case PHY_INTERFACE_MODE_10GBASER: 848 phylink_set(pl->supported, 10baseT_Half); 849 phylink_set(pl->supported, 10baseT_Full); 850 phylink_set(pl->supported, 100baseT_Half); 851 phylink_set(pl->supported, 100baseT_Full); 852 phylink_set(pl->supported, 1000baseT_Half); 853 phylink_set(pl->supported, 1000baseT_Full); 854 phylink_set(pl->supported, 1000baseX_Full); 855 phylink_set(pl->supported, 1000baseKX_Full); 856 phylink_set(pl->supported, 2500baseT_Full); 857 phylink_set(pl->supported, 2500baseX_Full); 858 phylink_set(pl->supported, 5000baseT_Full); 859 phylink_set(pl->supported, 10000baseT_Full); 860 phylink_set(pl->supported, 10000baseKR_Full); 861 phylink_set(pl->supported, 10000baseKX4_Full); 862 phylink_set(pl->supported, 10000baseCR_Full); 863 phylink_set(pl->supported, 10000baseSR_Full); 864 phylink_set(pl->supported, 10000baseLR_Full); 865 phylink_set(pl->supported, 10000baseLRM_Full); 866 phylink_set(pl->supported, 10000baseER_Full); 867 break; 868 869 case PHY_INTERFACE_MODE_XLGMII: 870 phylink_set(pl->supported, 25000baseCR_Full); 871 phylink_set(pl->supported, 25000baseKR_Full); 872 phylink_set(pl->supported, 25000baseSR_Full); 873 phylink_set(pl->supported, 40000baseKR4_Full); 874 phylink_set(pl->supported, 40000baseCR4_Full); 875 phylink_set(pl->supported, 40000baseSR4_Full); 876 phylink_set(pl->supported, 40000baseLR4_Full); 877 phylink_set(pl->supported, 50000baseCR2_Full); 878 phylink_set(pl->supported, 50000baseKR2_Full); 879 phylink_set(pl->supported, 50000baseSR2_Full); 880 phylink_set(pl->supported, 50000baseKR_Full); 881 phylink_set(pl->supported, 50000baseSR_Full); 882 phylink_set(pl->supported, 50000baseCR_Full); 883 phylink_set(pl->supported, 50000baseLR_ER_FR_Full); 884 phylink_set(pl->supported, 50000baseDR_Full); 885 phylink_set(pl->supported, 100000baseKR4_Full); 886 phylink_set(pl->supported, 100000baseSR4_Full); 887 phylink_set(pl->supported, 100000baseCR4_Full); 888 phylink_set(pl->supported, 100000baseLR4_ER4_Full); 889 phylink_set(pl->supported, 100000baseKR2_Full); 890 phylink_set(pl->supported, 100000baseSR2_Full); 891 phylink_set(pl->supported, 100000baseCR2_Full); 892 phylink_set(pl->supported, 100000baseLR2_ER2_FR2_Full); 893 phylink_set(pl->supported, 100000baseDR2_Full); 894 break; 895 896 default: 897 phylink_err(pl, 898 "incorrect link mode %s for in-band status\n", 899 phy_modes(pl->link_config.interface)); 900 return -EINVAL; 901 } 902 903 linkmode_copy(pl->link_config.advertising, pl->supported); 904 905 if (phylink_validate(pl, pl->supported, &pl->link_config)) { 906 phylink_err(pl, 907 "failed to validate link configuration for in-band status\n"); 908 return -EINVAL; 909 } 910 911 /* Check if MAC/PCS also supports Autoneg. */ 912 pl->link_config.an_enabled = phylink_test(pl->supported, Autoneg); 913 } 914 915 return 0; 916 } 917 918 static void phylink_apply_manual_flow(struct phylink *pl, 919 struct phylink_link_state *state) 920 { 921 /* If autoneg is disabled, pause AN is also disabled */ 922 if (!state->an_enabled) 923 state->pause &= ~MLO_PAUSE_AN; 924 925 /* Manual configuration of pause modes */ 926 if (!(pl->link_config.pause & MLO_PAUSE_AN)) 927 state->pause = pl->link_config.pause; 928 } 929 930 static void phylink_resolve_flow(struct phylink_link_state *state) 931 { 932 bool tx_pause, rx_pause; 933 934 state->pause = MLO_PAUSE_NONE; 935 if (state->duplex == DUPLEX_FULL) { 936 linkmode_resolve_pause(state->advertising, 937 state->lp_advertising, 938 &tx_pause, &rx_pause); 939 if (tx_pause) 940 state->pause |= MLO_PAUSE_TX; 941 if (rx_pause) 942 state->pause |= MLO_PAUSE_RX; 943 } 944 } 945 946 static void phylink_pcs_poll_stop(struct phylink *pl) 947 { 948 if (pl->cfg_link_an_mode == MLO_AN_INBAND) 949 del_timer(&pl->link_poll); 950 } 951 952 static void phylink_pcs_poll_start(struct phylink *pl) 953 { 954 if (pl->pcs && pl->pcs->poll && pl->cfg_link_an_mode == MLO_AN_INBAND) 955 mod_timer(&pl->link_poll, jiffies + HZ); 956 } 957 958 static void phylink_mac_config(struct phylink *pl, 959 const struct phylink_link_state *state) 960 { 961 phylink_dbg(pl, 962 "%s: mode=%s/%s/%s/%s/%s adv=%*pb pause=%02x link=%u an=%u\n", 963 __func__, phylink_an_mode_str(pl->cur_link_an_mode), 964 phy_modes(state->interface), 965 phy_speed_to_str(state->speed), 966 phy_duplex_to_str(state->duplex), 967 phy_rate_matching_to_str(state->rate_matching), 968 __ETHTOOL_LINK_MODE_MASK_NBITS, state->advertising, 969 state->pause, state->link, state->an_enabled); 970 971 pl->mac_ops->mac_config(pl->config, pl->cur_link_an_mode, state); 972 } 973 974 static void phylink_mac_pcs_an_restart(struct phylink *pl) 975 { 976 if (pl->link_config.an_enabled && 977 phy_interface_mode_is_8023z(pl->link_config.interface) && 978 phylink_autoneg_inband(pl->cur_link_an_mode)) { 979 if (pl->pcs) 980 pl->pcs->ops->pcs_an_restart(pl->pcs); 981 else if (pl->config->legacy_pre_march2020) 982 pl->mac_ops->mac_an_restart(pl->config); 983 } 984 } 985 986 static void phylink_major_config(struct phylink *pl, bool restart, 987 const struct phylink_link_state *state) 988 { 989 struct phylink_pcs *pcs = NULL; 990 bool pcs_changed = false; 991 int err; 992 993 phylink_dbg(pl, "major config %s\n", phy_modes(state->interface)); 994 995 if (pl->using_mac_select_pcs) { 996 pcs = pl->mac_ops->mac_select_pcs(pl->config, state->interface); 997 if (IS_ERR(pcs)) { 998 phylink_err(pl, 999 "mac_select_pcs unexpectedly failed: %pe\n", 1000 pcs); 1001 return; 1002 } 1003 1004 pcs_changed = pcs && pl->pcs != pcs; 1005 } 1006 1007 phylink_pcs_poll_stop(pl); 1008 1009 if (pl->mac_ops->mac_prepare) { 1010 err = pl->mac_ops->mac_prepare(pl->config, pl->cur_link_an_mode, 1011 state->interface); 1012 if (err < 0) { 1013 phylink_err(pl, "mac_prepare failed: %pe\n", 1014 ERR_PTR(err)); 1015 return; 1016 } 1017 } 1018 1019 /* If we have a new PCS, switch to the new PCS after preparing the MAC 1020 * for the change. 1021 */ 1022 if (pcs_changed) 1023 pl->pcs = pcs; 1024 1025 phylink_mac_config(pl, state); 1026 1027 if (pl->pcs) { 1028 err = pl->pcs->ops->pcs_config(pl->pcs, pl->cur_link_an_mode, 1029 state->interface, 1030 state->advertising, 1031 !!(pl->link_config.pause & 1032 MLO_PAUSE_AN)); 1033 if (err < 0) 1034 phylink_err(pl, "pcs_config failed: %pe\n", 1035 ERR_PTR(err)); 1036 if (err > 0) 1037 restart = true; 1038 } 1039 if (restart) 1040 phylink_mac_pcs_an_restart(pl); 1041 1042 if (pl->mac_ops->mac_finish) { 1043 err = pl->mac_ops->mac_finish(pl->config, pl->cur_link_an_mode, 1044 state->interface); 1045 if (err < 0) 1046 phylink_err(pl, "mac_finish failed: %pe\n", 1047 ERR_PTR(err)); 1048 } 1049 1050 phylink_pcs_poll_start(pl); 1051 } 1052 1053 /* 1054 * Reconfigure for a change of inband advertisement. 1055 * If we have a separate PCS, we only need to call its pcs_config() method, 1056 * and then restart AN if it indicates something changed. Otherwise, we do 1057 * the full MAC reconfiguration. 1058 */ 1059 static int phylink_change_inband_advert(struct phylink *pl) 1060 { 1061 int ret; 1062 1063 if (test_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state)) 1064 return 0; 1065 1066 if (!pl->pcs && pl->config->legacy_pre_march2020) { 1067 /* Legacy method */ 1068 phylink_mac_config(pl, &pl->link_config); 1069 phylink_mac_pcs_an_restart(pl); 1070 return 0; 1071 } 1072 1073 phylink_dbg(pl, "%s: mode=%s/%s adv=%*pb pause=%02x\n", __func__, 1074 phylink_an_mode_str(pl->cur_link_an_mode), 1075 phy_modes(pl->link_config.interface), 1076 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->link_config.advertising, 1077 pl->link_config.pause); 1078 1079 /* Modern PCS-based method; update the advert at the PCS, and 1080 * restart negotiation if the pcs_config() helper indicates that 1081 * the programmed advertisement has changed. 1082 */ 1083 ret = pl->pcs->ops->pcs_config(pl->pcs, pl->cur_link_an_mode, 1084 pl->link_config.interface, 1085 pl->link_config.advertising, 1086 !!(pl->link_config.pause & 1087 MLO_PAUSE_AN)); 1088 if (ret < 0) 1089 return ret; 1090 1091 if (ret > 0) 1092 phylink_mac_pcs_an_restart(pl); 1093 1094 return 0; 1095 } 1096 1097 static void phylink_mac_pcs_get_state(struct phylink *pl, 1098 struct phylink_link_state *state) 1099 { 1100 linkmode_copy(state->advertising, pl->link_config.advertising); 1101 linkmode_zero(state->lp_advertising); 1102 state->interface = pl->link_config.interface; 1103 state->an_enabled = pl->link_config.an_enabled; 1104 state->rate_matching = pl->link_config.rate_matching; 1105 if (state->an_enabled) { 1106 state->speed = SPEED_UNKNOWN; 1107 state->duplex = DUPLEX_UNKNOWN; 1108 state->pause = MLO_PAUSE_NONE; 1109 } else { 1110 state->speed = pl->link_config.speed; 1111 state->duplex = pl->link_config.duplex; 1112 state->pause = pl->link_config.pause; 1113 } 1114 state->an_complete = 0; 1115 state->link = 1; 1116 1117 if (pl->pcs) 1118 pl->pcs->ops->pcs_get_state(pl->pcs, state); 1119 else if (pl->mac_ops->mac_pcs_get_state && 1120 pl->config->legacy_pre_march2020) 1121 pl->mac_ops->mac_pcs_get_state(pl->config, state); 1122 else 1123 state->link = 0; 1124 } 1125 1126 /* The fixed state is... fixed except for the link state, 1127 * which may be determined by a GPIO or a callback. 1128 */ 1129 static void phylink_get_fixed_state(struct phylink *pl, 1130 struct phylink_link_state *state) 1131 { 1132 *state = pl->link_config; 1133 if (pl->config->get_fixed_state) 1134 pl->config->get_fixed_state(pl->config, state); 1135 else if (pl->link_gpio) 1136 state->link = !!gpiod_get_value_cansleep(pl->link_gpio); 1137 1138 phylink_resolve_flow(state); 1139 } 1140 1141 static void phylink_mac_initial_config(struct phylink *pl, bool force_restart) 1142 { 1143 struct phylink_link_state link_state; 1144 1145 switch (pl->cur_link_an_mode) { 1146 case MLO_AN_PHY: 1147 link_state = pl->phy_state; 1148 break; 1149 1150 case MLO_AN_FIXED: 1151 phylink_get_fixed_state(pl, &link_state); 1152 break; 1153 1154 case MLO_AN_INBAND: 1155 link_state = pl->link_config; 1156 if (link_state.interface == PHY_INTERFACE_MODE_SGMII) 1157 link_state.pause = MLO_PAUSE_NONE; 1158 break; 1159 1160 default: /* can't happen */ 1161 return; 1162 } 1163 1164 link_state.link = false; 1165 1166 phylink_apply_manual_flow(pl, &link_state); 1167 phylink_major_config(pl, force_restart, &link_state); 1168 } 1169 1170 static const char *phylink_pause_to_str(int pause) 1171 { 1172 switch (pause & MLO_PAUSE_TXRX_MASK) { 1173 case MLO_PAUSE_TX | MLO_PAUSE_RX: 1174 return "rx/tx"; 1175 case MLO_PAUSE_TX: 1176 return "tx"; 1177 case MLO_PAUSE_RX: 1178 return "rx"; 1179 default: 1180 return "off"; 1181 } 1182 } 1183 1184 static void phylink_link_up(struct phylink *pl, 1185 struct phylink_link_state link_state) 1186 { 1187 struct net_device *ndev = pl->netdev; 1188 int speed, duplex; 1189 bool rx_pause; 1190 1191 speed = link_state.speed; 1192 duplex = link_state.duplex; 1193 rx_pause = !!(link_state.pause & MLO_PAUSE_RX); 1194 1195 switch (link_state.rate_matching) { 1196 case RATE_MATCH_PAUSE: 1197 /* The PHY is doing rate matchion from the media rate (in 1198 * the link_state) to the interface speed, and will send 1199 * pause frames to the MAC to limit its transmission speed. 1200 */ 1201 speed = phylink_interface_max_speed(link_state.interface); 1202 duplex = DUPLEX_FULL; 1203 rx_pause = true; 1204 break; 1205 1206 case RATE_MATCH_CRS: 1207 /* The PHY is doing rate matchion from the media rate (in 1208 * the link_state) to the interface speed, and will cause 1209 * collisions to the MAC to limit its transmission speed. 1210 */ 1211 speed = phylink_interface_max_speed(link_state.interface); 1212 duplex = DUPLEX_HALF; 1213 break; 1214 } 1215 1216 pl->cur_interface = link_state.interface; 1217 1218 if (pl->pcs && pl->pcs->ops->pcs_link_up) 1219 pl->pcs->ops->pcs_link_up(pl->pcs, pl->cur_link_an_mode, 1220 pl->cur_interface, speed, duplex); 1221 1222 pl->mac_ops->mac_link_up(pl->config, pl->phydev, pl->cur_link_an_mode, 1223 pl->cur_interface, speed, duplex, 1224 !!(link_state.pause & MLO_PAUSE_TX), rx_pause); 1225 1226 if (ndev) 1227 netif_carrier_on(ndev); 1228 1229 phylink_info(pl, 1230 "Link is Up - %s/%s - flow control %s\n", 1231 phy_speed_to_str(link_state.speed), 1232 phy_duplex_to_str(link_state.duplex), 1233 phylink_pause_to_str(link_state.pause)); 1234 } 1235 1236 static void phylink_link_down(struct phylink *pl) 1237 { 1238 struct net_device *ndev = pl->netdev; 1239 1240 if (ndev) 1241 netif_carrier_off(ndev); 1242 pl->mac_ops->mac_link_down(pl->config, pl->cur_link_an_mode, 1243 pl->cur_interface); 1244 phylink_info(pl, "Link is Down\n"); 1245 } 1246 1247 static void phylink_resolve(struct work_struct *w) 1248 { 1249 struct phylink *pl = container_of(w, struct phylink, resolve); 1250 struct phylink_link_state link_state; 1251 struct net_device *ndev = pl->netdev; 1252 bool mac_config = false; 1253 bool retrigger = false; 1254 bool cur_link_state; 1255 1256 mutex_lock(&pl->state_mutex); 1257 if (pl->netdev) 1258 cur_link_state = netif_carrier_ok(ndev); 1259 else 1260 cur_link_state = pl->old_link_state; 1261 1262 if (pl->phylink_disable_state) { 1263 pl->mac_link_dropped = false; 1264 link_state.link = false; 1265 } else if (pl->mac_link_dropped) { 1266 link_state.link = false; 1267 retrigger = true; 1268 } else { 1269 switch (pl->cur_link_an_mode) { 1270 case MLO_AN_PHY: 1271 link_state = pl->phy_state; 1272 phylink_apply_manual_flow(pl, &link_state); 1273 mac_config = link_state.link; 1274 break; 1275 1276 case MLO_AN_FIXED: 1277 phylink_get_fixed_state(pl, &link_state); 1278 mac_config = link_state.link; 1279 break; 1280 1281 case MLO_AN_INBAND: 1282 phylink_mac_pcs_get_state(pl, &link_state); 1283 1284 /* The PCS may have a latching link-fail indicator. 1285 * If the link was up, bring the link down and 1286 * re-trigger the resolve. Otherwise, re-read the 1287 * PCS state to get the current status of the link. 1288 */ 1289 if (!link_state.link) { 1290 if (cur_link_state) 1291 retrigger = true; 1292 else 1293 phylink_mac_pcs_get_state(pl, 1294 &link_state); 1295 } 1296 1297 /* If we have a phy, the "up" state is the union of 1298 * both the PHY and the MAC 1299 */ 1300 if (pl->phydev) 1301 link_state.link &= pl->phy_state.link; 1302 1303 /* Only update if the PHY link is up */ 1304 if (pl->phydev && pl->phy_state.link) { 1305 /* If the interface has changed, force a 1306 * link down event if the link isn't already 1307 * down, and re-resolve. 1308 */ 1309 if (link_state.interface != 1310 pl->phy_state.interface) { 1311 retrigger = true; 1312 link_state.link = false; 1313 } 1314 link_state.interface = pl->phy_state.interface; 1315 1316 /* If we are doing rate matching, then the 1317 * link speed/duplex comes from the PHY 1318 */ 1319 if (pl->phy_state.rate_matching) { 1320 link_state.rate_matching = 1321 pl->phy_state.rate_matching; 1322 link_state.speed = pl->phy_state.speed; 1323 link_state.duplex = 1324 pl->phy_state.duplex; 1325 } 1326 1327 /* If we have a PHY, we need to update with 1328 * the PHY flow control bits. 1329 */ 1330 link_state.pause = pl->phy_state.pause; 1331 mac_config = true; 1332 } 1333 phylink_apply_manual_flow(pl, &link_state); 1334 break; 1335 } 1336 } 1337 1338 if (mac_config) { 1339 if (link_state.interface != pl->link_config.interface) { 1340 /* The interface has changed, force the link down and 1341 * then reconfigure. 1342 */ 1343 if (cur_link_state) { 1344 phylink_link_down(pl); 1345 cur_link_state = false; 1346 } 1347 phylink_major_config(pl, false, &link_state); 1348 pl->link_config.interface = link_state.interface; 1349 } else if (!pl->pcs && pl->config->legacy_pre_march2020) { 1350 /* The interface remains unchanged, only the speed, 1351 * duplex or pause settings have changed. Call the 1352 * old mac_config() method to configure the MAC/PCS 1353 * only if we do not have a legacy MAC driver. 1354 */ 1355 phylink_mac_config(pl, &link_state); 1356 } 1357 } 1358 1359 if (link_state.link != cur_link_state) { 1360 pl->old_link_state = link_state.link; 1361 if (!link_state.link) 1362 phylink_link_down(pl); 1363 else 1364 phylink_link_up(pl, link_state); 1365 } 1366 if (!link_state.link && retrigger) { 1367 pl->mac_link_dropped = false; 1368 queue_work(system_power_efficient_wq, &pl->resolve); 1369 } 1370 mutex_unlock(&pl->state_mutex); 1371 } 1372 1373 static void phylink_run_resolve(struct phylink *pl) 1374 { 1375 if (!pl->phylink_disable_state) 1376 queue_work(system_power_efficient_wq, &pl->resolve); 1377 } 1378 1379 static void phylink_run_resolve_and_disable(struct phylink *pl, int bit) 1380 { 1381 unsigned long state = pl->phylink_disable_state; 1382 1383 set_bit(bit, &pl->phylink_disable_state); 1384 if (state == 0) { 1385 queue_work(system_power_efficient_wq, &pl->resolve); 1386 flush_work(&pl->resolve); 1387 } 1388 } 1389 1390 static void phylink_enable_and_run_resolve(struct phylink *pl, int bit) 1391 { 1392 clear_bit(bit, &pl->phylink_disable_state); 1393 phylink_run_resolve(pl); 1394 } 1395 1396 static void phylink_fixed_poll(struct timer_list *t) 1397 { 1398 struct phylink *pl = container_of(t, struct phylink, link_poll); 1399 1400 mod_timer(t, jiffies + HZ); 1401 1402 phylink_run_resolve(pl); 1403 } 1404 1405 static const struct sfp_upstream_ops sfp_phylink_ops; 1406 1407 static int phylink_register_sfp(struct phylink *pl, 1408 struct fwnode_handle *fwnode) 1409 { 1410 struct sfp_bus *bus; 1411 int ret; 1412 1413 if (!fwnode) 1414 return 0; 1415 1416 bus = sfp_bus_find_fwnode(fwnode); 1417 if (IS_ERR(bus)) { 1418 phylink_err(pl, "unable to attach SFP bus: %pe\n", bus); 1419 return PTR_ERR(bus); 1420 } 1421 1422 pl->sfp_bus = bus; 1423 1424 ret = sfp_bus_add_upstream(bus, pl, &sfp_phylink_ops); 1425 sfp_bus_put(bus); 1426 1427 return ret; 1428 } 1429 1430 /** 1431 * phylink_create() - create a phylink instance 1432 * @config: a pointer to the target &struct phylink_config 1433 * @fwnode: a pointer to a &struct fwnode_handle describing the network 1434 * interface 1435 * @iface: the desired link mode defined by &typedef phy_interface_t 1436 * @mac_ops: a pointer to a &struct phylink_mac_ops for the MAC. 1437 * 1438 * Create a new phylink instance, and parse the link parameters found in @np. 1439 * This will parse in-band modes, fixed-link or SFP configuration. 1440 * 1441 * Note: the rtnl lock must not be held when calling this function. 1442 * 1443 * Returns a pointer to a &struct phylink, or an error-pointer value. Users 1444 * must use IS_ERR() to check for errors from this function. 1445 */ 1446 struct phylink *phylink_create(struct phylink_config *config, 1447 struct fwnode_handle *fwnode, 1448 phy_interface_t iface, 1449 const struct phylink_mac_ops *mac_ops) 1450 { 1451 bool using_mac_select_pcs = false; 1452 struct phylink *pl; 1453 int ret; 1454 1455 if (mac_ops->mac_select_pcs && 1456 mac_ops->mac_select_pcs(config, PHY_INTERFACE_MODE_NA) != 1457 ERR_PTR(-EOPNOTSUPP)) 1458 using_mac_select_pcs = true; 1459 1460 /* Validate the supplied configuration */ 1461 if (using_mac_select_pcs && 1462 phy_interface_empty(config->supported_interfaces)) { 1463 dev_err(config->dev, 1464 "phylink: error: empty supported_interfaces but mac_select_pcs() method present\n"); 1465 return ERR_PTR(-EINVAL); 1466 } 1467 1468 pl = kzalloc(sizeof(*pl), GFP_KERNEL); 1469 if (!pl) 1470 return ERR_PTR(-ENOMEM); 1471 1472 mutex_init(&pl->state_mutex); 1473 INIT_WORK(&pl->resolve, phylink_resolve); 1474 1475 pl->config = config; 1476 if (config->type == PHYLINK_NETDEV) { 1477 pl->netdev = to_net_dev(config->dev); 1478 } else if (config->type == PHYLINK_DEV) { 1479 pl->dev = config->dev; 1480 } else { 1481 kfree(pl); 1482 return ERR_PTR(-EINVAL); 1483 } 1484 1485 pl->using_mac_select_pcs = using_mac_select_pcs; 1486 pl->phy_state.interface = iface; 1487 pl->link_interface = iface; 1488 if (iface == PHY_INTERFACE_MODE_MOCA) 1489 pl->link_port = PORT_BNC; 1490 else 1491 pl->link_port = PORT_MII; 1492 pl->link_config.interface = iface; 1493 pl->link_config.pause = MLO_PAUSE_AN; 1494 pl->link_config.speed = SPEED_UNKNOWN; 1495 pl->link_config.duplex = DUPLEX_UNKNOWN; 1496 pl->link_config.an_enabled = true; 1497 pl->mac_ops = mac_ops; 1498 __set_bit(PHYLINK_DISABLE_STOPPED, &pl->phylink_disable_state); 1499 timer_setup(&pl->link_poll, phylink_fixed_poll, 0); 1500 1501 bitmap_fill(pl->supported, __ETHTOOL_LINK_MODE_MASK_NBITS); 1502 linkmode_copy(pl->link_config.advertising, pl->supported); 1503 phylink_validate(pl, pl->supported, &pl->link_config); 1504 1505 ret = phylink_parse_mode(pl, fwnode); 1506 if (ret < 0) { 1507 kfree(pl); 1508 return ERR_PTR(ret); 1509 } 1510 1511 if (pl->cfg_link_an_mode == MLO_AN_FIXED) { 1512 ret = phylink_parse_fixedlink(pl, fwnode); 1513 if (ret < 0) { 1514 kfree(pl); 1515 return ERR_PTR(ret); 1516 } 1517 } 1518 1519 pl->cur_link_an_mode = pl->cfg_link_an_mode; 1520 1521 ret = phylink_register_sfp(pl, fwnode); 1522 if (ret < 0) { 1523 kfree(pl); 1524 return ERR_PTR(ret); 1525 } 1526 1527 return pl; 1528 } 1529 EXPORT_SYMBOL_GPL(phylink_create); 1530 1531 /** 1532 * phylink_destroy() - cleanup and destroy the phylink instance 1533 * @pl: a pointer to a &struct phylink returned from phylink_create() 1534 * 1535 * Destroy a phylink instance. Any PHY that has been attached must have been 1536 * cleaned up via phylink_disconnect_phy() prior to calling this function. 1537 * 1538 * Note: the rtnl lock must not be held when calling this function. 1539 */ 1540 void phylink_destroy(struct phylink *pl) 1541 { 1542 sfp_bus_del_upstream(pl->sfp_bus); 1543 if (pl->link_gpio) 1544 gpiod_put(pl->link_gpio); 1545 1546 cancel_work_sync(&pl->resolve); 1547 kfree(pl); 1548 } 1549 EXPORT_SYMBOL_GPL(phylink_destroy); 1550 1551 static void phylink_phy_change(struct phy_device *phydev, bool up) 1552 { 1553 struct phylink *pl = phydev->phylink; 1554 bool tx_pause, rx_pause; 1555 1556 phy_get_pause(phydev, &tx_pause, &rx_pause); 1557 1558 mutex_lock(&pl->state_mutex); 1559 pl->phy_state.speed = phydev->speed; 1560 pl->phy_state.duplex = phydev->duplex; 1561 pl->phy_state.rate_matching = phydev->rate_matching; 1562 pl->phy_state.pause = MLO_PAUSE_NONE; 1563 if (tx_pause) 1564 pl->phy_state.pause |= MLO_PAUSE_TX; 1565 if (rx_pause) 1566 pl->phy_state.pause |= MLO_PAUSE_RX; 1567 pl->phy_state.interface = phydev->interface; 1568 pl->phy_state.link = up; 1569 mutex_unlock(&pl->state_mutex); 1570 1571 phylink_run_resolve(pl); 1572 1573 phylink_dbg(pl, "phy link %s %s/%s/%s/%s/%s\n", up ? "up" : "down", 1574 phy_modes(phydev->interface), 1575 phy_speed_to_str(phydev->speed), 1576 phy_duplex_to_str(phydev->duplex), 1577 phy_rate_matching_to_str(phydev->rate_matching), 1578 phylink_pause_to_str(pl->phy_state.pause)); 1579 } 1580 1581 static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy, 1582 phy_interface_t interface) 1583 { 1584 struct phylink_link_state config; 1585 __ETHTOOL_DECLARE_LINK_MODE_MASK(supported); 1586 char *irq_str; 1587 int ret; 1588 1589 /* 1590 * This is the new way of dealing with flow control for PHYs, 1591 * as described by Timur Tabi in commit 529ed1275263 ("net: phy: 1592 * phy drivers should not set SUPPORTED_[Asym_]Pause") except 1593 * using our validate call to the MAC, we rely upon the MAC 1594 * clearing the bits from both supported and advertising fields. 1595 */ 1596 phy_support_asym_pause(phy); 1597 1598 memset(&config, 0, sizeof(config)); 1599 linkmode_copy(supported, phy->supported); 1600 linkmode_copy(config.advertising, phy->advertising); 1601 1602 /* Clause 45 PHYs switch their Serdes lane between several different 1603 * modes, normally 10GBASE-R, SGMII. Some use 2500BASE-X for 2.5G 1604 * speeds. We really need to know which interface modes the PHY and 1605 * MAC supports to properly work out which linkmodes can be supported. 1606 */ 1607 if (phy->is_c45 && 1608 interface != PHY_INTERFACE_MODE_RXAUI && 1609 interface != PHY_INTERFACE_MODE_XAUI && 1610 interface != PHY_INTERFACE_MODE_USXGMII) 1611 config.interface = PHY_INTERFACE_MODE_NA; 1612 else 1613 config.interface = interface; 1614 config.rate_matching = phy_get_rate_matching(phy, config.interface); 1615 1616 ret = phylink_validate(pl, supported, &config); 1617 if (ret) { 1618 phylink_warn(pl, "validation of %s with support %*pb and advertisement %*pb failed: %pe\n", 1619 phy_modes(config.interface), 1620 __ETHTOOL_LINK_MODE_MASK_NBITS, phy->supported, 1621 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising, 1622 ERR_PTR(ret)); 1623 return ret; 1624 } 1625 1626 phy->phylink = pl; 1627 phy->phy_link_change = phylink_phy_change; 1628 1629 irq_str = phy_attached_info_irq(phy); 1630 phylink_info(pl, 1631 "PHY [%s] driver [%s] (irq=%s)\n", 1632 dev_name(&phy->mdio.dev), phy->drv->name, irq_str); 1633 kfree(irq_str); 1634 1635 mutex_lock(&phy->lock); 1636 mutex_lock(&pl->state_mutex); 1637 pl->phydev = phy; 1638 pl->phy_state.interface = interface; 1639 pl->phy_state.pause = MLO_PAUSE_NONE; 1640 pl->phy_state.speed = SPEED_UNKNOWN; 1641 pl->phy_state.duplex = DUPLEX_UNKNOWN; 1642 pl->phy_state.rate_matching = RATE_MATCH_NONE; 1643 linkmode_copy(pl->supported, supported); 1644 linkmode_copy(pl->link_config.advertising, config.advertising); 1645 1646 /* Restrict the phy advertisement according to the MAC support. */ 1647 linkmode_copy(phy->advertising, config.advertising); 1648 mutex_unlock(&pl->state_mutex); 1649 mutex_unlock(&phy->lock); 1650 1651 phylink_dbg(pl, 1652 "phy: %s setting supported %*pb advertising %*pb\n", 1653 phy_modes(interface), 1654 __ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported, 1655 __ETHTOOL_LINK_MODE_MASK_NBITS, phy->advertising); 1656 1657 if (phy_interrupt_is_valid(phy)) 1658 phy_request_interrupt(phy); 1659 1660 return 0; 1661 } 1662 1663 static int phylink_attach_phy(struct phylink *pl, struct phy_device *phy, 1664 phy_interface_t interface) 1665 { 1666 if (WARN_ON(pl->cfg_link_an_mode == MLO_AN_FIXED || 1667 (pl->cfg_link_an_mode == MLO_AN_INBAND && 1668 phy_interface_mode_is_8023z(interface)))) 1669 return -EINVAL; 1670 1671 if (pl->phydev) 1672 return -EBUSY; 1673 1674 return phy_attach_direct(pl->netdev, phy, 0, interface); 1675 } 1676 1677 /** 1678 * phylink_connect_phy() - connect a PHY to the phylink instance 1679 * @pl: a pointer to a &struct phylink returned from phylink_create() 1680 * @phy: a pointer to a &struct phy_device. 1681 * 1682 * Connect @phy to the phylink instance specified by @pl by calling 1683 * phy_attach_direct(). Configure the @phy according to the MAC driver's 1684 * capabilities, start the PHYLIB state machine and enable any interrupts 1685 * that the PHY supports. 1686 * 1687 * This updates the phylink's ethtool supported and advertising link mode 1688 * masks. 1689 * 1690 * Returns 0 on success or a negative errno. 1691 */ 1692 int phylink_connect_phy(struct phylink *pl, struct phy_device *phy) 1693 { 1694 int ret; 1695 1696 /* Use PHY device/driver interface */ 1697 if (pl->link_interface == PHY_INTERFACE_MODE_NA) { 1698 pl->link_interface = phy->interface; 1699 pl->link_config.interface = pl->link_interface; 1700 } 1701 1702 ret = phylink_attach_phy(pl, phy, pl->link_interface); 1703 if (ret < 0) 1704 return ret; 1705 1706 ret = phylink_bringup_phy(pl, phy, pl->link_config.interface); 1707 if (ret) 1708 phy_detach(phy); 1709 1710 return ret; 1711 } 1712 EXPORT_SYMBOL_GPL(phylink_connect_phy); 1713 1714 /** 1715 * phylink_of_phy_connect() - connect the PHY specified in the DT mode. 1716 * @pl: a pointer to a &struct phylink returned from phylink_create() 1717 * @dn: a pointer to a &struct device_node. 1718 * @flags: PHY-specific flags to communicate to the PHY device driver 1719 * 1720 * Connect the phy specified in the device node @dn to the phylink instance 1721 * specified by @pl. Actions specified in phylink_connect_phy() will be 1722 * performed. 1723 * 1724 * Returns 0 on success or a negative errno. 1725 */ 1726 int phylink_of_phy_connect(struct phylink *pl, struct device_node *dn, 1727 u32 flags) 1728 { 1729 return phylink_fwnode_phy_connect(pl, of_fwnode_handle(dn), flags); 1730 } 1731 EXPORT_SYMBOL_GPL(phylink_of_phy_connect); 1732 1733 /** 1734 * phylink_fwnode_phy_connect() - connect the PHY specified in the fwnode. 1735 * @pl: a pointer to a &struct phylink returned from phylink_create() 1736 * @fwnode: a pointer to a &struct fwnode_handle. 1737 * @flags: PHY-specific flags to communicate to the PHY device driver 1738 * 1739 * Connect the phy specified @fwnode to the phylink instance specified 1740 * by @pl. 1741 * 1742 * Returns 0 on success or a negative errno. 1743 */ 1744 int phylink_fwnode_phy_connect(struct phylink *pl, 1745 struct fwnode_handle *fwnode, 1746 u32 flags) 1747 { 1748 struct fwnode_handle *phy_fwnode; 1749 struct phy_device *phy_dev; 1750 int ret; 1751 1752 /* Fixed links and 802.3z are handled without needing a PHY */ 1753 if (pl->cfg_link_an_mode == MLO_AN_FIXED || 1754 (pl->cfg_link_an_mode == MLO_AN_INBAND && 1755 phy_interface_mode_is_8023z(pl->link_interface))) 1756 return 0; 1757 1758 phy_fwnode = fwnode_get_phy_node(fwnode); 1759 if (IS_ERR(phy_fwnode)) { 1760 if (pl->cfg_link_an_mode == MLO_AN_PHY) 1761 return -ENODEV; 1762 return 0; 1763 } 1764 1765 phy_dev = fwnode_phy_find_device(phy_fwnode); 1766 /* We're done with the phy_node handle */ 1767 fwnode_handle_put(phy_fwnode); 1768 if (!phy_dev) 1769 return -ENODEV; 1770 1771 /* Use PHY device/driver interface */ 1772 if (pl->link_interface == PHY_INTERFACE_MODE_NA) { 1773 pl->link_interface = phy_dev->interface; 1774 pl->link_config.interface = pl->link_interface; 1775 } 1776 1777 ret = phy_attach_direct(pl->netdev, phy_dev, flags, 1778 pl->link_interface); 1779 if (ret) { 1780 phy_device_free(phy_dev); 1781 return ret; 1782 } 1783 1784 ret = phylink_bringup_phy(pl, phy_dev, pl->link_config.interface); 1785 if (ret) 1786 phy_detach(phy_dev); 1787 1788 return ret; 1789 } 1790 EXPORT_SYMBOL_GPL(phylink_fwnode_phy_connect); 1791 1792 /** 1793 * phylink_disconnect_phy() - disconnect any PHY attached to the phylink 1794 * instance. 1795 * @pl: a pointer to a &struct phylink returned from phylink_create() 1796 * 1797 * Disconnect any current PHY from the phylink instance described by @pl. 1798 */ 1799 void phylink_disconnect_phy(struct phylink *pl) 1800 { 1801 struct phy_device *phy; 1802 1803 ASSERT_RTNL(); 1804 1805 phy = pl->phydev; 1806 if (phy) { 1807 mutex_lock(&phy->lock); 1808 mutex_lock(&pl->state_mutex); 1809 pl->phydev = NULL; 1810 mutex_unlock(&pl->state_mutex); 1811 mutex_unlock(&phy->lock); 1812 flush_work(&pl->resolve); 1813 1814 phy_disconnect(phy); 1815 } 1816 } 1817 EXPORT_SYMBOL_GPL(phylink_disconnect_phy); 1818 1819 /** 1820 * phylink_mac_change() - notify phylink of a change in MAC state 1821 * @pl: a pointer to a &struct phylink returned from phylink_create() 1822 * @up: indicates whether the link is currently up. 1823 * 1824 * The MAC driver should call this driver when the state of its link 1825 * changes (eg, link failure, new negotiation results, etc.) 1826 */ 1827 void phylink_mac_change(struct phylink *pl, bool up) 1828 { 1829 if (!up) 1830 pl->mac_link_dropped = true; 1831 phylink_run_resolve(pl); 1832 phylink_dbg(pl, "mac link %s\n", up ? "up" : "down"); 1833 } 1834 EXPORT_SYMBOL_GPL(phylink_mac_change); 1835 1836 static irqreturn_t phylink_link_handler(int irq, void *data) 1837 { 1838 struct phylink *pl = data; 1839 1840 phylink_run_resolve(pl); 1841 1842 return IRQ_HANDLED; 1843 } 1844 1845 /** 1846 * phylink_start() - start a phylink instance 1847 * @pl: a pointer to a &struct phylink returned from phylink_create() 1848 * 1849 * Start the phylink instance specified by @pl, configuring the MAC for the 1850 * desired link mode(s) and negotiation style. This should be called from the 1851 * network device driver's &struct net_device_ops ndo_open() method. 1852 */ 1853 void phylink_start(struct phylink *pl) 1854 { 1855 bool poll = false; 1856 1857 ASSERT_RTNL(); 1858 1859 phylink_info(pl, "configuring for %s/%s link mode\n", 1860 phylink_an_mode_str(pl->cur_link_an_mode), 1861 phy_modes(pl->link_config.interface)); 1862 1863 /* Always set the carrier off */ 1864 if (pl->netdev) 1865 netif_carrier_off(pl->netdev); 1866 1867 /* Apply the link configuration to the MAC when starting. This allows 1868 * a fixed-link to start with the correct parameters, and also 1869 * ensures that we set the appropriate advertisement for Serdes links. 1870 * 1871 * Restart autonegotiation if using 802.3z to ensure that the link 1872 * parameters are properly negotiated. This is necessary for DSA 1873 * switches using 802.3z negotiation to ensure they see our modes. 1874 */ 1875 phylink_mac_initial_config(pl, true); 1876 1877 phylink_enable_and_run_resolve(pl, PHYLINK_DISABLE_STOPPED); 1878 1879 if (pl->cfg_link_an_mode == MLO_AN_FIXED && pl->link_gpio) { 1880 int irq = gpiod_to_irq(pl->link_gpio); 1881 1882 if (irq > 0) { 1883 if (!request_irq(irq, phylink_link_handler, 1884 IRQF_TRIGGER_RISING | 1885 IRQF_TRIGGER_FALLING, 1886 "netdev link", pl)) 1887 pl->link_irq = irq; 1888 else 1889 irq = 0; 1890 } 1891 if (irq <= 0) 1892 poll = true; 1893 } 1894 1895 switch (pl->cfg_link_an_mode) { 1896 case MLO_AN_FIXED: 1897 poll |= pl->config->poll_fixed_state; 1898 break; 1899 case MLO_AN_INBAND: 1900 if (pl->pcs) 1901 poll |= pl->pcs->poll; 1902 break; 1903 } 1904 if (poll) 1905 mod_timer(&pl->link_poll, jiffies + HZ); 1906 if (pl->phydev) 1907 phy_start(pl->phydev); 1908 if (pl->sfp_bus) 1909 sfp_upstream_start(pl->sfp_bus); 1910 } 1911 EXPORT_SYMBOL_GPL(phylink_start); 1912 1913 /** 1914 * phylink_stop() - stop a phylink instance 1915 * @pl: a pointer to a &struct phylink returned from phylink_create() 1916 * 1917 * Stop the phylink instance specified by @pl. This should be called from the 1918 * network device driver's &struct net_device_ops ndo_stop() method. The 1919 * network device's carrier state should not be changed prior to calling this 1920 * function. 1921 * 1922 * This will synchronously bring down the link if the link is not already 1923 * down (in other words, it will trigger a mac_link_down() method call.) 1924 */ 1925 void phylink_stop(struct phylink *pl) 1926 { 1927 ASSERT_RTNL(); 1928 1929 if (pl->sfp_bus) 1930 sfp_upstream_stop(pl->sfp_bus); 1931 if (pl->phydev) 1932 phy_stop(pl->phydev); 1933 del_timer_sync(&pl->link_poll); 1934 if (pl->link_irq) { 1935 free_irq(pl->link_irq, pl); 1936 pl->link_irq = 0; 1937 } 1938 1939 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_STOPPED); 1940 } 1941 EXPORT_SYMBOL_GPL(phylink_stop); 1942 1943 /** 1944 * phylink_suspend() - handle a network device suspend event 1945 * @pl: a pointer to a &struct phylink returned from phylink_create() 1946 * @mac_wol: true if the MAC needs to receive packets for Wake-on-Lan 1947 * 1948 * Handle a network device suspend event. There are several cases: 1949 * 1950 * - If Wake-on-Lan is not active, we can bring down the link between 1951 * the MAC and PHY by calling phylink_stop(). 1952 * - If Wake-on-Lan is active, and being handled only by the PHY, we 1953 * can also bring down the link between the MAC and PHY. 1954 * - If Wake-on-Lan is active, but being handled by the MAC, the MAC 1955 * still needs to receive packets, so we can not bring the link down. 1956 */ 1957 void phylink_suspend(struct phylink *pl, bool mac_wol) 1958 { 1959 ASSERT_RTNL(); 1960 1961 if (mac_wol && (!pl->netdev || pl->netdev->wol_enabled)) { 1962 /* Wake-on-Lan enabled, MAC handling */ 1963 mutex_lock(&pl->state_mutex); 1964 1965 /* Stop the resolver bringing the link up */ 1966 __set_bit(PHYLINK_DISABLE_MAC_WOL, &pl->phylink_disable_state); 1967 1968 /* Disable the carrier, to prevent transmit timeouts, 1969 * but one would hope all packets have been sent. This 1970 * also means phylink_resolve() will do nothing. 1971 */ 1972 if (pl->netdev) 1973 netif_carrier_off(pl->netdev); 1974 else 1975 pl->old_link_state = false; 1976 1977 /* We do not call mac_link_down() here as we want the 1978 * link to remain up to receive the WoL packets. 1979 */ 1980 mutex_unlock(&pl->state_mutex); 1981 } else { 1982 phylink_stop(pl); 1983 } 1984 } 1985 EXPORT_SYMBOL_GPL(phylink_suspend); 1986 1987 /** 1988 * phylink_resume() - handle a network device resume event 1989 * @pl: a pointer to a &struct phylink returned from phylink_create() 1990 * 1991 * Undo the effects of phylink_suspend(), returning the link to an 1992 * operational state. 1993 */ 1994 void phylink_resume(struct phylink *pl) 1995 { 1996 ASSERT_RTNL(); 1997 1998 if (test_bit(PHYLINK_DISABLE_MAC_WOL, &pl->phylink_disable_state)) { 1999 /* Wake-on-Lan enabled, MAC handling */ 2000 2001 /* Call mac_link_down() so we keep the overall state balanced. 2002 * Do this under the state_mutex lock for consistency. This 2003 * will cause a "Link Down" message to be printed during 2004 * resume, which is harmless - the true link state will be 2005 * printed when we run a resolve. 2006 */ 2007 mutex_lock(&pl->state_mutex); 2008 phylink_link_down(pl); 2009 mutex_unlock(&pl->state_mutex); 2010 2011 /* Re-apply the link parameters so that all the settings get 2012 * restored to the MAC. 2013 */ 2014 phylink_mac_initial_config(pl, true); 2015 2016 /* Re-enable and re-resolve the link parameters */ 2017 phylink_enable_and_run_resolve(pl, PHYLINK_DISABLE_MAC_WOL); 2018 } else { 2019 phylink_start(pl); 2020 } 2021 } 2022 EXPORT_SYMBOL_GPL(phylink_resume); 2023 2024 /** 2025 * phylink_ethtool_get_wol() - get the wake on lan parameters for the PHY 2026 * @pl: a pointer to a &struct phylink returned from phylink_create() 2027 * @wol: a pointer to &struct ethtool_wolinfo to hold the read parameters 2028 * 2029 * Read the wake on lan parameters from the PHY attached to the phylink 2030 * instance specified by @pl. If no PHY is currently attached, report no 2031 * support for wake on lan. 2032 */ 2033 void phylink_ethtool_get_wol(struct phylink *pl, struct ethtool_wolinfo *wol) 2034 { 2035 ASSERT_RTNL(); 2036 2037 wol->supported = 0; 2038 wol->wolopts = 0; 2039 2040 if (pl->phydev) 2041 phy_ethtool_get_wol(pl->phydev, wol); 2042 } 2043 EXPORT_SYMBOL_GPL(phylink_ethtool_get_wol); 2044 2045 /** 2046 * phylink_ethtool_set_wol() - set wake on lan parameters 2047 * @pl: a pointer to a &struct phylink returned from phylink_create() 2048 * @wol: a pointer to &struct ethtool_wolinfo for the desired parameters 2049 * 2050 * Set the wake on lan parameters for the PHY attached to the phylink 2051 * instance specified by @pl. If no PHY is attached, returns %EOPNOTSUPP 2052 * error. 2053 * 2054 * Returns zero on success or negative errno code. 2055 */ 2056 int phylink_ethtool_set_wol(struct phylink *pl, struct ethtool_wolinfo *wol) 2057 { 2058 int ret = -EOPNOTSUPP; 2059 2060 ASSERT_RTNL(); 2061 2062 if (pl->phydev) 2063 ret = phy_ethtool_set_wol(pl->phydev, wol); 2064 2065 return ret; 2066 } 2067 EXPORT_SYMBOL_GPL(phylink_ethtool_set_wol); 2068 2069 static void phylink_merge_link_mode(unsigned long *dst, const unsigned long *b) 2070 { 2071 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask); 2072 2073 linkmode_zero(mask); 2074 phylink_set_port_modes(mask); 2075 2076 linkmode_and(dst, dst, mask); 2077 linkmode_or(dst, dst, b); 2078 } 2079 2080 static void phylink_get_ksettings(const struct phylink_link_state *state, 2081 struct ethtool_link_ksettings *kset) 2082 { 2083 phylink_merge_link_mode(kset->link_modes.advertising, state->advertising); 2084 linkmode_copy(kset->link_modes.lp_advertising, state->lp_advertising); 2085 if (kset->base.rate_matching == RATE_MATCH_NONE) { 2086 kset->base.speed = state->speed; 2087 kset->base.duplex = state->duplex; 2088 } 2089 kset->base.autoneg = state->an_enabled ? AUTONEG_ENABLE : 2090 AUTONEG_DISABLE; 2091 } 2092 2093 /** 2094 * phylink_ethtool_ksettings_get() - get the current link settings 2095 * @pl: a pointer to a &struct phylink returned from phylink_create() 2096 * @kset: a pointer to a &struct ethtool_link_ksettings to hold link settings 2097 * 2098 * Read the current link settings for the phylink instance specified by @pl. 2099 * This will be the link settings read from the MAC, PHY or fixed link 2100 * settings depending on the current negotiation mode. 2101 */ 2102 int phylink_ethtool_ksettings_get(struct phylink *pl, 2103 struct ethtool_link_ksettings *kset) 2104 { 2105 struct phylink_link_state link_state; 2106 2107 ASSERT_RTNL(); 2108 2109 if (pl->phydev) 2110 phy_ethtool_ksettings_get(pl->phydev, kset); 2111 else 2112 kset->base.port = pl->link_port; 2113 2114 linkmode_copy(kset->link_modes.supported, pl->supported); 2115 2116 switch (pl->cur_link_an_mode) { 2117 case MLO_AN_FIXED: 2118 /* We are using fixed settings. Report these as the 2119 * current link settings - and note that these also 2120 * represent the supported speeds/duplex/pause modes. 2121 */ 2122 phylink_get_fixed_state(pl, &link_state); 2123 phylink_get_ksettings(&link_state, kset); 2124 break; 2125 2126 case MLO_AN_INBAND: 2127 /* If there is a phy attached, then use the reported 2128 * settings from the phy with no modification. 2129 */ 2130 if (pl->phydev) 2131 break; 2132 2133 phylink_mac_pcs_get_state(pl, &link_state); 2134 2135 /* The MAC is reporting the link results from its own PCS 2136 * layer via in-band status. Report these as the current 2137 * link settings. 2138 */ 2139 phylink_get_ksettings(&link_state, kset); 2140 break; 2141 } 2142 2143 return 0; 2144 } 2145 EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_get); 2146 2147 /** 2148 * phylink_ethtool_ksettings_set() - set the link settings 2149 * @pl: a pointer to a &struct phylink returned from phylink_create() 2150 * @kset: a pointer to a &struct ethtool_link_ksettings for the desired modes 2151 */ 2152 int phylink_ethtool_ksettings_set(struct phylink *pl, 2153 const struct ethtool_link_ksettings *kset) 2154 { 2155 __ETHTOOL_DECLARE_LINK_MODE_MASK(support); 2156 struct phylink_link_state config; 2157 const struct phy_setting *s; 2158 2159 ASSERT_RTNL(); 2160 2161 if (pl->phydev) { 2162 /* We can rely on phylib for this update; we also do not need 2163 * to update the pl->link_config settings: 2164 * - the configuration returned via ksettings_get() will come 2165 * from phylib whenever a PHY is present. 2166 * - link_config.interface will be updated by the PHY calling 2167 * back via phylink_phy_change() and a subsequent resolve. 2168 * - initial link configuration for PHY mode comes from the 2169 * last phy state updated via phylink_phy_change(). 2170 * - other configuration changes (e.g. pause modes) are 2171 * performed directly via phylib. 2172 * - if in in-band mode with a PHY, the link configuration 2173 * is passed on the link from the PHY, and all of 2174 * link_config.{speed,duplex,an_enabled,pause} are not used. 2175 * - the only possible use would be link_config.advertising 2176 * pause modes when in 1000base-X mode with a PHY, but in 2177 * the presence of a PHY, this should not be changed as that 2178 * should be determined from the media side advertisement. 2179 */ 2180 return phy_ethtool_ksettings_set(pl->phydev, kset); 2181 } 2182 2183 config = pl->link_config; 2184 2185 /* Mask out unsupported advertisements */ 2186 linkmode_and(config.advertising, kset->link_modes.advertising, 2187 pl->supported); 2188 2189 /* FIXME: should we reject autoneg if phy/mac does not support it? */ 2190 switch (kset->base.autoneg) { 2191 case AUTONEG_DISABLE: 2192 /* Autonegotiation disabled, select a suitable speed and 2193 * duplex. 2194 */ 2195 s = phy_lookup_setting(kset->base.speed, kset->base.duplex, 2196 pl->supported, false); 2197 if (!s) 2198 return -EINVAL; 2199 2200 /* If we have a fixed link, refuse to change link parameters. 2201 * If the link parameters match, accept them but do nothing. 2202 */ 2203 if (pl->cur_link_an_mode == MLO_AN_FIXED) { 2204 if (s->speed != pl->link_config.speed || 2205 s->duplex != pl->link_config.duplex) 2206 return -EINVAL; 2207 return 0; 2208 } 2209 2210 config.speed = s->speed; 2211 config.duplex = s->duplex; 2212 break; 2213 2214 case AUTONEG_ENABLE: 2215 /* If we have a fixed link, allow autonegotiation (since that 2216 * is our default case) but do not allow the advertisement to 2217 * be changed. If the advertisement matches, simply return. 2218 */ 2219 if (pl->cur_link_an_mode == MLO_AN_FIXED) { 2220 if (!linkmode_equal(config.advertising, 2221 pl->link_config.advertising)) 2222 return -EINVAL; 2223 return 0; 2224 } 2225 2226 config.speed = SPEED_UNKNOWN; 2227 config.duplex = DUPLEX_UNKNOWN; 2228 break; 2229 2230 default: 2231 return -EINVAL; 2232 } 2233 2234 /* We have ruled out the case with a PHY attached, and the 2235 * fixed-link cases. All that is left are in-band links. 2236 */ 2237 config.an_enabled = kset->base.autoneg == AUTONEG_ENABLE; 2238 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, config.advertising, 2239 config.an_enabled); 2240 2241 /* If this link is with an SFP, ensure that changes to advertised modes 2242 * also cause the associated interface to be selected such that the 2243 * link can be configured correctly. 2244 */ 2245 if (pl->sfp_bus) { 2246 config.interface = sfp_select_interface(pl->sfp_bus, 2247 config.advertising); 2248 if (config.interface == PHY_INTERFACE_MODE_NA) { 2249 phylink_err(pl, 2250 "selection of interface failed, advertisement %*pb\n", 2251 __ETHTOOL_LINK_MODE_MASK_NBITS, 2252 config.advertising); 2253 return -EINVAL; 2254 } 2255 2256 /* Revalidate with the selected interface */ 2257 linkmode_copy(support, pl->supported); 2258 if (phylink_validate(pl, support, &config)) { 2259 phylink_err(pl, "validation of %s/%s with support %*pb failed\n", 2260 phylink_an_mode_str(pl->cur_link_an_mode), 2261 phy_modes(config.interface), 2262 __ETHTOOL_LINK_MODE_MASK_NBITS, support); 2263 return -EINVAL; 2264 } 2265 } else { 2266 /* Validate without changing the current supported mask. */ 2267 linkmode_copy(support, pl->supported); 2268 if (phylink_validate(pl, support, &config)) 2269 return -EINVAL; 2270 } 2271 2272 /* If autonegotiation is enabled, we must have an advertisement */ 2273 if (config.an_enabled && phylink_is_empty_linkmode(config.advertising)) 2274 return -EINVAL; 2275 2276 mutex_lock(&pl->state_mutex); 2277 pl->link_config.speed = config.speed; 2278 pl->link_config.duplex = config.duplex; 2279 pl->link_config.an_enabled = config.an_enabled; 2280 2281 if (pl->link_config.interface != config.interface) { 2282 /* The interface changed, e.g. 1000base-X <-> 2500base-X */ 2283 /* We need to force the link down, then change the interface */ 2284 if (pl->old_link_state) { 2285 phylink_link_down(pl); 2286 pl->old_link_state = false; 2287 } 2288 if (!test_bit(PHYLINK_DISABLE_STOPPED, 2289 &pl->phylink_disable_state)) 2290 phylink_major_config(pl, false, &config); 2291 pl->link_config.interface = config.interface; 2292 linkmode_copy(pl->link_config.advertising, config.advertising); 2293 } else if (!linkmode_equal(pl->link_config.advertising, 2294 config.advertising)) { 2295 linkmode_copy(pl->link_config.advertising, config.advertising); 2296 phylink_change_inband_advert(pl); 2297 } 2298 mutex_unlock(&pl->state_mutex); 2299 2300 return 0; 2301 } 2302 EXPORT_SYMBOL_GPL(phylink_ethtool_ksettings_set); 2303 2304 /** 2305 * phylink_ethtool_nway_reset() - restart negotiation 2306 * @pl: a pointer to a &struct phylink returned from phylink_create() 2307 * 2308 * Restart negotiation for the phylink instance specified by @pl. This will 2309 * cause any attached phy to restart negotiation with the link partner, and 2310 * if the MAC is in a BaseX mode, the MAC will also be requested to restart 2311 * negotiation. 2312 * 2313 * Returns zero on success, or negative error code. 2314 */ 2315 int phylink_ethtool_nway_reset(struct phylink *pl) 2316 { 2317 int ret = 0; 2318 2319 ASSERT_RTNL(); 2320 2321 if (pl->phydev) 2322 ret = phy_restart_aneg(pl->phydev); 2323 phylink_mac_pcs_an_restart(pl); 2324 2325 return ret; 2326 } 2327 EXPORT_SYMBOL_GPL(phylink_ethtool_nway_reset); 2328 2329 /** 2330 * phylink_ethtool_get_pauseparam() - get the current pause parameters 2331 * @pl: a pointer to a &struct phylink returned from phylink_create() 2332 * @pause: a pointer to a &struct ethtool_pauseparam 2333 */ 2334 void phylink_ethtool_get_pauseparam(struct phylink *pl, 2335 struct ethtool_pauseparam *pause) 2336 { 2337 ASSERT_RTNL(); 2338 2339 pause->autoneg = !!(pl->link_config.pause & MLO_PAUSE_AN); 2340 pause->rx_pause = !!(pl->link_config.pause & MLO_PAUSE_RX); 2341 pause->tx_pause = !!(pl->link_config.pause & MLO_PAUSE_TX); 2342 } 2343 EXPORT_SYMBOL_GPL(phylink_ethtool_get_pauseparam); 2344 2345 /** 2346 * phylink_ethtool_set_pauseparam() - set the current pause parameters 2347 * @pl: a pointer to a &struct phylink returned from phylink_create() 2348 * @pause: a pointer to a &struct ethtool_pauseparam 2349 */ 2350 int phylink_ethtool_set_pauseparam(struct phylink *pl, 2351 struct ethtool_pauseparam *pause) 2352 { 2353 struct phylink_link_state *config = &pl->link_config; 2354 bool manual_changed; 2355 int pause_state; 2356 2357 ASSERT_RTNL(); 2358 2359 if (pl->cur_link_an_mode == MLO_AN_FIXED) 2360 return -EOPNOTSUPP; 2361 2362 if (!phylink_test(pl->supported, Pause) && 2363 !phylink_test(pl->supported, Asym_Pause)) 2364 return -EOPNOTSUPP; 2365 2366 if (!phylink_test(pl->supported, Asym_Pause) && 2367 pause->rx_pause != pause->tx_pause) 2368 return -EINVAL; 2369 2370 pause_state = 0; 2371 if (pause->autoneg) 2372 pause_state |= MLO_PAUSE_AN; 2373 if (pause->rx_pause) 2374 pause_state |= MLO_PAUSE_RX; 2375 if (pause->tx_pause) 2376 pause_state |= MLO_PAUSE_TX; 2377 2378 mutex_lock(&pl->state_mutex); 2379 /* 2380 * See the comments for linkmode_set_pause(), wrt the deficiencies 2381 * with the current implementation. A solution to this issue would 2382 * be: 2383 * ethtool Local device 2384 * rx tx Pause AsymDir 2385 * 0 0 0 0 2386 * 1 0 1 1 2387 * 0 1 0 1 2388 * 1 1 1 1 2389 * and then use the ethtool rx/tx enablement status to mask the 2390 * rx/tx pause resolution. 2391 */ 2392 linkmode_set_pause(config->advertising, pause->tx_pause, 2393 pause->rx_pause); 2394 2395 manual_changed = (config->pause ^ pause_state) & MLO_PAUSE_AN || 2396 (!(pause_state & MLO_PAUSE_AN) && 2397 (config->pause ^ pause_state) & MLO_PAUSE_TXRX_MASK); 2398 2399 config->pause = pause_state; 2400 2401 /* Update our in-band advertisement, triggering a renegotiation if 2402 * the advertisement changed. 2403 */ 2404 if (!pl->phydev) 2405 phylink_change_inband_advert(pl); 2406 2407 mutex_unlock(&pl->state_mutex); 2408 2409 /* If we have a PHY, a change of the pause frame advertisement will 2410 * cause phylib to renegotiate (if AN is enabled) which will in turn 2411 * call our phylink_phy_change() and trigger a resolve. Note that 2412 * we can't hold our state mutex while calling phy_set_asym_pause(). 2413 */ 2414 if (pl->phydev) 2415 phy_set_asym_pause(pl->phydev, pause->rx_pause, 2416 pause->tx_pause); 2417 2418 /* If the manual pause settings changed, make sure we trigger a 2419 * resolve to update their state; we can not guarantee that the 2420 * link will cycle. 2421 */ 2422 if (manual_changed) { 2423 pl->mac_link_dropped = true; 2424 phylink_run_resolve(pl); 2425 } 2426 2427 return 0; 2428 } 2429 EXPORT_SYMBOL_GPL(phylink_ethtool_set_pauseparam); 2430 2431 /** 2432 * phylink_get_eee_err() - read the energy efficient ethernet error 2433 * counter 2434 * @pl: a pointer to a &struct phylink returned from phylink_create(). 2435 * 2436 * Read the Energy Efficient Ethernet error counter from the PHY associated 2437 * with the phylink instance specified by @pl. 2438 * 2439 * Returns positive error counter value, or negative error code. 2440 */ 2441 int phylink_get_eee_err(struct phylink *pl) 2442 { 2443 int ret = 0; 2444 2445 ASSERT_RTNL(); 2446 2447 if (pl->phydev) 2448 ret = phy_get_eee_err(pl->phydev); 2449 2450 return ret; 2451 } 2452 EXPORT_SYMBOL_GPL(phylink_get_eee_err); 2453 2454 /** 2455 * phylink_init_eee() - init and check the EEE features 2456 * @pl: a pointer to a &struct phylink returned from phylink_create() 2457 * @clk_stop_enable: allow PHY to stop receive clock 2458 * 2459 * Must be called either with RTNL held or within mac_link_up() 2460 */ 2461 int phylink_init_eee(struct phylink *pl, bool clk_stop_enable) 2462 { 2463 int ret = -EOPNOTSUPP; 2464 2465 if (pl->phydev) 2466 ret = phy_init_eee(pl->phydev, clk_stop_enable); 2467 2468 return ret; 2469 } 2470 EXPORT_SYMBOL_GPL(phylink_init_eee); 2471 2472 /** 2473 * phylink_ethtool_get_eee() - read the energy efficient ethernet parameters 2474 * @pl: a pointer to a &struct phylink returned from phylink_create() 2475 * @eee: a pointer to a &struct ethtool_eee for the read parameters 2476 */ 2477 int phylink_ethtool_get_eee(struct phylink *pl, struct ethtool_eee *eee) 2478 { 2479 int ret = -EOPNOTSUPP; 2480 2481 ASSERT_RTNL(); 2482 2483 if (pl->phydev) 2484 ret = phy_ethtool_get_eee(pl->phydev, eee); 2485 2486 return ret; 2487 } 2488 EXPORT_SYMBOL_GPL(phylink_ethtool_get_eee); 2489 2490 /** 2491 * phylink_ethtool_set_eee() - set the energy efficient ethernet parameters 2492 * @pl: a pointer to a &struct phylink returned from phylink_create() 2493 * @eee: a pointer to a &struct ethtool_eee for the desired parameters 2494 */ 2495 int phylink_ethtool_set_eee(struct phylink *pl, struct ethtool_eee *eee) 2496 { 2497 int ret = -EOPNOTSUPP; 2498 2499 ASSERT_RTNL(); 2500 2501 if (pl->phydev) 2502 ret = phy_ethtool_set_eee(pl->phydev, eee); 2503 2504 return ret; 2505 } 2506 EXPORT_SYMBOL_GPL(phylink_ethtool_set_eee); 2507 2508 /* This emulates MII registers for a fixed-mode phy operating as per the 2509 * passed in state. "aneg" defines if we report negotiation is possible. 2510 * 2511 * FIXME: should deal with negotiation state too. 2512 */ 2513 static int phylink_mii_emul_read(unsigned int reg, 2514 struct phylink_link_state *state) 2515 { 2516 struct fixed_phy_status fs; 2517 unsigned long *lpa = state->lp_advertising; 2518 int val; 2519 2520 fs.link = state->link; 2521 fs.speed = state->speed; 2522 fs.duplex = state->duplex; 2523 fs.pause = test_bit(ETHTOOL_LINK_MODE_Pause_BIT, lpa); 2524 fs.asym_pause = test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, lpa); 2525 2526 val = swphy_read_reg(reg, &fs); 2527 if (reg == MII_BMSR) { 2528 if (!state->an_complete) 2529 val &= ~BMSR_ANEGCOMPLETE; 2530 } 2531 return val; 2532 } 2533 2534 static int phylink_phy_read(struct phylink *pl, unsigned int phy_id, 2535 unsigned int reg) 2536 { 2537 struct phy_device *phydev = pl->phydev; 2538 int prtad, devad; 2539 2540 if (mdio_phy_id_is_c45(phy_id)) { 2541 prtad = mdio_phy_id_prtad(phy_id); 2542 devad = mdio_phy_id_devad(phy_id); 2543 return mdiobus_c45_read(pl->phydev->mdio.bus, prtad, devad, 2544 reg); 2545 } 2546 2547 if (phydev->is_c45) { 2548 switch (reg) { 2549 case MII_BMCR: 2550 case MII_BMSR: 2551 case MII_PHYSID1: 2552 case MII_PHYSID2: 2553 devad = __ffs(phydev->c45_ids.mmds_present); 2554 break; 2555 case MII_ADVERTISE: 2556 case MII_LPA: 2557 if (!(phydev->c45_ids.mmds_present & MDIO_DEVS_AN)) 2558 return -EINVAL; 2559 devad = MDIO_MMD_AN; 2560 if (reg == MII_ADVERTISE) 2561 reg = MDIO_AN_ADVERTISE; 2562 else 2563 reg = MDIO_AN_LPA; 2564 break; 2565 default: 2566 return -EINVAL; 2567 } 2568 prtad = phy_id; 2569 return mdiobus_c45_read(pl->phydev->mdio.bus, prtad, devad, 2570 reg); 2571 } 2572 2573 return mdiobus_read(pl->phydev->mdio.bus, phy_id, reg); 2574 } 2575 2576 static int phylink_phy_write(struct phylink *pl, unsigned int phy_id, 2577 unsigned int reg, unsigned int val) 2578 { 2579 struct phy_device *phydev = pl->phydev; 2580 int prtad, devad; 2581 2582 if (mdio_phy_id_is_c45(phy_id)) { 2583 prtad = mdio_phy_id_prtad(phy_id); 2584 devad = mdio_phy_id_devad(phy_id); 2585 return mdiobus_c45_write(pl->phydev->mdio.bus, prtad, devad, 2586 reg, val); 2587 } 2588 2589 if (phydev->is_c45) { 2590 switch (reg) { 2591 case MII_BMCR: 2592 case MII_BMSR: 2593 case MII_PHYSID1: 2594 case MII_PHYSID2: 2595 devad = __ffs(phydev->c45_ids.mmds_present); 2596 break; 2597 case MII_ADVERTISE: 2598 case MII_LPA: 2599 if (!(phydev->c45_ids.mmds_present & MDIO_DEVS_AN)) 2600 return -EINVAL; 2601 devad = MDIO_MMD_AN; 2602 if (reg == MII_ADVERTISE) 2603 reg = MDIO_AN_ADVERTISE; 2604 else 2605 reg = MDIO_AN_LPA; 2606 break; 2607 default: 2608 return -EINVAL; 2609 } 2610 return mdiobus_c45_write(pl->phydev->mdio.bus, phy_id, devad, 2611 reg, val); 2612 } 2613 2614 return mdiobus_write(phydev->mdio.bus, phy_id, reg, val); 2615 } 2616 2617 static int phylink_mii_read(struct phylink *pl, unsigned int phy_id, 2618 unsigned int reg) 2619 { 2620 struct phylink_link_state state; 2621 int val = 0xffff; 2622 2623 switch (pl->cur_link_an_mode) { 2624 case MLO_AN_FIXED: 2625 if (phy_id == 0) { 2626 phylink_get_fixed_state(pl, &state); 2627 val = phylink_mii_emul_read(reg, &state); 2628 } 2629 break; 2630 2631 case MLO_AN_PHY: 2632 return -EOPNOTSUPP; 2633 2634 case MLO_AN_INBAND: 2635 if (phy_id == 0) { 2636 phylink_mac_pcs_get_state(pl, &state); 2637 val = phylink_mii_emul_read(reg, &state); 2638 } 2639 break; 2640 } 2641 2642 return val & 0xffff; 2643 } 2644 2645 static int phylink_mii_write(struct phylink *pl, unsigned int phy_id, 2646 unsigned int reg, unsigned int val) 2647 { 2648 switch (pl->cur_link_an_mode) { 2649 case MLO_AN_FIXED: 2650 break; 2651 2652 case MLO_AN_PHY: 2653 return -EOPNOTSUPP; 2654 2655 case MLO_AN_INBAND: 2656 break; 2657 } 2658 2659 return 0; 2660 } 2661 2662 /** 2663 * phylink_mii_ioctl() - generic mii ioctl interface 2664 * @pl: a pointer to a &struct phylink returned from phylink_create() 2665 * @ifr: a pointer to a &struct ifreq for socket ioctls 2666 * @cmd: ioctl cmd to execute 2667 * 2668 * Perform the specified MII ioctl on the PHY attached to the phylink instance 2669 * specified by @pl. If no PHY is attached, emulate the presence of the PHY. 2670 * 2671 * Returns: zero on success or negative error code. 2672 * 2673 * %SIOCGMIIPHY: 2674 * read register from the current PHY. 2675 * %SIOCGMIIREG: 2676 * read register from the specified PHY. 2677 * %SIOCSMIIREG: 2678 * set a register on the specified PHY. 2679 */ 2680 int phylink_mii_ioctl(struct phylink *pl, struct ifreq *ifr, int cmd) 2681 { 2682 struct mii_ioctl_data *mii = if_mii(ifr); 2683 int ret; 2684 2685 ASSERT_RTNL(); 2686 2687 if (pl->phydev) { 2688 /* PHYs only exist for MLO_AN_PHY and SGMII */ 2689 switch (cmd) { 2690 case SIOCGMIIPHY: 2691 mii->phy_id = pl->phydev->mdio.addr; 2692 fallthrough; 2693 2694 case SIOCGMIIREG: 2695 ret = phylink_phy_read(pl, mii->phy_id, mii->reg_num); 2696 if (ret >= 0) { 2697 mii->val_out = ret; 2698 ret = 0; 2699 } 2700 break; 2701 2702 case SIOCSMIIREG: 2703 ret = phylink_phy_write(pl, mii->phy_id, mii->reg_num, 2704 mii->val_in); 2705 break; 2706 2707 default: 2708 ret = phy_mii_ioctl(pl->phydev, ifr, cmd); 2709 break; 2710 } 2711 } else { 2712 switch (cmd) { 2713 case SIOCGMIIPHY: 2714 mii->phy_id = 0; 2715 fallthrough; 2716 2717 case SIOCGMIIREG: 2718 ret = phylink_mii_read(pl, mii->phy_id, mii->reg_num); 2719 if (ret >= 0) { 2720 mii->val_out = ret; 2721 ret = 0; 2722 } 2723 break; 2724 2725 case SIOCSMIIREG: 2726 ret = phylink_mii_write(pl, mii->phy_id, mii->reg_num, 2727 mii->val_in); 2728 break; 2729 2730 default: 2731 ret = -EOPNOTSUPP; 2732 break; 2733 } 2734 } 2735 2736 return ret; 2737 } 2738 EXPORT_SYMBOL_GPL(phylink_mii_ioctl); 2739 2740 /** 2741 * phylink_speed_down() - set the non-SFP PHY to lowest speed supported by both 2742 * link partners 2743 * @pl: a pointer to a &struct phylink returned from phylink_create() 2744 * @sync: perform action synchronously 2745 * 2746 * If we have a PHY that is not part of a SFP module, then set the speed 2747 * as described in the phy_speed_down() function. Please see this function 2748 * for a description of the @sync parameter. 2749 * 2750 * Returns zero if there is no PHY, otherwise as per phy_speed_down(). 2751 */ 2752 int phylink_speed_down(struct phylink *pl, bool sync) 2753 { 2754 int ret = 0; 2755 2756 ASSERT_RTNL(); 2757 2758 if (!pl->sfp_bus && pl->phydev) 2759 ret = phy_speed_down(pl->phydev, sync); 2760 2761 return ret; 2762 } 2763 EXPORT_SYMBOL_GPL(phylink_speed_down); 2764 2765 /** 2766 * phylink_speed_up() - restore the advertised speeds prior to the call to 2767 * phylink_speed_down() 2768 * @pl: a pointer to a &struct phylink returned from phylink_create() 2769 * 2770 * If we have a PHY that is not part of a SFP module, then restore the 2771 * PHY speeds as per phy_speed_up(). 2772 * 2773 * Returns zero if there is no PHY, otherwise as per phy_speed_up(). 2774 */ 2775 int phylink_speed_up(struct phylink *pl) 2776 { 2777 int ret = 0; 2778 2779 ASSERT_RTNL(); 2780 2781 if (!pl->sfp_bus && pl->phydev) 2782 ret = phy_speed_up(pl->phydev); 2783 2784 return ret; 2785 } 2786 EXPORT_SYMBOL_GPL(phylink_speed_up); 2787 2788 static void phylink_sfp_attach(void *upstream, struct sfp_bus *bus) 2789 { 2790 struct phylink *pl = upstream; 2791 2792 pl->netdev->sfp_bus = bus; 2793 } 2794 2795 static void phylink_sfp_detach(void *upstream, struct sfp_bus *bus) 2796 { 2797 struct phylink *pl = upstream; 2798 2799 pl->netdev->sfp_bus = NULL; 2800 } 2801 2802 static int phylink_sfp_config(struct phylink *pl, u8 mode, 2803 const unsigned long *supported, 2804 const unsigned long *advertising) 2805 { 2806 __ETHTOOL_DECLARE_LINK_MODE_MASK(support1); 2807 __ETHTOOL_DECLARE_LINK_MODE_MASK(support); 2808 struct phylink_link_state config; 2809 phy_interface_t iface; 2810 bool changed; 2811 int ret; 2812 2813 linkmode_copy(support, supported); 2814 2815 memset(&config, 0, sizeof(config)); 2816 linkmode_copy(config.advertising, advertising); 2817 config.interface = PHY_INTERFACE_MODE_NA; 2818 config.speed = SPEED_UNKNOWN; 2819 config.duplex = DUPLEX_UNKNOWN; 2820 config.pause = MLO_PAUSE_AN; 2821 config.an_enabled = pl->link_config.an_enabled; 2822 2823 /* Ignore errors if we're expecting a PHY to attach later */ 2824 ret = phylink_validate(pl, support, &config); 2825 if (ret) { 2826 phylink_err(pl, "validation with support %*pb failed: %pe\n", 2827 __ETHTOOL_LINK_MODE_MASK_NBITS, support, 2828 ERR_PTR(ret)); 2829 return ret; 2830 } 2831 2832 iface = sfp_select_interface(pl->sfp_bus, config.advertising); 2833 if (iface == PHY_INTERFACE_MODE_NA) { 2834 phylink_err(pl, 2835 "selection of interface failed, advertisement %*pb\n", 2836 __ETHTOOL_LINK_MODE_MASK_NBITS, config.advertising); 2837 return -EINVAL; 2838 } 2839 2840 config.interface = iface; 2841 linkmode_copy(support1, support); 2842 ret = phylink_validate(pl, support1, &config); 2843 if (ret) { 2844 phylink_err(pl, 2845 "validation of %s/%s with support %*pb failed: %pe\n", 2846 phylink_an_mode_str(mode), 2847 phy_modes(config.interface), 2848 __ETHTOOL_LINK_MODE_MASK_NBITS, support, 2849 ERR_PTR(ret)); 2850 return ret; 2851 } 2852 2853 phylink_dbg(pl, "requesting link mode %s/%s with support %*pb\n", 2854 phylink_an_mode_str(mode), phy_modes(config.interface), 2855 __ETHTOOL_LINK_MODE_MASK_NBITS, support); 2856 2857 if (phy_interface_mode_is_8023z(iface) && pl->phydev) 2858 return -EINVAL; 2859 2860 changed = !linkmode_equal(pl->supported, support) || 2861 !linkmode_equal(pl->link_config.advertising, 2862 config.advertising); 2863 if (changed) { 2864 linkmode_copy(pl->supported, support); 2865 linkmode_copy(pl->link_config.advertising, config.advertising); 2866 } 2867 2868 if (pl->cur_link_an_mode != mode || 2869 pl->link_config.interface != config.interface) { 2870 pl->link_config.interface = config.interface; 2871 pl->cur_link_an_mode = mode; 2872 2873 changed = true; 2874 2875 phylink_info(pl, "switched to %s/%s link mode\n", 2876 phylink_an_mode_str(mode), 2877 phy_modes(config.interface)); 2878 } 2879 2880 pl->link_port = pl->sfp_port; 2881 2882 if (changed && !test_bit(PHYLINK_DISABLE_STOPPED, 2883 &pl->phylink_disable_state)) 2884 phylink_mac_initial_config(pl, false); 2885 2886 return ret; 2887 } 2888 2889 static int phylink_sfp_module_insert(void *upstream, 2890 const struct sfp_eeprom_id *id) 2891 { 2892 struct phylink *pl = upstream; 2893 unsigned long *support = pl->sfp_support; 2894 2895 ASSERT_RTNL(); 2896 2897 linkmode_zero(support); 2898 sfp_parse_support(pl->sfp_bus, id, support); 2899 pl->sfp_port = sfp_parse_port(pl->sfp_bus, id, support); 2900 2901 /* If this module may have a PHY connecting later, defer until later */ 2902 pl->sfp_may_have_phy = sfp_may_have_phy(pl->sfp_bus, id); 2903 if (pl->sfp_may_have_phy) 2904 return 0; 2905 2906 return phylink_sfp_config(pl, MLO_AN_INBAND, support, support); 2907 } 2908 2909 static int phylink_sfp_module_start(void *upstream) 2910 { 2911 struct phylink *pl = upstream; 2912 2913 /* If this SFP module has a PHY, start the PHY now. */ 2914 if (pl->phydev) { 2915 phy_start(pl->phydev); 2916 return 0; 2917 } 2918 2919 /* If the module may have a PHY but we didn't detect one we 2920 * need to configure the MAC here. 2921 */ 2922 if (!pl->sfp_may_have_phy) 2923 return 0; 2924 2925 return phylink_sfp_config(pl, MLO_AN_INBAND, 2926 pl->sfp_support, pl->sfp_support); 2927 } 2928 2929 static void phylink_sfp_module_stop(void *upstream) 2930 { 2931 struct phylink *pl = upstream; 2932 2933 /* If this SFP module has a PHY, stop it. */ 2934 if (pl->phydev) 2935 phy_stop(pl->phydev); 2936 } 2937 2938 static void phylink_sfp_link_down(void *upstream) 2939 { 2940 struct phylink *pl = upstream; 2941 2942 ASSERT_RTNL(); 2943 2944 phylink_run_resolve_and_disable(pl, PHYLINK_DISABLE_LINK); 2945 } 2946 2947 static void phylink_sfp_link_up(void *upstream) 2948 { 2949 struct phylink *pl = upstream; 2950 2951 ASSERT_RTNL(); 2952 2953 phylink_enable_and_run_resolve(pl, PHYLINK_DISABLE_LINK); 2954 } 2955 2956 /* The Broadcom BCM84881 in the Methode DM7052 is unable to provide a SGMII 2957 * or 802.3z control word, so inband will not work. 2958 */ 2959 static bool phylink_phy_no_inband(struct phy_device *phy) 2960 { 2961 return phy->is_c45 && 2962 (phy->c45_ids.device_ids[1] & 0xfffffff0) == 0xae025150; 2963 } 2964 2965 static int phylink_sfp_connect_phy(void *upstream, struct phy_device *phy) 2966 { 2967 struct phylink *pl = upstream; 2968 phy_interface_t interface; 2969 u8 mode; 2970 int ret; 2971 2972 /* 2973 * This is the new way of dealing with flow control for PHYs, 2974 * as described by Timur Tabi in commit 529ed1275263 ("net: phy: 2975 * phy drivers should not set SUPPORTED_[Asym_]Pause") except 2976 * using our validate call to the MAC, we rely upon the MAC 2977 * clearing the bits from both supported and advertising fields. 2978 */ 2979 phy_support_asym_pause(phy); 2980 2981 if (phylink_phy_no_inband(phy)) 2982 mode = MLO_AN_PHY; 2983 else 2984 mode = MLO_AN_INBAND; 2985 2986 /* Do the initial configuration */ 2987 ret = phylink_sfp_config(pl, mode, phy->supported, phy->advertising); 2988 if (ret < 0) 2989 return ret; 2990 2991 interface = pl->link_config.interface; 2992 ret = phylink_attach_phy(pl, phy, interface); 2993 if (ret < 0) 2994 return ret; 2995 2996 ret = phylink_bringup_phy(pl, phy, interface); 2997 if (ret) 2998 phy_detach(phy); 2999 3000 return ret; 3001 } 3002 3003 static void phylink_sfp_disconnect_phy(void *upstream) 3004 { 3005 phylink_disconnect_phy(upstream); 3006 } 3007 3008 static const struct sfp_upstream_ops sfp_phylink_ops = { 3009 .attach = phylink_sfp_attach, 3010 .detach = phylink_sfp_detach, 3011 .module_insert = phylink_sfp_module_insert, 3012 .module_start = phylink_sfp_module_start, 3013 .module_stop = phylink_sfp_module_stop, 3014 .link_up = phylink_sfp_link_up, 3015 .link_down = phylink_sfp_link_down, 3016 .connect_phy = phylink_sfp_connect_phy, 3017 .disconnect_phy = phylink_sfp_disconnect_phy, 3018 }; 3019 3020 /* Helpers for MAC drivers */ 3021 3022 static void phylink_decode_c37_word(struct phylink_link_state *state, 3023 uint16_t config_reg, int speed) 3024 { 3025 bool tx_pause, rx_pause; 3026 int fd_bit; 3027 3028 if (speed == SPEED_2500) 3029 fd_bit = ETHTOOL_LINK_MODE_2500baseX_Full_BIT; 3030 else 3031 fd_bit = ETHTOOL_LINK_MODE_1000baseX_Full_BIT; 3032 3033 mii_lpa_mod_linkmode_x(state->lp_advertising, config_reg, fd_bit); 3034 3035 if (linkmode_test_bit(fd_bit, state->advertising) && 3036 linkmode_test_bit(fd_bit, state->lp_advertising)) { 3037 state->speed = speed; 3038 state->duplex = DUPLEX_FULL; 3039 } else { 3040 /* negotiation failure */ 3041 state->link = false; 3042 } 3043 3044 linkmode_resolve_pause(state->advertising, state->lp_advertising, 3045 &tx_pause, &rx_pause); 3046 3047 if (tx_pause) 3048 state->pause |= MLO_PAUSE_TX; 3049 if (rx_pause) 3050 state->pause |= MLO_PAUSE_RX; 3051 } 3052 3053 static void phylink_decode_sgmii_word(struct phylink_link_state *state, 3054 uint16_t config_reg) 3055 { 3056 if (!(config_reg & LPA_SGMII_LINK)) { 3057 state->link = false; 3058 return; 3059 } 3060 3061 switch (config_reg & LPA_SGMII_SPD_MASK) { 3062 case LPA_SGMII_10: 3063 state->speed = SPEED_10; 3064 break; 3065 case LPA_SGMII_100: 3066 state->speed = SPEED_100; 3067 break; 3068 case LPA_SGMII_1000: 3069 state->speed = SPEED_1000; 3070 break; 3071 default: 3072 state->link = false; 3073 return; 3074 } 3075 if (config_reg & LPA_SGMII_FULL_DUPLEX) 3076 state->duplex = DUPLEX_FULL; 3077 else 3078 state->duplex = DUPLEX_HALF; 3079 } 3080 3081 /** 3082 * phylink_decode_usxgmii_word() - decode the USXGMII word from a MAC PCS 3083 * @state: a pointer to a struct phylink_link_state. 3084 * @lpa: a 16 bit value which stores the USXGMII auto-negotiation word 3085 * 3086 * Helper for MAC PCS supporting the USXGMII protocol and the auto-negotiation 3087 * code word. Decode the USXGMII code word and populate the corresponding fields 3088 * (speed, duplex) into the phylink_link_state structure. 3089 */ 3090 void phylink_decode_usxgmii_word(struct phylink_link_state *state, 3091 uint16_t lpa) 3092 { 3093 switch (lpa & MDIO_USXGMII_SPD_MASK) { 3094 case MDIO_USXGMII_10: 3095 state->speed = SPEED_10; 3096 break; 3097 case MDIO_USXGMII_100: 3098 state->speed = SPEED_100; 3099 break; 3100 case MDIO_USXGMII_1000: 3101 state->speed = SPEED_1000; 3102 break; 3103 case MDIO_USXGMII_2500: 3104 state->speed = SPEED_2500; 3105 break; 3106 case MDIO_USXGMII_5000: 3107 state->speed = SPEED_5000; 3108 break; 3109 case MDIO_USXGMII_10G: 3110 state->speed = SPEED_10000; 3111 break; 3112 default: 3113 state->link = false; 3114 return; 3115 } 3116 3117 if (lpa & MDIO_USXGMII_FULL_DUPLEX) 3118 state->duplex = DUPLEX_FULL; 3119 else 3120 state->duplex = DUPLEX_HALF; 3121 } 3122 EXPORT_SYMBOL_GPL(phylink_decode_usxgmii_word); 3123 3124 /** 3125 * phylink_mii_c22_pcs_decode_state() - Decode MAC PCS state from MII registers 3126 * @state: a pointer to a &struct phylink_link_state. 3127 * @bmsr: The value of the %MII_BMSR register 3128 * @lpa: The value of the %MII_LPA register 3129 * 3130 * Helper for MAC PCS supporting the 802.3 clause 22 register set for 3131 * clause 37 negotiation and/or SGMII control. 3132 * 3133 * Parse the Clause 37 or Cisco SGMII link partner negotiation word into 3134 * the phylink @state structure. This is suitable to be used for implementing 3135 * the mac_pcs_get_state() member of the struct phylink_mac_ops structure if 3136 * accessing @bmsr and @lpa cannot be done with MDIO directly. 3137 */ 3138 void phylink_mii_c22_pcs_decode_state(struct phylink_link_state *state, 3139 u16 bmsr, u16 lpa) 3140 { 3141 state->link = !!(bmsr & BMSR_LSTATUS); 3142 state->an_complete = !!(bmsr & BMSR_ANEGCOMPLETE); 3143 /* If there is no link or autonegotiation is disabled, the LP advertisement 3144 * data is not meaningful, so don't go any further. 3145 */ 3146 if (!state->link || !state->an_enabled) 3147 return; 3148 3149 switch (state->interface) { 3150 case PHY_INTERFACE_MODE_1000BASEX: 3151 phylink_decode_c37_word(state, lpa, SPEED_1000); 3152 break; 3153 3154 case PHY_INTERFACE_MODE_2500BASEX: 3155 phylink_decode_c37_word(state, lpa, SPEED_2500); 3156 break; 3157 3158 case PHY_INTERFACE_MODE_SGMII: 3159 case PHY_INTERFACE_MODE_QSGMII: 3160 case PHY_INTERFACE_MODE_QUSGMII: 3161 phylink_decode_sgmii_word(state, lpa); 3162 break; 3163 3164 default: 3165 state->link = false; 3166 break; 3167 } 3168 } 3169 EXPORT_SYMBOL_GPL(phylink_mii_c22_pcs_decode_state); 3170 3171 /** 3172 * phylink_mii_c22_pcs_get_state() - read the MAC PCS state 3173 * @pcs: a pointer to a &struct mdio_device. 3174 * @state: a pointer to a &struct phylink_link_state. 3175 * 3176 * Helper for MAC PCS supporting the 802.3 clause 22 register set for 3177 * clause 37 negotiation and/or SGMII control. 3178 * 3179 * Read the MAC PCS state from the MII device configured in @config and 3180 * parse the Clause 37 or Cisco SGMII link partner negotiation word into 3181 * the phylink @state structure. This is suitable to be directly plugged 3182 * into the mac_pcs_get_state() member of the struct phylink_mac_ops 3183 * structure. 3184 */ 3185 void phylink_mii_c22_pcs_get_state(struct mdio_device *pcs, 3186 struct phylink_link_state *state) 3187 { 3188 int bmsr, lpa; 3189 3190 bmsr = mdiodev_read(pcs, MII_BMSR); 3191 lpa = mdiodev_read(pcs, MII_LPA); 3192 if (bmsr < 0 || lpa < 0) { 3193 state->link = false; 3194 return; 3195 } 3196 3197 phylink_mii_c22_pcs_decode_state(state, bmsr, lpa); 3198 } 3199 EXPORT_SYMBOL_GPL(phylink_mii_c22_pcs_get_state); 3200 3201 /** 3202 * phylink_mii_c22_pcs_encode_advertisement() - configure the clause 37 PCS 3203 * advertisement 3204 * @interface: the PHY interface mode being configured 3205 * @advertising: the ethtool advertisement mask 3206 * 3207 * Helper for MAC PCS supporting the 802.3 clause 22 register set for 3208 * clause 37 negotiation and/or SGMII control. 3209 * 3210 * Encode the clause 37 PCS advertisement as specified by @interface and 3211 * @advertising. 3212 * 3213 * Return: The new value for @adv, or ``-EINVAL`` if it should not be changed. 3214 */ 3215 int phylink_mii_c22_pcs_encode_advertisement(phy_interface_t interface, 3216 const unsigned long *advertising) 3217 { 3218 u16 adv; 3219 3220 switch (interface) { 3221 case PHY_INTERFACE_MODE_1000BASEX: 3222 case PHY_INTERFACE_MODE_2500BASEX: 3223 adv = ADVERTISE_1000XFULL; 3224 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, 3225 advertising)) 3226 adv |= ADVERTISE_1000XPAUSE; 3227 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, 3228 advertising)) 3229 adv |= ADVERTISE_1000XPSE_ASYM; 3230 return adv; 3231 case PHY_INTERFACE_MODE_SGMII: 3232 case PHY_INTERFACE_MODE_QSGMII: 3233 return 0x0001; 3234 default: 3235 /* Nothing to do for other modes */ 3236 return -EINVAL; 3237 } 3238 } 3239 EXPORT_SYMBOL_GPL(phylink_mii_c22_pcs_encode_advertisement); 3240 3241 /** 3242 * phylink_mii_c22_pcs_config() - configure clause 22 PCS 3243 * @pcs: a pointer to a &struct mdio_device. 3244 * @mode: link autonegotiation mode 3245 * @interface: the PHY interface mode being configured 3246 * @advertising: the ethtool advertisement mask 3247 * 3248 * Configure a Clause 22 PCS PHY with the appropriate negotiation 3249 * parameters for the @mode, @interface and @advertising parameters. 3250 * Returns negative error number on failure, zero if the advertisement 3251 * has not changed, or positive if there is a change. 3252 */ 3253 int phylink_mii_c22_pcs_config(struct mdio_device *pcs, unsigned int mode, 3254 phy_interface_t interface, 3255 const unsigned long *advertising) 3256 { 3257 bool changed = 0; 3258 u16 bmcr; 3259 int ret, adv; 3260 3261 adv = phylink_mii_c22_pcs_encode_advertisement(interface, advertising); 3262 if (adv >= 0) { 3263 ret = mdiobus_modify_changed(pcs->bus, pcs->addr, 3264 MII_ADVERTISE, 0xffff, adv); 3265 if (ret < 0) 3266 return ret; 3267 changed = ret; 3268 } 3269 3270 /* Ensure ISOLATE bit is disabled */ 3271 if (mode == MLO_AN_INBAND && 3272 (interface == PHY_INTERFACE_MODE_SGMII || 3273 interface == PHY_INTERFACE_MODE_QSGMII || 3274 linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, advertising))) 3275 bmcr = BMCR_ANENABLE; 3276 else 3277 bmcr = 0; 3278 3279 ret = mdiodev_modify(pcs, MII_BMCR, BMCR_ANENABLE | BMCR_ISOLATE, bmcr); 3280 if (ret < 0) 3281 return ret; 3282 3283 return changed; 3284 } 3285 EXPORT_SYMBOL_GPL(phylink_mii_c22_pcs_config); 3286 3287 /** 3288 * phylink_mii_c22_pcs_an_restart() - restart 802.3z autonegotiation 3289 * @pcs: a pointer to a &struct mdio_device. 3290 * 3291 * Helper for MAC PCS supporting the 802.3 clause 22 register set for 3292 * clause 37 negotiation. 3293 * 3294 * Restart the clause 37 negotiation with the link partner. This is 3295 * suitable to be directly plugged into the mac_pcs_get_state() member 3296 * of the struct phylink_mac_ops structure. 3297 */ 3298 void phylink_mii_c22_pcs_an_restart(struct mdio_device *pcs) 3299 { 3300 int val = mdiodev_read(pcs, MII_BMCR); 3301 3302 if (val >= 0) { 3303 val |= BMCR_ANRESTART; 3304 3305 mdiodev_write(pcs, MII_BMCR, val); 3306 } 3307 } 3308 EXPORT_SYMBOL_GPL(phylink_mii_c22_pcs_an_restart); 3309 3310 void phylink_mii_c45_pcs_get_state(struct mdio_device *pcs, 3311 struct phylink_link_state *state) 3312 { 3313 struct mii_bus *bus = pcs->bus; 3314 int addr = pcs->addr; 3315 int stat; 3316 3317 stat = mdiobus_c45_read(bus, addr, MDIO_MMD_PCS, MDIO_STAT1); 3318 if (stat < 0) { 3319 state->link = false; 3320 return; 3321 } 3322 3323 state->link = !!(stat & MDIO_STAT1_LSTATUS); 3324 if (!state->link) 3325 return; 3326 3327 switch (state->interface) { 3328 case PHY_INTERFACE_MODE_10GBASER: 3329 state->speed = SPEED_10000; 3330 state->duplex = DUPLEX_FULL; 3331 break; 3332 3333 default: 3334 break; 3335 } 3336 } 3337 EXPORT_SYMBOL_GPL(phylink_mii_c45_pcs_get_state); 3338 3339 MODULE_LICENSE("GPL v2"); 3340