xref: /linux/drivers/net/phy/phy_device.c (revision 9e7c9b8eb719835638ee74d93dccc2173581324c)
1 // SPDX-License-Identifier: GPL-2.0+
2 /* Framework for finding and configuring PHYs.
3  * Also contains generic PHY driver
4  *
5  * Author: Andy Fleming
6  *
7  * Copyright (c) 2004 Freescale Semiconductor, Inc.
8  */
9 
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 
12 #include <linux/acpi.h>
13 #include <linux/bitmap.h>
14 #include <linux/delay.h>
15 #include <linux/errno.h>
16 #include <linux/etherdevice.h>
17 #include <linux/ethtool.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/io.h>
21 #include <linux/kernel.h>
22 #include <linux/mdio.h>
23 #include <linux/mii.h>
24 #include <linux/mm.h>
25 #include <linux/module.h>
26 #include <linux/netdevice.h>
27 #include <linux/phy.h>
28 #include <linux/phy_led_triggers.h>
29 #include <linux/property.h>
30 #include <linux/sfp.h>
31 #include <linux/skbuff.h>
32 #include <linux/slab.h>
33 #include <linux/string.h>
34 #include <linux/uaccess.h>
35 #include <linux/unistd.h>
36 
37 MODULE_DESCRIPTION("PHY library");
38 MODULE_AUTHOR("Andy Fleming");
39 MODULE_LICENSE("GPL");
40 
41 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
42 EXPORT_SYMBOL_GPL(phy_basic_features);
43 
44 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
45 EXPORT_SYMBOL_GPL(phy_basic_t1_features);
46 
47 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
48 EXPORT_SYMBOL_GPL(phy_gbit_features);
49 
50 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
51 EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
52 
53 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
54 EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
55 
56 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
57 EXPORT_SYMBOL_GPL(phy_10gbit_features);
58 
59 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
60 EXPORT_SYMBOL_GPL(phy_10gbit_fec_features);
61 
62 const int phy_basic_ports_array[3] = {
63 	ETHTOOL_LINK_MODE_Autoneg_BIT,
64 	ETHTOOL_LINK_MODE_TP_BIT,
65 	ETHTOOL_LINK_MODE_MII_BIT,
66 };
67 EXPORT_SYMBOL_GPL(phy_basic_ports_array);
68 
69 const int phy_fibre_port_array[1] = {
70 	ETHTOOL_LINK_MODE_FIBRE_BIT,
71 };
72 EXPORT_SYMBOL_GPL(phy_fibre_port_array);
73 
74 const int phy_all_ports_features_array[7] = {
75 	ETHTOOL_LINK_MODE_Autoneg_BIT,
76 	ETHTOOL_LINK_MODE_TP_BIT,
77 	ETHTOOL_LINK_MODE_MII_BIT,
78 	ETHTOOL_LINK_MODE_FIBRE_BIT,
79 	ETHTOOL_LINK_MODE_AUI_BIT,
80 	ETHTOOL_LINK_MODE_BNC_BIT,
81 	ETHTOOL_LINK_MODE_Backplane_BIT,
82 };
83 EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
84 
85 const int phy_10_100_features_array[4] = {
86 	ETHTOOL_LINK_MODE_10baseT_Half_BIT,
87 	ETHTOOL_LINK_MODE_10baseT_Full_BIT,
88 	ETHTOOL_LINK_MODE_100baseT_Half_BIT,
89 	ETHTOOL_LINK_MODE_100baseT_Full_BIT,
90 };
91 EXPORT_SYMBOL_GPL(phy_10_100_features_array);
92 
93 const int phy_basic_t1_features_array[3] = {
94 	ETHTOOL_LINK_MODE_TP_BIT,
95 	ETHTOOL_LINK_MODE_10baseT1L_Full_BIT,
96 	ETHTOOL_LINK_MODE_100baseT1_Full_BIT,
97 };
98 EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
99 
100 const int phy_gbit_features_array[2] = {
101 	ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
102 	ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
103 };
104 EXPORT_SYMBOL_GPL(phy_gbit_features_array);
105 
106 const int phy_10gbit_features_array[1] = {
107 	ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
108 };
109 EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
110 
111 static const int phy_10gbit_fec_features_array[1] = {
112 	ETHTOOL_LINK_MODE_10000baseR_FEC_BIT,
113 };
114 
115 __ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
116 EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
117 
118 static const int phy_10gbit_full_features_array[] = {
119 	ETHTOOL_LINK_MODE_10baseT_Full_BIT,
120 	ETHTOOL_LINK_MODE_100baseT_Full_BIT,
121 	ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
122 	ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
123 };
124 
125 static void features_init(void)
126 {
127 	/* 10/100 half/full*/
128 	linkmode_set_bit_array(phy_basic_ports_array,
129 			       ARRAY_SIZE(phy_basic_ports_array),
130 			       phy_basic_features);
131 	linkmode_set_bit_array(phy_10_100_features_array,
132 			       ARRAY_SIZE(phy_10_100_features_array),
133 			       phy_basic_features);
134 
135 	/* 100 full, TP */
136 	linkmode_set_bit_array(phy_basic_t1_features_array,
137 			       ARRAY_SIZE(phy_basic_t1_features_array),
138 			       phy_basic_t1_features);
139 
140 	/* 10/100 half/full + 1000 half/full */
141 	linkmode_set_bit_array(phy_basic_ports_array,
142 			       ARRAY_SIZE(phy_basic_ports_array),
143 			       phy_gbit_features);
144 	linkmode_set_bit_array(phy_10_100_features_array,
145 			       ARRAY_SIZE(phy_10_100_features_array),
146 			       phy_gbit_features);
147 	linkmode_set_bit_array(phy_gbit_features_array,
148 			       ARRAY_SIZE(phy_gbit_features_array),
149 			       phy_gbit_features);
150 
151 	/* 10/100 half/full + 1000 half/full + fibre*/
152 	linkmode_set_bit_array(phy_basic_ports_array,
153 			       ARRAY_SIZE(phy_basic_ports_array),
154 			       phy_gbit_fibre_features);
155 	linkmode_set_bit_array(phy_10_100_features_array,
156 			       ARRAY_SIZE(phy_10_100_features_array),
157 			       phy_gbit_fibre_features);
158 	linkmode_set_bit_array(phy_gbit_features_array,
159 			       ARRAY_SIZE(phy_gbit_features_array),
160 			       phy_gbit_fibre_features);
161 	linkmode_set_bit_array(phy_fibre_port_array,
162 			       ARRAY_SIZE(phy_fibre_port_array),
163 			       phy_gbit_fibre_features);
164 
165 	/* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
166 	linkmode_set_bit_array(phy_all_ports_features_array,
167 			       ARRAY_SIZE(phy_all_ports_features_array),
168 			       phy_gbit_all_ports_features);
169 	linkmode_set_bit_array(phy_10_100_features_array,
170 			       ARRAY_SIZE(phy_10_100_features_array),
171 			       phy_gbit_all_ports_features);
172 	linkmode_set_bit_array(phy_gbit_features_array,
173 			       ARRAY_SIZE(phy_gbit_features_array),
174 			       phy_gbit_all_ports_features);
175 
176 	/* 10/100 half/full + 1000 half/full + 10G full*/
177 	linkmode_set_bit_array(phy_all_ports_features_array,
178 			       ARRAY_SIZE(phy_all_ports_features_array),
179 			       phy_10gbit_features);
180 	linkmode_set_bit_array(phy_10_100_features_array,
181 			       ARRAY_SIZE(phy_10_100_features_array),
182 			       phy_10gbit_features);
183 	linkmode_set_bit_array(phy_gbit_features_array,
184 			       ARRAY_SIZE(phy_gbit_features_array),
185 			       phy_10gbit_features);
186 	linkmode_set_bit_array(phy_10gbit_features_array,
187 			       ARRAY_SIZE(phy_10gbit_features_array),
188 			       phy_10gbit_features);
189 
190 	/* 10/100/1000/10G full */
191 	linkmode_set_bit_array(phy_all_ports_features_array,
192 			       ARRAY_SIZE(phy_all_ports_features_array),
193 			       phy_10gbit_full_features);
194 	linkmode_set_bit_array(phy_10gbit_full_features_array,
195 			       ARRAY_SIZE(phy_10gbit_full_features_array),
196 			       phy_10gbit_full_features);
197 	/* 10G FEC only */
198 	linkmode_set_bit_array(phy_10gbit_fec_features_array,
199 			       ARRAY_SIZE(phy_10gbit_fec_features_array),
200 			       phy_10gbit_fec_features);
201 }
202 
203 void phy_device_free(struct phy_device *phydev)
204 {
205 	put_device(&phydev->mdio.dev);
206 }
207 EXPORT_SYMBOL(phy_device_free);
208 
209 static void phy_mdio_device_free(struct mdio_device *mdiodev)
210 {
211 	struct phy_device *phydev;
212 
213 	phydev = container_of(mdiodev, struct phy_device, mdio);
214 	phy_device_free(phydev);
215 }
216 
217 static void phy_device_release(struct device *dev)
218 {
219 	kfree(to_phy_device(dev));
220 }
221 
222 static void phy_mdio_device_remove(struct mdio_device *mdiodev)
223 {
224 	struct phy_device *phydev;
225 
226 	phydev = container_of(mdiodev, struct phy_device, mdio);
227 	phy_device_remove(phydev);
228 }
229 
230 static struct phy_driver genphy_driver;
231 
232 static LIST_HEAD(phy_fixup_list);
233 static DEFINE_MUTEX(phy_fixup_lock);
234 
235 static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
236 {
237 	struct device_driver *drv = phydev->mdio.dev.driver;
238 	struct phy_driver *phydrv = to_phy_driver(drv);
239 	struct net_device *netdev = phydev->attached_dev;
240 
241 	if (!drv || !phydrv->suspend)
242 		return false;
243 
244 	/* PHY not attached? May suspend if the PHY has not already been
245 	 * suspended as part of a prior call to phy_disconnect() ->
246 	 * phy_detach() -> phy_suspend() because the parent netdev might be the
247 	 * MDIO bus driver and clock gated at this point.
248 	 */
249 	if (!netdev)
250 		goto out;
251 
252 	if (netdev->wol_enabled)
253 		return false;
254 
255 	/* As long as not all affected network drivers support the
256 	 * wol_enabled flag, let's check for hints that WoL is enabled.
257 	 * Don't suspend PHY if the attached netdev parent may wake up.
258 	 * The parent may point to a PCI device, as in tg3 driver.
259 	 */
260 	if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
261 		return false;
262 
263 	/* Also don't suspend PHY if the netdev itself may wakeup. This
264 	 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
265 	 * e.g. SoC devices.
266 	 */
267 	if (device_may_wakeup(&netdev->dev))
268 		return false;
269 
270 out:
271 	return !phydev->suspended;
272 }
273 
274 static __maybe_unused int mdio_bus_phy_suspend(struct device *dev)
275 {
276 	struct phy_device *phydev = to_phy_device(dev);
277 
278 	if (phydev->mac_managed_pm)
279 		return 0;
280 
281 	/* Wakeup interrupts may occur during the system sleep transition when
282 	 * the PHY is inaccessible. Set flag to postpone handling until the PHY
283 	 * has resumed. Wait for concurrent interrupt handler to complete.
284 	 */
285 	if (phy_interrupt_is_valid(phydev)) {
286 		phydev->irq_suspended = 1;
287 		synchronize_irq(phydev->irq);
288 	}
289 
290 	/* We must stop the state machine manually, otherwise it stops out of
291 	 * control, possibly with the phydev->lock held. Upon resume, netdev
292 	 * may call phy routines that try to grab the same lock, and that may
293 	 * lead to a deadlock.
294 	 */
295 	if (phydev->attached_dev && phydev->adjust_link)
296 		phy_stop_machine(phydev);
297 
298 	if (!mdio_bus_phy_may_suspend(phydev))
299 		return 0;
300 
301 	phydev->suspended_by_mdio_bus = 1;
302 
303 	return phy_suspend(phydev);
304 }
305 
306 static __maybe_unused int mdio_bus_phy_resume(struct device *dev)
307 {
308 	struct phy_device *phydev = to_phy_device(dev);
309 	int ret;
310 
311 	if (phydev->mac_managed_pm)
312 		return 0;
313 
314 	if (!phydev->suspended_by_mdio_bus)
315 		goto no_resume;
316 
317 	phydev->suspended_by_mdio_bus = 0;
318 
319 	ret = phy_init_hw(phydev);
320 	if (ret < 0)
321 		return ret;
322 
323 	ret = phy_resume(phydev);
324 	if (ret < 0)
325 		return ret;
326 no_resume:
327 	if (phy_interrupt_is_valid(phydev)) {
328 		phydev->irq_suspended = 0;
329 		synchronize_irq(phydev->irq);
330 
331 		/* Rerun interrupts which were postponed by phy_interrupt()
332 		 * because they occurred during the system sleep transition.
333 		 */
334 		if (phydev->irq_rerun) {
335 			phydev->irq_rerun = 0;
336 			enable_irq(phydev->irq);
337 			irq_wake_thread(phydev->irq, phydev);
338 		}
339 	}
340 
341 	if (phydev->attached_dev && phydev->adjust_link)
342 		phy_start_machine(phydev);
343 
344 	return 0;
345 }
346 
347 static SIMPLE_DEV_PM_OPS(mdio_bus_phy_pm_ops, mdio_bus_phy_suspend,
348 			 mdio_bus_phy_resume);
349 
350 /**
351  * phy_register_fixup - creates a new phy_fixup and adds it to the list
352  * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
353  * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
354  *	It can also be PHY_ANY_UID
355  * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
356  *	comparison
357  * @run: The actual code to be run when a matching PHY is found
358  */
359 int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
360 		       int (*run)(struct phy_device *))
361 {
362 	struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
363 
364 	if (!fixup)
365 		return -ENOMEM;
366 
367 	strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
368 	fixup->phy_uid = phy_uid;
369 	fixup->phy_uid_mask = phy_uid_mask;
370 	fixup->run = run;
371 
372 	mutex_lock(&phy_fixup_lock);
373 	list_add_tail(&fixup->list, &phy_fixup_list);
374 	mutex_unlock(&phy_fixup_lock);
375 
376 	return 0;
377 }
378 EXPORT_SYMBOL(phy_register_fixup);
379 
380 /* Registers a fixup to be run on any PHY with the UID in phy_uid */
381 int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
382 			       int (*run)(struct phy_device *))
383 {
384 	return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
385 }
386 EXPORT_SYMBOL(phy_register_fixup_for_uid);
387 
388 /* Registers a fixup to be run on the PHY with id string bus_id */
389 int phy_register_fixup_for_id(const char *bus_id,
390 			      int (*run)(struct phy_device *))
391 {
392 	return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
393 }
394 EXPORT_SYMBOL(phy_register_fixup_for_id);
395 
396 /**
397  * phy_unregister_fixup - remove a phy_fixup from the list
398  * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
399  * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
400  * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
401  */
402 int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
403 {
404 	struct list_head *pos, *n;
405 	struct phy_fixup *fixup;
406 	int ret;
407 
408 	ret = -ENODEV;
409 
410 	mutex_lock(&phy_fixup_lock);
411 	list_for_each_safe(pos, n, &phy_fixup_list) {
412 		fixup = list_entry(pos, struct phy_fixup, list);
413 
414 		if ((!strcmp(fixup->bus_id, bus_id)) &&
415 		    ((fixup->phy_uid & phy_uid_mask) ==
416 		     (phy_uid & phy_uid_mask))) {
417 			list_del(&fixup->list);
418 			kfree(fixup);
419 			ret = 0;
420 			break;
421 		}
422 	}
423 	mutex_unlock(&phy_fixup_lock);
424 
425 	return ret;
426 }
427 EXPORT_SYMBOL(phy_unregister_fixup);
428 
429 /* Unregisters a fixup of any PHY with the UID in phy_uid */
430 int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
431 {
432 	return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
433 }
434 EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
435 
436 /* Unregisters a fixup of the PHY with id string bus_id */
437 int phy_unregister_fixup_for_id(const char *bus_id)
438 {
439 	return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
440 }
441 EXPORT_SYMBOL(phy_unregister_fixup_for_id);
442 
443 /* Returns 1 if fixup matches phydev in bus_id and phy_uid.
444  * Fixups can be set to match any in one or more fields.
445  */
446 static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
447 {
448 	if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
449 		if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
450 			return 0;
451 
452 	if ((fixup->phy_uid & fixup->phy_uid_mask) !=
453 	    (phydev->phy_id & fixup->phy_uid_mask))
454 		if (fixup->phy_uid != PHY_ANY_UID)
455 			return 0;
456 
457 	return 1;
458 }
459 
460 /* Runs any matching fixups for this phydev */
461 static int phy_scan_fixups(struct phy_device *phydev)
462 {
463 	struct phy_fixup *fixup;
464 
465 	mutex_lock(&phy_fixup_lock);
466 	list_for_each_entry(fixup, &phy_fixup_list, list) {
467 		if (phy_needs_fixup(phydev, fixup)) {
468 			int err = fixup->run(phydev);
469 
470 			if (err < 0) {
471 				mutex_unlock(&phy_fixup_lock);
472 				return err;
473 			}
474 			phydev->has_fixups = true;
475 		}
476 	}
477 	mutex_unlock(&phy_fixup_lock);
478 
479 	return 0;
480 }
481 
482 static int phy_bus_match(struct device *dev, struct device_driver *drv)
483 {
484 	struct phy_device *phydev = to_phy_device(dev);
485 	struct phy_driver *phydrv = to_phy_driver(drv);
486 	const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
487 	int i;
488 
489 	if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
490 		return 0;
491 
492 	if (phydrv->match_phy_device)
493 		return phydrv->match_phy_device(phydev);
494 
495 	if (phydev->is_c45) {
496 		for (i = 1; i < num_ids; i++) {
497 			if (phydev->c45_ids.device_ids[i] == 0xffffffff)
498 				continue;
499 
500 			if ((phydrv->phy_id & phydrv->phy_id_mask) ==
501 			    (phydev->c45_ids.device_ids[i] &
502 			     phydrv->phy_id_mask))
503 				return 1;
504 		}
505 		return 0;
506 	} else {
507 		return (phydrv->phy_id & phydrv->phy_id_mask) ==
508 			(phydev->phy_id & phydrv->phy_id_mask);
509 	}
510 }
511 
512 static ssize_t
513 phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
514 {
515 	struct phy_device *phydev = to_phy_device(dev);
516 
517 	return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
518 }
519 static DEVICE_ATTR_RO(phy_id);
520 
521 static ssize_t
522 phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
523 {
524 	struct phy_device *phydev = to_phy_device(dev);
525 	const char *mode = NULL;
526 
527 	if (phy_is_internal(phydev))
528 		mode = "internal";
529 	else
530 		mode = phy_modes(phydev->interface);
531 
532 	return sprintf(buf, "%s\n", mode);
533 }
534 static DEVICE_ATTR_RO(phy_interface);
535 
536 static ssize_t
537 phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
538 		    char *buf)
539 {
540 	struct phy_device *phydev = to_phy_device(dev);
541 
542 	return sprintf(buf, "%d\n", phydev->has_fixups);
543 }
544 static DEVICE_ATTR_RO(phy_has_fixups);
545 
546 static ssize_t phy_dev_flags_show(struct device *dev,
547 				  struct device_attribute *attr,
548 				  char *buf)
549 {
550 	struct phy_device *phydev = to_phy_device(dev);
551 
552 	return sprintf(buf, "0x%08x\n", phydev->dev_flags);
553 }
554 static DEVICE_ATTR_RO(phy_dev_flags);
555 
556 static struct attribute *phy_dev_attrs[] = {
557 	&dev_attr_phy_id.attr,
558 	&dev_attr_phy_interface.attr,
559 	&dev_attr_phy_has_fixups.attr,
560 	&dev_attr_phy_dev_flags.attr,
561 	NULL,
562 };
563 ATTRIBUTE_GROUPS(phy_dev);
564 
565 static const struct device_type mdio_bus_phy_type = {
566 	.name = "PHY",
567 	.groups = phy_dev_groups,
568 	.release = phy_device_release,
569 	.pm = pm_ptr(&mdio_bus_phy_pm_ops),
570 };
571 
572 static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
573 {
574 	int ret;
575 
576 	ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
577 			     MDIO_ID_ARGS(phy_id));
578 	/* We only check for failures in executing the usermode binary,
579 	 * not whether a PHY driver module exists for the PHY ID.
580 	 * Accept -ENOENT because this may occur in case no initramfs exists,
581 	 * then modprobe isn't available.
582 	 */
583 	if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
584 		phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
585 			   ret, (unsigned long)phy_id);
586 		return ret;
587 	}
588 
589 	return 0;
590 }
591 
592 struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
593 				     bool is_c45,
594 				     struct phy_c45_device_ids *c45_ids)
595 {
596 	struct phy_device *dev;
597 	struct mdio_device *mdiodev;
598 	int ret = 0;
599 
600 	/* We allocate the device, and initialize the default values */
601 	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
602 	if (!dev)
603 		return ERR_PTR(-ENOMEM);
604 
605 	mdiodev = &dev->mdio;
606 	mdiodev->dev.parent = &bus->dev;
607 	mdiodev->dev.bus = &mdio_bus_type;
608 	mdiodev->dev.type = &mdio_bus_phy_type;
609 	mdiodev->bus = bus;
610 	mdiodev->bus_match = phy_bus_match;
611 	mdiodev->addr = addr;
612 	mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
613 	mdiodev->device_free = phy_mdio_device_free;
614 	mdiodev->device_remove = phy_mdio_device_remove;
615 
616 	dev->speed = SPEED_UNKNOWN;
617 	dev->duplex = DUPLEX_UNKNOWN;
618 	dev->pause = 0;
619 	dev->asym_pause = 0;
620 	dev->link = 0;
621 	dev->port = PORT_TP;
622 	dev->interface = PHY_INTERFACE_MODE_GMII;
623 
624 	dev->autoneg = AUTONEG_ENABLE;
625 
626 	dev->pma_extable = -ENODATA;
627 	dev->is_c45 = is_c45;
628 	dev->phy_id = phy_id;
629 	if (c45_ids)
630 		dev->c45_ids = *c45_ids;
631 	dev->irq = bus->irq[addr];
632 
633 	dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
634 	device_initialize(&mdiodev->dev);
635 
636 	dev->state = PHY_DOWN;
637 
638 	mutex_init(&dev->lock);
639 	INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
640 
641 	/* Request the appropriate module unconditionally; don't
642 	 * bother trying to do so only if it isn't already loaded,
643 	 * because that gets complicated. A hotplug event would have
644 	 * done an unconditional modprobe anyway.
645 	 * We don't do normal hotplug because it won't work for MDIO
646 	 * -- because it relies on the device staying around for long
647 	 * enough for the driver to get loaded. With MDIO, the NIC
648 	 * driver will get bored and give up as soon as it finds that
649 	 * there's no driver _already_ loaded.
650 	 */
651 	if (is_c45 && c45_ids) {
652 		const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
653 		int i;
654 
655 		for (i = 1; i < num_ids; i++) {
656 			if (c45_ids->device_ids[i] == 0xffffffff)
657 				continue;
658 
659 			ret = phy_request_driver_module(dev,
660 						c45_ids->device_ids[i]);
661 			if (ret)
662 				break;
663 		}
664 	} else {
665 		ret = phy_request_driver_module(dev, phy_id);
666 	}
667 
668 	if (ret) {
669 		put_device(&mdiodev->dev);
670 		dev = ERR_PTR(ret);
671 	}
672 
673 	return dev;
674 }
675 EXPORT_SYMBOL(phy_device_create);
676 
677 /* phy_c45_probe_present - checks to see if a MMD is present in the package
678  * @bus: the target MII bus
679  * @prtad: PHY package address on the MII bus
680  * @devad: PHY device (MMD) address
681  *
682  * Read the MDIO_STAT2 register, and check whether a device is responding
683  * at this address.
684  *
685  * Returns: negative error number on bus access error, zero if no device
686  * is responding, or positive if a device is present.
687  */
688 static int phy_c45_probe_present(struct mii_bus *bus, int prtad, int devad)
689 {
690 	int stat2;
691 
692 	stat2 = mdiobus_c45_read(bus, prtad, devad, MDIO_STAT2);
693 	if (stat2 < 0)
694 		return stat2;
695 
696 	return (stat2 & MDIO_STAT2_DEVPRST) == MDIO_STAT2_DEVPRST_VAL;
697 }
698 
699 /* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
700  * @bus: the target MII bus
701  * @addr: PHY address on the MII bus
702  * @dev_addr: MMD address in the PHY.
703  * @devices_in_package: where to store the devices in package information.
704  *
705  * Description: reads devices in package registers of a MMD at @dev_addr
706  * from PHY at @addr on @bus.
707  *
708  * Returns: 0 on success, -EIO on failure.
709  */
710 static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
711 				   u32 *devices_in_package)
712 {
713 	int phy_reg;
714 
715 	phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS2);
716 	if (phy_reg < 0)
717 		return -EIO;
718 	*devices_in_package = phy_reg << 16;
719 
720 	phy_reg = mdiobus_c45_read(bus, addr, dev_addr, MDIO_DEVS1);
721 	if (phy_reg < 0)
722 		return -EIO;
723 	*devices_in_package |= phy_reg;
724 
725 	return 0;
726 }
727 
728 /**
729  * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
730  * @bus: the target MII bus
731  * @addr: PHY address on the MII bus
732  * @c45_ids: where to store the c45 ID information.
733  *
734  * Read the PHY "devices in package". If this appears to be valid, read
735  * the PHY identifiers for each device. Return the "devices in package"
736  * and identifiers in @c45_ids.
737  *
738  * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
739  * the "devices in package" is invalid.
740  */
741 static int get_phy_c45_ids(struct mii_bus *bus, int addr,
742 			   struct phy_c45_device_ids *c45_ids)
743 {
744 	const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
745 	u32 devs_in_pkg = 0;
746 	int i, ret, phy_reg;
747 
748 	/* Find first non-zero Devices In package. Device zero is reserved
749 	 * for 802.3 c45 complied PHYs, so don't probe it at first.
750 	 */
751 	for (i = 1; i < MDIO_MMD_NUM && (devs_in_pkg == 0 ||
752 	     (devs_in_pkg & 0x1fffffff) == 0x1fffffff); i++) {
753 		if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
754 			/* Check that there is a device present at this
755 			 * address before reading the devices-in-package
756 			 * register to avoid reading garbage from the PHY.
757 			 * Some PHYs (88x3310) vendor space is not IEEE802.3
758 			 * compliant.
759 			 */
760 			ret = phy_c45_probe_present(bus, addr, i);
761 			if (ret < 0)
762 				return -EIO;
763 
764 			if (!ret)
765 				continue;
766 		}
767 		phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, &devs_in_pkg);
768 		if (phy_reg < 0)
769 			return -EIO;
770 	}
771 
772 	if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff) {
773 		/* If mostly Fs, there is no device there, then let's probe
774 		 * MMD 0, as some 10G PHYs have zero Devices In package,
775 		 * e.g. Cortina CS4315/CS4340 PHY.
776 		 */
777 		phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, &devs_in_pkg);
778 		if (phy_reg < 0)
779 			return -EIO;
780 
781 		/* no device there, let's get out of here */
782 		if ((devs_in_pkg & 0x1fffffff) == 0x1fffffff)
783 			return -ENODEV;
784 	}
785 
786 	/* Now probe Device Identifiers for each device present. */
787 	for (i = 1; i < num_ids; i++) {
788 		if (!(devs_in_pkg & (1 << i)))
789 			continue;
790 
791 		if (i == MDIO_MMD_VEND1 || i == MDIO_MMD_VEND2) {
792 			/* Probe the "Device Present" bits for the vendor MMDs
793 			 * to ignore these if they do not contain IEEE 802.3
794 			 * registers.
795 			 */
796 			ret = phy_c45_probe_present(bus, addr, i);
797 			if (ret < 0)
798 				return ret;
799 
800 			if (!ret)
801 				continue;
802 		}
803 
804 		phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID1);
805 		if (phy_reg < 0)
806 			return -EIO;
807 		c45_ids->device_ids[i] = phy_reg << 16;
808 
809 		phy_reg = mdiobus_c45_read(bus, addr, i, MII_PHYSID2);
810 		if (phy_reg < 0)
811 			return -EIO;
812 		c45_ids->device_ids[i] |= phy_reg;
813 	}
814 
815 	c45_ids->devices_in_package = devs_in_pkg;
816 	/* Bit 0 doesn't represent a device, it indicates c22 regs presence */
817 	c45_ids->mmds_present = devs_in_pkg & ~BIT(0);
818 
819 	return 0;
820 }
821 
822 /**
823  * get_phy_c22_id - reads the specified addr for its clause 22 ID.
824  * @bus: the target MII bus
825  * @addr: PHY address on the MII bus
826  * @phy_id: where to store the ID retrieved.
827  *
828  * Read the 802.3 clause 22 PHY ID from the PHY at @addr on the @bus,
829  * placing it in @phy_id. Return zero on successful read and the ID is
830  * valid, %-EIO on bus access error, or %-ENODEV if no device responds
831  * or invalid ID.
832  */
833 static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
834 {
835 	int phy_reg;
836 
837 	/* Grab the bits from PHYIR1, and put them in the upper half */
838 	phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
839 	if (phy_reg < 0) {
840 		/* returning -ENODEV doesn't stop bus scanning */
841 		return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
842 	}
843 
844 	*phy_id = phy_reg << 16;
845 
846 	/* Grab the bits from PHYIR2, and put them in the lower half */
847 	phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
848 	if (phy_reg < 0) {
849 		/* returning -ENODEV doesn't stop bus scanning */
850 		return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
851 	}
852 
853 	*phy_id |= phy_reg;
854 
855 	/* If the phy_id is mostly Fs, there is no device there */
856 	if ((*phy_id & 0x1fffffff) == 0x1fffffff)
857 		return -ENODEV;
858 
859 	return 0;
860 }
861 
862 /* Extract the phy ID from the compatible string of the form
863  * ethernet-phy-idAAAA.BBBB.
864  */
865 int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
866 {
867 	unsigned int upper, lower;
868 	const char *cp;
869 	int ret;
870 
871 	ret = fwnode_property_read_string(fwnode, "compatible", &cp);
872 	if (ret)
873 		return ret;
874 
875 	if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) != 2)
876 		return -EINVAL;
877 
878 	*phy_id = ((upper & GENMASK(15, 0)) << 16) | (lower & GENMASK(15, 0));
879 	return 0;
880 }
881 EXPORT_SYMBOL(fwnode_get_phy_id);
882 
883 /**
884  * get_phy_device - reads the specified PHY device and returns its @phy_device
885  *		    struct
886  * @bus: the target MII bus
887  * @addr: PHY address on the MII bus
888  * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
889  *
890  * Probe for a PHY at @addr on @bus.
891  *
892  * When probing for a clause 22 PHY, then read the ID registers. If we find
893  * a valid ID, allocate and return a &struct phy_device.
894  *
895  * When probing for a clause 45 PHY, read the "devices in package" registers.
896  * If the "devices in package" appears valid, read the ID registers for each
897  * MMD, allocate and return a &struct phy_device.
898  *
899  * Returns an allocated &struct phy_device on success, %-ENODEV if there is
900  * no PHY present, or %-EIO on bus access error.
901  */
902 struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
903 {
904 	struct phy_c45_device_ids c45_ids;
905 	u32 phy_id = 0;
906 	int r;
907 
908 	c45_ids.devices_in_package = 0;
909 	c45_ids.mmds_present = 0;
910 	memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
911 
912 	if (is_c45)
913 		r = get_phy_c45_ids(bus, addr, &c45_ids);
914 	else
915 		r = get_phy_c22_id(bus, addr, &phy_id);
916 
917 	if (r)
918 		return ERR_PTR(r);
919 
920 	/* PHY device such as the Marvell Alaska 88E2110 will return a PHY ID
921 	 * of 0 when probed using get_phy_c22_id() with no error. Proceed to
922 	 * probe with C45 to see if we're able to get a valid PHY ID in the C45
923 	 * space, if successful, create the C45 PHY device.
924 	 */
925 	if (!is_c45 && phy_id == 0 && bus->probe_capabilities >= MDIOBUS_C45) {
926 		r = get_phy_c45_ids(bus, addr, &c45_ids);
927 		if (!r)
928 			return phy_device_create(bus, addr, phy_id,
929 						 true, &c45_ids);
930 	}
931 
932 	return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
933 }
934 EXPORT_SYMBOL(get_phy_device);
935 
936 /**
937  * phy_device_register - Register the phy device on the MDIO bus
938  * @phydev: phy_device structure to be added to the MDIO bus
939  */
940 int phy_device_register(struct phy_device *phydev)
941 {
942 	int err;
943 
944 	err = mdiobus_register_device(&phydev->mdio);
945 	if (err)
946 		return err;
947 
948 	/* Deassert the reset signal */
949 	phy_device_reset(phydev, 0);
950 
951 	/* Run all of the fixups for this PHY */
952 	err = phy_scan_fixups(phydev);
953 	if (err) {
954 		phydev_err(phydev, "failed to initialize\n");
955 		goto out;
956 	}
957 
958 	err = device_add(&phydev->mdio.dev);
959 	if (err) {
960 		phydev_err(phydev, "failed to add\n");
961 		goto out;
962 	}
963 
964 	return 0;
965 
966  out:
967 	/* Assert the reset signal */
968 	phy_device_reset(phydev, 1);
969 
970 	mdiobus_unregister_device(&phydev->mdio);
971 	return err;
972 }
973 EXPORT_SYMBOL(phy_device_register);
974 
975 /**
976  * phy_device_remove - Remove a previously registered phy device from the MDIO bus
977  * @phydev: phy_device structure to remove
978  *
979  * This doesn't free the phy_device itself, it merely reverses the effects
980  * of phy_device_register(). Use phy_device_free() to free the device
981  * after calling this function.
982  */
983 void phy_device_remove(struct phy_device *phydev)
984 {
985 	unregister_mii_timestamper(phydev->mii_ts);
986 
987 	device_del(&phydev->mdio.dev);
988 
989 	/* Assert the reset signal */
990 	phy_device_reset(phydev, 1);
991 
992 	mdiobus_unregister_device(&phydev->mdio);
993 }
994 EXPORT_SYMBOL(phy_device_remove);
995 
996 /**
997  * phy_get_c45_ids - Read 802.3-c45 IDs for phy device.
998  * @phydev: phy_device structure to read 802.3-c45 IDs
999  *
1000  * Returns zero on success, %-EIO on bus access error, or %-ENODEV if
1001  * the "devices in package" is invalid.
1002  */
1003 int phy_get_c45_ids(struct phy_device *phydev)
1004 {
1005 	return get_phy_c45_ids(phydev->mdio.bus, phydev->mdio.addr,
1006 			       &phydev->c45_ids);
1007 }
1008 EXPORT_SYMBOL(phy_get_c45_ids);
1009 
1010 /**
1011  * phy_find_first - finds the first PHY device on the bus
1012  * @bus: the target MII bus
1013  */
1014 struct phy_device *phy_find_first(struct mii_bus *bus)
1015 {
1016 	struct phy_device *phydev;
1017 	int addr;
1018 
1019 	for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
1020 		phydev = mdiobus_get_phy(bus, addr);
1021 		if (phydev)
1022 			return phydev;
1023 	}
1024 	return NULL;
1025 }
1026 EXPORT_SYMBOL(phy_find_first);
1027 
1028 static void phy_link_change(struct phy_device *phydev, bool up)
1029 {
1030 	struct net_device *netdev = phydev->attached_dev;
1031 
1032 	if (up)
1033 		netif_carrier_on(netdev);
1034 	else
1035 		netif_carrier_off(netdev);
1036 	phydev->adjust_link(netdev);
1037 	if (phydev->mii_ts && phydev->mii_ts->link_state)
1038 		phydev->mii_ts->link_state(phydev->mii_ts, phydev);
1039 }
1040 
1041 /**
1042  * phy_prepare_link - prepares the PHY layer to monitor link status
1043  * @phydev: target phy_device struct
1044  * @handler: callback function for link status change notifications
1045  *
1046  * Description: Tells the PHY infrastructure to handle the
1047  *   gory details on monitoring link status (whether through
1048  *   polling or an interrupt), and to call back to the
1049  *   connected device driver when the link status changes.
1050  *   If you want to monitor your own link state, don't call
1051  *   this function.
1052  */
1053 static void phy_prepare_link(struct phy_device *phydev,
1054 			     void (*handler)(struct net_device *))
1055 {
1056 	phydev->adjust_link = handler;
1057 }
1058 
1059 /**
1060  * phy_connect_direct - connect an ethernet device to a specific phy_device
1061  * @dev: the network device to connect
1062  * @phydev: the pointer to the phy device
1063  * @handler: callback function for state change notifications
1064  * @interface: PHY device's interface
1065  */
1066 int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
1067 		       void (*handler)(struct net_device *),
1068 		       phy_interface_t interface)
1069 {
1070 	int rc;
1071 
1072 	if (!dev)
1073 		return -EINVAL;
1074 
1075 	rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1076 	if (rc)
1077 		return rc;
1078 
1079 	phy_prepare_link(phydev, handler);
1080 	if (phy_interrupt_is_valid(phydev))
1081 		phy_request_interrupt(phydev);
1082 
1083 	return 0;
1084 }
1085 EXPORT_SYMBOL(phy_connect_direct);
1086 
1087 /**
1088  * phy_connect - connect an ethernet device to a PHY device
1089  * @dev: the network device to connect
1090  * @bus_id: the id string of the PHY device to connect
1091  * @handler: callback function for state change notifications
1092  * @interface: PHY device's interface
1093  *
1094  * Description: Convenience function for connecting ethernet
1095  *   devices to PHY devices.  The default behavior is for
1096  *   the PHY infrastructure to handle everything, and only notify
1097  *   the connected driver when the link status changes.  If you
1098  *   don't want, or can't use the provided functionality, you may
1099  *   choose to call only the subset of functions which provide
1100  *   the desired functionality.
1101  */
1102 struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
1103 			       void (*handler)(struct net_device *),
1104 			       phy_interface_t interface)
1105 {
1106 	struct phy_device *phydev;
1107 	struct device *d;
1108 	int rc;
1109 
1110 	/* Search the list of PHY devices on the mdio bus for the
1111 	 * PHY with the requested name
1112 	 */
1113 	d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1114 	if (!d) {
1115 		pr_err("PHY %s not found\n", bus_id);
1116 		return ERR_PTR(-ENODEV);
1117 	}
1118 	phydev = to_phy_device(d);
1119 
1120 	rc = phy_connect_direct(dev, phydev, handler, interface);
1121 	put_device(d);
1122 	if (rc)
1123 		return ERR_PTR(rc);
1124 
1125 	return phydev;
1126 }
1127 EXPORT_SYMBOL(phy_connect);
1128 
1129 /**
1130  * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1131  *		    device
1132  * @phydev: target phy_device struct
1133  */
1134 void phy_disconnect(struct phy_device *phydev)
1135 {
1136 	if (phy_is_started(phydev))
1137 		phy_stop(phydev);
1138 
1139 	if (phy_interrupt_is_valid(phydev))
1140 		phy_free_interrupt(phydev);
1141 
1142 	phydev->adjust_link = NULL;
1143 
1144 	phy_detach(phydev);
1145 }
1146 EXPORT_SYMBOL(phy_disconnect);
1147 
1148 /**
1149  * phy_poll_reset - Safely wait until a PHY reset has properly completed
1150  * @phydev: The PHY device to poll
1151  *
1152  * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1153  *   published in 2008, a PHY reset may take up to 0.5 seconds.  The MII BMCR
1154  *   register must be polled until the BMCR_RESET bit clears.
1155  *
1156  *   Furthermore, any attempts to write to PHY registers may have no effect
1157  *   or even generate MDIO bus errors until this is complete.
1158  *
1159  *   Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1160  *   standard and do not fully reset after the BMCR_RESET bit is set, and may
1161  *   even *REQUIRE* a soft-reset to properly restart autonegotiation.  In an
1162  *   effort to support such broken PHYs, this function is separate from the
1163  *   standard phy_init_hw() which will zero all the other bits in the BMCR
1164  *   and reapply all driver-specific and board-specific fixups.
1165  */
1166 static int phy_poll_reset(struct phy_device *phydev)
1167 {
1168 	/* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1169 	int ret, val;
1170 
1171 	ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1172 				    50000, 600000, true);
1173 	if (ret)
1174 		return ret;
1175 	/* Some chips (smsc911x) may still need up to another 1ms after the
1176 	 * BMCR_RESET bit is cleared before they are usable.
1177 	 */
1178 	msleep(1);
1179 	return 0;
1180 }
1181 
1182 int phy_init_hw(struct phy_device *phydev)
1183 {
1184 	int ret = 0;
1185 
1186 	/* Deassert the reset signal */
1187 	phy_device_reset(phydev, 0);
1188 
1189 	if (!phydev->drv)
1190 		return 0;
1191 
1192 	if (phydev->drv->soft_reset) {
1193 		ret = phydev->drv->soft_reset(phydev);
1194 		/* see comment in genphy_soft_reset for an explanation */
1195 		if (!ret)
1196 			phydev->suspended = 0;
1197 	}
1198 
1199 	if (ret < 0)
1200 		return ret;
1201 
1202 	ret = phy_scan_fixups(phydev);
1203 	if (ret < 0)
1204 		return ret;
1205 
1206 	if (phydev->drv->config_init) {
1207 		ret = phydev->drv->config_init(phydev);
1208 		if (ret < 0)
1209 			return ret;
1210 	}
1211 
1212 	if (phydev->drv->config_intr) {
1213 		ret = phydev->drv->config_intr(phydev);
1214 		if (ret < 0)
1215 			return ret;
1216 	}
1217 
1218 	return 0;
1219 }
1220 EXPORT_SYMBOL(phy_init_hw);
1221 
1222 void phy_attached_info(struct phy_device *phydev)
1223 {
1224 	phy_attached_print(phydev, NULL);
1225 }
1226 EXPORT_SYMBOL(phy_attached_info);
1227 
1228 #define ATTACHED_FMT "attached PHY driver %s(mii_bus:phy_addr=%s, irq=%s)"
1229 char *phy_attached_info_irq(struct phy_device *phydev)
1230 {
1231 	char *irq_str;
1232 	char irq_num[8];
1233 
1234 	switch(phydev->irq) {
1235 	case PHY_POLL:
1236 		irq_str = "POLL";
1237 		break;
1238 	case PHY_MAC_INTERRUPT:
1239 		irq_str = "MAC";
1240 		break;
1241 	default:
1242 		snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1243 		irq_str = irq_num;
1244 		break;
1245 	}
1246 
1247 	return kasprintf(GFP_KERNEL, "%s", irq_str);
1248 }
1249 EXPORT_SYMBOL(phy_attached_info_irq);
1250 
1251 void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1252 {
1253 	const char *unbound = phydev->drv ? "" : "[unbound] ";
1254 	char *irq_str = phy_attached_info_irq(phydev);
1255 
1256 	if (!fmt) {
1257 		phydev_info(phydev, ATTACHED_FMT "\n", unbound,
1258 			    phydev_name(phydev), irq_str);
1259 	} else {
1260 		va_list ap;
1261 
1262 		phydev_info(phydev, ATTACHED_FMT, unbound,
1263 			    phydev_name(phydev), irq_str);
1264 
1265 		va_start(ap, fmt);
1266 		vprintk(fmt, ap);
1267 		va_end(ap);
1268 	}
1269 	kfree(irq_str);
1270 }
1271 EXPORT_SYMBOL(phy_attached_print);
1272 
1273 static void phy_sysfs_create_links(struct phy_device *phydev)
1274 {
1275 	struct net_device *dev = phydev->attached_dev;
1276 	int err;
1277 
1278 	if (!dev)
1279 		return;
1280 
1281 	err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1282 				"attached_dev");
1283 	if (err)
1284 		return;
1285 
1286 	err = sysfs_create_link_nowarn(&dev->dev.kobj,
1287 				       &phydev->mdio.dev.kobj,
1288 				       "phydev");
1289 	if (err) {
1290 		dev_err(&dev->dev, "could not add device link to %s err %d\n",
1291 			kobject_name(&phydev->mdio.dev.kobj),
1292 			err);
1293 		/* non-fatal - some net drivers can use one netdevice
1294 		 * with more then one phy
1295 		 */
1296 	}
1297 
1298 	phydev->sysfs_links = true;
1299 }
1300 
1301 static ssize_t
1302 phy_standalone_show(struct device *dev, struct device_attribute *attr,
1303 		    char *buf)
1304 {
1305 	struct phy_device *phydev = to_phy_device(dev);
1306 
1307 	return sprintf(buf, "%d\n", !phydev->attached_dev);
1308 }
1309 static DEVICE_ATTR_RO(phy_standalone);
1310 
1311 /**
1312  * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1313  * @upstream: pointer to the phy device
1314  * @bus: sfp bus representing cage being attached
1315  *
1316  * This is used to fill in the sfp_upstream_ops .attach member.
1317  */
1318 void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1319 {
1320 	struct phy_device *phydev = upstream;
1321 
1322 	if (phydev->attached_dev)
1323 		phydev->attached_dev->sfp_bus = bus;
1324 	phydev->sfp_bus_attached = true;
1325 }
1326 EXPORT_SYMBOL(phy_sfp_attach);
1327 
1328 /**
1329  * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1330  * @upstream: pointer to the phy device
1331  * @bus: sfp bus representing cage being attached
1332  *
1333  * This is used to fill in the sfp_upstream_ops .detach member.
1334  */
1335 void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1336 {
1337 	struct phy_device *phydev = upstream;
1338 
1339 	if (phydev->attached_dev)
1340 		phydev->attached_dev->sfp_bus = NULL;
1341 	phydev->sfp_bus_attached = false;
1342 }
1343 EXPORT_SYMBOL(phy_sfp_detach);
1344 
1345 /**
1346  * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1347  * @phydev: Pointer to phy_device
1348  * @ops: SFP's upstream operations
1349  */
1350 int phy_sfp_probe(struct phy_device *phydev,
1351 		  const struct sfp_upstream_ops *ops)
1352 {
1353 	struct sfp_bus *bus;
1354 	int ret = 0;
1355 
1356 	if (phydev->mdio.dev.fwnode) {
1357 		bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1358 		if (IS_ERR(bus))
1359 			return PTR_ERR(bus);
1360 
1361 		phydev->sfp_bus = bus;
1362 
1363 		ret = sfp_bus_add_upstream(bus, phydev, ops);
1364 		sfp_bus_put(bus);
1365 	}
1366 	return ret;
1367 }
1368 EXPORT_SYMBOL(phy_sfp_probe);
1369 
1370 /**
1371  * phy_attach_direct - attach a network device to a given PHY device pointer
1372  * @dev: network device to attach
1373  * @phydev: Pointer to phy_device to attach
1374  * @flags: PHY device's dev_flags
1375  * @interface: PHY device's interface
1376  *
1377  * Description: Called by drivers to attach to a particular PHY
1378  *     device. The phy_device is found, and properly hooked up
1379  *     to the phy_driver.  If no driver is attached, then a
1380  *     generic driver is used.  The phy_device is given a ptr to
1381  *     the attaching device, and given a callback for link status
1382  *     change.  The phy_device is returned to the attaching driver.
1383  *     This function takes a reference on the phy device.
1384  */
1385 int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1386 		      u32 flags, phy_interface_t interface)
1387 {
1388 	struct mii_bus *bus = phydev->mdio.bus;
1389 	struct device *d = &phydev->mdio.dev;
1390 	struct module *ndev_owner = NULL;
1391 	bool using_genphy = false;
1392 	int err;
1393 
1394 	/* For Ethernet device drivers that register their own MDIO bus, we
1395 	 * will have bus->owner match ndev_mod, so we do not want to increment
1396 	 * our own module->refcnt here, otherwise we would not be able to
1397 	 * unload later on.
1398 	 */
1399 	if (dev)
1400 		ndev_owner = dev->dev.parent->driver->owner;
1401 	if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
1402 		phydev_err(phydev, "failed to get the bus module\n");
1403 		return -EIO;
1404 	}
1405 
1406 	get_device(d);
1407 
1408 	/* Assume that if there is no driver, that it doesn't
1409 	 * exist, and we should use the genphy driver.
1410 	 */
1411 	if (!d->driver) {
1412 		if (phydev->is_c45)
1413 			d->driver = &genphy_c45_driver.mdiodrv.driver;
1414 		else
1415 			d->driver = &genphy_driver.mdiodrv.driver;
1416 
1417 		using_genphy = true;
1418 	}
1419 
1420 	if (!try_module_get(d->driver->owner)) {
1421 		phydev_err(phydev, "failed to get the device driver module\n");
1422 		err = -EIO;
1423 		goto error_put_device;
1424 	}
1425 
1426 	if (using_genphy) {
1427 		err = d->driver->probe(d);
1428 		if (err >= 0)
1429 			err = device_bind_driver(d);
1430 
1431 		if (err)
1432 			goto error_module_put;
1433 	}
1434 
1435 	if (phydev->attached_dev) {
1436 		dev_err(&dev->dev, "PHY already attached\n");
1437 		err = -EBUSY;
1438 		goto error;
1439 	}
1440 
1441 	phydev->phy_link_change = phy_link_change;
1442 	if (dev) {
1443 		phydev->attached_dev = dev;
1444 		dev->phydev = phydev;
1445 
1446 		if (phydev->sfp_bus_attached)
1447 			dev->sfp_bus = phydev->sfp_bus;
1448 		else if (dev->sfp_bus)
1449 			phydev->is_on_sfp_module = true;
1450 	}
1451 
1452 	/* Some Ethernet drivers try to connect to a PHY device before
1453 	 * calling register_netdevice() -> netdev_register_kobject() and
1454 	 * does the dev->dev.kobj initialization. Here we only check for
1455 	 * success which indicates that the network device kobject is
1456 	 * ready. Once we do that we still need to keep track of whether
1457 	 * links were successfully set up or not for phy_detach() to
1458 	 * remove them accordingly.
1459 	 */
1460 	phydev->sysfs_links = false;
1461 
1462 	phy_sysfs_create_links(phydev);
1463 
1464 	if (!phydev->attached_dev) {
1465 		err = sysfs_create_file(&phydev->mdio.dev.kobj,
1466 					&dev_attr_phy_standalone.attr);
1467 		if (err)
1468 			phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1469 	}
1470 
1471 	phydev->dev_flags |= flags;
1472 
1473 	phydev->interface = interface;
1474 
1475 	phydev->state = PHY_READY;
1476 
1477 	phydev->interrupts = PHY_INTERRUPT_DISABLED;
1478 
1479 	/* Port is set to PORT_TP by default and the actual PHY driver will set
1480 	 * it to different value depending on the PHY configuration. If we have
1481 	 * the generic PHY driver we can't figure it out, thus set the old
1482 	 * legacy PORT_MII value.
1483 	 */
1484 	if (using_genphy)
1485 		phydev->port = PORT_MII;
1486 
1487 	/* Initial carrier state is off as the phy is about to be
1488 	 * (re)initialized.
1489 	 */
1490 	if (dev)
1491 		netif_carrier_off(phydev->attached_dev);
1492 
1493 	/* Do initial configuration here, now that
1494 	 * we have certain key parameters
1495 	 * (dev_flags and interface)
1496 	 */
1497 	err = phy_init_hw(phydev);
1498 	if (err)
1499 		goto error;
1500 
1501 	phy_resume(phydev);
1502 	phy_led_triggers_register(phydev);
1503 
1504 	return err;
1505 
1506 error:
1507 	/* phy_detach() does all of the cleanup below */
1508 	phy_detach(phydev);
1509 	return err;
1510 
1511 error_module_put:
1512 	module_put(d->driver->owner);
1513 error_put_device:
1514 	put_device(d);
1515 	if (ndev_owner != bus->owner)
1516 		module_put(bus->owner);
1517 	return err;
1518 }
1519 EXPORT_SYMBOL(phy_attach_direct);
1520 
1521 /**
1522  * phy_attach - attach a network device to a particular PHY device
1523  * @dev: network device to attach
1524  * @bus_id: Bus ID of PHY device to attach
1525  * @interface: PHY device's interface
1526  *
1527  * Description: Same as phy_attach_direct() except that a PHY bus_id
1528  *     string is passed instead of a pointer to a struct phy_device.
1529  */
1530 struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1531 			      phy_interface_t interface)
1532 {
1533 	struct bus_type *bus = &mdio_bus_type;
1534 	struct phy_device *phydev;
1535 	struct device *d;
1536 	int rc;
1537 
1538 	if (!dev)
1539 		return ERR_PTR(-EINVAL);
1540 
1541 	/* Search the list of PHY devices on the mdio bus for the
1542 	 * PHY with the requested name
1543 	 */
1544 	d = bus_find_device_by_name(bus, NULL, bus_id);
1545 	if (!d) {
1546 		pr_err("PHY %s not found\n", bus_id);
1547 		return ERR_PTR(-ENODEV);
1548 	}
1549 	phydev = to_phy_device(d);
1550 
1551 	rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
1552 	put_device(d);
1553 	if (rc)
1554 		return ERR_PTR(rc);
1555 
1556 	return phydev;
1557 }
1558 EXPORT_SYMBOL(phy_attach);
1559 
1560 static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1561 				      struct device_driver *driver)
1562 {
1563 	struct device *d = &phydev->mdio.dev;
1564 	bool ret = false;
1565 
1566 	if (!phydev->drv)
1567 		return ret;
1568 
1569 	get_device(d);
1570 	ret = d->driver == driver;
1571 	put_device(d);
1572 
1573 	return ret;
1574 }
1575 
1576 bool phy_driver_is_genphy(struct phy_device *phydev)
1577 {
1578 	return phy_driver_is_genphy_kind(phydev,
1579 					 &genphy_driver.mdiodrv.driver);
1580 }
1581 EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1582 
1583 bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1584 {
1585 	return phy_driver_is_genphy_kind(phydev,
1586 					 &genphy_c45_driver.mdiodrv.driver);
1587 }
1588 EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1589 
1590 /**
1591  * phy_package_join - join a common PHY group
1592  * @phydev: target phy_device struct
1593  * @addr: cookie and PHY address for global register access
1594  * @priv_size: if non-zero allocate this amount of bytes for private data
1595  *
1596  * This joins a PHY group and provides a shared storage for all phydevs in
1597  * this group. This is intended to be used for packages which contain
1598  * more than one PHY, for example a quad PHY transceiver.
1599  *
1600  * The addr parameter serves as a cookie which has to have the same value
1601  * for all members of one group and as a PHY address to access generic
1602  * registers of a PHY package. Usually, one of the PHY addresses of the
1603  * different PHYs in the package provides access to these global registers.
1604  * The address which is given here, will be used in the phy_package_read()
1605  * and phy_package_write() convenience functions. If your PHY doesn't have
1606  * global registers you can just pick any of the PHY addresses.
1607  *
1608  * This will set the shared pointer of the phydev to the shared storage.
1609  * If this is the first call for a this cookie the shared storage will be
1610  * allocated. If priv_size is non-zero, the given amount of bytes are
1611  * allocated for the priv member.
1612  *
1613  * Returns < 1 on error, 0 on success. Esp. calling phy_package_join()
1614  * with the same cookie but a different priv_size is an error.
1615  */
1616 int phy_package_join(struct phy_device *phydev, int addr, size_t priv_size)
1617 {
1618 	struct mii_bus *bus = phydev->mdio.bus;
1619 	struct phy_package_shared *shared;
1620 	int ret;
1621 
1622 	if (addr < 0 || addr >= PHY_MAX_ADDR)
1623 		return -EINVAL;
1624 
1625 	mutex_lock(&bus->shared_lock);
1626 	shared = bus->shared[addr];
1627 	if (!shared) {
1628 		ret = -ENOMEM;
1629 		shared = kzalloc(sizeof(*shared), GFP_KERNEL);
1630 		if (!shared)
1631 			goto err_unlock;
1632 		if (priv_size) {
1633 			shared->priv = kzalloc(priv_size, GFP_KERNEL);
1634 			if (!shared->priv)
1635 				goto err_free;
1636 			shared->priv_size = priv_size;
1637 		}
1638 		shared->addr = addr;
1639 		refcount_set(&shared->refcnt, 1);
1640 		bus->shared[addr] = shared;
1641 	} else {
1642 		ret = -EINVAL;
1643 		if (priv_size && priv_size != shared->priv_size)
1644 			goto err_unlock;
1645 		refcount_inc(&shared->refcnt);
1646 	}
1647 	mutex_unlock(&bus->shared_lock);
1648 
1649 	phydev->shared = shared;
1650 
1651 	return 0;
1652 
1653 err_free:
1654 	kfree(shared);
1655 err_unlock:
1656 	mutex_unlock(&bus->shared_lock);
1657 	return ret;
1658 }
1659 EXPORT_SYMBOL_GPL(phy_package_join);
1660 
1661 /**
1662  * phy_package_leave - leave a common PHY group
1663  * @phydev: target phy_device struct
1664  *
1665  * This leaves a PHY group created by phy_package_join(). If this phydev
1666  * was the last user of the shared data between the group, this data is
1667  * freed. Resets the phydev->shared pointer to NULL.
1668  */
1669 void phy_package_leave(struct phy_device *phydev)
1670 {
1671 	struct phy_package_shared *shared = phydev->shared;
1672 	struct mii_bus *bus = phydev->mdio.bus;
1673 
1674 	if (!shared)
1675 		return;
1676 
1677 	if (refcount_dec_and_mutex_lock(&shared->refcnt, &bus->shared_lock)) {
1678 		bus->shared[shared->addr] = NULL;
1679 		mutex_unlock(&bus->shared_lock);
1680 		kfree(shared->priv);
1681 		kfree(shared);
1682 	}
1683 
1684 	phydev->shared = NULL;
1685 }
1686 EXPORT_SYMBOL_GPL(phy_package_leave);
1687 
1688 static void devm_phy_package_leave(struct device *dev, void *res)
1689 {
1690 	phy_package_leave(*(struct phy_device **)res);
1691 }
1692 
1693 /**
1694  * devm_phy_package_join - resource managed phy_package_join()
1695  * @dev: device that is registering this PHY package
1696  * @phydev: target phy_device struct
1697  * @addr: cookie and PHY address for global register access
1698  * @priv_size: if non-zero allocate this amount of bytes for private data
1699  *
1700  * Managed phy_package_join(). Shared storage fetched by this function,
1701  * phy_package_leave() is automatically called on driver detach. See
1702  * phy_package_join() for more information.
1703  */
1704 int devm_phy_package_join(struct device *dev, struct phy_device *phydev,
1705 			  int addr, size_t priv_size)
1706 {
1707 	struct phy_device **ptr;
1708 	int ret;
1709 
1710 	ptr = devres_alloc(devm_phy_package_leave, sizeof(*ptr),
1711 			   GFP_KERNEL);
1712 	if (!ptr)
1713 		return -ENOMEM;
1714 
1715 	ret = phy_package_join(phydev, addr, priv_size);
1716 
1717 	if (!ret) {
1718 		*ptr = phydev;
1719 		devres_add(dev, ptr);
1720 	} else {
1721 		devres_free(ptr);
1722 	}
1723 
1724 	return ret;
1725 }
1726 EXPORT_SYMBOL_GPL(devm_phy_package_join);
1727 
1728 /**
1729  * phy_detach - detach a PHY device from its network device
1730  * @phydev: target phy_device struct
1731  *
1732  * This detaches the phy device from its network device and the phy
1733  * driver, and drops the reference count taken in phy_attach_direct().
1734  */
1735 void phy_detach(struct phy_device *phydev)
1736 {
1737 	struct net_device *dev = phydev->attached_dev;
1738 	struct module *ndev_owner = NULL;
1739 	struct mii_bus *bus;
1740 
1741 	if (phydev->sysfs_links) {
1742 		if (dev)
1743 			sysfs_remove_link(&dev->dev.kobj, "phydev");
1744 		sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1745 	}
1746 
1747 	if (!phydev->attached_dev)
1748 		sysfs_remove_file(&phydev->mdio.dev.kobj,
1749 				  &dev_attr_phy_standalone.attr);
1750 
1751 	phy_suspend(phydev);
1752 	if (dev) {
1753 		phydev->attached_dev->phydev = NULL;
1754 		phydev->attached_dev = NULL;
1755 	}
1756 	phydev->phylink = NULL;
1757 
1758 	phy_led_triggers_unregister(phydev);
1759 
1760 	if (phydev->mdio.dev.driver)
1761 		module_put(phydev->mdio.dev.driver->owner);
1762 
1763 	/* If the device had no specific driver before (i.e. - it
1764 	 * was using the generic driver), we unbind the device
1765 	 * from the generic driver so that there's a chance a
1766 	 * real driver could be loaded
1767 	 */
1768 	if (phy_driver_is_genphy(phydev) ||
1769 	    phy_driver_is_genphy_10g(phydev))
1770 		device_release_driver(&phydev->mdio.dev);
1771 
1772 	/* Assert the reset signal */
1773 	phy_device_reset(phydev, 1);
1774 
1775 	/*
1776 	 * The phydev might go away on the put_device() below, so avoid
1777 	 * a use-after-free bug by reading the underlying bus first.
1778 	 */
1779 	bus = phydev->mdio.bus;
1780 
1781 	put_device(&phydev->mdio.dev);
1782 	if (dev)
1783 		ndev_owner = dev->dev.parent->driver->owner;
1784 	if (ndev_owner != bus->owner)
1785 		module_put(bus->owner);
1786 }
1787 EXPORT_SYMBOL(phy_detach);
1788 
1789 int phy_suspend(struct phy_device *phydev)
1790 {
1791 	struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1792 	struct net_device *netdev = phydev->attached_dev;
1793 	struct phy_driver *phydrv = phydev->drv;
1794 	int ret;
1795 
1796 	if (phydev->suspended)
1797 		return 0;
1798 
1799 	/* If the device has WOL enabled, we cannot suspend the PHY */
1800 	phy_ethtool_get_wol(phydev, &wol);
1801 	if (wol.wolopts || (netdev && netdev->wol_enabled))
1802 		return -EBUSY;
1803 
1804 	if (!phydrv || !phydrv->suspend)
1805 		return 0;
1806 
1807 	ret = phydrv->suspend(phydev);
1808 	if (!ret)
1809 		phydev->suspended = true;
1810 
1811 	return ret;
1812 }
1813 EXPORT_SYMBOL(phy_suspend);
1814 
1815 int __phy_resume(struct phy_device *phydev)
1816 {
1817 	struct phy_driver *phydrv = phydev->drv;
1818 	int ret;
1819 
1820 	lockdep_assert_held(&phydev->lock);
1821 
1822 	if (!phydrv || !phydrv->resume)
1823 		return 0;
1824 
1825 	ret = phydrv->resume(phydev);
1826 	if (!ret)
1827 		phydev->suspended = false;
1828 
1829 	return ret;
1830 }
1831 EXPORT_SYMBOL(__phy_resume);
1832 
1833 int phy_resume(struct phy_device *phydev)
1834 {
1835 	int ret;
1836 
1837 	mutex_lock(&phydev->lock);
1838 	ret = __phy_resume(phydev);
1839 	mutex_unlock(&phydev->lock);
1840 
1841 	return ret;
1842 }
1843 EXPORT_SYMBOL(phy_resume);
1844 
1845 int phy_loopback(struct phy_device *phydev, bool enable)
1846 {
1847 	int ret = 0;
1848 
1849 	if (!phydev->drv)
1850 		return -EIO;
1851 
1852 	mutex_lock(&phydev->lock);
1853 
1854 	if (enable && phydev->loopback_enabled) {
1855 		ret = -EBUSY;
1856 		goto out;
1857 	}
1858 
1859 	if (!enable && !phydev->loopback_enabled) {
1860 		ret = -EINVAL;
1861 		goto out;
1862 	}
1863 
1864 	if (phydev->drv->set_loopback)
1865 		ret = phydev->drv->set_loopback(phydev, enable);
1866 	else
1867 		ret = genphy_loopback(phydev, enable);
1868 
1869 	if (ret)
1870 		goto out;
1871 
1872 	phydev->loopback_enabled = enable;
1873 
1874 out:
1875 	mutex_unlock(&phydev->lock);
1876 	return ret;
1877 }
1878 EXPORT_SYMBOL(phy_loopback);
1879 
1880 /**
1881  * phy_reset_after_clk_enable - perform a PHY reset if needed
1882  * @phydev: target phy_device struct
1883  *
1884  * Description: Some PHYs are known to need a reset after their refclk was
1885  *   enabled. This function evaluates the flags and perform the reset if it's
1886  *   needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1887  *   was reset.
1888  */
1889 int phy_reset_after_clk_enable(struct phy_device *phydev)
1890 {
1891 	if (!phydev || !phydev->drv)
1892 		return -ENODEV;
1893 
1894 	if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1895 		phy_device_reset(phydev, 1);
1896 		phy_device_reset(phydev, 0);
1897 		return 1;
1898 	}
1899 
1900 	return 0;
1901 }
1902 EXPORT_SYMBOL(phy_reset_after_clk_enable);
1903 
1904 /* Generic PHY support and helper functions */
1905 
1906 /**
1907  * genphy_config_advert - sanitize and advertise auto-negotiation parameters
1908  * @phydev: target phy_device struct
1909  *
1910  * Description: Writes MII_ADVERTISE with the appropriate values,
1911  *   after sanitizing the values to make sure we only advertise
1912  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1913  *   hasn't changed, and > 0 if it has changed.
1914  */
1915 static int genphy_config_advert(struct phy_device *phydev)
1916 {
1917 	int err, bmsr, changed = 0;
1918 	u32 adv;
1919 
1920 	/* Only allow advertising what this PHY supports */
1921 	linkmode_and(phydev->advertising, phydev->advertising,
1922 		     phydev->supported);
1923 
1924 	adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
1925 
1926 	/* Setup standard advertisement */
1927 	err = phy_modify_changed(phydev, MII_ADVERTISE,
1928 				 ADVERTISE_ALL | ADVERTISE_100BASE4 |
1929 				 ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
1930 				 adv);
1931 	if (err < 0)
1932 		return err;
1933 	if (err > 0)
1934 		changed = 1;
1935 
1936 	bmsr = phy_read(phydev, MII_BMSR);
1937 	if (bmsr < 0)
1938 		return bmsr;
1939 
1940 	/* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1941 	 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1942 	 * logical 1.
1943 	 */
1944 	if (!(bmsr & BMSR_ESTATEN))
1945 		return changed;
1946 
1947 	adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
1948 
1949 	err = phy_modify_changed(phydev, MII_CTRL1000,
1950 				 ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1951 				 adv);
1952 	if (err < 0)
1953 		return err;
1954 	if (err > 0)
1955 		changed = 1;
1956 
1957 	return changed;
1958 }
1959 
1960 /**
1961  * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1962  * @phydev: target phy_device struct
1963  *
1964  * Description: Writes MII_ADVERTISE with the appropriate values,
1965  *   after sanitizing the values to make sure we only advertise
1966  *   what is supported.  Returns < 0 on error, 0 if the PHY's advertisement
1967  *   hasn't changed, and > 0 if it has changed. This function is intended
1968  *   for Clause 37 1000Base-X mode.
1969  */
1970 static int genphy_c37_config_advert(struct phy_device *phydev)
1971 {
1972 	u16 adv = 0;
1973 
1974 	/* Only allow advertising what this PHY supports */
1975 	linkmode_and(phydev->advertising, phydev->advertising,
1976 		     phydev->supported);
1977 
1978 	if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1979 			      phydev->advertising))
1980 		adv |= ADVERTISE_1000XFULL;
1981 	if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1982 			      phydev->advertising))
1983 		adv |= ADVERTISE_1000XPAUSE;
1984 	if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1985 			      phydev->advertising))
1986 		adv |= ADVERTISE_1000XPSE_ASYM;
1987 
1988 	return phy_modify_changed(phydev, MII_ADVERTISE,
1989 				  ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1990 				  ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
1991 				  adv);
1992 }
1993 
1994 /**
1995  * genphy_config_eee_advert - disable unwanted eee mode advertisement
1996  * @phydev: target phy_device struct
1997  *
1998  * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1999  *   efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
2000  *   changed, and 1 if it has changed.
2001  */
2002 int genphy_config_eee_advert(struct phy_device *phydev)
2003 {
2004 	int err;
2005 
2006 	/* Nothing to disable */
2007 	if (!phydev->eee_broken_modes)
2008 		return 0;
2009 
2010 	err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
2011 				     phydev->eee_broken_modes, 0);
2012 	/* If the call failed, we assume that EEE is not supported */
2013 	return err < 0 ? 0 : err;
2014 }
2015 EXPORT_SYMBOL(genphy_config_eee_advert);
2016 
2017 /**
2018  * genphy_setup_forced - configures/forces speed/duplex from @phydev
2019  * @phydev: target phy_device struct
2020  *
2021  * Description: Configures MII_BMCR to force speed/duplex
2022  *   to the values in phydev. Assumes that the values are valid.
2023  *   Please see phy_sanitize_settings().
2024  */
2025 int genphy_setup_forced(struct phy_device *phydev)
2026 {
2027 	u16 ctl;
2028 
2029 	phydev->pause = 0;
2030 	phydev->asym_pause = 0;
2031 
2032 	ctl = mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2033 
2034 	return phy_modify(phydev, MII_BMCR,
2035 			  ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
2036 }
2037 EXPORT_SYMBOL(genphy_setup_forced);
2038 
2039 static int genphy_setup_master_slave(struct phy_device *phydev)
2040 {
2041 	u16 ctl = 0;
2042 
2043 	if (!phydev->is_gigabit_capable)
2044 		return 0;
2045 
2046 	switch (phydev->master_slave_set) {
2047 	case MASTER_SLAVE_CFG_MASTER_PREFERRED:
2048 		ctl |= CTL1000_PREFER_MASTER;
2049 		break;
2050 	case MASTER_SLAVE_CFG_SLAVE_PREFERRED:
2051 		break;
2052 	case MASTER_SLAVE_CFG_MASTER_FORCE:
2053 		ctl |= CTL1000_AS_MASTER;
2054 		fallthrough;
2055 	case MASTER_SLAVE_CFG_SLAVE_FORCE:
2056 		ctl |= CTL1000_ENABLE_MASTER;
2057 		break;
2058 	case MASTER_SLAVE_CFG_UNKNOWN:
2059 	case MASTER_SLAVE_CFG_UNSUPPORTED:
2060 		return 0;
2061 	default:
2062 		phydev_warn(phydev, "Unsupported Master/Slave mode\n");
2063 		return -EOPNOTSUPP;
2064 	}
2065 
2066 	return phy_modify_changed(phydev, MII_CTRL1000,
2067 				  (CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER |
2068 				   CTL1000_PREFER_MASTER), ctl);
2069 }
2070 
2071 int genphy_read_master_slave(struct phy_device *phydev)
2072 {
2073 	int cfg, state;
2074 	int val;
2075 
2076 	phydev->master_slave_get = MASTER_SLAVE_CFG_UNKNOWN;
2077 	phydev->master_slave_state = MASTER_SLAVE_STATE_UNKNOWN;
2078 
2079 	val = phy_read(phydev, MII_CTRL1000);
2080 	if (val < 0)
2081 		return val;
2082 
2083 	if (val & CTL1000_ENABLE_MASTER) {
2084 		if (val & CTL1000_AS_MASTER)
2085 			cfg = MASTER_SLAVE_CFG_MASTER_FORCE;
2086 		else
2087 			cfg = MASTER_SLAVE_CFG_SLAVE_FORCE;
2088 	} else {
2089 		if (val & CTL1000_PREFER_MASTER)
2090 			cfg = MASTER_SLAVE_CFG_MASTER_PREFERRED;
2091 		else
2092 			cfg = MASTER_SLAVE_CFG_SLAVE_PREFERRED;
2093 	}
2094 
2095 	val = phy_read(phydev, MII_STAT1000);
2096 	if (val < 0)
2097 		return val;
2098 
2099 	if (val & LPA_1000MSFAIL) {
2100 		state = MASTER_SLAVE_STATE_ERR;
2101 	} else if (phydev->link) {
2102 		/* this bits are valid only for active link */
2103 		if (val & LPA_1000MSRES)
2104 			state = MASTER_SLAVE_STATE_MASTER;
2105 		else
2106 			state = MASTER_SLAVE_STATE_SLAVE;
2107 	} else {
2108 		state = MASTER_SLAVE_STATE_UNKNOWN;
2109 	}
2110 
2111 	phydev->master_slave_get = cfg;
2112 	phydev->master_slave_state = state;
2113 
2114 	return 0;
2115 }
2116 EXPORT_SYMBOL(genphy_read_master_slave);
2117 
2118 /**
2119  * genphy_restart_aneg - Enable and Restart Autonegotiation
2120  * @phydev: target phy_device struct
2121  */
2122 int genphy_restart_aneg(struct phy_device *phydev)
2123 {
2124 	/* Don't isolate the PHY if we're negotiating */
2125 	return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
2126 			  BMCR_ANENABLE | BMCR_ANRESTART);
2127 }
2128 EXPORT_SYMBOL(genphy_restart_aneg);
2129 
2130 /**
2131  * genphy_check_and_restart_aneg - Enable and restart auto-negotiation
2132  * @phydev: target phy_device struct
2133  * @restart: whether aneg restart is requested
2134  *
2135  * Check, and restart auto-negotiation if needed.
2136  */
2137 int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
2138 {
2139 	int ret;
2140 
2141 	if (!restart) {
2142 		/* Advertisement hasn't changed, but maybe aneg was never on to
2143 		 * begin with?  Or maybe phy was isolated?
2144 		 */
2145 		ret = phy_read(phydev, MII_BMCR);
2146 		if (ret < 0)
2147 			return ret;
2148 
2149 		if (!(ret & BMCR_ANENABLE) || (ret & BMCR_ISOLATE))
2150 			restart = true;
2151 	}
2152 
2153 	if (restart)
2154 		return genphy_restart_aneg(phydev);
2155 
2156 	return 0;
2157 }
2158 EXPORT_SYMBOL(genphy_check_and_restart_aneg);
2159 
2160 /**
2161  * __genphy_config_aneg - restart auto-negotiation or write BMCR
2162  * @phydev: target phy_device struct
2163  * @changed: whether autoneg is requested
2164  *
2165  * Description: If auto-negotiation is enabled, we configure the
2166  *   advertising, and then restart auto-negotiation.  If it is not
2167  *   enabled, then we write the BMCR.
2168  */
2169 int __genphy_config_aneg(struct phy_device *phydev, bool changed)
2170 {
2171 	int err;
2172 
2173 	if (genphy_config_eee_advert(phydev))
2174 		changed = true;
2175 
2176 	err = genphy_setup_master_slave(phydev);
2177 	if (err < 0)
2178 		return err;
2179 	else if (err)
2180 		changed = true;
2181 
2182 	if (AUTONEG_ENABLE != phydev->autoneg)
2183 		return genphy_setup_forced(phydev);
2184 
2185 	err = genphy_config_advert(phydev);
2186 	if (err < 0) /* error */
2187 		return err;
2188 	else if (err)
2189 		changed = true;
2190 
2191 	return genphy_check_and_restart_aneg(phydev, changed);
2192 }
2193 EXPORT_SYMBOL(__genphy_config_aneg);
2194 
2195 /**
2196  * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
2197  * @phydev: target phy_device struct
2198  *
2199  * Description: If auto-negotiation is enabled, we configure the
2200  *   advertising, and then restart auto-negotiation.  If it is not
2201  *   enabled, then we write the BMCR. This function is intended
2202  *   for use with Clause 37 1000Base-X mode.
2203  */
2204 int genphy_c37_config_aneg(struct phy_device *phydev)
2205 {
2206 	int err, changed;
2207 
2208 	if (phydev->autoneg != AUTONEG_ENABLE)
2209 		return genphy_setup_forced(phydev);
2210 
2211 	err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
2212 			 BMCR_SPEED1000);
2213 	if (err)
2214 		return err;
2215 
2216 	changed = genphy_c37_config_advert(phydev);
2217 	if (changed < 0) /* error */
2218 		return changed;
2219 
2220 	if (!changed) {
2221 		/* Advertisement hasn't changed, but maybe aneg was never on to
2222 		 * begin with?  Or maybe phy was isolated?
2223 		 */
2224 		int ctl = phy_read(phydev, MII_BMCR);
2225 
2226 		if (ctl < 0)
2227 			return ctl;
2228 
2229 		if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
2230 			changed = 1; /* do restart aneg */
2231 	}
2232 
2233 	/* Only restart aneg if we are advertising something different
2234 	 * than we were before.
2235 	 */
2236 	if (changed > 0)
2237 		return genphy_restart_aneg(phydev);
2238 
2239 	return 0;
2240 }
2241 EXPORT_SYMBOL(genphy_c37_config_aneg);
2242 
2243 /**
2244  * genphy_aneg_done - return auto-negotiation status
2245  * @phydev: target phy_device struct
2246  *
2247  * Description: Reads the status register and returns 0 either if
2248  *   auto-negotiation is incomplete, or if there was an error.
2249  *   Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
2250  */
2251 int genphy_aneg_done(struct phy_device *phydev)
2252 {
2253 	int retval = phy_read(phydev, MII_BMSR);
2254 
2255 	return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
2256 }
2257 EXPORT_SYMBOL(genphy_aneg_done);
2258 
2259 /**
2260  * genphy_update_link - update link status in @phydev
2261  * @phydev: target phy_device struct
2262  *
2263  * Description: Update the value in phydev->link to reflect the
2264  *   current link value.  In order to do this, we need to read
2265  *   the status register twice, keeping the second value.
2266  */
2267 int genphy_update_link(struct phy_device *phydev)
2268 {
2269 	int status = 0, bmcr;
2270 
2271 	bmcr = phy_read(phydev, MII_BMCR);
2272 	if (bmcr < 0)
2273 		return bmcr;
2274 
2275 	/* Autoneg is being started, therefore disregard BMSR value and
2276 	 * report link as down.
2277 	 */
2278 	if (bmcr & BMCR_ANRESTART)
2279 		goto done;
2280 
2281 	/* The link state is latched low so that momentary link
2282 	 * drops can be detected. Do not double-read the status
2283 	 * in polling mode to detect such short link drops except
2284 	 * the link was already down.
2285 	 */
2286 	if (!phy_polling_mode(phydev) || !phydev->link) {
2287 		status = phy_read(phydev, MII_BMSR);
2288 		if (status < 0)
2289 			return status;
2290 		else if (status & BMSR_LSTATUS)
2291 			goto done;
2292 	}
2293 
2294 	/* Read link and autonegotiation status */
2295 	status = phy_read(phydev, MII_BMSR);
2296 	if (status < 0)
2297 		return status;
2298 done:
2299 	phydev->link = status & BMSR_LSTATUS ? 1 : 0;
2300 	phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
2301 
2302 	/* Consider the case that autoneg was started and "aneg complete"
2303 	 * bit has been reset, but "link up" bit not yet.
2304 	 */
2305 	if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
2306 		phydev->link = 0;
2307 
2308 	return 0;
2309 }
2310 EXPORT_SYMBOL(genphy_update_link);
2311 
2312 int genphy_read_lpa(struct phy_device *phydev)
2313 {
2314 	int lpa, lpagb;
2315 
2316 	if (phydev->autoneg == AUTONEG_ENABLE) {
2317 		if (!phydev->autoneg_complete) {
2318 			mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2319 							0);
2320 			mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
2321 			return 0;
2322 		}
2323 
2324 		if (phydev->is_gigabit_capable) {
2325 			lpagb = phy_read(phydev, MII_STAT1000);
2326 			if (lpagb < 0)
2327 				return lpagb;
2328 
2329 			if (lpagb & LPA_1000MSFAIL) {
2330 				int adv = phy_read(phydev, MII_CTRL1000);
2331 
2332 				if (adv < 0)
2333 					return adv;
2334 
2335 				if (adv & CTL1000_ENABLE_MASTER)
2336 					phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
2337 				else
2338 					phydev_err(phydev, "Master/Slave resolution failed\n");
2339 				return -ENOLINK;
2340 			}
2341 
2342 			mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
2343 							lpagb);
2344 		}
2345 
2346 		lpa = phy_read(phydev, MII_LPA);
2347 		if (lpa < 0)
2348 			return lpa;
2349 
2350 		mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
2351 	} else {
2352 		linkmode_zero(phydev->lp_advertising);
2353 	}
2354 
2355 	return 0;
2356 }
2357 EXPORT_SYMBOL(genphy_read_lpa);
2358 
2359 /**
2360  * genphy_read_status_fixed - read the link parameters for !aneg mode
2361  * @phydev: target phy_device struct
2362  *
2363  * Read the current duplex and speed state for a PHY operating with
2364  * autonegotiation disabled.
2365  */
2366 int genphy_read_status_fixed(struct phy_device *phydev)
2367 {
2368 	int bmcr = phy_read(phydev, MII_BMCR);
2369 
2370 	if (bmcr < 0)
2371 		return bmcr;
2372 
2373 	if (bmcr & BMCR_FULLDPLX)
2374 		phydev->duplex = DUPLEX_FULL;
2375 	else
2376 		phydev->duplex = DUPLEX_HALF;
2377 
2378 	if (bmcr & BMCR_SPEED1000)
2379 		phydev->speed = SPEED_1000;
2380 	else if (bmcr & BMCR_SPEED100)
2381 		phydev->speed = SPEED_100;
2382 	else
2383 		phydev->speed = SPEED_10;
2384 
2385 	return 0;
2386 }
2387 EXPORT_SYMBOL(genphy_read_status_fixed);
2388 
2389 /**
2390  * genphy_read_status - check the link status and update current link state
2391  * @phydev: target phy_device struct
2392  *
2393  * Description: Check the link, then figure out the current state
2394  *   by comparing what we advertise with what the link partner
2395  *   advertises.  Start by checking the gigabit possibilities,
2396  *   then move on to 10/100.
2397  */
2398 int genphy_read_status(struct phy_device *phydev)
2399 {
2400 	int err, old_link = phydev->link;
2401 
2402 	/* Update the link, but return if there was an error */
2403 	err = genphy_update_link(phydev);
2404 	if (err)
2405 		return err;
2406 
2407 	/* why bother the PHY if nothing can have changed */
2408 	if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2409 		return 0;
2410 
2411 	phydev->master_slave_get = MASTER_SLAVE_CFG_UNSUPPORTED;
2412 	phydev->master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
2413 	phydev->speed = SPEED_UNKNOWN;
2414 	phydev->duplex = DUPLEX_UNKNOWN;
2415 	phydev->pause = 0;
2416 	phydev->asym_pause = 0;
2417 
2418 	if (phydev->is_gigabit_capable) {
2419 		err = genphy_read_master_slave(phydev);
2420 		if (err < 0)
2421 			return err;
2422 	}
2423 
2424 	err = genphy_read_lpa(phydev);
2425 	if (err < 0)
2426 		return err;
2427 
2428 	if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2429 		phy_resolve_aneg_linkmode(phydev);
2430 	} else if (phydev->autoneg == AUTONEG_DISABLE) {
2431 		err = genphy_read_status_fixed(phydev);
2432 		if (err < 0)
2433 			return err;
2434 	}
2435 
2436 	return 0;
2437 }
2438 EXPORT_SYMBOL(genphy_read_status);
2439 
2440 /**
2441  * genphy_c37_read_status - check the link status and update current link state
2442  * @phydev: target phy_device struct
2443  *
2444  * Description: Check the link, then figure out the current state
2445  *   by comparing what we advertise with what the link partner
2446  *   advertises. This function is for Clause 37 1000Base-X mode.
2447  */
2448 int genphy_c37_read_status(struct phy_device *phydev)
2449 {
2450 	int lpa, err, old_link = phydev->link;
2451 
2452 	/* Update the link, but return if there was an error */
2453 	err = genphy_update_link(phydev);
2454 	if (err)
2455 		return err;
2456 
2457 	/* why bother the PHY if nothing can have changed */
2458 	if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2459 		return 0;
2460 
2461 	phydev->duplex = DUPLEX_UNKNOWN;
2462 	phydev->pause = 0;
2463 	phydev->asym_pause = 0;
2464 
2465 	if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2466 		lpa = phy_read(phydev, MII_LPA);
2467 		if (lpa < 0)
2468 			return lpa;
2469 
2470 		linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2471 				 phydev->lp_advertising, lpa & LPA_LPACK);
2472 		linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2473 				 phydev->lp_advertising, lpa & LPA_1000XFULL);
2474 		linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2475 				 phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2476 		linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2477 				 phydev->lp_advertising,
2478 				 lpa & LPA_1000XPAUSE_ASYM);
2479 
2480 		phy_resolve_aneg_linkmode(phydev);
2481 	} else if (phydev->autoneg == AUTONEG_DISABLE) {
2482 		int bmcr = phy_read(phydev, MII_BMCR);
2483 
2484 		if (bmcr < 0)
2485 			return bmcr;
2486 
2487 		if (bmcr & BMCR_FULLDPLX)
2488 			phydev->duplex = DUPLEX_FULL;
2489 		else
2490 			phydev->duplex = DUPLEX_HALF;
2491 	}
2492 
2493 	return 0;
2494 }
2495 EXPORT_SYMBOL(genphy_c37_read_status);
2496 
2497 /**
2498  * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2499  * @phydev: target phy_device struct
2500  *
2501  * Description: Perform a software PHY reset using the standard
2502  * BMCR_RESET bit and poll for the reset bit to be cleared.
2503  *
2504  * Returns: 0 on success, < 0 on failure
2505  */
2506 int genphy_soft_reset(struct phy_device *phydev)
2507 {
2508 	u16 res = BMCR_RESET;
2509 	int ret;
2510 
2511 	if (phydev->autoneg == AUTONEG_ENABLE)
2512 		res |= BMCR_ANRESTART;
2513 
2514 	ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
2515 	if (ret < 0)
2516 		return ret;
2517 
2518 	/* Clause 22 states that setting bit BMCR_RESET sets control registers
2519 	 * to their default value. Therefore the POWER DOWN bit is supposed to
2520 	 * be cleared after soft reset.
2521 	 */
2522 	phydev->suspended = 0;
2523 
2524 	ret = phy_poll_reset(phydev);
2525 	if (ret)
2526 		return ret;
2527 
2528 	/* BMCR may be reset to defaults */
2529 	if (phydev->autoneg == AUTONEG_DISABLE)
2530 		ret = genphy_setup_forced(phydev);
2531 
2532 	return ret;
2533 }
2534 EXPORT_SYMBOL(genphy_soft_reset);
2535 
2536 irqreturn_t genphy_handle_interrupt_no_ack(struct phy_device *phydev)
2537 {
2538 	/* It seems there are cases where the interrupts are handled by another
2539 	 * entity (ie an IRQ controller embedded inside the PHY) and do not
2540 	 * need any other interraction from phylib. In this case, just trigger
2541 	 * the state machine directly.
2542 	 */
2543 	phy_trigger_machine(phydev);
2544 
2545 	return 0;
2546 }
2547 EXPORT_SYMBOL(genphy_handle_interrupt_no_ack);
2548 
2549 /**
2550  * genphy_read_abilities - read PHY abilities from Clause 22 registers
2551  * @phydev: target phy_device struct
2552  *
2553  * Description: Reads the PHY's abilities and populates
2554  * phydev->supported accordingly.
2555  *
2556  * Returns: 0 on success, < 0 on failure
2557  */
2558 int genphy_read_abilities(struct phy_device *phydev)
2559 {
2560 	int val;
2561 
2562 	linkmode_set_bit_array(phy_basic_ports_array,
2563 			       ARRAY_SIZE(phy_basic_ports_array),
2564 			       phydev->supported);
2565 
2566 	val = phy_read(phydev, MII_BMSR);
2567 	if (val < 0)
2568 		return val;
2569 
2570 	linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2571 			 val & BMSR_ANEGCAPABLE);
2572 
2573 	linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2574 			 val & BMSR_100FULL);
2575 	linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2576 			 val & BMSR_100HALF);
2577 	linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2578 			 val & BMSR_10FULL);
2579 	linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2580 			 val & BMSR_10HALF);
2581 
2582 	if (val & BMSR_ESTATEN) {
2583 		val = phy_read(phydev, MII_ESTATUS);
2584 		if (val < 0)
2585 			return val;
2586 
2587 		linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2588 				 phydev->supported, val & ESTATUS_1000_TFULL);
2589 		linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2590 				 phydev->supported, val & ESTATUS_1000_THALF);
2591 		linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2592 				 phydev->supported, val & ESTATUS_1000_XFULL);
2593 	}
2594 
2595 	return 0;
2596 }
2597 EXPORT_SYMBOL(genphy_read_abilities);
2598 
2599 /* This is used for the phy device which doesn't support the MMD extended
2600  * register access, but it does have side effect when we are trying to access
2601  * the MMD register via indirect method.
2602  */
2603 int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2604 {
2605 	return -EOPNOTSUPP;
2606 }
2607 EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2608 
2609 int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2610 				 u16 regnum, u16 val)
2611 {
2612 	return -EOPNOTSUPP;
2613 }
2614 EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2615 
2616 int genphy_suspend(struct phy_device *phydev)
2617 {
2618 	return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
2619 }
2620 EXPORT_SYMBOL(genphy_suspend);
2621 
2622 int genphy_resume(struct phy_device *phydev)
2623 {
2624 	return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
2625 }
2626 EXPORT_SYMBOL(genphy_resume);
2627 
2628 int genphy_loopback(struct phy_device *phydev, bool enable)
2629 {
2630 	if (enable) {
2631 		u16 val, ctl = BMCR_LOOPBACK;
2632 		int ret;
2633 
2634 		ctl |= mii_bmcr_encode_fixed(phydev->speed, phydev->duplex);
2635 
2636 		phy_modify(phydev, MII_BMCR, ~0, ctl);
2637 
2638 		ret = phy_read_poll_timeout(phydev, MII_BMSR, val,
2639 					    val & BMSR_LSTATUS,
2640 				    5000, 500000, true);
2641 		if (ret)
2642 			return ret;
2643 	} else {
2644 		phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK, 0);
2645 
2646 		phy_config_aneg(phydev);
2647 	}
2648 
2649 	return 0;
2650 }
2651 EXPORT_SYMBOL(genphy_loopback);
2652 
2653 /**
2654  * phy_remove_link_mode - Remove a supported link mode
2655  * @phydev: phy_device structure to remove link mode from
2656  * @link_mode: Link mode to be removed
2657  *
2658  * Description: Some MACs don't support all link modes which the PHY
2659  * does.  e.g. a 1G MAC often does not support 1000Half. Add a helper
2660  * to remove a link mode.
2661  */
2662 void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2663 {
2664 	linkmode_clear_bit(link_mode, phydev->supported);
2665 	phy_advertise_supported(phydev);
2666 }
2667 EXPORT_SYMBOL(phy_remove_link_mode);
2668 
2669 static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2670 {
2671 	linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2672 		linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2673 	linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2674 		linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2675 }
2676 
2677 /**
2678  * phy_advertise_supported - Advertise all supported modes
2679  * @phydev: target phy_device struct
2680  *
2681  * Description: Called to advertise all supported modes, doesn't touch
2682  * pause mode advertising.
2683  */
2684 void phy_advertise_supported(struct phy_device *phydev)
2685 {
2686 	__ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2687 
2688 	linkmode_copy(new, phydev->supported);
2689 	phy_copy_pause_bits(new, phydev->advertising);
2690 	linkmode_copy(phydev->advertising, new);
2691 }
2692 EXPORT_SYMBOL(phy_advertise_supported);
2693 
2694 /**
2695  * phy_support_sym_pause - Enable support of symmetrical pause
2696  * @phydev: target phy_device struct
2697  *
2698  * Description: Called by the MAC to indicate is supports symmetrical
2699  * Pause, but not asym pause.
2700  */
2701 void phy_support_sym_pause(struct phy_device *phydev)
2702 {
2703 	linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
2704 	phy_copy_pause_bits(phydev->advertising, phydev->supported);
2705 }
2706 EXPORT_SYMBOL(phy_support_sym_pause);
2707 
2708 /**
2709  * phy_support_asym_pause - Enable support of asym pause
2710  * @phydev: target phy_device struct
2711  *
2712  * Description: Called by the MAC to indicate is supports Asym Pause.
2713  */
2714 void phy_support_asym_pause(struct phy_device *phydev)
2715 {
2716 	phy_copy_pause_bits(phydev->advertising, phydev->supported);
2717 }
2718 EXPORT_SYMBOL(phy_support_asym_pause);
2719 
2720 /**
2721  * phy_set_sym_pause - Configure symmetric Pause
2722  * @phydev: target phy_device struct
2723  * @rx: Receiver Pause is supported
2724  * @tx: Transmit Pause is supported
2725  * @autoneg: Auto neg should be used
2726  *
2727  * Description: Configure advertised Pause support depending on if
2728  * receiver pause and pause auto neg is supported. Generally called
2729  * from the set_pauseparam .ndo.
2730  */
2731 void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2732 		       bool autoneg)
2733 {
2734 	linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
2735 
2736 	if (rx && tx && autoneg)
2737 		linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2738 				 phydev->supported);
2739 
2740 	linkmode_copy(phydev->advertising, phydev->supported);
2741 }
2742 EXPORT_SYMBOL(phy_set_sym_pause);
2743 
2744 /**
2745  * phy_set_asym_pause - Configure Pause and Asym Pause
2746  * @phydev: target phy_device struct
2747  * @rx: Receiver Pause is supported
2748  * @tx: Transmit Pause is supported
2749  *
2750  * Description: Configure advertised Pause support depending on if
2751  * transmit and receiver pause is supported. If there has been a
2752  * change in adverting, trigger a new autoneg. Generally called from
2753  * the set_pauseparam .ndo.
2754  */
2755 void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2756 {
2757 	__ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
2758 
2759 	linkmode_copy(oldadv, phydev->advertising);
2760 	linkmode_set_pause(phydev->advertising, tx, rx);
2761 
2762 	if (!linkmode_equal(oldadv, phydev->advertising) &&
2763 	    phydev->autoneg)
2764 		phy_start_aneg(phydev);
2765 }
2766 EXPORT_SYMBOL(phy_set_asym_pause);
2767 
2768 /**
2769  * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2770  * @phydev: phy_device struct
2771  * @pp: requested pause configuration
2772  *
2773  * Description: Test if the PHY/MAC combination supports the Pause
2774  * configuration the user is requesting. Returns True if it is
2775  * supported, false otherwise.
2776  */
2777 bool phy_validate_pause(struct phy_device *phydev,
2778 			struct ethtool_pauseparam *pp)
2779 {
2780 	if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2781 			       phydev->supported) && pp->rx_pause)
2782 		return false;
2783 
2784 	if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2785 			       phydev->supported) &&
2786 	    pp->rx_pause != pp->tx_pause)
2787 		return false;
2788 
2789 	return true;
2790 }
2791 EXPORT_SYMBOL(phy_validate_pause);
2792 
2793 /**
2794  * phy_get_pause - resolve negotiated pause modes
2795  * @phydev: phy_device struct
2796  * @tx_pause: pointer to bool to indicate whether transmit pause should be
2797  * enabled.
2798  * @rx_pause: pointer to bool to indicate whether receive pause should be
2799  * enabled.
2800  *
2801  * Resolve and return the flow control modes according to the negotiation
2802  * result. This includes checking that we are operating in full duplex mode.
2803  * See linkmode_resolve_pause() for further details.
2804  */
2805 void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause)
2806 {
2807 	if (phydev->duplex != DUPLEX_FULL) {
2808 		*tx_pause = false;
2809 		*rx_pause = false;
2810 		return;
2811 	}
2812 
2813 	return linkmode_resolve_pause(phydev->advertising,
2814 				      phydev->lp_advertising,
2815 				      tx_pause, rx_pause);
2816 }
2817 EXPORT_SYMBOL(phy_get_pause);
2818 
2819 #if IS_ENABLED(CONFIG_OF_MDIO)
2820 static int phy_get_int_delay_property(struct device *dev, const char *name)
2821 {
2822 	s32 int_delay;
2823 	int ret;
2824 
2825 	ret = device_property_read_u32(dev, name, &int_delay);
2826 	if (ret)
2827 		return ret;
2828 
2829 	return int_delay;
2830 }
2831 #else
2832 static int phy_get_int_delay_property(struct device *dev, const char *name)
2833 {
2834 	return -EINVAL;
2835 }
2836 #endif
2837 
2838 /**
2839  * phy_get_internal_delay - returns the index of the internal delay
2840  * @phydev: phy_device struct
2841  * @dev: pointer to the devices device struct
2842  * @delay_values: array of delays the PHY supports
2843  * @size: the size of the delay array
2844  * @is_rx: boolean to indicate to get the rx internal delay
2845  *
2846  * Returns the index within the array of internal delay passed in.
2847  * If the device property is not present then the interface type is checked
2848  * if the interface defines use of internal delay then a 1 is returned otherwise
2849  * a 0 is returned.
2850  * The array must be in ascending order. If PHY does not have an ascending order
2851  * array then size = 0 and the value of the delay property is returned.
2852  * Return -EINVAL if the delay is invalid or cannot be found.
2853  */
2854 s32 phy_get_internal_delay(struct phy_device *phydev, struct device *dev,
2855 			   const int *delay_values, int size, bool is_rx)
2856 {
2857 	s32 delay;
2858 	int i;
2859 
2860 	if (is_rx) {
2861 		delay = phy_get_int_delay_property(dev, "rx-internal-delay-ps");
2862 		if (delay < 0 && size == 0) {
2863 			if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2864 			    phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
2865 				return 1;
2866 			else
2867 				return 0;
2868 		}
2869 
2870 	} else {
2871 		delay = phy_get_int_delay_property(dev, "tx-internal-delay-ps");
2872 		if (delay < 0 && size == 0) {
2873 			if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
2874 			    phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
2875 				return 1;
2876 			else
2877 				return 0;
2878 		}
2879 	}
2880 
2881 	if (delay < 0)
2882 		return delay;
2883 
2884 	if (delay && size == 0)
2885 		return delay;
2886 
2887 	if (delay < delay_values[0] || delay > delay_values[size - 1]) {
2888 		phydev_err(phydev, "Delay %d is out of range\n", delay);
2889 		return -EINVAL;
2890 	}
2891 
2892 	if (delay == delay_values[0])
2893 		return 0;
2894 
2895 	for (i = 1; i < size; i++) {
2896 		if (delay == delay_values[i])
2897 			return i;
2898 
2899 		/* Find an approximate index by looking up the table */
2900 		if (delay > delay_values[i - 1] &&
2901 		    delay < delay_values[i]) {
2902 			if (delay - delay_values[i - 1] <
2903 			    delay_values[i] - delay)
2904 				return i - 1;
2905 			else
2906 				return i;
2907 		}
2908 	}
2909 
2910 	phydev_err(phydev, "error finding internal delay index for %d\n",
2911 		   delay);
2912 
2913 	return -EINVAL;
2914 }
2915 EXPORT_SYMBOL(phy_get_internal_delay);
2916 
2917 static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2918 {
2919 	return phydrv->config_intr && phydrv->handle_interrupt;
2920 }
2921 
2922 /**
2923  * fwnode_mdio_find_device - Given a fwnode, find the mdio_device
2924  * @fwnode: pointer to the mdio_device's fwnode
2925  *
2926  * If successful, returns a pointer to the mdio_device with the embedded
2927  * struct device refcount incremented by one, or NULL on failure.
2928  * The caller should call put_device() on the mdio_device after its use.
2929  */
2930 struct mdio_device *fwnode_mdio_find_device(struct fwnode_handle *fwnode)
2931 {
2932 	struct device *d;
2933 
2934 	if (!fwnode)
2935 		return NULL;
2936 
2937 	d = bus_find_device_by_fwnode(&mdio_bus_type, fwnode);
2938 	if (!d)
2939 		return NULL;
2940 
2941 	return to_mdio_device(d);
2942 }
2943 EXPORT_SYMBOL(fwnode_mdio_find_device);
2944 
2945 /**
2946  * fwnode_phy_find_device - For provided phy_fwnode, find phy_device.
2947  *
2948  * @phy_fwnode: Pointer to the phy's fwnode.
2949  *
2950  * If successful, returns a pointer to the phy_device with the embedded
2951  * struct device refcount incremented by one, or NULL on failure.
2952  */
2953 struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
2954 {
2955 	struct mdio_device *mdiodev;
2956 
2957 	mdiodev = fwnode_mdio_find_device(phy_fwnode);
2958 	if (!mdiodev)
2959 		return NULL;
2960 
2961 	if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
2962 		return to_phy_device(&mdiodev->dev);
2963 
2964 	put_device(&mdiodev->dev);
2965 
2966 	return NULL;
2967 }
2968 EXPORT_SYMBOL(fwnode_phy_find_device);
2969 
2970 /**
2971  * device_phy_find_device - For the given device, get the phy_device
2972  * @dev: Pointer to the given device
2973  *
2974  * Refer return conditions of fwnode_phy_find_device().
2975  */
2976 struct phy_device *device_phy_find_device(struct device *dev)
2977 {
2978 	return fwnode_phy_find_device(dev_fwnode(dev));
2979 }
2980 EXPORT_SYMBOL_GPL(device_phy_find_device);
2981 
2982 /**
2983  * fwnode_get_phy_node - Get the phy_node using the named reference.
2984  * @fwnode: Pointer to fwnode from which phy_node has to be obtained.
2985  *
2986  * Refer return conditions of fwnode_find_reference().
2987  * For ACPI, only "phy-handle" is supported. Legacy DT properties "phy"
2988  * and "phy-device" are not supported in ACPI. DT supports all the three
2989  * named references to the phy node.
2990  */
2991 struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
2992 {
2993 	struct fwnode_handle *phy_node;
2994 
2995 	/* Only phy-handle is used for ACPI */
2996 	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
2997 	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
2998 		return phy_node;
2999 	phy_node = fwnode_find_reference(fwnode, "phy", 0);
3000 	if (IS_ERR(phy_node))
3001 		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
3002 	return phy_node;
3003 }
3004 EXPORT_SYMBOL_GPL(fwnode_get_phy_node);
3005 
3006 /**
3007  * phy_probe - probe and init a PHY device
3008  * @dev: device to probe and init
3009  *
3010  * Description: Take care of setting up the phy_device structure,
3011  *   set the state to READY (the driver's init function should
3012  *   set it to STARTING if needed).
3013  */
3014 static int phy_probe(struct device *dev)
3015 {
3016 	struct phy_device *phydev = to_phy_device(dev);
3017 	struct device_driver *drv = phydev->mdio.dev.driver;
3018 	struct phy_driver *phydrv = to_phy_driver(drv);
3019 	int err = 0;
3020 
3021 	phydev->drv = phydrv;
3022 
3023 	/* Disable the interrupt if the PHY doesn't support it
3024 	 * but the interrupt is still a valid one
3025 	 */
3026 	if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
3027 		phydev->irq = PHY_POLL;
3028 
3029 	if (phydrv->flags & PHY_IS_INTERNAL)
3030 		phydev->is_internal = true;
3031 
3032 	mutex_lock(&phydev->lock);
3033 
3034 	/* Deassert the reset signal */
3035 	phy_device_reset(phydev, 0);
3036 
3037 	if (phydev->drv->probe) {
3038 		err = phydev->drv->probe(phydev);
3039 		if (err)
3040 			goto out;
3041 	}
3042 
3043 	/* Start out supporting everything. Eventually,
3044 	 * a controller will attach, and may modify one
3045 	 * or both of these values
3046 	 */
3047 	if (phydrv->features)
3048 		linkmode_copy(phydev->supported, phydrv->features);
3049 	else if (phydrv->get_features)
3050 		err = phydrv->get_features(phydev);
3051 	else if (phydev->is_c45)
3052 		err = genphy_c45_pma_read_abilities(phydev);
3053 	else
3054 		err = genphy_read_abilities(phydev);
3055 
3056 	if (err)
3057 		goto out;
3058 
3059 	if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
3060 			       phydev->supported))
3061 		phydev->autoneg = 0;
3062 
3063 	if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
3064 			      phydev->supported))
3065 		phydev->is_gigabit_capable = 1;
3066 	if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
3067 			      phydev->supported))
3068 		phydev->is_gigabit_capable = 1;
3069 
3070 	of_set_phy_supported(phydev);
3071 	phy_advertise_supported(phydev);
3072 
3073 	/* Get the EEE modes we want to prohibit. We will ask
3074 	 * the PHY stop advertising these mode later on
3075 	 */
3076 	of_set_phy_eee_broken(phydev);
3077 
3078 	/* The Pause Frame bits indicate that the PHY can support passing
3079 	 * pause frames. During autonegotiation, the PHYs will determine if
3080 	 * they should allow pause frames to pass.  The MAC driver should then
3081 	 * use that result to determine whether to enable flow control via
3082 	 * pause frames.
3083 	 *
3084 	 * Normally, PHY drivers should not set the Pause bits, and instead
3085 	 * allow phylib to do that.  However, there may be some situations
3086 	 * (e.g. hardware erratum) where the driver wants to set only one
3087 	 * of these bits.
3088 	 */
3089 	if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
3090 	    !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
3091 		linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
3092 				 phydev->supported);
3093 		linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
3094 				 phydev->supported);
3095 	}
3096 
3097 	/* Set the state to READY by default */
3098 	phydev->state = PHY_READY;
3099 
3100 out:
3101 	/* Assert the reset signal */
3102 	if (err)
3103 		phy_device_reset(phydev, 1);
3104 
3105 	mutex_unlock(&phydev->lock);
3106 
3107 	return err;
3108 }
3109 
3110 static int phy_remove(struct device *dev)
3111 {
3112 	struct phy_device *phydev = to_phy_device(dev);
3113 
3114 	cancel_delayed_work_sync(&phydev->state_queue);
3115 
3116 	mutex_lock(&phydev->lock);
3117 	phydev->state = PHY_DOWN;
3118 	mutex_unlock(&phydev->lock);
3119 
3120 	sfp_bus_del_upstream(phydev->sfp_bus);
3121 	phydev->sfp_bus = NULL;
3122 
3123 	if (phydev->drv && phydev->drv->remove)
3124 		phydev->drv->remove(phydev);
3125 
3126 	/* Assert the reset signal */
3127 	phy_device_reset(phydev, 1);
3128 
3129 	phydev->drv = NULL;
3130 
3131 	return 0;
3132 }
3133 
3134 static void phy_shutdown(struct device *dev)
3135 {
3136 	struct phy_device *phydev = to_phy_device(dev);
3137 
3138 	if (phydev->state == PHY_READY || !phydev->attached_dev)
3139 		return;
3140 
3141 	phy_disable_interrupts(phydev);
3142 }
3143 
3144 /**
3145  * phy_driver_register - register a phy_driver with the PHY layer
3146  * @new_driver: new phy_driver to register
3147  * @owner: module owning this PHY
3148  */
3149 int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
3150 {
3151 	int retval;
3152 
3153 	/* Either the features are hard coded, or dynamically
3154 	 * determined. It cannot be both.
3155 	 */
3156 	if (WARN_ON(new_driver->features && new_driver->get_features)) {
3157 		pr_err("%s: features and get_features must not both be set\n",
3158 		       new_driver->name);
3159 		return -EINVAL;
3160 	}
3161 
3162 	/* PHYLIB device drivers must not match using a DT compatible table
3163 	 * as this bypasses our checks that the mdiodev that is being matched
3164 	 * is backed by a struct phy_device. If such a case happens, we will
3165 	 * make out-of-bounds accesses and lockup in phydev->lock.
3166 	 */
3167 	if (WARN(new_driver->mdiodrv.driver.of_match_table,
3168 		 "%s: driver must not provide a DT match table\n",
3169 		 new_driver->name))
3170 		return -EINVAL;
3171 
3172 	new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
3173 	new_driver->mdiodrv.driver.name = new_driver->name;
3174 	new_driver->mdiodrv.driver.bus = &mdio_bus_type;
3175 	new_driver->mdiodrv.driver.probe = phy_probe;
3176 	new_driver->mdiodrv.driver.remove = phy_remove;
3177 	new_driver->mdiodrv.driver.shutdown = phy_shutdown;
3178 	new_driver->mdiodrv.driver.owner = owner;
3179 	new_driver->mdiodrv.driver.probe_type = PROBE_FORCE_SYNCHRONOUS;
3180 
3181 	retval = driver_register(&new_driver->mdiodrv.driver);
3182 	if (retval) {
3183 		pr_err("%s: Error %d in registering driver\n",
3184 		       new_driver->name, retval);
3185 
3186 		return retval;
3187 	}
3188 
3189 	pr_debug("%s: Registered new driver\n", new_driver->name);
3190 
3191 	return 0;
3192 }
3193 EXPORT_SYMBOL(phy_driver_register);
3194 
3195 int phy_drivers_register(struct phy_driver *new_driver, int n,
3196 			 struct module *owner)
3197 {
3198 	int i, ret = 0;
3199 
3200 	for (i = 0; i < n; i++) {
3201 		ret = phy_driver_register(new_driver + i, owner);
3202 		if (ret) {
3203 			while (i-- > 0)
3204 				phy_driver_unregister(new_driver + i);
3205 			break;
3206 		}
3207 	}
3208 	return ret;
3209 }
3210 EXPORT_SYMBOL(phy_drivers_register);
3211 
3212 void phy_driver_unregister(struct phy_driver *drv)
3213 {
3214 	driver_unregister(&drv->mdiodrv.driver);
3215 }
3216 EXPORT_SYMBOL(phy_driver_unregister);
3217 
3218 void phy_drivers_unregister(struct phy_driver *drv, int n)
3219 {
3220 	int i;
3221 
3222 	for (i = 0; i < n; i++)
3223 		phy_driver_unregister(drv + i);
3224 }
3225 EXPORT_SYMBOL(phy_drivers_unregister);
3226 
3227 static struct phy_driver genphy_driver = {
3228 	.phy_id		= 0xffffffff,
3229 	.phy_id_mask	= 0xffffffff,
3230 	.name		= "Generic PHY",
3231 	.get_features	= genphy_read_abilities,
3232 	.suspend	= genphy_suspend,
3233 	.resume		= genphy_resume,
3234 	.set_loopback   = genphy_loopback,
3235 };
3236 
3237 static const struct ethtool_phy_ops phy_ethtool_phy_ops = {
3238 	.get_sset_count		= phy_ethtool_get_sset_count,
3239 	.get_strings		= phy_ethtool_get_strings,
3240 	.get_stats		= phy_ethtool_get_stats,
3241 	.start_cable_test	= phy_start_cable_test,
3242 	.start_cable_test_tdr	= phy_start_cable_test_tdr,
3243 };
3244 
3245 static int __init phy_init(void)
3246 {
3247 	int rc;
3248 
3249 	rc = mdio_bus_init();
3250 	if (rc)
3251 		return rc;
3252 
3253 	ethtool_set_ethtool_phy_ops(&phy_ethtool_phy_ops);
3254 	features_init();
3255 
3256 	rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
3257 	if (rc)
3258 		goto err_c45;
3259 
3260 	rc = phy_driver_register(&genphy_driver, THIS_MODULE);
3261 	if (rc) {
3262 		phy_driver_unregister(&genphy_c45_driver);
3263 err_c45:
3264 		mdio_bus_exit();
3265 	}
3266 
3267 	return rc;
3268 }
3269 
3270 static void __exit phy_exit(void)
3271 {
3272 	phy_driver_unregister(&genphy_c45_driver);
3273 	phy_driver_unregister(&genphy_driver);
3274 	mdio_bus_exit();
3275 	ethtool_set_ethtool_phy_ops(NULL);
3276 }
3277 
3278 subsys_initcall(phy_init);
3279 module_exit(phy_exit);
3280