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