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