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