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