Linux Audio

Check our new training course

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