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