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