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