xref: /linux/drivers/net/phy/phy-core.c (revision a6a6a98094116b60e5523a571d9443c53325f5b1)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Core PHY library, taken from phy.c
4  */
5 #include <linux/export.h>
6 #include <linux/phy.h>
7 #include <linux/of.h>
8 
9 /**
10  * phy_speed_to_str - Return a string representing the PHY link speed
11  *
12  * @speed: Speed of the link
13  */
14 const char *phy_speed_to_str(int speed)
15 {
16 	BUILD_BUG_ON_MSG(__ETHTOOL_LINK_MODE_MASK_NBITS != 102,
17 		"Enum ethtool_link_mode_bit_indices and phylib are out of sync. "
18 		"If a speed or mode has been added please update phy_speed_to_str "
19 		"and the PHY settings array.\n");
20 
21 	switch (speed) {
22 	case SPEED_10:
23 		return "10Mbps";
24 	case SPEED_100:
25 		return "100Mbps";
26 	case SPEED_1000:
27 		return "1Gbps";
28 	case SPEED_2500:
29 		return "2.5Gbps";
30 	case SPEED_5000:
31 		return "5Gbps";
32 	case SPEED_10000:
33 		return "10Gbps";
34 	case SPEED_14000:
35 		return "14Gbps";
36 	case SPEED_20000:
37 		return "20Gbps";
38 	case SPEED_25000:
39 		return "25Gbps";
40 	case SPEED_40000:
41 		return "40Gbps";
42 	case SPEED_50000:
43 		return "50Gbps";
44 	case SPEED_56000:
45 		return "56Gbps";
46 	case SPEED_100000:
47 		return "100Gbps";
48 	case SPEED_200000:
49 		return "200Gbps";
50 	case SPEED_400000:
51 		return "400Gbps";
52 	case SPEED_800000:
53 		return "800Gbps";
54 	case SPEED_UNKNOWN:
55 		return "Unknown";
56 	default:
57 		return "Unsupported (update phy-core.c)";
58 	}
59 }
60 EXPORT_SYMBOL_GPL(phy_speed_to_str);
61 
62 /**
63  * phy_duplex_to_str - Return string describing the duplex
64  *
65  * @duplex: Duplex setting to describe
66  */
67 const char *phy_duplex_to_str(unsigned int duplex)
68 {
69 	if (duplex == DUPLEX_HALF)
70 		return "Half";
71 	if (duplex == DUPLEX_FULL)
72 		return "Full";
73 	if (duplex == DUPLEX_UNKNOWN)
74 		return "Unknown";
75 	return "Unsupported (update phy-core.c)";
76 }
77 EXPORT_SYMBOL_GPL(phy_duplex_to_str);
78 
79 /**
80  * phy_rate_matching_to_str - Return a string describing the rate matching
81  *
82  * @rate_matching: Type of rate matching to describe
83  */
84 const char *phy_rate_matching_to_str(int rate_matching)
85 {
86 	switch (rate_matching) {
87 	case RATE_MATCH_NONE:
88 		return "none";
89 	case RATE_MATCH_PAUSE:
90 		return "pause";
91 	case RATE_MATCH_CRS:
92 		return "crs";
93 	case RATE_MATCH_OPEN_LOOP:
94 		return "open-loop";
95 	}
96 	return "Unsupported (update phy-core.c)";
97 }
98 EXPORT_SYMBOL_GPL(phy_rate_matching_to_str);
99 
100 /**
101  * phy_interface_num_ports - Return the number of links that can be carried by
102  *			     a given MAC-PHY physical link. Returns 0 if this is
103  *			     unknown, the number of links else.
104  *
105  * @interface: The interface mode we want to get the number of ports
106  */
107 int phy_interface_num_ports(phy_interface_t interface)
108 {
109 	switch (interface) {
110 	case PHY_INTERFACE_MODE_NA:
111 		return 0;
112 	case PHY_INTERFACE_MODE_INTERNAL:
113 	case PHY_INTERFACE_MODE_MII:
114 	case PHY_INTERFACE_MODE_GMII:
115 	case PHY_INTERFACE_MODE_TBI:
116 	case PHY_INTERFACE_MODE_REVMII:
117 	case PHY_INTERFACE_MODE_RMII:
118 	case PHY_INTERFACE_MODE_REVRMII:
119 	case PHY_INTERFACE_MODE_RGMII:
120 	case PHY_INTERFACE_MODE_RGMII_ID:
121 	case PHY_INTERFACE_MODE_RGMII_RXID:
122 	case PHY_INTERFACE_MODE_RGMII_TXID:
123 	case PHY_INTERFACE_MODE_RTBI:
124 	case PHY_INTERFACE_MODE_XGMII:
125 	case PHY_INTERFACE_MODE_XLGMII:
126 	case PHY_INTERFACE_MODE_MOCA:
127 	case PHY_INTERFACE_MODE_TRGMII:
128 	case PHY_INTERFACE_MODE_USXGMII:
129 	case PHY_INTERFACE_MODE_SGMII:
130 	case PHY_INTERFACE_MODE_SMII:
131 	case PHY_INTERFACE_MODE_1000BASEX:
132 	case PHY_INTERFACE_MODE_2500BASEX:
133 	case PHY_INTERFACE_MODE_5GBASER:
134 	case PHY_INTERFACE_MODE_10GBASER:
135 	case PHY_INTERFACE_MODE_25GBASER:
136 	case PHY_INTERFACE_MODE_10GKR:
137 	case PHY_INTERFACE_MODE_100BASEX:
138 	case PHY_INTERFACE_MODE_RXAUI:
139 	case PHY_INTERFACE_MODE_XAUI:
140 	case PHY_INTERFACE_MODE_1000BASEKX:
141 		return 1;
142 	case PHY_INTERFACE_MODE_QSGMII:
143 	case PHY_INTERFACE_MODE_QUSGMII:
144 	case PHY_INTERFACE_MODE_10G_QXGMII:
145 		return 4;
146 	case PHY_INTERFACE_MODE_PSGMII:
147 		return 5;
148 	case PHY_INTERFACE_MODE_MAX:
149 		WARN_ONCE(1, "PHY_INTERFACE_MODE_MAX isn't a valid interface mode");
150 		return 0;
151 	}
152 	return 0;
153 }
154 EXPORT_SYMBOL_GPL(phy_interface_num_ports);
155 
156 /* A mapping of all SUPPORTED settings to speed/duplex.  This table
157  * must be grouped by speed and sorted in descending match priority
158  * - iow, descending speed.
159  */
160 
161 #define PHY_SETTING(s, d, b) { .speed = SPEED_ ## s, .duplex = DUPLEX_ ## d, \
162 			       .bit = ETHTOOL_LINK_MODE_ ## b ## _BIT}
163 
164 static const struct phy_setting settings[] = {
165 	/* 800G */
166 	PHY_SETTING( 800000, FULL, 800000baseCR8_Full		),
167 	PHY_SETTING( 800000, FULL, 800000baseKR8_Full		),
168 	PHY_SETTING( 800000, FULL, 800000baseDR8_Full		),
169 	PHY_SETTING( 800000, FULL, 800000baseDR8_2_Full		),
170 	PHY_SETTING( 800000, FULL, 800000baseSR8_Full		),
171 	PHY_SETTING( 800000, FULL, 800000baseVR8_Full		),
172 	/* 400G */
173 	PHY_SETTING( 400000, FULL, 400000baseCR8_Full		),
174 	PHY_SETTING( 400000, FULL, 400000baseKR8_Full		),
175 	PHY_SETTING( 400000, FULL, 400000baseLR8_ER8_FR8_Full	),
176 	PHY_SETTING( 400000, FULL, 400000baseDR8_Full		),
177 	PHY_SETTING( 400000, FULL, 400000baseSR8_Full		),
178 	PHY_SETTING( 400000, FULL, 400000baseCR4_Full		),
179 	PHY_SETTING( 400000, FULL, 400000baseKR4_Full		),
180 	PHY_SETTING( 400000, FULL, 400000baseLR4_ER4_FR4_Full	),
181 	PHY_SETTING( 400000, FULL, 400000baseDR4_Full		),
182 	PHY_SETTING( 400000, FULL, 400000baseSR4_Full		),
183 	/* 200G */
184 	PHY_SETTING( 200000, FULL, 200000baseCR4_Full		),
185 	PHY_SETTING( 200000, FULL, 200000baseKR4_Full		),
186 	PHY_SETTING( 200000, FULL, 200000baseLR4_ER4_FR4_Full	),
187 	PHY_SETTING( 200000, FULL, 200000baseDR4_Full		),
188 	PHY_SETTING( 200000, FULL, 200000baseSR4_Full		),
189 	PHY_SETTING( 200000, FULL, 200000baseCR2_Full		),
190 	PHY_SETTING( 200000, FULL, 200000baseKR2_Full		),
191 	PHY_SETTING( 200000, FULL, 200000baseLR2_ER2_FR2_Full	),
192 	PHY_SETTING( 200000, FULL, 200000baseDR2_Full		),
193 	PHY_SETTING( 200000, FULL, 200000baseSR2_Full		),
194 	/* 100G */
195 	PHY_SETTING( 100000, FULL, 100000baseCR4_Full		),
196 	PHY_SETTING( 100000, FULL, 100000baseKR4_Full		),
197 	PHY_SETTING( 100000, FULL, 100000baseLR4_ER4_Full	),
198 	PHY_SETTING( 100000, FULL, 100000baseSR4_Full		),
199 	PHY_SETTING( 100000, FULL, 100000baseCR2_Full		),
200 	PHY_SETTING( 100000, FULL, 100000baseKR2_Full		),
201 	PHY_SETTING( 100000, FULL, 100000baseLR2_ER2_FR2_Full	),
202 	PHY_SETTING( 100000, FULL, 100000baseDR2_Full		),
203 	PHY_SETTING( 100000, FULL, 100000baseSR2_Full		),
204 	PHY_SETTING( 100000, FULL, 100000baseCR_Full		),
205 	PHY_SETTING( 100000, FULL, 100000baseKR_Full		),
206 	PHY_SETTING( 100000, FULL, 100000baseLR_ER_FR_Full	),
207 	PHY_SETTING( 100000, FULL, 100000baseDR_Full		),
208 	PHY_SETTING( 100000, FULL, 100000baseSR_Full		),
209 	/* 56G */
210 	PHY_SETTING(  56000, FULL,  56000baseCR4_Full	  	),
211 	PHY_SETTING(  56000, FULL,  56000baseKR4_Full	  	),
212 	PHY_SETTING(  56000, FULL,  56000baseLR4_Full	  	),
213 	PHY_SETTING(  56000, FULL,  56000baseSR4_Full	  	),
214 	/* 50G */
215 	PHY_SETTING(  50000, FULL,  50000baseCR2_Full		),
216 	PHY_SETTING(  50000, FULL,  50000baseKR2_Full		),
217 	PHY_SETTING(  50000, FULL,  50000baseSR2_Full		),
218 	PHY_SETTING(  50000, FULL,  50000baseCR_Full		),
219 	PHY_SETTING(  50000, FULL,  50000baseKR_Full		),
220 	PHY_SETTING(  50000, FULL,  50000baseLR_ER_FR_Full	),
221 	PHY_SETTING(  50000, FULL,  50000baseDR_Full		),
222 	PHY_SETTING(  50000, FULL,  50000baseSR_Full		),
223 	/* 40G */
224 	PHY_SETTING(  40000, FULL,  40000baseCR4_Full		),
225 	PHY_SETTING(  40000, FULL,  40000baseKR4_Full		),
226 	PHY_SETTING(  40000, FULL,  40000baseLR4_Full		),
227 	PHY_SETTING(  40000, FULL,  40000baseSR4_Full		),
228 	/* 25G */
229 	PHY_SETTING(  25000, FULL,  25000baseCR_Full		),
230 	PHY_SETTING(  25000, FULL,  25000baseKR_Full		),
231 	PHY_SETTING(  25000, FULL,  25000baseSR_Full		),
232 	/* 20G */
233 	PHY_SETTING(  20000, FULL,  20000baseKR2_Full		),
234 	PHY_SETTING(  20000, FULL,  20000baseMLD2_Full		),
235 	/* 10G */
236 	PHY_SETTING(  10000, FULL,  10000baseCR_Full		),
237 	PHY_SETTING(  10000, FULL,  10000baseER_Full		),
238 	PHY_SETTING(  10000, FULL,  10000baseKR_Full		),
239 	PHY_SETTING(  10000, FULL,  10000baseKX4_Full		),
240 	PHY_SETTING(  10000, FULL,  10000baseLR_Full		),
241 	PHY_SETTING(  10000, FULL,  10000baseLRM_Full		),
242 	PHY_SETTING(  10000, FULL,  10000baseR_FEC		),
243 	PHY_SETTING(  10000, FULL,  10000baseSR_Full		),
244 	PHY_SETTING(  10000, FULL,  10000baseT_Full		),
245 	/* 5G */
246 	PHY_SETTING(   5000, FULL,   5000baseT_Full		),
247 	/* 2.5G */
248 	PHY_SETTING(   2500, FULL,   2500baseT_Full		),
249 	PHY_SETTING(   2500, FULL,   2500baseX_Full		),
250 	/* 1G */
251 	PHY_SETTING(   1000, FULL,   1000baseT_Full		),
252 	PHY_SETTING(   1000, HALF,   1000baseT_Half		),
253 	PHY_SETTING(   1000, FULL,   1000baseT1_Full		),
254 	PHY_SETTING(   1000, FULL,   1000baseX_Full		),
255 	PHY_SETTING(   1000, FULL,   1000baseKX_Full		),
256 	/* 100M */
257 	PHY_SETTING(    100, FULL,    100baseT_Full		),
258 	PHY_SETTING(    100, FULL,    100baseT1_Full		),
259 	PHY_SETTING(    100, HALF,    100baseT_Half		),
260 	PHY_SETTING(    100, HALF,    100baseFX_Half		),
261 	PHY_SETTING(    100, FULL,    100baseFX_Full		),
262 	/* 10M */
263 	PHY_SETTING(     10, FULL,     10baseT_Full		),
264 	PHY_SETTING(     10, HALF,     10baseT_Half		),
265 	PHY_SETTING(     10, FULL,     10baseT1L_Full		),
266 	PHY_SETTING(     10, FULL,     10baseT1S_Full		),
267 	PHY_SETTING(     10, HALF,     10baseT1S_Half		),
268 	PHY_SETTING(     10, HALF,     10baseT1S_P2MP_Half	),
269 };
270 #undef PHY_SETTING
271 
272 /**
273  * phy_lookup_setting - lookup a PHY setting
274  * @speed: speed to match
275  * @duplex: duplex to match
276  * @mask: allowed link modes
277  * @exact: an exact match is required
278  *
279  * Search the settings array for a setting that matches the speed and
280  * duplex, and which is supported.
281  *
282  * If @exact is unset, either an exact match or %NULL for no match will
283  * be returned.
284  *
285  * If @exact is set, an exact match, the fastest supported setting at
286  * or below the specified speed, the slowest supported setting, or if
287  * they all fail, %NULL will be returned.
288  */
289 const struct phy_setting *
290 phy_lookup_setting(int speed, int duplex, const unsigned long *mask, bool exact)
291 {
292 	const struct phy_setting *p, *match = NULL, *last = NULL;
293 	int i;
294 
295 	for (i = 0, p = settings; i < ARRAY_SIZE(settings); i++, p++) {
296 		if (p->bit < __ETHTOOL_LINK_MODE_MASK_NBITS &&
297 		    test_bit(p->bit, mask)) {
298 			last = p;
299 			if (p->speed == speed && p->duplex == duplex) {
300 				/* Exact match for speed and duplex */
301 				match = p;
302 				break;
303 			} else if (!exact) {
304 				if (!match && p->speed <= speed)
305 					/* Candidate */
306 					match = p;
307 
308 				if (p->speed < speed)
309 					break;
310 			}
311 		}
312 	}
313 
314 	if (!match && !exact)
315 		match = last;
316 
317 	return match;
318 }
319 EXPORT_SYMBOL_GPL(phy_lookup_setting);
320 
321 size_t phy_speeds(unsigned int *speeds, size_t size,
322 		  unsigned long *mask)
323 {
324 	size_t count;
325 	int i;
326 
327 	for (i = 0, count = 0; i < ARRAY_SIZE(settings) && count < size; i++)
328 		if (settings[i].bit < __ETHTOOL_LINK_MODE_MASK_NBITS &&
329 		    test_bit(settings[i].bit, mask) &&
330 		    (count == 0 || speeds[count - 1] != settings[i].speed))
331 			speeds[count++] = settings[i].speed;
332 
333 	return count;
334 }
335 
336 static void __set_linkmode_max_speed(u32 max_speed, unsigned long *addr)
337 {
338 	const struct phy_setting *p;
339 	int i;
340 
341 	for (i = 0, p = settings; i < ARRAY_SIZE(settings); i++, p++) {
342 		if (p->speed > max_speed)
343 			linkmode_clear_bit(p->bit, addr);
344 		else
345 			break;
346 	}
347 }
348 
349 static void __set_phy_supported(struct phy_device *phydev, u32 max_speed)
350 {
351 	__set_linkmode_max_speed(max_speed, phydev->supported);
352 }
353 
354 /**
355  * phy_set_max_speed - Set the maximum speed the PHY should support
356  *
357  * @phydev: The phy_device struct
358  * @max_speed: Maximum speed
359  *
360  * The PHY might be more capable than the MAC. For example a Fast Ethernet
361  * is connected to a 1G PHY. This function allows the MAC to indicate its
362  * maximum speed, and so limit what the PHY will advertise.
363  */
364 void phy_set_max_speed(struct phy_device *phydev, u32 max_speed)
365 {
366 	__set_phy_supported(phydev, max_speed);
367 
368 	phy_advertise_supported(phydev);
369 }
370 EXPORT_SYMBOL(phy_set_max_speed);
371 
372 void of_set_phy_supported(struct phy_device *phydev)
373 {
374 	struct device_node *node = phydev->mdio.dev.of_node;
375 	u32 max_speed;
376 
377 	if (!IS_ENABLED(CONFIG_OF_MDIO))
378 		return;
379 
380 	if (!node)
381 		return;
382 
383 	if (!of_property_read_u32(node, "max-speed", &max_speed))
384 		__set_phy_supported(phydev, max_speed);
385 }
386 
387 void of_set_phy_eee_broken(struct phy_device *phydev)
388 {
389 	struct device_node *node = phydev->mdio.dev.of_node;
390 	u32 broken = 0;
391 
392 	if (!IS_ENABLED(CONFIG_OF_MDIO))
393 		return;
394 
395 	if (!node)
396 		return;
397 
398 	if (of_property_read_bool(node, "eee-broken-100tx"))
399 		broken |= MDIO_EEE_100TX;
400 	if (of_property_read_bool(node, "eee-broken-1000t"))
401 		broken |= MDIO_EEE_1000T;
402 	if (of_property_read_bool(node, "eee-broken-10gt"))
403 		broken |= MDIO_EEE_10GT;
404 	if (of_property_read_bool(node, "eee-broken-1000kx"))
405 		broken |= MDIO_EEE_1000KX;
406 	if (of_property_read_bool(node, "eee-broken-10gkx4"))
407 		broken |= MDIO_EEE_10GKX4;
408 	if (of_property_read_bool(node, "eee-broken-10gkr"))
409 		broken |= MDIO_EEE_10GKR;
410 
411 	phydev->eee_broken_modes = broken;
412 }
413 
414 /**
415  * phy_resolve_aneg_pause - Determine pause autoneg results
416  *
417  * @phydev: The phy_device struct
418  *
419  * Once autoneg has completed the local pause settings can be
420  * resolved.  Determine if pause and asymmetric pause should be used
421  * by the MAC.
422  */
423 
424 void phy_resolve_aneg_pause(struct phy_device *phydev)
425 {
426 	if (phydev->duplex == DUPLEX_FULL) {
427 		phydev->pause = linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
428 						  phydev->lp_advertising);
429 		phydev->asym_pause = linkmode_test_bit(
430 			ETHTOOL_LINK_MODE_Asym_Pause_BIT,
431 			phydev->lp_advertising);
432 	}
433 }
434 EXPORT_SYMBOL_GPL(phy_resolve_aneg_pause);
435 
436 /**
437  * phy_resolve_aneg_linkmode - resolve the advertisements into PHY settings
438  * @phydev: The phy_device struct
439  *
440  * Resolve our and the link partner advertisements into their corresponding
441  * speed and duplex. If full duplex was negotiated, extract the pause mode
442  * from the link partner mask.
443  */
444 void phy_resolve_aneg_linkmode(struct phy_device *phydev)
445 {
446 	__ETHTOOL_DECLARE_LINK_MODE_MASK(common);
447 	int i;
448 
449 	linkmode_and(common, phydev->lp_advertising, phydev->advertising);
450 
451 	for (i = 0; i < ARRAY_SIZE(settings); i++)
452 		if (test_bit(settings[i].bit, common)) {
453 			phydev->speed = settings[i].speed;
454 			phydev->duplex = settings[i].duplex;
455 			break;
456 		}
457 
458 	phy_resolve_aneg_pause(phydev);
459 }
460 EXPORT_SYMBOL_GPL(phy_resolve_aneg_linkmode);
461 
462 /**
463  * phy_check_downshift - check whether downshift occurred
464  * @phydev: The phy_device struct
465  *
466  * Check whether a downshift to a lower speed occurred. If this should be the
467  * case warn the user.
468  * Prerequisite for detecting downshift is that PHY driver implements the
469  * read_status callback and sets phydev->speed to the actual link speed.
470  */
471 void phy_check_downshift(struct phy_device *phydev)
472 {
473 	__ETHTOOL_DECLARE_LINK_MODE_MASK(common);
474 	int i, speed = SPEED_UNKNOWN;
475 
476 	phydev->downshifted_rate = 0;
477 
478 	if (phydev->autoneg == AUTONEG_DISABLE ||
479 	    phydev->speed == SPEED_UNKNOWN)
480 		return;
481 
482 	linkmode_and(common, phydev->lp_advertising, phydev->advertising);
483 
484 	for (i = 0; i < ARRAY_SIZE(settings); i++)
485 		if (test_bit(settings[i].bit, common)) {
486 			speed = settings[i].speed;
487 			break;
488 		}
489 
490 	if (speed == SPEED_UNKNOWN || phydev->speed >= speed)
491 		return;
492 
493 	phydev_warn(phydev, "Downshift occurred from negotiated speed %s to actual speed %s, check cabling!\n",
494 		    phy_speed_to_str(speed), phy_speed_to_str(phydev->speed));
495 
496 	phydev->downshifted_rate = 1;
497 }
498 EXPORT_SYMBOL_GPL(phy_check_downshift);
499 
500 static int phy_resolve_min_speed(struct phy_device *phydev, bool fdx_only)
501 {
502 	__ETHTOOL_DECLARE_LINK_MODE_MASK(common);
503 	int i = ARRAY_SIZE(settings);
504 
505 	linkmode_and(common, phydev->lp_advertising, phydev->advertising);
506 
507 	while (--i >= 0) {
508 		if (test_bit(settings[i].bit, common)) {
509 			if (fdx_only && settings[i].duplex != DUPLEX_FULL)
510 				continue;
511 			return settings[i].speed;
512 		}
513 	}
514 
515 	return SPEED_UNKNOWN;
516 }
517 
518 int phy_speed_down_core(struct phy_device *phydev)
519 {
520 	int min_common_speed = phy_resolve_min_speed(phydev, true);
521 
522 	if (min_common_speed == SPEED_UNKNOWN)
523 		return -EINVAL;
524 
525 	__set_linkmode_max_speed(min_common_speed, phydev->advertising);
526 
527 	return 0;
528 }
529 
530 static void mmd_phy_indirect(struct mii_bus *bus, int phy_addr, int devad,
531 			     u16 regnum)
532 {
533 	/* Write the desired MMD Devad */
534 	__mdiobus_write(bus, phy_addr, MII_MMD_CTRL, devad);
535 
536 	/* Write the desired MMD register address */
537 	__mdiobus_write(bus, phy_addr, MII_MMD_DATA, regnum);
538 
539 	/* Select the Function : DATA with no post increment */
540 	__mdiobus_write(bus, phy_addr, MII_MMD_CTRL,
541 			devad | MII_MMD_CTRL_NOINCR);
542 }
543 
544 static int mmd_phy_read(struct mii_bus *bus, int phy_addr, bool is_c45,
545 			int devad, u32 regnum)
546 {
547 	if (is_c45)
548 		return __mdiobus_c45_read(bus, phy_addr, devad, regnum);
549 
550 	mmd_phy_indirect(bus, phy_addr, devad, regnum);
551 	/* Read the content of the MMD's selected register */
552 	return __mdiobus_read(bus, phy_addr, MII_MMD_DATA);
553 }
554 
555 static int mmd_phy_write(struct mii_bus *bus, int phy_addr, bool is_c45,
556 			 int devad, u32 regnum, u16 val)
557 {
558 	if (is_c45)
559 		return __mdiobus_c45_write(bus, phy_addr, devad, regnum, val);
560 
561 	mmd_phy_indirect(bus, phy_addr, devad, regnum);
562 	/* Write the data into MMD's selected register */
563 	return __mdiobus_write(bus, phy_addr, MII_MMD_DATA, val);
564 }
565 
566 /**
567  * __phy_read_mmd - Convenience function for reading a register
568  * from an MMD on a given PHY.
569  * @phydev: The phy_device struct
570  * @devad: The MMD to read from (0..31)
571  * @regnum: The register on the MMD to read (0..65535)
572  *
573  * Same rules as for __phy_read();
574  */
575 int __phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum)
576 {
577 	if (regnum > (u16)~0 || devad > 32)
578 		return -EINVAL;
579 
580 	if (phydev->drv && phydev->drv->read_mmd)
581 		return phydev->drv->read_mmd(phydev, devad, regnum);
582 
583 	return mmd_phy_read(phydev->mdio.bus, phydev->mdio.addr,
584 			    phydev->is_c45, devad, regnum);
585 }
586 EXPORT_SYMBOL(__phy_read_mmd);
587 
588 /**
589  * phy_read_mmd - Convenience function for reading a register
590  * from an MMD on a given PHY.
591  * @phydev: The phy_device struct
592  * @devad: The MMD to read from
593  * @regnum: The register on the MMD to read
594  *
595  * Same rules as for phy_read();
596  */
597 int phy_read_mmd(struct phy_device *phydev, int devad, u32 regnum)
598 {
599 	int ret;
600 
601 	phy_lock_mdio_bus(phydev);
602 	ret = __phy_read_mmd(phydev, devad, regnum);
603 	phy_unlock_mdio_bus(phydev);
604 
605 	return ret;
606 }
607 EXPORT_SYMBOL(phy_read_mmd);
608 
609 /**
610  * __phy_write_mmd - Convenience function for writing a register
611  * on an MMD on a given PHY.
612  * @phydev: The phy_device struct
613  * @devad: The MMD to read from
614  * @regnum: The register on the MMD to read
615  * @val: value to write to @regnum
616  *
617  * Same rules as for __phy_write();
618  */
619 int __phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val)
620 {
621 	if (regnum > (u16)~0 || devad > 32)
622 		return -EINVAL;
623 
624 	if (phydev->drv && phydev->drv->write_mmd)
625 		return phydev->drv->write_mmd(phydev, devad, regnum, val);
626 
627 	return mmd_phy_write(phydev->mdio.bus, phydev->mdio.addr,
628 			     phydev->is_c45, devad, regnum, val);
629 }
630 EXPORT_SYMBOL(__phy_write_mmd);
631 
632 /**
633  * phy_write_mmd - Convenience function for writing a register
634  * on an MMD on a given PHY.
635  * @phydev: The phy_device struct
636  * @devad: The MMD to read from
637  * @regnum: The register on the MMD to read
638  * @val: value to write to @regnum
639  *
640  * Same rules as for phy_write();
641  */
642 int phy_write_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val)
643 {
644 	int ret;
645 
646 	phy_lock_mdio_bus(phydev);
647 	ret = __phy_write_mmd(phydev, devad, regnum, val);
648 	phy_unlock_mdio_bus(phydev);
649 
650 	return ret;
651 }
652 EXPORT_SYMBOL(phy_write_mmd);
653 
654 /**
655  * __phy_package_read_mmd - read MMD reg relative to PHY package base addr
656  * @phydev: The phy_device struct
657  * @addr_offset: The offset to be added to PHY package base_addr
658  * @devad: The MMD to read from
659  * @regnum: The register on the MMD to read
660  *
661  * Convenience helper for reading a register of an MMD on a given PHY
662  * using the PHY package base address. The base address is added to
663  * the addr_offset value.
664  *
665  * Same calling rules as for __phy_read();
666  *
667  * NOTE: It's assumed that the entire PHY package is either C22 or C45.
668  */
669 int __phy_package_read_mmd(struct phy_device *phydev,
670 			   unsigned int addr_offset, int devad,
671 			   u32 regnum)
672 {
673 	int addr = phy_package_address(phydev, addr_offset);
674 
675 	if (addr < 0)
676 		return addr;
677 
678 	if (regnum > (u16)~0 || devad > 32)
679 		return -EINVAL;
680 
681 	return mmd_phy_read(phydev->mdio.bus, addr, phydev->is_c45, devad,
682 			    regnum);
683 }
684 EXPORT_SYMBOL(__phy_package_read_mmd);
685 
686 /**
687  * phy_package_read_mmd - read MMD reg relative to PHY package base addr
688  * @phydev: The phy_device struct
689  * @addr_offset: The offset to be added to PHY package base_addr
690  * @devad: The MMD to read from
691  * @regnum: The register on the MMD to read
692  *
693  * Convenience helper for reading a register of an MMD on a given PHY
694  * using the PHY package base address. The base address is added to
695  * the addr_offset value.
696  *
697  * Same calling rules as for phy_read();
698  *
699  * NOTE: It's assumed that the entire PHY package is either C22 or C45.
700  */
701 int phy_package_read_mmd(struct phy_device *phydev,
702 			 unsigned int addr_offset, int devad,
703 			 u32 regnum)
704 {
705 	int addr = phy_package_address(phydev, addr_offset);
706 	int val;
707 
708 	if (addr < 0)
709 		return addr;
710 
711 	if (regnum > (u16)~0 || devad > 32)
712 		return -EINVAL;
713 
714 	phy_lock_mdio_bus(phydev);
715 	val = mmd_phy_read(phydev->mdio.bus, addr, phydev->is_c45, devad,
716 			   regnum);
717 	phy_unlock_mdio_bus(phydev);
718 
719 	return val;
720 }
721 EXPORT_SYMBOL(phy_package_read_mmd);
722 
723 /**
724  * __phy_package_write_mmd - write MMD reg relative to PHY package base addr
725  * @phydev: The phy_device struct
726  * @addr_offset: The offset to be added to PHY package base_addr
727  * @devad: The MMD to write to
728  * @regnum: The register on the MMD to write
729  * @val: value to write to @regnum
730  *
731  * Convenience helper for writing a register of an MMD on a given PHY
732  * using the PHY package base address. The base address is added to
733  * the addr_offset value.
734  *
735  * Same calling rules as for __phy_write();
736  *
737  * NOTE: It's assumed that the entire PHY package is either C22 or C45.
738  */
739 int __phy_package_write_mmd(struct phy_device *phydev,
740 			    unsigned int addr_offset, int devad,
741 			    u32 regnum, u16 val)
742 {
743 	int addr = phy_package_address(phydev, addr_offset);
744 
745 	if (addr < 0)
746 		return addr;
747 
748 	if (regnum > (u16)~0 || devad > 32)
749 		return -EINVAL;
750 
751 	return mmd_phy_write(phydev->mdio.bus, addr, phydev->is_c45, devad,
752 			     regnum, val);
753 }
754 EXPORT_SYMBOL(__phy_package_write_mmd);
755 
756 /**
757  * phy_package_write_mmd - write MMD reg relative to PHY package base addr
758  * @phydev: The phy_device struct
759  * @addr_offset: The offset to be added to PHY package base_addr
760  * @devad: The MMD to write to
761  * @regnum: The register on the MMD to write
762  * @val: value to write to @regnum
763  *
764  * Convenience helper for writing a register of an MMD on a given PHY
765  * using the PHY package base address. The base address is added to
766  * the addr_offset value.
767  *
768  * Same calling rules as for phy_write();
769  *
770  * NOTE: It's assumed that the entire PHY package is either C22 or C45.
771  */
772 int phy_package_write_mmd(struct phy_device *phydev,
773 			  unsigned int addr_offset, int devad,
774 			  u32 regnum, u16 val)
775 {
776 	int addr = phy_package_address(phydev, addr_offset);
777 	int ret;
778 
779 	if (addr < 0)
780 		return addr;
781 
782 	if (regnum > (u16)~0 || devad > 32)
783 		return -EINVAL;
784 
785 	phy_lock_mdio_bus(phydev);
786 	ret = mmd_phy_write(phydev->mdio.bus, addr, phydev->is_c45, devad,
787 			    regnum, val);
788 	phy_unlock_mdio_bus(phydev);
789 
790 	return ret;
791 }
792 EXPORT_SYMBOL(phy_package_write_mmd);
793 
794 /**
795  * phy_modify_changed - Function for modifying a PHY register
796  * @phydev: the phy_device struct
797  * @regnum: register number to modify
798  * @mask: bit mask of bits to clear
799  * @set: new value of bits set in mask to write to @regnum
800  *
801  * NOTE: MUST NOT be called from interrupt context,
802  * because the bus read/write functions may wait for an interrupt
803  * to conclude the operation.
804  *
805  * Returns negative errno, 0 if there was no change, and 1 in case of change
806  */
807 int phy_modify_changed(struct phy_device *phydev, u32 regnum, u16 mask, u16 set)
808 {
809 	int ret;
810 
811 	phy_lock_mdio_bus(phydev);
812 	ret = __phy_modify_changed(phydev, regnum, mask, set);
813 	phy_unlock_mdio_bus(phydev);
814 
815 	return ret;
816 }
817 EXPORT_SYMBOL_GPL(phy_modify_changed);
818 
819 /**
820  * __phy_modify - Convenience function for modifying a PHY register
821  * @phydev: the phy_device struct
822  * @regnum: register number to modify
823  * @mask: bit mask of bits to clear
824  * @set: new value of bits set in mask to write to @regnum
825  *
826  * NOTE: MUST NOT be called from interrupt context,
827  * because the bus read/write functions may wait for an interrupt
828  * to conclude the operation.
829  */
830 int __phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set)
831 {
832 	int ret;
833 
834 	ret = __phy_modify_changed(phydev, regnum, mask, set);
835 
836 	return ret < 0 ? ret : 0;
837 }
838 EXPORT_SYMBOL_GPL(__phy_modify);
839 
840 /**
841  * phy_modify - Convenience function for modifying a given PHY register
842  * @phydev: the phy_device struct
843  * @regnum: register number to write
844  * @mask: bit mask of bits to clear
845  * @set: new value of bits set in mask to write to @regnum
846  *
847  * NOTE: MUST NOT be called from interrupt context,
848  * because the bus read/write functions may wait for an interrupt
849  * to conclude the operation.
850  */
851 int phy_modify(struct phy_device *phydev, u32 regnum, u16 mask, u16 set)
852 {
853 	int ret;
854 
855 	phy_lock_mdio_bus(phydev);
856 	ret = __phy_modify(phydev, regnum, mask, set);
857 	phy_unlock_mdio_bus(phydev);
858 
859 	return ret;
860 }
861 EXPORT_SYMBOL_GPL(phy_modify);
862 
863 /**
864  * __phy_modify_mmd_changed - Function for modifying a register on MMD
865  * @phydev: the phy_device struct
866  * @devad: the MMD containing register to modify
867  * @regnum: register number to modify
868  * @mask: bit mask of bits to clear
869  * @set: new value of bits set in mask to write to @regnum
870  *
871  * Unlocked helper function which allows a MMD register to be modified as
872  * new register value = (old register value & ~mask) | set
873  *
874  * Returns negative errno, 0 if there was no change, and 1 in case of change
875  */
876 int __phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
877 			     u16 mask, u16 set)
878 {
879 	int new, ret;
880 
881 	ret = __phy_read_mmd(phydev, devad, regnum);
882 	if (ret < 0)
883 		return ret;
884 
885 	new = (ret & ~mask) | set;
886 	if (new == ret)
887 		return 0;
888 
889 	ret = __phy_write_mmd(phydev, devad, regnum, new);
890 
891 	return ret < 0 ? ret : 1;
892 }
893 EXPORT_SYMBOL_GPL(__phy_modify_mmd_changed);
894 
895 /**
896  * phy_modify_mmd_changed - Function for modifying a register on MMD
897  * @phydev: the phy_device struct
898  * @devad: the MMD containing register to modify
899  * @regnum: register number to modify
900  * @mask: bit mask of bits to clear
901  * @set: new value of bits set in mask to write to @regnum
902  *
903  * NOTE: MUST NOT be called from interrupt context,
904  * because the bus read/write functions may wait for an interrupt
905  * to conclude the operation.
906  *
907  * Returns negative errno, 0 if there was no change, and 1 in case of change
908  */
909 int phy_modify_mmd_changed(struct phy_device *phydev, int devad, u32 regnum,
910 			   u16 mask, u16 set)
911 {
912 	int ret;
913 
914 	phy_lock_mdio_bus(phydev);
915 	ret = __phy_modify_mmd_changed(phydev, devad, regnum, mask, set);
916 	phy_unlock_mdio_bus(phydev);
917 
918 	return ret;
919 }
920 EXPORT_SYMBOL_GPL(phy_modify_mmd_changed);
921 
922 /**
923  * __phy_modify_mmd - Convenience function for modifying a register on MMD
924  * @phydev: the phy_device struct
925  * @devad: the MMD containing register to modify
926  * @regnum: register number to modify
927  * @mask: bit mask of bits to clear
928  * @set: new value of bits set in mask to write to @regnum
929  *
930  * NOTE: MUST NOT be called from interrupt context,
931  * because the bus read/write functions may wait for an interrupt
932  * to conclude the operation.
933  */
934 int __phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
935 		     u16 mask, u16 set)
936 {
937 	int ret;
938 
939 	ret = __phy_modify_mmd_changed(phydev, devad, regnum, mask, set);
940 
941 	return ret < 0 ? ret : 0;
942 }
943 EXPORT_SYMBOL_GPL(__phy_modify_mmd);
944 
945 /**
946  * phy_modify_mmd - Convenience function for modifying a register on MMD
947  * @phydev: the phy_device struct
948  * @devad: the MMD containing register to modify
949  * @regnum: register number to modify
950  * @mask: bit mask of bits to clear
951  * @set: new value of bits set in mask to write to @regnum
952  *
953  * NOTE: MUST NOT be called from interrupt context,
954  * because the bus read/write functions may wait for an interrupt
955  * to conclude the operation.
956  */
957 int phy_modify_mmd(struct phy_device *phydev, int devad, u32 regnum,
958 		   u16 mask, u16 set)
959 {
960 	int ret;
961 
962 	phy_lock_mdio_bus(phydev);
963 	ret = __phy_modify_mmd(phydev, devad, regnum, mask, set);
964 	phy_unlock_mdio_bus(phydev);
965 
966 	return ret;
967 }
968 EXPORT_SYMBOL_GPL(phy_modify_mmd);
969 
970 static int __phy_read_page(struct phy_device *phydev)
971 {
972 	if (WARN_ONCE(!phydev->drv->read_page, "read_page callback not available, PHY driver not loaded?\n"))
973 		return -EOPNOTSUPP;
974 
975 	return phydev->drv->read_page(phydev);
976 }
977 
978 static int __phy_write_page(struct phy_device *phydev, int page)
979 {
980 	if (WARN_ONCE(!phydev->drv->write_page, "write_page callback not available, PHY driver not loaded?\n"))
981 		return -EOPNOTSUPP;
982 
983 	return phydev->drv->write_page(phydev, page);
984 }
985 
986 /**
987  * phy_save_page() - take the bus lock and save the current page
988  * @phydev: a pointer to a &struct phy_device
989  *
990  * Take the MDIO bus lock, and return the current page number. On error,
991  * returns a negative errno. phy_restore_page() must always be called
992  * after this, irrespective of success or failure of this call.
993  */
994 int phy_save_page(struct phy_device *phydev)
995 {
996 	phy_lock_mdio_bus(phydev);
997 	return __phy_read_page(phydev);
998 }
999 EXPORT_SYMBOL_GPL(phy_save_page);
1000 
1001 /**
1002  * phy_select_page() - take the bus lock, save the current page, and set a page
1003  * @phydev: a pointer to a &struct phy_device
1004  * @page: desired page
1005  *
1006  * Take the MDIO bus lock to protect against concurrent access, save the
1007  * current PHY page, and set the current page.  On error, returns a
1008  * negative errno, otherwise returns the previous page number.
1009  * phy_restore_page() must always be called after this, irrespective
1010  * of success or failure of this call.
1011  */
1012 int phy_select_page(struct phy_device *phydev, int page)
1013 {
1014 	int ret, oldpage;
1015 
1016 	oldpage = ret = phy_save_page(phydev);
1017 	if (ret < 0)
1018 		return ret;
1019 
1020 	if (oldpage != page) {
1021 		ret = __phy_write_page(phydev, page);
1022 		if (ret < 0)
1023 			return ret;
1024 	}
1025 
1026 	return oldpage;
1027 }
1028 EXPORT_SYMBOL_GPL(phy_select_page);
1029 
1030 /**
1031  * phy_restore_page() - restore the page register and release the bus lock
1032  * @phydev: a pointer to a &struct phy_device
1033  * @oldpage: the old page, return value from phy_save_page() or phy_select_page()
1034  * @ret: operation's return code
1035  *
1036  * Release the MDIO bus lock, restoring @oldpage if it is a valid page.
1037  * This function propagates the earliest error code from the group of
1038  * operations.
1039  *
1040  * Returns:
1041  *   @oldpage if it was a negative value, otherwise
1042  *   @ret if it was a negative errno value, otherwise
1043  *   phy_write_page()'s negative value if it were in error, otherwise
1044  *   @ret.
1045  */
1046 int phy_restore_page(struct phy_device *phydev, int oldpage, int ret)
1047 {
1048 	int r;
1049 
1050 	if (oldpage >= 0) {
1051 		r = __phy_write_page(phydev, oldpage);
1052 
1053 		/* Propagate the operation return code if the page write
1054 		 * was successful.
1055 		 */
1056 		if (ret >= 0 && r < 0)
1057 			ret = r;
1058 	} else {
1059 		/* Propagate the phy page selection error code */
1060 		ret = oldpage;
1061 	}
1062 
1063 	phy_unlock_mdio_bus(phydev);
1064 
1065 	return ret;
1066 }
1067 EXPORT_SYMBOL_GPL(phy_restore_page);
1068 
1069 /**
1070  * phy_read_paged() - Convenience function for reading a paged register
1071  * @phydev: a pointer to a &struct phy_device
1072  * @page: the page for the phy
1073  * @regnum: register number
1074  *
1075  * Same rules as for phy_read().
1076  */
1077 int phy_read_paged(struct phy_device *phydev, int page, u32 regnum)
1078 {
1079 	int ret = 0, oldpage;
1080 
1081 	oldpage = phy_select_page(phydev, page);
1082 	if (oldpage >= 0)
1083 		ret = __phy_read(phydev, regnum);
1084 
1085 	return phy_restore_page(phydev, oldpage, ret);
1086 }
1087 EXPORT_SYMBOL(phy_read_paged);
1088 
1089 /**
1090  * phy_write_paged() - Convenience function for writing a paged register
1091  * @phydev: a pointer to a &struct phy_device
1092  * @page: the page for the phy
1093  * @regnum: register number
1094  * @val: value to write
1095  *
1096  * Same rules as for phy_write().
1097  */
1098 int phy_write_paged(struct phy_device *phydev, int page, u32 regnum, u16 val)
1099 {
1100 	int ret = 0, oldpage;
1101 
1102 	oldpage = phy_select_page(phydev, page);
1103 	if (oldpage >= 0)
1104 		ret = __phy_write(phydev, regnum, val);
1105 
1106 	return phy_restore_page(phydev, oldpage, ret);
1107 }
1108 EXPORT_SYMBOL(phy_write_paged);
1109 
1110 /**
1111  * phy_modify_paged_changed() - Function for modifying a paged register
1112  * @phydev: a pointer to a &struct phy_device
1113  * @page: the page for the phy
1114  * @regnum: register number
1115  * @mask: bit mask of bits to clear
1116  * @set: bit mask of bits to set
1117  *
1118  * Returns negative errno, 0 if there was no change, and 1 in case of change
1119  */
1120 int phy_modify_paged_changed(struct phy_device *phydev, int page, u32 regnum,
1121 			     u16 mask, u16 set)
1122 {
1123 	int ret = 0, oldpage;
1124 
1125 	oldpage = phy_select_page(phydev, page);
1126 	if (oldpage >= 0)
1127 		ret = __phy_modify_changed(phydev, regnum, mask, set);
1128 
1129 	return phy_restore_page(phydev, oldpage, ret);
1130 }
1131 EXPORT_SYMBOL(phy_modify_paged_changed);
1132 
1133 /**
1134  * phy_modify_paged() - Convenience function for modifying a paged register
1135  * @phydev: a pointer to a &struct phy_device
1136  * @page: the page for the phy
1137  * @regnum: register number
1138  * @mask: bit mask of bits to clear
1139  * @set: bit mask of bits to set
1140  *
1141  * Same rules as for phy_read() and phy_write().
1142  */
1143 int phy_modify_paged(struct phy_device *phydev, int page, u32 regnum,
1144 		     u16 mask, u16 set)
1145 {
1146 	int ret = phy_modify_paged_changed(phydev, page, regnum, mask, set);
1147 
1148 	return ret < 0 ? ret : 0;
1149 }
1150 EXPORT_SYMBOL(phy_modify_paged);
1151